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.
 
 
 

59228 line
1.5 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["dinosaur"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["dinosaur"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["primate"]
  2132. },
  2133. "serval": {
  2134. name: "Serval",
  2135. parents: ["cat"]
  2136. },
  2137. "swampert": {
  2138. name: "Swampert",
  2139. parents: ["pokemon"]
  2140. },
  2141. "red-fox": {
  2142. name: "Red Fox",
  2143. parents: ["fox"]
  2144. },
  2145. "sliver": {
  2146. name: "Sliver",
  2147. parents: ["alien"]
  2148. },
  2149. "sergix": {
  2150. name: "Sergix",
  2151. parents: ["demon", "sergal", "phoenix"]
  2152. },
  2153. "behemoth": {
  2154. name: "Behemoth",
  2155. parents: ["monster", "dragon", "final-fantasy"]
  2156. },
  2157. "final-fantasy": {
  2158. name: "Final Fantasy",
  2159. parents: ["video-games"]
  2160. },
  2161. "video-games": {
  2162. name: "Video Games",
  2163. parents: []
  2164. },
  2165. "eastern-cottontail-rabbit": {
  2166. name: "Eastern Cottontail Rabbit",
  2167. parents: ["rabbit"]
  2168. },
  2169. "thresher-shark": {
  2170. name: "Thresher Shark",
  2171. parents: ["shark"]
  2172. },
  2173. "ai": {
  2174. name: "AI",
  2175. parents: []
  2176. },
  2177. "black-tip-reef-shark": {
  2178. name: "Black Tip Reef Shark",
  2179. parents: ["shark"]
  2180. },
  2181. "quetzalcoatlus-northropi": {
  2182. name: "Quetzalcoatlus Northropi",
  2183. parents: ["dinosaur"]
  2184. },
  2185. "snivy": {
  2186. name: "Snivy",
  2187. parents: ["pokemon", "snake"]
  2188. },
  2189. "nedynvor": {
  2190. name: "Nedynvor",
  2191. parents: ["avian"]
  2192. },
  2193. "marbled-polecat": {
  2194. name: "Marbled Polecat",
  2195. parents: ["polecat"]
  2196. },
  2197. "ape": {
  2198. name: "Ape",
  2199. parents: ["primate"]
  2200. },
  2201. "primate": {
  2202. name: "Primate",
  2203. parents: ["mammal"]
  2204. },
  2205. "kulve-taroth": {
  2206. name: "Kulve Taroth",
  2207. parents: ["monster-hunter", "dragon"]
  2208. },
  2209. "irthos": {
  2210. name: "Irthos",
  2211. parents: ["dragon"]
  2212. },
  2213. "furred-dragon": {
  2214. name: "Furred Dragon",
  2215. parents: ["dragon"]
  2216. },
  2217. }
  2218. //species
  2219. function getSpeciesInfo(speciesList) {
  2220. let result = new Set();
  2221. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2222. result.add(entry)
  2223. });
  2224. return Array.from(result);
  2225. };
  2226. function getSpeciesInfoHelper(species) {
  2227. if (!speciesData[species]) {
  2228. console.warn(species + " doesn't exist");
  2229. return [];
  2230. }
  2231. if (speciesData[species].parents) {
  2232. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2233. } else {
  2234. return [species];
  2235. }
  2236. }
  2237. characterMakers.push(() => makeCharacter(
  2238. {
  2239. name: "Fen",
  2240. species: ["crux"],
  2241. description: {
  2242. title: "Bio",
  2243. text: "Very furry. Sheds on everything."
  2244. },
  2245. tags: [
  2246. "anthro",
  2247. "goo"
  2248. ]
  2249. },
  2250. {
  2251. front: {
  2252. height: math.unit(12, "feet"),
  2253. weight: math.unit(2400, "lb"),
  2254. preyCapacity: math.unit(1, "people"),
  2255. name: "Front",
  2256. image: {
  2257. source: "./media/characters/fen/front.svg",
  2258. extra: 1804/1562,
  2259. bottom: 205/2009
  2260. },
  2261. extraAttributes: {
  2262. pawSize: {
  2263. name: "Paw Size",
  2264. power: 2,
  2265. type: "area",
  2266. base: math.unit(0.35, "m^2")
  2267. }
  2268. }
  2269. },
  2270. diving: {
  2271. height: math.unit(4.9, "meters"),
  2272. weight: math.unit(2400, "lb"),
  2273. name: "Diving",
  2274. image: {
  2275. source: "./media/characters/fen/diving.svg"
  2276. }
  2277. },
  2278. sleeby: {
  2279. height: math.unit(3.45, "meters"),
  2280. weight: math.unit(2400, "lb"),
  2281. name: "Sleeby",
  2282. image: {
  2283. source: "./media/characters/fen/sleeby.svg"
  2284. }
  2285. },
  2286. goo: {
  2287. height: math.unit(12, "feet"),
  2288. weight: math.unit(3600, "lb"),
  2289. volume: math.unit(1000, "liters"),
  2290. preyCapacity: math.unit(6, "people"),
  2291. name: "Goo",
  2292. image: {
  2293. source: "./media/characters/fen/goo.svg",
  2294. extra: 1307/1071,
  2295. bottom: 134/1441
  2296. }
  2297. },
  2298. horror: {
  2299. height: math.unit(13.6, "feet"),
  2300. weight: math.unit(2400, "lb"),
  2301. preyCapacity: math.unit(1, "people"),
  2302. name: "Horror",
  2303. image: {
  2304. source: "./media/characters/fen/horror.svg",
  2305. extra: 893/797,
  2306. bottom: 0/893
  2307. }
  2308. },
  2309. gooNsfw: {
  2310. height: math.unit(12, "feet"),
  2311. weight: math.unit(3750, "lb"),
  2312. volume: math.unit(1000, "liters"),
  2313. preyCapacity: math.unit(6, "people"),
  2314. name: "Goo (NSFW)",
  2315. image: {
  2316. source: "./media/characters/fen/goo-nsfw.svg",
  2317. extra: 1875/1734,
  2318. bottom: 122/1997
  2319. }
  2320. },
  2321. maw: {
  2322. height: math.unit(5.03, "feet"),
  2323. name: "Maw",
  2324. image: {
  2325. source: "./media/characters/fen/maw.svg"
  2326. }
  2327. },
  2328. gooCeiling: {
  2329. height: math.unit(6.6, "feet"),
  2330. weight: math.unit(3000, "lb"),
  2331. volume: math.unit(1000, "liters"),
  2332. preyCapacity: math.unit(6, "people"),
  2333. name: "Maw (Goo)",
  2334. image: {
  2335. source: "./media/characters/fen/goo-maw.svg"
  2336. }
  2337. },
  2338. paw: {
  2339. height: math.unit(3.77, "feet"),
  2340. name: "Paw",
  2341. image: {
  2342. source: "./media/characters/fen/paw.svg"
  2343. },
  2344. extraAttributes: {
  2345. "toeSize": {
  2346. name: "Toe Size",
  2347. power: 2,
  2348. type: "area",
  2349. base: math.unit(0.02875, "m^2")
  2350. },
  2351. "pawSize": {
  2352. name: "Paw Size",
  2353. power: 2,
  2354. type: "area",
  2355. base: math.unit(0.378, "m^2")
  2356. },
  2357. }
  2358. },
  2359. tail: {
  2360. height: math.unit(12.1, "feet"),
  2361. name: "Tail",
  2362. image: {
  2363. source: "./media/characters/fen/tail.svg"
  2364. }
  2365. },
  2366. tailFull: {
  2367. height: math.unit(12.1, "feet"),
  2368. name: "Full Tail",
  2369. image: {
  2370. source: "./media/characters/fen/tail-full.svg"
  2371. }
  2372. },
  2373. back: {
  2374. height: math.unit(12, "feet"),
  2375. weight: math.unit(2400, "lb"),
  2376. name: "Back",
  2377. image: {
  2378. source: "./media/characters/fen/back.svg",
  2379. },
  2380. info: {
  2381. description: {
  2382. mode: "append",
  2383. text: "\n\nHe is not currently looking at you."
  2384. }
  2385. }
  2386. },
  2387. full: {
  2388. height: math.unit(1.85, "meter"),
  2389. weight: math.unit(3200, "lb"),
  2390. name: "Full",
  2391. image: {
  2392. source: "./media/characters/fen/full.svg",
  2393. extra: 1133/859,
  2394. bottom: 145/1278
  2395. },
  2396. info: {
  2397. description: {
  2398. mode: "append",
  2399. text: "\n\nMunch."
  2400. }
  2401. }
  2402. },
  2403. gooLounging: {
  2404. height: math.unit(4.53, "feet"),
  2405. weight: math.unit(3000, "lb"),
  2406. preyCapacity: math.unit(6, "people"),
  2407. name: "Goo (Lounging)",
  2408. image: {
  2409. source: "./media/characters/fen/goo-lounging.svg",
  2410. bottom: 116 / 613
  2411. }
  2412. },
  2413. lounging: {
  2414. height: math.unit(10.52, "feet"),
  2415. weight: math.unit(2400, "lb"),
  2416. name: "Lounging",
  2417. image: {
  2418. source: "./media/characters/fen/lounging.svg"
  2419. }
  2420. },
  2421. },
  2422. [
  2423. {
  2424. name: "Small",
  2425. height: math.unit(2.2428, "meter")
  2426. },
  2427. {
  2428. name: "Normal",
  2429. height: math.unit(12, "feet"),
  2430. default: true,
  2431. },
  2432. {
  2433. name: "Big",
  2434. height: math.unit(20, "feet")
  2435. },
  2436. {
  2437. name: "Minimacro",
  2438. height: math.unit(40, "feet"),
  2439. info: {
  2440. description: {
  2441. mode: "append",
  2442. text: "\n\nTOO DAMN BIG"
  2443. }
  2444. }
  2445. },
  2446. {
  2447. name: "Macro",
  2448. height: math.unit(100, "feet"),
  2449. info: {
  2450. description: {
  2451. mode: "append",
  2452. text: "\n\nTOO DAMN BIG"
  2453. }
  2454. }
  2455. },
  2456. {
  2457. name: "Megamacro",
  2458. height: math.unit(2, "miles")
  2459. },
  2460. {
  2461. name: "Gigamacro",
  2462. height: math.unit(10, "earths")
  2463. },
  2464. ]
  2465. ))
  2466. characterMakers.push(() => makeCharacter(
  2467. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2468. {
  2469. front: {
  2470. height: math.unit(183, "cm"),
  2471. weight: math.unit(80, "kg"),
  2472. name: "Front",
  2473. image: {
  2474. source: "./media/characters/sofia-fluttertail/front.svg",
  2475. bottom: 0.01,
  2476. extra: 2154 / 2081
  2477. }
  2478. },
  2479. frontAlt: {
  2480. height: math.unit(183, "cm"),
  2481. weight: math.unit(80, "kg"),
  2482. name: "Front (alt)",
  2483. image: {
  2484. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2485. }
  2486. },
  2487. back: {
  2488. height: math.unit(183, "cm"),
  2489. weight: math.unit(80, "kg"),
  2490. name: "Back",
  2491. image: {
  2492. source: "./media/characters/sofia-fluttertail/back.svg"
  2493. }
  2494. },
  2495. kneeling: {
  2496. height: math.unit(125, "cm"),
  2497. weight: math.unit(80, "kg"),
  2498. name: "Kneeling",
  2499. image: {
  2500. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2501. extra: 1033 / 977,
  2502. bottom: 23.7 / 1057
  2503. }
  2504. },
  2505. maw: {
  2506. height: math.unit(183 / 5, "cm"),
  2507. name: "Maw",
  2508. image: {
  2509. source: "./media/characters/sofia-fluttertail/maw.svg"
  2510. }
  2511. },
  2512. mawcloseup: {
  2513. height: math.unit(183 / 5 * 0.41, "cm"),
  2514. name: "Maw (Closeup)",
  2515. image: {
  2516. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2517. }
  2518. },
  2519. paws: {
  2520. height: math.unit(1.17, "feet"),
  2521. name: "Paws",
  2522. image: {
  2523. source: "./media/characters/sofia-fluttertail/paws.svg",
  2524. extra: 851 / 851,
  2525. bottom: 17 / 868
  2526. }
  2527. },
  2528. },
  2529. [
  2530. {
  2531. name: "Normal",
  2532. height: math.unit(1.83, "meter")
  2533. },
  2534. {
  2535. name: "Size Thief",
  2536. height: math.unit(18, "feet")
  2537. },
  2538. {
  2539. name: "50 Foot Collie",
  2540. height: math.unit(50, "feet")
  2541. },
  2542. {
  2543. name: "Macro",
  2544. height: math.unit(96, "feet"),
  2545. default: true
  2546. },
  2547. {
  2548. name: "Megamerger",
  2549. height: math.unit(650, "feet")
  2550. },
  2551. ]
  2552. ))
  2553. characterMakers.push(() => makeCharacter(
  2554. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2555. {
  2556. front: {
  2557. height: math.unit(7, "feet"),
  2558. weight: math.unit(100, "kg"),
  2559. name: "Front",
  2560. image: {
  2561. source: "./media/characters/march/front.svg",
  2562. extra: 1992/1851,
  2563. bottom: 39/2031
  2564. }
  2565. },
  2566. foot: {
  2567. height: math.unit(0.9, "feet"),
  2568. name: "Foot",
  2569. image: {
  2570. source: "./media/characters/march/foot.svg"
  2571. }
  2572. },
  2573. },
  2574. [
  2575. {
  2576. name: "Normal",
  2577. height: math.unit(7.9, "feet")
  2578. },
  2579. {
  2580. name: "Macro",
  2581. height: math.unit(220, "meters")
  2582. },
  2583. {
  2584. name: "Megamacro",
  2585. height: math.unit(2.98, "km"),
  2586. default: true
  2587. },
  2588. {
  2589. name: "Gigamacro",
  2590. height: math.unit(15963, "km")
  2591. },
  2592. {
  2593. name: "Teramacro",
  2594. height: math.unit(2980000000, "km")
  2595. },
  2596. {
  2597. name: "Examacro",
  2598. height: math.unit(250, "parsecs")
  2599. },
  2600. ]
  2601. ))
  2602. characterMakers.push(() => makeCharacter(
  2603. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2604. {
  2605. front: {
  2606. height: math.unit(6, "feet"),
  2607. weight: math.unit(60, "kg"),
  2608. name: "Front",
  2609. image: {
  2610. source: "./media/characters/noir/front.svg",
  2611. extra: 1,
  2612. bottom: 0.032
  2613. }
  2614. },
  2615. },
  2616. [
  2617. {
  2618. name: "Normal",
  2619. height: math.unit(6.6, "feet")
  2620. },
  2621. {
  2622. name: "Macro",
  2623. height: math.unit(500, "feet")
  2624. },
  2625. {
  2626. name: "Megamacro",
  2627. height: math.unit(2.5, "km"),
  2628. default: true
  2629. },
  2630. {
  2631. name: "Gigamacro",
  2632. height: math.unit(22500, "km")
  2633. },
  2634. {
  2635. name: "Teramacro",
  2636. height: math.unit(2500000000, "km")
  2637. },
  2638. {
  2639. name: "Examacro",
  2640. height: math.unit(200, "parsecs")
  2641. },
  2642. ]
  2643. ))
  2644. characterMakers.push(() => makeCharacter(
  2645. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2646. {
  2647. front: {
  2648. height: math.unit(7, "feet"),
  2649. weight: math.unit(100, "kg"),
  2650. name: "Front",
  2651. image: {
  2652. source: "./media/characters/okuri/front.svg",
  2653. extra: 739/665,
  2654. bottom: 39/778
  2655. }
  2656. },
  2657. back: {
  2658. height: math.unit(7, "feet"),
  2659. weight: math.unit(100, "kg"),
  2660. name: "Back",
  2661. image: {
  2662. source: "./media/characters/okuri/back.svg",
  2663. extra: 734/653,
  2664. bottom: 13/747
  2665. }
  2666. },
  2667. sitting: {
  2668. height: math.unit(2.95, "feet"),
  2669. weight: math.unit(100, "kg"),
  2670. name: "Sitting",
  2671. image: {
  2672. source: "./media/characters/okuri/sitting.svg",
  2673. extra: 370/318,
  2674. bottom: 99/469
  2675. }
  2676. },
  2677. },
  2678. [
  2679. {
  2680. name: "Smallest",
  2681. height: math.unit(5 + 2/12, "feet")
  2682. },
  2683. {
  2684. name: "Smaller",
  2685. height: math.unit(300, "feet")
  2686. },
  2687. {
  2688. name: "Small",
  2689. height: math.unit(1000, "feet")
  2690. },
  2691. {
  2692. name: "Macro",
  2693. height: math.unit(1, "mile")
  2694. },
  2695. {
  2696. name: "Mega Macro (Small)",
  2697. height: math.unit(20, "km")
  2698. },
  2699. {
  2700. name: "Mega Macro (Large)",
  2701. height: math.unit(600, "km")
  2702. },
  2703. {
  2704. name: "Giga Macro",
  2705. height: math.unit(10000, "km")
  2706. },
  2707. {
  2708. name: "Normal",
  2709. height: math.unit(577560, "km"),
  2710. default: true
  2711. },
  2712. {
  2713. name: "Large",
  2714. height: math.unit(4, "galaxies")
  2715. },
  2716. {
  2717. name: "Largest",
  2718. height: math.unit(15, "multiverses")
  2719. },
  2720. ]
  2721. ))
  2722. characterMakers.push(() => makeCharacter(
  2723. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2724. {
  2725. front: {
  2726. height: math.unit(7, "feet"),
  2727. weight: math.unit(100, "kg"),
  2728. name: "Front",
  2729. image: {
  2730. source: "./media/characters/manny/front.svg",
  2731. extra: 1,
  2732. bottom: 0.06
  2733. }
  2734. },
  2735. back: {
  2736. height: math.unit(7, "feet"),
  2737. weight: math.unit(100, "kg"),
  2738. name: "Back",
  2739. image: {
  2740. source: "./media/characters/manny/back.svg",
  2741. extra: 1,
  2742. bottom: 0.014
  2743. }
  2744. },
  2745. },
  2746. [
  2747. {
  2748. name: "Normal",
  2749. height: math.unit(7, "feet"),
  2750. },
  2751. {
  2752. name: "Macro",
  2753. height: math.unit(78, "feet"),
  2754. default: true
  2755. },
  2756. {
  2757. name: "Macro+",
  2758. height: math.unit(300, "meters")
  2759. },
  2760. {
  2761. name: "Macro++",
  2762. height: math.unit(2400, "meters")
  2763. },
  2764. {
  2765. name: "Megamacro",
  2766. height: math.unit(5167, "meters")
  2767. },
  2768. {
  2769. name: "Gigamacro",
  2770. height: math.unit(41769, "miles")
  2771. },
  2772. ]
  2773. ))
  2774. characterMakers.push(() => makeCharacter(
  2775. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2776. {
  2777. front: {
  2778. height: math.unit(7, "feet"),
  2779. weight: math.unit(100, "kg"),
  2780. name: "Front",
  2781. image: {
  2782. source: "./media/characters/adake/front-1.svg"
  2783. }
  2784. },
  2785. frontAlt: {
  2786. height: math.unit(7, "feet"),
  2787. weight: math.unit(100, "kg"),
  2788. name: "Front (Alt)",
  2789. image: {
  2790. source: "./media/characters/adake/front-2.svg",
  2791. extra: 1,
  2792. bottom: 0.01
  2793. }
  2794. },
  2795. back: {
  2796. height: math.unit(7, "feet"),
  2797. weight: math.unit(100, "kg"),
  2798. name: "Back",
  2799. image: {
  2800. source: "./media/characters/adake/back.svg",
  2801. }
  2802. },
  2803. kneel: {
  2804. height: math.unit(5.385, "feet"),
  2805. weight: math.unit(100, "kg"),
  2806. name: "Kneeling",
  2807. image: {
  2808. source: "./media/characters/adake/kneel.svg",
  2809. bottom: 0.052
  2810. }
  2811. },
  2812. },
  2813. [
  2814. {
  2815. name: "Normal",
  2816. height: math.unit(7, "feet"),
  2817. },
  2818. {
  2819. name: "Macro",
  2820. height: math.unit(78, "feet"),
  2821. default: true
  2822. },
  2823. {
  2824. name: "Macro+",
  2825. height: math.unit(300, "meters")
  2826. },
  2827. {
  2828. name: "Macro++",
  2829. height: math.unit(2400, "meters")
  2830. },
  2831. {
  2832. name: "Megamacro",
  2833. height: math.unit(5167, "meters")
  2834. },
  2835. {
  2836. name: "Gigamacro",
  2837. height: math.unit(41769, "miles")
  2838. },
  2839. ]
  2840. ))
  2841. characterMakers.push(() => makeCharacter(
  2842. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2843. {
  2844. front: {
  2845. height: math.unit(1.65, "meters"),
  2846. weight: math.unit(50, "kg"),
  2847. name: "Front",
  2848. image: {
  2849. source: "./media/characters/elijah/front.svg",
  2850. extra: 858 / 830,
  2851. bottom: 95.5 / 953.8559
  2852. }
  2853. },
  2854. back: {
  2855. height: math.unit(1.65, "meters"),
  2856. weight: math.unit(50, "kg"),
  2857. name: "Back",
  2858. image: {
  2859. source: "./media/characters/elijah/back.svg",
  2860. extra: 895 / 850,
  2861. bottom: 5.3 / 897.956
  2862. }
  2863. },
  2864. frontNsfw: {
  2865. height: math.unit(1.65, "meters"),
  2866. weight: math.unit(50, "kg"),
  2867. name: "Front (NSFW)",
  2868. image: {
  2869. source: "./media/characters/elijah/front-nsfw.svg",
  2870. extra: 858 / 830,
  2871. bottom: 95.5 / 953.8559
  2872. }
  2873. },
  2874. backNsfw: {
  2875. height: math.unit(1.65, "meters"),
  2876. weight: math.unit(50, "kg"),
  2877. name: "Back (NSFW)",
  2878. image: {
  2879. source: "./media/characters/elijah/back-nsfw.svg",
  2880. extra: 895 / 850,
  2881. bottom: 5.3 / 897.956
  2882. }
  2883. },
  2884. dick: {
  2885. height: math.unit(1, "feet"),
  2886. name: "Dick",
  2887. image: {
  2888. source: "./media/characters/elijah/dick.svg"
  2889. }
  2890. },
  2891. beakOpen: {
  2892. height: math.unit(1.25, "feet"),
  2893. name: "Beak (Open)",
  2894. image: {
  2895. source: "./media/characters/elijah/beak-open.svg"
  2896. }
  2897. },
  2898. beakShut: {
  2899. height: math.unit(1.25, "feet"),
  2900. name: "Beak (Shut)",
  2901. image: {
  2902. source: "./media/characters/elijah/beak-shut.svg"
  2903. }
  2904. },
  2905. footFlexing: {
  2906. height: math.unit(1.61, "feet"),
  2907. name: "Foot (Flexing)",
  2908. image: {
  2909. source: "./media/characters/elijah/foot-flexing.svg"
  2910. }
  2911. },
  2912. footStepping: {
  2913. height: math.unit(1.44, "feet"),
  2914. name: "Foot (Stepping)",
  2915. image: {
  2916. source: "./media/characters/elijah/foot-stepping.svg"
  2917. }
  2918. },
  2919. plantigradeLeg: {
  2920. height: math.unit(2.34, "feet"),
  2921. name: "Plantigrade Leg",
  2922. image: {
  2923. source: "./media/characters/elijah/plantigrade-leg.svg"
  2924. }
  2925. },
  2926. plantigradeFootLeft: {
  2927. height: math.unit(0.9, "feet"),
  2928. name: "Plantigrade Foot (Left)",
  2929. image: {
  2930. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2931. }
  2932. },
  2933. plantigradeFootRight: {
  2934. height: math.unit(0.9, "feet"),
  2935. name: "Plantigrade Foot (Right)",
  2936. image: {
  2937. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2938. }
  2939. },
  2940. },
  2941. [
  2942. {
  2943. name: "Normal",
  2944. height: math.unit(1.65, "meters")
  2945. },
  2946. {
  2947. name: "Macro",
  2948. height: math.unit(55, "meters"),
  2949. default: true
  2950. },
  2951. {
  2952. name: "Macro+",
  2953. height: math.unit(105, "meters")
  2954. },
  2955. ]
  2956. ))
  2957. characterMakers.push(() => makeCharacter(
  2958. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2959. {
  2960. front: {
  2961. height: math.unit(7 + 2/12, "feet"),
  2962. weight: math.unit(320, "kg"),
  2963. preyCapacity: math.unit(0.276549935, "people"),
  2964. name: "Front",
  2965. image: {
  2966. source: "./media/characters/rai/front.svg",
  2967. extra: 1802/1696,
  2968. bottom: 68/1870
  2969. },
  2970. form: "anthro",
  2971. default: true
  2972. },
  2973. frontDressed: {
  2974. height: math.unit(7 + 2/12, "feet"),
  2975. weight: math.unit(320, "kg"),
  2976. preyCapacity: math.unit(0.276549935, "people"),
  2977. name: "Front (Dressed)",
  2978. image: {
  2979. source: "./media/characters/rai/front-dressed.svg",
  2980. extra: 1802/1696,
  2981. bottom: 68/1870
  2982. },
  2983. form: "anthro"
  2984. },
  2985. side: {
  2986. height: math.unit(7 + 2/12, "feet"),
  2987. weight: math.unit(320, "kg"),
  2988. preyCapacity: math.unit(0.276549935, "people"),
  2989. name: "Side",
  2990. image: {
  2991. source: "./media/characters/rai/side.svg",
  2992. extra: 1789/1710,
  2993. bottom: 115/1904
  2994. },
  2995. form: "anthro"
  2996. },
  2997. back: {
  2998. height: math.unit(7 + 2/12, "feet"),
  2999. weight: math.unit(320, "kg"),
  3000. preyCapacity: math.unit(0.276549935, "people"),
  3001. name: "Back",
  3002. image: {
  3003. source: "./media/characters/rai/back.svg",
  3004. extra: 1770/1707,
  3005. bottom: 28/1798
  3006. },
  3007. form: "anthro"
  3008. },
  3009. feral: {
  3010. height: math.unit(9.5, "feet"),
  3011. weight: math.unit(640, "kg"),
  3012. preyCapacity: math.unit(4, "people"),
  3013. name: "Feral",
  3014. image: {
  3015. source: "./media/characters/rai/feral.svg",
  3016. extra: 945/553,
  3017. bottom: 176/1121
  3018. },
  3019. form: "feral",
  3020. default: true
  3021. },
  3022. dragon: {
  3023. height: math.unit(23, "feet"),
  3024. weight: math.unit(50000, "lb"),
  3025. name: "Dragon",
  3026. image: {
  3027. source: "./media/characters/rai/dragon.svg",
  3028. extra: 2498 / 2030,
  3029. bottom: 85.2 / 2584
  3030. },
  3031. form: "dragon",
  3032. default: true
  3033. },
  3034. maw: {
  3035. height: math.unit(1.69, "feet"),
  3036. name: "Maw",
  3037. image: {
  3038. source: "./media/characters/rai/maw.svg"
  3039. },
  3040. form: "anthro"
  3041. },
  3042. },
  3043. [
  3044. {
  3045. name: "Normal",
  3046. height: math.unit(7 + 2/12, "feet"),
  3047. form: "anthro"
  3048. },
  3049. {
  3050. name: "Big",
  3051. height: math.unit(11, "feet"),
  3052. form: "anthro"
  3053. },
  3054. {
  3055. name: "Minimacro",
  3056. height: math.unit(77, "feet"),
  3057. form: "anthro"
  3058. },
  3059. {
  3060. name: "Macro",
  3061. height: math.unit(302, "feet"),
  3062. default: true,
  3063. form: "anthro"
  3064. },
  3065. {
  3066. name: "Normal",
  3067. height: math.unit(9.5, "feet"),
  3068. form: "feral",
  3069. default: true
  3070. },
  3071. {
  3072. name: "Normal",
  3073. height: math.unit(23, "feet"),
  3074. form: "dragon",
  3075. default: true
  3076. }
  3077. ],
  3078. {
  3079. "anthro": {
  3080. name: "Anthro",
  3081. default: true
  3082. },
  3083. "feral": {
  3084. name: "Feral",
  3085. },
  3086. "dragon": {
  3087. name: "Dragon",
  3088. },
  3089. }
  3090. ))
  3091. characterMakers.push(() => makeCharacter(
  3092. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3093. {
  3094. frontDressed: {
  3095. height: math.unit(216, "feet"),
  3096. weight: math.unit(7000000, "lb"),
  3097. preyCapacity: math.unit(1321, "people"),
  3098. name: "Front (Dressed)",
  3099. image: {
  3100. source: "./media/characters/jazzy/front-dressed.svg",
  3101. extra: 2738 / 2651,
  3102. bottom: 41.8 / 2786
  3103. }
  3104. },
  3105. backDressed: {
  3106. height: math.unit(216, "feet"),
  3107. weight: math.unit(7000000, "lb"),
  3108. preyCapacity: math.unit(1321, "people"),
  3109. name: "Back (Dressed)",
  3110. image: {
  3111. source: "./media/characters/jazzy/back-dressed.svg",
  3112. extra: 2775 / 2673,
  3113. bottom: 36.8 / 2817
  3114. }
  3115. },
  3116. front: {
  3117. height: math.unit(216, "feet"),
  3118. weight: math.unit(7000000, "lb"),
  3119. preyCapacity: math.unit(1321, "people"),
  3120. name: "Front",
  3121. image: {
  3122. source: "./media/characters/jazzy/front.svg",
  3123. extra: 2738 / 2651,
  3124. bottom: 41.8 / 2786
  3125. }
  3126. },
  3127. back: {
  3128. height: math.unit(216, "feet"),
  3129. weight: math.unit(7000000, "lb"),
  3130. preyCapacity: math.unit(1321, "people"),
  3131. name: "Back",
  3132. image: {
  3133. source: "./media/characters/jazzy/back.svg",
  3134. extra: 2775 / 2673,
  3135. bottom: 36.8 / 2817
  3136. }
  3137. },
  3138. maw: {
  3139. height: math.unit(20, "feet"),
  3140. name: "Maw",
  3141. image: {
  3142. source: "./media/characters/jazzy/maw.svg"
  3143. }
  3144. },
  3145. paws: {
  3146. height: math.unit(27.5, "feet"),
  3147. name: "Paws",
  3148. image: {
  3149. source: "./media/characters/jazzy/paws.svg"
  3150. }
  3151. },
  3152. eye: {
  3153. height: math.unit(4.4, "feet"),
  3154. name: "Eye",
  3155. image: {
  3156. source: "./media/characters/jazzy/eye.svg"
  3157. }
  3158. },
  3159. droneOffense: {
  3160. height: math.unit(9.5, "inches"),
  3161. name: "Drone (Offense)",
  3162. image: {
  3163. source: "./media/characters/jazzy/drone-offense.svg"
  3164. }
  3165. },
  3166. droneRecon: {
  3167. height: math.unit(9.5, "inches"),
  3168. name: "Drone (Recon)",
  3169. image: {
  3170. source: "./media/characters/jazzy/drone-recon.svg"
  3171. }
  3172. },
  3173. droneDefense: {
  3174. height: math.unit(9.5, "inches"),
  3175. name: "Drone (Defense)",
  3176. image: {
  3177. source: "./media/characters/jazzy/drone-defense.svg"
  3178. }
  3179. },
  3180. },
  3181. [
  3182. {
  3183. name: "Macro",
  3184. height: math.unit(216, "feet"),
  3185. default: true
  3186. },
  3187. ]
  3188. ))
  3189. characterMakers.push(() => makeCharacter(
  3190. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3191. {
  3192. front: {
  3193. height: math.unit(9 + 6/12, "feet"),
  3194. weight: math.unit(700, "lb"),
  3195. name: "Front",
  3196. image: {
  3197. source: "./media/characters/flamm/front.svg",
  3198. extra: 1736/1596,
  3199. bottom: 93/1829
  3200. }
  3201. },
  3202. buff: {
  3203. height: math.unit(9 + 6/12, "feet"),
  3204. weight: math.unit(950, "lb"),
  3205. name: "Buff",
  3206. image: {
  3207. source: "./media/characters/flamm/buff.svg",
  3208. extra: 3018/2874,
  3209. bottom: 221/3239
  3210. }
  3211. },
  3212. },
  3213. [
  3214. {
  3215. name: "Normal",
  3216. height: math.unit(9.5, "feet")
  3217. },
  3218. {
  3219. name: "Macro",
  3220. height: math.unit(200, "feet"),
  3221. default: true
  3222. },
  3223. ]
  3224. ))
  3225. characterMakers.push(() => makeCharacter(
  3226. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3227. {
  3228. front: {
  3229. height: math.unit(5 + 3/12, "feet"),
  3230. weight: math.unit(60, "kg"),
  3231. name: "Front",
  3232. image: {
  3233. source: "./media/characters/zephiro/front.svg",
  3234. extra: 1873/1761,
  3235. bottom: 147/2020
  3236. }
  3237. },
  3238. side: {
  3239. height: math.unit(5 + 3/12, "feet"),
  3240. weight: math.unit(60, "kg"),
  3241. name: "Side",
  3242. image: {
  3243. source: "./media/characters/zephiro/side.svg",
  3244. extra: 1929/1827,
  3245. bottom: 65/1994
  3246. }
  3247. },
  3248. back: {
  3249. height: math.unit(5 + 3/12, "feet"),
  3250. weight: math.unit(60, "kg"),
  3251. name: "Back",
  3252. image: {
  3253. source: "./media/characters/zephiro/back.svg",
  3254. extra: 1926/1816,
  3255. bottom: 41/1967
  3256. }
  3257. },
  3258. hand: {
  3259. height: math.unit(0.68, "feet"),
  3260. name: "Hand",
  3261. image: {
  3262. source: "./media/characters/zephiro/hand.svg"
  3263. }
  3264. },
  3265. paw: {
  3266. height: math.unit(1, "feet"),
  3267. name: "Paw",
  3268. image: {
  3269. source: "./media/characters/zephiro/paw.svg"
  3270. }
  3271. },
  3272. beans: {
  3273. height: math.unit(0.93, "feet"),
  3274. name: "Beans",
  3275. image: {
  3276. source: "./media/characters/zephiro/beans.svg"
  3277. }
  3278. },
  3279. },
  3280. [
  3281. {
  3282. name: "Micro",
  3283. height: math.unit(3, "inches")
  3284. },
  3285. {
  3286. name: "Normal",
  3287. height: math.unit(5 + 3 / 12, "feet"),
  3288. default: true
  3289. },
  3290. {
  3291. name: "Macro",
  3292. height: math.unit(118, "feet")
  3293. },
  3294. ]
  3295. ))
  3296. characterMakers.push(() => makeCharacter(
  3297. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3298. {
  3299. front: {
  3300. height: math.unit(5, "feet"),
  3301. weight: math.unit(90, "kg"),
  3302. preyCapacity: math.unit(14, "people"),
  3303. name: "Front",
  3304. image: {
  3305. source: "./media/characters/fory/front.svg",
  3306. extra: 2862 / 2674,
  3307. bottom: 180 / 3043.8
  3308. },
  3309. form: "weaselbun",
  3310. default: true,
  3311. extraAttributes: {
  3312. "pawSize": {
  3313. name: "Paw Size",
  3314. power: 2,
  3315. type: "area",
  3316. base: math.unit(0.1596, "m^2")
  3317. },
  3318. "pawLength": {
  3319. name: "Paw Length",
  3320. power: 1,
  3321. type: "length",
  3322. base: math.unit(0.7, "m")
  3323. }
  3324. }
  3325. },
  3326. back: {
  3327. height: math.unit(5, "feet"),
  3328. weight: math.unit(90, "kg"),
  3329. preyCapacity: math.unit(14, "people"),
  3330. name: "Back",
  3331. image: {
  3332. source: "./media/characters/fory/back.svg",
  3333. extra: 1790/1672,
  3334. bottom: 84/1874
  3335. },
  3336. form: "weaselbun",
  3337. extraAttributes: {
  3338. "pawSize": {
  3339. name: "Paw Size",
  3340. power: 2,
  3341. type: "area",
  3342. base: math.unit(0.1596, "m^2")
  3343. },
  3344. "pawLength": {
  3345. name: "Paw Length",
  3346. power: 1,
  3347. type: "length",
  3348. base: math.unit(0.7, "m")
  3349. }
  3350. }
  3351. },
  3352. paw: {
  3353. height: math.unit(2.14, "feet"),
  3354. name: "Paw",
  3355. image: {
  3356. source: "./media/characters/fory/paw.svg"
  3357. },
  3358. form: "weaselbun",
  3359. extraAttributes: {
  3360. "pawSize": {
  3361. name: "Paw Size",
  3362. power: 2,
  3363. type: "area",
  3364. base: math.unit(0.1596, "m^2")
  3365. },
  3366. "pawLength": {
  3367. name: "Paw Length",
  3368. power: 1,
  3369. type: "length",
  3370. base: math.unit(0.48, "m")
  3371. }
  3372. }
  3373. },
  3374. bunBack: {
  3375. height: math.unit(3, "feet"),
  3376. weight: math.unit(20, "kg"),
  3377. preyCapacity: math.unit(3, "people"),
  3378. name: "Back",
  3379. image: {
  3380. source: "./media/characters/fory/bun-back.svg",
  3381. extra: 1749/1564,
  3382. bottom: 246/1995
  3383. },
  3384. form: "bun",
  3385. default: true,
  3386. extraAttributes: {
  3387. "pawSize": {
  3388. name: "Paw Size",
  3389. power: 2,
  3390. type: "area",
  3391. base: math.unit(0.072, "m^2")
  3392. },
  3393. "pawLength": {
  3394. name: "Paw Length",
  3395. power: 1,
  3396. type: "length",
  3397. base: math.unit(0.45, "m")
  3398. }
  3399. }
  3400. },
  3401. },
  3402. [
  3403. {
  3404. name: "Normal",
  3405. height: math.unit(5, "feet"),
  3406. form: "weaselbun"
  3407. },
  3408. {
  3409. name: "Macro",
  3410. height: math.unit(50, "feet"),
  3411. default: true,
  3412. form: "weaselbun"
  3413. },
  3414. {
  3415. name: "Megamacro",
  3416. height: math.unit(10, "miles"),
  3417. form: "weaselbun"
  3418. },
  3419. {
  3420. name: "Gigamacro",
  3421. height: math.unit(5, "earths"),
  3422. form: "weaselbun"
  3423. },
  3424. {
  3425. name: "Normal",
  3426. height: math.unit(3, "feet"),
  3427. default: true,
  3428. form: "bun"
  3429. },
  3430. {
  3431. name: "Fun-Size",
  3432. height: math.unit(12, "feet"),
  3433. form: "bun"
  3434. },
  3435. {
  3436. name: "Macro",
  3437. height: math.unit(100, "feet"),
  3438. form: "bun"
  3439. },
  3440. {
  3441. name: "Planetary",
  3442. height: math.unit(3, "earths"),
  3443. form: "bun"
  3444. },
  3445. ],
  3446. {
  3447. "weaselbun": {
  3448. name: "Weaselbun",
  3449. default: true
  3450. },
  3451. "bun": {
  3452. name: "Bun",
  3453. },
  3454. }
  3455. ))
  3456. characterMakers.push(() => makeCharacter(
  3457. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3458. {
  3459. front: {
  3460. height: math.unit(7, "feet"),
  3461. weight: math.unit(90, "kg"),
  3462. name: "Front",
  3463. image: {
  3464. source: "./media/characters/kurrikage/front.svg",
  3465. extra: 1845/1733,
  3466. bottom: 119/1964
  3467. }
  3468. },
  3469. back: {
  3470. height: math.unit(7, "feet"),
  3471. weight: math.unit(90, "kg"),
  3472. name: "Back",
  3473. image: {
  3474. source: "./media/characters/kurrikage/back.svg",
  3475. extra: 1790/1677,
  3476. bottom: 61/1851
  3477. }
  3478. },
  3479. dressed: {
  3480. height: math.unit(7, "feet"),
  3481. weight: math.unit(90, "kg"),
  3482. name: "Dressed",
  3483. image: {
  3484. source: "./media/characters/kurrikage/dressed.svg",
  3485. extra: 1845/1733,
  3486. bottom: 119/1964
  3487. }
  3488. },
  3489. foot: {
  3490. height: math.unit(1.5, "feet"),
  3491. name: "Foot",
  3492. image: {
  3493. source: "./media/characters/kurrikage/foot.svg"
  3494. }
  3495. },
  3496. staff: {
  3497. height: math.unit(6.7, "feet"),
  3498. name: "Staff",
  3499. image: {
  3500. source: "./media/characters/kurrikage/staff.svg"
  3501. }
  3502. },
  3503. peek: {
  3504. height: math.unit(1.05, "feet"),
  3505. name: "Peeking",
  3506. image: {
  3507. source: "./media/characters/kurrikage/peek.svg",
  3508. bottom: 0.08
  3509. }
  3510. },
  3511. },
  3512. [
  3513. {
  3514. name: "Normal",
  3515. height: math.unit(12, "feet"),
  3516. default: true
  3517. },
  3518. {
  3519. name: "Big",
  3520. height: math.unit(20, "feet")
  3521. },
  3522. {
  3523. name: "Macro",
  3524. height: math.unit(500, "feet")
  3525. },
  3526. {
  3527. name: "Megamacro",
  3528. height: math.unit(20, "miles")
  3529. },
  3530. ]
  3531. ))
  3532. characterMakers.push(() => makeCharacter(
  3533. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3534. {
  3535. front: {
  3536. height: math.unit(6, "feet"),
  3537. weight: math.unit(75, "kg"),
  3538. name: "Front",
  3539. image: {
  3540. source: "./media/characters/shingo/front.svg",
  3541. extra: 1900/1825,
  3542. bottom: 82/1982
  3543. }
  3544. },
  3545. side: {
  3546. height: math.unit(6, "feet"),
  3547. weight: math.unit(75, "kg"),
  3548. name: "Side",
  3549. image: {
  3550. source: "./media/characters/shingo/side.svg",
  3551. extra: 1930/1865,
  3552. bottom: 16/1946
  3553. }
  3554. },
  3555. back: {
  3556. height: math.unit(6, "feet"),
  3557. weight: math.unit(75, "kg"),
  3558. name: "Back",
  3559. image: {
  3560. source: "./media/characters/shingo/back.svg",
  3561. extra: 1922/1852,
  3562. bottom: 16/1938
  3563. }
  3564. },
  3565. frontDressed: {
  3566. height: math.unit(6, "feet"),
  3567. weight: math.unit(150, "lb"),
  3568. name: "Front-dressed",
  3569. image: {
  3570. source: "./media/characters/shingo/front-dressed.svg",
  3571. extra: 1900/1825,
  3572. bottom: 82/1982
  3573. }
  3574. },
  3575. paw: {
  3576. height: math.unit(1.29, "feet"),
  3577. name: "Paw",
  3578. image: {
  3579. source: "./media/characters/shingo/paw.svg"
  3580. }
  3581. },
  3582. hand: {
  3583. height: math.unit(1.07, "feet"),
  3584. name: "Hand",
  3585. image: {
  3586. source: "./media/characters/shingo/hand.svg"
  3587. }
  3588. },
  3589. frontAlt: {
  3590. height: math.unit(6, "feet"),
  3591. weight: math.unit(75, "kg"),
  3592. name: "Front (Alt)",
  3593. image: {
  3594. source: "./media/characters/shingo/front-alt.svg",
  3595. extra: 3511 / 3338,
  3596. bottom: 0.005
  3597. }
  3598. },
  3599. frontAlt2: {
  3600. height: math.unit(6, "feet"),
  3601. weight: math.unit(75, "kg"),
  3602. name: "Front (Alt 2)",
  3603. image: {
  3604. source: "./media/characters/shingo/front-alt-2.svg",
  3605. extra: 706/681,
  3606. bottom: 11/717
  3607. }
  3608. },
  3609. pawAlt: {
  3610. height: math.unit(1, "feet"),
  3611. name: "Paw (Alt)",
  3612. image: {
  3613. source: "./media/characters/shingo/paw-alt.svg"
  3614. }
  3615. },
  3616. },
  3617. [
  3618. {
  3619. name: "Micro",
  3620. height: math.unit(4, "inches")
  3621. },
  3622. {
  3623. name: "Normal",
  3624. height: math.unit(6, "feet"),
  3625. default: true
  3626. },
  3627. {
  3628. name: "Macro",
  3629. height: math.unit(108, "feet")
  3630. },
  3631. {
  3632. name: "Macro+",
  3633. height: math.unit(1500, "feet")
  3634. },
  3635. ]
  3636. ))
  3637. characterMakers.push(() => makeCharacter(
  3638. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3639. {
  3640. side: {
  3641. height: math.unit(6, "feet"),
  3642. weight: math.unit(75, "kg"),
  3643. name: "Side",
  3644. image: {
  3645. source: "./media/characters/aigey/side.svg"
  3646. }
  3647. },
  3648. },
  3649. [
  3650. {
  3651. name: "Macro",
  3652. height: math.unit(200, "feet"),
  3653. default: true
  3654. },
  3655. {
  3656. name: "Megamacro",
  3657. height: math.unit(100, "miles")
  3658. },
  3659. ]
  3660. )
  3661. )
  3662. characterMakers.push(() => makeCharacter(
  3663. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3664. {
  3665. front: {
  3666. height: math.unit(5 + 5 / 12, "feet"),
  3667. weight: math.unit(75, "kg"),
  3668. name: "Front",
  3669. image: {
  3670. source: "./media/characters/natasha/front.svg",
  3671. extra: 859 / 824,
  3672. bottom: 23 / 879.6
  3673. }
  3674. },
  3675. frontNsfw: {
  3676. height: math.unit(5 + 5 / 12, "feet"),
  3677. weight: math.unit(75, "kg"),
  3678. name: "Front (NSFW)",
  3679. image: {
  3680. source: "./media/characters/natasha/front-nsfw.svg",
  3681. extra: 859 / 824,
  3682. bottom: 23 / 879.6
  3683. }
  3684. },
  3685. frontErect: {
  3686. height: math.unit(5 + 5 / 12, "feet"),
  3687. weight: math.unit(75, "kg"),
  3688. name: "Front (Erect)",
  3689. image: {
  3690. source: "./media/characters/natasha/front-erect.svg",
  3691. extra: 859 / 824,
  3692. bottom: 23 / 879.6
  3693. }
  3694. },
  3695. back: {
  3696. height: math.unit(5 + 5 / 12, "feet"),
  3697. weight: math.unit(75, "kg"),
  3698. name: "Back",
  3699. image: {
  3700. source: "./media/characters/natasha/back.svg",
  3701. extra: 887.9 / 852.6,
  3702. bottom: 9.7 / 896.4
  3703. }
  3704. },
  3705. backAlt: {
  3706. height: math.unit(5 + 5 / 12, "feet"),
  3707. weight: math.unit(75, "kg"),
  3708. name: "Back (Alt)",
  3709. image: {
  3710. source: "./media/characters/natasha/back-alt.svg",
  3711. extra: 1236.7 / 1192,
  3712. bottom: 22.3 / 1258.2
  3713. }
  3714. },
  3715. dick: {
  3716. height: math.unit(1.772, "feet"),
  3717. name: "Dick",
  3718. image: {
  3719. source: "./media/characters/natasha/dick.svg"
  3720. }
  3721. },
  3722. paw: {
  3723. height: math.unit(0.250, "meters"),
  3724. name: "Paw",
  3725. image: {
  3726. source: "./media/characters/natasha/paw.svg"
  3727. },
  3728. extraAttributes: {
  3729. "toeSize": {
  3730. name: "Toe Size",
  3731. power: 2,
  3732. type: "area",
  3733. base: math.unit(0.0024, "m^2")
  3734. },
  3735. "padSize": {
  3736. name: "Pad Size",
  3737. power: 2,
  3738. type: "area",
  3739. base: math.unit(0.00889, "m^2")
  3740. },
  3741. "pawSize": {
  3742. name: "Paw Size",
  3743. power: 2,
  3744. type: "area",
  3745. base: math.unit(0.023667, "m^2")
  3746. },
  3747. }
  3748. },
  3749. },
  3750. [
  3751. {
  3752. name: "Shortstack",
  3753. height: math.unit(3, "feet"),
  3754. default: true
  3755. },
  3756. {
  3757. name: "Normal",
  3758. height: math.unit(5 + 5 / 12, "feet")
  3759. },
  3760. {
  3761. name: "Large",
  3762. height: math.unit(12, "feet")
  3763. },
  3764. {
  3765. name: "Macro",
  3766. height: math.unit(100, "feet")
  3767. },
  3768. {
  3769. name: "Macro+",
  3770. height: math.unit(260, "feet")
  3771. },
  3772. {
  3773. name: "Macro++",
  3774. height: math.unit(1, "mile")
  3775. },
  3776. ]
  3777. ))
  3778. characterMakers.push(() => makeCharacter(
  3779. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3780. {
  3781. front: {
  3782. height: math.unit(6, "feet"),
  3783. weight: math.unit(75, "kg"),
  3784. name: "Front",
  3785. image: {
  3786. source: "./media/characters/malik/front.svg",
  3787. extra: 1750/1561,
  3788. bottom: 80/1830
  3789. },
  3790. extraAttributes: {
  3791. "toeSize": {
  3792. name: "Toe Size",
  3793. power: 2,
  3794. type: "area",
  3795. base: math.unit(0.0159, "m^2")
  3796. },
  3797. "pawSize": {
  3798. name: "Paw Size",
  3799. power: 2,
  3800. type: "area",
  3801. base: math.unit(0.09834, "m^2")
  3802. },
  3803. }
  3804. },
  3805. side: {
  3806. height: math.unit(6, "feet"),
  3807. weight: math.unit(75, "kg"),
  3808. name: "Side",
  3809. image: {
  3810. source: "./media/characters/malik/side.svg",
  3811. extra: 1802/1685,
  3812. bottom: 42/1844
  3813. },
  3814. extraAttributes: {
  3815. "toeSize": {
  3816. name: "Toe Size",
  3817. power: 2,
  3818. type: "area",
  3819. base: math.unit(0.0159, "m^2")
  3820. },
  3821. "pawSize": {
  3822. name: "Paw Size",
  3823. power: 2,
  3824. type: "area",
  3825. base: math.unit(0.09834, "m^2")
  3826. },
  3827. }
  3828. },
  3829. back: {
  3830. height: math.unit(6, "feet"),
  3831. weight: math.unit(75, "kg"),
  3832. name: "Back",
  3833. image: {
  3834. source: "./media/characters/malik/back.svg",
  3835. extra: 1803/1607,
  3836. bottom: 33/1836
  3837. },
  3838. extraAttributes: {
  3839. "toeSize": {
  3840. name: "Toe Size",
  3841. power: 2,
  3842. type: "area",
  3843. base: math.unit(0.0159, "m^2")
  3844. },
  3845. "pawSize": {
  3846. name: "Paw Size",
  3847. power: 2,
  3848. type: "area",
  3849. base: math.unit(0.09834, "m^2")
  3850. },
  3851. }
  3852. },
  3853. },
  3854. [
  3855. {
  3856. name: "Macro",
  3857. height: math.unit(156, "feet"),
  3858. default: true
  3859. },
  3860. {
  3861. name: "Macro+",
  3862. height: math.unit(1188, "feet")
  3863. },
  3864. ]
  3865. ))
  3866. characterMakers.push(() => makeCharacter(
  3867. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3868. {
  3869. front: {
  3870. height: math.unit(6, "feet"),
  3871. weight: math.unit(75, "kg"),
  3872. name: "Front",
  3873. image: {
  3874. source: "./media/characters/sefer/front.svg",
  3875. extra: 848 / 659,
  3876. bottom: 28.3 / 876.442
  3877. }
  3878. },
  3879. back: {
  3880. height: math.unit(6, "feet"),
  3881. weight: math.unit(75, "kg"),
  3882. name: "Back",
  3883. image: {
  3884. source: "./media/characters/sefer/back.svg",
  3885. extra: 864 / 695,
  3886. bottom: 10 / 871
  3887. }
  3888. },
  3889. frontDressed: {
  3890. height: math.unit(6, "feet"),
  3891. weight: math.unit(75, "kg"),
  3892. name: "Dressed",
  3893. image: {
  3894. source: "./media/characters/sefer/dressed.svg",
  3895. extra: 839 / 653,
  3896. bottom: 37.6 / 878
  3897. }
  3898. },
  3899. },
  3900. [
  3901. {
  3902. name: "Normal",
  3903. height: math.unit(6, "feet"),
  3904. default: true
  3905. },
  3906. {
  3907. name: "Big",
  3908. height: math.unit(8, "meters")
  3909. },
  3910. ]
  3911. ))
  3912. characterMakers.push(() => makeCharacter(
  3913. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3914. {
  3915. body: {
  3916. height: math.unit(2.2428, "meter"),
  3917. weight: math.unit(124.738, "kg"),
  3918. name: "Body",
  3919. image: {
  3920. extra: 1225 / 1050,
  3921. source: "./media/characters/north/front.svg"
  3922. }
  3923. }
  3924. },
  3925. [
  3926. {
  3927. name: "Micro",
  3928. height: math.unit(4, "inches")
  3929. },
  3930. {
  3931. name: "Macro",
  3932. height: math.unit(63, "meters")
  3933. },
  3934. {
  3935. name: "Megamacro",
  3936. height: math.unit(101, "miles"),
  3937. default: true
  3938. }
  3939. ]
  3940. ))
  3941. characterMakers.push(() => makeCharacter(
  3942. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3943. {
  3944. angled: {
  3945. height: math.unit(4, "meter"),
  3946. weight: math.unit(150, "kg"),
  3947. name: "Angled",
  3948. image: {
  3949. source: "./media/characters/talan/angled-sfw.svg",
  3950. bottom: 29 / 3734
  3951. }
  3952. },
  3953. angledNsfw: {
  3954. height: math.unit(4, "meter"),
  3955. weight: math.unit(150, "kg"),
  3956. name: "Angled (NSFW)",
  3957. image: {
  3958. source: "./media/characters/talan/angled-nsfw.svg",
  3959. bottom: 29 / 3734
  3960. }
  3961. },
  3962. frontNsfw: {
  3963. height: math.unit(4, "meter"),
  3964. weight: math.unit(150, "kg"),
  3965. name: "Front (NSFW)",
  3966. image: {
  3967. source: "./media/characters/talan/front-nsfw.svg",
  3968. bottom: 29 / 3734
  3969. }
  3970. },
  3971. sideNsfw: {
  3972. height: math.unit(4, "meter"),
  3973. weight: math.unit(150, "kg"),
  3974. name: "Side (NSFW)",
  3975. image: {
  3976. source: "./media/characters/talan/side-nsfw.svg",
  3977. bottom: 29 / 3734
  3978. }
  3979. },
  3980. back: {
  3981. height: math.unit(4, "meter"),
  3982. weight: math.unit(150, "kg"),
  3983. name: "Back",
  3984. image: {
  3985. source: "./media/characters/talan/back.svg"
  3986. }
  3987. },
  3988. dickBottom: {
  3989. height: math.unit(0.621, "meter"),
  3990. name: "Dick (Bottom)",
  3991. image: {
  3992. source: "./media/characters/talan/dick-bottom.svg"
  3993. }
  3994. },
  3995. dickTop: {
  3996. height: math.unit(0.621, "meter"),
  3997. name: "Dick (Top)",
  3998. image: {
  3999. source: "./media/characters/talan/dick-top.svg"
  4000. }
  4001. },
  4002. dickSide: {
  4003. height: math.unit(0.305, "meter"),
  4004. name: "Dick (Side)",
  4005. image: {
  4006. source: "./media/characters/talan/dick-side.svg"
  4007. }
  4008. },
  4009. dickFront: {
  4010. height: math.unit(0.305, "meter"),
  4011. name: "Dick (Front)",
  4012. image: {
  4013. source: "./media/characters/talan/dick-front.svg"
  4014. }
  4015. },
  4016. },
  4017. [
  4018. {
  4019. name: "Normal",
  4020. height: math.unit(4, "meters")
  4021. },
  4022. {
  4023. name: "Macro",
  4024. height: math.unit(100, "meters")
  4025. },
  4026. {
  4027. name: "Megamacro",
  4028. height: math.unit(2, "miles"),
  4029. default: true
  4030. },
  4031. {
  4032. name: "Gigamacro",
  4033. height: math.unit(5000, "miles")
  4034. },
  4035. {
  4036. name: "Teramacro",
  4037. height: math.unit(100, "parsecs")
  4038. }
  4039. ]
  4040. ))
  4041. characterMakers.push(() => makeCharacter(
  4042. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4043. {
  4044. front: {
  4045. height: math.unit(2, "meter"),
  4046. weight: math.unit(90, "kg"),
  4047. name: "Front",
  4048. image: {
  4049. source: "./media/characters/gael'rathus/front.svg"
  4050. }
  4051. },
  4052. frontAlt: {
  4053. height: math.unit(2, "meter"),
  4054. weight: math.unit(90, "kg"),
  4055. name: "Front (alt)",
  4056. image: {
  4057. source: "./media/characters/gael'rathus/front-alt.svg"
  4058. }
  4059. },
  4060. frontAlt2: {
  4061. height: math.unit(2, "meter"),
  4062. weight: math.unit(90, "kg"),
  4063. name: "Front (alt 2)",
  4064. image: {
  4065. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4066. }
  4067. }
  4068. },
  4069. [
  4070. {
  4071. name: "Normal",
  4072. height: math.unit(9, "feet"),
  4073. default: true
  4074. },
  4075. {
  4076. name: "Large",
  4077. height: math.unit(25, "feet")
  4078. },
  4079. {
  4080. name: "Macro",
  4081. height: math.unit(0.25, "miles")
  4082. },
  4083. {
  4084. name: "Megamacro",
  4085. height: math.unit(10, "miles")
  4086. }
  4087. ]
  4088. ))
  4089. characterMakers.push(() => makeCharacter(
  4090. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4091. {
  4092. side: {
  4093. height: math.unit(2, "meter"),
  4094. weight: math.unit(140, "kg"),
  4095. name: "Side",
  4096. image: {
  4097. source: "./media/characters/sosha/side.svg",
  4098. extra: 1170/1006,
  4099. bottom: 94/1264
  4100. }
  4101. },
  4102. maw: {
  4103. height: math.unit(2.87, "feet"),
  4104. name: "Maw",
  4105. image: {
  4106. source: "./media/characters/sosha/maw.svg",
  4107. extra: 966/865,
  4108. bottom: 0/966
  4109. }
  4110. },
  4111. cooch: {
  4112. height: math.unit(5.6, "feet"),
  4113. name: "Cooch",
  4114. image: {
  4115. source: "./media/characters/sosha/cooch.svg"
  4116. }
  4117. },
  4118. },
  4119. [
  4120. {
  4121. name: "Normal",
  4122. height: math.unit(12, "feet"),
  4123. default: true
  4124. }
  4125. ]
  4126. ))
  4127. characterMakers.push(() => makeCharacter(
  4128. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4129. {
  4130. side: {
  4131. height: math.unit(5 + 5 / 12, "feet"),
  4132. weight: math.unit(170, "kg"),
  4133. name: "Side",
  4134. image: {
  4135. source: "./media/characters/runnola/side.svg",
  4136. extra: 741 / 448,
  4137. bottom: 0.05
  4138. }
  4139. },
  4140. },
  4141. [
  4142. {
  4143. name: "Small",
  4144. height: math.unit(3, "feet")
  4145. },
  4146. {
  4147. name: "Normal",
  4148. height: math.unit(5 + 5 / 12, "feet"),
  4149. default: true
  4150. },
  4151. {
  4152. name: "Big",
  4153. height: math.unit(10, "feet")
  4154. },
  4155. ]
  4156. ))
  4157. characterMakers.push(() => makeCharacter(
  4158. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4159. {
  4160. front: {
  4161. height: math.unit(2, "meter"),
  4162. weight: math.unit(50, "kg"),
  4163. name: "Front",
  4164. image: {
  4165. source: "./media/characters/kurribird/front.svg",
  4166. bottom: 0.015
  4167. }
  4168. },
  4169. frontAlt: {
  4170. height: math.unit(1.5, "meter"),
  4171. weight: math.unit(50, "kg"),
  4172. name: "Front (Alt)",
  4173. image: {
  4174. source: "./media/characters/kurribird/front-alt.svg",
  4175. extra: 1.45
  4176. }
  4177. },
  4178. },
  4179. [
  4180. {
  4181. name: "Normal",
  4182. height: math.unit(7, "feet")
  4183. },
  4184. {
  4185. name: "Big",
  4186. height: math.unit(12, "feet"),
  4187. default: true
  4188. },
  4189. {
  4190. name: "Macro",
  4191. height: math.unit(1500, "feet")
  4192. },
  4193. {
  4194. name: "Megamacro",
  4195. height: math.unit(2, "miles")
  4196. }
  4197. ]
  4198. ))
  4199. characterMakers.push(() => makeCharacter(
  4200. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4201. {
  4202. front: {
  4203. height: math.unit(2, "meter"),
  4204. weight: math.unit(80, "kg"),
  4205. name: "Front",
  4206. image: {
  4207. source: "./media/characters/elbial/front.svg",
  4208. extra: 1643 / 1556,
  4209. bottom: 60.2 / 1696
  4210. }
  4211. },
  4212. side: {
  4213. height: math.unit(2, "meter"),
  4214. weight: math.unit(80, "kg"),
  4215. name: "Side",
  4216. image: {
  4217. source: "./media/characters/elbial/side.svg",
  4218. extra: 1601/1528,
  4219. bottom: 97/1698
  4220. }
  4221. },
  4222. back: {
  4223. height: math.unit(2, "meter"),
  4224. weight: math.unit(80, "kg"),
  4225. name: "Back",
  4226. image: {
  4227. source: "./media/characters/elbial/back.svg",
  4228. extra: 1653/1569,
  4229. bottom: 20/1673
  4230. }
  4231. },
  4232. frontDressed: {
  4233. height: math.unit(2, "meter"),
  4234. weight: math.unit(80, "kg"),
  4235. name: "Front (Dressed)",
  4236. image: {
  4237. source: "./media/characters/elbial/front-dressed.svg",
  4238. extra: 1638/1569,
  4239. bottom: 70/1708
  4240. }
  4241. },
  4242. genitals: {
  4243. height: math.unit(2 / 3.367, "meter"),
  4244. name: "Genitals",
  4245. image: {
  4246. source: "./media/characters/elbial/genitals.svg"
  4247. }
  4248. },
  4249. },
  4250. [
  4251. {
  4252. name: "Large",
  4253. height: math.unit(100, "feet")
  4254. },
  4255. {
  4256. name: "Macro",
  4257. height: math.unit(500, "feet"),
  4258. default: true
  4259. },
  4260. {
  4261. name: "Megamacro",
  4262. height: math.unit(10, "miles")
  4263. },
  4264. {
  4265. name: "Gigamacro",
  4266. height: math.unit(25000, "miles")
  4267. },
  4268. {
  4269. name: "Full-Size",
  4270. height: math.unit(8000000, "gigaparsecs")
  4271. }
  4272. ]
  4273. ))
  4274. characterMakers.push(() => makeCharacter(
  4275. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4276. {
  4277. front: {
  4278. height: math.unit(2, "meter"),
  4279. weight: math.unit(60, "kg"),
  4280. name: "Front",
  4281. image: {
  4282. source: "./media/characters/noah/front.svg"
  4283. }
  4284. },
  4285. talons: {
  4286. height: math.unit(0.315, "meter"),
  4287. name: "Talons",
  4288. image: {
  4289. source: "./media/characters/noah/talons.svg"
  4290. }
  4291. }
  4292. },
  4293. [
  4294. {
  4295. name: "Large",
  4296. height: math.unit(50, "feet")
  4297. },
  4298. {
  4299. name: "Macro",
  4300. height: math.unit(750, "feet"),
  4301. default: true
  4302. },
  4303. {
  4304. name: "Megamacro",
  4305. height: math.unit(50, "miles")
  4306. },
  4307. {
  4308. name: "Gigamacro",
  4309. height: math.unit(100000, "miles")
  4310. },
  4311. {
  4312. name: "Full-Size",
  4313. height: math.unit(3000000000, "miles")
  4314. }
  4315. ]
  4316. ))
  4317. characterMakers.push(() => makeCharacter(
  4318. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4319. {
  4320. front: {
  4321. height: math.unit(2, "meter"),
  4322. weight: math.unit(80, "kg"),
  4323. name: "Front",
  4324. image: {
  4325. source: "./media/characters/natalya/front.svg"
  4326. }
  4327. },
  4328. back: {
  4329. height: math.unit(2, "meter"),
  4330. weight: math.unit(80, "kg"),
  4331. name: "Back",
  4332. image: {
  4333. source: "./media/characters/natalya/back.svg"
  4334. }
  4335. }
  4336. },
  4337. [
  4338. {
  4339. name: "Normal",
  4340. height: math.unit(150, "feet"),
  4341. default: true
  4342. },
  4343. {
  4344. name: "Megamacro",
  4345. height: math.unit(5, "miles")
  4346. },
  4347. {
  4348. name: "Full-Size",
  4349. height: math.unit(600, "kiloparsecs")
  4350. }
  4351. ]
  4352. ))
  4353. characterMakers.push(() => makeCharacter(
  4354. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4355. {
  4356. front: {
  4357. height: math.unit(2, "meter"),
  4358. weight: math.unit(50, "kg"),
  4359. name: "Front",
  4360. image: {
  4361. source: "./media/characters/erestrebah/front.svg",
  4362. extra: 1262/1162,
  4363. bottom: 96/1358
  4364. }
  4365. },
  4366. back: {
  4367. height: math.unit(2, "meter"),
  4368. weight: math.unit(50, "kg"),
  4369. name: "Back",
  4370. image: {
  4371. source: "./media/characters/erestrebah/back.svg",
  4372. extra: 1257/1139,
  4373. bottom: 13/1270
  4374. }
  4375. },
  4376. wing: {
  4377. height: math.unit(2, "meter"),
  4378. weight: math.unit(50, "kg"),
  4379. name: "Wing",
  4380. image: {
  4381. source: "./media/characters/erestrebah/wing.svg",
  4382. extra: 1262/1162,
  4383. bottom: 96/1358
  4384. }
  4385. },
  4386. mouth: {
  4387. height: math.unit(0.39, "feet"),
  4388. name: "Mouth",
  4389. image: {
  4390. source: "./media/characters/erestrebah/mouth.svg"
  4391. }
  4392. }
  4393. },
  4394. [
  4395. {
  4396. name: "Normal",
  4397. height: math.unit(10, "feet")
  4398. },
  4399. {
  4400. name: "Large",
  4401. height: math.unit(50, "feet"),
  4402. default: true
  4403. },
  4404. {
  4405. name: "Macro",
  4406. height: math.unit(300, "feet")
  4407. },
  4408. {
  4409. name: "Macro+",
  4410. height: math.unit(750, "feet")
  4411. },
  4412. {
  4413. name: "Megamacro",
  4414. height: math.unit(3, "miles")
  4415. }
  4416. ]
  4417. ))
  4418. characterMakers.push(() => makeCharacter(
  4419. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4420. {
  4421. front: {
  4422. height: math.unit(2, "meter"),
  4423. weight: math.unit(80, "kg"),
  4424. name: "Front",
  4425. image: {
  4426. source: "./media/characters/jennifer/front.svg",
  4427. bottom: 0.11,
  4428. extra: 1.16
  4429. }
  4430. },
  4431. frontAlt: {
  4432. height: math.unit(2, "meter"),
  4433. weight: math.unit(80, "kg"),
  4434. name: "Front (Alt)",
  4435. image: {
  4436. source: "./media/characters/jennifer/front-alt.svg"
  4437. }
  4438. }
  4439. },
  4440. [
  4441. {
  4442. name: "Canon Height",
  4443. height: math.unit(120, "feet"),
  4444. default: true
  4445. },
  4446. {
  4447. name: "Macro+",
  4448. height: math.unit(300, "feet")
  4449. },
  4450. {
  4451. name: "Megamacro",
  4452. height: math.unit(20000, "feet")
  4453. }
  4454. ]
  4455. ))
  4456. characterMakers.push(() => makeCharacter(
  4457. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4458. {
  4459. front: {
  4460. height: math.unit(2, "meter"),
  4461. weight: math.unit(50, "kg"),
  4462. name: "Front",
  4463. image: {
  4464. source: "./media/characters/kalista/front.svg",
  4465. extra: 1314/1145,
  4466. bottom: 101/1415
  4467. }
  4468. },
  4469. back: {
  4470. height: math.unit(2, "meter"),
  4471. weight: math.unit(50, "kg"),
  4472. name: "Back",
  4473. image: {
  4474. source: "./media/characters/kalista/back.svg",
  4475. extra: 1366 / 1156,
  4476. bottom: 33.9 / 1362.78
  4477. }
  4478. }
  4479. },
  4480. [
  4481. {
  4482. name: "Uncomfortably Small",
  4483. height: math.unit(10, "feet")
  4484. },
  4485. {
  4486. name: "Small",
  4487. height: math.unit(30, "feet")
  4488. },
  4489. {
  4490. name: "Macro",
  4491. height: math.unit(100, "feet"),
  4492. default: true
  4493. },
  4494. {
  4495. name: "Macro+",
  4496. height: math.unit(2000, "feet")
  4497. },
  4498. {
  4499. name: "True Form",
  4500. height: math.unit(8924, "miles")
  4501. }
  4502. ]
  4503. ))
  4504. characterMakers.push(() => makeCharacter(
  4505. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4506. {
  4507. front: {
  4508. height: math.unit(2, "meter"),
  4509. weight: math.unit(120, "kg"),
  4510. name: "Front",
  4511. image: {
  4512. source: "./media/characters/ggv/front.svg"
  4513. }
  4514. },
  4515. side: {
  4516. height: math.unit(2, "meter"),
  4517. weight: math.unit(120, "kg"),
  4518. name: "Side",
  4519. image: {
  4520. source: "./media/characters/ggv/side.svg"
  4521. }
  4522. }
  4523. },
  4524. [
  4525. {
  4526. name: "Extremely Puny",
  4527. height: math.unit(9 + 5 / 12, "feet")
  4528. },
  4529. {
  4530. name: "Horribly Small",
  4531. height: math.unit(47.7, "miles"),
  4532. default: true
  4533. },
  4534. {
  4535. name: "Reasonably Sized",
  4536. height: math.unit(25000, "parsecs")
  4537. },
  4538. {
  4539. name: "Slightly Uncompressed",
  4540. height: math.unit(7.77e31, "parsecs")
  4541. },
  4542. {
  4543. name: "Omniversal",
  4544. height: math.unit(1e300, "meters")
  4545. },
  4546. ]
  4547. ))
  4548. characterMakers.push(() => makeCharacter(
  4549. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4550. {
  4551. front: {
  4552. height: math.unit(2, "meter"),
  4553. weight: math.unit(75, "lb"),
  4554. name: "Front",
  4555. image: {
  4556. source: "./media/characters/napalm/front.svg"
  4557. }
  4558. },
  4559. back: {
  4560. height: math.unit(2, "meter"),
  4561. weight: math.unit(75, "lb"),
  4562. name: "Back",
  4563. image: {
  4564. source: "./media/characters/napalm/back.svg"
  4565. }
  4566. }
  4567. },
  4568. [
  4569. {
  4570. name: "Standard",
  4571. height: math.unit(55, "feet"),
  4572. default: true
  4573. }
  4574. ]
  4575. ))
  4576. characterMakers.push(() => makeCharacter(
  4577. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4578. {
  4579. front: {
  4580. height: math.unit(7 + 5 / 6, "feet"),
  4581. weight: math.unit(325, "lb"),
  4582. name: "Front",
  4583. image: {
  4584. source: "./media/characters/asana/front.svg",
  4585. extra: 1133 / 1060,
  4586. bottom: 15.2 / 1148.6
  4587. }
  4588. },
  4589. back: {
  4590. height: math.unit(7 + 5 / 6, "feet"),
  4591. weight: math.unit(325, "lb"),
  4592. name: "Back",
  4593. image: {
  4594. source: "./media/characters/asana/back.svg",
  4595. extra: 1114 / 1043,
  4596. bottom: 5 / 1120
  4597. }
  4598. },
  4599. dressedDark: {
  4600. height: math.unit(7 + 5 / 6, "feet"),
  4601. weight: math.unit(325, "lb"),
  4602. name: "Dressed (Dark)",
  4603. image: {
  4604. source: "./media/characters/asana/dressed-dark.svg",
  4605. extra: 1133 / 1060,
  4606. bottom: 15.2 / 1148.6
  4607. }
  4608. },
  4609. dressedLight: {
  4610. height: math.unit(7 + 5 / 6, "feet"),
  4611. weight: math.unit(325, "lb"),
  4612. name: "Dressed (Light)",
  4613. image: {
  4614. source: "./media/characters/asana/dressed-light.svg",
  4615. extra: 1133 / 1060,
  4616. bottom: 15.2 / 1148.6
  4617. }
  4618. },
  4619. },
  4620. [
  4621. {
  4622. name: "Standard",
  4623. height: math.unit(7 + 5 / 6, "feet"),
  4624. default: true
  4625. },
  4626. {
  4627. name: "Large",
  4628. height: math.unit(10, "meters")
  4629. },
  4630. {
  4631. name: "Macro",
  4632. height: math.unit(2500, "meters")
  4633. },
  4634. {
  4635. name: "Megamacro",
  4636. height: math.unit(5e6, "meters")
  4637. },
  4638. {
  4639. name: "Examacro",
  4640. height: math.unit(5e12, "lightyears")
  4641. },
  4642. {
  4643. name: "Max Size",
  4644. height: math.unit(1e31, "lightyears")
  4645. }
  4646. ]
  4647. ))
  4648. characterMakers.push(() => makeCharacter(
  4649. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4650. {
  4651. front: {
  4652. height: math.unit(2, "meter"),
  4653. weight: math.unit(60, "kg"),
  4654. name: "Front",
  4655. image: {
  4656. source: "./media/characters/ebony/front.svg",
  4657. bottom: 0.03,
  4658. extra: 1045 / 810 + 0.03
  4659. }
  4660. },
  4661. side: {
  4662. height: math.unit(2, "meter"),
  4663. weight: math.unit(60, "kg"),
  4664. name: "Side",
  4665. image: {
  4666. source: "./media/characters/ebony/side.svg",
  4667. bottom: 0.03,
  4668. extra: 1045 / 810 + 0.03
  4669. }
  4670. },
  4671. back: {
  4672. height: math.unit(2, "meter"),
  4673. weight: math.unit(60, "kg"),
  4674. name: "Back",
  4675. image: {
  4676. source: "./media/characters/ebony/back.svg",
  4677. bottom: 0.01,
  4678. extra: 1045 / 810 + 0.01
  4679. }
  4680. },
  4681. },
  4682. [
  4683. // TODO check why I did this lol
  4684. {
  4685. name: "Standard",
  4686. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4687. default: true
  4688. },
  4689. {
  4690. name: "Macro",
  4691. height: math.unit(200, "feet")
  4692. },
  4693. {
  4694. name: "Gigamacro",
  4695. height: math.unit(13000, "km")
  4696. }
  4697. ]
  4698. ))
  4699. characterMakers.push(() => makeCharacter(
  4700. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4701. {
  4702. front: {
  4703. height: math.unit(6, "feet"),
  4704. weight: math.unit(175, "lb"),
  4705. name: "Front",
  4706. image: {
  4707. source: "./media/characters/mountain/front.svg",
  4708. extra: 972 / 955,
  4709. bottom: 64 / 1036.6
  4710. }
  4711. },
  4712. back: {
  4713. height: math.unit(6, "feet"),
  4714. weight: math.unit(175, "lb"),
  4715. name: "Back",
  4716. image: {
  4717. source: "./media/characters/mountain/back.svg",
  4718. extra: 970 / 950,
  4719. bottom: 28.25 / 999
  4720. }
  4721. },
  4722. },
  4723. [
  4724. {
  4725. name: "Large",
  4726. height: math.unit(20, "meters")
  4727. },
  4728. {
  4729. name: "Macro",
  4730. height: math.unit(300, "meters")
  4731. },
  4732. {
  4733. name: "Gigamacro",
  4734. height: math.unit(10000, "km"),
  4735. default: true
  4736. },
  4737. {
  4738. name: "Examacro",
  4739. height: math.unit(10e9, "lightyears")
  4740. }
  4741. ]
  4742. ))
  4743. characterMakers.push(() => makeCharacter(
  4744. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4745. {
  4746. front: {
  4747. height: math.unit(8, "feet"),
  4748. weight: math.unit(500, "lb"),
  4749. name: "Front",
  4750. image: {
  4751. source: "./media/characters/rick/front.svg"
  4752. }
  4753. }
  4754. },
  4755. [
  4756. {
  4757. name: "Normal",
  4758. height: math.unit(8, "feet"),
  4759. default: true
  4760. },
  4761. {
  4762. name: "Macro",
  4763. height: math.unit(5, "km")
  4764. }
  4765. ]
  4766. ))
  4767. characterMakers.push(() => makeCharacter(
  4768. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4769. {
  4770. front: {
  4771. height: math.unit(8, "feet"),
  4772. weight: math.unit(120, "lb"),
  4773. name: "Front",
  4774. image: {
  4775. source: "./media/characters/ona/front.svg"
  4776. }
  4777. },
  4778. frontAlt: {
  4779. height: math.unit(8, "feet"),
  4780. weight: math.unit(120, "lb"),
  4781. name: "Front (Alt)",
  4782. image: {
  4783. source: "./media/characters/ona/front-alt.svg"
  4784. }
  4785. },
  4786. back: {
  4787. height: math.unit(8, "feet"),
  4788. weight: math.unit(120, "lb"),
  4789. name: "Back",
  4790. image: {
  4791. source: "./media/characters/ona/back.svg"
  4792. }
  4793. },
  4794. foot: {
  4795. height: math.unit(1.1, "feet"),
  4796. name: "Foot",
  4797. image: {
  4798. source: "./media/characters/ona/foot.svg"
  4799. }
  4800. }
  4801. },
  4802. [
  4803. {
  4804. name: "Megamacro",
  4805. height: math.unit(70, "km"),
  4806. default: true
  4807. },
  4808. {
  4809. name: "Gigamacro",
  4810. height: math.unit(681818, "miles")
  4811. },
  4812. {
  4813. name: "Examacro",
  4814. height: math.unit(3800000, "lightyears")
  4815. },
  4816. ]
  4817. ))
  4818. characterMakers.push(() => makeCharacter(
  4819. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4820. {
  4821. front: {
  4822. height: math.unit(12, "feet"),
  4823. weight: math.unit(3000, "lb"),
  4824. name: "Front",
  4825. image: {
  4826. source: "./media/characters/mech/front.svg",
  4827. extra: 2900 / 2770,
  4828. bottom: 110 / 3010
  4829. }
  4830. },
  4831. back: {
  4832. height: math.unit(12, "feet"),
  4833. weight: math.unit(3000, "lb"),
  4834. name: "Back",
  4835. image: {
  4836. source: "./media/characters/mech/back.svg",
  4837. extra: 3011 / 2890,
  4838. bottom: 94 / 3105
  4839. }
  4840. },
  4841. maw: {
  4842. height: math.unit(3.07, "feet"),
  4843. name: "Maw",
  4844. image: {
  4845. source: "./media/characters/mech/maw.svg"
  4846. }
  4847. },
  4848. head: {
  4849. height: math.unit(3.07, "feet"),
  4850. name: "Head",
  4851. image: {
  4852. source: "./media/characters/mech/head.svg"
  4853. }
  4854. },
  4855. dick: {
  4856. height: math.unit(1.43, "feet"),
  4857. name: "Dick",
  4858. image: {
  4859. source: "./media/characters/mech/dick.svg"
  4860. }
  4861. },
  4862. },
  4863. [
  4864. {
  4865. name: "Normal",
  4866. height: math.unit(12, "feet")
  4867. },
  4868. {
  4869. name: "Macro",
  4870. height: math.unit(300, "feet"),
  4871. default: true
  4872. },
  4873. {
  4874. name: "Macro+",
  4875. height: math.unit(1500, "feet")
  4876. },
  4877. ]
  4878. ))
  4879. characterMakers.push(() => makeCharacter(
  4880. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4881. {
  4882. front: {
  4883. height: math.unit(1.3, "meter"),
  4884. weight: math.unit(30, "kg"),
  4885. name: "Front",
  4886. image: {
  4887. source: "./media/characters/gregory/front.svg",
  4888. }
  4889. }
  4890. },
  4891. [
  4892. {
  4893. name: "Normal",
  4894. height: math.unit(1.3, "meter"),
  4895. default: true
  4896. },
  4897. {
  4898. name: "Macro",
  4899. height: math.unit(20, "meter")
  4900. }
  4901. ]
  4902. ))
  4903. characterMakers.push(() => makeCharacter(
  4904. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4905. {
  4906. front: {
  4907. height: math.unit(2.8, "meter"),
  4908. weight: math.unit(200, "kg"),
  4909. name: "Front",
  4910. image: {
  4911. source: "./media/characters/elory/front.svg",
  4912. }
  4913. }
  4914. },
  4915. [
  4916. {
  4917. name: "Normal",
  4918. height: math.unit(2.8, "meter"),
  4919. default: true
  4920. },
  4921. {
  4922. name: "Macro",
  4923. height: math.unit(38, "meter")
  4924. }
  4925. ]
  4926. ))
  4927. characterMakers.push(() => makeCharacter(
  4928. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4929. {
  4930. front: {
  4931. height: math.unit(470, "feet"),
  4932. weight: math.unit(924, "tons"),
  4933. name: "Front",
  4934. image: {
  4935. source: "./media/characters/angelpatamon/front.svg",
  4936. }
  4937. }
  4938. },
  4939. [
  4940. {
  4941. name: "Normal",
  4942. height: math.unit(470, "feet"),
  4943. default: true
  4944. },
  4945. {
  4946. name: "Deity Size I",
  4947. height: math.unit(28651.2, "km")
  4948. },
  4949. {
  4950. name: "Deity Size II",
  4951. height: math.unit(171907.2, "km")
  4952. }
  4953. ]
  4954. ))
  4955. characterMakers.push(() => makeCharacter(
  4956. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4957. {
  4958. side: {
  4959. height: math.unit(7.2, "meter"),
  4960. weight: math.unit(8.2, "tons"),
  4961. name: "Side",
  4962. image: {
  4963. source: "./media/characters/cryae/side.svg",
  4964. extra: 3500 / 1500
  4965. }
  4966. }
  4967. },
  4968. [
  4969. {
  4970. name: "Normal",
  4971. height: math.unit(7.2, "meter"),
  4972. default: true
  4973. }
  4974. ]
  4975. ))
  4976. characterMakers.push(() => makeCharacter(
  4977. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4978. {
  4979. front: {
  4980. height: math.unit(6, "feet"),
  4981. weight: math.unit(175, "lb"),
  4982. name: "Front",
  4983. image: {
  4984. source: "./media/characters/xera/front.svg",
  4985. extra: 2377 / 1972,
  4986. bottom: 75.5 / 2452
  4987. }
  4988. },
  4989. side: {
  4990. height: math.unit(6, "feet"),
  4991. weight: math.unit(175, "lb"),
  4992. name: "Side",
  4993. image: {
  4994. source: "./media/characters/xera/side.svg",
  4995. extra: 2345 / 2019,
  4996. bottom: 39.7 / 2384
  4997. }
  4998. },
  4999. back: {
  5000. height: math.unit(6, "feet"),
  5001. weight: math.unit(175, "lb"),
  5002. name: "Back",
  5003. image: {
  5004. source: "./media/characters/xera/back.svg",
  5005. extra: 2095 / 1984,
  5006. bottom: 67 / 2166
  5007. }
  5008. },
  5009. },
  5010. [
  5011. {
  5012. name: "Small",
  5013. height: math.unit(10, "feet")
  5014. },
  5015. {
  5016. name: "Macro",
  5017. height: math.unit(500, "meters"),
  5018. default: true
  5019. },
  5020. {
  5021. name: "Macro+",
  5022. height: math.unit(10, "km")
  5023. },
  5024. {
  5025. name: "Gigamacro",
  5026. height: math.unit(25000, "km")
  5027. },
  5028. {
  5029. name: "Teramacro",
  5030. height: math.unit(3e6, "km")
  5031. }
  5032. ]
  5033. ))
  5034. characterMakers.push(() => makeCharacter(
  5035. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5036. {
  5037. front: {
  5038. height: math.unit(6, "feet"),
  5039. weight: math.unit(175, "lb"),
  5040. name: "Front",
  5041. image: {
  5042. source: "./media/characters/nebula/front.svg",
  5043. extra: 2566 / 2362,
  5044. bottom: 81 / 2644
  5045. }
  5046. }
  5047. },
  5048. [
  5049. {
  5050. name: "Small",
  5051. height: math.unit(4.5, "meters")
  5052. },
  5053. {
  5054. name: "Macro",
  5055. height: math.unit(1500, "meters"),
  5056. default: true
  5057. },
  5058. {
  5059. name: "Megamacro",
  5060. height: math.unit(150, "km")
  5061. },
  5062. {
  5063. name: "Gigamacro",
  5064. height: math.unit(27000, "km")
  5065. }
  5066. ]
  5067. ))
  5068. characterMakers.push(() => makeCharacter(
  5069. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5070. {
  5071. front: {
  5072. height: math.unit(6, "feet"),
  5073. weight: math.unit(225, "lb"),
  5074. name: "Front",
  5075. image: {
  5076. source: "./media/characters/abysgar/front.svg",
  5077. extra: 1739/1614,
  5078. bottom: 71/1810
  5079. }
  5080. },
  5081. frontNsfw: {
  5082. height: math.unit(6, "feet"),
  5083. weight: math.unit(225, "lb"),
  5084. name: "Front (NSFW)",
  5085. image: {
  5086. source: "./media/characters/abysgar/front-nsfw.svg",
  5087. extra: 1739/1614,
  5088. bottom: 71/1810
  5089. }
  5090. },
  5091. back: {
  5092. height: math.unit(4.6, "feet"),
  5093. weight: math.unit(225, "lb"),
  5094. name: "Back",
  5095. image: {
  5096. source: "./media/characters/abysgar/back.svg",
  5097. extra: 1384/1327,
  5098. bottom: 0/1384
  5099. }
  5100. },
  5101. head: {
  5102. height: math.unit(1.25, "feet"),
  5103. name: "Head",
  5104. image: {
  5105. source: "./media/characters/abysgar/head.svg",
  5106. extra: 669/569,
  5107. bottom: 0/669
  5108. }
  5109. },
  5110. },
  5111. [
  5112. {
  5113. name: "Small",
  5114. height: math.unit(4.5, "meters")
  5115. },
  5116. {
  5117. name: "Macro",
  5118. height: math.unit(1250, "meters"),
  5119. default: true
  5120. },
  5121. {
  5122. name: "Megamacro",
  5123. height: math.unit(125, "km")
  5124. },
  5125. {
  5126. name: "Gigamacro",
  5127. height: math.unit(26000, "km")
  5128. }
  5129. ]
  5130. ))
  5131. characterMakers.push(() => makeCharacter(
  5132. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5133. {
  5134. front: {
  5135. height: math.unit(6, "feet"),
  5136. weight: math.unit(180, "lb"),
  5137. name: "Front",
  5138. image: {
  5139. source: "./media/characters/yakuz/front.svg"
  5140. }
  5141. }
  5142. },
  5143. [
  5144. {
  5145. name: "Small",
  5146. height: math.unit(5, "meters")
  5147. },
  5148. {
  5149. name: "Macro",
  5150. height: math.unit(1500, "meters"),
  5151. default: true
  5152. },
  5153. {
  5154. name: "Megamacro",
  5155. height: math.unit(200, "km")
  5156. },
  5157. {
  5158. name: "Gigamacro",
  5159. height: math.unit(100000, "km")
  5160. }
  5161. ]
  5162. ))
  5163. characterMakers.push(() => makeCharacter(
  5164. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5165. {
  5166. front: {
  5167. height: math.unit(6, "feet"),
  5168. weight: math.unit(175, "lb"),
  5169. name: "Front",
  5170. image: {
  5171. source: "./media/characters/mirova/front.svg",
  5172. extra: 3334 / 3071,
  5173. bottom: 42 / 3375.6
  5174. }
  5175. }
  5176. },
  5177. [
  5178. {
  5179. name: "Small",
  5180. height: math.unit(5, "meters")
  5181. },
  5182. {
  5183. name: "Macro",
  5184. height: math.unit(900, "meters"),
  5185. default: true
  5186. },
  5187. {
  5188. name: "Megamacro",
  5189. height: math.unit(135, "km")
  5190. },
  5191. {
  5192. name: "Gigamacro",
  5193. height: math.unit(20000, "km")
  5194. }
  5195. ]
  5196. ))
  5197. characterMakers.push(() => makeCharacter(
  5198. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5199. {
  5200. side: {
  5201. height: math.unit(28.35, "feet"),
  5202. weight: math.unit(99.75, "tons"),
  5203. name: "Side",
  5204. image: {
  5205. source: "./media/characters/asana-mech/side.svg",
  5206. extra: 923 / 699,
  5207. bottom: 50 / 975
  5208. }
  5209. },
  5210. chaingun: {
  5211. height: math.unit(7, "feet"),
  5212. weight: math.unit(2400, "lb"),
  5213. name: "Chaingun",
  5214. image: {
  5215. source: "./media/characters/asana-mech/chaingun.svg"
  5216. }
  5217. },
  5218. laser: {
  5219. height: math.unit(7.12, "feet"),
  5220. weight: math.unit(2000, "lb"),
  5221. name: "Laser",
  5222. image: {
  5223. source: "./media/characters/asana-mech/laser.svg"
  5224. }
  5225. },
  5226. },
  5227. [
  5228. {
  5229. name: "Normal",
  5230. height: math.unit(28.35, "feet"),
  5231. default: true
  5232. },
  5233. {
  5234. name: "Macro",
  5235. height: math.unit(2500, "feet")
  5236. },
  5237. {
  5238. name: "Megamacro",
  5239. height: math.unit(25, "miles")
  5240. },
  5241. {
  5242. name: "Examacro",
  5243. height: math.unit(6e8, "lightyears")
  5244. },
  5245. ]
  5246. ))
  5247. characterMakers.push(() => makeCharacter(
  5248. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5249. {
  5250. front: {
  5251. height: math.unit(5, "meters"),
  5252. weight: math.unit(1000, "kg"),
  5253. name: "Front",
  5254. image: {
  5255. source: "./media/characters/asche/front.svg",
  5256. extra: 1258 / 1190,
  5257. bottom: 47 / 1305
  5258. }
  5259. },
  5260. frontUnderwear: {
  5261. height: math.unit(5, "meters"),
  5262. weight: math.unit(1000, "kg"),
  5263. name: "Front (Underwear)",
  5264. image: {
  5265. source: "./media/characters/asche/front-underwear.svg",
  5266. extra: 1258 / 1190,
  5267. bottom: 47 / 1305
  5268. }
  5269. },
  5270. frontDressed: {
  5271. height: math.unit(5, "meters"),
  5272. weight: math.unit(1000, "kg"),
  5273. name: "Front (Dressed)",
  5274. image: {
  5275. source: "./media/characters/asche/front-dressed.svg",
  5276. extra: 1258 / 1190,
  5277. bottom: 47 / 1305
  5278. }
  5279. },
  5280. frontArmor: {
  5281. height: math.unit(5, "meters"),
  5282. weight: math.unit(1000, "kg"),
  5283. name: "Front (Armored)",
  5284. image: {
  5285. source: "./media/characters/asche/front-armored.svg",
  5286. extra: 1374 / 1308,
  5287. bottom: 23 / 1397
  5288. }
  5289. },
  5290. mp724: {
  5291. height: math.unit(0.96, "meters"),
  5292. weight: math.unit(38, "kg"),
  5293. name: "H&K MP724",
  5294. image: {
  5295. source: "./media/characters/asche/h&k-mp724.svg"
  5296. }
  5297. },
  5298. side: {
  5299. height: math.unit(5, "meters"),
  5300. weight: math.unit(1000, "kg"),
  5301. name: "Side",
  5302. image: {
  5303. source: "./media/characters/asche/side.svg",
  5304. extra: 1717 / 1609,
  5305. bottom: 0.005
  5306. }
  5307. },
  5308. back: {
  5309. height: math.unit(5, "meters"),
  5310. weight: math.unit(1000, "kg"),
  5311. name: "Back",
  5312. image: {
  5313. source: "./media/characters/asche/back.svg",
  5314. extra: 1570 / 1501
  5315. }
  5316. },
  5317. },
  5318. [
  5319. {
  5320. name: "DEFCON 5",
  5321. height: math.unit(5, "meters")
  5322. },
  5323. {
  5324. name: "DEFCON 4",
  5325. height: math.unit(500, "meters"),
  5326. default: true
  5327. },
  5328. {
  5329. name: "DEFCON 3",
  5330. height: math.unit(5, "km")
  5331. },
  5332. {
  5333. name: "DEFCON 2",
  5334. height: math.unit(500, "km")
  5335. },
  5336. {
  5337. name: "DEFCON 1",
  5338. height: math.unit(500000, "km")
  5339. },
  5340. {
  5341. name: "DEFCON 0",
  5342. height: math.unit(3, "gigaparsecs")
  5343. },
  5344. ]
  5345. ))
  5346. characterMakers.push(() => makeCharacter(
  5347. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5348. {
  5349. front: {
  5350. height: math.unit(7, "feet"),
  5351. weight: math.unit(92.7, "kg"),
  5352. name: "Front",
  5353. image: {
  5354. source: "./media/characters/gale/front.svg",
  5355. extra: 977/919,
  5356. bottom: 105/1082
  5357. }
  5358. },
  5359. side: {
  5360. height: math.unit(6.7, "feet"),
  5361. weight: math.unit(92.7, "kg"),
  5362. name: "Side",
  5363. image: {
  5364. source: "./media/characters/gale/side.svg",
  5365. extra: 978/922,
  5366. bottom: 140/1118
  5367. }
  5368. },
  5369. back: {
  5370. height: math.unit(7, "feet"),
  5371. weight: math.unit(92.7, "kg"),
  5372. name: "Back",
  5373. image: {
  5374. source: "./media/characters/gale/back.svg",
  5375. extra: 966/920,
  5376. bottom: 61/1027
  5377. }
  5378. },
  5379. maw: {
  5380. height: math.unit(2.23, "feet"),
  5381. name: "Maw",
  5382. image: {
  5383. source: "./media/characters/gale/maw.svg"
  5384. }
  5385. },
  5386. foot: {
  5387. height: math.unit(2.1, "feet"),
  5388. name: "Foot",
  5389. image: {
  5390. source: "./media/characters/gale/foot.svg"
  5391. }
  5392. },
  5393. },
  5394. [
  5395. {
  5396. name: "Normal",
  5397. height: math.unit(7, "feet")
  5398. },
  5399. {
  5400. name: "Macro",
  5401. height: math.unit(150, "feet"),
  5402. default: true
  5403. },
  5404. {
  5405. name: "Macro+",
  5406. height: math.unit(300, "feet")
  5407. },
  5408. ]
  5409. ))
  5410. characterMakers.push(() => makeCharacter(
  5411. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5412. {
  5413. front: {
  5414. height: math.unit(5 + 10/12, "feet"),
  5415. weight: math.unit(67, "kg"),
  5416. name: "Front",
  5417. image: {
  5418. source: "./media/characters/draylen/front.svg",
  5419. extra: 832/777,
  5420. bottom: 85/917
  5421. }
  5422. }
  5423. },
  5424. [
  5425. {
  5426. name: "Normal",
  5427. height: math.unit(5 + 10/12, "feet")
  5428. },
  5429. {
  5430. name: "Macro",
  5431. height: math.unit(150, "feet"),
  5432. default: true
  5433. }
  5434. ]
  5435. ))
  5436. characterMakers.push(() => makeCharacter(
  5437. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5438. {
  5439. front: {
  5440. height: math.unit(7 + 9 / 12, "feet"),
  5441. weight: math.unit(379, "lbs"),
  5442. name: "Front",
  5443. image: {
  5444. source: "./media/characters/chez/front.svg"
  5445. }
  5446. },
  5447. side: {
  5448. height: math.unit(7 + 9 / 12, "feet"),
  5449. weight: math.unit(379, "lbs"),
  5450. name: "Side",
  5451. image: {
  5452. source: "./media/characters/chez/side.svg"
  5453. }
  5454. }
  5455. },
  5456. [
  5457. {
  5458. name: "Normal",
  5459. height: math.unit(7 + 9 / 12, "feet"),
  5460. default: true
  5461. },
  5462. {
  5463. name: "God King",
  5464. height: math.unit(9750000, "meters")
  5465. }
  5466. ]
  5467. ))
  5468. characterMakers.push(() => makeCharacter(
  5469. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5470. {
  5471. front: {
  5472. height: math.unit(6, "feet"),
  5473. weight: math.unit(275, "lbs"),
  5474. name: "Front",
  5475. image: {
  5476. source: "./media/characters/kaylum/front.svg",
  5477. bottom: 0.01,
  5478. extra: 1166 / 1031
  5479. }
  5480. },
  5481. frontWingless: {
  5482. height: math.unit(6, "feet"),
  5483. weight: math.unit(275, "lbs"),
  5484. name: "Front (Wingless)",
  5485. image: {
  5486. source: "./media/characters/kaylum/front-wingless.svg",
  5487. bottom: 0.01,
  5488. extra: 1117 / 1031
  5489. }
  5490. }
  5491. },
  5492. [
  5493. {
  5494. name: "Normal",
  5495. height: math.unit(3.05, "meters")
  5496. },
  5497. {
  5498. name: "Master",
  5499. height: math.unit(5.5, "meters")
  5500. },
  5501. {
  5502. name: "Rampage",
  5503. height: math.unit(19, "meters")
  5504. },
  5505. {
  5506. name: "Macro Lite",
  5507. height: math.unit(37, "meters")
  5508. },
  5509. {
  5510. name: "Hyper Predator",
  5511. height: math.unit(61, "meters")
  5512. },
  5513. {
  5514. name: "Macro",
  5515. height: math.unit(138, "meters"),
  5516. default: true
  5517. }
  5518. ]
  5519. ))
  5520. characterMakers.push(() => makeCharacter(
  5521. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5522. {
  5523. front: {
  5524. height: math.unit(5 + 5 / 12, "feet"),
  5525. weight: math.unit(120, "lbs"),
  5526. name: "Front",
  5527. image: {
  5528. source: "./media/characters/geta/front.svg",
  5529. extra: 1003/933,
  5530. bottom: 21/1024
  5531. }
  5532. },
  5533. paw: {
  5534. height: math.unit(0.35, "feet"),
  5535. name: "Paw",
  5536. image: {
  5537. source: "./media/characters/geta/paw.svg"
  5538. }
  5539. },
  5540. },
  5541. [
  5542. {
  5543. name: "Micro",
  5544. height: math.unit(3, "inches"),
  5545. default: true
  5546. },
  5547. {
  5548. name: "Normal",
  5549. height: math.unit(5 + 5 / 12, "feet")
  5550. }
  5551. ]
  5552. ))
  5553. characterMakers.push(() => makeCharacter(
  5554. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5555. {
  5556. front: {
  5557. height: math.unit(6, "feet"),
  5558. weight: math.unit(300, "lbs"),
  5559. name: "Front",
  5560. image: {
  5561. source: "./media/characters/tyrnn/front.svg"
  5562. }
  5563. }
  5564. },
  5565. [
  5566. {
  5567. name: "Main Height",
  5568. height: math.unit(355, "feet"),
  5569. default: true
  5570. },
  5571. {
  5572. name: "Fave. Height",
  5573. height: math.unit(2400, "feet")
  5574. }
  5575. ]
  5576. ))
  5577. characterMakers.push(() => makeCharacter(
  5578. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5579. {
  5580. front: {
  5581. height: math.unit(6, "feet"),
  5582. weight: math.unit(300, "lbs"),
  5583. name: "Front",
  5584. image: {
  5585. source: "./media/characters/appledectomy/front.svg"
  5586. }
  5587. }
  5588. },
  5589. [
  5590. {
  5591. name: "Macro",
  5592. height: math.unit(2500, "feet")
  5593. },
  5594. {
  5595. name: "Megamacro",
  5596. height: math.unit(50, "miles"),
  5597. default: true
  5598. },
  5599. {
  5600. name: "Gigamacro",
  5601. height: math.unit(5000, "miles")
  5602. },
  5603. {
  5604. name: "Teramacro",
  5605. height: math.unit(250000, "miles")
  5606. },
  5607. ]
  5608. ))
  5609. characterMakers.push(() => makeCharacter(
  5610. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5611. {
  5612. front: {
  5613. height: math.unit(6, "feet"),
  5614. weight: math.unit(200, "lbs"),
  5615. name: "Front",
  5616. image: {
  5617. source: "./media/characters/vulpes/front.svg",
  5618. extra: 573 / 543,
  5619. bottom: 0.033
  5620. }
  5621. },
  5622. side: {
  5623. height: math.unit(6, "feet"),
  5624. weight: math.unit(200, "lbs"),
  5625. name: "Side",
  5626. image: {
  5627. source: "./media/characters/vulpes/side.svg",
  5628. extra: 577 / 549,
  5629. bottom: 11 / 588
  5630. }
  5631. },
  5632. back: {
  5633. height: math.unit(6, "feet"),
  5634. weight: math.unit(200, "lbs"),
  5635. name: "Back",
  5636. image: {
  5637. source: "./media/characters/vulpes/back.svg",
  5638. extra: 573 / 549,
  5639. bottom: 20 / 593
  5640. }
  5641. },
  5642. feet: {
  5643. height: math.unit(1.276, "feet"),
  5644. name: "Feet",
  5645. image: {
  5646. source: "./media/characters/vulpes/feet.svg"
  5647. }
  5648. },
  5649. maw: {
  5650. height: math.unit(1.18, "feet"),
  5651. name: "Maw",
  5652. image: {
  5653. source: "./media/characters/vulpes/maw.svg"
  5654. }
  5655. },
  5656. },
  5657. [
  5658. {
  5659. name: "Micro",
  5660. height: math.unit(2, "inches")
  5661. },
  5662. {
  5663. name: "Normal",
  5664. height: math.unit(6.3, "feet")
  5665. },
  5666. {
  5667. name: "Macro",
  5668. height: math.unit(850, "feet")
  5669. },
  5670. {
  5671. name: "Megamacro",
  5672. height: math.unit(7500, "feet"),
  5673. default: true
  5674. },
  5675. {
  5676. name: "Gigamacro",
  5677. height: math.unit(570000, "miles")
  5678. }
  5679. ]
  5680. ))
  5681. characterMakers.push(() => makeCharacter(
  5682. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5683. {
  5684. front: {
  5685. height: math.unit(6, "feet"),
  5686. weight: math.unit(210, "lbs"),
  5687. name: "Front",
  5688. image: {
  5689. source: "./media/characters/rain-fallen/front.svg"
  5690. }
  5691. },
  5692. side: {
  5693. height: math.unit(6, "feet"),
  5694. weight: math.unit(210, "lbs"),
  5695. name: "Side",
  5696. image: {
  5697. source: "./media/characters/rain-fallen/side.svg"
  5698. }
  5699. },
  5700. back: {
  5701. height: math.unit(6, "feet"),
  5702. weight: math.unit(210, "lbs"),
  5703. name: "Back",
  5704. image: {
  5705. source: "./media/characters/rain-fallen/back.svg"
  5706. }
  5707. },
  5708. feral: {
  5709. height: math.unit(9, "feet"),
  5710. weight: math.unit(700, "lbs"),
  5711. name: "Feral",
  5712. image: {
  5713. source: "./media/characters/rain-fallen/feral.svg"
  5714. }
  5715. },
  5716. },
  5717. [
  5718. {
  5719. name: "Meddling with Mortals",
  5720. height: math.unit(8 + 8/12, "feet")
  5721. },
  5722. {
  5723. name: "Normal",
  5724. height: math.unit(5, "meter")
  5725. },
  5726. {
  5727. name: "Macro",
  5728. height: math.unit(150, "meter"),
  5729. default: true
  5730. },
  5731. {
  5732. name: "Megamacro",
  5733. height: math.unit(278e6, "meter")
  5734. },
  5735. {
  5736. name: "Gigamacro",
  5737. height: math.unit(2e9, "meter")
  5738. },
  5739. {
  5740. name: "Teramacro",
  5741. height: math.unit(8e12, "meter")
  5742. },
  5743. {
  5744. name: "Devourer",
  5745. height: math.unit(14, "zettameters")
  5746. },
  5747. {
  5748. name: "Scarlet King",
  5749. height: math.unit(18, "yottameters")
  5750. },
  5751. {
  5752. name: "Void",
  5753. height: math.unit(1e88, "yottameters")
  5754. }
  5755. ]
  5756. ))
  5757. characterMakers.push(() => makeCharacter(
  5758. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5759. {
  5760. standing: {
  5761. height: math.unit(6, "feet"),
  5762. weight: math.unit(180, "lbs"),
  5763. name: "Standing",
  5764. image: {
  5765. source: "./media/characters/zaakira/standing.svg",
  5766. extra: 1599/1504,
  5767. bottom: 39/1638
  5768. }
  5769. },
  5770. laying: {
  5771. height: math.unit(3.3, "feet"),
  5772. weight: math.unit(180, "lbs"),
  5773. name: "Laying",
  5774. image: {
  5775. source: "./media/characters/zaakira/laying.svg"
  5776. }
  5777. },
  5778. },
  5779. [
  5780. {
  5781. name: "Normal",
  5782. height: math.unit(12, "feet")
  5783. },
  5784. {
  5785. name: "Macro",
  5786. height: math.unit(279, "feet"),
  5787. default: true
  5788. }
  5789. ]
  5790. ))
  5791. characterMakers.push(() => makeCharacter(
  5792. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5793. {
  5794. femSfw: {
  5795. height: math.unit(8, "feet"),
  5796. weight: math.unit(350, "lb"),
  5797. name: "Fem",
  5798. image: {
  5799. source: "./media/characters/sigvald/fem-sfw.svg",
  5800. extra: 182 / 164,
  5801. bottom: 8.7 / 190.5
  5802. }
  5803. },
  5804. femNsfw: {
  5805. height: math.unit(8, "feet"),
  5806. weight: math.unit(350, "lb"),
  5807. name: "Fem (NSFW)",
  5808. image: {
  5809. source: "./media/characters/sigvald/fem-nsfw.svg",
  5810. extra: 182 / 164,
  5811. bottom: 8.7 / 190.5
  5812. }
  5813. },
  5814. maleNsfw: {
  5815. height: math.unit(8, "feet"),
  5816. weight: math.unit(350, "lb"),
  5817. name: "Male (NSFW)",
  5818. image: {
  5819. source: "./media/characters/sigvald/male-nsfw.svg",
  5820. extra: 182 / 164,
  5821. bottom: 8.7 / 190.5
  5822. }
  5823. },
  5824. hermNsfw: {
  5825. height: math.unit(8, "feet"),
  5826. weight: math.unit(350, "lb"),
  5827. name: "Herm (NSFW)",
  5828. image: {
  5829. source: "./media/characters/sigvald/herm-nsfw.svg",
  5830. extra: 182 / 164,
  5831. bottom: 8.7 / 190.5
  5832. }
  5833. },
  5834. dick: {
  5835. height: math.unit(2.36, "feet"),
  5836. name: "Dick",
  5837. image: {
  5838. source: "./media/characters/sigvald/dick.svg"
  5839. }
  5840. },
  5841. eye: {
  5842. height: math.unit(0.31, "feet"),
  5843. name: "Eye",
  5844. image: {
  5845. source: "./media/characters/sigvald/eye.svg"
  5846. }
  5847. },
  5848. mouth: {
  5849. height: math.unit(0.92, "feet"),
  5850. name: "Mouth",
  5851. image: {
  5852. source: "./media/characters/sigvald/mouth.svg"
  5853. }
  5854. },
  5855. paws: {
  5856. height: math.unit(2.2, "feet"),
  5857. name: "Paws",
  5858. image: {
  5859. source: "./media/characters/sigvald/paws.svg"
  5860. }
  5861. }
  5862. },
  5863. [
  5864. {
  5865. name: "Normal",
  5866. height: math.unit(8, "feet")
  5867. },
  5868. {
  5869. name: "Large",
  5870. height: math.unit(12, "feet")
  5871. },
  5872. {
  5873. name: "Larger",
  5874. height: math.unit(20, "feet")
  5875. },
  5876. {
  5877. name: "Macro",
  5878. height: math.unit(150, "feet")
  5879. },
  5880. {
  5881. name: "Macro+",
  5882. height: math.unit(200, "feet"),
  5883. default: true
  5884. },
  5885. ]
  5886. ))
  5887. characterMakers.push(() => makeCharacter(
  5888. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5889. {
  5890. side: {
  5891. height: math.unit(12, "feet"),
  5892. weight: math.unit(2000, "kg"),
  5893. name: "Side",
  5894. image: {
  5895. source: "./media/characters/scott/side.svg",
  5896. extra: 754 / 724,
  5897. bottom: 0.069
  5898. }
  5899. },
  5900. upright: {
  5901. height: math.unit(12, "feet"),
  5902. weight: math.unit(2000, "kg"),
  5903. name: "Upright",
  5904. image: {
  5905. source: "./media/characters/scott/upright.svg",
  5906. extra: 3881 / 3722,
  5907. bottom: 0.05
  5908. }
  5909. },
  5910. },
  5911. [
  5912. {
  5913. name: "Normal",
  5914. height: math.unit(12, "feet"),
  5915. default: true
  5916. },
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5921. {
  5922. side: {
  5923. height: math.unit(8, "meters"),
  5924. weight: math.unit(84755, "lbs"),
  5925. name: "Side",
  5926. image: {
  5927. source: "./media/characters/tobias/side.svg",
  5928. extra: 1474 / 1096,
  5929. bottom: 38.9 / 1513.1235
  5930. }
  5931. },
  5932. },
  5933. [
  5934. {
  5935. name: "Normal",
  5936. height: math.unit(8, "meters"),
  5937. default: true
  5938. },
  5939. ]
  5940. ))
  5941. characterMakers.push(() => makeCharacter(
  5942. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5943. {
  5944. front: {
  5945. height: math.unit(5.5, "feet"),
  5946. weight: math.unit(400, "lbs"),
  5947. name: "Front",
  5948. image: {
  5949. source: "./media/characters/kieran/front.svg",
  5950. extra: 2694 / 2364,
  5951. bottom: 217 / 2908
  5952. }
  5953. },
  5954. side: {
  5955. height: math.unit(5.5, "feet"),
  5956. weight: math.unit(400, "lbs"),
  5957. name: "Side",
  5958. image: {
  5959. source: "./media/characters/kieran/side.svg",
  5960. extra: 875 / 777,
  5961. bottom: 84.6 / 959
  5962. }
  5963. },
  5964. },
  5965. [
  5966. {
  5967. name: "Normal",
  5968. height: math.unit(5.5, "feet"),
  5969. default: true
  5970. },
  5971. ]
  5972. ))
  5973. characterMakers.push(() => makeCharacter(
  5974. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5975. {
  5976. side: {
  5977. height: math.unit(2, "meters"),
  5978. weight: math.unit(70, "kg"),
  5979. name: "Side",
  5980. image: {
  5981. source: "./media/characters/sanya/side.svg",
  5982. bottom: 0.02,
  5983. extra: 1.02
  5984. }
  5985. },
  5986. },
  5987. [
  5988. {
  5989. name: "Small",
  5990. height: math.unit(2, "meters")
  5991. },
  5992. {
  5993. name: "Normal",
  5994. height: math.unit(3, "meters")
  5995. },
  5996. {
  5997. name: "Macro",
  5998. height: math.unit(16, "meters"),
  5999. default: true
  6000. },
  6001. ]
  6002. ))
  6003. characterMakers.push(() => makeCharacter(
  6004. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6005. {
  6006. front: {
  6007. height: math.unit(2, "meters"),
  6008. weight: math.unit(120, "kg"),
  6009. name: "Front",
  6010. image: {
  6011. source: "./media/characters/miranda/front.svg",
  6012. extra: 195 / 185,
  6013. bottom: 10.9 / 206.5
  6014. }
  6015. },
  6016. back: {
  6017. height: math.unit(2, "meters"),
  6018. weight: math.unit(120, "kg"),
  6019. name: "Back",
  6020. image: {
  6021. source: "./media/characters/miranda/back.svg",
  6022. extra: 201 / 193,
  6023. bottom: 2.3 / 203.7
  6024. }
  6025. },
  6026. },
  6027. [
  6028. {
  6029. name: "Normal",
  6030. height: math.unit(10, "feet"),
  6031. default: true
  6032. }
  6033. ]
  6034. ))
  6035. characterMakers.push(() => makeCharacter(
  6036. { name: "James", species: ["deer"], tags: ["anthro"] },
  6037. {
  6038. side: {
  6039. height: math.unit(2, "meters"),
  6040. weight: math.unit(100, "kg"),
  6041. name: "Front",
  6042. image: {
  6043. source: "./media/characters/james/front.svg",
  6044. extra: 10 / 8.5
  6045. }
  6046. },
  6047. },
  6048. [
  6049. {
  6050. name: "Normal",
  6051. height: math.unit(8.5, "feet"),
  6052. default: true
  6053. }
  6054. ]
  6055. ))
  6056. characterMakers.push(() => makeCharacter(
  6057. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6058. {
  6059. side: {
  6060. height: math.unit(9.5, "feet"),
  6061. weight: math.unit(2500, "lbs"),
  6062. name: "Side",
  6063. image: {
  6064. source: "./media/characters/heather/side.svg"
  6065. }
  6066. },
  6067. },
  6068. [
  6069. {
  6070. name: "Normal",
  6071. height: math.unit(9.5, "feet"),
  6072. default: true
  6073. }
  6074. ]
  6075. ))
  6076. characterMakers.push(() => makeCharacter(
  6077. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6078. {
  6079. side: {
  6080. height: math.unit(6.5, "feet"),
  6081. weight: math.unit(400, "lbs"),
  6082. name: "Side",
  6083. image: {
  6084. source: "./media/characters/lukas/side.svg",
  6085. extra: 7.25 / 6.5
  6086. }
  6087. },
  6088. },
  6089. [
  6090. {
  6091. name: "Normal",
  6092. height: math.unit(6.5, "feet"),
  6093. default: true
  6094. }
  6095. ]
  6096. ))
  6097. characterMakers.push(() => makeCharacter(
  6098. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6099. {
  6100. side: {
  6101. height: math.unit(5, "feet"),
  6102. weight: math.unit(3000, "lbs"),
  6103. name: "Side",
  6104. image: {
  6105. source: "./media/characters/louise/side.svg"
  6106. }
  6107. },
  6108. },
  6109. [
  6110. {
  6111. name: "Normal",
  6112. height: math.unit(5, "feet"),
  6113. default: true
  6114. }
  6115. ]
  6116. ))
  6117. characterMakers.push(() => makeCharacter(
  6118. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6119. {
  6120. side: {
  6121. height: math.unit(6, "feet"),
  6122. weight: math.unit(150, "lbs"),
  6123. name: "Side",
  6124. image: {
  6125. source: "./media/characters/ramona/side.svg",
  6126. extra: 871/854,
  6127. bottom: 41/912
  6128. }
  6129. },
  6130. },
  6131. [
  6132. {
  6133. name: "Normal",
  6134. height: math.unit(6 + 4/12, "feet")
  6135. },
  6136. {
  6137. name: "Minimacro",
  6138. height: math.unit(5.3, "meters"),
  6139. default: true
  6140. },
  6141. {
  6142. name: "Macro",
  6143. height: math.unit(20, "stories")
  6144. },
  6145. {
  6146. name: "Macro+",
  6147. height: math.unit(50, "stories")
  6148. },
  6149. ]
  6150. ))
  6151. characterMakers.push(() => makeCharacter(
  6152. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6153. {
  6154. standing: {
  6155. height: math.unit(5.75, "feet"),
  6156. weight: math.unit(160, "lbs"),
  6157. name: "Standing",
  6158. image: {
  6159. source: "./media/characters/deerpuff/standing.svg",
  6160. extra: 682 / 624
  6161. }
  6162. },
  6163. sitting: {
  6164. height: math.unit(5.75 / 1.79, "feet"),
  6165. weight: math.unit(160, "lbs"),
  6166. name: "Sitting",
  6167. image: {
  6168. source: "./media/characters/deerpuff/sitting.svg",
  6169. bottom: 44 / 400,
  6170. extra: 1
  6171. }
  6172. },
  6173. taurLaying: {
  6174. height: math.unit(6, "feet"),
  6175. weight: math.unit(400, "lbs"),
  6176. name: "Taur (Laying)",
  6177. image: {
  6178. source: "./media/characters/deerpuff/taur-laying.svg"
  6179. }
  6180. },
  6181. },
  6182. [
  6183. {
  6184. name: "Puffball",
  6185. height: math.unit(6, "inches")
  6186. },
  6187. {
  6188. name: "Normalpuff",
  6189. height: math.unit(5.75, "feet")
  6190. },
  6191. {
  6192. name: "Macropuff",
  6193. height: math.unit(1500, "feet"),
  6194. default: true
  6195. },
  6196. {
  6197. name: "Megapuff",
  6198. height: math.unit(500, "miles")
  6199. },
  6200. {
  6201. name: "Gigapuff",
  6202. height: math.unit(250000, "miles")
  6203. },
  6204. {
  6205. name: "Omegapuff",
  6206. height: math.unit(1000, "lightyears")
  6207. },
  6208. ]
  6209. ))
  6210. characterMakers.push(() => makeCharacter(
  6211. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6212. {
  6213. stomping: {
  6214. height: math.unit(6, "feet"),
  6215. weight: math.unit(170, "lbs"),
  6216. name: "Stomping",
  6217. image: {
  6218. source: "./media/characters/vivian/stomping.svg"
  6219. }
  6220. },
  6221. sitting: {
  6222. height: math.unit(6 / 1.75, "feet"),
  6223. weight: math.unit(170, "lbs"),
  6224. name: "Sitting",
  6225. image: {
  6226. source: "./media/characters/vivian/sitting.svg",
  6227. bottom: 1 / 6.4,
  6228. extra: 1,
  6229. }
  6230. },
  6231. },
  6232. [
  6233. {
  6234. name: "Normal",
  6235. height: math.unit(7, "feet"),
  6236. default: true
  6237. },
  6238. {
  6239. name: "Macro",
  6240. height: math.unit(10, "stories")
  6241. },
  6242. {
  6243. name: "Macro+",
  6244. height: math.unit(30, "stories")
  6245. },
  6246. {
  6247. name: "Megamacro",
  6248. height: math.unit(10, "miles")
  6249. },
  6250. {
  6251. name: "Megamacro+",
  6252. height: math.unit(2750000, "meters")
  6253. },
  6254. ]
  6255. ))
  6256. characterMakers.push(() => makeCharacter(
  6257. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6258. {
  6259. front: {
  6260. height: math.unit(6, "feet"),
  6261. weight: math.unit(160, "lbs"),
  6262. name: "Front",
  6263. image: {
  6264. source: "./media/characters/prince/front.svg",
  6265. extra: 1938/1682,
  6266. bottom: 45/1983
  6267. }
  6268. },
  6269. back: {
  6270. height: math.unit(6, "feet"),
  6271. weight: math.unit(160, "lbs"),
  6272. name: "Back",
  6273. image: {
  6274. source: "./media/characters/prince/back.svg",
  6275. extra: 1955/1726,
  6276. bottom: 6/1961
  6277. }
  6278. },
  6279. },
  6280. [
  6281. {
  6282. name: "Normal",
  6283. height: math.unit(7.75, "feet"),
  6284. default: true
  6285. },
  6286. {
  6287. name: "Not cute",
  6288. height: math.unit(17, "feet")
  6289. },
  6290. {
  6291. name: "I said NOT",
  6292. height: math.unit(91, "feet")
  6293. },
  6294. {
  6295. name: "Please stop",
  6296. height: math.unit(560, "feet")
  6297. },
  6298. {
  6299. name: "What have you done",
  6300. height: math.unit(2200, "feet")
  6301. },
  6302. {
  6303. name: "Deer God",
  6304. height: math.unit(3.6, "miles")
  6305. },
  6306. ]
  6307. ))
  6308. characterMakers.push(() => makeCharacter(
  6309. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6310. {
  6311. standing: {
  6312. height: math.unit(6, "feet"),
  6313. weight: math.unit(300, "lbs"),
  6314. name: "Standing",
  6315. image: {
  6316. source: "./media/characters/psymon/standing.svg",
  6317. extra: 1888 / 1810,
  6318. bottom: 0.05
  6319. }
  6320. },
  6321. slithering: {
  6322. height: math.unit(6, "feet"),
  6323. weight: math.unit(300, "lbs"),
  6324. name: "Slithering",
  6325. image: {
  6326. source: "./media/characters/psymon/slithering.svg",
  6327. extra: 1330 / 1224
  6328. }
  6329. },
  6330. slitheringAlt: {
  6331. height: math.unit(6, "feet"),
  6332. weight: math.unit(300, "lbs"),
  6333. name: "Slithering (Alt)",
  6334. image: {
  6335. source: "./media/characters/psymon/slithering-alt.svg",
  6336. extra: 1330 / 1224
  6337. }
  6338. },
  6339. },
  6340. [
  6341. {
  6342. name: "Normal",
  6343. height: math.unit(11.25, "feet"),
  6344. default: true
  6345. },
  6346. {
  6347. name: "Large",
  6348. height: math.unit(27, "feet")
  6349. },
  6350. {
  6351. name: "Giant",
  6352. height: math.unit(87, "feet")
  6353. },
  6354. {
  6355. name: "Macro",
  6356. height: math.unit(365, "feet")
  6357. },
  6358. {
  6359. name: "Megamacro",
  6360. height: math.unit(3, "miles")
  6361. },
  6362. {
  6363. name: "World Serpent",
  6364. height: math.unit(8000, "miles")
  6365. },
  6366. ]
  6367. ))
  6368. characterMakers.push(() => makeCharacter(
  6369. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6370. {
  6371. front: {
  6372. height: math.unit(6, "feet"),
  6373. weight: math.unit(180, "lbs"),
  6374. name: "Front",
  6375. image: {
  6376. source: "./media/characters/daimos/front.svg",
  6377. extra: 4160 / 3897,
  6378. bottom: 0.021
  6379. }
  6380. }
  6381. },
  6382. [
  6383. {
  6384. name: "Normal",
  6385. height: math.unit(8, "feet"),
  6386. default: true
  6387. },
  6388. {
  6389. name: "Big Dog",
  6390. height: math.unit(22, "feet")
  6391. },
  6392. {
  6393. name: "Macro",
  6394. height: math.unit(127, "feet")
  6395. },
  6396. {
  6397. name: "Megamacro",
  6398. height: math.unit(3600, "feet")
  6399. },
  6400. ]
  6401. ))
  6402. characterMakers.push(() => makeCharacter(
  6403. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6404. {
  6405. side: {
  6406. height: math.unit(6, "feet"),
  6407. weight: math.unit(180, "lbs"),
  6408. name: "Side",
  6409. image: {
  6410. source: "./media/characters/blake/side.svg",
  6411. extra: 1212 / 1120,
  6412. bottom: 0.05
  6413. }
  6414. },
  6415. crouched: {
  6416. height: math.unit(6 * 0.57, "feet"),
  6417. weight: math.unit(180, "lbs"),
  6418. name: "Crouched",
  6419. image: {
  6420. source: "./media/characters/blake/crouched.svg",
  6421. extra: 840 / 587,
  6422. bottom: 0.04
  6423. }
  6424. },
  6425. bent: {
  6426. height: math.unit(6 * 0.75, "feet"),
  6427. weight: math.unit(180, "lbs"),
  6428. name: "Bent",
  6429. image: {
  6430. source: "./media/characters/blake/bent.svg",
  6431. extra: 592 / 544,
  6432. bottom: 0.035
  6433. }
  6434. },
  6435. },
  6436. [
  6437. {
  6438. name: "Normal",
  6439. height: math.unit(8 + 1 / 6, "feet"),
  6440. default: true
  6441. },
  6442. {
  6443. name: "Big Backside",
  6444. height: math.unit(37, "feet")
  6445. },
  6446. {
  6447. name: "Subway Shredder",
  6448. height: math.unit(72, "feet")
  6449. },
  6450. {
  6451. name: "City Carver",
  6452. height: math.unit(1675, "feet")
  6453. },
  6454. {
  6455. name: "Tectonic Tweaker",
  6456. height: math.unit(2300, "miles")
  6457. },
  6458. ]
  6459. ))
  6460. characterMakers.push(() => makeCharacter(
  6461. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6462. {
  6463. front: {
  6464. height: math.unit(6, "feet"),
  6465. weight: math.unit(180, "lbs"),
  6466. name: "Front",
  6467. image: {
  6468. source: "./media/characters/guisetto/front.svg",
  6469. extra: 856 / 817,
  6470. bottom: 0.06
  6471. }
  6472. },
  6473. airborne: {
  6474. height: math.unit(6, "feet"),
  6475. weight: math.unit(180, "lbs"),
  6476. name: "Airborne",
  6477. image: {
  6478. source: "./media/characters/guisetto/airborne.svg",
  6479. extra: 584 / 525
  6480. }
  6481. },
  6482. },
  6483. [
  6484. {
  6485. name: "Normal",
  6486. height: math.unit(10 + 11 / 12, "feet"),
  6487. default: true
  6488. },
  6489. {
  6490. name: "Large",
  6491. height: math.unit(35, "feet")
  6492. },
  6493. {
  6494. name: "Macro",
  6495. height: math.unit(475, "feet")
  6496. },
  6497. ]
  6498. ))
  6499. characterMakers.push(() => makeCharacter(
  6500. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6501. {
  6502. front: {
  6503. height: math.unit(6, "feet"),
  6504. weight: math.unit(180, "lbs"),
  6505. name: "Front",
  6506. image: {
  6507. source: "./media/characters/luxor/front.svg",
  6508. extra: 2940 / 2152
  6509. }
  6510. },
  6511. back: {
  6512. height: math.unit(6, "feet"),
  6513. weight: math.unit(180, "lbs"),
  6514. name: "Back",
  6515. image: {
  6516. source: "./media/characters/luxor/back.svg",
  6517. extra: 1083 / 960
  6518. }
  6519. },
  6520. },
  6521. [
  6522. {
  6523. name: "Normal",
  6524. height: math.unit(5 + 5 / 6, "feet"),
  6525. default: true
  6526. },
  6527. {
  6528. name: "Lamp",
  6529. height: math.unit(50, "feet")
  6530. },
  6531. {
  6532. name: "Lämp",
  6533. height: math.unit(300, "feet")
  6534. },
  6535. {
  6536. name: "The sun is a lamp",
  6537. height: math.unit(250000, "miles")
  6538. },
  6539. ]
  6540. ))
  6541. characterMakers.push(() => makeCharacter(
  6542. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6543. {
  6544. front: {
  6545. height: math.unit(6, "feet"),
  6546. weight: math.unit(50, "lbs"),
  6547. name: "Front",
  6548. image: {
  6549. source: "./media/characters/huoyan/front.svg"
  6550. }
  6551. },
  6552. side: {
  6553. height: math.unit(6, "feet"),
  6554. weight: math.unit(180, "lbs"),
  6555. name: "Side",
  6556. image: {
  6557. source: "./media/characters/huoyan/side.svg"
  6558. }
  6559. },
  6560. },
  6561. [
  6562. {
  6563. name: "Chef",
  6564. height: math.unit(9, "feet")
  6565. },
  6566. {
  6567. name: "Normal",
  6568. height: math.unit(65, "feet"),
  6569. default: true
  6570. },
  6571. {
  6572. name: "Macro",
  6573. height: math.unit(780, "feet")
  6574. },
  6575. {
  6576. name: "Flaming Mountain",
  6577. height: math.unit(4.8, "miles")
  6578. },
  6579. {
  6580. name: "Celestial",
  6581. height: math.unit(765000, "miles")
  6582. },
  6583. ]
  6584. ))
  6585. characterMakers.push(() => makeCharacter(
  6586. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6587. {
  6588. front: {
  6589. height: math.unit(5 + 3 / 4, "feet"),
  6590. weight: math.unit(120, "lbs"),
  6591. name: "Front",
  6592. image: {
  6593. source: "./media/characters/tails/front.svg"
  6594. }
  6595. }
  6596. },
  6597. [
  6598. {
  6599. name: "Normal",
  6600. height: math.unit(5 + 3 / 4, "feet"),
  6601. default: true
  6602. }
  6603. ]
  6604. ))
  6605. characterMakers.push(() => makeCharacter(
  6606. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6607. {
  6608. front: {
  6609. height: math.unit(4, "feet"),
  6610. weight: math.unit(50, "lbs"),
  6611. name: "Front",
  6612. image: {
  6613. source: "./media/characters/rainy/front.svg"
  6614. }
  6615. }
  6616. },
  6617. [
  6618. {
  6619. name: "Macro",
  6620. height: math.unit(800, "feet"),
  6621. default: true
  6622. }
  6623. ]
  6624. ))
  6625. characterMakers.push(() => makeCharacter(
  6626. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6627. {
  6628. front: {
  6629. height: math.unit(6, "feet"),
  6630. weight: math.unit(150, "lbs"),
  6631. name: "Front",
  6632. image: {
  6633. source: "./media/characters/rainier/front.svg"
  6634. }
  6635. }
  6636. },
  6637. [
  6638. {
  6639. name: "Micro",
  6640. height: math.unit(2, "mm"),
  6641. default: true
  6642. }
  6643. ]
  6644. ))
  6645. characterMakers.push(() => makeCharacter(
  6646. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6647. {
  6648. front: {
  6649. height: math.unit(8 + 4/12, "feet"),
  6650. weight: math.unit(450, "kilograms"),
  6651. volume: math.unit(5, "cups"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/andy-renard/front.svg",
  6655. extra: 1839/1726,
  6656. bottom: 134/1973
  6657. }
  6658. },
  6659. back: {
  6660. height: math.unit(8 + 4/12, "feet"),
  6661. weight: math.unit(450, "kilograms"),
  6662. volume: math.unit(5, "cups"),
  6663. name: "Back",
  6664. image: {
  6665. source: "./media/characters/andy-renard/back.svg",
  6666. extra: 1838/1710,
  6667. bottom: 105/1943
  6668. }
  6669. },
  6670. },
  6671. [
  6672. {
  6673. name: "Tall",
  6674. height: math.unit(8 + 4/12, "feet")
  6675. },
  6676. {
  6677. name: "Mini Macro",
  6678. height: math.unit(15, "feet"),
  6679. default: true
  6680. },
  6681. {
  6682. name: "Macro",
  6683. height: math.unit(100, "feet")
  6684. },
  6685. {
  6686. name: "Mega Macro",
  6687. height: math.unit(1000, "feet")
  6688. },
  6689. {
  6690. name: "Giga Macro",
  6691. height: math.unit(10, "miles")
  6692. },
  6693. {
  6694. name: "God Macro",
  6695. height: math.unit(1, "multiverse")
  6696. },
  6697. ]
  6698. ))
  6699. characterMakers.push(() => makeCharacter(
  6700. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6701. {
  6702. front: {
  6703. height: math.unit(6, "feet"),
  6704. weight: math.unit(210, "lbs"),
  6705. name: "Front",
  6706. image: {
  6707. source: "./media/characters/cimmaron/front-sfw.svg",
  6708. extra: 701 / 676,
  6709. bottom: 0.046
  6710. }
  6711. },
  6712. back: {
  6713. height: math.unit(6, "feet"),
  6714. weight: math.unit(210, "lbs"),
  6715. name: "Back",
  6716. image: {
  6717. source: "./media/characters/cimmaron/back-sfw.svg",
  6718. extra: 701 / 676,
  6719. bottom: 0.046
  6720. }
  6721. },
  6722. frontNsfw: {
  6723. height: math.unit(6, "feet"),
  6724. weight: math.unit(210, "lbs"),
  6725. name: "Front (NSFW)",
  6726. image: {
  6727. source: "./media/characters/cimmaron/front-nsfw.svg",
  6728. extra: 701 / 676,
  6729. bottom: 0.046
  6730. }
  6731. },
  6732. backNsfw: {
  6733. height: math.unit(6, "feet"),
  6734. weight: math.unit(210, "lbs"),
  6735. name: "Back (NSFW)",
  6736. image: {
  6737. source: "./media/characters/cimmaron/back-nsfw.svg",
  6738. extra: 701 / 676,
  6739. bottom: 0.046
  6740. }
  6741. },
  6742. dick: {
  6743. height: math.unit(1.714, "feet"),
  6744. name: "Dick",
  6745. image: {
  6746. source: "./media/characters/cimmaron/dick.svg"
  6747. }
  6748. },
  6749. },
  6750. [
  6751. {
  6752. name: "Normal",
  6753. height: math.unit(6, "feet"),
  6754. default: true
  6755. },
  6756. {
  6757. name: "Macro Mayor",
  6758. height: math.unit(350, "meters")
  6759. },
  6760. ]
  6761. ))
  6762. characterMakers.push(() => makeCharacter(
  6763. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6764. {
  6765. front: {
  6766. height: math.unit(6, "feet"),
  6767. weight: math.unit(200, "lbs"),
  6768. name: "Front",
  6769. image: {
  6770. source: "./media/characters/akari/front.svg",
  6771. extra: 962 / 901,
  6772. bottom: 0.04
  6773. }
  6774. }
  6775. },
  6776. [
  6777. {
  6778. name: "Micro",
  6779. height: math.unit(5, "inches"),
  6780. default: true
  6781. },
  6782. {
  6783. name: "Normal",
  6784. height: math.unit(7, "feet")
  6785. },
  6786. ]
  6787. ))
  6788. characterMakers.push(() => makeCharacter(
  6789. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6790. {
  6791. front: {
  6792. height: math.unit(6, "feet"),
  6793. weight: math.unit(140, "lbs"),
  6794. name: "Front",
  6795. image: {
  6796. source: "./media/characters/cynosura/front.svg",
  6797. extra: 437/410,
  6798. bottom: 9/446
  6799. }
  6800. },
  6801. back: {
  6802. height: math.unit(6, "feet"),
  6803. weight: math.unit(140, "lbs"),
  6804. name: "Back",
  6805. image: {
  6806. source: "./media/characters/cynosura/back.svg",
  6807. extra: 1304/1160,
  6808. bottom: 71/1375
  6809. }
  6810. },
  6811. },
  6812. [
  6813. {
  6814. name: "Micro",
  6815. height: math.unit(4, "inches")
  6816. },
  6817. {
  6818. name: "Normal",
  6819. height: math.unit(5.75, "feet"),
  6820. default: true
  6821. },
  6822. {
  6823. name: "Tall",
  6824. height: math.unit(10, "feet")
  6825. },
  6826. {
  6827. name: "Big",
  6828. height: math.unit(20, "feet")
  6829. },
  6830. {
  6831. name: "Macro",
  6832. height: math.unit(50, "feet")
  6833. },
  6834. ]
  6835. ))
  6836. characterMakers.push(() => makeCharacter(
  6837. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6838. {
  6839. front: {
  6840. height: math.unit(13 + 2/12, "feet"),
  6841. weight: math.unit(800, "kg"),
  6842. name: "Front",
  6843. image: {
  6844. source: "./media/characters/gin/front.svg",
  6845. extra: 1312/1191,
  6846. bottom: 45/1357
  6847. }
  6848. },
  6849. mouth: {
  6850. height: math.unit(2.39 * 1.8, "feet"),
  6851. name: "Mouth",
  6852. image: {
  6853. source: "./media/characters/gin/mouth.svg"
  6854. }
  6855. },
  6856. hand: {
  6857. height: math.unit(1.57 * 2.19, "feet"),
  6858. name: "Hand",
  6859. image: {
  6860. source: "./media/characters/gin/hand.svg"
  6861. }
  6862. },
  6863. foot: {
  6864. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6865. name: "Foot",
  6866. image: {
  6867. source: "./media/characters/gin/foot.svg"
  6868. }
  6869. },
  6870. sole: {
  6871. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6872. name: "Sole",
  6873. image: {
  6874. source: "./media/characters/gin/sole.svg"
  6875. }
  6876. },
  6877. },
  6878. [
  6879. {
  6880. name: "Very Small",
  6881. height: math.unit(13 + 2 / 12, "feet")
  6882. },
  6883. {
  6884. name: "Micro",
  6885. height: math.unit(600, "miles")
  6886. },
  6887. {
  6888. name: "Regular",
  6889. height: math.unit(20, "earths"),
  6890. default: true
  6891. },
  6892. {
  6893. name: "Macro",
  6894. height: math.unit(2.2, "solarradii")
  6895. },
  6896. {
  6897. name: "Teramacro",
  6898. height: math.unit(1.2, "galaxies")
  6899. },
  6900. {
  6901. name: "Omegamacro",
  6902. height: math.unit(200, "universes")
  6903. },
  6904. ]
  6905. ))
  6906. characterMakers.push(() => makeCharacter(
  6907. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6908. {
  6909. front: {
  6910. height: math.unit(6 + 1 / 6, "feet"),
  6911. weight: math.unit(178, "lbs"),
  6912. name: "Front",
  6913. image: {
  6914. source: "./media/characters/guy/front.svg"
  6915. }
  6916. }
  6917. },
  6918. [
  6919. {
  6920. name: "Normal",
  6921. height: math.unit(6 + 1 / 6, "feet"),
  6922. default: true
  6923. },
  6924. {
  6925. name: "Large",
  6926. height: math.unit(25 + 7 / 12, "feet")
  6927. },
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(60 + 9 / 12, "feet")
  6931. },
  6932. {
  6933. name: "Macro+",
  6934. height: math.unit(246, "feet")
  6935. },
  6936. {
  6937. name: "Macro++",
  6938. height: math.unit(878, "feet")
  6939. }
  6940. ]
  6941. ))
  6942. characterMakers.push(() => makeCharacter(
  6943. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6944. {
  6945. front: {
  6946. height: math.unit(9, "feet"),
  6947. weight: math.unit(800, "lbs"),
  6948. name: "Front",
  6949. image: {
  6950. source: "./media/characters/tiberius/front.svg",
  6951. extra: 2295 / 2071
  6952. }
  6953. },
  6954. back: {
  6955. height: math.unit(9, "feet"),
  6956. weight: math.unit(800, "lbs"),
  6957. name: "Back",
  6958. image: {
  6959. source: "./media/characters/tiberius/back.svg",
  6960. extra: 2373 / 2160
  6961. }
  6962. },
  6963. },
  6964. [
  6965. {
  6966. name: "Normal",
  6967. height: math.unit(9, "feet"),
  6968. default: true
  6969. }
  6970. ]
  6971. ))
  6972. characterMakers.push(() => makeCharacter(
  6973. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6974. {
  6975. front: {
  6976. height: math.unit(6, "feet"),
  6977. weight: math.unit(600, "lbs"),
  6978. name: "Front",
  6979. image: {
  6980. source: "./media/characters/surgo/front.svg",
  6981. extra: 3591 / 2227
  6982. }
  6983. },
  6984. back: {
  6985. height: math.unit(6, "feet"),
  6986. weight: math.unit(600, "lbs"),
  6987. name: "Back",
  6988. image: {
  6989. source: "./media/characters/surgo/back.svg",
  6990. extra: 3557 / 2228
  6991. }
  6992. },
  6993. laying: {
  6994. height: math.unit(6 * 0.85, "feet"),
  6995. weight: math.unit(600, "lbs"),
  6996. name: "Laying",
  6997. image: {
  6998. source: "./media/characters/surgo/laying.svg"
  6999. }
  7000. },
  7001. },
  7002. [
  7003. {
  7004. name: "Normal",
  7005. height: math.unit(6, "feet"),
  7006. default: true
  7007. }
  7008. ]
  7009. ))
  7010. characterMakers.push(() => makeCharacter(
  7011. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7012. {
  7013. side: {
  7014. height: math.unit(6, "feet"),
  7015. weight: math.unit(150, "lbs"),
  7016. name: "Side",
  7017. image: {
  7018. source: "./media/characters/cibus/side.svg",
  7019. extra: 800 / 400
  7020. }
  7021. },
  7022. },
  7023. [
  7024. {
  7025. name: "Normal",
  7026. height: math.unit(6, "feet"),
  7027. default: true
  7028. }
  7029. ]
  7030. ))
  7031. characterMakers.push(() => makeCharacter(
  7032. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7033. {
  7034. front: {
  7035. height: math.unit(6, "feet"),
  7036. weight: math.unit(240, "lbs"),
  7037. name: "Front",
  7038. image: {
  7039. source: "./media/characters/nibbles/front.svg"
  7040. }
  7041. },
  7042. side: {
  7043. height: math.unit(6, "feet"),
  7044. weight: math.unit(240, "lbs"),
  7045. name: "Side",
  7046. image: {
  7047. source: "./media/characters/nibbles/side.svg"
  7048. }
  7049. },
  7050. },
  7051. [
  7052. {
  7053. name: "Normal",
  7054. height: math.unit(9, "feet"),
  7055. default: true
  7056. }
  7057. ]
  7058. ))
  7059. characterMakers.push(() => makeCharacter(
  7060. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7061. {
  7062. side: {
  7063. height: math.unit(5 + 1 / 6, "feet"),
  7064. weight: math.unit(130, "lbs"),
  7065. name: "Side",
  7066. image: {
  7067. source: "./media/characters/rikky/side.svg",
  7068. extra: 851 / 801
  7069. }
  7070. },
  7071. },
  7072. [
  7073. {
  7074. name: "Normal",
  7075. height: math.unit(5 + 1 / 6, "feet")
  7076. },
  7077. {
  7078. name: "Macro",
  7079. height: math.unit(152, "feet"),
  7080. default: true
  7081. },
  7082. {
  7083. name: "Megamacro",
  7084. height: math.unit(7, "miles")
  7085. }
  7086. ]
  7087. ))
  7088. characterMakers.push(() => makeCharacter(
  7089. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7090. {
  7091. side: {
  7092. height: math.unit(370, "cm"),
  7093. weight: math.unit(350, "lbs"),
  7094. name: "Side",
  7095. image: {
  7096. source: "./media/characters/malfressa/side.svg"
  7097. }
  7098. },
  7099. walking: {
  7100. height: math.unit(370, "cm"),
  7101. weight: math.unit(350, "lbs"),
  7102. name: "Walking",
  7103. image: {
  7104. source: "./media/characters/malfressa/walking.svg"
  7105. }
  7106. },
  7107. feral: {
  7108. height: math.unit(2500, "cm"),
  7109. weight: math.unit(100000, "lbs"),
  7110. name: "Feral",
  7111. image: {
  7112. source: "./media/characters/malfressa/feral.svg",
  7113. extra: 2108 / 837,
  7114. bottom: 0.02
  7115. }
  7116. },
  7117. },
  7118. [
  7119. {
  7120. name: "Normal",
  7121. height: math.unit(370, "cm")
  7122. },
  7123. {
  7124. name: "Macro",
  7125. height: math.unit(300, "meters"),
  7126. default: true
  7127. }
  7128. ]
  7129. ))
  7130. characterMakers.push(() => makeCharacter(
  7131. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7132. {
  7133. front: {
  7134. height: math.unit(6, "feet"),
  7135. weight: math.unit(60, "kg"),
  7136. name: "Front",
  7137. image: {
  7138. source: "./media/characters/jaro/front.svg",
  7139. extra: 845/817,
  7140. bottom: 45/890
  7141. }
  7142. },
  7143. back: {
  7144. height: math.unit(6, "feet"),
  7145. weight: math.unit(60, "kg"),
  7146. name: "Back",
  7147. image: {
  7148. source: "./media/characters/jaro/back.svg",
  7149. extra: 847/817,
  7150. bottom: 34/881
  7151. }
  7152. },
  7153. },
  7154. [
  7155. {
  7156. name: "Micro",
  7157. height: math.unit(7, "inches")
  7158. },
  7159. {
  7160. name: "Normal",
  7161. height: math.unit(5.5, "feet"),
  7162. default: true
  7163. },
  7164. {
  7165. name: "Minimacro",
  7166. height: math.unit(20, "feet")
  7167. },
  7168. {
  7169. name: "Macro",
  7170. height: math.unit(200, "meters")
  7171. }
  7172. ]
  7173. ))
  7174. characterMakers.push(() => makeCharacter(
  7175. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7176. {
  7177. front: {
  7178. height: math.unit(6, "feet"),
  7179. weight: math.unit(195, "lb"),
  7180. name: "Front",
  7181. image: {
  7182. source: "./media/characters/rogue/front.svg"
  7183. }
  7184. },
  7185. },
  7186. [
  7187. {
  7188. name: "Macro",
  7189. height: math.unit(90, "feet"),
  7190. default: true
  7191. },
  7192. ]
  7193. ))
  7194. characterMakers.push(() => makeCharacter(
  7195. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7196. {
  7197. standing: {
  7198. height: math.unit(5 + 8 / 12, "feet"),
  7199. weight: math.unit(140, "lb"),
  7200. name: "Standing",
  7201. image: {
  7202. source: "./media/characters/piper/standing.svg",
  7203. extra: 1440/1284,
  7204. bottom: 66/1506
  7205. }
  7206. },
  7207. running: {
  7208. height: math.unit(5 + 8 / 12, "feet"),
  7209. weight: math.unit(140, "lb"),
  7210. name: "Running",
  7211. image: {
  7212. source: "./media/characters/piper/running.svg",
  7213. extra: 3948/3655,
  7214. bottom: 0/3948
  7215. }
  7216. },
  7217. sole: {
  7218. height: math.unit(0.81, "feet"),
  7219. weight: math.unit(2, "kg"),
  7220. name: "Sole",
  7221. image: {
  7222. source: "./media/characters/piper/sole.svg"
  7223. }
  7224. },
  7225. nipple: {
  7226. height: math.unit(0.25, "feet"),
  7227. weight: math.unit(1.5, "lb"),
  7228. name: "Nipple",
  7229. image: {
  7230. source: "./media/characters/piper/nipple.svg"
  7231. }
  7232. },
  7233. head: {
  7234. height: math.unit(1.1, "feet"),
  7235. name: "Head",
  7236. image: {
  7237. source: "./media/characters/piper/head.svg"
  7238. }
  7239. },
  7240. },
  7241. [
  7242. {
  7243. name: "Micro",
  7244. height: math.unit(2, "inches")
  7245. },
  7246. {
  7247. name: "Normal",
  7248. height: math.unit(5 + 8 / 12, "feet")
  7249. },
  7250. {
  7251. name: "Macro",
  7252. height: math.unit(250, "feet"),
  7253. default: true
  7254. },
  7255. {
  7256. name: "Megamacro",
  7257. height: math.unit(7, "miles")
  7258. },
  7259. ]
  7260. ))
  7261. characterMakers.push(() => makeCharacter(
  7262. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7263. {
  7264. front: {
  7265. height: math.unit(6, "feet"),
  7266. weight: math.unit(220, "lb"),
  7267. name: "Front",
  7268. image: {
  7269. source: "./media/characters/gemini/front.svg"
  7270. }
  7271. },
  7272. back: {
  7273. height: math.unit(6, "feet"),
  7274. weight: math.unit(220, "lb"),
  7275. name: "Back",
  7276. image: {
  7277. source: "./media/characters/gemini/back.svg"
  7278. }
  7279. },
  7280. kneeling: {
  7281. height: math.unit(6 / 1.5, "feet"),
  7282. weight: math.unit(220, "lb"),
  7283. name: "Kneeling",
  7284. image: {
  7285. source: "./media/characters/gemini/kneeling.svg",
  7286. bottom: 0.02
  7287. }
  7288. },
  7289. },
  7290. [
  7291. {
  7292. name: "Macro",
  7293. height: math.unit(300, "meters"),
  7294. default: true
  7295. },
  7296. {
  7297. name: "Megamacro",
  7298. height: math.unit(6900, "meters")
  7299. },
  7300. ]
  7301. ))
  7302. characterMakers.push(() => makeCharacter(
  7303. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7304. {
  7305. anthro: {
  7306. height: math.unit(2.35, "meters"),
  7307. weight: math.unit(73, "kg"),
  7308. name: "Anthro",
  7309. image: {
  7310. source: "./media/characters/alicia/anthro.svg",
  7311. extra: 2571 / 2385,
  7312. bottom: 75 / 2648
  7313. }
  7314. },
  7315. paw: {
  7316. height: math.unit(1.32, "feet"),
  7317. name: "Paw",
  7318. image: {
  7319. source: "./media/characters/alicia/paw.svg"
  7320. }
  7321. },
  7322. feral: {
  7323. height: math.unit(1.69, "meters"),
  7324. weight: math.unit(73, "kg"),
  7325. name: "Feral",
  7326. image: {
  7327. source: "./media/characters/alicia/feral.svg",
  7328. extra: 2123 / 1715,
  7329. bottom: 222 / 2349
  7330. }
  7331. },
  7332. },
  7333. [
  7334. {
  7335. name: "Normal",
  7336. height: math.unit(2.35, "meters")
  7337. },
  7338. {
  7339. name: "Macro",
  7340. height: math.unit(60, "meters"),
  7341. default: true
  7342. },
  7343. {
  7344. name: "Megamacro",
  7345. height: math.unit(10000, "kilometers")
  7346. },
  7347. ]
  7348. ))
  7349. characterMakers.push(() => makeCharacter(
  7350. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7351. {
  7352. front: {
  7353. height: math.unit(7, "feet"),
  7354. weight: math.unit(250, "lbs"),
  7355. name: "Front",
  7356. image: {
  7357. source: "./media/characters/archy/front.svg"
  7358. }
  7359. }
  7360. },
  7361. [
  7362. {
  7363. name: "Micro",
  7364. height: math.unit(1, "inch")
  7365. },
  7366. {
  7367. name: "Shorty",
  7368. height: math.unit(5, "feet")
  7369. },
  7370. {
  7371. name: "Normal",
  7372. height: math.unit(7, "feet")
  7373. },
  7374. {
  7375. name: "Macro",
  7376. height: math.unit(600, "meters"),
  7377. default: true
  7378. },
  7379. {
  7380. name: "Megamacro",
  7381. height: math.unit(1, "mile")
  7382. },
  7383. ]
  7384. ))
  7385. characterMakers.push(() => makeCharacter(
  7386. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7387. {
  7388. front: {
  7389. height: math.unit(1.65, "meters"),
  7390. weight: math.unit(74, "kg"),
  7391. name: "Front",
  7392. image: {
  7393. source: "./media/characters/berri/front.svg",
  7394. extra: 857 / 837,
  7395. bottom: 18 / 877
  7396. }
  7397. },
  7398. bum: {
  7399. height: math.unit(1.46, "feet"),
  7400. name: "Bum",
  7401. image: {
  7402. source: "./media/characters/berri/bum.svg"
  7403. }
  7404. },
  7405. mouth: {
  7406. height: math.unit(0.44, "feet"),
  7407. name: "Mouth",
  7408. image: {
  7409. source: "./media/characters/berri/mouth.svg"
  7410. }
  7411. },
  7412. paw: {
  7413. height: math.unit(0.826, "feet"),
  7414. name: "Paw",
  7415. image: {
  7416. source: "./media/characters/berri/paw.svg"
  7417. }
  7418. },
  7419. },
  7420. [
  7421. {
  7422. name: "Normal",
  7423. height: math.unit(1.65, "meters")
  7424. },
  7425. {
  7426. name: "Macro",
  7427. height: math.unit(60, "m"),
  7428. default: true
  7429. },
  7430. {
  7431. name: "Megamacro",
  7432. height: math.unit(9.213, "km")
  7433. },
  7434. {
  7435. name: "Planet Eater",
  7436. height: math.unit(489, "megameters")
  7437. },
  7438. {
  7439. name: "Teramacro",
  7440. height: math.unit(2471635000000, "meters")
  7441. },
  7442. {
  7443. name: "Examacro",
  7444. height: math.unit(8.0624e+26, "meters")
  7445. }
  7446. ]
  7447. ))
  7448. characterMakers.push(() => makeCharacter(
  7449. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7450. {
  7451. front: {
  7452. height: math.unit(1.72, "meters"),
  7453. weight: math.unit(68, "kg"),
  7454. name: "Front",
  7455. image: {
  7456. source: "./media/characters/lexi/front.svg"
  7457. }
  7458. }
  7459. },
  7460. [
  7461. {
  7462. name: "Very Smol",
  7463. height: math.unit(10, "mm")
  7464. },
  7465. {
  7466. name: "Micro",
  7467. height: math.unit(6.8, "cm"),
  7468. default: true
  7469. },
  7470. {
  7471. name: "Normal",
  7472. height: math.unit(1.72, "m")
  7473. }
  7474. ]
  7475. ))
  7476. characterMakers.push(() => makeCharacter(
  7477. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7478. {
  7479. front: {
  7480. height: math.unit(1.69, "meters"),
  7481. weight: math.unit(68, "kg"),
  7482. name: "Front",
  7483. image: {
  7484. source: "./media/characters/martin/front.svg",
  7485. extra: 596 / 581
  7486. }
  7487. }
  7488. },
  7489. [
  7490. {
  7491. name: "Micro",
  7492. height: math.unit(6.85, "cm"),
  7493. default: true
  7494. },
  7495. {
  7496. name: "Normal",
  7497. height: math.unit(1.69, "m")
  7498. }
  7499. ]
  7500. ))
  7501. characterMakers.push(() => makeCharacter(
  7502. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7503. {
  7504. front: {
  7505. height: math.unit(1.69, "meters"),
  7506. weight: math.unit(68, "kg"),
  7507. name: "Front",
  7508. image: {
  7509. source: "./media/characters/juno/front.svg"
  7510. }
  7511. }
  7512. },
  7513. [
  7514. {
  7515. name: "Micro",
  7516. height: math.unit(7, "cm")
  7517. },
  7518. {
  7519. name: "Normal",
  7520. height: math.unit(1.89, "m")
  7521. },
  7522. {
  7523. name: "Macro",
  7524. height: math.unit(353, "meters"),
  7525. default: true
  7526. }
  7527. ]
  7528. ))
  7529. characterMakers.push(() => makeCharacter(
  7530. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7531. {
  7532. front: {
  7533. height: math.unit(1.93, "meters"),
  7534. weight: math.unit(83, "kg"),
  7535. name: "Front",
  7536. image: {
  7537. source: "./media/characters/samantha/front.svg"
  7538. }
  7539. },
  7540. frontClothed: {
  7541. height: math.unit(1.93, "meters"),
  7542. weight: math.unit(83, "kg"),
  7543. name: "Front (Clothed)",
  7544. image: {
  7545. source: "./media/characters/samantha/front-clothed.svg"
  7546. }
  7547. },
  7548. back: {
  7549. height: math.unit(1.93, "meters"),
  7550. weight: math.unit(83, "kg"),
  7551. name: "Back",
  7552. image: {
  7553. source: "./media/characters/samantha/back.svg"
  7554. }
  7555. },
  7556. },
  7557. [
  7558. {
  7559. name: "Normal",
  7560. height: math.unit(1.93, "m")
  7561. },
  7562. {
  7563. name: "Macro",
  7564. height: math.unit(74, "meters"),
  7565. default: true
  7566. },
  7567. {
  7568. name: "Macro+",
  7569. height: math.unit(223, "meters"),
  7570. },
  7571. {
  7572. name: "Megamacro",
  7573. height: math.unit(8381, "meters"),
  7574. },
  7575. {
  7576. name: "Megamacro+",
  7577. height: math.unit(12000, "kilometers")
  7578. },
  7579. ]
  7580. ))
  7581. characterMakers.push(() => makeCharacter(
  7582. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7583. {
  7584. front: {
  7585. height: math.unit(1.92, "meters"),
  7586. weight: math.unit(80, "kg"),
  7587. name: "Front",
  7588. image: {
  7589. source: "./media/characters/dr-clay/front.svg"
  7590. }
  7591. },
  7592. frontClothed: {
  7593. height: math.unit(1.92, "meters"),
  7594. weight: math.unit(80, "kg"),
  7595. name: "Front (Clothed)",
  7596. image: {
  7597. source: "./media/characters/dr-clay/front-clothed.svg"
  7598. }
  7599. }
  7600. },
  7601. [
  7602. {
  7603. name: "Normal",
  7604. height: math.unit(1.92, "m")
  7605. },
  7606. {
  7607. name: "Macro",
  7608. height: math.unit(214, "meters"),
  7609. default: true
  7610. },
  7611. {
  7612. name: "Macro+",
  7613. height: math.unit(12.237, "meters"),
  7614. },
  7615. {
  7616. name: "Megamacro",
  7617. height: math.unit(557, "megameters"),
  7618. },
  7619. {
  7620. name: "Unimaginable",
  7621. height: math.unit(120e9, "lightyears")
  7622. },
  7623. ]
  7624. ))
  7625. characterMakers.push(() => makeCharacter(
  7626. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7627. {
  7628. front: {
  7629. height: math.unit(2, "meters"),
  7630. weight: math.unit(80, "kg"),
  7631. name: "Front",
  7632. image: {
  7633. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7634. }
  7635. }
  7636. },
  7637. [
  7638. {
  7639. name: "Teramacro",
  7640. height: math.unit(500000, "lightyears"),
  7641. default: true
  7642. },
  7643. ]
  7644. ))
  7645. characterMakers.push(() => makeCharacter(
  7646. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7647. {
  7648. crux: {
  7649. height: math.unit(2, "meters"),
  7650. weight: math.unit(150, "kg"),
  7651. name: "Crux",
  7652. image: {
  7653. source: "./media/characters/vemus/crux.svg",
  7654. extra: 1074/936,
  7655. bottom: 23/1097
  7656. }
  7657. },
  7658. skunkTanuki: {
  7659. height: math.unit(2, "meters"),
  7660. weight: math.unit(150, "kg"),
  7661. name: "Skunk-Tanuki",
  7662. image: {
  7663. source: "./media/characters/vemus/skunk-tanuki.svg",
  7664. extra: 926/893,
  7665. bottom: 20/946
  7666. }
  7667. },
  7668. },
  7669. [
  7670. {
  7671. name: "Normal",
  7672. height: math.unit(4, "meters"),
  7673. default: true
  7674. },
  7675. {
  7676. name: "Big",
  7677. height: math.unit(8, "meters")
  7678. },
  7679. {
  7680. name: "Macro",
  7681. height: math.unit(100, "meters")
  7682. },
  7683. {
  7684. name: "Macro+",
  7685. height: math.unit(1500, "meters")
  7686. },
  7687. {
  7688. name: "Stellar",
  7689. height: math.unit(14e8, "meters")
  7690. },
  7691. ]
  7692. ))
  7693. characterMakers.push(() => makeCharacter(
  7694. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7695. {
  7696. front: {
  7697. height: math.unit(2, "meters"),
  7698. weight: math.unit(70, "kg"),
  7699. name: "Front",
  7700. image: {
  7701. source: "./media/characters/beherit/front.svg",
  7702. extra: 1234/1109,
  7703. bottom: 55/1289
  7704. }
  7705. }
  7706. },
  7707. [
  7708. {
  7709. name: "Normal",
  7710. height: math.unit(6, "feet")
  7711. },
  7712. {
  7713. name: "Lorg",
  7714. height: math.unit(25, "feet"),
  7715. default: true
  7716. },
  7717. {
  7718. name: "Lorger",
  7719. height: math.unit(75, "feet")
  7720. },
  7721. {
  7722. name: "Macro",
  7723. height: math.unit(200, "meters")
  7724. },
  7725. ]
  7726. ))
  7727. characterMakers.push(() => makeCharacter(
  7728. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7729. {
  7730. front: {
  7731. height: math.unit(2, "meters"),
  7732. weight: math.unit(150, "kg"),
  7733. name: "Front",
  7734. image: {
  7735. source: "./media/characters/everett/front.svg",
  7736. extra: 1017/866,
  7737. bottom: 86/1103
  7738. }
  7739. },
  7740. paw: {
  7741. height: math.unit(2 / 3.6, "meters"),
  7742. name: "Paw",
  7743. image: {
  7744. source: "./media/characters/everett/paw.svg"
  7745. }
  7746. },
  7747. },
  7748. [
  7749. {
  7750. name: "Normal",
  7751. height: math.unit(15, "feet"),
  7752. default: true
  7753. },
  7754. {
  7755. name: "Lorg",
  7756. height: math.unit(70, "feet"),
  7757. default: true
  7758. },
  7759. {
  7760. name: "Lorger",
  7761. height: math.unit(250, "feet")
  7762. },
  7763. {
  7764. name: "Macro",
  7765. height: math.unit(500, "meters")
  7766. },
  7767. ]
  7768. ))
  7769. characterMakers.push(() => makeCharacter(
  7770. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7771. {
  7772. front: {
  7773. height: math.unit(2, "meters"),
  7774. weight: math.unit(86, "kg"),
  7775. name: "Front",
  7776. image: {
  7777. source: "./media/characters/rose/front.svg",
  7778. extra: 1785/1636,
  7779. bottom: 30/1815
  7780. },
  7781. form: "liom",
  7782. default: true
  7783. },
  7784. frontSporty: {
  7785. height: math.unit(2, "meters"),
  7786. weight: math.unit(86, "kg"),
  7787. name: "Front (Sporty)",
  7788. image: {
  7789. source: "./media/characters/rose/front-sporty.svg",
  7790. extra: 350/335,
  7791. bottom: 10/360
  7792. },
  7793. form: "liom"
  7794. },
  7795. frontAlt: {
  7796. height: math.unit(1.6, "meters"),
  7797. weight: math.unit(86, "kg"),
  7798. name: "Front (Alt)",
  7799. image: {
  7800. source: "./media/characters/rose/front-alt.svg",
  7801. extra: 299/283,
  7802. bottom: 3/302
  7803. },
  7804. form: "liom"
  7805. },
  7806. plush: {
  7807. height: math.unit(2, "meters"),
  7808. weight: math.unit(86/3, "kg"),
  7809. name: "Plush",
  7810. image: {
  7811. source: "./media/characters/rose/plush.svg",
  7812. extra: 361/337,
  7813. bottom: 11/372
  7814. },
  7815. form: "plush",
  7816. default: true
  7817. },
  7818. faeStanding: {
  7819. height: math.unit(10, "cm"),
  7820. weight: math.unit(10, "grams"),
  7821. name: "Standing",
  7822. image: {
  7823. source: "./media/characters/rose/fae-standing.svg",
  7824. extra: 1189/1060,
  7825. bottom: 27/1216
  7826. },
  7827. form: "fae",
  7828. default: true
  7829. },
  7830. faeSitting: {
  7831. height: math.unit(5, "cm"),
  7832. weight: math.unit(10, "grams"),
  7833. name: "Sitting",
  7834. image: {
  7835. source: "./media/characters/rose/fae-sitting.svg",
  7836. extra: 737/577,
  7837. bottom: 356/1093
  7838. },
  7839. form: "fae"
  7840. },
  7841. faePaw: {
  7842. height: math.unit(1.35, "cm"),
  7843. name: "Paw",
  7844. image: {
  7845. source: "./media/characters/rose/fae-paw.svg"
  7846. },
  7847. form: "fae"
  7848. },
  7849. },
  7850. [
  7851. {
  7852. name: "True Micro",
  7853. height: math.unit(9, "cm"),
  7854. form: "liom"
  7855. },
  7856. {
  7857. name: "Micro",
  7858. height: math.unit(16, "cm"),
  7859. form: "liom"
  7860. },
  7861. {
  7862. name: "Normal",
  7863. height: math.unit(1.85, "meters"),
  7864. default: true,
  7865. form: "liom"
  7866. },
  7867. {
  7868. name: "Mini-Macro",
  7869. height: math.unit(5, "meters"),
  7870. form: "liom"
  7871. },
  7872. {
  7873. name: "Macro",
  7874. height: math.unit(15, "meters"),
  7875. form: "liom"
  7876. },
  7877. {
  7878. name: "True Macro",
  7879. height: math.unit(40, "meters"),
  7880. form: "liom"
  7881. },
  7882. {
  7883. name: "City Scale",
  7884. height: math.unit(1, "km"),
  7885. form: "liom"
  7886. },
  7887. {
  7888. name: "Plushie",
  7889. height: math.unit(9, "cm"),
  7890. form: "plush",
  7891. default: true
  7892. },
  7893. {
  7894. name: "Fae",
  7895. height: math.unit(10, "cm"),
  7896. form: "fae",
  7897. default: true
  7898. },
  7899. ],
  7900. {
  7901. "liom": {
  7902. name: "Liom"
  7903. },
  7904. "plush": {
  7905. name: "Plush"
  7906. },
  7907. "fae": {
  7908. name: "Fae Fox",
  7909. default: true
  7910. }
  7911. }
  7912. ))
  7913. characterMakers.push(() => makeCharacter(
  7914. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7915. {
  7916. front: {
  7917. height: math.unit(2, "meters"),
  7918. weight: math.unit(350, "lbs"),
  7919. name: "Front",
  7920. image: {
  7921. source: "./media/characters/regal/front.svg"
  7922. }
  7923. },
  7924. back: {
  7925. height: math.unit(2, "meters"),
  7926. weight: math.unit(350, "lbs"),
  7927. name: "Back",
  7928. image: {
  7929. source: "./media/characters/regal/back.svg"
  7930. }
  7931. },
  7932. },
  7933. [
  7934. {
  7935. name: "Macro",
  7936. height: math.unit(350, "feet"),
  7937. default: true
  7938. }
  7939. ]
  7940. ))
  7941. characterMakers.push(() => makeCharacter(
  7942. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7943. {
  7944. front: {
  7945. height: math.unit(4 + 11 / 12, "feet"),
  7946. weight: math.unit(100, "lbs"),
  7947. name: "Front",
  7948. image: {
  7949. source: "./media/characters/opal/front.svg"
  7950. }
  7951. },
  7952. frontAlt: {
  7953. height: math.unit(4 + 11 / 12, "feet"),
  7954. weight: math.unit(100, "lbs"),
  7955. name: "Front (Alt)",
  7956. image: {
  7957. source: "./media/characters/opal/front-alt.svg"
  7958. }
  7959. },
  7960. },
  7961. [
  7962. {
  7963. name: "Small",
  7964. height: math.unit(4 + 11 / 12, "feet")
  7965. },
  7966. {
  7967. name: "Normal",
  7968. height: math.unit(20, "feet"),
  7969. default: true
  7970. },
  7971. {
  7972. name: "Macro",
  7973. height: math.unit(120, "feet")
  7974. },
  7975. {
  7976. name: "Megamacro",
  7977. height: math.unit(80, "miles")
  7978. },
  7979. {
  7980. name: "True Size",
  7981. height: math.unit(100000, "lightyears")
  7982. },
  7983. ]
  7984. ))
  7985. characterMakers.push(() => makeCharacter(
  7986. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7987. {
  7988. front: {
  7989. height: math.unit(6, "feet"),
  7990. weight: math.unit(200, "lbs"),
  7991. name: "Front",
  7992. image: {
  7993. source: "./media/characters/vector-wuff/front.svg"
  7994. }
  7995. }
  7996. },
  7997. [
  7998. {
  7999. name: "Normal",
  8000. height: math.unit(2.8, "meters")
  8001. },
  8002. {
  8003. name: "Macro",
  8004. height: math.unit(450, "meters"),
  8005. default: true
  8006. },
  8007. {
  8008. name: "Megamacro",
  8009. height: math.unit(15, "kilometers")
  8010. }
  8011. ]
  8012. ))
  8013. characterMakers.push(() => makeCharacter(
  8014. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8015. {
  8016. front: {
  8017. height: math.unit(6, "feet"),
  8018. weight: math.unit(256, "lbs"),
  8019. name: "Front",
  8020. image: {
  8021. source: "./media/characters/dannik/front.svg"
  8022. }
  8023. }
  8024. },
  8025. [
  8026. {
  8027. name: "Macro",
  8028. height: math.unit(69.57, "meters"),
  8029. default: true
  8030. },
  8031. ]
  8032. ))
  8033. characterMakers.push(() => makeCharacter(
  8034. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8035. {
  8036. front: {
  8037. height: math.unit(6, "feet"),
  8038. weight: math.unit(120, "lbs"),
  8039. name: "Front",
  8040. image: {
  8041. source: "./media/characters/azura-saharah/front.svg"
  8042. }
  8043. },
  8044. back: {
  8045. height: math.unit(6, "feet"),
  8046. weight: math.unit(120, "lbs"),
  8047. name: "Back",
  8048. image: {
  8049. source: "./media/characters/azura-saharah/back.svg"
  8050. }
  8051. },
  8052. },
  8053. [
  8054. {
  8055. name: "Macro",
  8056. height: math.unit(100, "feet"),
  8057. default: true
  8058. },
  8059. ]
  8060. ))
  8061. characterMakers.push(() => makeCharacter(
  8062. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8063. {
  8064. side: {
  8065. height: math.unit(5 + 4 / 12, "feet"),
  8066. weight: math.unit(163, "lbs"),
  8067. name: "Side",
  8068. image: {
  8069. source: "./media/characters/kennedy/side.svg"
  8070. }
  8071. }
  8072. },
  8073. [
  8074. {
  8075. name: "Standard Doggo",
  8076. height: math.unit(5 + 4 / 12, "feet")
  8077. },
  8078. {
  8079. name: "Big Doggo",
  8080. height: math.unit(25 + 3 / 12, "feet"),
  8081. default: true
  8082. },
  8083. ]
  8084. ))
  8085. characterMakers.push(() => makeCharacter(
  8086. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8087. {
  8088. front: {
  8089. height: math.unit(5 + 5/12, "feet"),
  8090. weight: math.unit(100, "lbs"),
  8091. name: "Front",
  8092. image: {
  8093. source: "./media/characters/odios-de-lunar/front.svg",
  8094. extra: 1468/1323,
  8095. bottom: 22/1490
  8096. }
  8097. }
  8098. },
  8099. [
  8100. {
  8101. name: "Micro",
  8102. height: math.unit(3, "inches")
  8103. },
  8104. {
  8105. name: "Normal",
  8106. height: math.unit(5.5, "feet"),
  8107. default: true
  8108. },
  8109. {
  8110. name: "Macro",
  8111. height: math.unit(100, "feet")
  8112. },
  8113. ]
  8114. ))
  8115. characterMakers.push(() => makeCharacter(
  8116. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8117. {
  8118. back: {
  8119. height: math.unit(6, "feet"),
  8120. weight: math.unit(220, "lbs"),
  8121. name: "Back",
  8122. image: {
  8123. source: "./media/characters/mandake/back.svg"
  8124. }
  8125. }
  8126. },
  8127. [
  8128. {
  8129. name: "Normal",
  8130. height: math.unit(7, "feet"),
  8131. default: true
  8132. },
  8133. {
  8134. name: "Macro",
  8135. height: math.unit(78, "feet")
  8136. },
  8137. {
  8138. name: "Macro+",
  8139. height: math.unit(300, "meters")
  8140. },
  8141. {
  8142. name: "Macro++",
  8143. height: math.unit(2400, "feet")
  8144. },
  8145. {
  8146. name: "Megamacro",
  8147. height: math.unit(5167, "meters")
  8148. },
  8149. {
  8150. name: "Gigamacro",
  8151. height: math.unit(41769, "miles")
  8152. },
  8153. ]
  8154. ))
  8155. characterMakers.push(() => makeCharacter(
  8156. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8157. {
  8158. front: {
  8159. height: math.unit(6, "feet"),
  8160. weight: math.unit(120, "lbs"),
  8161. name: "Front",
  8162. image: {
  8163. source: "./media/characters/yozey/front.svg"
  8164. }
  8165. },
  8166. frontAlt: {
  8167. height: math.unit(6, "feet"),
  8168. weight: math.unit(120, "lbs"),
  8169. name: "Front (Alt)",
  8170. image: {
  8171. source: "./media/characters/yozey/front-alt.svg"
  8172. }
  8173. },
  8174. side: {
  8175. height: math.unit(6, "feet"),
  8176. weight: math.unit(120, "lbs"),
  8177. name: "Side",
  8178. image: {
  8179. source: "./media/characters/yozey/side.svg"
  8180. }
  8181. },
  8182. },
  8183. [
  8184. {
  8185. name: "Micro",
  8186. height: math.unit(3, "inches"),
  8187. default: true
  8188. },
  8189. {
  8190. name: "Normal",
  8191. height: math.unit(6, "feet")
  8192. }
  8193. ]
  8194. ))
  8195. characterMakers.push(() => makeCharacter(
  8196. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8197. {
  8198. front: {
  8199. height: math.unit(6, "feet"),
  8200. weight: math.unit(103, "lbs"),
  8201. name: "Front",
  8202. image: {
  8203. source: "./media/characters/valeska-voss/front.svg"
  8204. }
  8205. }
  8206. },
  8207. [
  8208. {
  8209. name: "Mini-Sized Sub",
  8210. height: math.unit(3.1, "inches")
  8211. },
  8212. {
  8213. name: "Mid-Sized Sub",
  8214. height: math.unit(6.2, "inches")
  8215. },
  8216. {
  8217. name: "Full-Sized Sub",
  8218. height: math.unit(9.3, "inches")
  8219. },
  8220. {
  8221. name: "Normal",
  8222. height: math.unit(5 + 2 / 12, "foot"),
  8223. default: true
  8224. },
  8225. ]
  8226. ))
  8227. characterMakers.push(() => makeCharacter(
  8228. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8229. {
  8230. front: {
  8231. height: math.unit(6, "feet"),
  8232. weight: math.unit(160, "lbs"),
  8233. name: "Front",
  8234. image: {
  8235. source: "./media/characters/gene-zeta/front.svg",
  8236. extra: 3006 / 2826,
  8237. bottom: 182 / 3188
  8238. }
  8239. }
  8240. },
  8241. [
  8242. {
  8243. name: "Micro",
  8244. height: math.unit(6, "inches")
  8245. },
  8246. {
  8247. name: "Normal",
  8248. height: math.unit(5 + 11 / 12, "foot"),
  8249. default: true
  8250. },
  8251. {
  8252. name: "Macro",
  8253. height: math.unit(140, "feet")
  8254. },
  8255. {
  8256. name: "Supercharged",
  8257. height: math.unit(2500, "feet")
  8258. },
  8259. ]
  8260. ))
  8261. characterMakers.push(() => makeCharacter(
  8262. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8263. {
  8264. front: {
  8265. height: math.unit(6, "feet"),
  8266. weight: math.unit(350, "lbs"),
  8267. name: "Front",
  8268. image: {
  8269. source: "./media/characters/razinox/front.svg",
  8270. extra: 1686 / 1548,
  8271. bottom: 28.2 / 1868
  8272. }
  8273. },
  8274. back: {
  8275. height: math.unit(6, "feet"),
  8276. weight: math.unit(350, "lbs"),
  8277. name: "Back",
  8278. image: {
  8279. source: "./media/characters/razinox/back.svg",
  8280. extra: 1660 / 1590,
  8281. bottom: 15 / 1665
  8282. }
  8283. },
  8284. },
  8285. [
  8286. {
  8287. name: "Normal",
  8288. height: math.unit(10 + 8 / 12, "foot")
  8289. },
  8290. {
  8291. name: "Minimacro",
  8292. height: math.unit(15, "foot")
  8293. },
  8294. {
  8295. name: "Macro",
  8296. height: math.unit(60, "foot"),
  8297. default: true
  8298. },
  8299. {
  8300. name: "Megamacro",
  8301. height: math.unit(5, "miles")
  8302. },
  8303. {
  8304. name: "Gigamacro",
  8305. height: math.unit(6000, "miles")
  8306. },
  8307. ]
  8308. ))
  8309. characterMakers.push(() => makeCharacter(
  8310. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8311. {
  8312. front: {
  8313. height: math.unit(6, "feet"),
  8314. weight: math.unit(150, "lbs"),
  8315. name: "Front",
  8316. image: {
  8317. source: "./media/characters/cobalt/front.svg"
  8318. }
  8319. }
  8320. },
  8321. [
  8322. {
  8323. name: "Normal",
  8324. height: math.unit(8 + 1 / 12, "foot")
  8325. },
  8326. {
  8327. name: "Macro",
  8328. height: math.unit(111, "foot"),
  8329. default: true
  8330. },
  8331. {
  8332. name: "Supracosmic",
  8333. height: math.unit(1e42, "feet")
  8334. },
  8335. ]
  8336. ))
  8337. characterMakers.push(() => makeCharacter(
  8338. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8339. {
  8340. front: {
  8341. height: math.unit(5, "inches"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/amanda/front.svg",
  8345. extra: 926/791,
  8346. bottom: 38/964
  8347. }
  8348. },
  8349. back: {
  8350. height: math.unit(5, "inches"),
  8351. name: "Back",
  8352. image: {
  8353. source: "./media/characters/amanda/back.svg",
  8354. extra: 909/805,
  8355. bottom: 43/952
  8356. }
  8357. },
  8358. },
  8359. [
  8360. {
  8361. name: "Micro",
  8362. height: math.unit(5, "inches"),
  8363. default: true
  8364. },
  8365. ]
  8366. ))
  8367. characterMakers.push(() => makeCharacter(
  8368. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8369. {
  8370. front: {
  8371. height: math.unit(2.75, "meters"),
  8372. weight: math.unit(1200, "lb"),
  8373. name: "Front",
  8374. image: {
  8375. source: "./media/characters/teal/front.svg",
  8376. extra: 2463 / 2320,
  8377. bottom: 166 / 2629
  8378. }
  8379. },
  8380. back: {
  8381. height: math.unit(2.75, "meters"),
  8382. weight: math.unit(1200, "lb"),
  8383. name: "Back",
  8384. image: {
  8385. source: "./media/characters/teal/back.svg",
  8386. extra: 2580 / 2489,
  8387. bottom: 151 / 2731
  8388. }
  8389. },
  8390. sitting: {
  8391. height: math.unit(1.9, "meters"),
  8392. weight: math.unit(1200, "lb"),
  8393. name: "Sitting",
  8394. image: {
  8395. source: "./media/characters/teal/sitting.svg",
  8396. extra: 623 / 590,
  8397. bottom: 121 / 744
  8398. }
  8399. },
  8400. standing: {
  8401. height: math.unit(2.75, "meters"),
  8402. weight: math.unit(1200, "lb"),
  8403. name: "Standing",
  8404. image: {
  8405. source: "./media/characters/teal/standing.svg",
  8406. extra: 923 / 893,
  8407. bottom: 60 / 983
  8408. }
  8409. },
  8410. stretching: {
  8411. height: math.unit(3.65, "meters"),
  8412. weight: math.unit(1200, "lb"),
  8413. name: "Stretching",
  8414. image: {
  8415. source: "./media/characters/teal/stretching.svg",
  8416. extra: 1276 / 1244,
  8417. bottom: 0 / 1276
  8418. }
  8419. },
  8420. legged: {
  8421. height: math.unit(1.3, "meters"),
  8422. weight: math.unit(100, "lb"),
  8423. name: "Legged",
  8424. image: {
  8425. source: "./media/characters/teal/legged.svg",
  8426. extra: 462 / 437,
  8427. bottom: 24 / 486
  8428. }
  8429. },
  8430. naga: {
  8431. height: math.unit(5.4, "meters"),
  8432. weight: math.unit(4000, "lb"),
  8433. name: "Naga",
  8434. image: {
  8435. source: "./media/characters/teal/naga.svg",
  8436. extra: 1902 / 1858,
  8437. bottom: 0 / 1902
  8438. }
  8439. },
  8440. hand: {
  8441. height: math.unit(0.52, "meters"),
  8442. name: "Hand",
  8443. image: {
  8444. source: "./media/characters/teal/hand.svg"
  8445. }
  8446. },
  8447. maw: {
  8448. height: math.unit(0.43, "meters"),
  8449. name: "Maw",
  8450. image: {
  8451. source: "./media/characters/teal/maw.svg"
  8452. }
  8453. },
  8454. slit: {
  8455. height: math.unit(0.25, "meters"),
  8456. name: "Slit",
  8457. image: {
  8458. source: "./media/characters/teal/slit.svg"
  8459. }
  8460. },
  8461. },
  8462. [
  8463. {
  8464. name: "Normal",
  8465. height: math.unit(2.75, "meters"),
  8466. default: true
  8467. },
  8468. {
  8469. name: "Macro",
  8470. height: math.unit(300, "feet")
  8471. },
  8472. {
  8473. name: "Macro+",
  8474. height: math.unit(2000, "feet")
  8475. },
  8476. ]
  8477. ))
  8478. characterMakers.push(() => makeCharacter(
  8479. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8480. {
  8481. frontCat: {
  8482. height: math.unit(6, "feet"),
  8483. weight: math.unit(180, "lbs"),
  8484. name: "Front (Cat)",
  8485. image: {
  8486. source: "./media/characters/ravin-amulet/front-cat.svg"
  8487. }
  8488. },
  8489. frontCatAlt: {
  8490. height: math.unit(6, "feet"),
  8491. weight: math.unit(180, "lbs"),
  8492. name: "Front (Alt, Cat)",
  8493. image: {
  8494. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8495. }
  8496. },
  8497. frontWerewolf: {
  8498. height: math.unit(6 * 1.2, "feet"),
  8499. weight: math.unit(225, "lbs"),
  8500. name: "Front (Werewolf)",
  8501. image: {
  8502. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8503. }
  8504. },
  8505. backWerewolf: {
  8506. height: math.unit(6 * 1.2, "feet"),
  8507. weight: math.unit(225, "lbs"),
  8508. name: "Back (Werewolf)",
  8509. image: {
  8510. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8511. }
  8512. },
  8513. },
  8514. [
  8515. {
  8516. name: "Nano",
  8517. height: math.unit(1, "micrometer")
  8518. },
  8519. {
  8520. name: "Micro",
  8521. height: math.unit(1, "inch")
  8522. },
  8523. {
  8524. name: "Normal",
  8525. height: math.unit(6, "feet"),
  8526. default: true
  8527. },
  8528. {
  8529. name: "Macro",
  8530. height: math.unit(60, "feet")
  8531. }
  8532. ]
  8533. ))
  8534. characterMakers.push(() => makeCharacter(
  8535. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8536. {
  8537. front: {
  8538. height: math.unit(6, "feet"),
  8539. weight: math.unit(165, "lbs"),
  8540. name: "Front",
  8541. image: {
  8542. source: "./media/characters/fluoresce/front.svg"
  8543. }
  8544. }
  8545. },
  8546. [
  8547. {
  8548. name: "Micro",
  8549. height: math.unit(6, "cm")
  8550. },
  8551. {
  8552. name: "Normal",
  8553. height: math.unit(5 + 7 / 12, "feet"),
  8554. default: true
  8555. },
  8556. {
  8557. name: "Macro",
  8558. height: math.unit(56, "feet")
  8559. },
  8560. {
  8561. name: "Megamacro",
  8562. height: math.unit(1.9, "miles")
  8563. },
  8564. ]
  8565. ))
  8566. characterMakers.push(() => makeCharacter(
  8567. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8568. {
  8569. front: {
  8570. height: math.unit(9 + 6 / 12, "feet"),
  8571. weight: math.unit(523, "lbs"),
  8572. name: "Side",
  8573. image: {
  8574. source: "./media/characters/aurora/side.svg",
  8575. extra: 474/393,
  8576. bottom: 5/479
  8577. }
  8578. }
  8579. },
  8580. [
  8581. {
  8582. name: "Normal",
  8583. height: math.unit(9 + 6 / 12, "feet")
  8584. },
  8585. {
  8586. name: "Macro",
  8587. height: math.unit(96, "feet"),
  8588. default: true
  8589. },
  8590. {
  8591. name: "Macro+",
  8592. height: math.unit(243, "feet")
  8593. },
  8594. ]
  8595. ))
  8596. characterMakers.push(() => makeCharacter(
  8597. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8598. {
  8599. front: {
  8600. height: math.unit(194, "cm"),
  8601. weight: math.unit(90, "kg"),
  8602. name: "Front",
  8603. image: {
  8604. source: "./media/characters/ranek/front.svg",
  8605. extra: 1862/1791,
  8606. bottom: 80/1942
  8607. }
  8608. },
  8609. back: {
  8610. height: math.unit(194, "cm"),
  8611. weight: math.unit(90, "kg"),
  8612. name: "Back",
  8613. image: {
  8614. source: "./media/characters/ranek/back.svg",
  8615. extra: 1853/1787,
  8616. bottom: 74/1927
  8617. }
  8618. },
  8619. feral: {
  8620. height: math.unit(30, "cm"),
  8621. weight: math.unit(1.6, "lbs"),
  8622. name: "Feral",
  8623. image: {
  8624. source: "./media/characters/ranek/feral.svg",
  8625. extra: 990/631,
  8626. bottom: 29/1019
  8627. }
  8628. },
  8629. },
  8630. [
  8631. {
  8632. name: "Normal",
  8633. height: math.unit(194, "cm"),
  8634. default: true
  8635. },
  8636. {
  8637. name: "Macro",
  8638. height: math.unit(100, "meters")
  8639. },
  8640. ]
  8641. ))
  8642. characterMakers.push(() => makeCharacter(
  8643. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8644. {
  8645. front: {
  8646. height: math.unit(5 + 6 / 12, "feet"),
  8647. weight: math.unit(153, "lbs"),
  8648. name: "Front",
  8649. image: {
  8650. source: "./media/characters/andrew-cooper/front.svg"
  8651. }
  8652. },
  8653. },
  8654. [
  8655. {
  8656. name: "Nano",
  8657. height: math.unit(1, "mm")
  8658. },
  8659. {
  8660. name: "Micro",
  8661. height: math.unit(2, "inches")
  8662. },
  8663. {
  8664. name: "Normal",
  8665. height: math.unit(5 + 6 / 12, "feet"),
  8666. default: true
  8667. }
  8668. ]
  8669. ))
  8670. characterMakers.push(() => makeCharacter(
  8671. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8672. {
  8673. front: {
  8674. height: math.unit(6, "feet"),
  8675. weight: math.unit(180, "lbs"),
  8676. name: "Front",
  8677. image: {
  8678. source: "./media/characters/akane-sato/front.svg",
  8679. extra: 1219 / 1140
  8680. }
  8681. },
  8682. back: {
  8683. height: math.unit(6, "feet"),
  8684. weight: math.unit(180, "lbs"),
  8685. name: "Back",
  8686. image: {
  8687. source: "./media/characters/akane-sato/back.svg",
  8688. extra: 1219 / 1170
  8689. }
  8690. },
  8691. },
  8692. [
  8693. {
  8694. name: "Normal",
  8695. height: math.unit(2.5, "meters")
  8696. },
  8697. {
  8698. name: "Macro",
  8699. height: math.unit(250, "meters"),
  8700. default: true
  8701. },
  8702. {
  8703. name: "Megamacro",
  8704. height: math.unit(25, "km")
  8705. },
  8706. ]
  8707. ))
  8708. characterMakers.push(() => makeCharacter(
  8709. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8710. {
  8711. front: {
  8712. height: math.unit(6, "feet"),
  8713. weight: math.unit(65, "kg"),
  8714. name: "Front",
  8715. image: {
  8716. source: "./media/characters/rook/front.svg",
  8717. extra: 960 / 950
  8718. }
  8719. }
  8720. },
  8721. [
  8722. {
  8723. name: "Normal",
  8724. height: math.unit(8.8, "feet")
  8725. },
  8726. {
  8727. name: "Macro",
  8728. height: math.unit(88, "feet"),
  8729. default: true
  8730. },
  8731. {
  8732. name: "Megamacro",
  8733. height: math.unit(8, "miles")
  8734. },
  8735. ]
  8736. ))
  8737. characterMakers.push(() => makeCharacter(
  8738. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8739. {
  8740. front: {
  8741. height: math.unit(12 + 2 / 12, "feet"),
  8742. weight: math.unit(808, "lbs"),
  8743. name: "Front",
  8744. image: {
  8745. source: "./media/characters/prodigy/front.svg"
  8746. }
  8747. }
  8748. },
  8749. [
  8750. {
  8751. name: "Normal",
  8752. height: math.unit(12 + 2 / 12, "feet"),
  8753. default: true
  8754. },
  8755. {
  8756. name: "Macro",
  8757. height: math.unit(143, "feet")
  8758. },
  8759. {
  8760. name: "Macro+",
  8761. height: math.unit(400, "feet")
  8762. },
  8763. ]
  8764. ))
  8765. characterMakers.push(() => makeCharacter(
  8766. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8767. {
  8768. front: {
  8769. height: math.unit(6, "feet"),
  8770. weight: math.unit(225, "lbs"),
  8771. name: "Front",
  8772. image: {
  8773. source: "./media/characters/daniel/front.svg"
  8774. }
  8775. },
  8776. leaning: {
  8777. height: math.unit(6, "feet"),
  8778. weight: math.unit(225, "lbs"),
  8779. name: "Leaning",
  8780. image: {
  8781. source: "./media/characters/daniel/leaning.svg"
  8782. }
  8783. },
  8784. },
  8785. [
  8786. {
  8787. name: "Macro",
  8788. height: math.unit(1000, "feet"),
  8789. default: true
  8790. },
  8791. ]
  8792. ))
  8793. characterMakers.push(() => makeCharacter(
  8794. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8795. {
  8796. front: {
  8797. height: math.unit(6, "feet"),
  8798. weight: math.unit(88, "lbs"),
  8799. name: "Front",
  8800. image: {
  8801. source: "./media/characters/chiros/front.svg",
  8802. extra: 306 / 226
  8803. }
  8804. },
  8805. side: {
  8806. height: math.unit(6, "feet"),
  8807. weight: math.unit(88, "lbs"),
  8808. name: "Side",
  8809. image: {
  8810. source: "./media/characters/chiros/side.svg",
  8811. extra: 306 / 226
  8812. }
  8813. },
  8814. },
  8815. [
  8816. {
  8817. name: "Normal",
  8818. height: math.unit(6, "cm"),
  8819. default: true
  8820. },
  8821. ]
  8822. ))
  8823. characterMakers.push(() => makeCharacter(
  8824. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8825. {
  8826. front: {
  8827. height: math.unit(6, "feet"),
  8828. weight: math.unit(100, "lbs"),
  8829. name: "Front",
  8830. image: {
  8831. source: "./media/characters/selka/front.svg",
  8832. extra: 947 / 887
  8833. }
  8834. }
  8835. },
  8836. [
  8837. {
  8838. name: "Normal",
  8839. height: math.unit(5, "cm"),
  8840. default: true
  8841. },
  8842. ]
  8843. ))
  8844. characterMakers.push(() => makeCharacter(
  8845. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8846. {
  8847. front: {
  8848. height: math.unit(8 + 3 / 12, "feet"),
  8849. weight: math.unit(424, "lbs"),
  8850. name: "Front",
  8851. image: {
  8852. source: "./media/characters/verin/front.svg",
  8853. extra: 1845 / 1550
  8854. }
  8855. },
  8856. frontArmored: {
  8857. height: math.unit(8 + 3 / 12, "feet"),
  8858. weight: math.unit(424, "lbs"),
  8859. name: "Front (Armored)",
  8860. image: {
  8861. source: "./media/characters/verin/front-armor.svg",
  8862. extra: 1845 / 1550,
  8863. bottom: 0.01
  8864. }
  8865. },
  8866. back: {
  8867. height: math.unit(8 + 3 / 12, "feet"),
  8868. weight: math.unit(424, "lbs"),
  8869. name: "Back",
  8870. image: {
  8871. source: "./media/characters/verin/back.svg",
  8872. bottom: 0.1,
  8873. extra: 1
  8874. }
  8875. },
  8876. foot: {
  8877. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8878. name: "Foot",
  8879. image: {
  8880. source: "./media/characters/verin/foot.svg"
  8881. }
  8882. },
  8883. },
  8884. [
  8885. {
  8886. name: "Normal",
  8887. height: math.unit(8 + 3 / 12, "feet")
  8888. },
  8889. {
  8890. name: "Minimacro",
  8891. height: math.unit(21, "feet"),
  8892. default: true
  8893. },
  8894. {
  8895. name: "Macro",
  8896. height: math.unit(626, "feet")
  8897. },
  8898. ]
  8899. ))
  8900. characterMakers.push(() => makeCharacter(
  8901. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8902. {
  8903. front: {
  8904. height: math.unit(2.718, "meters"),
  8905. weight: math.unit(150, "lbs"),
  8906. name: "Front",
  8907. image: {
  8908. source: "./media/characters/sovrim-terraquian/front.svg",
  8909. extra: 1752/1689,
  8910. bottom: 36/1788
  8911. }
  8912. },
  8913. back: {
  8914. height: math.unit(2.718, "meters"),
  8915. weight: math.unit(150, "lbs"),
  8916. name: "Back",
  8917. image: {
  8918. source: "./media/characters/sovrim-terraquian/back.svg",
  8919. extra: 1698/1657,
  8920. bottom: 58/1756
  8921. }
  8922. },
  8923. tongue: {
  8924. height: math.unit(2.865, "feet"),
  8925. name: "Tongue",
  8926. image: {
  8927. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8928. }
  8929. },
  8930. hand: {
  8931. height: math.unit(1.61, "feet"),
  8932. name: "Hand",
  8933. image: {
  8934. source: "./media/characters/sovrim-terraquian/hand.svg"
  8935. }
  8936. },
  8937. foot: {
  8938. height: math.unit(1.05, "feet"),
  8939. name: "Foot",
  8940. image: {
  8941. source: "./media/characters/sovrim-terraquian/foot.svg"
  8942. }
  8943. },
  8944. footAlt: {
  8945. height: math.unit(0.88, "feet"),
  8946. name: "Foot (Alt)",
  8947. image: {
  8948. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8949. }
  8950. },
  8951. },
  8952. [
  8953. {
  8954. name: "Micro",
  8955. height: math.unit(2, "inches")
  8956. },
  8957. {
  8958. name: "Small",
  8959. height: math.unit(1, "meter")
  8960. },
  8961. {
  8962. name: "Normal",
  8963. height: math.unit(Math.E, "meters"),
  8964. default: true
  8965. },
  8966. {
  8967. name: "Macro",
  8968. height: math.unit(20, "meters")
  8969. },
  8970. {
  8971. name: "Macro+",
  8972. height: math.unit(400, "meters")
  8973. },
  8974. ]
  8975. ))
  8976. characterMakers.push(() => makeCharacter(
  8977. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8978. {
  8979. front: {
  8980. height: math.unit(7, "feet"),
  8981. weight: math.unit(489, "lbs"),
  8982. name: "Front",
  8983. image: {
  8984. source: "./media/characters/reece-silvermane/front.svg",
  8985. bottom: 0.02,
  8986. extra: 1
  8987. }
  8988. },
  8989. },
  8990. [
  8991. {
  8992. name: "Macro",
  8993. height: math.unit(1.5, "miles"),
  8994. default: true
  8995. },
  8996. ]
  8997. ))
  8998. characterMakers.push(() => makeCharacter(
  8999. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9000. {
  9001. front: {
  9002. height: math.unit(6, "feet"),
  9003. weight: math.unit(78, "kg"),
  9004. name: "Front",
  9005. image: {
  9006. source: "./media/characters/kane/front.svg",
  9007. extra: 978 / 899
  9008. }
  9009. },
  9010. },
  9011. [
  9012. {
  9013. name: "Normal",
  9014. height: math.unit(2.1, "m"),
  9015. },
  9016. {
  9017. name: "Macro",
  9018. height: math.unit(1, "km"),
  9019. default: true
  9020. },
  9021. ]
  9022. ))
  9023. characterMakers.push(() => makeCharacter(
  9024. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9025. {
  9026. front: {
  9027. height: math.unit(6, "feet"),
  9028. weight: math.unit(200, "kg"),
  9029. name: "Front",
  9030. image: {
  9031. source: "./media/characters/tegon/front.svg",
  9032. bottom: 0.01,
  9033. extra: 1
  9034. }
  9035. },
  9036. },
  9037. [
  9038. {
  9039. name: "Micro",
  9040. height: math.unit(1, "inch")
  9041. },
  9042. {
  9043. name: "Normal",
  9044. height: math.unit(6 + 3 / 12, "feet"),
  9045. default: true
  9046. },
  9047. {
  9048. name: "Macro",
  9049. height: math.unit(300, "feet")
  9050. },
  9051. {
  9052. name: "Megamacro",
  9053. height: math.unit(69, "miles")
  9054. },
  9055. ]
  9056. ))
  9057. characterMakers.push(() => makeCharacter(
  9058. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9059. {
  9060. side: {
  9061. height: math.unit(6, "feet"),
  9062. weight: math.unit(2304, "lbs"),
  9063. name: "Side",
  9064. image: {
  9065. source: "./media/characters/arcturax/side.svg",
  9066. extra: 790 / 376,
  9067. bottom: 0.01
  9068. }
  9069. },
  9070. },
  9071. [
  9072. {
  9073. name: "Micro",
  9074. height: math.unit(2, "inch")
  9075. },
  9076. {
  9077. name: "Normal",
  9078. height: math.unit(6, "feet")
  9079. },
  9080. {
  9081. name: "Macro",
  9082. height: math.unit(39, "feet"),
  9083. default: true
  9084. },
  9085. {
  9086. name: "Megamacro",
  9087. height: math.unit(7, "miles")
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9093. {
  9094. front: {
  9095. height: math.unit(6, "feet"),
  9096. weight: math.unit(50, "lbs"),
  9097. name: "Front",
  9098. image: {
  9099. source: "./media/characters/sentri/front.svg",
  9100. extra: 1750 / 1570,
  9101. bottom: 0.025
  9102. }
  9103. },
  9104. frontAlt: {
  9105. height: math.unit(6, "feet"),
  9106. weight: math.unit(50, "lbs"),
  9107. name: "Front (Alt)",
  9108. image: {
  9109. source: "./media/characters/sentri/front-alt.svg",
  9110. extra: 1750 / 1570,
  9111. bottom: 0.025
  9112. }
  9113. },
  9114. },
  9115. [
  9116. {
  9117. name: "Normal",
  9118. height: math.unit(15, "feet"),
  9119. default: true
  9120. },
  9121. {
  9122. name: "Macro",
  9123. height: math.unit(2500, "feet")
  9124. }
  9125. ]
  9126. ))
  9127. characterMakers.push(() => makeCharacter(
  9128. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9129. {
  9130. front: {
  9131. height: math.unit(5 + 8 / 12, "feet"),
  9132. weight: math.unit(130, "lbs"),
  9133. name: "Front",
  9134. image: {
  9135. source: "./media/characters/corvin/front.svg",
  9136. extra: 1803 / 1629
  9137. }
  9138. },
  9139. frontShirt: {
  9140. height: math.unit(5 + 8 / 12, "feet"),
  9141. weight: math.unit(130, "lbs"),
  9142. name: "Front (Shirt)",
  9143. image: {
  9144. source: "./media/characters/corvin/front-shirt.svg",
  9145. extra: 1803 / 1629
  9146. }
  9147. },
  9148. frontPoncho: {
  9149. height: math.unit(5 + 8 / 12, "feet"),
  9150. weight: math.unit(130, "lbs"),
  9151. name: "Front (Poncho)",
  9152. image: {
  9153. source: "./media/characters/corvin/front-poncho.svg",
  9154. extra: 1803 / 1629
  9155. }
  9156. },
  9157. side: {
  9158. height: math.unit(5 + 8 / 12, "feet"),
  9159. weight: math.unit(130, "lbs"),
  9160. name: "Side",
  9161. image: {
  9162. source: "./media/characters/corvin/side.svg",
  9163. extra: 1012 / 945
  9164. }
  9165. },
  9166. back: {
  9167. height: math.unit(5 + 8 / 12, "feet"),
  9168. weight: math.unit(130, "lbs"),
  9169. name: "Back",
  9170. image: {
  9171. source: "./media/characters/corvin/back.svg",
  9172. extra: 1803 / 1629
  9173. }
  9174. },
  9175. },
  9176. [
  9177. {
  9178. name: "Micro",
  9179. height: math.unit(3, "inches")
  9180. },
  9181. {
  9182. name: "Normal",
  9183. height: math.unit(5 + 8 / 12, "feet")
  9184. },
  9185. {
  9186. name: "Macro",
  9187. height: math.unit(300, "feet"),
  9188. default: true
  9189. },
  9190. {
  9191. name: "Megamacro",
  9192. height: math.unit(500, "miles")
  9193. }
  9194. ]
  9195. ))
  9196. characterMakers.push(() => makeCharacter(
  9197. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9198. {
  9199. front: {
  9200. height: math.unit(6, "feet"),
  9201. weight: math.unit(135, "lbs"),
  9202. name: "Front",
  9203. image: {
  9204. source: "./media/characters/q/front.svg",
  9205. extra: 854 / 752,
  9206. bottom: 0.005
  9207. }
  9208. },
  9209. back: {
  9210. height: math.unit(6, "feet"),
  9211. weight: math.unit(130, "lbs"),
  9212. name: "Back",
  9213. image: {
  9214. source: "./media/characters/q/back.svg",
  9215. extra: 854 / 752
  9216. }
  9217. },
  9218. },
  9219. [
  9220. {
  9221. name: "Macro",
  9222. height: math.unit(90, "feet"),
  9223. default: true
  9224. },
  9225. {
  9226. name: "Extra Macro",
  9227. height: math.unit(300, "feet"),
  9228. },
  9229. {
  9230. name: "BIG WALF",
  9231. height: math.unit(750, "feet"),
  9232. },
  9233. ]
  9234. ))
  9235. characterMakers.push(() => makeCharacter(
  9236. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9237. {
  9238. front: {
  9239. height: math.unit(3, "feet"),
  9240. weight: math.unit(28, "lbs"),
  9241. name: "Front",
  9242. image: {
  9243. source: "./media/characters/citrine/front.svg"
  9244. }
  9245. }
  9246. },
  9247. [
  9248. {
  9249. name: "Normal",
  9250. height: math.unit(3, "feet"),
  9251. default: true
  9252. }
  9253. ]
  9254. ))
  9255. characterMakers.push(() => makeCharacter(
  9256. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9257. {
  9258. front: {
  9259. height: math.unit(14, "feet"),
  9260. weight: math.unit(1450, "kg"),
  9261. preyCapacity: math.unit(15, "people"),
  9262. name: "Front",
  9263. image: {
  9264. source: "./media/characters/aura-starwind/front.svg",
  9265. extra: 1440/1327,
  9266. bottom: 11/1451
  9267. }
  9268. },
  9269. side: {
  9270. height: math.unit(14, "feet"),
  9271. weight: math.unit(1450, "kg"),
  9272. preyCapacity: math.unit(15, "people"),
  9273. name: "Side",
  9274. image: {
  9275. source: "./media/characters/aura-starwind/side.svg",
  9276. extra: 1654 / 1497
  9277. }
  9278. },
  9279. taur: {
  9280. height: math.unit(18, "feet"),
  9281. weight: math.unit(5500, "kg"),
  9282. preyCapacity: math.unit(50, "people"),
  9283. name: "Taur",
  9284. image: {
  9285. source: "./media/characters/aura-starwind/taur.svg",
  9286. extra: 1760 / 1650
  9287. }
  9288. },
  9289. feral: {
  9290. height: math.unit(46, "feet"),
  9291. weight: math.unit(25000, "kg"),
  9292. preyCapacity: math.unit(120, "people"),
  9293. name: "Feral",
  9294. image: {
  9295. source: "./media/characters/aura-starwind/feral.svg"
  9296. }
  9297. },
  9298. },
  9299. [
  9300. {
  9301. name: "Normal",
  9302. height: math.unit(14, "feet"),
  9303. default: true
  9304. },
  9305. {
  9306. name: "Macro",
  9307. height: math.unit(50, "meters")
  9308. },
  9309. {
  9310. name: "Megamacro",
  9311. height: math.unit(5000, "meters")
  9312. },
  9313. {
  9314. name: "Gigamacro",
  9315. height: math.unit(100000, "kilometers")
  9316. },
  9317. ]
  9318. ))
  9319. characterMakers.push(() => makeCharacter(
  9320. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9321. {
  9322. front: {
  9323. height: math.unit(2 + 7 / 12, "feet"),
  9324. weight: math.unit(32, "lbs"),
  9325. name: "Front",
  9326. image: {
  9327. source: "./media/characters/rivet/front.svg",
  9328. extra: 1716 / 1658,
  9329. bottom: 0.03
  9330. }
  9331. },
  9332. foot: {
  9333. height: math.unit(0.551, "feet"),
  9334. name: "Rivet's Foot",
  9335. image: {
  9336. source: "./media/characters/rivet/foot.svg"
  9337. },
  9338. rename: true
  9339. }
  9340. },
  9341. [
  9342. {
  9343. name: "Micro",
  9344. height: math.unit(1.5, "inches"),
  9345. },
  9346. {
  9347. name: "Normal",
  9348. height: math.unit(2 + 7 / 12, "feet"),
  9349. default: true
  9350. },
  9351. {
  9352. name: "Macro",
  9353. height: math.unit(85, "feet")
  9354. },
  9355. {
  9356. name: "Megamacro",
  9357. height: math.unit(2.2, "km")
  9358. }
  9359. ]
  9360. ))
  9361. characterMakers.push(() => makeCharacter(
  9362. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9363. {
  9364. front: {
  9365. height: math.unit(5 + 9 / 12, "feet"),
  9366. weight: math.unit(150, "lbs"),
  9367. name: "Front",
  9368. image: {
  9369. source: "./media/characters/coffee/front.svg",
  9370. extra: 946/880,
  9371. bottom: 66/1012
  9372. }
  9373. },
  9374. foot: {
  9375. height: math.unit(1.29, "feet"),
  9376. name: "Foot",
  9377. image: {
  9378. source: "./media/characters/coffee/foot.svg"
  9379. }
  9380. },
  9381. },
  9382. [
  9383. {
  9384. name: "Micro",
  9385. height: math.unit(2, "inches"),
  9386. },
  9387. {
  9388. name: "Normal",
  9389. height: math.unit(5 + 9 / 12, "feet"),
  9390. default: true
  9391. },
  9392. {
  9393. name: "Macro",
  9394. height: math.unit(800, "feet")
  9395. },
  9396. {
  9397. name: "Megamacro",
  9398. height: math.unit(25, "miles")
  9399. }
  9400. ]
  9401. ))
  9402. characterMakers.push(() => makeCharacter(
  9403. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9404. {
  9405. front: {
  9406. height: math.unit(6, "feet"),
  9407. weight: math.unit(200, "lbs"),
  9408. name: "Front",
  9409. image: {
  9410. source: "./media/characters/chari-gal/front.svg",
  9411. extra: 1568 / 1385,
  9412. bottom: 0.047
  9413. }
  9414. },
  9415. gigantamax: {
  9416. height: math.unit(6 * 16, "feet"),
  9417. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9418. name: "Gigantamax",
  9419. image: {
  9420. source: "./media/characters/chari-gal/gigantamax.svg",
  9421. extra: 1124 / 888,
  9422. bottom: 0.03
  9423. }
  9424. },
  9425. },
  9426. [
  9427. {
  9428. name: "Normal",
  9429. height: math.unit(5 + 7 / 12, "feet")
  9430. },
  9431. {
  9432. name: "Macro",
  9433. height: math.unit(200, "feet"),
  9434. default: true
  9435. }
  9436. ]
  9437. ))
  9438. characterMakers.push(() => makeCharacter(
  9439. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9440. {
  9441. front: {
  9442. height: math.unit(6, "feet"),
  9443. weight: math.unit(150, "lbs"),
  9444. name: "Front",
  9445. image: {
  9446. source: "./media/characters/nova/front.svg",
  9447. extra: 5000 / 4722,
  9448. bottom: 0.02
  9449. }
  9450. }
  9451. },
  9452. [
  9453. {
  9454. name: "Micro-",
  9455. height: math.unit(0.8, "inches")
  9456. },
  9457. {
  9458. name: "Micro",
  9459. height: math.unit(2, "inches"),
  9460. default: true
  9461. },
  9462. ]
  9463. ))
  9464. characterMakers.push(() => makeCharacter(
  9465. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9466. {
  9467. koboldFront: {
  9468. height: math.unit(3 + 1 / 12, "feet"),
  9469. weight: math.unit(21.7, "lbs"),
  9470. name: "Front",
  9471. image: {
  9472. source: "./media/characters/argent/kobold-front.svg",
  9473. extra: 1471 / 1331,
  9474. bottom: 100.8 / 1575.5
  9475. },
  9476. form: "kobold",
  9477. default: true
  9478. },
  9479. dragonFront: {
  9480. height: math.unit(75, "inches"),
  9481. name: "Front",
  9482. image: {
  9483. source: "./media/characters/argent/dragon-front.svg",
  9484. extra: 1389/1248,
  9485. bottom: 54/1443
  9486. },
  9487. form: "dragon",
  9488. },
  9489. dragonBack: {
  9490. height: math.unit(75, "inches"),
  9491. name: "Back",
  9492. image: {
  9493. source: "./media/characters/argent/dragon-back.svg",
  9494. extra: 1399/1271,
  9495. bottom: 23/1422
  9496. },
  9497. form: "dragon",
  9498. },
  9499. dragonDressed: {
  9500. height: math.unit(75, "inches"),
  9501. name: "Dressed",
  9502. image: {
  9503. source: "./media/characters/argent/dragon-dressed.svg",
  9504. extra: 1350/1215,
  9505. bottom: 26/1376
  9506. },
  9507. form: "dragon"
  9508. },
  9509. dragonHead: {
  9510. height: math.unit(23.5, "inches"),
  9511. name: "Head",
  9512. image: {
  9513. source: "./media/characters/argent/dragon-head.svg"
  9514. },
  9515. form: "dragon",
  9516. },
  9517. },
  9518. [
  9519. {
  9520. name: "Micro",
  9521. height: math.unit(2, "inches"),
  9522. form: "kobold",
  9523. },
  9524. {
  9525. name: "Normal",
  9526. height: math.unit(3 + 1 / 12, "feet"),
  9527. form: "kobold",
  9528. default: true
  9529. },
  9530. {
  9531. name: "Macro",
  9532. height: math.unit(120, "feet"),
  9533. form: "kobold",
  9534. },
  9535. {
  9536. name: "Speck",
  9537. height: math.unit(1, "mm"),
  9538. form: "dragon",
  9539. },
  9540. {
  9541. name: "Tiny",
  9542. height: math.unit(1, "cm"),
  9543. form: "dragon",
  9544. },
  9545. {
  9546. name: "Micro",
  9547. height: math.unit(5, "cm"),
  9548. form: "dragon",
  9549. },
  9550. {
  9551. name: "Normal",
  9552. height: math.unit(75, "inches"),
  9553. form: "dragon",
  9554. default: true
  9555. },
  9556. {
  9557. name: "Extra Tall",
  9558. height: math.unit(9, "feet"),
  9559. form: "dragon",
  9560. },
  9561. {
  9562. name: "Inconvenient",
  9563. height: math.unit(5, "meters"),
  9564. form: "dragon",
  9565. },
  9566. {
  9567. name: "Macro",
  9568. height: math.unit(70, "meters"),
  9569. form: "dragon",
  9570. },
  9571. {
  9572. name: "Macro+",
  9573. height: math.unit(250, "meters"),
  9574. form: "dragon",
  9575. },
  9576. {
  9577. name: "Megamacro",
  9578. height: math.unit(20, "km"),
  9579. form: "dragon",
  9580. },
  9581. {
  9582. name: "Mountainous",
  9583. height: math.unit(100, "km"),
  9584. form: "dragon",
  9585. },
  9586. {
  9587. name: "Continental",
  9588. height: math.unit(2, "megameters"),
  9589. form: "dragon",
  9590. },
  9591. {
  9592. name: "Too Big",
  9593. height: math.unit(900, "megameters"),
  9594. form: "dragon",
  9595. },
  9596. ],
  9597. {
  9598. "kobold": {
  9599. name: "Kobold",
  9600. default: true
  9601. },
  9602. "dragon": {
  9603. name: "Dragon",
  9604. },
  9605. }
  9606. ))
  9607. characterMakers.push(() => makeCharacter(
  9608. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9609. {
  9610. lamp: {
  9611. height: math.unit(7 * 1559 / 989, "feet"),
  9612. name: "Magic Lamp",
  9613. image: {
  9614. source: "./media/characters/mira-al-cul/lamp.svg",
  9615. extra: 1617 / 1559
  9616. }
  9617. },
  9618. front: {
  9619. height: math.unit(7, "feet"),
  9620. name: "Front",
  9621. image: {
  9622. source: "./media/characters/mira-al-cul/front.svg",
  9623. extra: 1044 / 990
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Heavily Restricted",
  9630. height: math.unit(7 * 1559 / 989, "feet")
  9631. },
  9632. {
  9633. name: "Freshly Freed",
  9634. height: math.unit(50 * 1559 / 989, "feet")
  9635. },
  9636. {
  9637. name: "World Encompassing",
  9638. height: math.unit(10000 * 1559 / 989, "miles")
  9639. },
  9640. {
  9641. name: "Galactic",
  9642. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9643. },
  9644. {
  9645. name: "Palmed Universe",
  9646. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9647. default: true
  9648. },
  9649. {
  9650. name: "Multiversal Matriarch",
  9651. height: math.unit(8.87e10, "yottameters")
  9652. },
  9653. {
  9654. name: "Void Mother",
  9655. height: math.unit(3.14e110, "yottaparsecs")
  9656. },
  9657. {
  9658. name: "Toying with Transcendence",
  9659. height: math.unit(1e307, "meters")
  9660. },
  9661. ]
  9662. ))
  9663. characterMakers.push(() => makeCharacter(
  9664. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9665. {
  9666. front: {
  9667. height: math.unit(17 + 1 / 12, "feet"),
  9668. weight: math.unit(476.2 * 5, "lbs"),
  9669. name: "Front",
  9670. image: {
  9671. source: "./media/characters/kuro-shi-uchū/front.svg",
  9672. extra: 2329 / 1835,
  9673. bottom: 0.02
  9674. }
  9675. },
  9676. },
  9677. [
  9678. {
  9679. name: "Micro",
  9680. height: math.unit(2, "inches")
  9681. },
  9682. {
  9683. name: "Normal",
  9684. height: math.unit(12, "meters")
  9685. },
  9686. {
  9687. name: "Planetary",
  9688. height: math.unit(0.00929, "AU"),
  9689. default: true
  9690. },
  9691. {
  9692. name: "Universal",
  9693. height: math.unit(20, "gigaparsecs")
  9694. },
  9695. ]
  9696. ))
  9697. characterMakers.push(() => makeCharacter(
  9698. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9699. {
  9700. front: {
  9701. height: math.unit(5 + 2 / 12, "feet"),
  9702. weight: math.unit(120, "lbs"),
  9703. name: "Front",
  9704. image: {
  9705. source: "./media/characters/katherine/front.svg",
  9706. extra: 2075 / 1969
  9707. }
  9708. },
  9709. dress: {
  9710. height: math.unit(5 + 2 / 12, "feet"),
  9711. weight: math.unit(120, "lbs"),
  9712. name: "Dress",
  9713. image: {
  9714. source: "./media/characters/katherine/dress.svg",
  9715. extra: 2258 / 2064
  9716. }
  9717. },
  9718. },
  9719. [
  9720. {
  9721. name: "Micro",
  9722. height: math.unit(1, "inches"),
  9723. default: true
  9724. },
  9725. {
  9726. name: "Normal",
  9727. height: math.unit(5 + 2 / 12, "feet")
  9728. },
  9729. {
  9730. name: "Macro",
  9731. height: math.unit(100, "meters")
  9732. },
  9733. {
  9734. name: "Megamacro",
  9735. height: math.unit(80, "miles")
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9741. {
  9742. front: {
  9743. height: math.unit(7 + 8 / 12, "feet"),
  9744. weight: math.unit(250, "lbs"),
  9745. name: "Front",
  9746. image: {
  9747. source: "./media/characters/yevis/front.svg",
  9748. extra: 1938 / 1755
  9749. }
  9750. }
  9751. },
  9752. [
  9753. {
  9754. name: "Mortal",
  9755. height: math.unit(7 + 8 / 12, "feet")
  9756. },
  9757. {
  9758. name: "Battle",
  9759. height: math.unit(25 + 11 / 12, "feet")
  9760. },
  9761. {
  9762. name: "Wrath",
  9763. height: math.unit(1654 + 11 / 12, "feet")
  9764. },
  9765. {
  9766. name: "Planet Destroyer",
  9767. height: math.unit(12000, "miles")
  9768. },
  9769. {
  9770. name: "Galaxy Conqueror",
  9771. height: math.unit(1.45, "zettameters"),
  9772. default: true
  9773. },
  9774. {
  9775. name: "Universal War",
  9776. height: math.unit(184, "gigaparsecs")
  9777. },
  9778. {
  9779. name: "Eternity War",
  9780. height: math.unit(1.98e55, "yottaparsecs")
  9781. },
  9782. ]
  9783. ))
  9784. characterMakers.push(() => makeCharacter(
  9785. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9786. {
  9787. front: {
  9788. height: math.unit(5 + 8 / 12, "feet"),
  9789. weight: math.unit(63, "kg"),
  9790. name: "Front",
  9791. image: {
  9792. source: "./media/characters/xavier/front.svg",
  9793. extra: 944 / 883
  9794. }
  9795. },
  9796. frontStretch: {
  9797. height: math.unit(5 + 8 / 12, "feet"),
  9798. weight: math.unit(63, "kg"),
  9799. name: "Stretching",
  9800. image: {
  9801. source: "./media/characters/xavier/front-stretch.svg",
  9802. extra: 962 / 820
  9803. }
  9804. },
  9805. },
  9806. [
  9807. {
  9808. name: "Normal",
  9809. height: math.unit(5 + 8 / 12, "feet")
  9810. },
  9811. {
  9812. name: "Macro",
  9813. height: math.unit(100, "meters"),
  9814. default: true
  9815. },
  9816. {
  9817. name: "McLargeHuge",
  9818. height: math.unit(10, "miles")
  9819. },
  9820. ]
  9821. ))
  9822. characterMakers.push(() => makeCharacter(
  9823. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9824. {
  9825. front: {
  9826. height: math.unit(5 + 5 / 12, "feet"),
  9827. weight: math.unit(150, "lb"),
  9828. name: "Front",
  9829. image: {
  9830. source: "./media/characters/joshii/front.svg",
  9831. extra: 765 / 653,
  9832. bottom: 51 / 816
  9833. }
  9834. },
  9835. foot: {
  9836. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9837. name: "Foot",
  9838. image: {
  9839. source: "./media/characters/joshii/foot.svg"
  9840. }
  9841. },
  9842. },
  9843. [
  9844. {
  9845. name: "Micro",
  9846. height: math.unit(2, "inches")
  9847. },
  9848. {
  9849. name: "Normal",
  9850. height: math.unit(5 + 5 / 12, "feet")
  9851. },
  9852. {
  9853. name: "Macro",
  9854. height: math.unit(785, "feet"),
  9855. default: true
  9856. },
  9857. {
  9858. name: "Megamacro",
  9859. height: math.unit(24.5, "miles")
  9860. },
  9861. ]
  9862. ))
  9863. characterMakers.push(() => makeCharacter(
  9864. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9865. {
  9866. front: {
  9867. height: math.unit(6, "feet"),
  9868. weight: math.unit(150, "lb"),
  9869. name: "Front",
  9870. image: {
  9871. source: "./media/characters/goddess-elizabeth/front.svg",
  9872. extra: 1800 / 1525,
  9873. bottom: 0.005
  9874. }
  9875. },
  9876. foot: {
  9877. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9878. name: "Foot",
  9879. image: {
  9880. source: "./media/characters/goddess-elizabeth/foot.svg"
  9881. }
  9882. },
  9883. mouth: {
  9884. height: math.unit(6, "feet"),
  9885. name: "Mouth",
  9886. image: {
  9887. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9888. }
  9889. },
  9890. },
  9891. [
  9892. {
  9893. name: "Micro",
  9894. height: math.unit(12, "feet")
  9895. },
  9896. {
  9897. name: "Normal",
  9898. height: math.unit(80, "miles"),
  9899. default: true
  9900. },
  9901. {
  9902. name: "Macro",
  9903. height: math.unit(15000, "parsecs")
  9904. },
  9905. ]
  9906. ))
  9907. characterMakers.push(() => makeCharacter(
  9908. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9909. {
  9910. front: {
  9911. height: math.unit(5 + 9 / 12, "feet"),
  9912. weight: math.unit(144, "lb"),
  9913. name: "Front",
  9914. image: {
  9915. source: "./media/characters/kara/front.svg"
  9916. }
  9917. },
  9918. feet: {
  9919. height: math.unit(6 / 6.765, "feet"),
  9920. name: "Kara's Feet",
  9921. rename: true,
  9922. image: {
  9923. source: "./media/characters/kara/feet.svg"
  9924. }
  9925. },
  9926. },
  9927. [
  9928. {
  9929. name: "Normal",
  9930. height: math.unit(5 + 9 / 12, "feet")
  9931. },
  9932. {
  9933. name: "Macro",
  9934. height: math.unit(174, "feet"),
  9935. default: true
  9936. },
  9937. ]
  9938. ))
  9939. characterMakers.push(() => makeCharacter(
  9940. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9941. {
  9942. front: {
  9943. height: math.unit(18, "feet"),
  9944. weight: math.unit(4050, "lb"),
  9945. name: "Front",
  9946. image: {
  9947. source: "./media/characters/tyrone/front.svg",
  9948. extra: 2405 / 2270,
  9949. bottom: 182 / 2587
  9950. }
  9951. },
  9952. },
  9953. [
  9954. {
  9955. name: "Normal",
  9956. height: math.unit(18, "feet"),
  9957. default: true
  9958. },
  9959. {
  9960. name: "Macro",
  9961. height: math.unit(300, "feet")
  9962. },
  9963. {
  9964. name: "Megamacro",
  9965. height: math.unit(15, "km")
  9966. },
  9967. {
  9968. name: "Gigamacro",
  9969. height: math.unit(500, "km")
  9970. },
  9971. {
  9972. name: "Teramacro",
  9973. height: math.unit(0.5, "gigameters")
  9974. },
  9975. {
  9976. name: "Omnimacro",
  9977. height: math.unit(1e252, "yottauniverse")
  9978. },
  9979. ]
  9980. ))
  9981. characterMakers.push(() => makeCharacter(
  9982. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9983. {
  9984. front: {
  9985. height: math.unit(7 + 8 / 12, "feet"),
  9986. weight: math.unit(120, "lb"),
  9987. name: "Front",
  9988. image: {
  9989. source: "./media/characters/danny/front.svg",
  9990. extra: 1490 / 1350
  9991. }
  9992. },
  9993. back: {
  9994. height: math.unit(7 + 8 / 12, "feet"),
  9995. weight: math.unit(120, "lb"),
  9996. name: "Back",
  9997. image: {
  9998. source: "./media/characters/danny/back.svg",
  9999. extra: 1490 / 1350
  10000. }
  10001. },
  10002. },
  10003. [
  10004. {
  10005. name: "Normal",
  10006. height: math.unit(7 + 8 / 12, "feet"),
  10007. default: true
  10008. },
  10009. ]
  10010. ))
  10011. characterMakers.push(() => makeCharacter(
  10012. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10013. {
  10014. front: {
  10015. height: math.unit(3.5, "inches"),
  10016. weight: math.unit(19, "grams"),
  10017. name: "Front",
  10018. image: {
  10019. source: "./media/characters/mallow/front.svg",
  10020. extra: 471 / 431
  10021. }
  10022. },
  10023. back: {
  10024. height: math.unit(3.5, "inches"),
  10025. weight: math.unit(19, "grams"),
  10026. name: "Back",
  10027. image: {
  10028. source: "./media/characters/mallow/back.svg",
  10029. extra: 471 / 431
  10030. }
  10031. },
  10032. },
  10033. [
  10034. {
  10035. name: "Normal",
  10036. height: math.unit(3.5, "inches"),
  10037. default: true
  10038. },
  10039. ]
  10040. ))
  10041. characterMakers.push(() => makeCharacter(
  10042. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10043. {
  10044. front: {
  10045. height: math.unit(9, "feet"),
  10046. weight: math.unit(230, "kg"),
  10047. name: "Front",
  10048. image: {
  10049. source: "./media/characters/starry-aqua/front.svg"
  10050. }
  10051. },
  10052. back: {
  10053. height: math.unit(9, "feet"),
  10054. weight: math.unit(230, "kg"),
  10055. name: "Back",
  10056. image: {
  10057. source: "./media/characters/starry-aqua/back.svg"
  10058. }
  10059. },
  10060. hand: {
  10061. height: math.unit(9 * 0.1168, "feet"),
  10062. name: "Hand",
  10063. image: {
  10064. source: "./media/characters/starry-aqua/hand.svg"
  10065. }
  10066. },
  10067. foot: {
  10068. height: math.unit(9 * 0.18, "feet"),
  10069. name: "Foot",
  10070. image: {
  10071. source: "./media/characters/starry-aqua/foot.svg"
  10072. }
  10073. }
  10074. },
  10075. [
  10076. {
  10077. name: "Micro",
  10078. height: math.unit(3, "inches")
  10079. },
  10080. {
  10081. name: "Normal",
  10082. height: math.unit(9, "feet")
  10083. },
  10084. {
  10085. name: "Macro",
  10086. height: math.unit(300, "feet"),
  10087. default: true
  10088. },
  10089. {
  10090. name: "Megamacro",
  10091. height: math.unit(3200, "feet")
  10092. }
  10093. ]
  10094. ))
  10095. characterMakers.push(() => makeCharacter(
  10096. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10097. {
  10098. front: {
  10099. height: math.unit(15, "feet"),
  10100. weight: math.unit(5026, "lb"),
  10101. name: "Front",
  10102. image: {
  10103. source: "./media/characters/luka-towers/front.svg",
  10104. extra: 1269/1133,
  10105. bottom: 51/1320
  10106. }
  10107. },
  10108. },
  10109. [
  10110. {
  10111. name: "Normal",
  10112. height: math.unit(15, "feet"),
  10113. default: true
  10114. },
  10115. {
  10116. name: "Minimacro",
  10117. height: math.unit(25, "feet")
  10118. },
  10119. {
  10120. name: "Macro",
  10121. height: math.unit(320, "feet")
  10122. },
  10123. {
  10124. name: "Megamacro",
  10125. height: math.unit(35000, "feet")
  10126. },
  10127. {
  10128. name: "Gigamacro",
  10129. height: math.unit(4000, "miles")
  10130. },
  10131. {
  10132. name: "Teramacro",
  10133. height: math.unit(15000, "miles")
  10134. },
  10135. ]
  10136. ))
  10137. characterMakers.push(() => makeCharacter(
  10138. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10139. {
  10140. front: {
  10141. height: math.unit(6, "feet"),
  10142. weight: math.unit(150, "lb"),
  10143. name: "Front",
  10144. image: {
  10145. source: "./media/characters/natalie-nightring/front.svg",
  10146. extra: 1,
  10147. bottom: 0.06
  10148. }
  10149. },
  10150. },
  10151. [
  10152. {
  10153. name: "Uh Oh",
  10154. height: math.unit(0.1, "mm")
  10155. },
  10156. {
  10157. name: "Small",
  10158. height: math.unit(3, "inches")
  10159. },
  10160. {
  10161. name: "Human Scale",
  10162. height: math.unit(6, "feet")
  10163. },
  10164. {
  10165. name: "Librarian",
  10166. height: math.unit(50, "feet"),
  10167. default: true
  10168. },
  10169. {
  10170. name: "Immense",
  10171. height: math.unit(200, "miles")
  10172. },
  10173. ]
  10174. ))
  10175. characterMakers.push(() => makeCharacter(
  10176. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10177. {
  10178. front: {
  10179. height: math.unit(6, "feet"),
  10180. weight: math.unit(180, "lbs"),
  10181. name: "Front",
  10182. image: {
  10183. source: "./media/characters/danni-rosie/front.svg",
  10184. extra: 1260 / 1128,
  10185. bottom: 0.022
  10186. }
  10187. },
  10188. },
  10189. [
  10190. {
  10191. name: "Micro",
  10192. height: math.unit(2, "inches"),
  10193. default: true
  10194. },
  10195. ]
  10196. ))
  10197. characterMakers.push(() => makeCharacter(
  10198. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10199. {
  10200. front: {
  10201. height: math.unit(5 + 9 / 12, "feet"),
  10202. weight: math.unit(220, "lb"),
  10203. name: "Front",
  10204. image: {
  10205. source: "./media/characters/samantha-kruse/front.svg",
  10206. extra: (985 / 935),
  10207. bottom: 0.03
  10208. }
  10209. },
  10210. frontUndressed: {
  10211. height: math.unit(5 + 9 / 12, "feet"),
  10212. weight: math.unit(220, "lb"),
  10213. name: "Front (Undressed)",
  10214. image: {
  10215. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10216. extra: (973 / 923),
  10217. bottom: 0.025
  10218. }
  10219. },
  10220. fat: {
  10221. height: math.unit(5 + 9 / 12, "feet"),
  10222. weight: math.unit(900, "lb"),
  10223. name: "Front (Fat)",
  10224. image: {
  10225. source: "./media/characters/samantha-kruse/fat.svg",
  10226. extra: 2688 / 2561
  10227. }
  10228. },
  10229. },
  10230. [
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(5 + 9 / 12, "feet"),
  10234. default: true
  10235. }
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10240. {
  10241. back: {
  10242. height: math.unit(5 + 4 / 12, "feet"),
  10243. weight: math.unit(4963, "lb"),
  10244. name: "Back",
  10245. image: {
  10246. source: "./media/characters/amelia-rosie/back.svg",
  10247. extra: 1113 / 963,
  10248. bottom: 0.01
  10249. }
  10250. },
  10251. },
  10252. [
  10253. {
  10254. name: "Level 0",
  10255. height: math.unit(5 + 4 / 12, "feet")
  10256. },
  10257. {
  10258. name: "Level 1",
  10259. height: math.unit(164597, "feet"),
  10260. default: true
  10261. },
  10262. {
  10263. name: "Level 2",
  10264. height: math.unit(956243, "miles")
  10265. },
  10266. {
  10267. name: "Level 3",
  10268. height: math.unit(29421709423, "miles")
  10269. },
  10270. {
  10271. name: "Level 4",
  10272. height: math.unit(154, "lightyears")
  10273. },
  10274. {
  10275. name: "Level 5",
  10276. height: math.unit(4738272, "lightyears")
  10277. },
  10278. {
  10279. name: "Level 6",
  10280. height: math.unit(145787152896, "lightyears")
  10281. },
  10282. ]
  10283. ))
  10284. characterMakers.push(() => makeCharacter(
  10285. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10286. {
  10287. front: {
  10288. height: math.unit(5 + 11 / 12, "feet"),
  10289. weight: math.unit(65, "kg"),
  10290. name: "Front",
  10291. image: {
  10292. source: "./media/characters/rook-kitara/front.svg",
  10293. extra: 1347 / 1274,
  10294. bottom: 0.005
  10295. }
  10296. },
  10297. },
  10298. [
  10299. {
  10300. name: "Totally Unfair",
  10301. height: math.unit(1.8, "mm")
  10302. },
  10303. {
  10304. name: "Lap Rookie",
  10305. height: math.unit(1.4, "feet")
  10306. },
  10307. {
  10308. name: "Normal",
  10309. height: math.unit(5 + 11 / 12, "feet"),
  10310. default: true
  10311. },
  10312. {
  10313. name: "How Did This Happen",
  10314. height: math.unit(80, "miles")
  10315. }
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10320. {
  10321. front: {
  10322. height: math.unit(7, "feet"),
  10323. weight: math.unit(300, "lb"),
  10324. name: "Front",
  10325. image: {
  10326. source: "./media/characters/pisces/front.svg",
  10327. extra: 2255 / 2115,
  10328. bottom: 0.03
  10329. }
  10330. },
  10331. back: {
  10332. height: math.unit(7, "feet"),
  10333. weight: math.unit(300, "lb"),
  10334. name: "Back",
  10335. image: {
  10336. source: "./media/characters/pisces/back.svg",
  10337. extra: 2146 / 2055,
  10338. bottom: 0.04
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Normal",
  10345. height: math.unit(7, "feet"),
  10346. default: true
  10347. },
  10348. {
  10349. name: "Swimming Pool",
  10350. height: math.unit(12.2, "meters")
  10351. },
  10352. {
  10353. name: "Olympic Swimming Pool",
  10354. height: math.unit(56.3, "meters")
  10355. },
  10356. {
  10357. name: "Lake Superior",
  10358. height: math.unit(93900, "meters")
  10359. },
  10360. {
  10361. name: "Mediterranean Sea",
  10362. height: math.unit(644457, "meters")
  10363. },
  10364. {
  10365. name: "World's Oceans",
  10366. height: math.unit(4567491, "meters")
  10367. },
  10368. ]
  10369. ))
  10370. characterMakers.push(() => makeCharacter(
  10371. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10372. {
  10373. front: {
  10374. height: math.unit(2.3, "meters"),
  10375. weight: math.unit(120, "kg"),
  10376. name: "Front",
  10377. image: {
  10378. source: "./media/characters/zelas/front.svg"
  10379. }
  10380. },
  10381. side: {
  10382. height: math.unit(2.3, "meters"),
  10383. weight: math.unit(120, "kg"),
  10384. name: "Side",
  10385. image: {
  10386. source: "./media/characters/zelas/side.svg"
  10387. }
  10388. },
  10389. back: {
  10390. height: math.unit(2.3, "meters"),
  10391. weight: math.unit(120, "kg"),
  10392. name: "Back",
  10393. image: {
  10394. source: "./media/characters/zelas/back.svg"
  10395. }
  10396. },
  10397. foot: {
  10398. height: math.unit(1.116, "feet"),
  10399. name: "Foot",
  10400. image: {
  10401. source: "./media/characters/zelas/foot.svg"
  10402. }
  10403. },
  10404. },
  10405. [
  10406. {
  10407. name: "Normal",
  10408. height: math.unit(2.3, "meters")
  10409. },
  10410. {
  10411. name: "Macro",
  10412. height: math.unit(30, "meters"),
  10413. default: true
  10414. },
  10415. ]
  10416. ))
  10417. characterMakers.push(() => makeCharacter(
  10418. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10419. {
  10420. front: {
  10421. height: math.unit(1, "inch"),
  10422. weight: math.unit(0.21, "grams"),
  10423. name: "Front",
  10424. image: {
  10425. source: "./media/characters/talbot/front.svg",
  10426. extra: 594 / 544
  10427. }
  10428. },
  10429. },
  10430. [
  10431. {
  10432. name: "Micro",
  10433. height: math.unit(1, "inch"),
  10434. default: true
  10435. },
  10436. ]
  10437. ))
  10438. characterMakers.push(() => makeCharacter(
  10439. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10440. {
  10441. front: {
  10442. height: math.unit(3 + 3 / 12, "feet"),
  10443. weight: math.unit(51.8, "lb"),
  10444. name: "Front",
  10445. image: {
  10446. source: "./media/characters/fliss/front.svg",
  10447. extra: 840 / 640
  10448. }
  10449. },
  10450. },
  10451. [
  10452. {
  10453. name: "Teeny Tiny",
  10454. height: math.unit(1, "mm")
  10455. },
  10456. {
  10457. name: "Small",
  10458. height: math.unit(1, "inch"),
  10459. default: true
  10460. },
  10461. {
  10462. name: "Standard Sylveon",
  10463. height: math.unit(3 + 3 / 12, "feet")
  10464. },
  10465. {
  10466. name: "Large Nuisance",
  10467. height: math.unit(33, "feet")
  10468. },
  10469. {
  10470. name: "City Filler",
  10471. height: math.unit(3000, "feet")
  10472. },
  10473. {
  10474. name: "New Horizon",
  10475. height: math.unit(6000, "miles")
  10476. },
  10477. ]
  10478. ))
  10479. characterMakers.push(() => makeCharacter(
  10480. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10481. {
  10482. front: {
  10483. height: math.unit(5, "cm"),
  10484. weight: math.unit(1.94, "g"),
  10485. name: "Front",
  10486. image: {
  10487. source: "./media/characters/fleta/front.svg",
  10488. extra: 835 / 803
  10489. }
  10490. },
  10491. back: {
  10492. height: math.unit(5, "cm"),
  10493. weight: math.unit(1.94, "g"),
  10494. name: "Back",
  10495. image: {
  10496. source: "./media/characters/fleta/back.svg",
  10497. extra: 835 / 803
  10498. }
  10499. },
  10500. },
  10501. [
  10502. {
  10503. name: "Micro",
  10504. height: math.unit(5, "cm"),
  10505. default: true
  10506. },
  10507. ]
  10508. ))
  10509. characterMakers.push(() => makeCharacter(
  10510. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10511. {
  10512. front: {
  10513. height: math.unit(6, "feet"),
  10514. weight: math.unit(225, "lb"),
  10515. name: "Front",
  10516. image: {
  10517. source: "./media/characters/dominic/front.svg",
  10518. extra: 1770 / 1620,
  10519. bottom: 0.025
  10520. }
  10521. },
  10522. back: {
  10523. height: math.unit(6, "feet"),
  10524. weight: math.unit(225, "lb"),
  10525. name: "Back",
  10526. image: {
  10527. source: "./media/characters/dominic/back.svg",
  10528. extra: 1745 / 1620,
  10529. bottom: 0.065
  10530. }
  10531. },
  10532. },
  10533. [
  10534. {
  10535. name: "Nano",
  10536. height: math.unit(0.1, "mm")
  10537. },
  10538. {
  10539. name: "Micro-",
  10540. height: math.unit(1, "mm")
  10541. },
  10542. {
  10543. name: "Micro",
  10544. height: math.unit(4, "inches")
  10545. },
  10546. {
  10547. name: "Normal",
  10548. height: math.unit(6 + 4 / 12, "feet"),
  10549. default: true
  10550. },
  10551. {
  10552. name: "Macro",
  10553. height: math.unit(115, "feet")
  10554. },
  10555. {
  10556. name: "Macro+",
  10557. height: math.unit(955, "feet")
  10558. },
  10559. {
  10560. name: "Megamacro",
  10561. height: math.unit(8990, "feet")
  10562. },
  10563. {
  10564. name: "Gigmacro",
  10565. height: math.unit(9310, "miles")
  10566. },
  10567. {
  10568. name: "Teramacro",
  10569. height: math.unit(1567005010, "miles")
  10570. },
  10571. {
  10572. name: "Examacro",
  10573. height: math.unit(1425, "parsecs")
  10574. },
  10575. ]
  10576. ))
  10577. characterMakers.push(() => makeCharacter(
  10578. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10579. {
  10580. front: {
  10581. height: math.unit(400, "feet"),
  10582. weight: math.unit(44444444, "lb"),
  10583. name: "Front",
  10584. image: {
  10585. source: "./media/characters/major-colonel/front.svg"
  10586. }
  10587. },
  10588. back: {
  10589. height: math.unit(400, "feet"),
  10590. weight: math.unit(44444444, "lb"),
  10591. name: "Back",
  10592. image: {
  10593. source: "./media/characters/major-colonel/back.svg"
  10594. }
  10595. },
  10596. },
  10597. [
  10598. {
  10599. name: "Macro",
  10600. height: math.unit(400, "feet"),
  10601. default: true
  10602. },
  10603. ]
  10604. ))
  10605. characterMakers.push(() => makeCharacter(
  10606. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10607. {
  10608. catFront: {
  10609. height: math.unit(6, "feet"),
  10610. weight: math.unit(120, "lb"),
  10611. name: "Front (Cat Side)",
  10612. image: {
  10613. source: "./media/characters/axel-lycan/cat-front.svg",
  10614. extra: 430 / 402,
  10615. bottom: 43 / 472.35
  10616. }
  10617. },
  10618. catBack: {
  10619. height: math.unit(6, "feet"),
  10620. weight: math.unit(120, "lb"),
  10621. name: "Back (Cat Side)",
  10622. image: {
  10623. source: "./media/characters/axel-lycan/cat-back.svg",
  10624. extra: 447 / 419,
  10625. bottom: 23.3 / 469
  10626. }
  10627. },
  10628. wolfFront: {
  10629. height: math.unit(6, "feet"),
  10630. weight: math.unit(120, "lb"),
  10631. name: "Front (Wolf Side)",
  10632. image: {
  10633. source: "./media/characters/axel-lycan/wolf-front.svg",
  10634. extra: 485 / 456,
  10635. bottom: 19 / 504
  10636. }
  10637. },
  10638. wolfBack: {
  10639. height: math.unit(6, "feet"),
  10640. weight: math.unit(120, "lb"),
  10641. name: "Back (Wolf Side)",
  10642. image: {
  10643. source: "./media/characters/axel-lycan/wolf-back.svg",
  10644. extra: 475 / 438,
  10645. bottom: 39.2 / 514
  10646. }
  10647. },
  10648. },
  10649. [
  10650. {
  10651. name: "Macro",
  10652. height: math.unit(1, "km"),
  10653. default: true
  10654. },
  10655. ]
  10656. ))
  10657. characterMakers.push(() => makeCharacter(
  10658. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10659. {
  10660. front: {
  10661. height: math.unit(5 + 9 / 12, "feet"),
  10662. weight: math.unit(175, "lb"),
  10663. name: "Front",
  10664. image: {
  10665. source: "./media/characters/vanrel-hyena/front.svg",
  10666. extra: 1086 / 1010,
  10667. bottom: 0.04
  10668. }
  10669. },
  10670. },
  10671. [
  10672. {
  10673. name: "Normal",
  10674. height: math.unit(5 + 9 / 12, "feet"),
  10675. default: true
  10676. },
  10677. ]
  10678. ))
  10679. characterMakers.push(() => makeCharacter(
  10680. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10681. {
  10682. front: {
  10683. height: math.unit(6, "feet"),
  10684. weight: math.unit(103, "lb"),
  10685. name: "Front",
  10686. image: {
  10687. source: "./media/characters/abbott-absol/front.svg",
  10688. extra: 2010 / 1842
  10689. }
  10690. },
  10691. },
  10692. [
  10693. {
  10694. name: "Megamicro",
  10695. height: math.unit(0.1, "mm")
  10696. },
  10697. {
  10698. name: "Micro",
  10699. height: math.unit(1, "inch")
  10700. },
  10701. {
  10702. name: "Normal",
  10703. height: math.unit(6, "feet"),
  10704. default: true
  10705. },
  10706. ]
  10707. ))
  10708. characterMakers.push(() => makeCharacter(
  10709. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10710. {
  10711. front: {
  10712. height: math.unit(6, "feet"),
  10713. weight: math.unit(264, "lb"),
  10714. name: "Front",
  10715. image: {
  10716. source: "./media/characters/hector/front.svg",
  10717. extra: 2280 / 2130,
  10718. bottom: 0.07
  10719. }
  10720. },
  10721. },
  10722. [
  10723. {
  10724. name: "Normal",
  10725. height: math.unit(12.25, "foot"),
  10726. default: true
  10727. },
  10728. {
  10729. name: "Macro",
  10730. height: math.unit(160, "feet")
  10731. },
  10732. ]
  10733. ))
  10734. characterMakers.push(() => makeCharacter(
  10735. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10736. {
  10737. front: {
  10738. height: math.unit(6, "feet"),
  10739. weight: math.unit(150, "lb"),
  10740. name: "Front",
  10741. image: {
  10742. source: "./media/characters/sal/front.svg",
  10743. extra: 1846 / 1699,
  10744. bottom: 0.04
  10745. }
  10746. },
  10747. },
  10748. [
  10749. {
  10750. name: "Megamacro",
  10751. height: math.unit(10, "miles"),
  10752. default: true
  10753. },
  10754. ]
  10755. ))
  10756. characterMakers.push(() => makeCharacter(
  10757. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10758. {
  10759. front: {
  10760. height: math.unit(3, "meters"),
  10761. weight: math.unit(450, "kg"),
  10762. name: "front",
  10763. image: {
  10764. source: "./media/characters/ranger/front.svg",
  10765. extra: 2401 / 2243,
  10766. bottom: 0.05
  10767. }
  10768. },
  10769. },
  10770. [
  10771. {
  10772. name: "Normal",
  10773. height: math.unit(3, "meters"),
  10774. default: true
  10775. },
  10776. ]
  10777. ))
  10778. characterMakers.push(() => makeCharacter(
  10779. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10780. {
  10781. front: {
  10782. height: math.unit(14, "feet"),
  10783. weight: math.unit(800, "kg"),
  10784. name: "Front",
  10785. image: {
  10786. source: "./media/characters/theresa/front.svg",
  10787. extra: 3575 / 3346,
  10788. bottom: 0.03
  10789. }
  10790. },
  10791. },
  10792. [
  10793. {
  10794. name: "Normal",
  10795. height: math.unit(14, "feet"),
  10796. default: true
  10797. },
  10798. ]
  10799. ))
  10800. characterMakers.push(() => makeCharacter(
  10801. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10802. {
  10803. front: {
  10804. height: math.unit(6, "feet"),
  10805. weight: math.unit(3, "kg"),
  10806. name: "Front",
  10807. image: {
  10808. source: "./media/characters/ine/front.svg",
  10809. extra: 678 / 539,
  10810. bottom: 0.023
  10811. }
  10812. },
  10813. },
  10814. [
  10815. {
  10816. name: "Normal",
  10817. height: math.unit(2.265, "feet"),
  10818. default: true
  10819. },
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10824. {
  10825. front: {
  10826. height: math.unit(5, "feet"),
  10827. weight: math.unit(30, "kg"),
  10828. name: "Front",
  10829. image: {
  10830. source: "./media/characters/vial/front.svg",
  10831. extra: 1365 / 1277,
  10832. bottom: 0.04
  10833. }
  10834. },
  10835. },
  10836. [
  10837. {
  10838. name: "Normal",
  10839. height: math.unit(5, "feet"),
  10840. default: true
  10841. },
  10842. ]
  10843. ))
  10844. characterMakers.push(() => makeCharacter(
  10845. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10846. {
  10847. side: {
  10848. height: math.unit(3.4, "meters"),
  10849. weight: math.unit(1000, "lb"),
  10850. name: "Side",
  10851. image: {
  10852. source: "./media/characters/rovoska/side.svg",
  10853. extra: 4403 / 1515
  10854. }
  10855. },
  10856. },
  10857. [
  10858. {
  10859. name: "Normal",
  10860. height: math.unit(3.4, "meters"),
  10861. default: true
  10862. },
  10863. ]
  10864. ))
  10865. characterMakers.push(() => makeCharacter(
  10866. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10867. {
  10868. front: {
  10869. height: math.unit(8, "feet"),
  10870. weight: math.unit(315, "lb"),
  10871. name: "Front",
  10872. image: {
  10873. source: "./media/characters/gunner-rotthbauer/front.svg"
  10874. }
  10875. },
  10876. back: {
  10877. height: math.unit(8, "feet"),
  10878. weight: math.unit(315, "lb"),
  10879. name: "Back",
  10880. image: {
  10881. source: "./media/characters/gunner-rotthbauer/back.svg"
  10882. }
  10883. },
  10884. },
  10885. [
  10886. {
  10887. name: "Micro",
  10888. height: math.unit(3.5, "inches")
  10889. },
  10890. {
  10891. name: "Normal",
  10892. height: math.unit(8, "feet"),
  10893. default: true
  10894. },
  10895. {
  10896. name: "Macro",
  10897. height: math.unit(250, "feet")
  10898. },
  10899. {
  10900. name: "Megamacro",
  10901. height: math.unit(1, "AU")
  10902. },
  10903. ]
  10904. ))
  10905. characterMakers.push(() => makeCharacter(
  10906. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10907. {
  10908. front: {
  10909. height: math.unit(5 + 5 / 12, "feet"),
  10910. weight: math.unit(140, "lb"),
  10911. name: "Front",
  10912. image: {
  10913. source: "./media/characters/allatia/front.svg",
  10914. extra: 1227 / 1180,
  10915. bottom: 0.027
  10916. }
  10917. },
  10918. },
  10919. [
  10920. {
  10921. name: "Normal",
  10922. height: math.unit(5 + 5 / 12, "feet")
  10923. },
  10924. {
  10925. name: "Macro",
  10926. height: math.unit(250, "feet"),
  10927. default: true
  10928. },
  10929. {
  10930. name: "Megamacro",
  10931. height: math.unit(8, "miles")
  10932. }
  10933. ]
  10934. ))
  10935. characterMakers.push(() => makeCharacter(
  10936. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10937. {
  10938. front: {
  10939. height: math.unit(6, "feet"),
  10940. weight: math.unit(120, "lb"),
  10941. name: "Front",
  10942. image: {
  10943. source: "./media/characters/tene/front.svg",
  10944. extra: 814/750,
  10945. bottom: 36/850
  10946. }
  10947. },
  10948. stomping: {
  10949. height: math.unit(2.025, "meters"),
  10950. weight: math.unit(120, "lb"),
  10951. name: "Stomping",
  10952. image: {
  10953. source: "./media/characters/tene/stomping.svg",
  10954. extra: 885/821,
  10955. bottom: 15/900
  10956. }
  10957. },
  10958. sitting: {
  10959. height: math.unit(1, "meter"),
  10960. weight: math.unit(120, "lb"),
  10961. name: "Sitting",
  10962. image: {
  10963. source: "./media/characters/tene/sitting.svg",
  10964. extra: 396/366,
  10965. bottom: 79/475
  10966. }
  10967. },
  10968. smiling: {
  10969. height: math.unit(1.2, "feet"),
  10970. name: "Smiling",
  10971. image: {
  10972. source: "./media/characters/tene/smiling.svg",
  10973. extra: 1364/1071,
  10974. bottom: 0/1364
  10975. }
  10976. },
  10977. smug: {
  10978. height: math.unit(1.3, "feet"),
  10979. name: "Smug",
  10980. image: {
  10981. source: "./media/characters/tene/smug.svg",
  10982. extra: 1323/1082,
  10983. bottom: 0/1323
  10984. }
  10985. },
  10986. feral: {
  10987. height: math.unit(3.9, "feet"),
  10988. weight: math.unit(250, "lb"),
  10989. name: "Feral",
  10990. image: {
  10991. source: "./media/characters/tene/feral.svg",
  10992. extra: 717 / 458,
  10993. bottom: 0.179
  10994. }
  10995. },
  10996. },
  10997. [
  10998. {
  10999. name: "Normal",
  11000. height: math.unit(6, "feet")
  11001. },
  11002. {
  11003. name: "Macro",
  11004. height: math.unit(300, "feet"),
  11005. default: true
  11006. },
  11007. {
  11008. name: "Megamacro",
  11009. height: math.unit(5, "miles")
  11010. },
  11011. ]
  11012. ))
  11013. characterMakers.push(() => makeCharacter(
  11014. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11015. {
  11016. side: {
  11017. height: math.unit(6, "feet"),
  11018. name: "Side",
  11019. image: {
  11020. source: "./media/characters/evander/side.svg",
  11021. extra: 877 / 477
  11022. }
  11023. },
  11024. },
  11025. [
  11026. {
  11027. name: "Normal",
  11028. height: math.unit(0.83, "meters"),
  11029. default: true
  11030. },
  11031. ]
  11032. ))
  11033. characterMakers.push(() => makeCharacter(
  11034. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11035. {
  11036. front: {
  11037. height: math.unit(12, "feet"),
  11038. weight: math.unit(1000, "lb"),
  11039. name: "Front",
  11040. image: {
  11041. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11042. extra: 1762 / 1611
  11043. }
  11044. },
  11045. back: {
  11046. height: math.unit(12, "feet"),
  11047. weight: math.unit(1000, "lb"),
  11048. name: "Back",
  11049. image: {
  11050. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11051. extra: 1762 / 1611
  11052. }
  11053. },
  11054. },
  11055. [
  11056. {
  11057. name: "Normal",
  11058. height: math.unit(12, "feet"),
  11059. default: true
  11060. },
  11061. {
  11062. name: "Kaiju",
  11063. height: math.unit(150, "feet")
  11064. },
  11065. ]
  11066. ))
  11067. characterMakers.push(() => makeCharacter(
  11068. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11069. {
  11070. front: {
  11071. height: math.unit(6, "feet"),
  11072. weight: math.unit(150, "lb"),
  11073. name: "Front",
  11074. image: {
  11075. source: "./media/characters/zero-alurus/front.svg"
  11076. }
  11077. },
  11078. back: {
  11079. height: math.unit(6, "feet"),
  11080. weight: math.unit(150, "lb"),
  11081. name: "Back",
  11082. image: {
  11083. source: "./media/characters/zero-alurus/back.svg"
  11084. }
  11085. },
  11086. },
  11087. [
  11088. {
  11089. name: "Normal",
  11090. height: math.unit(5 + 10 / 12, "feet")
  11091. },
  11092. {
  11093. name: "Macro",
  11094. height: math.unit(60, "feet"),
  11095. default: true
  11096. },
  11097. {
  11098. name: "Macro+",
  11099. height: math.unit(450, "feet")
  11100. },
  11101. ]
  11102. ))
  11103. characterMakers.push(() => makeCharacter(
  11104. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11105. {
  11106. front: {
  11107. height: math.unit(6, "feet"),
  11108. weight: math.unit(200, "lb"),
  11109. name: "Front",
  11110. image: {
  11111. source: "./media/characters/mega-shi/front.svg",
  11112. extra: 1279 / 1250,
  11113. bottom: 0.02
  11114. }
  11115. },
  11116. back: {
  11117. height: math.unit(6, "feet"),
  11118. weight: math.unit(200, "lb"),
  11119. name: "Back",
  11120. image: {
  11121. source: "./media/characters/mega-shi/back.svg",
  11122. extra: 1279 / 1250,
  11123. bottom: 0.02
  11124. }
  11125. },
  11126. },
  11127. [
  11128. {
  11129. name: "Micro",
  11130. height: math.unit(16 + 6 / 12, "feet")
  11131. },
  11132. {
  11133. name: "Third Dimension",
  11134. height: math.unit(40, "meters")
  11135. },
  11136. {
  11137. name: "Normal",
  11138. height: math.unit(660, "feet"),
  11139. default: true
  11140. },
  11141. {
  11142. name: "Megamacro",
  11143. height: math.unit(10, "miles")
  11144. },
  11145. {
  11146. name: "Planetary Launch",
  11147. height: math.unit(500, "miles")
  11148. },
  11149. {
  11150. name: "Interstellar",
  11151. height: math.unit(1e9, "miles")
  11152. },
  11153. {
  11154. name: "Leaving the Universe",
  11155. height: math.unit(1, "gigaparsec")
  11156. },
  11157. {
  11158. name: "Travelling Universes",
  11159. height: math.unit(30e15, "parsecs")
  11160. },
  11161. ]
  11162. ))
  11163. characterMakers.push(() => makeCharacter(
  11164. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11165. {
  11166. front: {
  11167. height: math.unit(5 + 4/12, "feet"),
  11168. weight: math.unit(120, "lb"),
  11169. name: "Front",
  11170. image: {
  11171. source: "./media/characters/odyssey/front.svg",
  11172. extra: 1747/1571,
  11173. bottom: 47/1794
  11174. }
  11175. },
  11176. side: {
  11177. height: math.unit(5.1, "feet"),
  11178. weight: math.unit(120, "lb"),
  11179. name: "Side",
  11180. image: {
  11181. source: "./media/characters/odyssey/side.svg",
  11182. extra: 1847/1619,
  11183. bottom: 47/1894
  11184. }
  11185. },
  11186. lounging: {
  11187. height: math.unit(1.464, "feet"),
  11188. weight: math.unit(120, "lb"),
  11189. name: "Lounging",
  11190. image: {
  11191. source: "./media/characters/odyssey/lounging.svg",
  11192. extra: 1235/837,
  11193. bottom: 551/1786
  11194. }
  11195. },
  11196. },
  11197. [
  11198. {
  11199. name: "Normal",
  11200. height: math.unit(5 + 4 / 12, "feet")
  11201. },
  11202. {
  11203. name: "Macro",
  11204. height: math.unit(1, "km")
  11205. },
  11206. {
  11207. name: "Megamacro",
  11208. height: math.unit(3000, "km")
  11209. },
  11210. {
  11211. name: "Gigamacro",
  11212. height: math.unit(1, "AU"),
  11213. default: true
  11214. },
  11215. {
  11216. name: "Omniversal",
  11217. height: math.unit(100e14, "lightyears")
  11218. },
  11219. ]
  11220. ))
  11221. characterMakers.push(() => makeCharacter(
  11222. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11223. {
  11224. front: {
  11225. height: math.unit(5 + 10/12, "feet"),
  11226. name: "Front",
  11227. image: {
  11228. source: "./media/characters/mekuto/front.svg",
  11229. extra: 875/835,
  11230. bottom: 46/921
  11231. }
  11232. },
  11233. },
  11234. [
  11235. {
  11236. name: "Minimicro",
  11237. height: math.unit(0.2, "inches")
  11238. },
  11239. {
  11240. name: "Micro",
  11241. height: math.unit(1.5, "inches")
  11242. },
  11243. {
  11244. name: "Normal",
  11245. height: math.unit(5 + 10 / 12, "feet"),
  11246. default: true
  11247. },
  11248. {
  11249. name: "Minimacro",
  11250. height: math.unit(17 + 9 / 12, "feet")
  11251. },
  11252. {
  11253. name: "Macro",
  11254. height: math.unit(177.5, "feet")
  11255. },
  11256. {
  11257. name: "Megamacro",
  11258. height: math.unit(152, "miles")
  11259. },
  11260. ]
  11261. ))
  11262. characterMakers.push(() => makeCharacter(
  11263. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11264. {
  11265. front: {
  11266. height: math.unit(6.5, "inches"),
  11267. weight: math.unit(13, "oz"),
  11268. name: "Front",
  11269. image: {
  11270. source: "./media/characters/dafydd-tomos/front.svg",
  11271. extra: 2990 / 2603,
  11272. bottom: 0.03
  11273. }
  11274. },
  11275. },
  11276. [
  11277. {
  11278. name: "Micro",
  11279. height: math.unit(6.5, "inches"),
  11280. default: true
  11281. },
  11282. ]
  11283. ))
  11284. characterMakers.push(() => makeCharacter(
  11285. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11286. {
  11287. front: {
  11288. height: math.unit(6, "feet"),
  11289. weight: math.unit(150, "lb"),
  11290. name: "Front",
  11291. image: {
  11292. source: "./media/characters/splinter/front.svg",
  11293. extra: 2990 / 2882,
  11294. bottom: 0.04
  11295. }
  11296. },
  11297. back: {
  11298. height: math.unit(6, "feet"),
  11299. weight: math.unit(150, "lb"),
  11300. name: "Back",
  11301. image: {
  11302. source: "./media/characters/splinter/back.svg",
  11303. extra: 2990 / 2882,
  11304. bottom: 0.04
  11305. }
  11306. },
  11307. },
  11308. [
  11309. {
  11310. name: "Normal",
  11311. height: math.unit(6, "feet")
  11312. },
  11313. {
  11314. name: "Macro",
  11315. height: math.unit(230, "meters"),
  11316. default: true
  11317. },
  11318. ]
  11319. ))
  11320. characterMakers.push(() => makeCharacter(
  11321. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11322. {
  11323. front: {
  11324. height: math.unit(4 + 10 / 12, "feet"),
  11325. weight: math.unit(480, "lb"),
  11326. name: "Front",
  11327. image: {
  11328. source: "./media/characters/snow-gabumon/front.svg",
  11329. extra: 1140 / 963,
  11330. bottom: 0.058
  11331. }
  11332. },
  11333. back: {
  11334. height: math.unit(4 + 10 / 12, "feet"),
  11335. weight: math.unit(480, "lb"),
  11336. name: "Back",
  11337. image: {
  11338. source: "./media/characters/snow-gabumon/back.svg",
  11339. extra: 1115 / 962,
  11340. bottom: 0.041
  11341. }
  11342. },
  11343. frontUndresed: {
  11344. height: math.unit(4 + 10 / 12, "feet"),
  11345. weight: math.unit(480, "lb"),
  11346. name: "Front (Undressed)",
  11347. image: {
  11348. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11349. extra: 1061 / 960,
  11350. bottom: 0.045
  11351. }
  11352. },
  11353. },
  11354. [
  11355. {
  11356. name: "Micro",
  11357. height: math.unit(1, "inch")
  11358. },
  11359. {
  11360. name: "Normal",
  11361. height: math.unit(4 + 10 / 12, "feet"),
  11362. default: true
  11363. },
  11364. {
  11365. name: "Macro",
  11366. height: math.unit(200, "feet")
  11367. },
  11368. {
  11369. name: "Megamacro",
  11370. height: math.unit(120, "miles")
  11371. },
  11372. {
  11373. name: "Gigamacro",
  11374. height: math.unit(9800, "miles")
  11375. },
  11376. ]
  11377. ))
  11378. characterMakers.push(() => makeCharacter(
  11379. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11380. {
  11381. front: {
  11382. height: math.unit(1.7, "meters"),
  11383. weight: math.unit(140, "lb"),
  11384. name: "Front",
  11385. image: {
  11386. source: "./media/characters/moody/front.svg",
  11387. extra: 3226 / 3007,
  11388. bottom: 0.087
  11389. }
  11390. },
  11391. },
  11392. [
  11393. {
  11394. name: "Micro",
  11395. height: math.unit(1, "mm")
  11396. },
  11397. {
  11398. name: "Normal",
  11399. height: math.unit(1.7, "meters"),
  11400. default: true
  11401. },
  11402. {
  11403. name: "Macro",
  11404. height: math.unit(80, "meters")
  11405. },
  11406. {
  11407. name: "Macro+",
  11408. height: math.unit(500, "meters")
  11409. },
  11410. ]
  11411. ))
  11412. characterMakers.push(() => makeCharacter(
  11413. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11414. {
  11415. front: {
  11416. height: math.unit(6, "feet"),
  11417. weight: math.unit(150, "lb"),
  11418. name: "Front",
  11419. image: {
  11420. source: "./media/characters/zyas/front.svg",
  11421. extra: 1180 / 1120,
  11422. bottom: 0.045
  11423. }
  11424. },
  11425. },
  11426. [
  11427. {
  11428. name: "Normal",
  11429. height: math.unit(10, "feet"),
  11430. default: true
  11431. },
  11432. {
  11433. name: "Macro",
  11434. height: math.unit(500, "feet")
  11435. },
  11436. {
  11437. name: "Megamacro",
  11438. height: math.unit(5, "miles")
  11439. },
  11440. {
  11441. name: "Teramacro",
  11442. height: math.unit(150000, "miles")
  11443. },
  11444. ]
  11445. ))
  11446. characterMakers.push(() => makeCharacter(
  11447. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11448. {
  11449. front: {
  11450. height: math.unit(6, "feet"),
  11451. weight: math.unit(150, "lb"),
  11452. name: "Front",
  11453. image: {
  11454. source: "./media/characters/cuon/front.svg",
  11455. extra: 1390 / 1320,
  11456. bottom: 0.008
  11457. }
  11458. },
  11459. },
  11460. [
  11461. {
  11462. name: "Micro",
  11463. height: math.unit(3, "inches")
  11464. },
  11465. {
  11466. name: "Normal",
  11467. height: math.unit(18 + 9 / 12, "feet"),
  11468. default: true
  11469. },
  11470. {
  11471. name: "Macro",
  11472. height: math.unit(360, "feet")
  11473. },
  11474. {
  11475. name: "Megamacro",
  11476. height: math.unit(360, "miles")
  11477. },
  11478. ]
  11479. ))
  11480. characterMakers.push(() => makeCharacter(
  11481. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11482. {
  11483. front: {
  11484. height: math.unit(2.4, "meters"),
  11485. weight: math.unit(70, "kg"),
  11486. name: "Front",
  11487. image: {
  11488. source: "./media/characters/nyanuxk/front.svg",
  11489. extra: 1172 / 1084,
  11490. bottom: 0.065
  11491. }
  11492. },
  11493. side: {
  11494. height: math.unit(2.4, "meters"),
  11495. weight: math.unit(70, "kg"),
  11496. name: "Side",
  11497. image: {
  11498. source: "./media/characters/nyanuxk/side.svg",
  11499. extra: 1190 / 1132,
  11500. bottom: 0.007
  11501. }
  11502. },
  11503. back: {
  11504. height: math.unit(2.4, "meters"),
  11505. weight: math.unit(70, "kg"),
  11506. name: "Back",
  11507. image: {
  11508. source: "./media/characters/nyanuxk/back.svg",
  11509. extra: 1200 / 1141,
  11510. bottom: 0.015
  11511. }
  11512. },
  11513. foot: {
  11514. height: math.unit(0.52, "meters"),
  11515. name: "Foot",
  11516. image: {
  11517. source: "./media/characters/nyanuxk/foot.svg"
  11518. }
  11519. },
  11520. },
  11521. [
  11522. {
  11523. name: "Micro",
  11524. height: math.unit(2, "cm")
  11525. },
  11526. {
  11527. name: "Normal",
  11528. height: math.unit(2.4, "meters"),
  11529. default: true
  11530. },
  11531. {
  11532. name: "Smaller Macro",
  11533. height: math.unit(120, "meters")
  11534. },
  11535. {
  11536. name: "Bigger Macro",
  11537. height: math.unit(1.2, "km")
  11538. },
  11539. {
  11540. name: "Megamacro",
  11541. height: math.unit(15, "kilometers")
  11542. },
  11543. {
  11544. name: "Gigamacro",
  11545. height: math.unit(2000, "km")
  11546. },
  11547. {
  11548. name: "Teramacro",
  11549. height: math.unit(500000, "km")
  11550. },
  11551. ]
  11552. ))
  11553. characterMakers.push(() => makeCharacter(
  11554. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11555. {
  11556. side: {
  11557. height: math.unit(6, "feet"),
  11558. name: "Side",
  11559. image: {
  11560. source: "./media/characters/ailbhe/side.svg",
  11561. extra: 757 / 464,
  11562. bottom: 0.041
  11563. }
  11564. },
  11565. },
  11566. [
  11567. {
  11568. name: "Normal",
  11569. height: math.unit(1.07, "meters"),
  11570. default: true
  11571. },
  11572. ]
  11573. ))
  11574. characterMakers.push(() => makeCharacter(
  11575. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11576. {
  11577. front: {
  11578. height: math.unit(6, "feet"),
  11579. weight: math.unit(120, "kg"),
  11580. name: "Front",
  11581. image: {
  11582. source: "./media/characters/zevulfius/front.svg",
  11583. extra: 965 / 903
  11584. }
  11585. },
  11586. side: {
  11587. height: math.unit(6, "feet"),
  11588. weight: math.unit(120, "kg"),
  11589. name: "Side",
  11590. image: {
  11591. source: "./media/characters/zevulfius/side.svg",
  11592. extra: 939 / 900
  11593. }
  11594. },
  11595. back: {
  11596. height: math.unit(6, "feet"),
  11597. weight: math.unit(120, "kg"),
  11598. name: "Back",
  11599. image: {
  11600. source: "./media/characters/zevulfius/back.svg",
  11601. extra: 918 / 854,
  11602. bottom: 0.005
  11603. }
  11604. },
  11605. foot: {
  11606. height: math.unit(6 / 3.72, "feet"),
  11607. name: "Foot",
  11608. image: {
  11609. source: "./media/characters/zevulfius/foot.svg"
  11610. }
  11611. },
  11612. },
  11613. [
  11614. {
  11615. name: "Macro",
  11616. height: math.unit(750, "meters")
  11617. },
  11618. {
  11619. name: "Megamacro",
  11620. height: math.unit(20, "km"),
  11621. default: true
  11622. },
  11623. {
  11624. name: "Gigamacro",
  11625. height: math.unit(2000, "km")
  11626. },
  11627. {
  11628. name: "Teramacro",
  11629. height: math.unit(250000, "km")
  11630. },
  11631. ]
  11632. ))
  11633. characterMakers.push(() => makeCharacter(
  11634. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11635. {
  11636. front: {
  11637. height: math.unit(100, "feet"),
  11638. weight: math.unit(350, "kg"),
  11639. name: "Front",
  11640. image: {
  11641. source: "./media/characters/rikes/front.svg",
  11642. extra: 1565 / 1483,
  11643. bottom: 0.017
  11644. }
  11645. },
  11646. },
  11647. [
  11648. {
  11649. name: "Macro",
  11650. height: math.unit(100, "feet"),
  11651. default: true
  11652. },
  11653. ]
  11654. ))
  11655. characterMakers.push(() => makeCharacter(
  11656. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11657. {
  11658. front: {
  11659. height: math.unit(8, "feet"),
  11660. weight: math.unit(356, "lb"),
  11661. name: "Front",
  11662. image: {
  11663. source: "./media/characters/adam-silver-mane/front.svg",
  11664. extra: 1036/937,
  11665. bottom: 63/1099
  11666. }
  11667. },
  11668. side: {
  11669. height: math.unit(8, "feet"),
  11670. weight: math.unit(356, "lb"),
  11671. name: "Side",
  11672. image: {
  11673. source: "./media/characters/adam-silver-mane/side.svg",
  11674. extra: 997/901,
  11675. bottom: 59/1056
  11676. }
  11677. },
  11678. frontNsfw: {
  11679. height: math.unit(8, "feet"),
  11680. weight: math.unit(356, "lb"),
  11681. name: "Front (NSFW)",
  11682. image: {
  11683. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11684. extra: 1036/937,
  11685. bottom: 63/1099
  11686. }
  11687. },
  11688. sideNsfw: {
  11689. height: math.unit(8, "feet"),
  11690. weight: math.unit(356, "lb"),
  11691. name: "Side (NSFW)",
  11692. image: {
  11693. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11694. extra: 997/901,
  11695. bottom: 59/1056
  11696. }
  11697. },
  11698. dick: {
  11699. height: math.unit(2.1, "feet"),
  11700. name: "Dick",
  11701. image: {
  11702. source: "./media/characters/adam-silver-mane/dick.svg"
  11703. }
  11704. },
  11705. taur: {
  11706. height: math.unit(16, "feet"),
  11707. weight: math.unit(1500, "kg"),
  11708. name: "Taur",
  11709. image: {
  11710. source: "./media/characters/adam-silver-mane/taur.svg",
  11711. extra: 1713 / 1571,
  11712. bottom: 0.01
  11713. }
  11714. },
  11715. },
  11716. [
  11717. {
  11718. name: "Normal",
  11719. height: math.unit(8, "feet")
  11720. },
  11721. {
  11722. name: "Minimacro",
  11723. height: math.unit(80, "feet")
  11724. },
  11725. {
  11726. name: "MDA",
  11727. height: math.unit(80, "meters")
  11728. },
  11729. {
  11730. name: "Macro",
  11731. height: math.unit(800, "feet"),
  11732. default: true
  11733. },
  11734. {
  11735. name: "Megamacro",
  11736. height: math.unit(8000, "feet")
  11737. },
  11738. {
  11739. name: "Gigamacro",
  11740. height: math.unit(800, "miles")
  11741. },
  11742. {
  11743. name: "Teramacro",
  11744. height: math.unit(80000, "miles")
  11745. },
  11746. {
  11747. name: "Celestial",
  11748. height: math.unit(8e6, "miles")
  11749. },
  11750. {
  11751. name: "Star Dragon",
  11752. height: math.unit(800000, "parsecs")
  11753. },
  11754. {
  11755. name: "Godly",
  11756. height: math.unit(800, "teraparsecs")
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11762. {
  11763. front: {
  11764. height: math.unit(6, "feet"),
  11765. weight: math.unit(150, "lb"),
  11766. name: "Front",
  11767. image: {
  11768. source: "./media/characters/ky'owin/front.svg",
  11769. extra: 3862/3053,
  11770. bottom: 74/3936
  11771. }
  11772. },
  11773. },
  11774. [
  11775. {
  11776. name: "Normal",
  11777. height: math.unit(6 + 8 / 12, "feet")
  11778. },
  11779. {
  11780. name: "Large",
  11781. height: math.unit(68, "feet")
  11782. },
  11783. {
  11784. name: "Macro",
  11785. height: math.unit(132, "feet")
  11786. },
  11787. {
  11788. name: "Macro+",
  11789. height: math.unit(340, "feet")
  11790. },
  11791. {
  11792. name: "Macro++",
  11793. height: math.unit(680, "feet"),
  11794. default: true
  11795. },
  11796. {
  11797. name: "Megamacro",
  11798. height: math.unit(1, "mile")
  11799. },
  11800. {
  11801. name: "Megamacro+",
  11802. height: math.unit(10, "miles")
  11803. },
  11804. ]
  11805. ))
  11806. characterMakers.push(() => makeCharacter(
  11807. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11808. {
  11809. front: {
  11810. height: math.unit(4, "feet"),
  11811. weight: math.unit(50, "lb"),
  11812. name: "Front",
  11813. image: {
  11814. source: "./media/characters/mal/front.svg",
  11815. extra: 785 / 724,
  11816. bottom: 0.07
  11817. }
  11818. },
  11819. },
  11820. [
  11821. {
  11822. name: "Micro",
  11823. height: math.unit(4, "inches")
  11824. },
  11825. {
  11826. name: "Normal",
  11827. height: math.unit(4, "feet"),
  11828. default: true
  11829. },
  11830. {
  11831. name: "Macro",
  11832. height: math.unit(200, "feet")
  11833. },
  11834. ]
  11835. ))
  11836. characterMakers.push(() => makeCharacter(
  11837. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11838. {
  11839. front: {
  11840. height: math.unit(6, "feet"),
  11841. weight: math.unit(150, "lb"),
  11842. name: "Front",
  11843. image: {
  11844. source: "./media/characters/jordan-deware/front.svg",
  11845. extra: 1191 / 1012
  11846. }
  11847. },
  11848. },
  11849. [
  11850. {
  11851. name: "Nano",
  11852. height: math.unit(0.01, "mm")
  11853. },
  11854. {
  11855. name: "Minimicro",
  11856. height: math.unit(1, "mm")
  11857. },
  11858. {
  11859. name: "Micro",
  11860. height: math.unit(0.5, "inches")
  11861. },
  11862. {
  11863. name: "Normal",
  11864. height: math.unit(4, "feet"),
  11865. default: true
  11866. },
  11867. {
  11868. name: "Minimacro",
  11869. height: math.unit(40, "meters")
  11870. },
  11871. {
  11872. name: "Small Macro",
  11873. height: math.unit(400, "meters")
  11874. },
  11875. {
  11876. name: "Macro",
  11877. height: math.unit(4, "miles")
  11878. },
  11879. {
  11880. name: "Megamacro",
  11881. height: math.unit(40, "miles")
  11882. },
  11883. {
  11884. name: "Megamacro+",
  11885. height: math.unit(400, "miles")
  11886. },
  11887. {
  11888. name: "Gigamacro",
  11889. height: math.unit(400000, "miles")
  11890. },
  11891. ]
  11892. ))
  11893. characterMakers.push(() => makeCharacter(
  11894. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11895. {
  11896. side: {
  11897. height: math.unit(6, "feet"),
  11898. weight: math.unit(150, "lb"),
  11899. name: "Side",
  11900. image: {
  11901. source: "./media/characters/kimiko/side.svg",
  11902. extra: 600 / 358
  11903. }
  11904. },
  11905. },
  11906. [
  11907. {
  11908. name: "Normal",
  11909. height: math.unit(15, "feet"),
  11910. default: true
  11911. },
  11912. {
  11913. name: "Macro",
  11914. height: math.unit(220, "feet")
  11915. },
  11916. {
  11917. name: "Macro+",
  11918. height: math.unit(1450, "feet")
  11919. },
  11920. {
  11921. name: "Megamacro",
  11922. height: math.unit(11500, "feet")
  11923. },
  11924. {
  11925. name: "Gigamacro",
  11926. height: math.unit(9500, "miles")
  11927. },
  11928. {
  11929. name: "Teramacro",
  11930. height: math.unit(2208005005, "miles")
  11931. },
  11932. {
  11933. name: "Examacro",
  11934. height: math.unit(2750, "parsecs")
  11935. },
  11936. {
  11937. name: "Zettamacro",
  11938. height: math.unit(101500, "parsecs")
  11939. },
  11940. ]
  11941. ))
  11942. characterMakers.push(() => makeCharacter(
  11943. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11944. {
  11945. front: {
  11946. height: math.unit(6, "feet"),
  11947. weight: math.unit(70, "kg"),
  11948. name: "Front",
  11949. image: {
  11950. source: "./media/characters/andrew-sleepy/front.svg"
  11951. }
  11952. },
  11953. side: {
  11954. height: math.unit(6, "feet"),
  11955. weight: math.unit(70, "kg"),
  11956. name: "Side",
  11957. image: {
  11958. source: "./media/characters/andrew-sleepy/side.svg"
  11959. }
  11960. },
  11961. },
  11962. [
  11963. {
  11964. name: "Micro",
  11965. height: math.unit(1, "mm"),
  11966. default: true
  11967. },
  11968. ]
  11969. ))
  11970. characterMakers.push(() => makeCharacter(
  11971. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11972. {
  11973. front: {
  11974. height: math.unit(6, "feet"),
  11975. weight: math.unit(150, "lb"),
  11976. name: "Front",
  11977. image: {
  11978. source: "./media/characters/judio/front.svg",
  11979. extra: 1258 / 1110
  11980. }
  11981. },
  11982. },
  11983. [
  11984. {
  11985. name: "Normal",
  11986. height: math.unit(5 + 6 / 12, "feet")
  11987. },
  11988. {
  11989. name: "Macro",
  11990. height: math.unit(1000, "feet"),
  11991. default: true
  11992. },
  11993. {
  11994. name: "Megamacro",
  11995. height: math.unit(10, "miles")
  11996. },
  11997. ]
  11998. ))
  11999. characterMakers.push(() => makeCharacter(
  12000. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12001. {
  12002. frontDressed: {
  12003. height: math.unit(6, "feet"),
  12004. weight: math.unit(68, "kg"),
  12005. name: "Front (Dressed)",
  12006. image: {
  12007. source: "./media/characters/nomaxice/front-dressed.svg",
  12008. extra: 1137/824,
  12009. bottom: 74/1211
  12010. }
  12011. },
  12012. frontShorts: {
  12013. height: math.unit(6, "feet"),
  12014. weight: math.unit(68, "kg"),
  12015. name: "Front (Shorts)",
  12016. image: {
  12017. source: "./media/characters/nomaxice/front-shorts.svg",
  12018. extra: 1137/824,
  12019. bottom: 74/1211
  12020. }
  12021. },
  12022. back: {
  12023. height: math.unit(6, "feet"),
  12024. weight: math.unit(68, "kg"),
  12025. name: "Back",
  12026. image: {
  12027. source: "./media/characters/nomaxice/back.svg",
  12028. extra: 822/786,
  12029. bottom: 39/861
  12030. }
  12031. },
  12032. hand: {
  12033. height: math.unit(0.565, "feet"),
  12034. name: "Hand",
  12035. image: {
  12036. source: "./media/characters/nomaxice/hand.svg"
  12037. }
  12038. },
  12039. foot: {
  12040. height: math.unit(1, "feet"),
  12041. name: "Foot",
  12042. image: {
  12043. source: "./media/characters/nomaxice/foot.svg"
  12044. }
  12045. },
  12046. },
  12047. [
  12048. {
  12049. name: "Micro",
  12050. height: math.unit(8, "cm")
  12051. },
  12052. {
  12053. name: "Norm",
  12054. height: math.unit(1.82, "m")
  12055. },
  12056. {
  12057. name: "Norm+",
  12058. height: math.unit(8.8, "feet"),
  12059. default: true
  12060. },
  12061. {
  12062. name: "Big",
  12063. height: math.unit(8, "meters")
  12064. },
  12065. {
  12066. name: "Macro",
  12067. height: math.unit(18, "meters")
  12068. },
  12069. {
  12070. name: "Macro+",
  12071. height: math.unit(88, "meters")
  12072. },
  12073. ]
  12074. ))
  12075. characterMakers.push(() => makeCharacter(
  12076. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12077. {
  12078. front: {
  12079. height: math.unit(12, "feet"),
  12080. weight: math.unit(1.5, "tons"),
  12081. name: "Front",
  12082. image: {
  12083. source: "./media/characters/dydros/front.svg",
  12084. extra: 863 / 800,
  12085. bottom: 0.015
  12086. }
  12087. },
  12088. back: {
  12089. height: math.unit(12, "feet"),
  12090. weight: math.unit(1.5, "tons"),
  12091. name: "Back",
  12092. image: {
  12093. source: "./media/characters/dydros/back.svg",
  12094. extra: 900 / 843,
  12095. bottom: 0.005
  12096. }
  12097. },
  12098. },
  12099. [
  12100. {
  12101. name: "Normal",
  12102. height: math.unit(12, "feet"),
  12103. default: true
  12104. },
  12105. ]
  12106. ))
  12107. characterMakers.push(() => makeCharacter(
  12108. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12109. {
  12110. front: {
  12111. height: math.unit(6, "feet"),
  12112. weight: math.unit(100, "kg"),
  12113. name: "Front",
  12114. image: {
  12115. source: "./media/characters/riggi/front.svg",
  12116. extra: 5787 / 5303
  12117. }
  12118. },
  12119. hyper: {
  12120. height: math.unit(6 * 5 / 3, "feet"),
  12121. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12122. name: "Hyper",
  12123. image: {
  12124. source: "./media/characters/riggi/hyper.svg",
  12125. extra: 3595 / 3485
  12126. }
  12127. },
  12128. },
  12129. [
  12130. {
  12131. name: "Small Macro",
  12132. height: math.unit(50, "feet")
  12133. },
  12134. {
  12135. name: "Default",
  12136. height: math.unit(200, "feet"),
  12137. default: true
  12138. },
  12139. {
  12140. name: "Loom",
  12141. height: math.unit(10000, "feet")
  12142. },
  12143. {
  12144. name: "Cruising Altitude",
  12145. height: math.unit(30000, "feet")
  12146. },
  12147. {
  12148. name: "Megamacro",
  12149. height: math.unit(100, "miles")
  12150. },
  12151. {
  12152. name: "Continent Sized",
  12153. height: math.unit(2800, "miles")
  12154. },
  12155. {
  12156. name: "Earth Sized",
  12157. height: math.unit(8000, "miles")
  12158. },
  12159. ]
  12160. ))
  12161. characterMakers.push(() => makeCharacter(
  12162. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12163. {
  12164. front: {
  12165. height: math.unit(6, "feet"),
  12166. weight: math.unit(250, "lb"),
  12167. name: "Front",
  12168. image: {
  12169. source: "./media/characters/alexi/front.svg",
  12170. extra: 3483 / 3291,
  12171. bottom: 0.04
  12172. }
  12173. },
  12174. back: {
  12175. height: math.unit(6, "feet"),
  12176. weight: math.unit(250, "lb"),
  12177. name: "Back",
  12178. image: {
  12179. source: "./media/characters/alexi/back.svg",
  12180. extra: 3533 / 3356,
  12181. bottom: 0.021
  12182. }
  12183. },
  12184. frontTransforming: {
  12185. height: math.unit(8.58, "feet"),
  12186. weight: math.unit(1300, "lb"),
  12187. name: "Transforming",
  12188. image: {
  12189. source: "./media/characters/alexi/front-transforming.svg",
  12190. extra: 437 / 409,
  12191. bottom: 19 / 458.66
  12192. }
  12193. },
  12194. frontTransformed: {
  12195. height: math.unit(12.5, "feet"),
  12196. weight: math.unit(4000, "lb"),
  12197. name: "Transformed",
  12198. image: {
  12199. source: "./media/characters/alexi/front-transformed.svg",
  12200. extra: 639 / 614,
  12201. bottom: 30.55 / 671
  12202. }
  12203. },
  12204. },
  12205. [
  12206. {
  12207. name: "Normal",
  12208. height: math.unit(14, "feet"),
  12209. default: true
  12210. },
  12211. {
  12212. name: "Minimacro",
  12213. height: math.unit(30, "meters")
  12214. },
  12215. {
  12216. name: "Macro",
  12217. height: math.unit(500, "meters")
  12218. },
  12219. {
  12220. name: "Megamacro",
  12221. height: math.unit(9000, "km")
  12222. },
  12223. {
  12224. name: "Teramacro",
  12225. height: math.unit(384000, "km")
  12226. },
  12227. ]
  12228. ))
  12229. characterMakers.push(() => makeCharacter(
  12230. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12231. {
  12232. front: {
  12233. height: math.unit(6, "feet"),
  12234. weight: math.unit(150, "lb"),
  12235. name: "Front",
  12236. image: {
  12237. source: "./media/characters/kayroo/front.svg",
  12238. extra: 1153 / 1038,
  12239. bottom: 0.06
  12240. }
  12241. },
  12242. foot: {
  12243. height: math.unit(6, "feet"),
  12244. weight: math.unit(150, "lb"),
  12245. name: "Foot",
  12246. image: {
  12247. source: "./media/characters/kayroo/foot.svg"
  12248. }
  12249. },
  12250. },
  12251. [
  12252. {
  12253. name: "Normal",
  12254. height: math.unit(8, "feet"),
  12255. default: true
  12256. },
  12257. {
  12258. name: "Minimacro",
  12259. height: math.unit(250, "feet")
  12260. },
  12261. {
  12262. name: "Macro",
  12263. height: math.unit(2800, "feet")
  12264. },
  12265. {
  12266. name: "Megamacro",
  12267. height: math.unit(5200, "feet")
  12268. },
  12269. {
  12270. name: "Gigamacro",
  12271. height: math.unit(27000, "feet")
  12272. },
  12273. {
  12274. name: "Omega",
  12275. height: math.unit(45000, "feet")
  12276. },
  12277. ]
  12278. ))
  12279. characterMakers.push(() => makeCharacter(
  12280. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12281. {
  12282. front: {
  12283. height: math.unit(18, "feet"),
  12284. weight: math.unit(5800, "lb"),
  12285. name: "Front",
  12286. image: {
  12287. source: "./media/characters/rhys/front.svg",
  12288. extra: 3386 / 3090,
  12289. bottom: 0.07
  12290. }
  12291. },
  12292. },
  12293. [
  12294. {
  12295. name: "Normal",
  12296. height: math.unit(18, "feet"),
  12297. default: true
  12298. },
  12299. {
  12300. name: "Working Size",
  12301. height: math.unit(200, "feet")
  12302. },
  12303. {
  12304. name: "Demolition Size",
  12305. height: math.unit(2000, "feet")
  12306. },
  12307. {
  12308. name: "Maximum Licensed Size",
  12309. height: math.unit(5, "miles")
  12310. },
  12311. {
  12312. name: "Maximum Observed Size",
  12313. height: math.unit(10, "yottameters")
  12314. },
  12315. ]
  12316. ))
  12317. characterMakers.push(() => makeCharacter(
  12318. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12319. {
  12320. front: {
  12321. height: math.unit(6, "feet"),
  12322. weight: math.unit(250, "lb"),
  12323. name: "Front",
  12324. image: {
  12325. source: "./media/characters/toto/front.svg",
  12326. extra: 527 / 479,
  12327. bottom: 0.05
  12328. }
  12329. },
  12330. },
  12331. [
  12332. {
  12333. name: "Micro",
  12334. height: math.unit(3, "feet")
  12335. },
  12336. {
  12337. name: "Normal",
  12338. height: math.unit(10, "feet")
  12339. },
  12340. {
  12341. name: "Macro",
  12342. height: math.unit(150, "feet"),
  12343. default: true
  12344. },
  12345. {
  12346. name: "Megamacro",
  12347. height: math.unit(1200, "feet")
  12348. },
  12349. ]
  12350. ))
  12351. characterMakers.push(() => makeCharacter(
  12352. { name: "King", species: ["lion"], tags: ["anthro"] },
  12353. {
  12354. back: {
  12355. height: math.unit(6, "feet"),
  12356. weight: math.unit(150, "lb"),
  12357. name: "Back",
  12358. image: {
  12359. source: "./media/characters/king/back.svg"
  12360. }
  12361. },
  12362. },
  12363. [
  12364. {
  12365. name: "Micro",
  12366. height: math.unit(2, "inches")
  12367. },
  12368. {
  12369. name: "Normal",
  12370. height: math.unit(8, "feet")
  12371. },
  12372. {
  12373. name: "Macro",
  12374. height: math.unit(200, "feet"),
  12375. default: true
  12376. },
  12377. {
  12378. name: "Megamacro",
  12379. height: math.unit(50, "miles")
  12380. },
  12381. ]
  12382. ))
  12383. characterMakers.push(() => makeCharacter(
  12384. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12385. {
  12386. front: {
  12387. height: math.unit(11, "feet"),
  12388. weight: math.unit(1400, "lb"),
  12389. name: "Front",
  12390. image: {
  12391. source: "./media/characters/cordite/front.svg",
  12392. extra: 1919/1827,
  12393. bottom: 40/1959
  12394. }
  12395. },
  12396. side: {
  12397. height: math.unit(11, "feet"),
  12398. weight: math.unit(1400, "lb"),
  12399. name: "Side",
  12400. image: {
  12401. source: "./media/characters/cordite/side.svg",
  12402. extra: 1908/1793,
  12403. bottom: 38/1946
  12404. }
  12405. },
  12406. back: {
  12407. height: math.unit(11, "feet"),
  12408. weight: math.unit(1400, "lb"),
  12409. name: "Back",
  12410. image: {
  12411. source: "./media/characters/cordite/back.svg",
  12412. extra: 1938/1837,
  12413. bottom: 10/1948
  12414. }
  12415. },
  12416. feral: {
  12417. height: math.unit(2, "feet"),
  12418. weight: math.unit(90, "lb"),
  12419. name: "Feral",
  12420. image: {
  12421. source: "./media/characters/cordite/feral.svg",
  12422. extra: 1260 / 755,
  12423. bottom: 0.05
  12424. }
  12425. },
  12426. },
  12427. [
  12428. {
  12429. name: "Normal",
  12430. height: math.unit(11, "feet"),
  12431. default: true
  12432. },
  12433. ]
  12434. ))
  12435. characterMakers.push(() => makeCharacter(
  12436. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12437. {
  12438. front: {
  12439. height: math.unit(6, "feet"),
  12440. weight: math.unit(150, "lb"),
  12441. name: "Front",
  12442. image: {
  12443. source: "./media/characters/pianostrong/front.svg",
  12444. extra: 6577 / 6254,
  12445. bottom: 0.02
  12446. }
  12447. },
  12448. side: {
  12449. height: math.unit(6, "feet"),
  12450. weight: math.unit(150, "lb"),
  12451. name: "Side",
  12452. image: {
  12453. source: "./media/characters/pianostrong/side.svg",
  12454. extra: 6106 / 5730
  12455. }
  12456. },
  12457. back: {
  12458. height: math.unit(6, "feet"),
  12459. weight: math.unit(150, "lb"),
  12460. name: "Back",
  12461. image: {
  12462. source: "./media/characters/pianostrong/back.svg",
  12463. extra: 6085 / 5733,
  12464. bottom: 0.01
  12465. }
  12466. },
  12467. },
  12468. [
  12469. {
  12470. name: "Macro",
  12471. height: math.unit(100, "feet")
  12472. },
  12473. {
  12474. name: "Macro+",
  12475. height: math.unit(300, "feet"),
  12476. default: true
  12477. },
  12478. {
  12479. name: "Macro++",
  12480. height: math.unit(1000, "feet")
  12481. },
  12482. ]
  12483. ))
  12484. characterMakers.push(() => makeCharacter(
  12485. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12486. {
  12487. front: {
  12488. height: math.unit(6, "feet"),
  12489. weight: math.unit(150, "lb"),
  12490. name: "Front",
  12491. image: {
  12492. source: "./media/characters/kona/front.svg",
  12493. extra: 2960 / 2629,
  12494. bottom: 0.005
  12495. }
  12496. },
  12497. },
  12498. [
  12499. {
  12500. name: "Normal",
  12501. height: math.unit(11 + 8 / 12, "feet")
  12502. },
  12503. {
  12504. name: "Macro",
  12505. height: math.unit(850, "feet"),
  12506. default: true
  12507. },
  12508. {
  12509. name: "Macro+",
  12510. height: math.unit(1.5, "km"),
  12511. default: true
  12512. },
  12513. {
  12514. name: "Megamacro",
  12515. height: math.unit(80, "miles")
  12516. },
  12517. {
  12518. name: "Gigamacro",
  12519. height: math.unit(3500, "miles")
  12520. },
  12521. ]
  12522. ))
  12523. characterMakers.push(() => makeCharacter(
  12524. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12525. {
  12526. side: {
  12527. height: math.unit(1.9, "meters"),
  12528. weight: math.unit(326, "kg"),
  12529. name: "Side",
  12530. image: {
  12531. source: "./media/characters/levi/side.svg",
  12532. extra: 1704 / 1334,
  12533. bottom: 0.02
  12534. }
  12535. },
  12536. },
  12537. [
  12538. {
  12539. name: "Normal",
  12540. height: math.unit(1.9, "meters"),
  12541. default: true
  12542. },
  12543. {
  12544. name: "Macro",
  12545. height: math.unit(20, "meters")
  12546. },
  12547. {
  12548. name: "Macro+",
  12549. height: math.unit(200, "meters")
  12550. },
  12551. {
  12552. name: "Megamacro",
  12553. height: math.unit(2, "km")
  12554. },
  12555. {
  12556. name: "Megamacro+",
  12557. height: math.unit(20, "km")
  12558. },
  12559. {
  12560. name: "Gigamacro",
  12561. height: math.unit(2500, "km")
  12562. },
  12563. {
  12564. name: "Gigamacro+",
  12565. height: math.unit(120000, "km")
  12566. },
  12567. {
  12568. name: "Teramacro",
  12569. height: math.unit(7.77e6, "km")
  12570. },
  12571. ]
  12572. ))
  12573. characterMakers.push(() => makeCharacter(
  12574. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12575. {
  12576. front: {
  12577. height: math.unit(6 + 4/12, "feet"),
  12578. weight: math.unit(190, "lb"),
  12579. name: "Front",
  12580. image: {
  12581. source: "./media/characters/bmc/front.svg",
  12582. extra: 1626/1472,
  12583. bottom: 79/1705
  12584. }
  12585. },
  12586. back: {
  12587. height: math.unit(6 + 4/12, "feet"),
  12588. weight: math.unit(190, "lb"),
  12589. name: "Back",
  12590. image: {
  12591. source: "./media/characters/bmc/back.svg",
  12592. extra: 1640/1479,
  12593. bottom: 45/1685
  12594. }
  12595. },
  12596. frontArmor: {
  12597. height: math.unit(6 + 4/12, "feet"),
  12598. weight: math.unit(190, "lb"),
  12599. name: "Front-armor",
  12600. image: {
  12601. source: "./media/characters/bmc/front-armor.svg",
  12602. extra: 1538/1468,
  12603. bottom: 79/1617
  12604. }
  12605. },
  12606. },
  12607. [
  12608. {
  12609. name: "Human-sized",
  12610. height: math.unit(6 + 4 / 12, "feet")
  12611. },
  12612. {
  12613. name: "Interactive Size",
  12614. height: math.unit(25, "feet")
  12615. },
  12616. {
  12617. name: "Small",
  12618. height: math.unit(250, "feet")
  12619. },
  12620. {
  12621. name: "Normal",
  12622. height: math.unit(1250, "feet"),
  12623. default: true
  12624. },
  12625. {
  12626. name: "Good Day",
  12627. height: math.unit(88, "miles")
  12628. },
  12629. {
  12630. name: "Largest Measured Size",
  12631. height: math.unit(105.960, "galaxies")
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12637. {
  12638. front: {
  12639. height: math.unit(20, "feet"),
  12640. weight: math.unit(2016, "kg"),
  12641. name: "Front",
  12642. image: {
  12643. source: "./media/characters/sven-the-kaiju/front.svg",
  12644. extra: 1277/1250,
  12645. bottom: 35/1312
  12646. }
  12647. },
  12648. mouth: {
  12649. height: math.unit(1.85, "feet"),
  12650. name: "Mouth",
  12651. image: {
  12652. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12653. }
  12654. },
  12655. },
  12656. [
  12657. {
  12658. name: "Fairy",
  12659. height: math.unit(6, "inches")
  12660. },
  12661. {
  12662. name: "Normal",
  12663. height: math.unit(20, "feet"),
  12664. default: true
  12665. },
  12666. {
  12667. name: "Rampage",
  12668. height: math.unit(200, "feet")
  12669. },
  12670. {
  12671. name: "Archfey Forest Guardian",
  12672. height: math.unit(1, "mile")
  12673. },
  12674. ]
  12675. ))
  12676. characterMakers.push(() => makeCharacter(
  12677. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12678. {
  12679. front: {
  12680. height: math.unit(4, "meters"),
  12681. weight: math.unit(2, "tons"),
  12682. name: "Front",
  12683. image: {
  12684. source: "./media/characters/marik/front.svg",
  12685. extra: 1057 / 1003,
  12686. bottom: 0.08
  12687. }
  12688. },
  12689. },
  12690. [
  12691. {
  12692. name: "Normal",
  12693. height: math.unit(4, "meters"),
  12694. default: true
  12695. },
  12696. {
  12697. name: "Macro",
  12698. height: math.unit(20, "meters")
  12699. },
  12700. {
  12701. name: "Megamacro",
  12702. height: math.unit(50, "km")
  12703. },
  12704. {
  12705. name: "Gigamacro",
  12706. height: math.unit(100, "km")
  12707. },
  12708. {
  12709. name: "Alpha Macro",
  12710. height: math.unit(7.88e7, "yottameters")
  12711. },
  12712. ]
  12713. ))
  12714. characterMakers.push(() => makeCharacter(
  12715. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12716. {
  12717. front: {
  12718. height: math.unit(6, "feet"),
  12719. weight: math.unit(110, "lb"),
  12720. name: "Front",
  12721. image: {
  12722. source: "./media/characters/mel/front.svg",
  12723. extra: 736 / 617,
  12724. bottom: 0.017
  12725. }
  12726. },
  12727. },
  12728. [
  12729. {
  12730. name: "Pico",
  12731. height: math.unit(3, "pm")
  12732. },
  12733. {
  12734. name: "Nano",
  12735. height: math.unit(3, "nm")
  12736. },
  12737. {
  12738. name: "Micro",
  12739. height: math.unit(0.3, "mm"),
  12740. default: true
  12741. },
  12742. {
  12743. name: "Micro+",
  12744. height: math.unit(3, "mm")
  12745. },
  12746. {
  12747. name: "Normal",
  12748. height: math.unit(5 + 10.5 / 12, "feet")
  12749. },
  12750. ]
  12751. ))
  12752. characterMakers.push(() => makeCharacter(
  12753. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12754. {
  12755. kaiju: {
  12756. height: math.unit(1.75, "meters"),
  12757. weight: math.unit(55, "kg"),
  12758. name: "Kaiju",
  12759. image: {
  12760. source: "./media/characters/lykonous/kaiju.svg",
  12761. extra: 1055 / 946,
  12762. bottom: 0.135
  12763. }
  12764. },
  12765. },
  12766. [
  12767. {
  12768. name: "Normal",
  12769. height: math.unit(2.5, "meters"),
  12770. default: true
  12771. },
  12772. {
  12773. name: "Kaiju Dragon",
  12774. height: math.unit(60, "meters")
  12775. },
  12776. {
  12777. name: "Mega Kaiju",
  12778. height: math.unit(120, "km")
  12779. },
  12780. {
  12781. name: "Giga Kaiju",
  12782. height: math.unit(200, "megameters")
  12783. },
  12784. {
  12785. name: "Terra Kaiju",
  12786. height: math.unit(400, "gigameters")
  12787. },
  12788. {
  12789. name: "Kaiju Dragon God",
  12790. height: math.unit(13000, "exaparsecs")
  12791. },
  12792. ]
  12793. ))
  12794. characterMakers.push(() => makeCharacter(
  12795. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12796. {
  12797. front: {
  12798. height: math.unit(6, "feet"),
  12799. weight: math.unit(150, "lb"),
  12800. name: "Front",
  12801. image: {
  12802. source: "./media/characters/blü/front.svg",
  12803. extra: 1883 / 1564,
  12804. bottom: 0.031
  12805. }
  12806. },
  12807. },
  12808. [
  12809. {
  12810. name: "Normal",
  12811. height: math.unit(13, "feet"),
  12812. default: true
  12813. },
  12814. {
  12815. name: "Big Boi",
  12816. height: math.unit(150, "meters")
  12817. },
  12818. {
  12819. name: "Mini Stomper",
  12820. height: math.unit(300, "meters")
  12821. },
  12822. {
  12823. name: "Macro",
  12824. height: math.unit(1000, "meters")
  12825. },
  12826. {
  12827. name: "Megamacro",
  12828. height: math.unit(11000, "meters")
  12829. },
  12830. {
  12831. name: "Gigamacro",
  12832. height: math.unit(11000, "km")
  12833. },
  12834. {
  12835. name: "Teramacro",
  12836. height: math.unit(420000, "km")
  12837. },
  12838. {
  12839. name: "Examacro",
  12840. height: math.unit(120, "parsecs")
  12841. },
  12842. {
  12843. name: "God Tho",
  12844. height: math.unit(98000000000, "parsecs")
  12845. },
  12846. ]
  12847. ))
  12848. characterMakers.push(() => makeCharacter(
  12849. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12850. {
  12851. taurFront: {
  12852. height: math.unit(6, "feet"),
  12853. weight: math.unit(200, "lb"),
  12854. name: "Taur (Front)",
  12855. image: {
  12856. source: "./media/characters/scales/taur-front.svg",
  12857. extra: 1,
  12858. bottom: 0.05
  12859. }
  12860. },
  12861. taurBack: {
  12862. height: math.unit(6, "feet"),
  12863. weight: math.unit(200, "lb"),
  12864. name: "Taur (Back)",
  12865. image: {
  12866. source: "./media/characters/scales/taur-back.svg",
  12867. extra: 1,
  12868. bottom: 0.08
  12869. }
  12870. },
  12871. anthro: {
  12872. height: math.unit(6 * 7 / 12, "feet"),
  12873. weight: math.unit(100, "lb"),
  12874. name: "Anthro",
  12875. image: {
  12876. source: "./media/characters/scales/anthro.svg",
  12877. extra: 1,
  12878. bottom: 0.06
  12879. }
  12880. },
  12881. },
  12882. [
  12883. {
  12884. name: "Normal",
  12885. height: math.unit(12, "feet"),
  12886. default: true
  12887. },
  12888. ]
  12889. ))
  12890. characterMakers.push(() => makeCharacter(
  12891. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12892. {
  12893. front: {
  12894. height: math.unit(6, "feet"),
  12895. weight: math.unit(150, "lb"),
  12896. name: "Front",
  12897. image: {
  12898. source: "./media/characters/koragos/front.svg",
  12899. extra: 841 / 794,
  12900. bottom: 0.035
  12901. }
  12902. },
  12903. back: {
  12904. height: math.unit(6, "feet"),
  12905. weight: math.unit(150, "lb"),
  12906. name: "Back",
  12907. image: {
  12908. source: "./media/characters/koragos/back.svg",
  12909. extra: 841 / 810,
  12910. bottom: 0.022
  12911. }
  12912. },
  12913. },
  12914. [
  12915. {
  12916. name: "Normal",
  12917. height: math.unit(6 + 11 / 12, "feet"),
  12918. default: true
  12919. },
  12920. {
  12921. name: "Macro",
  12922. height: math.unit(490, "feet")
  12923. },
  12924. {
  12925. name: "Megamacro",
  12926. height: math.unit(10, "miles")
  12927. },
  12928. {
  12929. name: "Gigamacro",
  12930. height: math.unit(50, "miles")
  12931. },
  12932. ]
  12933. ))
  12934. characterMakers.push(() => makeCharacter(
  12935. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12936. {
  12937. front: {
  12938. height: math.unit(6, "feet"),
  12939. weight: math.unit(250, "lb"),
  12940. name: "Front",
  12941. image: {
  12942. source: "./media/characters/xylrem/front.svg",
  12943. extra: 3323 / 3050,
  12944. bottom: 0.065
  12945. }
  12946. },
  12947. },
  12948. [
  12949. {
  12950. name: "Micro",
  12951. height: math.unit(4, "feet")
  12952. },
  12953. {
  12954. name: "Normal",
  12955. height: math.unit(16, "feet"),
  12956. default: true
  12957. },
  12958. {
  12959. name: "Macro",
  12960. height: math.unit(2720, "feet")
  12961. },
  12962. {
  12963. name: "Megamacro",
  12964. height: math.unit(25000, "miles")
  12965. },
  12966. ]
  12967. ))
  12968. characterMakers.push(() => makeCharacter(
  12969. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12970. {
  12971. front: {
  12972. height: math.unit(8, "feet"),
  12973. weight: math.unit(250, "kg"),
  12974. name: "Front",
  12975. image: {
  12976. source: "./media/characters/ikideru/front.svg",
  12977. extra: 930 / 870,
  12978. bottom: 0.087
  12979. }
  12980. },
  12981. back: {
  12982. height: math.unit(8, "feet"),
  12983. weight: math.unit(250, "kg"),
  12984. name: "Back",
  12985. image: {
  12986. source: "./media/characters/ikideru/back.svg",
  12987. extra: 919 / 852,
  12988. bottom: 0.055
  12989. }
  12990. },
  12991. },
  12992. [
  12993. {
  12994. name: "Rare",
  12995. height: math.unit(8, "feet"),
  12996. default: true
  12997. },
  12998. {
  12999. name: "Playful Loom",
  13000. height: math.unit(80, "feet")
  13001. },
  13002. {
  13003. name: "City Leaner",
  13004. height: math.unit(230, "feet")
  13005. },
  13006. {
  13007. name: "Megamacro",
  13008. height: math.unit(2500, "feet")
  13009. },
  13010. {
  13011. name: "Gigamacro",
  13012. height: math.unit(26400, "feet")
  13013. },
  13014. {
  13015. name: "Tectonic Shifter",
  13016. height: math.unit(1.7, "megameters")
  13017. },
  13018. {
  13019. name: "Planet Carer",
  13020. height: math.unit(21, "megameters")
  13021. },
  13022. {
  13023. name: "God",
  13024. height: math.unit(11157.22, "parsecs")
  13025. },
  13026. ]
  13027. ))
  13028. characterMakers.push(() => makeCharacter(
  13029. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13030. {
  13031. front: {
  13032. height: math.unit(6, "feet"),
  13033. weight: math.unit(120, "lb"),
  13034. name: "Front",
  13035. image: {
  13036. source: "./media/characters/neo/front.svg"
  13037. }
  13038. },
  13039. },
  13040. [
  13041. {
  13042. name: "Micro",
  13043. height: math.unit(2, "inches"),
  13044. default: true
  13045. },
  13046. {
  13047. name: "Human Size",
  13048. height: math.unit(5 + 8 / 12, "feet")
  13049. },
  13050. ]
  13051. ))
  13052. characterMakers.push(() => makeCharacter(
  13053. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13054. {
  13055. front: {
  13056. height: math.unit(13 + 10 / 12, "feet"),
  13057. weight: math.unit(5320, "lb"),
  13058. name: "Front",
  13059. image: {
  13060. source: "./media/characters/chauncey-chantz/front.svg",
  13061. extra: 1587 / 1435,
  13062. bottom: 0.02
  13063. }
  13064. },
  13065. },
  13066. [
  13067. {
  13068. name: "Normal",
  13069. height: math.unit(13 + 10 / 12, "feet"),
  13070. default: true
  13071. },
  13072. {
  13073. name: "Macro",
  13074. height: math.unit(45, "feet")
  13075. },
  13076. {
  13077. name: "Megamacro",
  13078. height: math.unit(250, "miles")
  13079. },
  13080. {
  13081. name: "Planetary",
  13082. height: math.unit(10000, "miles")
  13083. },
  13084. {
  13085. name: "Galactic",
  13086. height: math.unit(40000, "parsecs")
  13087. },
  13088. {
  13089. name: "Universal",
  13090. height: math.unit(1, "yottameter")
  13091. },
  13092. ]
  13093. ))
  13094. characterMakers.push(() => makeCharacter(
  13095. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13096. {
  13097. front: {
  13098. height: math.unit(6, "feet"),
  13099. weight: math.unit(150, "lb"),
  13100. name: "Front",
  13101. image: {
  13102. source: "./media/characters/epifox/front.svg",
  13103. extra: 1,
  13104. bottom: 0.075
  13105. }
  13106. },
  13107. },
  13108. [
  13109. {
  13110. name: "Micro",
  13111. height: math.unit(6, "inches")
  13112. },
  13113. {
  13114. name: "Normal",
  13115. height: math.unit(12, "feet"),
  13116. default: true
  13117. },
  13118. {
  13119. name: "Macro",
  13120. height: math.unit(3810, "feet")
  13121. },
  13122. {
  13123. name: "Megamacro",
  13124. height: math.unit(500, "miles")
  13125. },
  13126. ]
  13127. ))
  13128. characterMakers.push(() => makeCharacter(
  13129. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13130. {
  13131. front: {
  13132. height: math.unit(1.8796, "m"),
  13133. weight: math.unit(230, "lb"),
  13134. name: "Front",
  13135. image: {
  13136. source: "./media/characters/colin-t/front.svg",
  13137. extra: 1272 / 1193,
  13138. bottom: 0.07
  13139. }
  13140. },
  13141. },
  13142. [
  13143. {
  13144. name: "Micro",
  13145. height: math.unit(0.571, "meters")
  13146. },
  13147. {
  13148. name: "Normal",
  13149. height: math.unit(1.8796, "meters"),
  13150. default: true
  13151. },
  13152. {
  13153. name: "Tall",
  13154. height: math.unit(4, "meters")
  13155. },
  13156. {
  13157. name: "Macro",
  13158. height: math.unit(67.241, "meters")
  13159. },
  13160. {
  13161. name: "Megamacro",
  13162. height: math.unit(371.856, "meters")
  13163. },
  13164. {
  13165. name: "Planetary",
  13166. height: math.unit(12631.5689, "km")
  13167. },
  13168. ]
  13169. ))
  13170. characterMakers.push(() => makeCharacter(
  13171. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13172. {
  13173. front: {
  13174. height: math.unit(1.85, "meters"),
  13175. weight: math.unit(80, "kg"),
  13176. name: "Front",
  13177. image: {
  13178. source: "./media/characters/matvei/front.svg",
  13179. extra: 456/447,
  13180. bottom: 8/464
  13181. }
  13182. },
  13183. back: {
  13184. height: math.unit(1.85, "meters"),
  13185. weight: math.unit(80, "kg"),
  13186. name: "Back",
  13187. image: {
  13188. source: "./media/characters/matvei/back.svg",
  13189. extra: 434/427,
  13190. bottom: 11/445
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Normal",
  13197. height: math.unit(1.85, "meters"),
  13198. default: true
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13204. {
  13205. front: {
  13206. height: math.unit(5 + 9 / 12, "feet"),
  13207. weight: math.unit(70, "lb"),
  13208. name: "Front",
  13209. image: {
  13210. source: "./media/characters/quincy/front.svg",
  13211. extra: 3041 / 2751
  13212. }
  13213. },
  13214. back: {
  13215. height: math.unit(5 + 9 / 12, "feet"),
  13216. weight: math.unit(70, "lb"),
  13217. name: "Back",
  13218. image: {
  13219. source: "./media/characters/quincy/back.svg",
  13220. extra: 3041 / 2751
  13221. }
  13222. },
  13223. flying: {
  13224. height: math.unit(5 + 4 / 12, "feet"),
  13225. weight: math.unit(70, "lb"),
  13226. name: "Flying",
  13227. image: {
  13228. source: "./media/characters/quincy/flying.svg",
  13229. extra: 1044 / 930
  13230. }
  13231. },
  13232. },
  13233. [
  13234. {
  13235. name: "Micro",
  13236. height: math.unit(3, "cm")
  13237. },
  13238. {
  13239. name: "Normal",
  13240. height: math.unit(5 + 9 / 12, "feet")
  13241. },
  13242. {
  13243. name: "Macro",
  13244. height: math.unit(200, "meters"),
  13245. default: true
  13246. },
  13247. {
  13248. name: "Megamacro",
  13249. height: math.unit(1000, "meters")
  13250. },
  13251. ]
  13252. ))
  13253. characterMakers.push(() => makeCharacter(
  13254. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13255. {
  13256. front: {
  13257. height: math.unit(3 + 11/12, "feet"),
  13258. weight: math.unit(50, "lb"),
  13259. name: "Front",
  13260. image: {
  13261. source: "./media/characters/vanrel/front.svg",
  13262. extra: 1104/949,
  13263. bottom: 52/1156
  13264. }
  13265. },
  13266. back: {
  13267. height: math.unit(3 + 11/12, "feet"),
  13268. weight: math.unit(50, "lb"),
  13269. name: "Back",
  13270. image: {
  13271. source: "./media/characters/vanrel/back.svg",
  13272. extra: 1119/976,
  13273. bottom: 37/1156
  13274. }
  13275. },
  13276. tome: {
  13277. height: math.unit(1.35, "feet"),
  13278. weight: math.unit(10, "lb"),
  13279. name: "Vanrel's Tome",
  13280. rename: true,
  13281. image: {
  13282. source: "./media/characters/vanrel/tome.svg"
  13283. }
  13284. },
  13285. beans: {
  13286. height: math.unit(0.89, "feet"),
  13287. name: "Beans",
  13288. image: {
  13289. source: "./media/characters/vanrel/beans.svg"
  13290. }
  13291. },
  13292. },
  13293. [
  13294. {
  13295. name: "Normal",
  13296. height: math.unit(3 + 11/12, "feet"),
  13297. default: true
  13298. },
  13299. ]
  13300. ))
  13301. characterMakers.push(() => makeCharacter(
  13302. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13303. {
  13304. front: {
  13305. height: math.unit(7 + 5 / 12, "feet"),
  13306. name: "Front",
  13307. image: {
  13308. source: "./media/characters/kuiper-vanrel/front.svg",
  13309. extra: 1219/1169,
  13310. bottom: 69/1288
  13311. }
  13312. },
  13313. back: {
  13314. height: math.unit(7 + 5 / 12, "feet"),
  13315. name: "Back",
  13316. image: {
  13317. source: "./media/characters/kuiper-vanrel/back.svg",
  13318. extra: 1236/1193,
  13319. bottom: 27/1263
  13320. }
  13321. },
  13322. foot: {
  13323. height: math.unit(0.55, "meters"),
  13324. name: "Foot",
  13325. image: {
  13326. source: "./media/characters/kuiper-vanrel/foot.svg",
  13327. }
  13328. },
  13329. battle: {
  13330. height: math.unit(6.824, "feet"),
  13331. name: "Battle",
  13332. image: {
  13333. source: "./media/characters/kuiper-vanrel/battle.svg",
  13334. extra: 1466 / 1327,
  13335. bottom: 29 / 1492.5
  13336. }
  13337. },
  13338. meerkui: {
  13339. height: math.unit(18, "inches"),
  13340. name: "Meerkui",
  13341. image: {
  13342. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13343. extra: 1354/1289,
  13344. bottom: 69/1423
  13345. }
  13346. },
  13347. },
  13348. [
  13349. {
  13350. name: "Normal",
  13351. height: math.unit(7 + 5 / 12, "feet"),
  13352. default: true
  13353. },
  13354. ]
  13355. ))
  13356. characterMakers.push(() => makeCharacter(
  13357. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13358. {
  13359. front: {
  13360. height: math.unit(8 + 5 / 12, "feet"),
  13361. name: "Front",
  13362. image: {
  13363. source: "./media/characters/keset-vanrel/front.svg",
  13364. extra: 1231/1148,
  13365. bottom: 82/1313
  13366. }
  13367. },
  13368. back: {
  13369. height: math.unit(8 + 5 / 12, "feet"),
  13370. name: "Back",
  13371. image: {
  13372. source: "./media/characters/keset-vanrel/back.svg",
  13373. extra: 1240/1174,
  13374. bottom: 33/1273
  13375. }
  13376. },
  13377. hand: {
  13378. height: math.unit(0.6, "meters"),
  13379. name: "Hand",
  13380. image: {
  13381. source: "./media/characters/keset-vanrel/hand.svg"
  13382. }
  13383. },
  13384. foot: {
  13385. height: math.unit(0.94978, "meters"),
  13386. name: "Foot",
  13387. image: {
  13388. source: "./media/characters/keset-vanrel/foot.svg"
  13389. }
  13390. },
  13391. battle: {
  13392. height: math.unit(7.408, "feet"),
  13393. name: "Battle",
  13394. image: {
  13395. source: "./media/characters/keset-vanrel/battle.svg",
  13396. extra: 1890 / 1386,
  13397. bottom: 73.28 / 1970
  13398. }
  13399. },
  13400. },
  13401. [
  13402. {
  13403. name: "Normal",
  13404. height: math.unit(8 + 5 / 12, "feet"),
  13405. default: true
  13406. },
  13407. ]
  13408. ))
  13409. characterMakers.push(() => makeCharacter(
  13410. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13411. {
  13412. front: {
  13413. height: math.unit(6, "feet"),
  13414. weight: math.unit(150, "lb"),
  13415. name: "Front",
  13416. image: {
  13417. source: "./media/characters/neos/front.svg",
  13418. extra: 1696 / 992,
  13419. bottom: 0.14
  13420. }
  13421. },
  13422. },
  13423. [
  13424. {
  13425. name: "Normal",
  13426. height: math.unit(54, "cm"),
  13427. default: true
  13428. },
  13429. {
  13430. name: "Macro",
  13431. height: math.unit(100, "m")
  13432. },
  13433. {
  13434. name: "Megamacro",
  13435. height: math.unit(10, "km")
  13436. },
  13437. {
  13438. name: "Megamacro+",
  13439. height: math.unit(100, "km")
  13440. },
  13441. {
  13442. name: "Gigamacro",
  13443. height: math.unit(100, "Mm")
  13444. },
  13445. {
  13446. name: "Teramacro",
  13447. height: math.unit(100, "Gm")
  13448. },
  13449. {
  13450. name: "Examacro",
  13451. height: math.unit(100, "Em")
  13452. },
  13453. {
  13454. name: "Godly",
  13455. height: math.unit(10000, "Ym")
  13456. },
  13457. {
  13458. name: "Beyond Godly",
  13459. height: math.unit(25, "multiverses")
  13460. },
  13461. ]
  13462. ))
  13463. characterMakers.push(() => makeCharacter(
  13464. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13465. {
  13466. feminine: {
  13467. height: math.unit(5, "feet"),
  13468. weight: math.unit(100, "lb"),
  13469. name: "Feminine",
  13470. image: {
  13471. source: "./media/characters/sammy-mouse/feminine.svg",
  13472. extra: 2526 / 2425,
  13473. bottom: 0.123
  13474. }
  13475. },
  13476. masculine: {
  13477. height: math.unit(5, "feet"),
  13478. weight: math.unit(100, "lb"),
  13479. name: "Masculine",
  13480. image: {
  13481. source: "./media/characters/sammy-mouse/masculine.svg",
  13482. extra: 2526 / 2425,
  13483. bottom: 0.123
  13484. }
  13485. },
  13486. },
  13487. [
  13488. {
  13489. name: "Micro",
  13490. height: math.unit(5, "inches")
  13491. },
  13492. {
  13493. name: "Normal",
  13494. height: math.unit(5, "feet"),
  13495. default: true
  13496. },
  13497. {
  13498. name: "Macro",
  13499. height: math.unit(60, "feet")
  13500. },
  13501. ]
  13502. ))
  13503. characterMakers.push(() => makeCharacter(
  13504. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13505. {
  13506. front: {
  13507. height: math.unit(4, "feet"),
  13508. weight: math.unit(50, "lb"),
  13509. name: "Front",
  13510. image: {
  13511. source: "./media/characters/kole/front.svg",
  13512. extra: 1423 / 1303,
  13513. bottom: 0.025
  13514. }
  13515. },
  13516. back: {
  13517. height: math.unit(4, "feet"),
  13518. weight: math.unit(50, "lb"),
  13519. name: "Back",
  13520. image: {
  13521. source: "./media/characters/kole/back.svg",
  13522. extra: 1426 / 1280,
  13523. bottom: 0.02
  13524. }
  13525. },
  13526. },
  13527. [
  13528. {
  13529. name: "Normal",
  13530. height: math.unit(4, "feet"),
  13531. default: true
  13532. },
  13533. ]
  13534. ))
  13535. characterMakers.push(() => makeCharacter(
  13536. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13537. {
  13538. front: {
  13539. height: math.unit(2.5, "feet"),
  13540. weight: math.unit(32, "lb"),
  13541. name: "Front",
  13542. image: {
  13543. source: "./media/characters/rufran/front.svg",
  13544. extra: 1313/885,
  13545. bottom: 94/1407
  13546. }
  13547. },
  13548. side: {
  13549. height: math.unit(2.5, "feet"),
  13550. weight: math.unit(32, "lb"),
  13551. name: "Side",
  13552. image: {
  13553. source: "./media/characters/rufran/side.svg",
  13554. extra: 1109/852,
  13555. bottom: 118/1227
  13556. }
  13557. },
  13558. back: {
  13559. height: math.unit(2.5, "feet"),
  13560. weight: math.unit(32, "lb"),
  13561. name: "Back",
  13562. image: {
  13563. source: "./media/characters/rufran/back.svg",
  13564. extra: 1280/878,
  13565. bottom: 131/1411
  13566. }
  13567. },
  13568. mouth: {
  13569. height: math.unit(1.13, "feet"),
  13570. name: "Mouth",
  13571. image: {
  13572. source: "./media/characters/rufran/mouth.svg"
  13573. }
  13574. },
  13575. foot: {
  13576. height: math.unit(1.33, "feet"),
  13577. name: "Foot",
  13578. image: {
  13579. source: "./media/characters/rufran/foot.svg"
  13580. }
  13581. },
  13582. koboldFront: {
  13583. height: math.unit(2 + 6 / 12, "feet"),
  13584. weight: math.unit(20, "lb"),
  13585. name: "Front (Kobold)",
  13586. image: {
  13587. source: "./media/characters/rufran/kobold-front.svg",
  13588. extra: 2041 / 1839,
  13589. bottom: 0.055
  13590. }
  13591. },
  13592. koboldBack: {
  13593. height: math.unit(2 + 6 / 12, "feet"),
  13594. weight: math.unit(20, "lb"),
  13595. name: "Back (Kobold)",
  13596. image: {
  13597. source: "./media/characters/rufran/kobold-back.svg",
  13598. extra: 2054 / 1839,
  13599. bottom: 0.01
  13600. }
  13601. },
  13602. koboldHand: {
  13603. height: math.unit(0.2166, "meters"),
  13604. name: "Hand (Kobold)",
  13605. image: {
  13606. source: "./media/characters/rufran/kobold-hand.svg"
  13607. }
  13608. },
  13609. koboldFoot: {
  13610. height: math.unit(0.185, "meters"),
  13611. name: "Foot (Kobold)",
  13612. image: {
  13613. source: "./media/characters/rufran/kobold-foot.svg"
  13614. }
  13615. },
  13616. },
  13617. [
  13618. {
  13619. name: "Micro",
  13620. height: math.unit(1, "inch")
  13621. },
  13622. {
  13623. name: "Normal",
  13624. height: math.unit(2 + 6 / 12, "feet"),
  13625. default: true
  13626. },
  13627. {
  13628. name: "Big",
  13629. height: math.unit(60, "feet")
  13630. },
  13631. {
  13632. name: "Macro",
  13633. height: math.unit(325, "feet")
  13634. },
  13635. ]
  13636. ))
  13637. characterMakers.push(() => makeCharacter(
  13638. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13639. {
  13640. front: {
  13641. height: math.unit(0.3, "meters"),
  13642. weight: math.unit(3.5, "kg"),
  13643. name: "Front",
  13644. image: {
  13645. source: "./media/characters/chip/front.svg",
  13646. extra: 748 / 674
  13647. }
  13648. },
  13649. },
  13650. [
  13651. {
  13652. name: "Micro",
  13653. height: math.unit(1, "inch"),
  13654. default: true
  13655. },
  13656. ]
  13657. ))
  13658. characterMakers.push(() => makeCharacter(
  13659. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13660. {
  13661. side: {
  13662. height: math.unit(2.3, "meters"),
  13663. weight: math.unit(3500, "lb"),
  13664. name: "Side",
  13665. image: {
  13666. source: "./media/characters/torvid/side.svg",
  13667. extra: 1972 / 722,
  13668. bottom: 0.035
  13669. }
  13670. },
  13671. },
  13672. [
  13673. {
  13674. name: "Normal",
  13675. height: math.unit(2.3, "meters"),
  13676. default: true
  13677. },
  13678. ]
  13679. ))
  13680. characterMakers.push(() => makeCharacter(
  13681. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13682. {
  13683. front: {
  13684. height: math.unit(2, "meters"),
  13685. weight: math.unit(150.5, "kg"),
  13686. name: "Front",
  13687. image: {
  13688. source: "./media/characters/susan/front.svg",
  13689. extra: 693 / 635,
  13690. bottom: 0.05
  13691. }
  13692. },
  13693. },
  13694. [
  13695. {
  13696. name: "Megamacro",
  13697. height: math.unit(505, "miles"),
  13698. default: true
  13699. },
  13700. ]
  13701. ))
  13702. characterMakers.push(() => makeCharacter(
  13703. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13704. {
  13705. front: {
  13706. height: math.unit(6, "feet"),
  13707. weight: math.unit(150, "lb"),
  13708. name: "Front",
  13709. image: {
  13710. source: "./media/characters/raindrops/front.svg",
  13711. extra: 2655 / 2461,
  13712. bottom: 49 / 2705
  13713. }
  13714. },
  13715. back: {
  13716. height: math.unit(6, "feet"),
  13717. weight: math.unit(150, "lb"),
  13718. name: "Back",
  13719. image: {
  13720. source: "./media/characters/raindrops/back.svg",
  13721. extra: 2574 / 2400,
  13722. bottom: 65 / 2634
  13723. }
  13724. },
  13725. },
  13726. [
  13727. {
  13728. name: "Micro",
  13729. height: math.unit(6, "inches")
  13730. },
  13731. {
  13732. name: "Normal",
  13733. height: math.unit(6 + 2 / 12, "feet")
  13734. },
  13735. {
  13736. name: "Macro",
  13737. height: math.unit(131, "feet"),
  13738. default: true
  13739. },
  13740. {
  13741. name: "Megamacro",
  13742. height: math.unit(15, "miles")
  13743. },
  13744. {
  13745. name: "Gigamacro",
  13746. height: math.unit(4000, "miles")
  13747. },
  13748. {
  13749. name: "Teramacro",
  13750. height: math.unit(315000, "miles")
  13751. },
  13752. ]
  13753. ))
  13754. characterMakers.push(() => makeCharacter(
  13755. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13756. {
  13757. front: {
  13758. height: math.unit(2.794, "meters"),
  13759. weight: math.unit(325, "kg"),
  13760. name: "Front",
  13761. image: {
  13762. source: "./media/characters/tezwa/front.svg",
  13763. extra: 2083 / 1906,
  13764. bottom: 0.031
  13765. }
  13766. },
  13767. foot: {
  13768. height: math.unit(0.687, "meters"),
  13769. name: "Foot",
  13770. image: {
  13771. source: "./media/characters/tezwa/foot.svg"
  13772. }
  13773. },
  13774. },
  13775. [
  13776. {
  13777. name: "Normal",
  13778. height: math.unit(9 + 2 / 12, "feet"),
  13779. default: true
  13780. },
  13781. ]
  13782. ))
  13783. characterMakers.push(() => makeCharacter(
  13784. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13785. {
  13786. front: {
  13787. height: math.unit(58, "feet"),
  13788. weight: math.unit(89000, "lb"),
  13789. name: "Front",
  13790. image: {
  13791. source: "./media/characters/typhus/front.svg",
  13792. extra: 816 / 800,
  13793. bottom: 0.065
  13794. }
  13795. },
  13796. },
  13797. [
  13798. {
  13799. name: "Macro",
  13800. height: math.unit(58, "feet"),
  13801. default: true
  13802. },
  13803. ]
  13804. ))
  13805. characterMakers.push(() => makeCharacter(
  13806. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13807. {
  13808. front: {
  13809. height: math.unit(12, "feet"),
  13810. weight: math.unit(6, "tonnes"),
  13811. name: "Front",
  13812. image: {
  13813. source: "./media/characters/lyra-von-wulf/front.svg",
  13814. extra: 1,
  13815. bottom: 0.10
  13816. }
  13817. },
  13818. frontMecha: {
  13819. height: math.unit(12, "feet"),
  13820. weight: math.unit(12, "tonnes"),
  13821. name: "Front (Mecha)",
  13822. image: {
  13823. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13824. extra: 1,
  13825. bottom: 0.042
  13826. }
  13827. },
  13828. maw: {
  13829. height: math.unit(2.2, "feet"),
  13830. name: "Maw",
  13831. image: {
  13832. source: "./media/characters/lyra-von-wulf/maw.svg"
  13833. }
  13834. },
  13835. },
  13836. [
  13837. {
  13838. name: "Normal",
  13839. height: math.unit(12, "feet"),
  13840. default: true
  13841. },
  13842. {
  13843. name: "Classic",
  13844. height: math.unit(50, "feet")
  13845. },
  13846. {
  13847. name: "Macro",
  13848. height: math.unit(500, "feet")
  13849. },
  13850. {
  13851. name: "Megamacro",
  13852. height: math.unit(1, "mile")
  13853. },
  13854. {
  13855. name: "Gigamacro",
  13856. height: math.unit(400, "miles")
  13857. },
  13858. {
  13859. name: "Teramacro",
  13860. height: math.unit(22000, "miles")
  13861. },
  13862. {
  13863. name: "Solarmacro",
  13864. height: math.unit(8600000, "miles")
  13865. },
  13866. {
  13867. name: "Galactic",
  13868. height: math.unit(1057000, "lightyears")
  13869. },
  13870. ]
  13871. ))
  13872. characterMakers.push(() => makeCharacter(
  13873. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13874. {
  13875. front: {
  13876. height: math.unit(6 + 10 / 12, "feet"),
  13877. weight: math.unit(150, "lb"),
  13878. name: "Front",
  13879. image: {
  13880. source: "./media/characters/dixon/front.svg",
  13881. extra: 3361 / 3209,
  13882. bottom: 0.01
  13883. }
  13884. },
  13885. },
  13886. [
  13887. {
  13888. name: "Normal",
  13889. height: math.unit(6 + 10 / 12, "feet"),
  13890. default: true
  13891. },
  13892. {
  13893. name: "Big",
  13894. height: math.unit(12, "meters")
  13895. },
  13896. {
  13897. name: "Macro",
  13898. height: math.unit(500, "meters")
  13899. },
  13900. {
  13901. name: "Megamacro",
  13902. height: math.unit(2, "km")
  13903. },
  13904. ]
  13905. ))
  13906. characterMakers.push(() => makeCharacter(
  13907. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13908. {
  13909. front: {
  13910. height: math.unit(185, "cm"),
  13911. weight: math.unit(68, "kg"),
  13912. name: "Front",
  13913. image: {
  13914. source: "./media/characters/kauko/front.svg",
  13915. extra: 1455 / 1421,
  13916. bottom: 0.03
  13917. }
  13918. },
  13919. back: {
  13920. height: math.unit(185, "cm"),
  13921. weight: math.unit(68, "kg"),
  13922. name: "Back",
  13923. image: {
  13924. source: "./media/characters/kauko/back.svg",
  13925. extra: 1455 / 1421,
  13926. bottom: 0.004
  13927. }
  13928. },
  13929. },
  13930. [
  13931. {
  13932. name: "Normal",
  13933. height: math.unit(185, "cm"),
  13934. default: true
  13935. },
  13936. ]
  13937. ))
  13938. characterMakers.push(() => makeCharacter(
  13939. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13940. {
  13941. frontSfw: {
  13942. height: math.unit(5, "meters"),
  13943. weight: math.unit(4250, "lb"),
  13944. name: "Front",
  13945. image: {
  13946. source: "./media/characters/varg/front-sfw.svg",
  13947. extra: 1103/1010,
  13948. bottom: 50/1153
  13949. },
  13950. form: "anthro",
  13951. default: true
  13952. },
  13953. backSfw: {
  13954. height: math.unit(5, "meters"),
  13955. weight: math.unit(4250, "lb"),
  13956. name: "Back",
  13957. image: {
  13958. source: "./media/characters/varg/back-sfw.svg",
  13959. extra: 1038/1022,
  13960. bottom: 36/1074
  13961. },
  13962. form: "anthro"
  13963. },
  13964. frontNsfw: {
  13965. height: math.unit(5, "meters"),
  13966. weight: math.unit(4250, "lb"),
  13967. name: "Front (NSFW)",
  13968. image: {
  13969. source: "./media/characters/varg/front-nsfw.svg",
  13970. extra: 1103/1010,
  13971. bottom: 50/1153
  13972. },
  13973. form: "anthro"
  13974. },
  13975. sheath: {
  13976. height: math.unit(3.8, "feet"),
  13977. weight: math.unit(90, "kilograms"),
  13978. name: "Sheath",
  13979. image: {
  13980. source: "./media/characters/varg/sheath.svg"
  13981. },
  13982. form: "anthro"
  13983. },
  13984. dick: {
  13985. height: math.unit(4.6, "feet"),
  13986. weight: math.unit(451, "kilograms"),
  13987. name: "Dick",
  13988. image: {
  13989. source: "./media/characters/varg/dick.svg"
  13990. },
  13991. form: "anthro"
  13992. },
  13993. feralSfw: {
  13994. height: math.unit(5, "meters"),
  13995. weight: math.unit(100000, "lb"),
  13996. name: "Side",
  13997. image: {
  13998. source: "./media/characters/varg/feral-sfw.svg",
  13999. extra: 1065/511,
  14000. bottom: 211/1276
  14001. },
  14002. form: "feral",
  14003. default: true
  14004. },
  14005. feralNsfw: {
  14006. height: math.unit(5, "meters"),
  14007. weight: math.unit(100000, "lb"),
  14008. name: "Side (NSFW)",
  14009. image: {
  14010. source: "./media/characters/varg/feral-nsfw.svg",
  14011. extra: 1065/511,
  14012. bottom: 211/1276
  14013. },
  14014. form: "feral",
  14015. },
  14016. feralSheath: {
  14017. height: math.unit(9.8, "feet"),
  14018. weight: math.unit(2000, "kilograms"),
  14019. name: "Sheath",
  14020. image: {
  14021. source: "./media/characters/varg/sheath.svg"
  14022. },
  14023. form: "feral"
  14024. },
  14025. feralDick: {
  14026. height: math.unit(13.11, "feet"),
  14027. weight: math.unit(10440, "kilograms"),
  14028. name: "Dick",
  14029. image: {
  14030. source: "./media/characters/varg/dick.svg"
  14031. },
  14032. form: "feral"
  14033. },
  14034. },
  14035. [
  14036. {
  14037. name: "Normal",
  14038. height: math.unit(5, "meters"),
  14039. form: "anthro"
  14040. },
  14041. {
  14042. name: "Macro",
  14043. height: math.unit(200, "meters"),
  14044. form: "anthro"
  14045. },
  14046. {
  14047. name: "Megamacro",
  14048. height: math.unit(20, "kilometers"),
  14049. form: "anthro"
  14050. },
  14051. {
  14052. name: "True Size",
  14053. height: math.unit(211, "km"),
  14054. form: "anthro",
  14055. default: true
  14056. },
  14057. {
  14058. name: "Gigamacro",
  14059. height: math.unit(1000, "km"),
  14060. form: "anthro"
  14061. },
  14062. {
  14063. name: "Gigamacro+",
  14064. height: math.unit(8000, "km"),
  14065. form: "anthro"
  14066. },
  14067. {
  14068. name: "Teramacro",
  14069. height: math.unit(1000000, "km"),
  14070. form: "anthro"
  14071. },
  14072. {
  14073. name: "Normal",
  14074. height: math.unit(5, "meters"),
  14075. form: "feral"
  14076. },
  14077. {
  14078. name: "Macro",
  14079. height: math.unit(200, "meters"),
  14080. form: "feral"
  14081. },
  14082. {
  14083. name: "Megamacro",
  14084. height: math.unit(20, "kilometers"),
  14085. form: "feral"
  14086. },
  14087. {
  14088. name: "True Size",
  14089. height: math.unit(211, "km"),
  14090. form: "feral",
  14091. default: true
  14092. },
  14093. {
  14094. name: "Gigamacro",
  14095. height: math.unit(1000, "km"),
  14096. form: "feral"
  14097. },
  14098. {
  14099. name: "Gigamacro+",
  14100. height: math.unit(8000, "km"),
  14101. form: "feral"
  14102. },
  14103. {
  14104. name: "Teramacro",
  14105. height: math.unit(1000000, "km"),
  14106. form: "feral"
  14107. },
  14108. ],
  14109. {
  14110. "anthro": {
  14111. name: "Anthro",
  14112. default: true
  14113. },
  14114. "feral": {
  14115. name: "Feral",
  14116. },
  14117. }
  14118. ))
  14119. characterMakers.push(() => makeCharacter(
  14120. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14121. {
  14122. front: {
  14123. height: math.unit(7 + 7 / 12, "feet"),
  14124. weight: math.unit(267, "lb"),
  14125. name: "Front",
  14126. image: {
  14127. source: "./media/characters/dayza/front.svg",
  14128. extra: 1262 / 1200,
  14129. bottom: 0.035
  14130. }
  14131. },
  14132. side: {
  14133. height: math.unit(7 + 7 / 12, "feet"),
  14134. weight: math.unit(267, "lb"),
  14135. name: "Side",
  14136. image: {
  14137. source: "./media/characters/dayza/side.svg",
  14138. extra: 1295 / 1245,
  14139. bottom: 0.05
  14140. }
  14141. },
  14142. back: {
  14143. height: math.unit(7 + 7 / 12, "feet"),
  14144. weight: math.unit(267, "lb"),
  14145. name: "Back",
  14146. image: {
  14147. source: "./media/characters/dayza/back.svg",
  14148. extra: 1241 / 1170
  14149. }
  14150. },
  14151. },
  14152. [
  14153. {
  14154. name: "Normal",
  14155. height: math.unit(7 + 7 / 12, "feet"),
  14156. default: true
  14157. },
  14158. {
  14159. name: "Macro",
  14160. height: math.unit(155, "feet")
  14161. },
  14162. ]
  14163. ))
  14164. characterMakers.push(() => makeCharacter(
  14165. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14166. {
  14167. front: {
  14168. height: math.unit(6 + 5 / 12, "feet"),
  14169. weight: math.unit(160, "lb"),
  14170. name: "Front",
  14171. image: {
  14172. source: "./media/characters/xanthos/front.svg",
  14173. extra: 1,
  14174. bottom: 0.04
  14175. }
  14176. },
  14177. back: {
  14178. height: math.unit(6 + 5 / 12, "feet"),
  14179. weight: math.unit(160, "lb"),
  14180. name: "Back",
  14181. image: {
  14182. source: "./media/characters/xanthos/back.svg",
  14183. extra: 1,
  14184. bottom: 0.03
  14185. }
  14186. },
  14187. hand: {
  14188. height: math.unit(0.928, "feet"),
  14189. name: "Hand",
  14190. image: {
  14191. source: "./media/characters/xanthos/hand.svg"
  14192. }
  14193. },
  14194. foot: {
  14195. height: math.unit(1.286, "feet"),
  14196. name: "Foot",
  14197. image: {
  14198. source: "./media/characters/xanthos/foot.svg"
  14199. }
  14200. },
  14201. },
  14202. [
  14203. {
  14204. name: "Normal",
  14205. height: math.unit(6 + 5 / 12, "feet"),
  14206. default: true
  14207. },
  14208. {
  14209. name: "Normal+",
  14210. height: math.unit(6, "meters")
  14211. },
  14212. {
  14213. name: "Macro",
  14214. height: math.unit(40, "feet")
  14215. },
  14216. {
  14217. name: "Macro+",
  14218. height: math.unit(200, "meters")
  14219. },
  14220. {
  14221. name: "Megamacro",
  14222. height: math.unit(20, "km")
  14223. },
  14224. {
  14225. name: "Megamacro+",
  14226. height: math.unit(100, "km")
  14227. },
  14228. {
  14229. name: "Gigamacro",
  14230. height: math.unit(200, "megameters")
  14231. },
  14232. {
  14233. name: "Gigamacro+",
  14234. height: math.unit(1.5, "gigameters")
  14235. },
  14236. ]
  14237. ))
  14238. characterMakers.push(() => makeCharacter(
  14239. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14240. {
  14241. front: {
  14242. height: math.unit(6 + 3 / 12, "feet"),
  14243. weight: math.unit(215, "lb"),
  14244. name: "Front",
  14245. image: {
  14246. source: "./media/characters/grynn/front.svg",
  14247. extra: 4627 / 4209,
  14248. bottom: 0.047
  14249. }
  14250. },
  14251. },
  14252. [
  14253. {
  14254. name: "Micro",
  14255. height: math.unit(6, "inches")
  14256. },
  14257. {
  14258. name: "Normal",
  14259. height: math.unit(6 + 3 / 12, "feet"),
  14260. default: true
  14261. },
  14262. {
  14263. name: "Big",
  14264. height: math.unit(104, "feet")
  14265. },
  14266. {
  14267. name: "Macro",
  14268. height: math.unit(944, "feet")
  14269. },
  14270. {
  14271. name: "Macro+",
  14272. height: math.unit(9480, "feet")
  14273. },
  14274. {
  14275. name: "Megamacro",
  14276. height: math.unit(78752, "feet")
  14277. },
  14278. {
  14279. name: "Megamacro+",
  14280. height: math.unit(630128, "feet")
  14281. },
  14282. {
  14283. name: "Megamacro++",
  14284. height: math.unit(3150695, "feet")
  14285. },
  14286. ]
  14287. ))
  14288. characterMakers.push(() => makeCharacter(
  14289. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14290. {
  14291. front: {
  14292. height: math.unit(7 + 5 / 12, "feet"),
  14293. weight: math.unit(450, "lb"),
  14294. name: "Front",
  14295. image: {
  14296. source: "./media/characters/mocha-aura/front.svg",
  14297. extra: 1907 / 1817,
  14298. bottom: 0.04
  14299. }
  14300. },
  14301. back: {
  14302. height: math.unit(7 + 5 / 12, "feet"),
  14303. weight: math.unit(450, "lb"),
  14304. name: "Back",
  14305. image: {
  14306. source: "./media/characters/mocha-aura/back.svg",
  14307. extra: 1900 / 1825,
  14308. bottom: 0.045
  14309. }
  14310. },
  14311. },
  14312. [
  14313. {
  14314. name: "Nano",
  14315. height: math.unit(1, "nm")
  14316. },
  14317. {
  14318. name: "Megamicro",
  14319. height: math.unit(1, "mm")
  14320. },
  14321. {
  14322. name: "Micro",
  14323. height: math.unit(3, "inches")
  14324. },
  14325. {
  14326. name: "Normal",
  14327. height: math.unit(7 + 5 / 12, "feet"),
  14328. default: true
  14329. },
  14330. {
  14331. name: "Macro",
  14332. height: math.unit(30, "feet")
  14333. },
  14334. {
  14335. name: "Megamacro",
  14336. height: math.unit(3500, "feet")
  14337. },
  14338. {
  14339. name: "Teramacro",
  14340. height: math.unit(500000, "miles")
  14341. },
  14342. {
  14343. name: "Petamacro",
  14344. height: math.unit(50000000000000000, "parsecs")
  14345. },
  14346. ]
  14347. ))
  14348. characterMakers.push(() => makeCharacter(
  14349. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14350. {
  14351. front: {
  14352. height: math.unit(6, "feet"),
  14353. weight: math.unit(150, "lb"),
  14354. name: "Front",
  14355. image: {
  14356. source: "./media/characters/ilisha-devya/front.svg",
  14357. extra: 1053/1049,
  14358. bottom: 270/1323
  14359. }
  14360. },
  14361. back: {
  14362. height: math.unit(6, "feet"),
  14363. weight: math.unit(150, "lb"),
  14364. name: "Back",
  14365. image: {
  14366. source: "./media/characters/ilisha-devya/back.svg",
  14367. extra: 1131/1128,
  14368. bottom: 39/1170
  14369. }
  14370. },
  14371. },
  14372. [
  14373. {
  14374. name: "Macro",
  14375. height: math.unit(500, "feet"),
  14376. default: true
  14377. },
  14378. {
  14379. name: "Megamacro",
  14380. height: math.unit(10, "miles")
  14381. },
  14382. {
  14383. name: "Gigamacro",
  14384. height: math.unit(100000, "miles")
  14385. },
  14386. {
  14387. name: "Examacro",
  14388. height: math.unit(1e9, "lightyears")
  14389. },
  14390. {
  14391. name: "Omniversal",
  14392. height: math.unit(1e33, "lightyears")
  14393. },
  14394. {
  14395. name: "Beyond Infinite",
  14396. height: math.unit(1e100, "lightyears")
  14397. },
  14398. ]
  14399. ))
  14400. characterMakers.push(() => makeCharacter(
  14401. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14402. {
  14403. Side: {
  14404. height: math.unit(6, "feet"),
  14405. weight: math.unit(150, "lb"),
  14406. name: "Side",
  14407. image: {
  14408. source: "./media/characters/mira/side.svg",
  14409. extra: 900 / 799,
  14410. bottom: 0.02
  14411. }
  14412. },
  14413. },
  14414. [
  14415. {
  14416. name: "Human Size",
  14417. height: math.unit(6, "feet")
  14418. },
  14419. {
  14420. name: "Macro",
  14421. height: math.unit(100, "feet"),
  14422. default: true
  14423. },
  14424. {
  14425. name: "Megamacro",
  14426. height: math.unit(10, "miles")
  14427. },
  14428. {
  14429. name: "Gigamacro",
  14430. height: math.unit(25000, "miles")
  14431. },
  14432. {
  14433. name: "Teramacro",
  14434. height: math.unit(300, "AU")
  14435. },
  14436. {
  14437. name: "Full Size",
  14438. height: math.unit(4.5e10, "lightyears")
  14439. },
  14440. ]
  14441. ))
  14442. characterMakers.push(() => makeCharacter(
  14443. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14444. {
  14445. front: {
  14446. height: math.unit(6, "feet"),
  14447. weight: math.unit(150, "lb"),
  14448. name: "Front",
  14449. image: {
  14450. source: "./media/characters/holly/front.svg",
  14451. extra: 639 / 606
  14452. }
  14453. },
  14454. back: {
  14455. height: math.unit(6, "feet"),
  14456. weight: math.unit(150, "lb"),
  14457. name: "Back",
  14458. image: {
  14459. source: "./media/characters/holly/back.svg",
  14460. extra: 623 / 598
  14461. }
  14462. },
  14463. frontWorking: {
  14464. height: math.unit(6, "feet"),
  14465. weight: math.unit(150, "lb"),
  14466. name: "Front (Working)",
  14467. image: {
  14468. source: "./media/characters/holly/front-working.svg",
  14469. extra: 607 / 577,
  14470. bottom: 0.048
  14471. }
  14472. },
  14473. },
  14474. [
  14475. {
  14476. name: "Normal",
  14477. height: math.unit(12 + 3 / 12, "feet"),
  14478. default: true
  14479. },
  14480. ]
  14481. ))
  14482. characterMakers.push(() => makeCharacter(
  14483. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14484. {
  14485. front: {
  14486. height: math.unit(6, "feet"),
  14487. weight: math.unit(150, "lb"),
  14488. name: "Front",
  14489. image: {
  14490. source: "./media/characters/porter/front.svg",
  14491. extra: 1,
  14492. bottom: 0.01
  14493. }
  14494. },
  14495. frontRobes: {
  14496. height: math.unit(6, "feet"),
  14497. weight: math.unit(150, "lb"),
  14498. name: "Front (Robes)",
  14499. image: {
  14500. source: "./media/characters/porter/front-robes.svg",
  14501. extra: 1.01,
  14502. bottom: 0.01
  14503. }
  14504. },
  14505. },
  14506. [
  14507. {
  14508. name: "Normal",
  14509. height: math.unit(11 + 9 / 12, "feet"),
  14510. default: true
  14511. },
  14512. ]
  14513. ))
  14514. characterMakers.push(() => makeCharacter(
  14515. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14516. {
  14517. legendary: {
  14518. height: math.unit(6, "feet"),
  14519. weight: math.unit(150, "lb"),
  14520. name: "Legendary",
  14521. image: {
  14522. source: "./media/characters/lucy/legendary.svg",
  14523. extra: 1355 / 1100,
  14524. bottom: 0.045
  14525. }
  14526. },
  14527. },
  14528. [
  14529. {
  14530. name: "Legendary",
  14531. height: math.unit(86882 * 2, "miles"),
  14532. default: true
  14533. },
  14534. ]
  14535. ))
  14536. characterMakers.push(() => makeCharacter(
  14537. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14538. {
  14539. front: {
  14540. height: math.unit(6, "feet"),
  14541. weight: math.unit(150, "lb"),
  14542. name: "Front",
  14543. image: {
  14544. source: "./media/characters/drusilla/front.svg",
  14545. extra: 678 / 635,
  14546. bottom: 0.03
  14547. }
  14548. },
  14549. back: {
  14550. height: math.unit(6, "feet"),
  14551. weight: math.unit(150, "lb"),
  14552. name: "Back",
  14553. image: {
  14554. source: "./media/characters/drusilla/back.svg",
  14555. extra: 678 / 635,
  14556. bottom: 0.005
  14557. }
  14558. },
  14559. },
  14560. [
  14561. {
  14562. name: "Macro",
  14563. height: math.unit(100, "feet")
  14564. },
  14565. {
  14566. name: "Canon Height",
  14567. height: math.unit(2000, "feet"),
  14568. default: true
  14569. },
  14570. ]
  14571. ))
  14572. characterMakers.push(() => makeCharacter(
  14573. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14574. {
  14575. front: {
  14576. height: math.unit(6, "feet"),
  14577. weight: math.unit(180, "lb"),
  14578. name: "Front",
  14579. image: {
  14580. source: "./media/characters/renard-thatch/front.svg",
  14581. extra: 2411 / 2275,
  14582. bottom: 0.01
  14583. }
  14584. },
  14585. frontPosing: {
  14586. height: math.unit(6, "feet"),
  14587. weight: math.unit(180, "lb"),
  14588. name: "Front (Posing)",
  14589. image: {
  14590. source: "./media/characters/renard-thatch/front-posing.svg",
  14591. extra: 2381 / 2261,
  14592. bottom: 0.01
  14593. }
  14594. },
  14595. back: {
  14596. height: math.unit(6, "feet"),
  14597. weight: math.unit(180, "lb"),
  14598. name: "Back",
  14599. image: {
  14600. source: "./media/characters/renard-thatch/back.svg",
  14601. extra: 2428 / 2288
  14602. }
  14603. },
  14604. },
  14605. [
  14606. {
  14607. name: "Micro",
  14608. height: math.unit(3, "inches")
  14609. },
  14610. {
  14611. name: "Default",
  14612. height: math.unit(6, "feet"),
  14613. default: true
  14614. },
  14615. {
  14616. name: "Macro",
  14617. height: math.unit(75, "feet")
  14618. },
  14619. ]
  14620. ))
  14621. characterMakers.push(() => makeCharacter(
  14622. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14623. {
  14624. front: {
  14625. height: math.unit(1450, "feet"),
  14626. weight: math.unit(1.21e6, "tons"),
  14627. name: "Front",
  14628. image: {
  14629. source: "./media/characters/sekvra/front.svg",
  14630. extra: 1193/1190,
  14631. bottom: 78/1271
  14632. }
  14633. },
  14634. side: {
  14635. height: math.unit(1450, "feet"),
  14636. weight: math.unit(1.21e6, "tons"),
  14637. name: "Side",
  14638. image: {
  14639. source: "./media/characters/sekvra/side.svg",
  14640. extra: 1193/1190,
  14641. bottom: 52/1245
  14642. }
  14643. },
  14644. back: {
  14645. height: math.unit(1450, "feet"),
  14646. weight: math.unit(1.21e6, "tons"),
  14647. name: "Back",
  14648. image: {
  14649. source: "./media/characters/sekvra/back.svg",
  14650. extra: 1219/1216,
  14651. bottom: 21/1240
  14652. }
  14653. },
  14654. frontClothed: {
  14655. height: math.unit(1450, "feet"),
  14656. weight: math.unit(1.21e6, "tons"),
  14657. name: "Front (Clothed)",
  14658. image: {
  14659. source: "./media/characters/sekvra/front-clothed.svg",
  14660. extra: 1192/1189,
  14661. bottom: 79/1271
  14662. }
  14663. },
  14664. },
  14665. [
  14666. {
  14667. name: "Macro",
  14668. height: math.unit(1450, "feet"),
  14669. default: true
  14670. },
  14671. {
  14672. name: "Megamacro",
  14673. height: math.unit(15000, "feet")
  14674. },
  14675. ]
  14676. ))
  14677. characterMakers.push(() => makeCharacter(
  14678. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14679. {
  14680. front: {
  14681. height: math.unit(6, "feet"),
  14682. weight: math.unit(150, "lb"),
  14683. name: "Front",
  14684. image: {
  14685. source: "./media/characters/carmine/front.svg",
  14686. extra: 1,
  14687. bottom: 0.035
  14688. }
  14689. },
  14690. frontArmor: {
  14691. height: math.unit(6, "feet"),
  14692. weight: math.unit(150, "lb"),
  14693. name: "Front (Armor)",
  14694. image: {
  14695. source: "./media/characters/carmine/front-armor.svg",
  14696. extra: 1,
  14697. bottom: 0.035
  14698. }
  14699. },
  14700. },
  14701. [
  14702. {
  14703. name: "Large",
  14704. height: math.unit(1, "mile")
  14705. },
  14706. {
  14707. name: "Huge",
  14708. height: math.unit(40, "miles"),
  14709. default: true
  14710. },
  14711. {
  14712. name: "Colossal",
  14713. height: math.unit(2500, "miles")
  14714. },
  14715. ]
  14716. ))
  14717. characterMakers.push(() => makeCharacter(
  14718. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14719. {
  14720. front: {
  14721. height: math.unit(6, "feet"),
  14722. weight: math.unit(150, "lb"),
  14723. name: "Front",
  14724. image: {
  14725. source: "./media/characters/elyssia/front.svg",
  14726. extra: 2201 / 2035,
  14727. bottom: 0.05
  14728. }
  14729. },
  14730. frontClothed: {
  14731. height: math.unit(6, "feet"),
  14732. weight: math.unit(150, "lb"),
  14733. name: "Front (Clothed)",
  14734. image: {
  14735. source: "./media/characters/elyssia/front-clothed.svg",
  14736. extra: 2201 / 2035,
  14737. bottom: 0.05
  14738. }
  14739. },
  14740. back: {
  14741. height: math.unit(6, "feet"),
  14742. weight: math.unit(150, "lb"),
  14743. name: "Back",
  14744. image: {
  14745. source: "./media/characters/elyssia/back.svg",
  14746. extra: 2201 / 2035,
  14747. bottom: 0.013
  14748. }
  14749. },
  14750. },
  14751. [
  14752. {
  14753. name: "Smaller",
  14754. height: math.unit(150, "feet")
  14755. },
  14756. {
  14757. name: "Standard",
  14758. height: math.unit(1400, "feet"),
  14759. default: true
  14760. },
  14761. {
  14762. name: "Distracted",
  14763. height: math.unit(15000, "feet")
  14764. },
  14765. ]
  14766. ))
  14767. characterMakers.push(() => makeCharacter(
  14768. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14769. {
  14770. front: {
  14771. height: math.unit(7 + 4/12, "feet"),
  14772. weight: math.unit(690, "lb"),
  14773. name: "Front",
  14774. image: {
  14775. source: "./media/characters/geno-maxwell/front.svg",
  14776. extra: 984/856,
  14777. bottom: 87/1071
  14778. }
  14779. },
  14780. back: {
  14781. height: math.unit(7 + 4/12, "feet"),
  14782. weight: math.unit(690, "lb"),
  14783. name: "Back",
  14784. image: {
  14785. source: "./media/characters/geno-maxwell/back.svg",
  14786. extra: 981/854,
  14787. bottom: 57/1038
  14788. }
  14789. },
  14790. frontCostume: {
  14791. height: math.unit(7 + 4/12, "feet"),
  14792. weight: math.unit(690, "lb"),
  14793. name: "Front (Costume)",
  14794. image: {
  14795. source: "./media/characters/geno-maxwell/front-costume.svg",
  14796. extra: 984/856,
  14797. bottom: 87/1071
  14798. }
  14799. },
  14800. backcostume: {
  14801. height: math.unit(7 + 4/12, "feet"),
  14802. weight: math.unit(690, "lb"),
  14803. name: "Back (Costume)",
  14804. image: {
  14805. source: "./media/characters/geno-maxwell/back-costume.svg",
  14806. extra: 981/854,
  14807. bottom: 57/1038
  14808. }
  14809. },
  14810. },
  14811. [
  14812. {
  14813. name: "Micro",
  14814. height: math.unit(3, "inches")
  14815. },
  14816. {
  14817. name: "Normal",
  14818. height: math.unit(7 + 4 / 12, "feet"),
  14819. default: true
  14820. },
  14821. {
  14822. name: "Macro",
  14823. height: math.unit(220, "feet")
  14824. },
  14825. {
  14826. name: "Megamacro",
  14827. height: math.unit(11, "miles")
  14828. },
  14829. ]
  14830. ))
  14831. characterMakers.push(() => makeCharacter(
  14832. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14833. {
  14834. front: {
  14835. height: math.unit(7 + 4/12, "feet"),
  14836. weight: math.unit(750, "lb"),
  14837. name: "Front",
  14838. image: {
  14839. source: "./media/characters/regena-maxwell/front.svg",
  14840. extra: 984/856,
  14841. bottom: 87/1071
  14842. }
  14843. },
  14844. back: {
  14845. height: math.unit(7 + 4/12, "feet"),
  14846. weight: math.unit(750, "lb"),
  14847. name: "Back",
  14848. image: {
  14849. source: "./media/characters/regena-maxwell/back.svg",
  14850. extra: 981/854,
  14851. bottom: 57/1038
  14852. }
  14853. },
  14854. frontCostume: {
  14855. height: math.unit(7 + 4/12, "feet"),
  14856. weight: math.unit(750, "lb"),
  14857. name: "Front (Costume)",
  14858. image: {
  14859. source: "./media/characters/regena-maxwell/front-costume.svg",
  14860. extra: 984/856,
  14861. bottom: 87/1071
  14862. }
  14863. },
  14864. backcostume: {
  14865. height: math.unit(7 + 4/12, "feet"),
  14866. weight: math.unit(750, "lb"),
  14867. name: "Back (Costume)",
  14868. image: {
  14869. source: "./media/characters/regena-maxwell/back-costume.svg",
  14870. extra: 981/854,
  14871. bottom: 57/1038
  14872. }
  14873. },
  14874. },
  14875. [
  14876. {
  14877. name: "Normal",
  14878. height: math.unit(7 + 4 / 12, "feet"),
  14879. default: true
  14880. },
  14881. {
  14882. name: "Macro",
  14883. height: math.unit(220, "feet")
  14884. },
  14885. {
  14886. name: "Megamacro",
  14887. height: math.unit(11, "miles")
  14888. },
  14889. ]
  14890. ))
  14891. characterMakers.push(() => makeCharacter(
  14892. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14893. {
  14894. front: {
  14895. height: math.unit(6, "feet"),
  14896. weight: math.unit(150, "lb"),
  14897. name: "Front",
  14898. image: {
  14899. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14900. extra: 860 / 690,
  14901. bottom: 0.03
  14902. }
  14903. },
  14904. },
  14905. [
  14906. {
  14907. name: "Normal",
  14908. height: math.unit(1.7, "meters"),
  14909. default: true
  14910. },
  14911. ]
  14912. ))
  14913. characterMakers.push(() => makeCharacter(
  14914. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14915. {
  14916. front: {
  14917. height: math.unit(6, "feet"),
  14918. weight: math.unit(150, "lb"),
  14919. name: "Front",
  14920. image: {
  14921. source: "./media/characters/quilly/front.svg",
  14922. extra: 890 / 776
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Gigamacro",
  14929. height: math.unit(404090, "miles"),
  14930. default: true
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14936. {
  14937. front: {
  14938. height: math.unit(7 + 8 / 12, "feet"),
  14939. weight: math.unit(350, "lb"),
  14940. name: "Front",
  14941. image: {
  14942. source: "./media/characters/tempest/front.svg",
  14943. extra: 1175 / 1086,
  14944. bottom: 0.02
  14945. }
  14946. },
  14947. },
  14948. [
  14949. {
  14950. name: "Normal",
  14951. height: math.unit(7 + 8 / 12, "feet"),
  14952. default: true
  14953. },
  14954. ]
  14955. ))
  14956. characterMakers.push(() => makeCharacter(
  14957. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14958. {
  14959. side: {
  14960. height: math.unit(4 + 5 / 12, "feet"),
  14961. weight: math.unit(80, "lb"),
  14962. name: "Side",
  14963. image: {
  14964. source: "./media/characters/rodger/side.svg",
  14965. extra: 1235 / 1118
  14966. }
  14967. },
  14968. },
  14969. [
  14970. {
  14971. name: "Micro",
  14972. height: math.unit(1, "inch")
  14973. },
  14974. {
  14975. name: "Normal",
  14976. height: math.unit(4 + 5 / 12, "feet"),
  14977. default: true
  14978. },
  14979. {
  14980. name: "Macro",
  14981. height: math.unit(120, "feet")
  14982. },
  14983. ]
  14984. ))
  14985. characterMakers.push(() => makeCharacter(
  14986. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14987. {
  14988. front: {
  14989. height: math.unit(6, "feet"),
  14990. weight: math.unit(150, "lb"),
  14991. name: "Front",
  14992. image: {
  14993. source: "./media/characters/danyel/front.svg",
  14994. extra: 1185 / 1123,
  14995. bottom: 0.05
  14996. }
  14997. },
  14998. },
  14999. [
  15000. {
  15001. name: "Shrunken",
  15002. height: math.unit(0.5, "mm")
  15003. },
  15004. {
  15005. name: "Micro",
  15006. height: math.unit(1, "mm"),
  15007. default: true
  15008. },
  15009. {
  15010. name: "Upsized",
  15011. height: math.unit(5 + 5 / 12, "feet")
  15012. },
  15013. ]
  15014. ))
  15015. characterMakers.push(() => makeCharacter(
  15016. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15017. {
  15018. front: {
  15019. height: math.unit(5 + 6 / 12, "feet"),
  15020. weight: math.unit(200, "lb"),
  15021. name: "Front",
  15022. image: {
  15023. source: "./media/characters/vivian-bijoux/front.svg",
  15024. extra: 1217/1209,
  15025. bottom: 76/1293
  15026. }
  15027. },
  15028. back: {
  15029. height: math.unit(5 + 6 / 12, "feet"),
  15030. weight: math.unit(200, "lb"),
  15031. name: "Back",
  15032. image: {
  15033. source: "./media/characters/vivian-bijoux/back.svg",
  15034. extra: 1214/1208,
  15035. bottom: 51/1265
  15036. }
  15037. },
  15038. dressed: {
  15039. height: math.unit(5 + 6 / 12, "feet"),
  15040. weight: math.unit(200, "lb"),
  15041. name: "Dressed",
  15042. image: {
  15043. source: "./media/characters/vivian-bijoux/dressed.svg",
  15044. extra: 1217/1209,
  15045. bottom: 76/1293
  15046. }
  15047. },
  15048. },
  15049. [
  15050. {
  15051. name: "Normal",
  15052. height: math.unit(5 + 6 / 12, "feet"),
  15053. default: true
  15054. },
  15055. {
  15056. name: "Bad Dream",
  15057. height: math.unit(500, "feet")
  15058. },
  15059. {
  15060. name: "Nightmare",
  15061. height: math.unit(500, "miles")
  15062. },
  15063. ]
  15064. ))
  15065. characterMakers.push(() => makeCharacter(
  15066. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15067. {
  15068. front: {
  15069. height: math.unit(6 + 1 / 12, "feet"),
  15070. weight: math.unit(260, "lb"),
  15071. name: "Front",
  15072. image: {
  15073. source: "./media/characters/zeta/front.svg",
  15074. extra: 1968 / 1889,
  15075. bottom: 0.06
  15076. }
  15077. },
  15078. back: {
  15079. height: math.unit(6 + 1 / 12, "feet"),
  15080. weight: math.unit(260, "lb"),
  15081. name: "Back",
  15082. image: {
  15083. source: "./media/characters/zeta/back.svg",
  15084. extra: 1944 / 1858,
  15085. bottom: 0.03
  15086. }
  15087. },
  15088. hand: {
  15089. height: math.unit(1.112, "feet"),
  15090. name: "Hand",
  15091. image: {
  15092. source: "./media/characters/zeta/hand.svg"
  15093. }
  15094. },
  15095. foot: {
  15096. height: math.unit(1.48, "feet"),
  15097. name: "Foot",
  15098. image: {
  15099. source: "./media/characters/zeta/foot.svg"
  15100. }
  15101. },
  15102. },
  15103. [
  15104. {
  15105. name: "Micro",
  15106. height: math.unit(6, "inches")
  15107. },
  15108. {
  15109. name: "Normal",
  15110. height: math.unit(6 + 1 / 12, "feet"),
  15111. default: true
  15112. },
  15113. {
  15114. name: "Macro",
  15115. height: math.unit(20, "feet")
  15116. },
  15117. ]
  15118. ))
  15119. characterMakers.push(() => makeCharacter(
  15120. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15121. {
  15122. front: {
  15123. height: math.unit(6, "feet"),
  15124. weight: math.unit(150, "lb"),
  15125. name: "Front",
  15126. image: {
  15127. source: "./media/characters/jamie-larsen/front.svg",
  15128. extra: 962 / 933,
  15129. bottom: 0.02
  15130. }
  15131. },
  15132. back: {
  15133. height: math.unit(6, "feet"),
  15134. weight: math.unit(150, "lb"),
  15135. name: "Back",
  15136. image: {
  15137. source: "./media/characters/jamie-larsen/back.svg",
  15138. extra: 997 / 946
  15139. }
  15140. },
  15141. },
  15142. [
  15143. {
  15144. name: "Macro",
  15145. height: math.unit(28 + 7 / 12, "feet"),
  15146. default: true
  15147. },
  15148. {
  15149. name: "Macro+",
  15150. height: math.unit(180, "feet")
  15151. },
  15152. {
  15153. name: "Megamacro",
  15154. height: math.unit(10, "miles")
  15155. },
  15156. {
  15157. name: "Gigamacro",
  15158. height: math.unit(200000, "miles")
  15159. },
  15160. ]
  15161. ))
  15162. characterMakers.push(() => makeCharacter(
  15163. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15164. {
  15165. front: {
  15166. height: math.unit(6, "feet"),
  15167. weight: math.unit(120, "lb"),
  15168. name: "Front",
  15169. image: {
  15170. source: "./media/characters/vance/front.svg",
  15171. extra: 1980 / 1890,
  15172. bottom: 0.09
  15173. }
  15174. },
  15175. back: {
  15176. height: math.unit(6, "feet"),
  15177. weight: math.unit(120, "lb"),
  15178. name: "Back",
  15179. image: {
  15180. source: "./media/characters/vance/back.svg",
  15181. extra: 2081 / 1994,
  15182. bottom: 0.014
  15183. }
  15184. },
  15185. hand: {
  15186. height: math.unit(0.88, "feet"),
  15187. name: "Hand",
  15188. image: {
  15189. source: "./media/characters/vance/hand.svg"
  15190. }
  15191. },
  15192. foot: {
  15193. height: math.unit(0.64, "feet"),
  15194. name: "Foot",
  15195. image: {
  15196. source: "./media/characters/vance/foot.svg"
  15197. }
  15198. },
  15199. },
  15200. [
  15201. {
  15202. name: "Small",
  15203. height: math.unit(90, "feet"),
  15204. default: true
  15205. },
  15206. {
  15207. name: "Macro",
  15208. height: math.unit(100, "meters")
  15209. },
  15210. {
  15211. name: "Megamacro",
  15212. height: math.unit(15, "miles")
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15218. {
  15219. front: {
  15220. height: math.unit(6, "feet"),
  15221. weight: math.unit(180, "lb"),
  15222. name: "Front",
  15223. image: {
  15224. source: "./media/characters/xochitl/front.svg",
  15225. extra: 2297 / 2261,
  15226. bottom: 0.065
  15227. }
  15228. },
  15229. back: {
  15230. height: math.unit(6, "feet"),
  15231. weight: math.unit(180, "lb"),
  15232. name: "Back",
  15233. image: {
  15234. source: "./media/characters/xochitl/back.svg",
  15235. extra: 2386 / 2354,
  15236. bottom: 0.01
  15237. }
  15238. },
  15239. foot: {
  15240. height: math.unit(6 / 5 * 1.15, "feet"),
  15241. weight: math.unit(150, "lb"),
  15242. name: "Foot",
  15243. image: {
  15244. source: "./media/characters/xochitl/foot.svg"
  15245. }
  15246. },
  15247. },
  15248. [
  15249. {
  15250. name: "Macro",
  15251. height: math.unit(80, "feet")
  15252. },
  15253. {
  15254. name: "Macro+",
  15255. height: math.unit(400, "feet"),
  15256. default: true
  15257. },
  15258. {
  15259. name: "Gigamacro",
  15260. height: math.unit(80000, "miles")
  15261. },
  15262. {
  15263. name: "Gigamacro+",
  15264. height: math.unit(400000, "miles")
  15265. },
  15266. {
  15267. name: "Teramacro",
  15268. height: math.unit(300, "AU")
  15269. },
  15270. ]
  15271. ))
  15272. characterMakers.push(() => makeCharacter(
  15273. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15274. {
  15275. front: {
  15276. height: math.unit(6, "feet"),
  15277. weight: math.unit(150, "lb"),
  15278. name: "Front",
  15279. image: {
  15280. source: "./media/characters/vincent/front.svg",
  15281. extra: 1130 / 1080,
  15282. bottom: 0.055
  15283. }
  15284. },
  15285. beak: {
  15286. height: math.unit(6 * 0.1, "feet"),
  15287. name: "Beak",
  15288. image: {
  15289. source: "./media/characters/vincent/beak.svg"
  15290. }
  15291. },
  15292. hand: {
  15293. height: math.unit(6 * 0.85, "feet"),
  15294. weight: math.unit(150, "lb"),
  15295. name: "Hand",
  15296. image: {
  15297. source: "./media/characters/vincent/hand.svg"
  15298. }
  15299. },
  15300. foot: {
  15301. height: math.unit(6 * 0.19, "feet"),
  15302. weight: math.unit(150, "lb"),
  15303. name: "Foot",
  15304. image: {
  15305. source: "./media/characters/vincent/foot.svg"
  15306. }
  15307. },
  15308. },
  15309. [
  15310. {
  15311. name: "Base",
  15312. height: math.unit(6 + 5 / 12, "feet"),
  15313. default: true
  15314. },
  15315. {
  15316. name: "Macro",
  15317. height: math.unit(300, "feet")
  15318. },
  15319. {
  15320. name: "Megamacro",
  15321. height: math.unit(2, "miles")
  15322. },
  15323. {
  15324. name: "Gigamacro",
  15325. height: math.unit(1000, "miles")
  15326. },
  15327. ]
  15328. ))
  15329. characterMakers.push(() => makeCharacter(
  15330. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15331. {
  15332. front: {
  15333. height: math.unit(2, "meters"),
  15334. weight: math.unit(500, "kg"),
  15335. name: "Front",
  15336. image: {
  15337. source: "./media/characters/coatl/front.svg",
  15338. extra: 3948 / 3500,
  15339. bottom: 0.082
  15340. }
  15341. },
  15342. },
  15343. [
  15344. {
  15345. name: "Normal",
  15346. height: math.unit(4, "meters")
  15347. },
  15348. {
  15349. name: "Macro",
  15350. height: math.unit(100, "meters"),
  15351. default: true
  15352. },
  15353. {
  15354. name: "Macro+",
  15355. height: math.unit(300, "meters")
  15356. },
  15357. {
  15358. name: "Megamacro",
  15359. height: math.unit(3, "gigameters")
  15360. },
  15361. {
  15362. name: "Megamacro+",
  15363. height: math.unit(300, "terameters")
  15364. },
  15365. {
  15366. name: "Megamacro++",
  15367. height: math.unit(3, "lightyears")
  15368. },
  15369. ]
  15370. ))
  15371. characterMakers.push(() => makeCharacter(
  15372. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15373. {
  15374. front: {
  15375. height: math.unit(6, "feet"),
  15376. weight: math.unit(50, "kg"),
  15377. name: "front",
  15378. image: {
  15379. source: "./media/characters/shiroryu/front.svg",
  15380. extra: 1990 / 1935
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Mortal Mingling",
  15387. height: math.unit(3, "meters")
  15388. },
  15389. {
  15390. name: "Kaiju-ish",
  15391. height: math.unit(250, "meters")
  15392. },
  15393. {
  15394. name: "Somewhat Godly",
  15395. height: math.unit(400, "km"),
  15396. default: true
  15397. },
  15398. {
  15399. name: "Planetary",
  15400. height: math.unit(300, "megameters")
  15401. },
  15402. {
  15403. name: "Galaxy-dwarfing",
  15404. height: math.unit(450, "kiloparsecs")
  15405. },
  15406. {
  15407. name: "Universe Eater",
  15408. height: math.unit(150, "gigaparsecs")
  15409. },
  15410. {
  15411. name: "Almost Immeasurable",
  15412. height: math.unit(1.3e266, "yottaparsecs")
  15413. },
  15414. ]
  15415. ))
  15416. characterMakers.push(() => makeCharacter(
  15417. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15418. {
  15419. front: {
  15420. height: math.unit(6, "feet"),
  15421. weight: math.unit(150, "lb"),
  15422. name: "Front",
  15423. image: {
  15424. source: "./media/characters/umeko/front.svg",
  15425. extra: 1,
  15426. bottom: 0.019
  15427. }
  15428. },
  15429. frontArmored: {
  15430. height: math.unit(6, "feet"),
  15431. weight: math.unit(150, "lb"),
  15432. name: "Front (Armored)",
  15433. image: {
  15434. source: "./media/characters/umeko/front-armored.svg",
  15435. extra: 1,
  15436. bottom: 0.021
  15437. }
  15438. },
  15439. },
  15440. [
  15441. {
  15442. name: "Macro",
  15443. height: math.unit(220, "feet"),
  15444. default: true
  15445. },
  15446. {
  15447. name: "Guardian Dragon",
  15448. height: math.unit(50, "miles")
  15449. },
  15450. {
  15451. name: "Cosmic",
  15452. height: math.unit(800000, "miles")
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15458. {
  15459. front: {
  15460. height: math.unit(6, "feet"),
  15461. weight: math.unit(150, "lb"),
  15462. name: "Front",
  15463. image: {
  15464. source: "./media/characters/cassidy/front.svg",
  15465. extra: 810/808,
  15466. bottom: 41/851
  15467. }
  15468. },
  15469. },
  15470. [
  15471. {
  15472. name: "Canon Height",
  15473. height: math.unit(120, "feet"),
  15474. default: true
  15475. },
  15476. {
  15477. name: "Macro+",
  15478. height: math.unit(400, "feet")
  15479. },
  15480. {
  15481. name: "Macro++",
  15482. height: math.unit(4000, "feet")
  15483. },
  15484. {
  15485. name: "Megamacro",
  15486. height: math.unit(3, "miles")
  15487. },
  15488. ]
  15489. ))
  15490. characterMakers.push(() => makeCharacter(
  15491. { name: "Isaac", species: ["moose"], 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/isaac/front.svg",
  15499. extra: 896 / 815,
  15500. bottom: 0.11
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Human Size",
  15507. height: math.unit(8, "feet"),
  15508. default: true
  15509. },
  15510. {
  15511. name: "Macro",
  15512. height: math.unit(400, "feet")
  15513. },
  15514. {
  15515. name: "Megamacro",
  15516. height: math.unit(50, "miles")
  15517. },
  15518. {
  15519. name: "Canon Height",
  15520. height: math.unit(200, "AU")
  15521. },
  15522. ]
  15523. ))
  15524. characterMakers.push(() => makeCharacter(
  15525. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15526. {
  15527. front: {
  15528. height: math.unit(6, "feet"),
  15529. weight: math.unit(72, "kg"),
  15530. name: "Front",
  15531. image: {
  15532. source: "./media/characters/sleekit/front.svg",
  15533. extra: 4693 / 4487,
  15534. bottom: 0.012
  15535. }
  15536. },
  15537. },
  15538. [
  15539. {
  15540. name: "Minimum Height",
  15541. height: math.unit(10, "meters")
  15542. },
  15543. {
  15544. name: "Smaller",
  15545. height: math.unit(25, "meters")
  15546. },
  15547. {
  15548. name: "Larger",
  15549. height: math.unit(38, "meters"),
  15550. default: true
  15551. },
  15552. {
  15553. name: "Maximum height",
  15554. height: math.unit(100, "meters")
  15555. },
  15556. ]
  15557. ))
  15558. characterMakers.push(() => makeCharacter(
  15559. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15560. {
  15561. front: {
  15562. height: math.unit(6, "feet"),
  15563. weight: math.unit(150, "lb"),
  15564. name: "Front",
  15565. image: {
  15566. source: "./media/characters/nillia/front.svg",
  15567. extra: 2195 / 2037,
  15568. bottom: 0.005
  15569. }
  15570. },
  15571. back: {
  15572. height: math.unit(6, "feet"),
  15573. weight: math.unit(150, "lb"),
  15574. name: "Back",
  15575. image: {
  15576. source: "./media/characters/nillia/back.svg",
  15577. extra: 2195 / 2037,
  15578. bottom: 0.005
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Canon Height",
  15585. height: math.unit(489, "feet"),
  15586. default: true
  15587. }
  15588. ]
  15589. ))
  15590. characterMakers.push(() => makeCharacter(
  15591. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15592. {
  15593. front: {
  15594. height: math.unit(6, "feet"),
  15595. weight: math.unit(150, "lb"),
  15596. name: "Front",
  15597. image: {
  15598. source: "./media/characters/mesmyriza/front.svg",
  15599. extra: 2067 / 1784,
  15600. bottom: 0.035
  15601. }
  15602. },
  15603. foot: {
  15604. height: math.unit(6 / (250 / 35), "feet"),
  15605. name: "Foot",
  15606. image: {
  15607. source: "./media/characters/mesmyriza/foot.svg"
  15608. }
  15609. },
  15610. },
  15611. [
  15612. {
  15613. name: "Macro",
  15614. height: math.unit(457, "meters"),
  15615. default: true
  15616. },
  15617. {
  15618. name: "Megamacro",
  15619. height: math.unit(8, "megameters")
  15620. },
  15621. ]
  15622. ))
  15623. characterMakers.push(() => makeCharacter(
  15624. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15625. {
  15626. front: {
  15627. height: math.unit(6, "feet"),
  15628. weight: math.unit(250, "lb"),
  15629. name: "Front",
  15630. image: {
  15631. source: "./media/characters/saudade/front.svg",
  15632. extra: 1172 / 1139,
  15633. bottom: 0.035
  15634. }
  15635. },
  15636. },
  15637. [
  15638. {
  15639. name: "Micro",
  15640. height: math.unit(3, "inches")
  15641. },
  15642. {
  15643. name: "Normal",
  15644. height: math.unit(6, "feet"),
  15645. default: true
  15646. },
  15647. {
  15648. name: "Macro",
  15649. height: math.unit(50, "feet")
  15650. },
  15651. {
  15652. name: "Megamacro",
  15653. height: math.unit(2800, "feet")
  15654. },
  15655. ]
  15656. ))
  15657. characterMakers.push(() => makeCharacter(
  15658. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15659. {
  15660. front: {
  15661. height: math.unit(5 + 4 / 12, "feet"),
  15662. weight: math.unit(100, "lb"),
  15663. name: "Front",
  15664. image: {
  15665. source: "./media/characters/keireer/front.svg",
  15666. extra: 716 / 666,
  15667. bottom: 0.05
  15668. }
  15669. },
  15670. },
  15671. [
  15672. {
  15673. name: "Normal",
  15674. height: math.unit(5 + 4 / 12, "feet"),
  15675. default: true
  15676. },
  15677. ]
  15678. ))
  15679. characterMakers.push(() => makeCharacter(
  15680. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15681. {
  15682. front: {
  15683. height: math.unit(5.5, "feet"),
  15684. weight: math.unit(90, "kg"),
  15685. name: "Front",
  15686. image: {
  15687. source: "./media/characters/mirja/front.svg",
  15688. extra: 1452/1262,
  15689. bottom: 67/1519
  15690. }
  15691. },
  15692. frontDressed: {
  15693. height: math.unit(5.5, "feet"),
  15694. weight: math.unit(90, "lb"),
  15695. name: "Front (Dressed)",
  15696. image: {
  15697. source: "./media/characters/mirja/dressed.svg",
  15698. extra: 1452/1262,
  15699. bottom: 67/1519
  15700. }
  15701. },
  15702. back: {
  15703. height: math.unit(6, "feet"),
  15704. weight: math.unit(90, "lb"),
  15705. name: "Back",
  15706. image: {
  15707. source: "./media/characters/mirja/back.svg",
  15708. extra: 1892/1795,
  15709. bottom: 48/1940
  15710. }
  15711. },
  15712. maw: {
  15713. height: math.unit(1.312, "feet"),
  15714. name: "Maw",
  15715. image: {
  15716. source: "./media/characters/mirja/maw.svg"
  15717. }
  15718. },
  15719. paw: {
  15720. height: math.unit(1.15, "feet"),
  15721. name: "Paw",
  15722. image: {
  15723. source: "./media/characters/mirja/paw.svg"
  15724. }
  15725. },
  15726. },
  15727. [
  15728. {
  15729. name: "\"Incognito\"",
  15730. height: math.unit(3, "meters")
  15731. },
  15732. {
  15733. name: "Strolling Size",
  15734. height: math.unit(15, "km")
  15735. },
  15736. {
  15737. name: "Larger Strolling Size",
  15738. height: math.unit(400, "km")
  15739. },
  15740. {
  15741. name: "Preferred Size",
  15742. height: math.unit(5000, "km"),
  15743. default: true
  15744. },
  15745. {
  15746. name: "True Size",
  15747. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15748. },
  15749. ]
  15750. ))
  15751. characterMakers.push(() => makeCharacter(
  15752. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15753. {
  15754. front: {
  15755. height: math.unit(15, "feet"),
  15756. weight: math.unit(880, "kg"),
  15757. name: "Front",
  15758. image: {
  15759. source: "./media/characters/nightraver/front.svg",
  15760. extra: 2444 / 2160,
  15761. bottom: 0.027
  15762. }
  15763. },
  15764. back: {
  15765. height: math.unit(15, "feet"),
  15766. weight: math.unit(880, "kg"),
  15767. name: "Back",
  15768. image: {
  15769. source: "./media/characters/nightraver/back.svg",
  15770. extra: 2309 / 2180,
  15771. bottom: 0.005
  15772. }
  15773. },
  15774. sole: {
  15775. height: math.unit(2.878, "feet"),
  15776. name: "Sole",
  15777. image: {
  15778. source: "./media/characters/nightraver/sole.svg"
  15779. }
  15780. },
  15781. foot: {
  15782. height: math.unit(2.285, "feet"),
  15783. name: "Foot",
  15784. image: {
  15785. source: "./media/characters/nightraver/foot.svg"
  15786. }
  15787. },
  15788. maw: {
  15789. height: math.unit(2.67, "feet"),
  15790. name: "Maw",
  15791. image: {
  15792. source: "./media/characters/nightraver/maw.svg"
  15793. }
  15794. },
  15795. },
  15796. [
  15797. {
  15798. name: "Micro",
  15799. height: math.unit(1, "cm")
  15800. },
  15801. {
  15802. name: "Normal",
  15803. height: math.unit(15, "feet"),
  15804. default: true
  15805. },
  15806. {
  15807. name: "Macro",
  15808. height: math.unit(300, "feet")
  15809. },
  15810. {
  15811. name: "Megamacro",
  15812. height: math.unit(300, "miles")
  15813. },
  15814. {
  15815. name: "Gigamacro",
  15816. height: math.unit(10000, "miles")
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15822. {
  15823. side: {
  15824. height: math.unit(2, "inches"),
  15825. weight: math.unit(5, "grams"),
  15826. name: "Side",
  15827. image: {
  15828. source: "./media/characters/arc/side.svg"
  15829. }
  15830. },
  15831. },
  15832. [
  15833. {
  15834. name: "Micro",
  15835. height: math.unit(2, "inches"),
  15836. default: true
  15837. },
  15838. ]
  15839. ))
  15840. characterMakers.push(() => makeCharacter(
  15841. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15842. {
  15843. front: {
  15844. height: math.unit(1.1938, "meters"),
  15845. weight: math.unit(54, "kg"),
  15846. name: "Front",
  15847. image: {
  15848. source: "./media/characters/nebula-shahar/front.svg",
  15849. extra: 1642 / 1436,
  15850. bottom: 0.06
  15851. }
  15852. },
  15853. },
  15854. [
  15855. {
  15856. name: "Megamicro",
  15857. height: math.unit(0.3, "mm")
  15858. },
  15859. {
  15860. name: "Micro",
  15861. height: math.unit(3, "cm")
  15862. },
  15863. {
  15864. name: "Normal",
  15865. height: math.unit(138, "cm"),
  15866. default: true
  15867. },
  15868. {
  15869. name: "Macro",
  15870. height: math.unit(30, "m")
  15871. },
  15872. ]
  15873. ))
  15874. characterMakers.push(() => makeCharacter(
  15875. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15876. {
  15877. front: {
  15878. height: math.unit(5.24, "feet"),
  15879. weight: math.unit(150, "lb"),
  15880. name: "Front",
  15881. image: {
  15882. source: "./media/characters/shayla/front.svg",
  15883. extra: 1512 / 1414,
  15884. bottom: 0.01
  15885. }
  15886. },
  15887. back: {
  15888. height: math.unit(5.24, "feet"),
  15889. weight: math.unit(150, "lb"),
  15890. name: "Back",
  15891. image: {
  15892. source: "./media/characters/shayla/back.svg",
  15893. extra: 1512 / 1414
  15894. }
  15895. },
  15896. hand: {
  15897. height: math.unit(0.7781496062992126, "feet"),
  15898. name: "Hand",
  15899. image: {
  15900. source: "./media/characters/shayla/hand.svg"
  15901. }
  15902. },
  15903. foot: {
  15904. height: math.unit(1.4206036745406823, "feet"),
  15905. name: "Foot",
  15906. image: {
  15907. source: "./media/characters/shayla/foot.svg"
  15908. }
  15909. },
  15910. },
  15911. [
  15912. {
  15913. name: "Micro",
  15914. height: math.unit(0.32, "feet")
  15915. },
  15916. {
  15917. name: "Normal",
  15918. height: math.unit(5.24, "feet"),
  15919. default: true
  15920. },
  15921. {
  15922. name: "Macro",
  15923. height: math.unit(492.12, "feet")
  15924. },
  15925. {
  15926. name: "Megamacro",
  15927. height: math.unit(186.41, "miles")
  15928. },
  15929. ]
  15930. ))
  15931. characterMakers.push(() => makeCharacter(
  15932. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15933. {
  15934. front: {
  15935. height: math.unit(2.2, "m"),
  15936. weight: math.unit(120, "kg"),
  15937. name: "Front",
  15938. image: {
  15939. source: "./media/characters/pia-jr/front.svg",
  15940. extra: 1000 / 970,
  15941. bottom: 0.035
  15942. }
  15943. },
  15944. hand: {
  15945. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15946. name: "Hand",
  15947. image: {
  15948. source: "./media/characters/pia-jr/hand.svg"
  15949. }
  15950. },
  15951. paw: {
  15952. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15953. name: "Paw",
  15954. image: {
  15955. source: "./media/characters/pia-jr/paw.svg"
  15956. }
  15957. },
  15958. },
  15959. [
  15960. {
  15961. name: "Micro",
  15962. height: math.unit(1.2, "cm")
  15963. },
  15964. {
  15965. name: "Normal",
  15966. height: math.unit(2.2, "m"),
  15967. default: true
  15968. },
  15969. {
  15970. name: "Macro",
  15971. height: math.unit(180, "m")
  15972. },
  15973. {
  15974. name: "Megamacro",
  15975. height: math.unit(420, "km")
  15976. },
  15977. ]
  15978. ))
  15979. characterMakers.push(() => makeCharacter(
  15980. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15981. {
  15982. front: {
  15983. height: math.unit(2, "m"),
  15984. weight: math.unit(115, "kg"),
  15985. name: "Front",
  15986. image: {
  15987. source: "./media/characters/pia-sr/front.svg",
  15988. extra: 760 / 730,
  15989. bottom: 0.015
  15990. }
  15991. },
  15992. back: {
  15993. height: math.unit(2, "m"),
  15994. weight: math.unit(115, "kg"),
  15995. name: "Back",
  15996. image: {
  15997. source: "./media/characters/pia-sr/back.svg",
  15998. extra: 760 / 730,
  15999. bottom: 0.01
  16000. }
  16001. },
  16002. hand: {
  16003. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16004. name: "Hand",
  16005. image: {
  16006. source: "./media/characters/pia-sr/hand.svg"
  16007. }
  16008. },
  16009. foot: {
  16010. height: math.unit(1.83, "feet"),
  16011. name: "Foot",
  16012. image: {
  16013. source: "./media/characters/pia-sr/foot.svg"
  16014. }
  16015. },
  16016. },
  16017. [
  16018. {
  16019. name: "Micro",
  16020. height: math.unit(88, "mm")
  16021. },
  16022. {
  16023. name: "Normal",
  16024. height: math.unit(2, "m"),
  16025. default: true
  16026. },
  16027. {
  16028. name: "Macro",
  16029. height: math.unit(200, "m")
  16030. },
  16031. {
  16032. name: "Megamacro",
  16033. height: math.unit(420, "km")
  16034. },
  16035. ]
  16036. ))
  16037. characterMakers.push(() => makeCharacter(
  16038. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16039. {
  16040. front: {
  16041. height: math.unit(8 + 2 / 12, "feet"),
  16042. weight: math.unit(300, "lb"),
  16043. name: "Front",
  16044. image: {
  16045. source: "./media/characters/kibibyte/front.svg",
  16046. extra: 2221 / 2098,
  16047. bottom: 0.04
  16048. }
  16049. },
  16050. },
  16051. [
  16052. {
  16053. name: "Normal",
  16054. height: math.unit(8 + 2 / 12, "feet"),
  16055. default: true
  16056. },
  16057. {
  16058. name: "Socialable Macro",
  16059. height: math.unit(50, "feet")
  16060. },
  16061. {
  16062. name: "Macro",
  16063. height: math.unit(300, "feet")
  16064. },
  16065. {
  16066. name: "Megamacro",
  16067. height: math.unit(500, "miles")
  16068. },
  16069. ]
  16070. ))
  16071. characterMakers.push(() => makeCharacter(
  16072. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16073. {
  16074. front: {
  16075. height: math.unit(6, "feet"),
  16076. weight: math.unit(150, "lb"),
  16077. name: "Front",
  16078. image: {
  16079. source: "./media/characters/felix/front.svg",
  16080. extra: 762 / 722,
  16081. bottom: 0.02
  16082. }
  16083. },
  16084. frontClothed: {
  16085. height: math.unit(6, "feet"),
  16086. weight: math.unit(150, "lb"),
  16087. name: "Front (Clothed)",
  16088. image: {
  16089. source: "./media/characters/felix/front-clothed.svg",
  16090. extra: 762 / 722,
  16091. bottom: 0.02
  16092. }
  16093. },
  16094. },
  16095. [
  16096. {
  16097. name: "Normal",
  16098. height: math.unit(6 + 8 / 12, "feet"),
  16099. default: true
  16100. },
  16101. {
  16102. name: "Macro",
  16103. height: math.unit(2600, "feet")
  16104. },
  16105. {
  16106. name: "Megamacro",
  16107. height: math.unit(450, "miles")
  16108. },
  16109. ]
  16110. ))
  16111. characterMakers.push(() => makeCharacter(
  16112. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16113. {
  16114. front: {
  16115. height: math.unit(6 + 1 / 12, "feet"),
  16116. weight: math.unit(250, "lb"),
  16117. name: "Front",
  16118. image: {
  16119. source: "./media/characters/tobo/front.svg",
  16120. extra: 608 / 586,
  16121. bottom: 0.023
  16122. }
  16123. },
  16124. back: {
  16125. height: math.unit(6 + 1 / 12, "feet"),
  16126. weight: math.unit(250, "lb"),
  16127. name: "Back",
  16128. image: {
  16129. source: "./media/characters/tobo/back.svg",
  16130. extra: 608 / 586
  16131. }
  16132. },
  16133. },
  16134. [
  16135. {
  16136. name: "Nano",
  16137. height: math.unit(2, "nm")
  16138. },
  16139. {
  16140. name: "Megamicro",
  16141. height: math.unit(0.1, "mm")
  16142. },
  16143. {
  16144. name: "Micro",
  16145. height: math.unit(1, "inch"),
  16146. default: true
  16147. },
  16148. {
  16149. name: "Human-sized",
  16150. height: math.unit(6 + 1 / 12, "feet")
  16151. },
  16152. {
  16153. name: "Macro",
  16154. height: math.unit(250, "feet")
  16155. },
  16156. {
  16157. name: "Megamacro",
  16158. height: math.unit(75, "miles")
  16159. },
  16160. {
  16161. name: "Texas-sized",
  16162. height: math.unit(750, "miles")
  16163. },
  16164. {
  16165. name: "Teramacro",
  16166. height: math.unit(50000, "miles")
  16167. },
  16168. ]
  16169. ))
  16170. characterMakers.push(() => makeCharacter(
  16171. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16172. {
  16173. front: {
  16174. height: math.unit(6, "feet"),
  16175. weight: math.unit(269, "lb"),
  16176. name: "Front",
  16177. image: {
  16178. source: "./media/characters/danny-kapowsky/front.svg",
  16179. extra: 766 / 736,
  16180. bottom: 0.044
  16181. }
  16182. },
  16183. back: {
  16184. height: math.unit(6, "feet"),
  16185. weight: math.unit(269, "lb"),
  16186. name: "Back",
  16187. image: {
  16188. source: "./media/characters/danny-kapowsky/back.svg",
  16189. extra: 797 / 760,
  16190. bottom: 0.025
  16191. }
  16192. },
  16193. },
  16194. [
  16195. {
  16196. name: "Macro",
  16197. height: math.unit(150, "feet"),
  16198. default: true
  16199. },
  16200. {
  16201. name: "Macro+",
  16202. height: math.unit(200, "feet")
  16203. },
  16204. {
  16205. name: "Macro++",
  16206. height: math.unit(300, "feet")
  16207. },
  16208. {
  16209. name: "Macro+++",
  16210. height: math.unit(400, "feet")
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16216. {
  16217. side: {
  16218. height: math.unit(6, "feet"),
  16219. weight: math.unit(170, "lb"),
  16220. name: "Side",
  16221. image: {
  16222. source: "./media/characters/finn/side.svg",
  16223. extra: 1953 / 1807,
  16224. bottom: 0.057
  16225. }
  16226. },
  16227. },
  16228. [
  16229. {
  16230. name: "Megamacro",
  16231. height: math.unit(14445, "feet"),
  16232. default: true
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16238. {
  16239. front: {
  16240. height: math.unit(5 + 6 / 12, "feet"),
  16241. weight: math.unit(125, "lb"),
  16242. name: "Front",
  16243. image: {
  16244. source: "./media/characters/roy/front.svg",
  16245. extra: 1,
  16246. bottom: 0.11
  16247. }
  16248. },
  16249. },
  16250. [
  16251. {
  16252. name: "Micro",
  16253. height: math.unit(3, "inches"),
  16254. default: true
  16255. },
  16256. {
  16257. name: "Normal",
  16258. height: math.unit(5 + 6 / 12, "feet")
  16259. },
  16260. {
  16261. name: "Lesser Macro",
  16262. height: math.unit(60, "feet")
  16263. },
  16264. {
  16265. name: "Greater Macro",
  16266. height: math.unit(120, "feet")
  16267. },
  16268. ]
  16269. ))
  16270. characterMakers.push(() => makeCharacter(
  16271. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16272. {
  16273. front: {
  16274. height: math.unit(6, "feet"),
  16275. weight: math.unit(100, "lb"),
  16276. name: "Front",
  16277. image: {
  16278. source: "./media/characters/aevsivs/front.svg",
  16279. extra: 1,
  16280. bottom: 0.03
  16281. }
  16282. },
  16283. back: {
  16284. height: math.unit(6, "feet"),
  16285. weight: math.unit(100, "lb"),
  16286. name: "Back",
  16287. image: {
  16288. source: "./media/characters/aevsivs/back.svg"
  16289. }
  16290. },
  16291. },
  16292. [
  16293. {
  16294. name: "Micro",
  16295. height: math.unit(2, "inches"),
  16296. default: true
  16297. },
  16298. {
  16299. name: "Normal",
  16300. height: math.unit(5, "feet")
  16301. },
  16302. ]
  16303. ))
  16304. characterMakers.push(() => makeCharacter(
  16305. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16306. {
  16307. front: {
  16308. height: math.unit(5 + 7 / 12, "feet"),
  16309. weight: math.unit(159, "lb"),
  16310. name: "Front",
  16311. image: {
  16312. source: "./media/characters/hildegard/front.svg",
  16313. extra: 289 / 269,
  16314. bottom: 7.63 / 297.8
  16315. }
  16316. },
  16317. back: {
  16318. height: math.unit(5 + 7 / 12, "feet"),
  16319. weight: math.unit(159, "lb"),
  16320. name: "Back",
  16321. image: {
  16322. source: "./media/characters/hildegard/back.svg",
  16323. extra: 280 / 260,
  16324. bottom: 2.3 / 282
  16325. }
  16326. },
  16327. },
  16328. [
  16329. {
  16330. name: "Normal",
  16331. height: math.unit(5 + 7 / 12, "feet"),
  16332. default: true
  16333. },
  16334. ]
  16335. ))
  16336. characterMakers.push(() => makeCharacter(
  16337. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16338. {
  16339. bernard: {
  16340. height: math.unit(2 + 7 / 12, "feet"),
  16341. weight: math.unit(66, "lb"),
  16342. name: "Bernard",
  16343. rename: true,
  16344. image: {
  16345. source: "./media/characters/bernard-wilder/bernard.svg",
  16346. extra: 192 / 128,
  16347. bottom: 0.05
  16348. }
  16349. },
  16350. wilder: {
  16351. height: math.unit(5 + 8 / 12, "feet"),
  16352. weight: math.unit(143, "lb"),
  16353. name: "Wilder",
  16354. rename: true,
  16355. image: {
  16356. source: "./media/characters/bernard-wilder/wilder.svg",
  16357. extra: 361 / 312,
  16358. bottom: 0.02
  16359. }
  16360. },
  16361. },
  16362. [
  16363. {
  16364. name: "Normal",
  16365. height: math.unit(2 + 7 / 12, "feet"),
  16366. default: true
  16367. },
  16368. ]
  16369. ))
  16370. characterMakers.push(() => makeCharacter(
  16371. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16372. {
  16373. anthro: {
  16374. height: math.unit(6 + 1 / 12, "feet"),
  16375. weight: math.unit(155, "lb"),
  16376. name: "Anthro",
  16377. image: {
  16378. source: "./media/characters/hearth/anthro.svg",
  16379. extra: 1178/1136,
  16380. bottom: 28/1206
  16381. }
  16382. },
  16383. feral: {
  16384. height: math.unit(3.78, "feet"),
  16385. weight: math.unit(35, "kg"),
  16386. name: "Feral",
  16387. image: {
  16388. source: "./media/characters/hearth/feral.svg",
  16389. extra: 153 / 135,
  16390. bottom: 0.03
  16391. }
  16392. },
  16393. },
  16394. [
  16395. {
  16396. name: "Normal",
  16397. height: math.unit(6 + 1 / 12, "feet"),
  16398. default: true
  16399. },
  16400. ]
  16401. ))
  16402. characterMakers.push(() => makeCharacter(
  16403. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16404. {
  16405. front: {
  16406. height: math.unit(6, "feet"),
  16407. weight: math.unit(182, "lb"),
  16408. name: "Front",
  16409. image: {
  16410. source: "./media/characters/ingrid/front.svg",
  16411. extra: 294 / 268,
  16412. bottom: 0.027
  16413. }
  16414. },
  16415. },
  16416. [
  16417. {
  16418. name: "Normal",
  16419. height: math.unit(6, "feet"),
  16420. default: true
  16421. },
  16422. ]
  16423. ))
  16424. characterMakers.push(() => makeCharacter(
  16425. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16426. {
  16427. eevee: {
  16428. height: math.unit(2 + 10 / 12, "feet"),
  16429. weight: math.unit(86, "lb"),
  16430. name: "Malgam",
  16431. image: {
  16432. source: "./media/characters/malgam/eevee.svg",
  16433. extra: 952/784,
  16434. bottom: 38/990
  16435. }
  16436. },
  16437. sylveon: {
  16438. height: math.unit(4, "feet"),
  16439. weight: math.unit(101, "lb"),
  16440. name: "Future Malgam",
  16441. rename: true,
  16442. image: {
  16443. source: "./media/characters/malgam/sylveon.svg",
  16444. extra: 371 / 325,
  16445. bottom: 0.015
  16446. }
  16447. },
  16448. gigantamax: {
  16449. height: math.unit(50, "feet"),
  16450. name: "Gigantamax Malgam",
  16451. rename: true,
  16452. image: {
  16453. source: "./media/characters/malgam/gigantamax.svg"
  16454. }
  16455. },
  16456. },
  16457. [
  16458. {
  16459. name: "Normal",
  16460. height: math.unit(2 + 10 / 12, "feet"),
  16461. default: true
  16462. },
  16463. ]
  16464. ))
  16465. characterMakers.push(() => makeCharacter(
  16466. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16467. {
  16468. front: {
  16469. height: math.unit(5 + 11 / 12, "feet"),
  16470. weight: math.unit(188, "lb"),
  16471. name: "Front",
  16472. image: {
  16473. source: "./media/characters/fleur/front.svg",
  16474. extra: 309 / 283,
  16475. bottom: 0.007
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Normal",
  16482. height: math.unit(5 + 11 / 12, "feet"),
  16483. default: true
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16489. {
  16490. front: {
  16491. height: math.unit(5 + 4 / 12, "feet"),
  16492. weight: math.unit(122, "lb"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/jude/front.svg",
  16496. extra: 288 / 273,
  16497. bottom: 0.03
  16498. }
  16499. },
  16500. },
  16501. [
  16502. {
  16503. name: "Normal",
  16504. height: math.unit(5 + 4 / 12, "feet"),
  16505. default: true
  16506. },
  16507. ]
  16508. ))
  16509. characterMakers.push(() => makeCharacter(
  16510. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16511. {
  16512. front: {
  16513. height: math.unit(5 + 11 / 12, "feet"),
  16514. weight: math.unit(190, "lb"),
  16515. name: "Front",
  16516. image: {
  16517. source: "./media/characters/seara/front.svg",
  16518. extra: 1,
  16519. bottom: 0.05
  16520. }
  16521. },
  16522. },
  16523. [
  16524. {
  16525. name: "Normal",
  16526. height: math.unit(5 + 11 / 12, "feet"),
  16527. default: true
  16528. },
  16529. ]
  16530. ))
  16531. characterMakers.push(() => makeCharacter(
  16532. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16533. {
  16534. front: {
  16535. height: math.unit(16 + 5 / 12, "feet"),
  16536. weight: math.unit(524, "lb"),
  16537. name: "Front",
  16538. image: {
  16539. source: "./media/characters/caspian-lugia/front.svg",
  16540. extra: 1,
  16541. bottom: 0.04
  16542. }
  16543. },
  16544. },
  16545. [
  16546. {
  16547. name: "Normal",
  16548. height: math.unit(16 + 5 / 12, "feet"),
  16549. default: true
  16550. },
  16551. ]
  16552. ))
  16553. characterMakers.push(() => makeCharacter(
  16554. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16555. {
  16556. front: {
  16557. height: math.unit(5 + 7 / 12, "feet"),
  16558. weight: math.unit(170, "lb"),
  16559. name: "Front",
  16560. image: {
  16561. source: "./media/characters/mika/front.svg",
  16562. extra: 1,
  16563. bottom: 0.016
  16564. }
  16565. },
  16566. },
  16567. [
  16568. {
  16569. name: "Normal",
  16570. height: math.unit(5 + 7 / 12, "feet"),
  16571. default: true
  16572. },
  16573. ]
  16574. ))
  16575. characterMakers.push(() => makeCharacter(
  16576. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16577. {
  16578. front: {
  16579. height: math.unit(6 + 2 / 12, "feet"),
  16580. weight: math.unit(268, "lb"),
  16581. name: "Front",
  16582. image: {
  16583. source: "./media/characters/sol/front.svg",
  16584. extra: 247 / 231,
  16585. bottom: 0.05
  16586. }
  16587. },
  16588. },
  16589. [
  16590. {
  16591. name: "Normal",
  16592. height: math.unit(6 + 2 / 12, "feet"),
  16593. default: true
  16594. },
  16595. ]
  16596. ))
  16597. characterMakers.push(() => makeCharacter(
  16598. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16599. {
  16600. buizel: {
  16601. height: math.unit(2 + 5 / 12, "feet"),
  16602. weight: math.unit(87, "lb"),
  16603. name: "Front",
  16604. image: {
  16605. source: "./media/characters/umiko/buizel.svg",
  16606. extra: 172 / 157,
  16607. bottom: 0.01
  16608. },
  16609. form: "buizel",
  16610. default: true
  16611. },
  16612. floatzel: {
  16613. height: math.unit(5 + 9 / 12, "feet"),
  16614. weight: math.unit(250, "lb"),
  16615. name: "Front",
  16616. image: {
  16617. source: "./media/characters/umiko/floatzel.svg",
  16618. extra: 1076/1006,
  16619. bottom: 15/1091
  16620. },
  16621. form: "floatzel",
  16622. default: true
  16623. },
  16624. },
  16625. [
  16626. {
  16627. name: "Normal",
  16628. height: math.unit(2 + 5 / 12, "feet"),
  16629. form: "buizel",
  16630. default: true
  16631. },
  16632. {
  16633. name: "Normal",
  16634. height: math.unit(5 + 9 / 12, "feet"),
  16635. form: "floatzel",
  16636. default: true
  16637. },
  16638. ],
  16639. {
  16640. "buizel": {
  16641. name: "Buizel"
  16642. },
  16643. "floatzel": {
  16644. name: "Floatzel",
  16645. default: true
  16646. }
  16647. }
  16648. ))
  16649. characterMakers.push(() => makeCharacter(
  16650. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16651. {
  16652. front: {
  16653. height: math.unit(6 + 2 / 12, "feet"),
  16654. weight: math.unit(146, "lb"),
  16655. name: "Front",
  16656. image: {
  16657. source: "./media/characters/iliac/front.svg",
  16658. extra: 389 / 365,
  16659. bottom: 0.035
  16660. }
  16661. },
  16662. },
  16663. [
  16664. {
  16665. name: "Normal",
  16666. height: math.unit(6 + 2 / 12, "feet"),
  16667. default: true
  16668. },
  16669. ]
  16670. ))
  16671. characterMakers.push(() => makeCharacter(
  16672. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16673. {
  16674. front: {
  16675. height: math.unit(6, "feet"),
  16676. weight: math.unit(170, "lb"),
  16677. name: "Front",
  16678. image: {
  16679. source: "./media/characters/topaz/front.svg",
  16680. extra: 317 / 303,
  16681. bottom: 0.055
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(6, "feet"),
  16689. default: true
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16695. {
  16696. front: {
  16697. height: math.unit(5 + 11 / 12, "feet"),
  16698. weight: math.unit(144, "lb"),
  16699. name: "Front",
  16700. image: {
  16701. source: "./media/characters/gabriel/front.svg",
  16702. extra: 285 / 262,
  16703. bottom: 0.004
  16704. }
  16705. },
  16706. },
  16707. [
  16708. {
  16709. name: "Normal",
  16710. height: math.unit(5 + 11 / 12, "feet"),
  16711. default: true
  16712. },
  16713. ]
  16714. ))
  16715. characterMakers.push(() => makeCharacter(
  16716. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16717. {
  16718. side: {
  16719. height: math.unit(6 + 5 / 12, "feet"),
  16720. weight: math.unit(300, "lb"),
  16721. name: "Side",
  16722. image: {
  16723. source: "./media/characters/tempest-suicune/side.svg",
  16724. extra: 195 / 154,
  16725. bottom: 0.04
  16726. }
  16727. },
  16728. },
  16729. [
  16730. {
  16731. name: "Normal",
  16732. height: math.unit(6 + 5 / 12, "feet"),
  16733. default: true
  16734. },
  16735. ]
  16736. ))
  16737. characterMakers.push(() => makeCharacter(
  16738. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16739. {
  16740. front: {
  16741. height: math.unit(7 + 2 / 12, "feet"),
  16742. weight: math.unit(322, "lb"),
  16743. name: "Front",
  16744. image: {
  16745. source: "./media/characters/vulcan/front.svg",
  16746. extra: 154 / 147,
  16747. bottom: 0.04
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Normal",
  16754. height: math.unit(7 + 2 / 12, "feet"),
  16755. default: true
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16761. {
  16762. front: {
  16763. height: math.unit(5 + 10 / 12, "feet"),
  16764. weight: math.unit(264, "lb"),
  16765. name: "Front",
  16766. image: {
  16767. source: "./media/characters/gault/front.svg",
  16768. extra: 161 / 140,
  16769. bottom: 0.028
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Normal",
  16776. height: math.unit(5 + 10 / 12, "feet"),
  16777. default: true
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16783. {
  16784. front: {
  16785. height: math.unit(6, "feet"),
  16786. weight: math.unit(150, "lb"),
  16787. name: "Front",
  16788. image: {
  16789. source: "./media/characters/shard/front.svg",
  16790. extra: 273 / 238,
  16791. bottom: 0.02
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Normal",
  16798. height: math.unit(3 + 6 / 12, "feet"),
  16799. default: true
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(5 + 11 / 12, "feet"),
  16808. weight: math.unit(146, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/ashe/front.svg",
  16812. extra: 400 / 373,
  16813. bottom: 0.01
  16814. }
  16815. },
  16816. },
  16817. [
  16818. {
  16819. name: "Normal",
  16820. height: math.unit(5 + 11 / 12, "feet"),
  16821. default: true
  16822. },
  16823. ]
  16824. ))
  16825. characterMakers.push(() => makeCharacter(
  16826. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16827. {
  16828. front: {
  16829. height: math.unit(5 + 5 / 12, "feet"),
  16830. weight: math.unit(135, "lb"),
  16831. name: "Front",
  16832. image: {
  16833. source: "./media/characters/beatrix/front.svg",
  16834. extra: 392 / 379,
  16835. bottom: 0.01
  16836. }
  16837. },
  16838. },
  16839. [
  16840. {
  16841. name: "Normal",
  16842. height: math.unit(6, "feet"),
  16843. default: true
  16844. },
  16845. ]
  16846. ))
  16847. characterMakers.push(() => makeCharacter(
  16848. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16849. {
  16850. front: {
  16851. height: math.unit(6 + 2/12, "feet"),
  16852. weight: math.unit(135, "lb"),
  16853. name: "Front",
  16854. image: {
  16855. source: "./media/characters/ignatius/front.svg",
  16856. extra: 1380/1259,
  16857. bottom: 27/1407
  16858. }
  16859. },
  16860. },
  16861. [
  16862. {
  16863. name: "Normal",
  16864. height: math.unit(6 + 2/12, "feet"),
  16865. default: true
  16866. },
  16867. ]
  16868. ))
  16869. characterMakers.push(() => makeCharacter(
  16870. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16871. {
  16872. front: {
  16873. height: math.unit(6 + 2 / 12, "feet"),
  16874. weight: math.unit(138, "lb"),
  16875. name: "Front",
  16876. image: {
  16877. source: "./media/characters/mei-li/front.svg",
  16878. extra: 237 / 229,
  16879. bottom: 0.03
  16880. }
  16881. },
  16882. },
  16883. [
  16884. {
  16885. name: "Normal",
  16886. height: math.unit(6 + 2 / 12, "feet"),
  16887. default: true
  16888. },
  16889. ]
  16890. ))
  16891. characterMakers.push(() => makeCharacter(
  16892. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16893. {
  16894. front: {
  16895. height: math.unit(2 + 4 / 12, "feet"),
  16896. weight: math.unit(62, "lb"),
  16897. name: "Front",
  16898. image: {
  16899. source: "./media/characters/puru/front.svg",
  16900. extra: 206 / 149,
  16901. bottom: 0.06
  16902. }
  16903. },
  16904. },
  16905. [
  16906. {
  16907. name: "Normal",
  16908. height: math.unit(2 + 4 / 12, "feet"),
  16909. default: true
  16910. },
  16911. ]
  16912. ))
  16913. characterMakers.push(() => makeCharacter(
  16914. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16915. {
  16916. anthro: {
  16917. height: math.unit(5 + 8/12, "feet"),
  16918. weight: math.unit(200, "lb"),
  16919. energyNeed: math.unit(2000, "kcal"),
  16920. name: "Anthro",
  16921. image: {
  16922. source: "./media/characters/kee/anthro.svg",
  16923. extra: 3251/3184,
  16924. bottom: 250/3501
  16925. }
  16926. },
  16927. taur: {
  16928. height: math.unit(11, "feet"),
  16929. weight: math.unit(500, "lb"),
  16930. energyNeed: math.unit(5000, "kcal"),
  16931. name: "Taur",
  16932. image: {
  16933. source: "./media/characters/kee/taur.svg",
  16934. extra: 1362/1320,
  16935. bottom: 83/1445
  16936. }
  16937. },
  16938. },
  16939. [
  16940. {
  16941. name: "Normal",
  16942. height: math.unit(5 + 8/12, "feet"),
  16943. default: true
  16944. },
  16945. {
  16946. name: "Macro",
  16947. height: math.unit(35, "feet")
  16948. },
  16949. ]
  16950. ))
  16951. characterMakers.push(() => makeCharacter(
  16952. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16953. {
  16954. anthro: {
  16955. height: math.unit(7, "feet"),
  16956. weight: math.unit(190, "lb"),
  16957. name: "Anthro",
  16958. image: {
  16959. source: "./media/characters/cobalt-dracha/anthro.svg",
  16960. extra: 231 / 225,
  16961. bottom: 0.04
  16962. }
  16963. },
  16964. feral: {
  16965. height: math.unit(9 + 7 / 12, "feet"),
  16966. weight: math.unit(294, "lb"),
  16967. name: "Feral",
  16968. image: {
  16969. source: "./media/characters/cobalt-dracha/feral.svg",
  16970. extra: 692 / 633,
  16971. bottom: 0.05
  16972. }
  16973. },
  16974. },
  16975. [
  16976. {
  16977. name: "Normal",
  16978. height: math.unit(7, "feet"),
  16979. default: true
  16980. },
  16981. ]
  16982. ))
  16983. characterMakers.push(() => makeCharacter(
  16984. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16985. {
  16986. fallen: {
  16987. height: math.unit(11 + 8 / 12, "feet"),
  16988. weight: math.unit(485, "lb"),
  16989. name: "Java (Fallen)",
  16990. rename: true,
  16991. image: {
  16992. source: "./media/characters/java/fallen.svg",
  16993. extra: 226 / 208,
  16994. bottom: 0.005
  16995. }
  16996. },
  16997. godkin: {
  16998. height: math.unit(10 + 6 / 12, "feet"),
  16999. weight: math.unit(328, "lb"),
  17000. name: "Java (Godkin)",
  17001. rename: true,
  17002. image: {
  17003. source: "./media/characters/java/godkin.svg",
  17004. extra: 1104/1068,
  17005. bottom: 36/1140
  17006. }
  17007. },
  17008. },
  17009. [
  17010. {
  17011. name: "Normal",
  17012. height: math.unit(11 + 8 / 12, "feet"),
  17013. default: true
  17014. },
  17015. ]
  17016. ))
  17017. characterMakers.push(() => makeCharacter(
  17018. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17019. {
  17020. front: {
  17021. height: math.unit(5 + 9 / 12, "feet"),
  17022. weight: math.unit(170, "lb"),
  17023. name: "Front",
  17024. image: {
  17025. source: "./media/characters/purna/front.svg",
  17026. extra: 239 / 229,
  17027. bottom: 0.01
  17028. }
  17029. },
  17030. },
  17031. [
  17032. {
  17033. name: "Normal",
  17034. height: math.unit(5 + 9 / 12, "feet"),
  17035. default: true
  17036. },
  17037. ]
  17038. ))
  17039. characterMakers.push(() => makeCharacter(
  17040. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17041. {
  17042. front: {
  17043. height: math.unit(5 + 9 / 12, "feet"),
  17044. weight: math.unit(142, "lb"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/kuva/front.svg",
  17048. extra: 281 / 271,
  17049. bottom: 0.006
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Normal",
  17056. height: math.unit(5 + 9 / 12, "feet"),
  17057. default: true
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17063. {
  17064. anthro: {
  17065. height: math.unit(9 + 2 / 12, "feet"),
  17066. weight: math.unit(270, "lb"),
  17067. name: "Anthro",
  17068. image: {
  17069. source: "./media/characters/embra/anthro.svg",
  17070. extra: 200 / 187,
  17071. bottom: 0.02
  17072. }
  17073. },
  17074. feral: {
  17075. height: math.unit(18 + 8 / 12, "feet"),
  17076. weight: math.unit(576, "lb"),
  17077. name: "Feral",
  17078. image: {
  17079. source: "./media/characters/embra/feral.svg",
  17080. extra: 152 / 137,
  17081. bottom: 0.037
  17082. }
  17083. },
  17084. },
  17085. [
  17086. {
  17087. name: "Normal",
  17088. height: math.unit(9 + 2 / 12, "feet"),
  17089. default: true
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17095. {
  17096. anthro: {
  17097. height: math.unit(10 + 9 / 12, "feet"),
  17098. weight: math.unit(224, "lb"),
  17099. name: "Anthro",
  17100. image: {
  17101. source: "./media/characters/grottos/anthro.svg",
  17102. extra: 350 / 332,
  17103. bottom: 0.045
  17104. }
  17105. },
  17106. feral: {
  17107. height: math.unit(20 + 7 / 12, "feet"),
  17108. weight: math.unit(629, "lb"),
  17109. name: "Feral",
  17110. image: {
  17111. source: "./media/characters/grottos/feral.svg",
  17112. extra: 207 / 190,
  17113. bottom: 0.05
  17114. }
  17115. },
  17116. },
  17117. [
  17118. {
  17119. name: "Normal",
  17120. height: math.unit(10 + 9 / 12, "feet"),
  17121. default: true
  17122. },
  17123. ]
  17124. ))
  17125. characterMakers.push(() => makeCharacter(
  17126. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17127. {
  17128. anthro: {
  17129. height: math.unit(9 + 6 / 12, "feet"),
  17130. weight: math.unit(298, "lb"),
  17131. name: "Anthro",
  17132. image: {
  17133. source: "./media/characters/frifna/anthro.svg",
  17134. extra: 282 / 269,
  17135. bottom: 0.015
  17136. }
  17137. },
  17138. feral: {
  17139. height: math.unit(16 + 2 / 12, "feet"),
  17140. weight: math.unit(624, "lb"),
  17141. name: "Feral",
  17142. image: {
  17143. source: "./media/characters/frifna/feral.svg"
  17144. }
  17145. },
  17146. },
  17147. [
  17148. {
  17149. name: "Normal",
  17150. height: math.unit(9 + 6 / 12, "feet"),
  17151. default: true
  17152. },
  17153. ]
  17154. ))
  17155. characterMakers.push(() => makeCharacter(
  17156. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17157. {
  17158. front: {
  17159. height: math.unit(6 + 2 / 12, "feet"),
  17160. weight: math.unit(168, "lb"),
  17161. name: "Front",
  17162. image: {
  17163. source: "./media/characters/elise/front.svg",
  17164. extra: 276 / 271
  17165. }
  17166. },
  17167. },
  17168. [
  17169. {
  17170. name: "Normal",
  17171. height: math.unit(6 + 2 / 12, "feet"),
  17172. default: true
  17173. },
  17174. ]
  17175. ))
  17176. characterMakers.push(() => makeCharacter(
  17177. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17178. {
  17179. front: {
  17180. height: math.unit(5 + 10 / 12, "feet"),
  17181. weight: math.unit(210, "lb"),
  17182. name: "Front",
  17183. image: {
  17184. source: "./media/characters/glade/front.svg",
  17185. extra: 258 / 247,
  17186. bottom: 0.008
  17187. }
  17188. },
  17189. },
  17190. [
  17191. {
  17192. name: "Normal",
  17193. height: math.unit(5 + 10 / 12, "feet"),
  17194. default: true
  17195. },
  17196. ]
  17197. ))
  17198. characterMakers.push(() => makeCharacter(
  17199. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17200. {
  17201. front: {
  17202. height: math.unit(5 + 10 / 12, "feet"),
  17203. weight: math.unit(129, "lb"),
  17204. name: "Front",
  17205. image: {
  17206. source: "./media/characters/rina/front.svg",
  17207. extra: 266 / 255,
  17208. bottom: 0.005
  17209. }
  17210. },
  17211. },
  17212. [
  17213. {
  17214. name: "Normal",
  17215. height: math.unit(5 + 10 / 12, "feet"),
  17216. default: true
  17217. },
  17218. ]
  17219. ))
  17220. characterMakers.push(() => makeCharacter(
  17221. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17222. {
  17223. front: {
  17224. height: math.unit(6 + 1 / 12, "feet"),
  17225. weight: math.unit(192, "lb"),
  17226. name: "Front",
  17227. image: {
  17228. source: "./media/characters/veronica/front.svg",
  17229. extra: 319 / 309,
  17230. bottom: 0.005
  17231. }
  17232. },
  17233. },
  17234. [
  17235. {
  17236. name: "Normal",
  17237. height: math.unit(6 + 1 / 12, "feet"),
  17238. default: true
  17239. },
  17240. ]
  17241. ))
  17242. characterMakers.push(() => makeCharacter(
  17243. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17244. {
  17245. front: {
  17246. height: math.unit(9 + 3 / 12, "feet"),
  17247. weight: math.unit(1100, "lb"),
  17248. name: "Front",
  17249. image: {
  17250. source: "./media/characters/braxton/front.svg",
  17251. extra: 1057 / 984,
  17252. bottom: 0.05
  17253. }
  17254. },
  17255. },
  17256. [
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(9 + 3 / 12, "feet")
  17260. },
  17261. {
  17262. name: "Giant",
  17263. height: math.unit(300, "feet"),
  17264. default: true
  17265. },
  17266. {
  17267. name: "Macro",
  17268. height: math.unit(700, "feet")
  17269. },
  17270. {
  17271. name: "Megamacro",
  17272. height: math.unit(6000, "feet")
  17273. },
  17274. ]
  17275. ))
  17276. characterMakers.push(() => makeCharacter(
  17277. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17278. {
  17279. front: {
  17280. height: math.unit(6 + 7 / 12, "feet"),
  17281. weight: math.unit(150, "lb"),
  17282. name: "Front",
  17283. image: {
  17284. source: "./media/characters/blue-feyonics/front.svg",
  17285. extra: 1403 / 1306,
  17286. bottom: 0.047
  17287. }
  17288. },
  17289. },
  17290. [
  17291. {
  17292. name: "Normal",
  17293. height: math.unit(6 + 7 / 12, "feet"),
  17294. default: true
  17295. },
  17296. ]
  17297. ))
  17298. characterMakers.push(() => makeCharacter(
  17299. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17300. {
  17301. front: {
  17302. height: math.unit(1.8, "meters"),
  17303. weight: math.unit(60, "kg"),
  17304. name: "Front",
  17305. image: {
  17306. source: "./media/characters/maxwell/front.svg",
  17307. extra: 2060 / 1873
  17308. }
  17309. },
  17310. },
  17311. [
  17312. {
  17313. name: "Micro",
  17314. height: math.unit(1, "mm")
  17315. },
  17316. {
  17317. name: "Normal",
  17318. height: math.unit(1.8, "meter"),
  17319. default: true
  17320. },
  17321. {
  17322. name: "Macro",
  17323. height: math.unit(30, "meters")
  17324. },
  17325. {
  17326. name: "Megamacro",
  17327. height: math.unit(10, "km")
  17328. },
  17329. ]
  17330. ))
  17331. characterMakers.push(() => makeCharacter(
  17332. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17333. {
  17334. front: {
  17335. height: math.unit(6, "feet"),
  17336. weight: math.unit(150, "lb"),
  17337. name: "Front",
  17338. image: {
  17339. source: "./media/characters/jack/front.svg",
  17340. extra: 1754 / 1640,
  17341. bottom: 0.01
  17342. }
  17343. },
  17344. },
  17345. [
  17346. {
  17347. name: "Normal",
  17348. height: math.unit(80000, "feet"),
  17349. default: true
  17350. },
  17351. {
  17352. name: "Max size",
  17353. height: math.unit(10, "lightyears")
  17354. },
  17355. ]
  17356. ))
  17357. characterMakers.push(() => makeCharacter(
  17358. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17359. {
  17360. urban: {
  17361. height: math.unit(5, "feet"),
  17362. weight: math.unit(240, "lb"),
  17363. name: "Urban",
  17364. image: {
  17365. source: "./media/characters/cafat/urban.svg",
  17366. extra: 1223/1126,
  17367. bottom: 205/1428
  17368. }
  17369. },
  17370. summer: {
  17371. height: math.unit(5, "feet"),
  17372. weight: math.unit(240, "lb"),
  17373. name: "Summer",
  17374. image: {
  17375. source: "./media/characters/cafat/summer.svg",
  17376. extra: 1223/1126,
  17377. bottom: 205/1428
  17378. }
  17379. },
  17380. winter: {
  17381. height: math.unit(5, "feet"),
  17382. weight: math.unit(240, "lb"),
  17383. name: "Winter",
  17384. image: {
  17385. source: "./media/characters/cafat/winter.svg",
  17386. extra: 1223/1126,
  17387. bottom: 205/1428
  17388. }
  17389. },
  17390. lingerie: {
  17391. height: math.unit(5, "feet"),
  17392. weight: math.unit(240, "lb"),
  17393. name: "Lingerie",
  17394. image: {
  17395. source: "./media/characters/cafat/lingerie.svg",
  17396. extra: 1223/1126,
  17397. bottom: 205/1428
  17398. }
  17399. },
  17400. upright: {
  17401. height: math.unit(6.3, "feet"),
  17402. weight: math.unit(240, "lb"),
  17403. name: "Upright",
  17404. image: {
  17405. source: "./media/characters/cafat/upright.svg",
  17406. bottom: 0.01
  17407. }
  17408. },
  17409. uprightFull: {
  17410. height: math.unit(6.3, "feet"),
  17411. weight: math.unit(240, "lb"),
  17412. name: "Upright (Full)",
  17413. image: {
  17414. source: "./media/characters/cafat/upright-full.svg",
  17415. bottom: 0.01
  17416. }
  17417. },
  17418. },
  17419. [
  17420. {
  17421. name: "Small",
  17422. height: math.unit(5, "feet"),
  17423. default: true
  17424. },
  17425. {
  17426. name: "Large",
  17427. height: math.unit(13, "feet")
  17428. },
  17429. ]
  17430. ))
  17431. characterMakers.push(() => makeCharacter(
  17432. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17433. {
  17434. front: {
  17435. height: math.unit(6, "feet"),
  17436. weight: math.unit(150, "lb"),
  17437. name: "Front",
  17438. image: {
  17439. source: "./media/characters/verin-raharra/front.svg",
  17440. extra: 5019 / 4835,
  17441. bottom: 0.023
  17442. }
  17443. },
  17444. },
  17445. [
  17446. {
  17447. name: "Normal",
  17448. height: math.unit(7 + 5 / 12, "feet"),
  17449. default: true
  17450. },
  17451. {
  17452. name: "Upsized",
  17453. height: math.unit(20, "feet")
  17454. },
  17455. ]
  17456. ))
  17457. characterMakers.push(() => makeCharacter(
  17458. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17459. {
  17460. front: {
  17461. height: math.unit(7, "feet"),
  17462. weight: math.unit(230, "lb"),
  17463. name: "Front",
  17464. image: {
  17465. source: "./media/characters/nakata/front.svg",
  17466. extra: 1.005,
  17467. bottom: 0.01
  17468. }
  17469. },
  17470. },
  17471. [
  17472. {
  17473. name: "Normal",
  17474. height: math.unit(7, "feet"),
  17475. default: true
  17476. },
  17477. {
  17478. name: "Big",
  17479. height: math.unit(14, "feet")
  17480. },
  17481. {
  17482. name: "Macro",
  17483. height: math.unit(400, "feet")
  17484. },
  17485. ]
  17486. ))
  17487. characterMakers.push(() => makeCharacter(
  17488. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17489. {
  17490. front: {
  17491. height: math.unit(4.91, "feet"),
  17492. weight: math.unit(100, "lb"),
  17493. name: "Front",
  17494. image: {
  17495. source: "./media/characters/lily/front.svg",
  17496. extra: 1585 / 1415,
  17497. bottom: 0.02
  17498. }
  17499. },
  17500. },
  17501. [
  17502. {
  17503. name: "Normal",
  17504. height: math.unit(4.91, "feet"),
  17505. default: true
  17506. },
  17507. ]
  17508. ))
  17509. characterMakers.push(() => makeCharacter(
  17510. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17511. {
  17512. laying: {
  17513. height: math.unit(4 + 4 / 12, "feet"),
  17514. weight: math.unit(600, "lb"),
  17515. name: "Laying",
  17516. image: {
  17517. source: "./media/characters/sheila/laying.svg",
  17518. extra: 1333 / 1265,
  17519. bottom: 0.16
  17520. }
  17521. },
  17522. },
  17523. [
  17524. {
  17525. name: "Normal",
  17526. height: math.unit(4 + 4 / 12, "feet"),
  17527. default: true
  17528. },
  17529. ]
  17530. ))
  17531. characterMakers.push(() => makeCharacter(
  17532. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17533. {
  17534. front: {
  17535. height: math.unit(6, "feet"),
  17536. weight: math.unit(190, "lb"),
  17537. name: "Front",
  17538. image: {
  17539. source: "./media/characters/sax/front.svg",
  17540. extra: 1187 / 973,
  17541. bottom: 0.042
  17542. }
  17543. },
  17544. },
  17545. [
  17546. {
  17547. name: "Micro",
  17548. height: math.unit(4, "inches"),
  17549. default: true
  17550. },
  17551. ]
  17552. ))
  17553. characterMakers.push(() => makeCharacter(
  17554. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17555. {
  17556. front: {
  17557. height: math.unit(6, "feet"),
  17558. weight: math.unit(150, "lb"),
  17559. name: "Front",
  17560. image: {
  17561. source: "./media/characters/pandora/front.svg",
  17562. extra: 2720 / 2556,
  17563. bottom: 0.015
  17564. }
  17565. },
  17566. back: {
  17567. height: math.unit(6, "feet"),
  17568. weight: math.unit(150, "lb"),
  17569. name: "Back",
  17570. image: {
  17571. source: "./media/characters/pandora/back.svg",
  17572. extra: 2720 / 2556,
  17573. bottom: 0.01
  17574. }
  17575. },
  17576. beans: {
  17577. height: math.unit(6 / 8, "feet"),
  17578. name: "Beans",
  17579. image: {
  17580. source: "./media/characters/pandora/beans.svg"
  17581. }
  17582. },
  17583. collar: {
  17584. height: math.unit(0.31, "feet"),
  17585. name: "Collar",
  17586. image: {
  17587. source: "./media/characters/pandora/collar.svg"
  17588. }
  17589. },
  17590. skirt: {
  17591. height: math.unit(6, "feet"),
  17592. weight: math.unit(150, "lb"),
  17593. name: "Skirt",
  17594. image: {
  17595. source: "./media/characters/pandora/skirt.svg",
  17596. extra: 1622 / 1525,
  17597. bottom: 0.015
  17598. }
  17599. },
  17600. hoodie: {
  17601. height: math.unit(6, "feet"),
  17602. weight: math.unit(150, "lb"),
  17603. name: "Hoodie",
  17604. image: {
  17605. source: "./media/characters/pandora/hoodie.svg",
  17606. extra: 1622 / 1525,
  17607. bottom: 0.015
  17608. }
  17609. },
  17610. casual: {
  17611. height: math.unit(6, "feet"),
  17612. weight: math.unit(150, "lb"),
  17613. name: "Casual",
  17614. image: {
  17615. source: "./media/characters/pandora/casual.svg",
  17616. extra: 1622 / 1525,
  17617. bottom: 0.015
  17618. }
  17619. },
  17620. },
  17621. [
  17622. {
  17623. name: "Normal",
  17624. height: math.unit(6, "feet")
  17625. },
  17626. {
  17627. name: "Big Steppy",
  17628. height: math.unit(1, "km"),
  17629. default: true
  17630. },
  17631. {
  17632. name: "Galactic Steppy",
  17633. height: math.unit(2, "gigameters")
  17634. },
  17635. ]
  17636. ))
  17637. characterMakers.push(() => makeCharacter(
  17638. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17639. {
  17640. side: {
  17641. height: math.unit(10, "feet"),
  17642. weight: math.unit(800, "kg"),
  17643. name: "Side",
  17644. image: {
  17645. source: "./media/characters/venio-darcony/side.svg",
  17646. extra: 1373 / 1003,
  17647. bottom: 0.037
  17648. }
  17649. },
  17650. front: {
  17651. height: math.unit(19, "feet"),
  17652. weight: math.unit(800, "kg"),
  17653. name: "Front",
  17654. image: {
  17655. source: "./media/characters/venio-darcony/front.svg"
  17656. }
  17657. },
  17658. back: {
  17659. height: math.unit(19, "feet"),
  17660. weight: math.unit(800, "kg"),
  17661. name: "Back",
  17662. image: {
  17663. source: "./media/characters/venio-darcony/back.svg"
  17664. }
  17665. },
  17666. sideNsfw: {
  17667. height: math.unit(10, "feet"),
  17668. weight: math.unit(800, "kg"),
  17669. name: "Side (NSFW)",
  17670. image: {
  17671. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17672. extra: 1373 / 1003,
  17673. bottom: 0.037
  17674. }
  17675. },
  17676. frontNsfw: {
  17677. height: math.unit(19, "feet"),
  17678. weight: math.unit(800, "kg"),
  17679. name: "Front (NSFW)",
  17680. image: {
  17681. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17682. }
  17683. },
  17684. backNsfw: {
  17685. height: math.unit(19, "feet"),
  17686. weight: math.unit(800, "kg"),
  17687. name: "Back (NSFW)",
  17688. image: {
  17689. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17690. }
  17691. },
  17692. sideArmored: {
  17693. height: math.unit(10, "feet"),
  17694. weight: math.unit(800, "kg"),
  17695. name: "Side (Armored)",
  17696. image: {
  17697. source: "./media/characters/venio-darcony/side-armored.svg",
  17698. extra: 1373 / 1003,
  17699. bottom: 0.037
  17700. }
  17701. },
  17702. frontArmored: {
  17703. height: math.unit(19, "feet"),
  17704. weight: math.unit(900, "kg"),
  17705. name: "Front (Armored)",
  17706. image: {
  17707. source: "./media/characters/venio-darcony/front-armored.svg"
  17708. }
  17709. },
  17710. backArmored: {
  17711. height: math.unit(19, "feet"),
  17712. weight: math.unit(900, "kg"),
  17713. name: "Back (Armored)",
  17714. image: {
  17715. source: "./media/characters/venio-darcony/back-armored.svg"
  17716. }
  17717. },
  17718. sword: {
  17719. height: math.unit(10, "feet"),
  17720. weight: math.unit(50, "lb"),
  17721. name: "Sword",
  17722. image: {
  17723. source: "./media/characters/venio-darcony/sword.svg"
  17724. }
  17725. },
  17726. },
  17727. [
  17728. {
  17729. name: "Normal",
  17730. height: math.unit(10, "feet")
  17731. },
  17732. {
  17733. name: "Macro",
  17734. height: math.unit(130, "feet"),
  17735. default: true
  17736. },
  17737. {
  17738. name: "Macro+",
  17739. height: math.unit(240, "feet")
  17740. },
  17741. ]
  17742. ))
  17743. characterMakers.push(() => makeCharacter(
  17744. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17745. {
  17746. front: {
  17747. height: math.unit(6, "feet"),
  17748. weight: math.unit(150, "lb"),
  17749. name: "Front",
  17750. image: {
  17751. source: "./media/characters/veski/front.svg",
  17752. extra: 1299 / 1225,
  17753. bottom: 0.04
  17754. }
  17755. },
  17756. back: {
  17757. height: math.unit(6, "feet"),
  17758. weight: math.unit(150, "lb"),
  17759. name: "Back",
  17760. image: {
  17761. source: "./media/characters/veski/back.svg",
  17762. extra: 1299 / 1225,
  17763. bottom: 0.008
  17764. }
  17765. },
  17766. maw: {
  17767. height: math.unit(1.5 * 1.21, "feet"),
  17768. name: "Maw",
  17769. image: {
  17770. source: "./media/characters/veski/maw.svg"
  17771. }
  17772. },
  17773. },
  17774. [
  17775. {
  17776. name: "Macro",
  17777. height: math.unit(2, "km"),
  17778. default: true
  17779. },
  17780. ]
  17781. ))
  17782. characterMakers.push(() => makeCharacter(
  17783. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17784. {
  17785. front: {
  17786. height: math.unit(5 + 7 / 12, "feet"),
  17787. name: "Front",
  17788. image: {
  17789. source: "./media/characters/isabelle/front.svg",
  17790. extra: 2130 / 1976,
  17791. bottom: 0.05
  17792. }
  17793. },
  17794. },
  17795. [
  17796. {
  17797. name: "Supermicro",
  17798. height: math.unit(10, "micrometers")
  17799. },
  17800. {
  17801. name: "Micro",
  17802. height: math.unit(1, "inch")
  17803. },
  17804. {
  17805. name: "Tiny",
  17806. height: math.unit(5, "inches")
  17807. },
  17808. {
  17809. name: "Standard",
  17810. height: math.unit(5 + 7 / 12, "inches")
  17811. },
  17812. {
  17813. name: "Macro",
  17814. height: math.unit(80, "meters"),
  17815. default: true
  17816. },
  17817. {
  17818. name: "Megamacro",
  17819. height: math.unit(250, "meters")
  17820. },
  17821. {
  17822. name: "Gigamacro",
  17823. height: math.unit(5, "km")
  17824. },
  17825. {
  17826. name: "Cosmic",
  17827. height: math.unit(2.5e6, "miles")
  17828. },
  17829. ]
  17830. ))
  17831. characterMakers.push(() => makeCharacter(
  17832. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17833. {
  17834. front: {
  17835. height: math.unit(6, "feet"),
  17836. weight: math.unit(150, "lb"),
  17837. name: "Front",
  17838. image: {
  17839. source: "./media/characters/hanzo/front.svg",
  17840. extra: 374 / 344,
  17841. bottom: 0.02
  17842. }
  17843. },
  17844. },
  17845. [
  17846. {
  17847. name: "Normal",
  17848. height: math.unit(8, "feet"),
  17849. default: true
  17850. },
  17851. ]
  17852. ))
  17853. characterMakers.push(() => makeCharacter(
  17854. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17855. {
  17856. front: {
  17857. height: math.unit(7, "feet"),
  17858. weight: math.unit(130, "lb"),
  17859. name: "Front",
  17860. image: {
  17861. source: "./media/characters/anna/front.svg",
  17862. extra: 169 / 145,
  17863. bottom: 0.06
  17864. }
  17865. },
  17866. full: {
  17867. height: math.unit(4.96, "feet"),
  17868. weight: math.unit(220, "lb"),
  17869. name: "Full",
  17870. image: {
  17871. source: "./media/characters/anna/full.svg",
  17872. extra: 138 / 114,
  17873. bottom: 0.15
  17874. }
  17875. },
  17876. tongue: {
  17877. height: math.unit(2.53, "feet"),
  17878. name: "Tongue",
  17879. image: {
  17880. source: "./media/characters/anna/tongue.svg"
  17881. }
  17882. },
  17883. },
  17884. [
  17885. {
  17886. name: "Normal",
  17887. height: math.unit(7, "feet"),
  17888. default: true
  17889. },
  17890. ]
  17891. ))
  17892. characterMakers.push(() => makeCharacter(
  17893. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17894. {
  17895. front: {
  17896. height: math.unit(7, "feet"),
  17897. weight: math.unit(150, "lb"),
  17898. name: "Front",
  17899. image: {
  17900. source: "./media/characters/ian-corvid/front.svg",
  17901. extra: 150 / 142,
  17902. bottom: 0.02
  17903. }
  17904. },
  17905. back: {
  17906. height: math.unit(7, "feet"),
  17907. weight: math.unit(150, "lb"),
  17908. name: "Back",
  17909. image: {
  17910. source: "./media/characters/ian-corvid/back.svg",
  17911. extra: 150 / 143,
  17912. bottom: 0.01
  17913. }
  17914. },
  17915. stomping: {
  17916. height: math.unit(7, "feet"),
  17917. weight: math.unit(150, "lb"),
  17918. name: "Stomping",
  17919. image: {
  17920. source: "./media/characters/ian-corvid/stomping.svg",
  17921. extra: 76 / 72
  17922. }
  17923. },
  17924. sitting: {
  17925. height: math.unit(7 / 1.8, "feet"),
  17926. weight: math.unit(150, "lb"),
  17927. name: "Sitting",
  17928. image: {
  17929. source: "./media/characters/ian-corvid/sitting.svg",
  17930. extra: 1400 / 1269,
  17931. bottom: 0.15
  17932. }
  17933. },
  17934. },
  17935. [
  17936. {
  17937. name: "Tiny Microw",
  17938. height: math.unit(1, "inch")
  17939. },
  17940. {
  17941. name: "Microw",
  17942. height: math.unit(6, "inches")
  17943. },
  17944. {
  17945. name: "Crow",
  17946. height: math.unit(7 + 1 / 12, "feet"),
  17947. default: true
  17948. },
  17949. {
  17950. name: "Macrow",
  17951. height: math.unit(176, "feet")
  17952. },
  17953. ]
  17954. ))
  17955. characterMakers.push(() => makeCharacter(
  17956. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17957. {
  17958. front: {
  17959. height: math.unit(5 + 7 / 12, "feet"),
  17960. weight: math.unit(147, "lb"),
  17961. name: "Front",
  17962. image: {
  17963. source: "./media/characters/natalie-kellon/front.svg",
  17964. extra: 1214 / 1141,
  17965. bottom: 0.02
  17966. }
  17967. },
  17968. },
  17969. [
  17970. {
  17971. name: "Micro",
  17972. height: math.unit(1 / 16, "inch")
  17973. },
  17974. {
  17975. name: "Tiny",
  17976. height: math.unit(4, "inches")
  17977. },
  17978. {
  17979. name: "Normal",
  17980. height: math.unit(5 + 7 / 12, "feet"),
  17981. default: true
  17982. },
  17983. {
  17984. name: "Amazon",
  17985. height: math.unit(12, "feet")
  17986. },
  17987. {
  17988. name: "Giantess",
  17989. height: math.unit(160, "meters")
  17990. },
  17991. {
  17992. name: "Titaness",
  17993. height: math.unit(800, "meters")
  17994. },
  17995. ]
  17996. ))
  17997. characterMakers.push(() => makeCharacter(
  17998. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17999. {
  18000. front: {
  18001. height: math.unit(6, "feet"),
  18002. weight: math.unit(150, "lb"),
  18003. name: "Front",
  18004. image: {
  18005. source: "./media/characters/alluria/front.svg",
  18006. extra: 806 / 738,
  18007. bottom: 0.01
  18008. }
  18009. },
  18010. side: {
  18011. height: math.unit(6, "feet"),
  18012. weight: math.unit(150, "lb"),
  18013. name: "Side",
  18014. image: {
  18015. source: "./media/characters/alluria/side.svg",
  18016. extra: 800 / 750,
  18017. }
  18018. },
  18019. back: {
  18020. height: math.unit(6, "feet"),
  18021. weight: math.unit(150, "lb"),
  18022. name: "Back",
  18023. image: {
  18024. source: "./media/characters/alluria/back.svg",
  18025. extra: 806 / 738,
  18026. }
  18027. },
  18028. frontMaid: {
  18029. height: math.unit(6, "feet"),
  18030. weight: math.unit(150, "lb"),
  18031. name: "Front (Maid)",
  18032. image: {
  18033. source: "./media/characters/alluria/front-maid.svg",
  18034. extra: 806 / 738,
  18035. bottom: 0.01
  18036. }
  18037. },
  18038. sideMaid: {
  18039. height: math.unit(6, "feet"),
  18040. weight: math.unit(150, "lb"),
  18041. name: "Side (Maid)",
  18042. image: {
  18043. source: "./media/characters/alluria/side-maid.svg",
  18044. extra: 800 / 750,
  18045. bottom: 0.005
  18046. }
  18047. },
  18048. backMaid: {
  18049. height: math.unit(6, "feet"),
  18050. weight: math.unit(150, "lb"),
  18051. name: "Back (Maid)",
  18052. image: {
  18053. source: "./media/characters/alluria/back-maid.svg",
  18054. extra: 806 / 738,
  18055. }
  18056. },
  18057. },
  18058. [
  18059. {
  18060. name: "Micro",
  18061. height: math.unit(6, "inches"),
  18062. default: true
  18063. },
  18064. ]
  18065. ))
  18066. characterMakers.push(() => makeCharacter(
  18067. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18068. {
  18069. front: {
  18070. height: math.unit(6, "feet"),
  18071. weight: math.unit(150, "lb"),
  18072. name: "Front",
  18073. image: {
  18074. source: "./media/characters/kyle/front.svg",
  18075. extra: 1069 / 962,
  18076. bottom: 77.228 / 1727.45
  18077. }
  18078. },
  18079. },
  18080. [
  18081. {
  18082. name: "Macro",
  18083. height: math.unit(150, "feet"),
  18084. default: true
  18085. },
  18086. ]
  18087. ))
  18088. characterMakers.push(() => makeCharacter(
  18089. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18090. {
  18091. front: {
  18092. height: math.unit(6, "feet"),
  18093. weight: math.unit(300, "lb"),
  18094. name: "Front",
  18095. image: {
  18096. source: "./media/characters/duncan/front.svg",
  18097. extra: 1650 / 1482,
  18098. bottom: 0.05
  18099. }
  18100. },
  18101. },
  18102. [
  18103. {
  18104. name: "Macro",
  18105. height: math.unit(100, "feet"),
  18106. default: true
  18107. },
  18108. ]
  18109. ))
  18110. characterMakers.push(() => makeCharacter(
  18111. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18112. {
  18113. front: {
  18114. height: math.unit(5 + 4 / 12, "feet"),
  18115. weight: math.unit(220, "lb"),
  18116. name: "Front",
  18117. image: {
  18118. source: "./media/characters/memory/front.svg",
  18119. extra: 3641 / 3545,
  18120. bottom: 0.03
  18121. }
  18122. },
  18123. back: {
  18124. height: math.unit(5 + 4 / 12, "feet"),
  18125. weight: math.unit(220, "lb"),
  18126. name: "Back",
  18127. image: {
  18128. source: "./media/characters/memory/back.svg",
  18129. extra: 3641 / 3545,
  18130. bottom: 0.025
  18131. }
  18132. },
  18133. frontSkirt: {
  18134. height: math.unit(5 + 4 / 12, "feet"),
  18135. weight: math.unit(220, "lb"),
  18136. name: "Front (Skirt)",
  18137. image: {
  18138. source: "./media/characters/memory/front-skirt.svg",
  18139. extra: 3641 / 3545,
  18140. bottom: 0.03
  18141. }
  18142. },
  18143. frontDress: {
  18144. height: math.unit(5 + 4 / 12, "feet"),
  18145. weight: math.unit(220, "lb"),
  18146. name: "Front (Dress)",
  18147. image: {
  18148. source: "./media/characters/memory/front-dress.svg",
  18149. extra: 3641 / 3545,
  18150. bottom: 0.03
  18151. }
  18152. },
  18153. },
  18154. [
  18155. {
  18156. name: "Micro",
  18157. height: math.unit(6, "inches"),
  18158. default: true
  18159. },
  18160. {
  18161. name: "Normal",
  18162. height: math.unit(5 + 4 / 12, "feet")
  18163. },
  18164. ]
  18165. ))
  18166. characterMakers.push(() => makeCharacter(
  18167. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18168. {
  18169. front: {
  18170. height: math.unit(4 + 11 / 12, "feet"),
  18171. weight: math.unit(100, "lb"),
  18172. name: "Front",
  18173. image: {
  18174. source: "./media/characters/luno/front.svg",
  18175. extra: 1535 / 1487,
  18176. bottom: 0.03
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Micro",
  18183. height: math.unit(3, "inches")
  18184. },
  18185. {
  18186. name: "Normal",
  18187. height: math.unit(4 + 11 / 12, "feet"),
  18188. default: true
  18189. },
  18190. {
  18191. name: "Macro",
  18192. height: math.unit(300, "feet")
  18193. },
  18194. {
  18195. name: "Megamacro",
  18196. height: math.unit(700, "miles")
  18197. },
  18198. ]
  18199. ))
  18200. characterMakers.push(() => makeCharacter(
  18201. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18202. {
  18203. front: {
  18204. height: math.unit(6 + 2 / 12, "feet"),
  18205. weight: math.unit(170, "lb"),
  18206. name: "Front",
  18207. image: {
  18208. source: "./media/characters/jamesy/front.svg",
  18209. extra: 440 / 382,
  18210. bottom: 0.005
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Micro",
  18217. height: math.unit(3, "inches")
  18218. },
  18219. {
  18220. name: "Normal",
  18221. height: math.unit(6 + 2 / 12, "feet"),
  18222. default: true
  18223. },
  18224. {
  18225. name: "Macro",
  18226. height: math.unit(300, "feet")
  18227. },
  18228. {
  18229. name: "Megamacro",
  18230. height: math.unit(700, "miles")
  18231. },
  18232. ]
  18233. ))
  18234. characterMakers.push(() => makeCharacter(
  18235. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18236. {
  18237. front: {
  18238. height: math.unit(6, "feet"),
  18239. weight: math.unit(160, "lb"),
  18240. name: "Front",
  18241. image: {
  18242. source: "./media/characters/mark/front.svg",
  18243. extra: 3300 / 3100,
  18244. bottom: 136.42 / 3440.47
  18245. }
  18246. },
  18247. },
  18248. [
  18249. {
  18250. name: "Macro",
  18251. height: math.unit(120, "meters")
  18252. },
  18253. {
  18254. name: "Bigger Macro",
  18255. height: math.unit(350, "meters")
  18256. },
  18257. {
  18258. name: "Megamacro",
  18259. height: math.unit(8, "km"),
  18260. default: true
  18261. },
  18262. {
  18263. name: "Continental",
  18264. height: math.unit(4550, "km")
  18265. },
  18266. {
  18267. name: "Planetary",
  18268. height: math.unit(65000, "km")
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18274. {
  18275. front: {
  18276. height: math.unit(6, "feet"),
  18277. weight: math.unit(400, "lb"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/mac/front.svg",
  18281. extra: 1048 / 987.7,
  18282. bottom: 60 / 1107.6,
  18283. }
  18284. },
  18285. },
  18286. [
  18287. {
  18288. name: "Macro",
  18289. height: math.unit(500, "feet"),
  18290. default: true
  18291. },
  18292. ]
  18293. ))
  18294. characterMakers.push(() => makeCharacter(
  18295. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18296. {
  18297. front: {
  18298. height: math.unit(5 + 2 / 12, "feet"),
  18299. weight: math.unit(190, "lb"),
  18300. name: "Front",
  18301. image: {
  18302. source: "./media/characters/bari/front.svg",
  18303. extra: 3156 / 2880,
  18304. bottom: 0.03
  18305. }
  18306. },
  18307. back: {
  18308. height: math.unit(5 + 2 / 12, "feet"),
  18309. weight: math.unit(190, "lb"),
  18310. name: "Back",
  18311. image: {
  18312. source: "./media/characters/bari/back.svg",
  18313. extra: 3260 / 2834,
  18314. bottom: 0.025
  18315. }
  18316. },
  18317. frontPlush: {
  18318. height: math.unit(5 + 2 / 12, "feet"),
  18319. weight: math.unit(190, "lb"),
  18320. name: "Front (Plush)",
  18321. image: {
  18322. source: "./media/characters/bari/front-plush.svg",
  18323. extra: 1112 / 1061,
  18324. bottom: 0.002
  18325. }
  18326. },
  18327. },
  18328. [
  18329. {
  18330. name: "Micro",
  18331. height: math.unit(3, "inches")
  18332. },
  18333. {
  18334. name: "Normal",
  18335. height: math.unit(5 + 2 / 12, "feet"),
  18336. default: true
  18337. },
  18338. {
  18339. name: "Macro",
  18340. height: math.unit(20, "feet")
  18341. },
  18342. ]
  18343. ))
  18344. characterMakers.push(() => makeCharacter(
  18345. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18346. {
  18347. front: {
  18348. height: math.unit(6 + 1 / 12, "feet"),
  18349. weight: math.unit(275, "lb"),
  18350. name: "Front",
  18351. image: {
  18352. source: "./media/characters/hunter-misha-raven/front.svg"
  18353. }
  18354. },
  18355. },
  18356. [
  18357. {
  18358. name: "Mortal",
  18359. height: math.unit(6 + 1 / 12, "feet")
  18360. },
  18361. {
  18362. name: "Divine",
  18363. height: math.unit(1.12134e34, "parsecs"),
  18364. default: true
  18365. },
  18366. ]
  18367. ))
  18368. characterMakers.push(() => makeCharacter(
  18369. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18370. {
  18371. front: {
  18372. height: math.unit(6 + 3 / 12, "feet"),
  18373. weight: math.unit(220, "lb"),
  18374. name: "Front",
  18375. image: {
  18376. source: "./media/characters/max-calore/front.svg",
  18377. extra: 1700 / 1648,
  18378. bottom: 0.01
  18379. }
  18380. },
  18381. back: {
  18382. height: math.unit(6 + 3 / 12, "feet"),
  18383. weight: math.unit(220, "lb"),
  18384. name: "Back",
  18385. image: {
  18386. source: "./media/characters/max-calore/back.svg",
  18387. extra: 1700 / 1648,
  18388. bottom: 0.01
  18389. }
  18390. },
  18391. },
  18392. [
  18393. {
  18394. name: "Normal",
  18395. height: math.unit(6 + 3 / 12, "feet"),
  18396. default: true
  18397. },
  18398. ]
  18399. ))
  18400. characterMakers.push(() => makeCharacter(
  18401. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18402. {
  18403. side: {
  18404. height: math.unit(2 + 8 / 12, "feet"),
  18405. weight: math.unit(99, "lb"),
  18406. name: "Side",
  18407. image: {
  18408. source: "./media/characters/aspen/side.svg",
  18409. extra: 152 / 138,
  18410. bottom: 0.032
  18411. }
  18412. },
  18413. },
  18414. [
  18415. {
  18416. name: "Normal",
  18417. height: math.unit(2 + 8 / 12, "feet"),
  18418. default: true
  18419. },
  18420. ]
  18421. ))
  18422. characterMakers.push(() => makeCharacter(
  18423. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18424. {
  18425. side: {
  18426. height: math.unit(3 + 2 / 12, "feet"),
  18427. weight: math.unit(224, "lb"),
  18428. name: "Side",
  18429. image: {
  18430. source: "./media/characters/sheila-feral-wolf/side.svg",
  18431. extra: 179 / 166,
  18432. bottom: 0.03
  18433. }
  18434. },
  18435. },
  18436. [
  18437. {
  18438. name: "Normal",
  18439. height: math.unit(3 + 2 / 12, "feet"),
  18440. default: true
  18441. },
  18442. ]
  18443. ))
  18444. characterMakers.push(() => makeCharacter(
  18445. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18446. {
  18447. side: {
  18448. height: math.unit(1 + 9 / 12, "feet"),
  18449. weight: math.unit(38, "lb"),
  18450. name: "Side",
  18451. image: {
  18452. source: "./media/characters/michelle/side.svg",
  18453. extra: 147 / 136.7,
  18454. bottom: 0.03
  18455. }
  18456. },
  18457. },
  18458. [
  18459. {
  18460. name: "Normal",
  18461. height: math.unit(1 + 9 / 12, "feet"),
  18462. default: true
  18463. },
  18464. ]
  18465. ))
  18466. characterMakers.push(() => makeCharacter(
  18467. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18468. {
  18469. front: {
  18470. height: math.unit(1.54, "feet"),
  18471. weight: math.unit(50, "lb"),
  18472. name: "Front",
  18473. image: {
  18474. source: "./media/characters/nino/front.svg"
  18475. }
  18476. },
  18477. },
  18478. [
  18479. {
  18480. name: "Normal",
  18481. height: math.unit(1.54, "feet"),
  18482. default: true
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18488. {
  18489. front: {
  18490. height: math.unit(1.49, "feet"),
  18491. weight: math.unit(45, "lb"),
  18492. name: "Front",
  18493. image: {
  18494. source: "./media/characters/viola/front.svg"
  18495. }
  18496. },
  18497. },
  18498. [
  18499. {
  18500. name: "Normal",
  18501. height: math.unit(1.49, "feet"),
  18502. default: true
  18503. },
  18504. ]
  18505. ))
  18506. characterMakers.push(() => makeCharacter(
  18507. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18508. {
  18509. front: {
  18510. height: math.unit(6 + 5 / 12, "feet"),
  18511. weight: math.unit(580, "lb"),
  18512. name: "Front",
  18513. image: {
  18514. source: "./media/characters/atlas/front.svg",
  18515. extra: 298.5 / 290,
  18516. bottom: 0.015
  18517. }
  18518. },
  18519. },
  18520. [
  18521. {
  18522. name: "Normal",
  18523. height: math.unit(6 + 5 / 12, "feet"),
  18524. default: true
  18525. },
  18526. ]
  18527. ))
  18528. characterMakers.push(() => makeCharacter(
  18529. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18530. {
  18531. side: {
  18532. height: math.unit(15.6, "inches"),
  18533. weight: math.unit(10, "lb"),
  18534. name: "Side",
  18535. image: {
  18536. source: "./media/characters/davy/side.svg",
  18537. extra: 200 / 170,
  18538. bottom: 0.01
  18539. }
  18540. },
  18541. },
  18542. [
  18543. {
  18544. name: "Normal",
  18545. height: math.unit(15.6, "inches"),
  18546. default: true
  18547. },
  18548. ]
  18549. ))
  18550. characterMakers.push(() => makeCharacter(
  18551. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18552. {
  18553. side: {
  18554. height: math.unit(4 + 8 / 12, "feet"),
  18555. weight: math.unit(166, "lb"),
  18556. name: "Side",
  18557. image: {
  18558. source: "./media/characters/fiona/side.svg",
  18559. extra: 232 / 220,
  18560. bottom: 0.03
  18561. }
  18562. },
  18563. },
  18564. [
  18565. {
  18566. name: "Normal",
  18567. height: math.unit(4 + 8 / 12, "feet"),
  18568. default: true
  18569. },
  18570. ]
  18571. ))
  18572. characterMakers.push(() => makeCharacter(
  18573. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18574. {
  18575. front: {
  18576. height: math.unit(26, "inches"),
  18577. weight: math.unit(35, "lb"),
  18578. name: "Front",
  18579. image: {
  18580. source: "./media/characters/lyla/front.svg",
  18581. bottom: 0.1
  18582. }
  18583. },
  18584. },
  18585. [
  18586. {
  18587. name: "Normal",
  18588. height: math.unit(3, "feet"),
  18589. default: true
  18590. },
  18591. ]
  18592. ))
  18593. characterMakers.push(() => makeCharacter(
  18594. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18595. {
  18596. side: {
  18597. height: math.unit(1.8, "feet"),
  18598. weight: math.unit(44, "lb"),
  18599. name: "Side",
  18600. image: {
  18601. source: "./media/characters/perseus/side.svg",
  18602. bottom: 0.21
  18603. }
  18604. },
  18605. },
  18606. [
  18607. {
  18608. name: "Normal",
  18609. height: math.unit(1.8, "feet"),
  18610. default: true
  18611. },
  18612. ]
  18613. ))
  18614. characterMakers.push(() => makeCharacter(
  18615. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18616. {
  18617. side: {
  18618. height: math.unit(4 + 2 / 12, "feet"),
  18619. weight: math.unit(20, "lb"),
  18620. name: "Side",
  18621. image: {
  18622. source: "./media/characters/remus/side.svg"
  18623. }
  18624. },
  18625. },
  18626. [
  18627. {
  18628. name: "Normal",
  18629. height: math.unit(4 + 2 / 12, "feet"),
  18630. default: true
  18631. },
  18632. ]
  18633. ))
  18634. characterMakers.push(() => makeCharacter(
  18635. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18636. {
  18637. front: {
  18638. height: math.unit(4 + 11 / 12, "feet"),
  18639. weight: math.unit(114, "lb"),
  18640. name: "Front",
  18641. image: {
  18642. source: "./media/characters/raf/front.svg",
  18643. extra: 1504/1339,
  18644. bottom: 26/1530
  18645. }
  18646. },
  18647. side: {
  18648. height: math.unit(4 + 11 / 12, "feet"),
  18649. weight: math.unit(114, "lb"),
  18650. name: "Side",
  18651. image: {
  18652. source: "./media/characters/raf/side.svg",
  18653. extra: 1466/1316,
  18654. bottom: 29/1495
  18655. }
  18656. },
  18657. paw: {
  18658. height: math.unit(1.45, "feet"),
  18659. name: "Paw",
  18660. image: {
  18661. source: "./media/characters/raf/paw.svg"
  18662. },
  18663. extraAttributes: {
  18664. "toeSize": {
  18665. name: "Toe Size",
  18666. power: 2,
  18667. type: "area",
  18668. base: math.unit(0.004, "m^2")
  18669. },
  18670. "padSize": {
  18671. name: "Pad Size",
  18672. power: 2,
  18673. type: "area",
  18674. base: math.unit(0.04, "m^2")
  18675. },
  18676. "footSize": {
  18677. name: "Foot Size",
  18678. power: 2,
  18679. type: "area",
  18680. base: math.unit(0.08, "m^2")
  18681. },
  18682. }
  18683. },
  18684. },
  18685. [
  18686. {
  18687. name: "Micro",
  18688. height: math.unit(2, "inches")
  18689. },
  18690. {
  18691. name: "Normal",
  18692. height: math.unit(4 + 11 / 12, "feet"),
  18693. default: true
  18694. },
  18695. {
  18696. name: "Macro",
  18697. height: math.unit(70, "feet")
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18703. {
  18704. front: {
  18705. height: math.unit(1.5, "meters"),
  18706. weight: math.unit(68, "kg"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/liam-einarr/front.svg",
  18710. extra: 2822 / 2666
  18711. }
  18712. },
  18713. back: {
  18714. height: math.unit(1.5, "meters"),
  18715. weight: math.unit(68, "kg"),
  18716. name: "Back",
  18717. image: {
  18718. source: "./media/characters/liam-einarr/back.svg",
  18719. extra: 2822 / 2666,
  18720. bottom: 0.015
  18721. }
  18722. },
  18723. },
  18724. [
  18725. {
  18726. name: "Normal",
  18727. height: math.unit(1.5, "meters"),
  18728. default: true
  18729. },
  18730. {
  18731. name: "Macro",
  18732. height: math.unit(150, "meters")
  18733. },
  18734. {
  18735. name: "Megamacro",
  18736. height: math.unit(35, "km")
  18737. },
  18738. ]
  18739. ))
  18740. characterMakers.push(() => makeCharacter(
  18741. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18742. {
  18743. front: {
  18744. height: math.unit(6, "feet"),
  18745. weight: math.unit(75, "kg"),
  18746. name: "Front",
  18747. image: {
  18748. source: "./media/characters/linda/front.svg",
  18749. extra: 930 / 874,
  18750. bottom: 0.004
  18751. }
  18752. },
  18753. },
  18754. [
  18755. {
  18756. name: "Normal",
  18757. height: math.unit(6, "feet"),
  18758. default: true
  18759. },
  18760. ]
  18761. ))
  18762. characterMakers.push(() => makeCharacter(
  18763. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18764. {
  18765. front: {
  18766. height: math.unit(6 + 8 / 12, "feet"),
  18767. weight: math.unit(220, "lb"),
  18768. name: "Front",
  18769. image: {
  18770. source: "./media/characters/caylex/front.svg",
  18771. extra: 821 / 772,
  18772. bottom: 0.07
  18773. }
  18774. },
  18775. back: {
  18776. height: math.unit(6 + 8 / 12, "feet"),
  18777. weight: math.unit(220, "lb"),
  18778. name: "Back",
  18779. image: {
  18780. source: "./media/characters/caylex/back.svg",
  18781. extra: 821 / 772,
  18782. bottom: 0.022
  18783. }
  18784. },
  18785. hand: {
  18786. height: math.unit(1.25, "feet"),
  18787. name: "Hand",
  18788. image: {
  18789. source: "./media/characters/caylex/hand.svg"
  18790. }
  18791. },
  18792. foot: {
  18793. height: math.unit(1.6, "feet"),
  18794. name: "Foot",
  18795. image: {
  18796. source: "./media/characters/caylex/foot.svg"
  18797. }
  18798. },
  18799. armored: {
  18800. height: math.unit(6 + 8 / 12, "feet"),
  18801. weight: math.unit(250, "lb"),
  18802. name: "Armored",
  18803. image: {
  18804. source: "./media/characters/caylex/armored.svg",
  18805. extra: 1420 / 1310,
  18806. bottom: 0.045
  18807. }
  18808. },
  18809. },
  18810. [
  18811. {
  18812. name: "Normal",
  18813. height: math.unit(6 + 8 / 12, "feet"),
  18814. default: true
  18815. },
  18816. {
  18817. name: "Normal+",
  18818. height: math.unit(12, "feet")
  18819. },
  18820. ]
  18821. ))
  18822. characterMakers.push(() => makeCharacter(
  18823. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18824. {
  18825. front: {
  18826. height: math.unit(7 + 6 / 12, "feet"),
  18827. weight: math.unit(288, "lb"),
  18828. name: "Front",
  18829. image: {
  18830. source: "./media/characters/alana/front.svg",
  18831. extra: 679 / 653,
  18832. bottom: 22.5 / 701
  18833. }
  18834. },
  18835. },
  18836. [
  18837. {
  18838. name: "Normal",
  18839. height: math.unit(7 + 6 / 12, "feet")
  18840. },
  18841. {
  18842. name: "Large",
  18843. height: math.unit(50, "feet")
  18844. },
  18845. {
  18846. name: "Macro",
  18847. height: math.unit(100, "feet"),
  18848. default: true
  18849. },
  18850. {
  18851. name: "Macro+",
  18852. height: math.unit(200, "feet")
  18853. },
  18854. ]
  18855. ))
  18856. characterMakers.push(() => makeCharacter(
  18857. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18858. {
  18859. front: {
  18860. height: math.unit(6 + 1 / 12, "feet"),
  18861. weight: math.unit(210, "lb"),
  18862. name: "Front",
  18863. image: {
  18864. source: "./media/characters/hasani/front.svg",
  18865. extra: 244 / 232,
  18866. bottom: 0.01
  18867. }
  18868. },
  18869. back: {
  18870. height: math.unit(6 + 1 / 12, "feet"),
  18871. weight: math.unit(210, "lb"),
  18872. name: "Back",
  18873. image: {
  18874. source: "./media/characters/hasani/back.svg",
  18875. extra: 244 / 232,
  18876. bottom: 0.01
  18877. }
  18878. },
  18879. },
  18880. [
  18881. {
  18882. name: "Normal",
  18883. height: math.unit(6 + 1 / 12, "feet")
  18884. },
  18885. {
  18886. name: "Macro",
  18887. height: math.unit(175, "feet"),
  18888. default: true
  18889. },
  18890. ]
  18891. ))
  18892. characterMakers.push(() => makeCharacter(
  18893. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18894. {
  18895. front: {
  18896. height: math.unit(1.82, "meters"),
  18897. weight: math.unit(140, "lb"),
  18898. name: "Front",
  18899. image: {
  18900. source: "./media/characters/nita/front.svg",
  18901. extra: 2473 / 2363,
  18902. bottom: 0.01
  18903. }
  18904. },
  18905. },
  18906. [
  18907. {
  18908. name: "Normal",
  18909. height: math.unit(1.82, "m")
  18910. },
  18911. {
  18912. name: "Macro",
  18913. height: math.unit(300, "m")
  18914. },
  18915. {
  18916. name: "Mistake Canon",
  18917. height: math.unit(0.5, "miles"),
  18918. default: true
  18919. },
  18920. {
  18921. name: "Big Mistake",
  18922. height: math.unit(13, "miles")
  18923. },
  18924. {
  18925. name: "Playing God",
  18926. height: math.unit(2450, "miles")
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18932. {
  18933. front: {
  18934. height: math.unit(4, "feet"),
  18935. weight: math.unit(120, "lb"),
  18936. name: "Front",
  18937. image: {
  18938. source: "./media/characters/shiriko/front.svg",
  18939. extra: 970/934,
  18940. bottom: 5/975
  18941. }
  18942. },
  18943. },
  18944. [
  18945. {
  18946. name: "Normal",
  18947. height: math.unit(4, "feet"),
  18948. default: true
  18949. },
  18950. ]
  18951. ))
  18952. characterMakers.push(() => makeCharacter(
  18953. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18954. {
  18955. front: {
  18956. height: math.unit(6, "feet"),
  18957. name: "front",
  18958. image: {
  18959. source: "./media/characters/deja/front.svg",
  18960. extra: 926 / 840,
  18961. bottom: 0.07
  18962. }
  18963. },
  18964. },
  18965. [
  18966. {
  18967. name: "Planck Length",
  18968. height: math.unit(1.6e-35, "meters")
  18969. },
  18970. {
  18971. name: "Normal",
  18972. height: math.unit(30.48, "meters"),
  18973. default: true
  18974. },
  18975. {
  18976. name: "Universal",
  18977. height: math.unit(8.8e26, "meters")
  18978. },
  18979. ]
  18980. ))
  18981. characterMakers.push(() => makeCharacter(
  18982. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18983. {
  18984. side: {
  18985. height: math.unit(8, "feet"),
  18986. weight: math.unit(6300, "lb"),
  18987. name: "Side",
  18988. image: {
  18989. source: "./media/characters/anima/side.svg",
  18990. bottom: 0.035
  18991. }
  18992. },
  18993. },
  18994. [
  18995. {
  18996. name: "Normal",
  18997. height: math.unit(8, "feet"),
  18998. default: true
  18999. },
  19000. ]
  19001. ))
  19002. characterMakers.push(() => makeCharacter(
  19003. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19004. {
  19005. front: {
  19006. height: math.unit(8, "feet"),
  19007. weight: math.unit(350, "lb"),
  19008. name: "Front",
  19009. image: {
  19010. source: "./media/characters/bianca/front.svg",
  19011. extra: 234 / 225,
  19012. bottom: 0.03
  19013. }
  19014. },
  19015. },
  19016. [
  19017. {
  19018. name: "Normal",
  19019. height: math.unit(8, "feet"),
  19020. default: true
  19021. },
  19022. ]
  19023. ))
  19024. characterMakers.push(() => makeCharacter(
  19025. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19026. {
  19027. front: {
  19028. height: math.unit(11 + 5/12, "feet"),
  19029. weight: math.unit(1200, "lb"),
  19030. name: "Front",
  19031. image: {
  19032. source: "./media/characters/adinia/front.svg",
  19033. extra: 1767/1641,
  19034. bottom: 44/1811
  19035. },
  19036. extraAttributes: {
  19037. "energyIntake": {
  19038. name: "Energy Intake",
  19039. power: 3,
  19040. type: "energy",
  19041. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19042. },
  19043. }
  19044. },
  19045. back: {
  19046. height: math.unit(11 + 5/12, "feet"),
  19047. weight: math.unit(1200, "lb"),
  19048. name: "Back",
  19049. image: {
  19050. source: "./media/characters/adinia/back.svg",
  19051. extra: 1834/1684,
  19052. bottom: 14/1848
  19053. },
  19054. extraAttributes: {
  19055. "energyIntake": {
  19056. name: "Energy Intake",
  19057. power: 3,
  19058. type: "energy",
  19059. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19060. },
  19061. }
  19062. },
  19063. maw: {
  19064. height: math.unit(3.79, "feet"),
  19065. name: "Maw",
  19066. image: {
  19067. source: "./media/characters/adinia/maw.svg"
  19068. }
  19069. },
  19070. rump: {
  19071. height: math.unit(4.6, "feet"),
  19072. name: "Rump",
  19073. image: {
  19074. source: "./media/characters/adinia/rump.svg"
  19075. }
  19076. },
  19077. },
  19078. [
  19079. {
  19080. name: "Normal",
  19081. height: math.unit(11 + 5 / 12, "feet"),
  19082. default: true
  19083. },
  19084. ]
  19085. ))
  19086. characterMakers.push(() => makeCharacter(
  19087. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19088. {
  19089. front: {
  19090. height: math.unit(3, "meters"),
  19091. weight: math.unit(200, "kg"),
  19092. name: "Front",
  19093. image: {
  19094. source: "./media/characters/lykasa/front.svg",
  19095. extra: 1076 / 976,
  19096. bottom: 0.06
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Normal",
  19103. height: math.unit(3, "meters")
  19104. },
  19105. {
  19106. name: "Kaiju",
  19107. height: math.unit(120, "meters"),
  19108. default: true
  19109. },
  19110. {
  19111. name: "Mega Kaiju",
  19112. height: math.unit(240, "km")
  19113. },
  19114. {
  19115. name: "Giga Kaiju",
  19116. height: math.unit(400, "megameters")
  19117. },
  19118. {
  19119. name: "Tera Kaiju",
  19120. height: math.unit(800, "gigameters")
  19121. },
  19122. {
  19123. name: "Kaiju Dragon Goddess",
  19124. height: math.unit(26, "zettaparsecs")
  19125. },
  19126. ]
  19127. ))
  19128. characterMakers.push(() => makeCharacter(
  19129. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19130. {
  19131. side: {
  19132. height: math.unit(283 / 124 * 6, "feet"),
  19133. weight: math.unit(35000, "lb"),
  19134. name: "Side",
  19135. image: {
  19136. source: "./media/characters/malfaren/side.svg",
  19137. extra: 1310/529,
  19138. bottom: 24/1334
  19139. }
  19140. },
  19141. front: {
  19142. height: math.unit(22.36, "feet"),
  19143. weight: math.unit(35000, "lb"),
  19144. name: "Front",
  19145. image: {
  19146. source: "./media/characters/malfaren/front.svg",
  19147. extra: 1237/1115,
  19148. bottom: 32/1269
  19149. }
  19150. },
  19151. maw: {
  19152. height: math.unit(6.9, "feet"),
  19153. name: "Maw",
  19154. image: {
  19155. source: "./media/characters/malfaren/maw.svg"
  19156. }
  19157. },
  19158. dick: {
  19159. height: math.unit(6.19, "feet"),
  19160. name: "Dick",
  19161. image: {
  19162. source: "./media/characters/malfaren/dick.svg"
  19163. }
  19164. },
  19165. eye: {
  19166. height: math.unit(0.69, "feet"),
  19167. name: "Eye",
  19168. image: {
  19169. source: "./media/characters/malfaren/eye.svg"
  19170. }
  19171. },
  19172. },
  19173. [
  19174. {
  19175. name: "Big",
  19176. height: math.unit(283 / 162 * 6, "feet"),
  19177. },
  19178. {
  19179. name: "Bigger",
  19180. height: math.unit(283 / 124 * 6, "feet")
  19181. },
  19182. {
  19183. name: "Massive",
  19184. height: math.unit(283 / 92 * 6, "feet"),
  19185. default: true
  19186. },
  19187. {
  19188. name: "👀💦",
  19189. height: math.unit(283 / 73 * 6, "feet"),
  19190. },
  19191. ]
  19192. ))
  19193. characterMakers.push(() => makeCharacter(
  19194. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19195. {
  19196. front: {
  19197. height: math.unit(1.7, "m"),
  19198. weight: math.unit(70, "kg"),
  19199. name: "Front",
  19200. image: {
  19201. source: "./media/characters/kernel/front.svg",
  19202. extra: 222 / 210,
  19203. bottom: 0.007
  19204. }
  19205. },
  19206. },
  19207. [
  19208. {
  19209. name: "Nano",
  19210. height: math.unit(17, "micrometers")
  19211. },
  19212. {
  19213. name: "Micro",
  19214. height: math.unit(1.7, "mm")
  19215. },
  19216. {
  19217. name: "Small",
  19218. height: math.unit(1.7, "cm")
  19219. },
  19220. {
  19221. name: "Normal",
  19222. height: math.unit(1.7, "m"),
  19223. default: true
  19224. },
  19225. ]
  19226. ))
  19227. characterMakers.push(() => makeCharacter(
  19228. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19229. {
  19230. front: {
  19231. height: math.unit(1.75, "meters"),
  19232. weight: math.unit(65, "kg"),
  19233. name: "Front",
  19234. image: {
  19235. source: "./media/characters/jayne-folest/front.svg",
  19236. extra: 2115 / 2007,
  19237. bottom: 0.02
  19238. }
  19239. },
  19240. back: {
  19241. height: math.unit(1.75, "meters"),
  19242. weight: math.unit(65, "kg"),
  19243. name: "Back",
  19244. image: {
  19245. source: "./media/characters/jayne-folest/back.svg",
  19246. extra: 2115 / 2007,
  19247. bottom: 0.005
  19248. }
  19249. },
  19250. frontClothed: {
  19251. height: math.unit(1.75, "meters"),
  19252. weight: math.unit(65, "kg"),
  19253. name: "Front (Clothed)",
  19254. image: {
  19255. source: "./media/characters/jayne-folest/front-clothed.svg",
  19256. extra: 2115 / 2007,
  19257. bottom: 0.035
  19258. }
  19259. },
  19260. hand: {
  19261. height: math.unit(1 / 1.260, "feet"),
  19262. name: "Hand",
  19263. image: {
  19264. source: "./media/characters/jayne-folest/hand.svg"
  19265. }
  19266. },
  19267. foot: {
  19268. height: math.unit(1 / 0.918, "feet"),
  19269. name: "Foot",
  19270. image: {
  19271. source: "./media/characters/jayne-folest/foot.svg"
  19272. }
  19273. },
  19274. },
  19275. [
  19276. {
  19277. name: "Micro",
  19278. height: math.unit(4, "cm")
  19279. },
  19280. {
  19281. name: "Normal",
  19282. height: math.unit(1.75, "meters")
  19283. },
  19284. {
  19285. name: "Macro",
  19286. height: math.unit(47.5, "meters"),
  19287. default: true
  19288. },
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19293. {
  19294. front: {
  19295. height: math.unit(180, "cm"),
  19296. weight: math.unit(70, "kg"),
  19297. name: "Front",
  19298. image: {
  19299. source: "./media/characters/algier/front.svg",
  19300. extra: 596 / 572,
  19301. bottom: 0.04
  19302. }
  19303. },
  19304. back: {
  19305. height: math.unit(180, "cm"),
  19306. weight: math.unit(70, "kg"),
  19307. name: "Back",
  19308. image: {
  19309. source: "./media/characters/algier/back.svg",
  19310. extra: 596 / 572,
  19311. bottom: 0.025
  19312. }
  19313. },
  19314. frontdressed: {
  19315. height: math.unit(180, "cm"),
  19316. weight: math.unit(150, "kg"),
  19317. name: "Front-dressed",
  19318. image: {
  19319. source: "./media/characters/algier/front-dressed.svg",
  19320. extra: 596 / 572,
  19321. bottom: 0.038
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Micro",
  19328. height: math.unit(5, "cm")
  19329. },
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(180, "cm"),
  19333. default: true
  19334. },
  19335. {
  19336. name: "Macro",
  19337. height: math.unit(64, "m")
  19338. },
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19343. {
  19344. upright: {
  19345. height: math.unit(7, "feet"),
  19346. weight: math.unit(300, "lb"),
  19347. name: "Upright",
  19348. image: {
  19349. source: "./media/characters/pretzel/upright.svg",
  19350. extra: 534 / 522,
  19351. bottom: 0.065
  19352. }
  19353. },
  19354. sprawling: {
  19355. height: math.unit(3.75, "feet"),
  19356. weight: math.unit(300, "lb"),
  19357. name: "Sprawling",
  19358. image: {
  19359. source: "./media/characters/pretzel/sprawling.svg",
  19360. extra: 314 / 281,
  19361. bottom: 0.1
  19362. }
  19363. },
  19364. tongue: {
  19365. height: math.unit(2, "feet"),
  19366. name: "Tongue",
  19367. image: {
  19368. source: "./media/characters/pretzel/tongue.svg"
  19369. }
  19370. },
  19371. },
  19372. [
  19373. {
  19374. name: "Normal",
  19375. height: math.unit(7, "feet"),
  19376. default: true
  19377. },
  19378. {
  19379. name: "Oversized",
  19380. height: math.unit(15, "feet")
  19381. },
  19382. {
  19383. name: "Huge",
  19384. height: math.unit(30, "feet")
  19385. },
  19386. {
  19387. name: "Macro",
  19388. height: math.unit(250, "feet")
  19389. },
  19390. ]
  19391. ))
  19392. characterMakers.push(() => makeCharacter(
  19393. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19394. {
  19395. sideFront: {
  19396. height: math.unit(5 + 2 / 12, "feet"),
  19397. weight: math.unit(120, "lb"),
  19398. name: "Front Side",
  19399. image: {
  19400. source: "./media/characters/roxi/side-front.svg",
  19401. extra: 2924 / 2717,
  19402. bottom: 0.08
  19403. }
  19404. },
  19405. sideBack: {
  19406. height: math.unit(5 + 2 / 12, "feet"),
  19407. weight: math.unit(120, "lb"),
  19408. name: "Back Side",
  19409. image: {
  19410. source: "./media/characters/roxi/side-back.svg",
  19411. extra: 2904 / 2693,
  19412. bottom: 0.06
  19413. }
  19414. },
  19415. front: {
  19416. height: math.unit(5 + 2 / 12, "feet"),
  19417. weight: math.unit(120, "lb"),
  19418. name: "Front",
  19419. image: {
  19420. source: "./media/characters/roxi/front.svg",
  19421. extra: 2028 / 1907,
  19422. bottom: 0.01
  19423. }
  19424. },
  19425. frontAlt: {
  19426. height: math.unit(5 + 2 / 12, "feet"),
  19427. weight: math.unit(120, "lb"),
  19428. name: "Front (Alt)",
  19429. image: {
  19430. source: "./media/characters/roxi/front-alt.svg",
  19431. extra: 1828 / 1798,
  19432. bottom: 0.01
  19433. }
  19434. },
  19435. sitting: {
  19436. height: math.unit(2.8, "feet"),
  19437. weight: math.unit(120, "lb"),
  19438. name: "Sitting",
  19439. image: {
  19440. source: "./media/characters/roxi/sitting.svg",
  19441. extra: 2660 / 2462,
  19442. bottom: 0.1
  19443. }
  19444. },
  19445. },
  19446. [
  19447. {
  19448. name: "Normal",
  19449. height: math.unit(5 + 2 / 12, "feet"),
  19450. default: true
  19451. },
  19452. ]
  19453. ))
  19454. characterMakers.push(() => makeCharacter(
  19455. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19456. {
  19457. side: {
  19458. height: math.unit(55, "feet"),
  19459. weight: math.unit(153, "tons"),
  19460. name: "Side",
  19461. image: {
  19462. source: "./media/characters/shadow/side.svg",
  19463. extra: 701 / 628,
  19464. bottom: 0.02
  19465. }
  19466. },
  19467. flying: {
  19468. height: math.unit(145, "feet"),
  19469. weight: math.unit(153, "tons"),
  19470. name: "Flying",
  19471. image: {
  19472. source: "./media/characters/shadow/flying.svg"
  19473. }
  19474. },
  19475. },
  19476. [
  19477. {
  19478. name: "Normal",
  19479. height: math.unit(55, "feet"),
  19480. default: true
  19481. },
  19482. ]
  19483. ))
  19484. characterMakers.push(() => makeCharacter(
  19485. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19486. {
  19487. front: {
  19488. height: math.unit(6, "feet"),
  19489. weight: math.unit(200, "lb"),
  19490. name: "Front",
  19491. image: {
  19492. source: "./media/characters/marcie/front.svg",
  19493. extra: 960 / 876,
  19494. bottom: 58 / 1017.87
  19495. }
  19496. },
  19497. },
  19498. [
  19499. {
  19500. name: "Macro",
  19501. height: math.unit(1, "mile"),
  19502. default: true
  19503. },
  19504. ]
  19505. ))
  19506. characterMakers.push(() => makeCharacter(
  19507. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19508. {
  19509. front: {
  19510. height: math.unit(7, "feet"),
  19511. weight: math.unit(200, "lb"),
  19512. name: "Front",
  19513. image: {
  19514. source: "./media/characters/kachina/front.svg",
  19515. extra: 1290.68 / 1119,
  19516. bottom: 36.5 / 1327.18
  19517. }
  19518. },
  19519. },
  19520. [
  19521. {
  19522. name: "Normal",
  19523. height: math.unit(7, "feet"),
  19524. default: true
  19525. },
  19526. ]
  19527. ))
  19528. characterMakers.push(() => makeCharacter(
  19529. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19530. {
  19531. looking: {
  19532. height: math.unit(2, "meters"),
  19533. weight: math.unit(300, "kg"),
  19534. name: "Looking",
  19535. image: {
  19536. source: "./media/characters/kash/looking.svg",
  19537. extra: 474 / 344,
  19538. bottom: 0.03
  19539. }
  19540. },
  19541. side: {
  19542. height: math.unit(2, "meters"),
  19543. weight: math.unit(300, "kg"),
  19544. name: "Side",
  19545. image: {
  19546. source: "./media/characters/kash/side.svg",
  19547. extra: 302 / 251,
  19548. bottom: 0.03
  19549. }
  19550. },
  19551. front: {
  19552. height: math.unit(2, "meters"),
  19553. weight: math.unit(300, "kg"),
  19554. name: "Front",
  19555. image: {
  19556. source: "./media/characters/kash/front.svg",
  19557. extra: 495 / 360,
  19558. bottom: 0.015
  19559. }
  19560. },
  19561. },
  19562. [
  19563. {
  19564. name: "Normal",
  19565. height: math.unit(2, "meters"),
  19566. default: true
  19567. },
  19568. {
  19569. name: "Big",
  19570. height: math.unit(3, "meters")
  19571. },
  19572. {
  19573. name: "Large",
  19574. height: math.unit(5, "meters")
  19575. },
  19576. ]
  19577. ))
  19578. characterMakers.push(() => makeCharacter(
  19579. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19580. {
  19581. feeding: {
  19582. height: math.unit(6.7, "feet"),
  19583. weight: math.unit(350, "lb"),
  19584. name: "Feeding",
  19585. image: {
  19586. source: "./media/characters/lalim/feeding.svg",
  19587. }
  19588. },
  19589. },
  19590. [
  19591. {
  19592. name: "Normal",
  19593. height: math.unit(6.7, "feet"),
  19594. default: true
  19595. },
  19596. ]
  19597. ))
  19598. characterMakers.push(() => makeCharacter(
  19599. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19600. {
  19601. front: {
  19602. height: math.unit(9.5, "feet"),
  19603. weight: math.unit(600, "lb"),
  19604. name: "Front",
  19605. image: {
  19606. source: "./media/characters/de'vout/front.svg",
  19607. extra: 1443 / 1328,
  19608. bottom: 0.025
  19609. }
  19610. },
  19611. back: {
  19612. height: math.unit(9.5, "feet"),
  19613. weight: math.unit(600, "lb"),
  19614. name: "Back",
  19615. image: {
  19616. source: "./media/characters/de'vout/back.svg",
  19617. extra: 1443 / 1328
  19618. }
  19619. },
  19620. frontDressed: {
  19621. height: math.unit(9.5, "feet"),
  19622. weight: math.unit(600, "lb"),
  19623. name: "Front (Dressed",
  19624. image: {
  19625. source: "./media/characters/de'vout/front-dressed.svg",
  19626. extra: 1443 / 1328,
  19627. bottom: 0.025
  19628. }
  19629. },
  19630. backDressed: {
  19631. height: math.unit(9.5, "feet"),
  19632. weight: math.unit(600, "lb"),
  19633. name: "Back (Dressed",
  19634. image: {
  19635. source: "./media/characters/de'vout/back-dressed.svg",
  19636. extra: 1443 / 1328
  19637. }
  19638. },
  19639. },
  19640. [
  19641. {
  19642. name: "Normal",
  19643. height: math.unit(9.5, "feet"),
  19644. default: true
  19645. },
  19646. ]
  19647. ))
  19648. characterMakers.push(() => makeCharacter(
  19649. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19650. {
  19651. front: {
  19652. height: math.unit(8, "feet"),
  19653. weight: math.unit(225, "lb"),
  19654. name: "Front",
  19655. image: {
  19656. source: "./media/characters/talana/front.svg",
  19657. extra: 1410 / 1300,
  19658. bottom: 0.015
  19659. }
  19660. },
  19661. frontDressed: {
  19662. height: math.unit(8, "feet"),
  19663. weight: math.unit(225, "lb"),
  19664. name: "Front (Dressed",
  19665. image: {
  19666. source: "./media/characters/talana/front-dressed.svg",
  19667. extra: 1410 / 1300,
  19668. bottom: 0.015
  19669. }
  19670. },
  19671. },
  19672. [
  19673. {
  19674. name: "Normal",
  19675. height: math.unit(8, "feet"),
  19676. default: true
  19677. },
  19678. ]
  19679. ))
  19680. characterMakers.push(() => makeCharacter(
  19681. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19682. {
  19683. side: {
  19684. height: math.unit(7.2, "feet"),
  19685. weight: math.unit(150, "lb"),
  19686. name: "Side",
  19687. image: {
  19688. source: "./media/characters/xeauvok/side.svg",
  19689. extra: 1975 / 1523,
  19690. bottom: 0.07
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Normal",
  19697. height: math.unit(7.2, "feet"),
  19698. default: true
  19699. },
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19704. {
  19705. side: {
  19706. height: math.unit(4, "meters"),
  19707. weight: math.unit(2200, "kg"),
  19708. name: "Side",
  19709. image: {
  19710. source: "./media/characters/zara/side.svg",
  19711. extra: 765/744,
  19712. bottom: 156/921
  19713. }
  19714. },
  19715. },
  19716. [
  19717. {
  19718. name: "Normal",
  19719. height: math.unit(4, "meters"),
  19720. default: true
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19726. {
  19727. side: {
  19728. height: math.unit(6, "feet"),
  19729. weight: math.unit(150, "lb"),
  19730. name: "Side",
  19731. image: {
  19732. source: "./media/characters/richard-dragon/side.svg",
  19733. extra: 845 / 340,
  19734. bottom: 0.017
  19735. }
  19736. },
  19737. maw: {
  19738. height: math.unit(2.97, "feet"),
  19739. name: "Maw",
  19740. image: {
  19741. source: "./media/characters/richard-dragon/maw.svg"
  19742. }
  19743. },
  19744. },
  19745. [
  19746. ]
  19747. ))
  19748. characterMakers.push(() => makeCharacter(
  19749. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19750. {
  19751. front: {
  19752. height: math.unit(4, "feet"),
  19753. weight: math.unit(100, "lb"),
  19754. name: "Front",
  19755. image: {
  19756. source: "./media/characters/richard-smeargle/front.svg",
  19757. extra: 2952 / 2820,
  19758. bottom: 0.028
  19759. }
  19760. },
  19761. },
  19762. [
  19763. {
  19764. name: "Normal",
  19765. height: math.unit(4, "feet"),
  19766. default: true
  19767. },
  19768. {
  19769. name: "Dynamax",
  19770. height: math.unit(20, "meters")
  19771. },
  19772. ]
  19773. ))
  19774. characterMakers.push(() => makeCharacter(
  19775. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19776. {
  19777. front: {
  19778. height: math.unit(6, "feet"),
  19779. weight: math.unit(110, "lb"),
  19780. name: "Front",
  19781. image: {
  19782. source: "./media/characters/klay/front.svg",
  19783. extra: 962 / 883,
  19784. bottom: 0.04
  19785. }
  19786. },
  19787. back: {
  19788. height: math.unit(6, "feet"),
  19789. weight: math.unit(110, "lb"),
  19790. name: "Back",
  19791. image: {
  19792. source: "./media/characters/klay/back.svg",
  19793. extra: 962 / 883
  19794. }
  19795. },
  19796. beans: {
  19797. height: math.unit(1.15, "feet"),
  19798. name: "Beans",
  19799. image: {
  19800. source: "./media/characters/klay/beans.svg"
  19801. }
  19802. },
  19803. },
  19804. [
  19805. {
  19806. name: "Micro",
  19807. height: math.unit(6, "inches")
  19808. },
  19809. {
  19810. name: "Mini",
  19811. height: math.unit(3, "feet")
  19812. },
  19813. {
  19814. name: "Normal",
  19815. height: math.unit(6, "feet"),
  19816. default: true
  19817. },
  19818. {
  19819. name: "Big",
  19820. height: math.unit(25, "feet")
  19821. },
  19822. {
  19823. name: "Macro",
  19824. height: math.unit(100, "feet")
  19825. },
  19826. {
  19827. name: "Megamacro",
  19828. height: math.unit(400, "feet")
  19829. },
  19830. ]
  19831. ))
  19832. characterMakers.push(() => makeCharacter(
  19833. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19834. {
  19835. front: {
  19836. height: math.unit(6, "feet"),
  19837. weight: math.unit(160, "lb"),
  19838. name: "Front",
  19839. image: {
  19840. source: "./media/characters/marcus/front.svg",
  19841. extra: 734 / 676,
  19842. bottom: 0.03
  19843. }
  19844. },
  19845. },
  19846. [
  19847. {
  19848. name: "Little",
  19849. height: math.unit(6, "feet")
  19850. },
  19851. {
  19852. name: "Normal",
  19853. height: math.unit(110, "feet"),
  19854. default: true
  19855. },
  19856. {
  19857. name: "Macro",
  19858. height: math.unit(250, "feet")
  19859. },
  19860. {
  19861. name: "Megamacro",
  19862. height: math.unit(1000, "feet")
  19863. },
  19864. ]
  19865. ))
  19866. characterMakers.push(() => makeCharacter(
  19867. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19868. {
  19869. front: {
  19870. height: math.unit(7, "feet"),
  19871. weight: math.unit(275, "lb"),
  19872. name: "Front",
  19873. image: {
  19874. source: "./media/characters/claude-delroute/front.svg",
  19875. extra: 902/827,
  19876. bottom: 26/928
  19877. }
  19878. },
  19879. side: {
  19880. height: math.unit(7, "feet"),
  19881. weight: math.unit(275, "lb"),
  19882. name: "Side",
  19883. image: {
  19884. source: "./media/characters/claude-delroute/side.svg",
  19885. extra: 908/853,
  19886. bottom: 16/924
  19887. }
  19888. },
  19889. back: {
  19890. height: math.unit(7, "feet"),
  19891. weight: math.unit(275, "lb"),
  19892. name: "Back",
  19893. image: {
  19894. source: "./media/characters/claude-delroute/back.svg",
  19895. extra: 911/829,
  19896. bottom: 18/929
  19897. }
  19898. },
  19899. maw: {
  19900. height: math.unit(0.6407, "meters"),
  19901. name: "Maw",
  19902. image: {
  19903. source: "./media/characters/claude-delroute/maw.svg"
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Normal",
  19910. height: math.unit(7, "feet"),
  19911. default: true
  19912. },
  19913. {
  19914. name: "Lorge",
  19915. height: math.unit(20, "feet")
  19916. },
  19917. ]
  19918. ))
  19919. characterMakers.push(() => makeCharacter(
  19920. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19921. {
  19922. front: {
  19923. height: math.unit(8 + 4 / 12, "feet"),
  19924. weight: math.unit(600, "lb"),
  19925. name: "Front",
  19926. image: {
  19927. source: "./media/characters/dragonien/front.svg",
  19928. extra: 100 / 94,
  19929. bottom: 3.3 / 103.3445
  19930. }
  19931. },
  19932. back: {
  19933. height: math.unit(8 + 4 / 12, "feet"),
  19934. weight: math.unit(600, "lb"),
  19935. name: "Back",
  19936. image: {
  19937. source: "./media/characters/dragonien/back.svg",
  19938. extra: 776 / 746,
  19939. bottom: 6.4 / 782.0616
  19940. }
  19941. },
  19942. foot: {
  19943. height: math.unit(1.54, "feet"),
  19944. name: "Foot",
  19945. image: {
  19946. source: "./media/characters/dragonien/foot.svg",
  19947. }
  19948. },
  19949. },
  19950. [
  19951. {
  19952. name: "Normal",
  19953. height: math.unit(8 + 4 / 12, "feet"),
  19954. default: true
  19955. },
  19956. {
  19957. name: "Macro",
  19958. height: math.unit(200, "feet")
  19959. },
  19960. {
  19961. name: "Megamacro",
  19962. height: math.unit(1, "mile")
  19963. },
  19964. {
  19965. name: "Gigamacro",
  19966. height: math.unit(1000, "miles")
  19967. },
  19968. ]
  19969. ))
  19970. characterMakers.push(() => makeCharacter(
  19971. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19972. {
  19973. front: {
  19974. height: math.unit(5 + 2 / 12, "feet"),
  19975. weight: math.unit(110, "lb"),
  19976. name: "Front",
  19977. image: {
  19978. source: "./media/characters/desta/front.svg",
  19979. extra: 767 / 726,
  19980. bottom: 11.7 / 779
  19981. }
  19982. },
  19983. back: {
  19984. height: math.unit(5 + 2 / 12, "feet"),
  19985. weight: math.unit(110, "lb"),
  19986. name: "Back",
  19987. image: {
  19988. source: "./media/characters/desta/back.svg",
  19989. extra: 777 / 728,
  19990. bottom: 6 / 784
  19991. }
  19992. },
  19993. frontAlt: {
  19994. height: math.unit(5 + 2 / 12, "feet"),
  19995. weight: math.unit(110, "lb"),
  19996. name: "Front",
  19997. image: {
  19998. source: "./media/characters/desta/front-alt.svg",
  19999. extra: 1482 / 1417
  20000. }
  20001. },
  20002. side: {
  20003. height: math.unit(5 + 2 / 12, "feet"),
  20004. weight: math.unit(110, "lb"),
  20005. name: "Side",
  20006. image: {
  20007. source: "./media/characters/desta/side.svg",
  20008. extra: 2579 / 2491,
  20009. bottom: 0.053
  20010. }
  20011. },
  20012. },
  20013. [
  20014. {
  20015. name: "Micro",
  20016. height: math.unit(6, "inches")
  20017. },
  20018. {
  20019. name: "Normal",
  20020. height: math.unit(5 + 2 / 12, "feet"),
  20021. default: true
  20022. },
  20023. {
  20024. name: "Macro",
  20025. height: math.unit(62, "feet")
  20026. },
  20027. {
  20028. name: "Megamacro",
  20029. height: math.unit(1800, "feet")
  20030. },
  20031. ]
  20032. ))
  20033. characterMakers.push(() => makeCharacter(
  20034. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20035. {
  20036. front: {
  20037. height: math.unit(10, "feet"),
  20038. weight: math.unit(700, "lb"),
  20039. name: "Front",
  20040. image: {
  20041. source: "./media/characters/storm-alystar/front.svg",
  20042. extra: 2112 / 1898,
  20043. bottom: 0.034
  20044. }
  20045. },
  20046. },
  20047. [
  20048. {
  20049. name: "Micro",
  20050. height: math.unit(3.5, "inches")
  20051. },
  20052. {
  20053. name: "Normal",
  20054. height: math.unit(10, "feet"),
  20055. default: true
  20056. },
  20057. {
  20058. name: "Macro",
  20059. height: math.unit(400, "feet")
  20060. },
  20061. {
  20062. name: "Deific",
  20063. height: math.unit(60, "miles")
  20064. },
  20065. ]
  20066. ))
  20067. characterMakers.push(() => makeCharacter(
  20068. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20069. {
  20070. front: {
  20071. height: math.unit(2.35, "meters"),
  20072. weight: math.unit(119, "kg"),
  20073. name: "Front",
  20074. image: {
  20075. source: "./media/characters/ilia/front.svg",
  20076. extra: 1285 / 1255,
  20077. bottom: 0.06
  20078. }
  20079. },
  20080. },
  20081. [
  20082. {
  20083. name: "Normal",
  20084. height: math.unit(2.35, "meters")
  20085. },
  20086. {
  20087. name: "Macro",
  20088. height: math.unit(140, "meters"),
  20089. default: true
  20090. },
  20091. {
  20092. name: "Megamacro",
  20093. height: math.unit(100, "miles")
  20094. },
  20095. ]
  20096. ))
  20097. characterMakers.push(() => makeCharacter(
  20098. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20099. {
  20100. front: {
  20101. height: math.unit(6 + 5 / 12, "feet"),
  20102. weight: math.unit(190, "lb"),
  20103. name: "Front",
  20104. image: {
  20105. source: "./media/characters/kingdead/front.svg",
  20106. extra: 1228 / 1177
  20107. }
  20108. },
  20109. },
  20110. [
  20111. {
  20112. name: "Micro",
  20113. height: math.unit(7, "inches")
  20114. },
  20115. {
  20116. name: "Normal",
  20117. height: math.unit(6 + 5 / 12, "feet")
  20118. },
  20119. {
  20120. name: "Macro",
  20121. height: math.unit(150, "feet"),
  20122. default: true
  20123. },
  20124. {
  20125. name: "Megamacro",
  20126. height: math.unit(200, "miles")
  20127. },
  20128. ]
  20129. ))
  20130. characterMakers.push(() => makeCharacter(
  20131. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20132. {
  20133. front: {
  20134. height: math.unit(8, "feet"),
  20135. weight: math.unit(600, "lb"),
  20136. name: "Front",
  20137. image: {
  20138. source: "./media/characters/kyrehx/front.svg",
  20139. extra: 1195 / 1095,
  20140. bottom: 0.034
  20141. }
  20142. },
  20143. },
  20144. [
  20145. {
  20146. name: "Micro",
  20147. height: math.unit(2, "inches")
  20148. },
  20149. {
  20150. name: "Normal",
  20151. height: math.unit(8, "feet"),
  20152. default: true
  20153. },
  20154. {
  20155. name: "Macro",
  20156. height: math.unit(255, "feet")
  20157. },
  20158. ]
  20159. ))
  20160. characterMakers.push(() => makeCharacter(
  20161. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20162. {
  20163. front: {
  20164. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20165. weight: math.unit(184, "lb"),
  20166. name: "Front",
  20167. image: {
  20168. source: "./media/characters/xang/front.svg",
  20169. extra: 845 / 755
  20170. }
  20171. },
  20172. },
  20173. [
  20174. {
  20175. name: "Normal",
  20176. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20177. default: true
  20178. },
  20179. {
  20180. name: "Macro",
  20181. height: math.unit(0.935 * 146, "feet")
  20182. },
  20183. {
  20184. name: "Megamacro",
  20185. height: math.unit(0.935 * 3, "miles")
  20186. },
  20187. ]
  20188. ))
  20189. characterMakers.push(() => makeCharacter(
  20190. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20191. {
  20192. frontDressed: {
  20193. height: math.unit(5 + 7 / 12, "feet"),
  20194. weight: math.unit(140, "lb"),
  20195. name: "Front (Dressed)",
  20196. image: {
  20197. source: "./media/characters/doc-weardno/front-dressed.svg",
  20198. extra: 263 / 234
  20199. }
  20200. },
  20201. backDressed: {
  20202. height: math.unit(5 + 7 / 12, "feet"),
  20203. weight: math.unit(140, "lb"),
  20204. name: "Back (Dressed)",
  20205. image: {
  20206. source: "./media/characters/doc-weardno/back-dressed.svg",
  20207. extra: 266 / 238
  20208. }
  20209. },
  20210. front: {
  20211. height: math.unit(5 + 7 / 12, "feet"),
  20212. weight: math.unit(140, "lb"),
  20213. name: "Front",
  20214. image: {
  20215. source: "./media/characters/doc-weardno/front.svg",
  20216. extra: 254 / 233
  20217. }
  20218. },
  20219. },
  20220. [
  20221. {
  20222. name: "Micro",
  20223. height: math.unit(3, "inches")
  20224. },
  20225. {
  20226. name: "Normal",
  20227. height: math.unit(5 + 7 / 12, "feet"),
  20228. default: true
  20229. },
  20230. {
  20231. name: "Macro",
  20232. height: math.unit(25, "feet")
  20233. },
  20234. {
  20235. name: "Megamacro",
  20236. height: math.unit(2, "miles")
  20237. },
  20238. ]
  20239. ))
  20240. characterMakers.push(() => makeCharacter(
  20241. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20242. {
  20243. front: {
  20244. height: math.unit(6 + 2 / 12, "feet"),
  20245. weight: math.unit(153, "lb"),
  20246. name: "Front",
  20247. image: {
  20248. source: "./media/characters/seth-whilst/front.svg",
  20249. bottom: 0.07
  20250. }
  20251. },
  20252. },
  20253. [
  20254. {
  20255. name: "Micro",
  20256. height: math.unit(5, "inches")
  20257. },
  20258. {
  20259. name: "Normal",
  20260. height: math.unit(6 + 2 / 12, "feet"),
  20261. default: true
  20262. },
  20263. ]
  20264. ))
  20265. characterMakers.push(() => makeCharacter(
  20266. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20267. {
  20268. front: {
  20269. height: math.unit(3, "inches"),
  20270. weight: math.unit(8, "grams"),
  20271. name: "Front",
  20272. image: {
  20273. source: "./media/characters/pocket-jabari/front.svg",
  20274. extra: 1024 / 974,
  20275. bottom: 0.039
  20276. }
  20277. },
  20278. },
  20279. [
  20280. {
  20281. name: "Minimicro",
  20282. height: math.unit(8, "mm")
  20283. },
  20284. {
  20285. name: "Micro",
  20286. height: math.unit(3, "inches"),
  20287. default: true
  20288. },
  20289. {
  20290. name: "Normal",
  20291. height: math.unit(3, "feet")
  20292. },
  20293. ]
  20294. ))
  20295. characterMakers.push(() => makeCharacter(
  20296. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20297. {
  20298. frontDressed: {
  20299. height: math.unit(15, "feet"),
  20300. weight: math.unit(3280, "lb"),
  20301. name: "Front (Dressed)",
  20302. image: {
  20303. source: "./media/characters/sapphy/front-dressed.svg",
  20304. extra: 1951/1654,
  20305. bottom: 194/2145
  20306. },
  20307. form: "anthro",
  20308. default: true
  20309. },
  20310. backDressed: {
  20311. height: math.unit(15, "feet"),
  20312. weight: math.unit(3280, "lb"),
  20313. name: "Back (Dressed)",
  20314. image: {
  20315. source: "./media/characters/sapphy/back-dressed.svg",
  20316. extra: 2058/1918,
  20317. bottom: 125/2183
  20318. },
  20319. form: "anthro"
  20320. },
  20321. frontNude: {
  20322. height: math.unit(15, "feet"),
  20323. weight: math.unit(3280, "lb"),
  20324. name: "Front (Nude)",
  20325. image: {
  20326. source: "./media/characters/sapphy/front-nude.svg",
  20327. extra: 1951/1654,
  20328. bottom: 194/2145
  20329. },
  20330. form: "anthro"
  20331. },
  20332. backNude: {
  20333. height: math.unit(15, "feet"),
  20334. weight: math.unit(3280, "lb"),
  20335. name: "Back (Nude)",
  20336. image: {
  20337. source: "./media/characters/sapphy/back-nude.svg",
  20338. extra: 2058/1918,
  20339. bottom: 125/2183
  20340. },
  20341. form: "anthro"
  20342. },
  20343. full: {
  20344. height: math.unit(15, "feet"),
  20345. weight: math.unit(3280, "lb"),
  20346. name: "Full",
  20347. image: {
  20348. source: "./media/characters/sapphy/full.svg",
  20349. extra: 1396/1317,
  20350. bottom: 44/1440
  20351. },
  20352. form: "anthro"
  20353. },
  20354. dick: {
  20355. height: math.unit(3.8, "feet"),
  20356. name: "Dick",
  20357. image: {
  20358. source: "./media/characters/sapphy/dick.svg"
  20359. },
  20360. form: "anthro"
  20361. },
  20362. feral: {
  20363. height: math.unit(35, "feet"),
  20364. weight: math.unit(160, "tons"),
  20365. name: "Feral",
  20366. image: {
  20367. source: "./media/characters/sapphy/feral.svg",
  20368. extra: 1050/573,
  20369. bottom: 60/1110
  20370. },
  20371. form: "feral",
  20372. default: true
  20373. },
  20374. },
  20375. [
  20376. {
  20377. name: "Normal",
  20378. height: math.unit(15, "feet"),
  20379. form: "anthro"
  20380. },
  20381. {
  20382. name: "Casual Macro",
  20383. height: math.unit(120, "feet"),
  20384. form: "anthro"
  20385. },
  20386. {
  20387. name: "Macro",
  20388. height: math.unit(2150, "feet"),
  20389. default: true,
  20390. form: "anthro"
  20391. },
  20392. {
  20393. name: "Megamacro",
  20394. height: math.unit(8, "miles"),
  20395. form: "anthro"
  20396. },
  20397. {
  20398. name: "Galaxy Mom",
  20399. height: math.unit(6, "megalightyears"),
  20400. form: "anthro"
  20401. },
  20402. {
  20403. name: "Normal",
  20404. height: math.unit(35, "feet"),
  20405. form: "feral",
  20406. default: true
  20407. },
  20408. {
  20409. name: "Macro",
  20410. height: math.unit(300, "feet"),
  20411. form: "feral"
  20412. },
  20413. {
  20414. name: "Galaxy Mom",
  20415. height: math.unit(10, "megalightyears"),
  20416. form: "feral"
  20417. },
  20418. ],
  20419. {
  20420. "anthro": {
  20421. name: "Anthro",
  20422. default: true
  20423. },
  20424. "feral": {
  20425. name: "Feral"
  20426. }
  20427. }
  20428. ))
  20429. characterMakers.push(() => makeCharacter(
  20430. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20431. {
  20432. hyenaFront: {
  20433. height: math.unit(6, "feet"),
  20434. weight: math.unit(190, "lb"),
  20435. name: "Front",
  20436. image: {
  20437. source: "./media/characters/kiro/hyena-front.svg",
  20438. extra: 927/839,
  20439. bottom: 91/1018
  20440. },
  20441. form: "hyena",
  20442. default: true
  20443. },
  20444. front: {
  20445. height: math.unit(6, "feet"),
  20446. weight: math.unit(170, "lb"),
  20447. name: "Front",
  20448. image: {
  20449. source: "./media/characters/kiro/front.svg",
  20450. extra: 1064 / 1012,
  20451. bottom: 0.052
  20452. },
  20453. form: "folf",
  20454. default: true
  20455. },
  20456. },
  20457. [
  20458. {
  20459. name: "Micro",
  20460. height: math.unit(6, "inches"),
  20461. form: "folf"
  20462. },
  20463. {
  20464. name: "Normal",
  20465. height: math.unit(6, "feet"),
  20466. form: "folf",
  20467. default: true
  20468. },
  20469. {
  20470. name: "Macro",
  20471. height: math.unit(72, "feet"),
  20472. form: "folf"
  20473. },
  20474. {
  20475. name: "Micro",
  20476. height: math.unit(6, "inches"),
  20477. form: "hyena"
  20478. },
  20479. {
  20480. name: "Normal",
  20481. height: math.unit(6, "feet"),
  20482. form: "hyena",
  20483. default: true
  20484. },
  20485. {
  20486. name: "Macro",
  20487. height: math.unit(72, "feet"),
  20488. form: "hyena"
  20489. },
  20490. ],
  20491. {
  20492. "hyena": {
  20493. name: "Hyena",
  20494. default: true
  20495. },
  20496. "folf": {
  20497. name: "Folf",
  20498. },
  20499. }
  20500. ))
  20501. characterMakers.push(() => makeCharacter(
  20502. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20503. {
  20504. front: {
  20505. height: math.unit(5 + 9 / 12, "feet"),
  20506. weight: math.unit(175, "lb"),
  20507. name: "Front",
  20508. image: {
  20509. source: "./media/characters/irishfox/front.svg",
  20510. extra: 1912 / 1680,
  20511. bottom: 0.02
  20512. }
  20513. },
  20514. },
  20515. [
  20516. {
  20517. name: "Nano",
  20518. height: math.unit(1, "mm")
  20519. },
  20520. {
  20521. name: "Micro",
  20522. height: math.unit(2, "inches")
  20523. },
  20524. {
  20525. name: "Normal",
  20526. height: math.unit(5 + 9 / 12, "feet"),
  20527. default: true
  20528. },
  20529. {
  20530. name: "Macro",
  20531. height: math.unit(45, "feet")
  20532. },
  20533. ]
  20534. ))
  20535. characterMakers.push(() => makeCharacter(
  20536. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20537. {
  20538. front: {
  20539. height: math.unit(6 + 1 / 12, "feet"),
  20540. weight: math.unit(75, "lb"),
  20541. name: "Front",
  20542. image: {
  20543. source: "./media/characters/aronai-sieyes/front.svg",
  20544. extra: 1532/1450,
  20545. bottom: 42/1574
  20546. }
  20547. },
  20548. side: {
  20549. height: math.unit(6 + 1 / 12, "feet"),
  20550. weight: math.unit(75, "lb"),
  20551. name: "Side",
  20552. image: {
  20553. source: "./media/characters/aronai-sieyes/side.svg",
  20554. extra: 1422/1365,
  20555. bottom: 148/1570
  20556. }
  20557. },
  20558. back: {
  20559. height: math.unit(6 + 1 / 12, "feet"),
  20560. weight: math.unit(75, "lb"),
  20561. name: "Back",
  20562. image: {
  20563. source: "./media/characters/aronai-sieyes/back.svg",
  20564. extra: 1526/1464,
  20565. bottom: 51/1577
  20566. }
  20567. },
  20568. dressed: {
  20569. height: math.unit(6 + 1 / 12, "feet"),
  20570. weight: math.unit(75, "lb"),
  20571. name: "Dressed",
  20572. image: {
  20573. source: "./media/characters/aronai-sieyes/dressed.svg",
  20574. extra: 1559/1483,
  20575. bottom: 39/1598
  20576. }
  20577. },
  20578. slit: {
  20579. height: math.unit(1.3, "feet"),
  20580. name: "Slit",
  20581. image: {
  20582. source: "./media/characters/aronai-sieyes/slit.svg"
  20583. }
  20584. },
  20585. slitSpread: {
  20586. height: math.unit(0.9, "feet"),
  20587. name: "Slit (Spread)",
  20588. image: {
  20589. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20590. }
  20591. },
  20592. rump: {
  20593. height: math.unit(1.3, "feet"),
  20594. name: "Rump",
  20595. image: {
  20596. source: "./media/characters/aronai-sieyes/rump.svg"
  20597. }
  20598. },
  20599. maw: {
  20600. height: math.unit(1.25, "feet"),
  20601. name: "Maw",
  20602. image: {
  20603. source: "./media/characters/aronai-sieyes/maw.svg"
  20604. }
  20605. },
  20606. feral: {
  20607. height: math.unit(18, "feet"),
  20608. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20609. name: "Feral",
  20610. image: {
  20611. source: "./media/characters/aronai-sieyes/feral.svg",
  20612. extra: 1530 / 1240,
  20613. bottom: 0.035
  20614. }
  20615. },
  20616. },
  20617. [
  20618. {
  20619. name: "Micro",
  20620. height: math.unit(2, "inches")
  20621. },
  20622. {
  20623. name: "Normal",
  20624. height: math.unit(6 + 1 / 12, "feet"),
  20625. default: true
  20626. }
  20627. ]
  20628. ))
  20629. characterMakers.push(() => makeCharacter(
  20630. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20631. {
  20632. front: {
  20633. height: math.unit(12, "feet"),
  20634. weight: math.unit(410, "kg"),
  20635. name: "Front",
  20636. image: {
  20637. source: "./media/characters/xuna/front.svg",
  20638. extra: 2184 / 1980
  20639. }
  20640. },
  20641. side: {
  20642. height: math.unit(12, "feet"),
  20643. weight: math.unit(410, "kg"),
  20644. name: "Side",
  20645. image: {
  20646. source: "./media/characters/xuna/side.svg",
  20647. extra: 2184 / 1980
  20648. }
  20649. },
  20650. back: {
  20651. height: math.unit(12, "feet"),
  20652. weight: math.unit(410, "kg"),
  20653. name: "Back",
  20654. image: {
  20655. source: "./media/characters/xuna/back.svg",
  20656. extra: 2184 / 1980
  20657. }
  20658. },
  20659. },
  20660. [
  20661. {
  20662. name: "Nano glow",
  20663. height: math.unit(10, "nm")
  20664. },
  20665. {
  20666. name: "Micro floof",
  20667. height: math.unit(0.3, "m")
  20668. },
  20669. {
  20670. name: "Huggable softy boi",
  20671. height: math.unit(3.6576, "m"),
  20672. default: true
  20673. },
  20674. {
  20675. name: "Admirable floof",
  20676. height: math.unit(80, "meters")
  20677. },
  20678. {
  20679. name: "Gentle macro",
  20680. height: math.unit(300, "meters")
  20681. },
  20682. {
  20683. name: "Very careful floof",
  20684. height: math.unit(3200, "meters")
  20685. },
  20686. {
  20687. name: "The mega floof",
  20688. height: math.unit(36000, "meters")
  20689. },
  20690. {
  20691. name: "Giga-fur-Wicker",
  20692. height: math.unit(4800000, "meters")
  20693. },
  20694. {
  20695. name: "Licky world",
  20696. height: math.unit(20000000, "meters")
  20697. },
  20698. {
  20699. name: "Floofy cyan sun",
  20700. height: math.unit(1500000000, "meters")
  20701. },
  20702. {
  20703. name: "Milky Wicker",
  20704. height: math.unit(1000000000000000000000, "meters")
  20705. },
  20706. {
  20707. name: "The observing Wicker",
  20708. height: math.unit(999999999999999999999999999, "meters")
  20709. },
  20710. ]
  20711. ))
  20712. characterMakers.push(() => makeCharacter(
  20713. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20714. {
  20715. front: {
  20716. height: math.unit(5 + 9 / 12, "feet"),
  20717. weight: math.unit(150, "lb"),
  20718. name: "Front",
  20719. image: {
  20720. source: "./media/characters/arokha-sieyes/front.svg",
  20721. extra: 1425 / 1284,
  20722. bottom: 0.05
  20723. }
  20724. },
  20725. },
  20726. [
  20727. {
  20728. name: "Normal",
  20729. height: math.unit(5 + 9 / 12, "feet")
  20730. },
  20731. {
  20732. name: "Macro",
  20733. height: math.unit(30, "meters"),
  20734. default: true
  20735. },
  20736. ]
  20737. ))
  20738. characterMakers.push(() => makeCharacter(
  20739. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20740. {
  20741. front: {
  20742. height: math.unit(6, "feet"),
  20743. weight: math.unit(180, "lb"),
  20744. name: "Front",
  20745. image: {
  20746. source: "./media/characters/arokh-sieyes/front.svg",
  20747. extra: 1830 / 1769,
  20748. bottom: 0.01
  20749. }
  20750. },
  20751. },
  20752. [
  20753. {
  20754. name: "Normal",
  20755. height: math.unit(6, "feet")
  20756. },
  20757. {
  20758. name: "Macro",
  20759. height: math.unit(30, "meters"),
  20760. default: true
  20761. },
  20762. ]
  20763. ))
  20764. characterMakers.push(() => makeCharacter(
  20765. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20766. {
  20767. side: {
  20768. height: math.unit(13 + 1 / 12, "feet"),
  20769. weight: math.unit(8.5, "tonnes"),
  20770. preyCapacity: math.unit(36, "people"),
  20771. name: "Side",
  20772. image: {
  20773. source: "./media/characters/goldeneye/side.svg",
  20774. extra: 1139/741,
  20775. bottom: 98/1237
  20776. }
  20777. },
  20778. front: {
  20779. height: math.unit(5.1, "feet"),
  20780. weight: math.unit(8.5, "tonnes"),
  20781. preyCapacity: math.unit(36, "people"),
  20782. name: "Front",
  20783. image: {
  20784. source: "./media/characters/goldeneye/front.svg",
  20785. extra: 635/365,
  20786. bottom: 598/1233
  20787. }
  20788. },
  20789. maw: {
  20790. height: math.unit(6.6, "feet"),
  20791. name: "Maw",
  20792. image: {
  20793. source: "./media/characters/goldeneye/maw.svg"
  20794. }
  20795. },
  20796. headFront: {
  20797. height: math.unit(8, "feet"),
  20798. name: "Head (Front)",
  20799. image: {
  20800. source: "./media/characters/goldeneye/head-front.svg"
  20801. }
  20802. },
  20803. headSide: {
  20804. height: math.unit(6, "feet"),
  20805. name: "Head (Side)",
  20806. image: {
  20807. source: "./media/characters/goldeneye/head-side.svg"
  20808. }
  20809. },
  20810. headBack: {
  20811. height: math.unit(8, "feet"),
  20812. name: "Head (Back)",
  20813. image: {
  20814. source: "./media/characters/goldeneye/head-back.svg"
  20815. }
  20816. },
  20817. paw: {
  20818. height: math.unit(3.4, "feet"),
  20819. name: "Paw",
  20820. image: {
  20821. source: "./media/characters/goldeneye/paw.svg"
  20822. }
  20823. },
  20824. toering: {
  20825. height: math.unit(0.45, "feet"),
  20826. name: "Toering",
  20827. image: {
  20828. source: "./media/characters/goldeneye/toering.svg"
  20829. }
  20830. },
  20831. eyes: {
  20832. height: math.unit(0.5, "feet"),
  20833. name: "Eyes",
  20834. image: {
  20835. source: "./media/characters/goldeneye/eyes.svg"
  20836. }
  20837. },
  20838. },
  20839. [
  20840. {
  20841. name: "Normal",
  20842. height: math.unit(13 + 1 / 12, "feet"),
  20843. default: true
  20844. },
  20845. ]
  20846. ))
  20847. characterMakers.push(() => makeCharacter(
  20848. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20849. {
  20850. front: {
  20851. height: math.unit(6 + 1 / 12, "feet"),
  20852. weight: math.unit(210, "lb"),
  20853. name: "Front",
  20854. image: {
  20855. source: "./media/characters/leonardo-lycheborne/front.svg",
  20856. extra: 776/723,
  20857. bottom: 34/810
  20858. }
  20859. },
  20860. side: {
  20861. height: math.unit(6 + 1 / 12, "feet"),
  20862. weight: math.unit(210, "lb"),
  20863. name: "Side",
  20864. image: {
  20865. source: "./media/characters/leonardo-lycheborne/side.svg",
  20866. extra: 780/728,
  20867. bottom: 12/792
  20868. }
  20869. },
  20870. back: {
  20871. height: math.unit(6 + 1 / 12, "feet"),
  20872. weight: math.unit(210, "lb"),
  20873. name: "Back",
  20874. image: {
  20875. source: "./media/characters/leonardo-lycheborne/back.svg",
  20876. extra: 775/721,
  20877. bottom: 17/792
  20878. }
  20879. },
  20880. hand: {
  20881. height: math.unit(1.08, "feet"),
  20882. name: "Hand",
  20883. image: {
  20884. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20885. }
  20886. },
  20887. foot: {
  20888. height: math.unit(1.32, "feet"),
  20889. name: "Foot",
  20890. image: {
  20891. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20892. }
  20893. },
  20894. maw: {
  20895. height: math.unit(1, "feet"),
  20896. name: "Maw",
  20897. image: {
  20898. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20899. }
  20900. },
  20901. were: {
  20902. height: math.unit(20, "feet"),
  20903. weight: math.unit(7800, "lb"),
  20904. name: "Were",
  20905. image: {
  20906. source: "./media/characters/leonardo-lycheborne/were.svg",
  20907. extra: 1224/1165,
  20908. bottom: 72/1296
  20909. }
  20910. },
  20911. feral: {
  20912. height: math.unit(7.5, "feet"),
  20913. weight: math.unit(600, "lb"),
  20914. name: "Feral",
  20915. image: {
  20916. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20917. extra: 797/702,
  20918. bottom: 139/936
  20919. }
  20920. },
  20921. taur: {
  20922. height: math.unit(11, "feet"),
  20923. weight: math.unit(3300, "lb"),
  20924. name: "Taur",
  20925. image: {
  20926. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20927. extra: 1271/1197,
  20928. bottom: 47/1318
  20929. }
  20930. },
  20931. barghest: {
  20932. height: math.unit(11, "feet"),
  20933. weight: math.unit(1300, "lb"),
  20934. name: "Barghest",
  20935. image: {
  20936. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20937. extra: 1291/1204,
  20938. bottom: 37/1328
  20939. }
  20940. },
  20941. dick: {
  20942. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20943. name: "Dick",
  20944. image: {
  20945. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20946. }
  20947. },
  20948. dickWere: {
  20949. height: math.unit((20) / 3.8, "feet"),
  20950. name: "Dick (Were)",
  20951. image: {
  20952. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20953. }
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "Normal",
  20959. height: math.unit(6 + 1 / 12, "feet"),
  20960. default: true
  20961. },
  20962. ]
  20963. ))
  20964. characterMakers.push(() => makeCharacter(
  20965. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20966. {
  20967. front: {
  20968. height: math.unit(10, "feet"),
  20969. weight: math.unit(350, "lb"),
  20970. name: "Front",
  20971. image: {
  20972. source: "./media/characters/jet/front.svg",
  20973. extra: 2050 / 1980,
  20974. bottom: 0.013
  20975. }
  20976. },
  20977. back: {
  20978. height: math.unit(10, "feet"),
  20979. weight: math.unit(350, "lb"),
  20980. name: "Back",
  20981. image: {
  20982. source: "./media/characters/jet/back.svg",
  20983. extra: 2050 / 1980,
  20984. bottom: 0.013
  20985. }
  20986. },
  20987. },
  20988. [
  20989. {
  20990. name: "Micro",
  20991. height: math.unit(6, "inches")
  20992. },
  20993. {
  20994. name: "Normal",
  20995. height: math.unit(10, "feet"),
  20996. default: true
  20997. },
  20998. {
  20999. name: "Macro",
  21000. height: math.unit(100, "feet")
  21001. },
  21002. ]
  21003. ))
  21004. characterMakers.push(() => makeCharacter(
  21005. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21006. {
  21007. front: {
  21008. height: math.unit(15, "feet"),
  21009. weight: math.unit(2800, "lb"),
  21010. name: "Front",
  21011. image: {
  21012. source: "./media/characters/tanarath/front.svg",
  21013. extra: 2392 / 2220,
  21014. bottom: 0.03
  21015. }
  21016. },
  21017. back: {
  21018. height: math.unit(15, "feet"),
  21019. weight: math.unit(2800, "lb"),
  21020. name: "Back",
  21021. image: {
  21022. source: "./media/characters/tanarath/back.svg",
  21023. extra: 2392 / 2220,
  21024. bottom: 0.03
  21025. }
  21026. },
  21027. },
  21028. [
  21029. {
  21030. name: "Normal",
  21031. height: math.unit(15, "feet"),
  21032. default: true
  21033. },
  21034. ]
  21035. ))
  21036. characterMakers.push(() => makeCharacter(
  21037. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21038. {
  21039. front: {
  21040. height: math.unit(7 + 1 / 12, "feet"),
  21041. weight: math.unit(175, "lb"),
  21042. name: "Front",
  21043. image: {
  21044. source: "./media/characters/patty-cattybatty/front.svg",
  21045. extra: 908 / 874,
  21046. bottom: 0.025
  21047. }
  21048. },
  21049. },
  21050. [
  21051. {
  21052. name: "Micro",
  21053. height: math.unit(1, "inch")
  21054. },
  21055. {
  21056. name: "Normal",
  21057. height: math.unit(7 + 1 / 12, "feet")
  21058. },
  21059. {
  21060. name: "Mini Macro",
  21061. height: math.unit(155, "feet")
  21062. },
  21063. {
  21064. name: "Macro",
  21065. height: math.unit(1077, "feet")
  21066. },
  21067. {
  21068. name: "Mega Macro",
  21069. height: math.unit(47650, "feet"),
  21070. default: true
  21071. },
  21072. {
  21073. name: "Giga Macro",
  21074. height: math.unit(440, "miles")
  21075. },
  21076. {
  21077. name: "Tera Macro",
  21078. height: math.unit(8700, "miles")
  21079. },
  21080. {
  21081. name: "Planetary Macro",
  21082. height: math.unit(32700, "miles")
  21083. },
  21084. {
  21085. name: "Solar Macro",
  21086. height: math.unit(550000, "miles")
  21087. },
  21088. {
  21089. name: "Celestial Macro",
  21090. height: math.unit(2.5, "AU")
  21091. },
  21092. ]
  21093. ))
  21094. characterMakers.push(() => makeCharacter(
  21095. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21096. {
  21097. front: {
  21098. height: math.unit(4 + 5 / 12, "feet"),
  21099. weight: math.unit(90, "lb"),
  21100. name: "Front",
  21101. image: {
  21102. source: "./media/characters/cappu/front.svg",
  21103. extra: 1247 / 1152,
  21104. bottom: 0.012
  21105. }
  21106. },
  21107. },
  21108. [
  21109. {
  21110. name: "Normal",
  21111. height: math.unit(4 + 5 / 12, "feet"),
  21112. default: true
  21113. },
  21114. ]
  21115. ))
  21116. characterMakers.push(() => makeCharacter(
  21117. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21118. {
  21119. frontDressed: {
  21120. height: math.unit(70, "cm"),
  21121. weight: math.unit(6, "kg"),
  21122. name: "Front (Dressed)",
  21123. image: {
  21124. source: "./media/characters/sebi/front-dressed.svg",
  21125. extra: 713.5 / 686.5,
  21126. bottom: 0.003
  21127. }
  21128. },
  21129. front: {
  21130. height: math.unit(70, "cm"),
  21131. weight: math.unit(5, "kg"),
  21132. name: "Front",
  21133. image: {
  21134. source: "./media/characters/sebi/front.svg",
  21135. extra: 713.5 / 686.5,
  21136. bottom: 0.003
  21137. }
  21138. }
  21139. },
  21140. [
  21141. {
  21142. name: "Normal",
  21143. height: math.unit(70, "cm"),
  21144. default: true
  21145. },
  21146. {
  21147. name: "Macro",
  21148. height: math.unit(8, "meters")
  21149. },
  21150. ]
  21151. ))
  21152. characterMakers.push(() => makeCharacter(
  21153. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21154. {
  21155. front: {
  21156. height: math.unit(6, "feet"),
  21157. weight: math.unit(150, "lb"),
  21158. name: "Front",
  21159. image: {
  21160. source: "./media/characters/typhek/front.svg",
  21161. extra: 1948 / 1929,
  21162. bottom: 0.025
  21163. }
  21164. },
  21165. side: {
  21166. height: math.unit(6, "feet"),
  21167. weight: math.unit(150, "lb"),
  21168. name: "Side",
  21169. image: {
  21170. source: "./media/characters/typhek/side.svg",
  21171. extra: 2034 / 2010,
  21172. bottom: 0.003
  21173. }
  21174. },
  21175. back: {
  21176. height: math.unit(6, "feet"),
  21177. weight: math.unit(150, "lb"),
  21178. name: "Back",
  21179. image: {
  21180. source: "./media/characters/typhek/back.svg",
  21181. extra: 2005 / 1978,
  21182. bottom: 0.004
  21183. }
  21184. },
  21185. palm: {
  21186. height: math.unit(1.2, "feet"),
  21187. name: "Palm",
  21188. image: {
  21189. source: "./media/characters/typhek/palm.svg"
  21190. }
  21191. },
  21192. fist: {
  21193. height: math.unit(1.1, "feet"),
  21194. name: "Fist",
  21195. image: {
  21196. source: "./media/characters/typhek/fist.svg"
  21197. }
  21198. },
  21199. foot: {
  21200. height: math.unit(1.57, "feet"),
  21201. name: "Foot",
  21202. image: {
  21203. source: "./media/characters/typhek/foot.svg"
  21204. }
  21205. },
  21206. sole: {
  21207. height: math.unit(2.05, "feet"),
  21208. name: "Sole",
  21209. image: {
  21210. source: "./media/characters/typhek/sole.svg"
  21211. }
  21212. },
  21213. },
  21214. [
  21215. {
  21216. name: "Macro",
  21217. height: math.unit(40, "stories"),
  21218. default: true
  21219. },
  21220. {
  21221. name: "Megamacro",
  21222. height: math.unit(1, "mile")
  21223. },
  21224. {
  21225. name: "Gigamacro",
  21226. height: math.unit(4000, "solarradii")
  21227. },
  21228. {
  21229. name: "Universal",
  21230. height: math.unit(1.1, "universes")
  21231. }
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21236. {
  21237. side: {
  21238. height: math.unit(5 + 7 / 12, "feet"),
  21239. weight: math.unit(150, "lb"),
  21240. name: "Side",
  21241. image: {
  21242. source: "./media/characters/kassy/side.svg",
  21243. extra: 1280 / 1225,
  21244. bottom: 0.002
  21245. }
  21246. },
  21247. front: {
  21248. height: math.unit(5 + 7 / 12, "feet"),
  21249. weight: math.unit(150, "lb"),
  21250. name: "Front",
  21251. image: {
  21252. source: "./media/characters/kassy/front.svg",
  21253. extra: 1280 / 1225,
  21254. bottom: 0.025
  21255. }
  21256. },
  21257. back: {
  21258. height: math.unit(5 + 7 / 12, "feet"),
  21259. weight: math.unit(150, "lb"),
  21260. name: "Back",
  21261. image: {
  21262. source: "./media/characters/kassy/back.svg",
  21263. extra: 1280 / 1225,
  21264. bottom: 0.002
  21265. }
  21266. },
  21267. foot: {
  21268. height: math.unit(1.266, "feet"),
  21269. name: "Foot",
  21270. image: {
  21271. source: "./media/characters/kassy/foot.svg"
  21272. }
  21273. },
  21274. },
  21275. [
  21276. {
  21277. name: "Normal",
  21278. height: math.unit(5 + 7 / 12, "feet")
  21279. },
  21280. {
  21281. name: "Macro",
  21282. height: math.unit(137, "feet"),
  21283. default: true
  21284. },
  21285. {
  21286. name: "Megamacro",
  21287. height: math.unit(1, "mile")
  21288. },
  21289. ]
  21290. ))
  21291. characterMakers.push(() => makeCharacter(
  21292. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21293. {
  21294. front: {
  21295. height: math.unit(6 + 1 / 12, "feet"),
  21296. weight: math.unit(200, "lb"),
  21297. name: "Front",
  21298. image: {
  21299. source: "./media/characters/neil/front.svg",
  21300. extra: 1326 / 1250,
  21301. bottom: 0.023
  21302. }
  21303. },
  21304. },
  21305. [
  21306. {
  21307. name: "Normal",
  21308. height: math.unit(6 + 1 / 12, "feet"),
  21309. default: true
  21310. },
  21311. {
  21312. name: "Macro",
  21313. height: math.unit(200, "feet")
  21314. },
  21315. ]
  21316. ))
  21317. characterMakers.push(() => makeCharacter(
  21318. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21319. {
  21320. front: {
  21321. height: math.unit(5 + 9 / 12, "feet"),
  21322. weight: math.unit(190, "lb"),
  21323. name: "Front",
  21324. image: {
  21325. source: "./media/characters/atticus/front.svg",
  21326. extra: 2934 / 2785,
  21327. bottom: 0.025
  21328. }
  21329. },
  21330. },
  21331. [
  21332. {
  21333. name: "Normal",
  21334. height: math.unit(5 + 9 / 12, "feet"),
  21335. default: true
  21336. },
  21337. {
  21338. name: "Macro",
  21339. height: math.unit(180, "feet")
  21340. },
  21341. ]
  21342. ))
  21343. characterMakers.push(() => makeCharacter(
  21344. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21345. {
  21346. side: {
  21347. height: math.unit(9, "feet"),
  21348. weight: math.unit(650, "lb"),
  21349. name: "Side",
  21350. image: {
  21351. source: "./media/characters/milo/side.svg",
  21352. extra: 2644 / 2310,
  21353. bottom: 0.032
  21354. }
  21355. },
  21356. },
  21357. [
  21358. {
  21359. name: "Normal",
  21360. height: math.unit(9, "feet"),
  21361. default: true
  21362. },
  21363. {
  21364. name: "Macro",
  21365. height: math.unit(300, "feet")
  21366. },
  21367. ]
  21368. ))
  21369. characterMakers.push(() => makeCharacter(
  21370. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21371. {
  21372. side: {
  21373. height: math.unit(8, "meters"),
  21374. weight: math.unit(90000, "kg"),
  21375. name: "Side",
  21376. image: {
  21377. source: "./media/characters/ijzer/side.svg",
  21378. extra: 2756 / 1600,
  21379. bottom: 0.01
  21380. }
  21381. },
  21382. },
  21383. [
  21384. {
  21385. name: "Small",
  21386. height: math.unit(3, "meters")
  21387. },
  21388. {
  21389. name: "Normal",
  21390. height: math.unit(8, "meters"),
  21391. default: true
  21392. },
  21393. {
  21394. name: "Normal+",
  21395. height: math.unit(10, "meters")
  21396. },
  21397. {
  21398. name: "Bigger",
  21399. height: math.unit(24, "meters")
  21400. },
  21401. {
  21402. name: "Huge",
  21403. height: math.unit(80, "meters")
  21404. },
  21405. ]
  21406. ))
  21407. characterMakers.push(() => makeCharacter(
  21408. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21409. {
  21410. front: {
  21411. height: math.unit(6 + 2 / 12, "feet"),
  21412. weight: math.unit(153, "lb"),
  21413. name: "Front",
  21414. image: {
  21415. source: "./media/characters/luca-cervicum/front.svg",
  21416. extra: 370 / 327,
  21417. bottom: 0.015
  21418. }
  21419. },
  21420. back: {
  21421. height: math.unit(6 + 2 / 12, "feet"),
  21422. weight: math.unit(153, "lb"),
  21423. name: "Back",
  21424. image: {
  21425. source: "./media/characters/luca-cervicum/back.svg",
  21426. extra: 367 / 333,
  21427. bottom: 0.005
  21428. }
  21429. },
  21430. frontGear: {
  21431. height: math.unit(6 + 2 / 12, "feet"),
  21432. weight: math.unit(173, "lb"),
  21433. name: "Front (Gear)",
  21434. image: {
  21435. source: "./media/characters/luca-cervicum/front-gear.svg",
  21436. extra: 377 / 333,
  21437. bottom: 0.006
  21438. }
  21439. },
  21440. },
  21441. [
  21442. {
  21443. name: "Normal",
  21444. height: math.unit(6 + 2 / 12, "feet"),
  21445. default: true
  21446. },
  21447. ]
  21448. ))
  21449. characterMakers.push(() => makeCharacter(
  21450. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21451. {
  21452. front: {
  21453. height: math.unit(6 + 1 / 12, "feet"),
  21454. weight: math.unit(304, "lb"),
  21455. name: "Front",
  21456. image: {
  21457. source: "./media/characters/oliver/front.svg",
  21458. extra: 157 / 143,
  21459. bottom: 0.08
  21460. }
  21461. },
  21462. },
  21463. [
  21464. {
  21465. name: "Normal",
  21466. height: math.unit(6 + 1 / 12, "feet"),
  21467. default: true
  21468. },
  21469. ]
  21470. ))
  21471. characterMakers.push(() => makeCharacter(
  21472. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21473. {
  21474. front: {
  21475. height: math.unit(5 + 7 / 12, "feet"),
  21476. weight: math.unit(140, "lb"),
  21477. name: "Front",
  21478. image: {
  21479. source: "./media/characters/shane/front.svg",
  21480. extra: 304 / 289,
  21481. bottom: 0.005
  21482. }
  21483. },
  21484. },
  21485. [
  21486. {
  21487. name: "Normal",
  21488. height: math.unit(5 + 7 / 12, "feet"),
  21489. default: true
  21490. },
  21491. ]
  21492. ))
  21493. characterMakers.push(() => makeCharacter(
  21494. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21495. {
  21496. front: {
  21497. height: math.unit(5 + 9 / 12, "feet"),
  21498. weight: math.unit(178, "lb"),
  21499. name: "Front",
  21500. image: {
  21501. source: "./media/characters/shin/front.svg",
  21502. extra: 159 / 151,
  21503. bottom: 0.015
  21504. }
  21505. },
  21506. },
  21507. [
  21508. {
  21509. name: "Normal",
  21510. height: math.unit(5 + 9 / 12, "feet"),
  21511. default: true
  21512. },
  21513. ]
  21514. ))
  21515. characterMakers.push(() => makeCharacter(
  21516. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21517. {
  21518. front: {
  21519. height: math.unit(5 + 10 / 12, "feet"),
  21520. weight: math.unit(168, "lb"),
  21521. name: "Front",
  21522. image: {
  21523. source: "./media/characters/xerxes/front.svg",
  21524. extra: 282 / 260,
  21525. bottom: 0.045
  21526. }
  21527. },
  21528. },
  21529. [
  21530. {
  21531. name: "Normal",
  21532. height: math.unit(5 + 10 / 12, "feet"),
  21533. default: true
  21534. },
  21535. ]
  21536. ))
  21537. characterMakers.push(() => makeCharacter(
  21538. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21539. {
  21540. front: {
  21541. height: math.unit(6 + 7 / 12, "feet"),
  21542. weight: math.unit(208, "lb"),
  21543. name: "Front",
  21544. image: {
  21545. source: "./media/characters/chaska/front.svg",
  21546. extra: 332 / 319,
  21547. bottom: 0.015
  21548. }
  21549. },
  21550. },
  21551. [
  21552. {
  21553. name: "Normal",
  21554. height: math.unit(6 + 7 / 12, "feet"),
  21555. default: true
  21556. },
  21557. ]
  21558. ))
  21559. characterMakers.push(() => makeCharacter(
  21560. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21561. {
  21562. front: {
  21563. height: math.unit(5 + 8 / 12, "feet"),
  21564. weight: math.unit(208, "lb"),
  21565. name: "Front",
  21566. image: {
  21567. source: "./media/characters/enuk/front.svg",
  21568. extra: 437 / 406,
  21569. bottom: 0.02
  21570. }
  21571. },
  21572. },
  21573. [
  21574. {
  21575. name: "Normal",
  21576. height: math.unit(5 + 8 / 12, "feet"),
  21577. default: true
  21578. },
  21579. ]
  21580. ))
  21581. characterMakers.push(() => makeCharacter(
  21582. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21583. {
  21584. front: {
  21585. height: math.unit(5 + 10 / 12, "feet"),
  21586. weight: math.unit(252, "lb"),
  21587. name: "Front",
  21588. image: {
  21589. source: "./media/characters/bruun/front.svg",
  21590. extra: 197 / 187,
  21591. bottom: 0.012
  21592. }
  21593. },
  21594. },
  21595. [
  21596. {
  21597. name: "Normal",
  21598. height: math.unit(5 + 10 / 12, "feet"),
  21599. default: true
  21600. },
  21601. ]
  21602. ))
  21603. characterMakers.push(() => makeCharacter(
  21604. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21605. {
  21606. front: {
  21607. height: math.unit(6 + 10 / 12, "feet"),
  21608. weight: math.unit(255, "lb"),
  21609. name: "Front",
  21610. image: {
  21611. source: "./media/characters/alexeev/front.svg",
  21612. extra: 213 / 200,
  21613. bottom: 0.05
  21614. }
  21615. },
  21616. },
  21617. [
  21618. {
  21619. name: "Normal",
  21620. height: math.unit(6 + 10 / 12, "feet"),
  21621. default: true
  21622. },
  21623. ]
  21624. ))
  21625. characterMakers.push(() => makeCharacter(
  21626. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21627. {
  21628. front: {
  21629. height: math.unit(2 + 8 / 12, "feet"),
  21630. weight: math.unit(22, "lb"),
  21631. name: "Front",
  21632. image: {
  21633. source: "./media/characters/evelyn/front.svg",
  21634. extra: 208 / 180
  21635. }
  21636. },
  21637. },
  21638. [
  21639. {
  21640. name: "Normal",
  21641. height: math.unit(2 + 8 / 12, "feet"),
  21642. default: true
  21643. },
  21644. ]
  21645. ))
  21646. characterMakers.push(() => makeCharacter(
  21647. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21648. {
  21649. front: {
  21650. height: math.unit(5 + 9 / 12, "feet"),
  21651. weight: math.unit(139, "lb"),
  21652. name: "Front",
  21653. image: {
  21654. source: "./media/characters/inca/front.svg",
  21655. extra: 294 / 291,
  21656. bottom: 0.03
  21657. }
  21658. },
  21659. },
  21660. [
  21661. {
  21662. name: "Normal",
  21663. height: math.unit(5 + 9 / 12, "feet"),
  21664. default: true
  21665. },
  21666. ]
  21667. ))
  21668. characterMakers.push(() => makeCharacter(
  21669. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21670. {
  21671. front: {
  21672. height: math.unit(6 + 3 / 12, "feet"),
  21673. weight: math.unit(185, "lb"),
  21674. name: "Front",
  21675. image: {
  21676. source: "./media/characters/mera/front.svg",
  21677. extra: 291 / 277,
  21678. bottom: 0.03
  21679. }
  21680. },
  21681. },
  21682. [
  21683. {
  21684. name: "Normal",
  21685. height: math.unit(6 + 3 / 12, "feet"),
  21686. default: true
  21687. },
  21688. ]
  21689. ))
  21690. characterMakers.push(() => makeCharacter(
  21691. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21692. {
  21693. front: {
  21694. height: math.unit(6 + 7 / 12, "feet"),
  21695. weight: math.unit(160, "lb"),
  21696. name: "Front",
  21697. image: {
  21698. source: "./media/characters/ceres/front.svg",
  21699. extra: 1023 / 950,
  21700. bottom: 0.027
  21701. }
  21702. },
  21703. back: {
  21704. height: math.unit(6 + 7 / 12, "feet"),
  21705. weight: math.unit(160, "lb"),
  21706. name: "Back",
  21707. image: {
  21708. source: "./media/characters/ceres/back.svg",
  21709. extra: 1023 / 950
  21710. }
  21711. },
  21712. },
  21713. [
  21714. {
  21715. name: "Normal",
  21716. height: math.unit(6 + 7 / 12, "feet"),
  21717. default: true
  21718. },
  21719. ]
  21720. ))
  21721. characterMakers.push(() => makeCharacter(
  21722. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21723. {
  21724. front: {
  21725. height: math.unit(5 + 10 / 12, "feet"),
  21726. weight: math.unit(150, "lb"),
  21727. name: "Front",
  21728. image: {
  21729. source: "./media/characters/kris/front.svg",
  21730. extra: 885 / 803,
  21731. bottom: 0.03
  21732. }
  21733. },
  21734. },
  21735. [
  21736. {
  21737. name: "Normal",
  21738. height: math.unit(5 + 10 / 12, "feet"),
  21739. default: true
  21740. },
  21741. ]
  21742. ))
  21743. characterMakers.push(() => makeCharacter(
  21744. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21745. {
  21746. front: {
  21747. height: math.unit(7, "feet"),
  21748. weight: math.unit(120, "kg"),
  21749. name: "Front",
  21750. image: {
  21751. source: "./media/characters/taluthus/front.svg",
  21752. extra: 903 / 833,
  21753. bottom: 0.015
  21754. }
  21755. },
  21756. },
  21757. [
  21758. {
  21759. name: "Normal",
  21760. height: math.unit(7, "feet"),
  21761. default: true
  21762. },
  21763. {
  21764. name: "Macro",
  21765. height: math.unit(300, "feet")
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21771. {
  21772. front: {
  21773. height: math.unit(5 + 9 / 12, "feet"),
  21774. weight: math.unit(145, "lb"),
  21775. name: "Front",
  21776. image: {
  21777. source: "./media/characters/dawn/front.svg",
  21778. extra: 2094 / 2016,
  21779. bottom: 0.025
  21780. }
  21781. },
  21782. back: {
  21783. height: math.unit(5 + 9 / 12, "feet"),
  21784. weight: math.unit(160, "lb"),
  21785. name: "Back",
  21786. image: {
  21787. source: "./media/characters/dawn/back.svg",
  21788. extra: 2112 / 2080,
  21789. bottom: 0.005
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Normal",
  21796. height: math.unit(6 + 7 / 12, "feet"),
  21797. default: true
  21798. },
  21799. ]
  21800. ))
  21801. characterMakers.push(() => makeCharacter(
  21802. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21803. {
  21804. anthro: {
  21805. height: math.unit(8 + 3 / 12, "feet"),
  21806. weight: math.unit(450, "lb"),
  21807. name: "Anthro",
  21808. image: {
  21809. source: "./media/characters/arador/anthro.svg",
  21810. extra: 1835 / 1718,
  21811. bottom: 0.025
  21812. }
  21813. },
  21814. feral: {
  21815. height: math.unit(4, "feet"),
  21816. weight: math.unit(200, "lb"),
  21817. name: "Feral",
  21818. image: {
  21819. source: "./media/characters/arador/feral.svg",
  21820. extra: 1683 / 1514,
  21821. bottom: 0.07
  21822. }
  21823. },
  21824. },
  21825. [
  21826. {
  21827. name: "Normal",
  21828. height: math.unit(8 + 3 / 12, "feet")
  21829. },
  21830. {
  21831. name: "Macro",
  21832. height: math.unit(82.5, "feet"),
  21833. default: true
  21834. },
  21835. ]
  21836. ))
  21837. characterMakers.push(() => makeCharacter(
  21838. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21839. {
  21840. front: {
  21841. height: math.unit(5 + 10 / 12, "feet"),
  21842. weight: math.unit(125, "lb"),
  21843. name: "Front",
  21844. image: {
  21845. source: "./media/characters/dharsi/front.svg",
  21846. extra: 716 / 630,
  21847. bottom: 0.035
  21848. }
  21849. },
  21850. },
  21851. [
  21852. {
  21853. name: "Nano",
  21854. height: math.unit(100, "nm")
  21855. },
  21856. {
  21857. name: "Micro",
  21858. height: math.unit(2, "inches")
  21859. },
  21860. {
  21861. name: "Normal",
  21862. height: math.unit(5 + 10 / 12, "feet"),
  21863. default: true
  21864. },
  21865. {
  21866. name: "Macro",
  21867. height: math.unit(1000, "feet")
  21868. },
  21869. {
  21870. name: "Megamacro",
  21871. height: math.unit(10, "miles")
  21872. },
  21873. {
  21874. name: "Gigamacro",
  21875. height: math.unit(3000, "miles")
  21876. },
  21877. {
  21878. name: "Teramacro",
  21879. height: math.unit(500000, "miles")
  21880. },
  21881. {
  21882. name: "Teramacro+",
  21883. height: math.unit(30, "galaxies")
  21884. },
  21885. ]
  21886. ))
  21887. characterMakers.push(() => makeCharacter(
  21888. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21889. {
  21890. front: {
  21891. height: math.unit(6, "feet"),
  21892. weight: math.unit(150, "lb"),
  21893. name: "Front",
  21894. image: {
  21895. source: "./media/characters/deathy/front.svg",
  21896. extra: 1552 / 1463,
  21897. bottom: 0.025
  21898. }
  21899. },
  21900. side: {
  21901. height: math.unit(6, "feet"),
  21902. weight: math.unit(150, "lb"),
  21903. name: "Side",
  21904. image: {
  21905. source: "./media/characters/deathy/side.svg",
  21906. extra: 1604 / 1455,
  21907. bottom: 0.025
  21908. }
  21909. },
  21910. back: {
  21911. height: math.unit(6, "feet"),
  21912. weight: math.unit(150, "lb"),
  21913. name: "Back",
  21914. image: {
  21915. source: "./media/characters/deathy/back.svg",
  21916. extra: 1580 / 1463,
  21917. bottom: 0.005
  21918. }
  21919. },
  21920. },
  21921. [
  21922. {
  21923. name: "Micro",
  21924. height: math.unit(5, "millimeters")
  21925. },
  21926. {
  21927. name: "Normal",
  21928. height: math.unit(6 + 5 / 12, "feet"),
  21929. default: true
  21930. },
  21931. ]
  21932. ))
  21933. characterMakers.push(() => makeCharacter(
  21934. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21935. {
  21936. front: {
  21937. height: math.unit(16, "feet"),
  21938. weight: math.unit(4000, "lb"),
  21939. name: "Front",
  21940. image: {
  21941. source: "./media/characters/juniper/front.svg",
  21942. bottom: 0.04
  21943. }
  21944. },
  21945. },
  21946. [
  21947. {
  21948. name: "Normal",
  21949. height: math.unit(16, "feet"),
  21950. default: true
  21951. },
  21952. ]
  21953. ))
  21954. characterMakers.push(() => makeCharacter(
  21955. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21956. {
  21957. front: {
  21958. height: math.unit(6, "feet"),
  21959. weight: math.unit(150, "lb"),
  21960. name: "Front",
  21961. image: {
  21962. source: "./media/characters/hipster/front.svg",
  21963. extra: 1312 / 1209,
  21964. bottom: 0.025
  21965. }
  21966. },
  21967. back: {
  21968. height: math.unit(6, "feet"),
  21969. weight: math.unit(150, "lb"),
  21970. name: "Back",
  21971. image: {
  21972. source: "./media/characters/hipster/back.svg",
  21973. extra: 1281 / 1196,
  21974. bottom: 0.01
  21975. }
  21976. },
  21977. },
  21978. [
  21979. {
  21980. name: "Micro",
  21981. height: math.unit(1, "mm")
  21982. },
  21983. {
  21984. name: "Normal",
  21985. height: math.unit(4, "inches"),
  21986. default: true
  21987. },
  21988. {
  21989. name: "Macro",
  21990. height: math.unit(500, "feet")
  21991. },
  21992. {
  21993. name: "Megamacro",
  21994. height: math.unit(1000, "miles")
  21995. },
  21996. ]
  21997. ))
  21998. characterMakers.push(() => makeCharacter(
  21999. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22000. {
  22001. front: {
  22002. height: math.unit(6, "feet"),
  22003. weight: math.unit(150, "lb"),
  22004. name: "Front",
  22005. image: {
  22006. source: "./media/characters/tendirmuldr/front.svg",
  22007. extra: 1878 / 1772,
  22008. bottom: 0.015
  22009. }
  22010. },
  22011. },
  22012. [
  22013. {
  22014. name: "Megamacro",
  22015. height: math.unit(1500, "miles"),
  22016. default: true
  22017. },
  22018. ]
  22019. ))
  22020. characterMakers.push(() => makeCharacter(
  22021. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22022. {
  22023. front: {
  22024. height: math.unit(14, "feet"),
  22025. weight: math.unit(12000, "lb"),
  22026. name: "Front",
  22027. image: {
  22028. source: "./media/characters/mort/front.svg",
  22029. extra: 365 / 318,
  22030. bottom: 0.01
  22031. }
  22032. },
  22033. side: {
  22034. height: math.unit(14, "feet"),
  22035. weight: math.unit(12000, "lb"),
  22036. name: "Side",
  22037. image: {
  22038. source: "./media/characters/mort/side.svg",
  22039. extra: 365 / 318,
  22040. bottom: 0.052
  22041. },
  22042. default: true
  22043. },
  22044. back: {
  22045. height: math.unit(14, "feet"),
  22046. weight: math.unit(12000, "lb"),
  22047. name: "Back",
  22048. image: {
  22049. source: "./media/characters/mort/back.svg",
  22050. extra: 371 / 332,
  22051. bottom: 0.18
  22052. }
  22053. },
  22054. },
  22055. [
  22056. {
  22057. name: "Normal",
  22058. height: math.unit(14, "feet"),
  22059. default: true
  22060. },
  22061. ]
  22062. ))
  22063. characterMakers.push(() => makeCharacter(
  22064. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22065. {
  22066. front: {
  22067. height: math.unit(8, "feet"),
  22068. weight: math.unit(1, "ton"),
  22069. name: "Front",
  22070. image: {
  22071. source: "./media/characters/lycoa/front.svg",
  22072. extra: 1836/1728,
  22073. bottom: 81/1917
  22074. }
  22075. },
  22076. back: {
  22077. height: math.unit(8, "feet"),
  22078. weight: math.unit(1, "ton"),
  22079. name: "Back",
  22080. image: {
  22081. source: "./media/characters/lycoa/back.svg",
  22082. extra: 1785/1720,
  22083. bottom: 91/1876
  22084. }
  22085. },
  22086. head: {
  22087. height: math.unit(1.6243, "feet"),
  22088. name: "Head",
  22089. image: {
  22090. source: "./media/characters/lycoa/head.svg",
  22091. extra: 1011/782,
  22092. bottom: 0/1011
  22093. }
  22094. },
  22095. tailmaw: {
  22096. height: math.unit(1.9, "feet"),
  22097. name: "Tailmaw",
  22098. image: {
  22099. source: "./media/characters/lycoa/tailmaw.svg"
  22100. }
  22101. },
  22102. tentacles: {
  22103. height: math.unit(2.1, "feet"),
  22104. name: "Tentacles",
  22105. image: {
  22106. source: "./media/characters/lycoa/tentacles.svg"
  22107. }
  22108. },
  22109. dick: {
  22110. height: math.unit(1.73, "feet"),
  22111. name: "Dick",
  22112. image: {
  22113. source: "./media/characters/lycoa/dick.svg"
  22114. }
  22115. },
  22116. },
  22117. [
  22118. {
  22119. name: "Normal",
  22120. height: math.unit(8, "feet"),
  22121. default: true
  22122. },
  22123. {
  22124. name: "Macro",
  22125. height: math.unit(30, "feet")
  22126. },
  22127. ]
  22128. ))
  22129. characterMakers.push(() => makeCharacter(
  22130. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22131. {
  22132. front: {
  22133. height: math.unit(4 + 2 / 12, "feet"),
  22134. weight: math.unit(70, "lb"),
  22135. name: "Front",
  22136. image: {
  22137. source: "./media/characters/naldara/front.svg",
  22138. extra: 1664/1387,
  22139. bottom: 81/1745
  22140. },
  22141. form: "anthro",
  22142. default: true
  22143. },
  22144. naga: {
  22145. height: math.unit(20, "feet"),
  22146. weight: math.unit(15000, "kg"),
  22147. name: "Front",
  22148. image: {
  22149. source: "./media/characters/naldara/naga.svg",
  22150. extra: 1590/1396,
  22151. bottom: 285/1875
  22152. },
  22153. form: "naga",
  22154. default: true
  22155. },
  22156. },
  22157. [
  22158. {
  22159. name: "Normal",
  22160. height: math.unit(4 + 2 / 12, "feet"),
  22161. form: "anthro",
  22162. default: true
  22163. },
  22164. {
  22165. name: "Normal",
  22166. height: math.unit(20, "feet"),
  22167. form: "naga",
  22168. default: true
  22169. },
  22170. ],
  22171. {
  22172. "anthro": {
  22173. name: "Anthro",
  22174. default: true
  22175. },
  22176. "naga": {
  22177. name: "Naga"
  22178. }
  22179. }
  22180. ))
  22181. characterMakers.push(() => makeCharacter(
  22182. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22183. {
  22184. front: {
  22185. height: math.unit(13 + 7 / 12, "feet"),
  22186. weight: math.unit(1500, "lb"),
  22187. name: "Front",
  22188. image: {
  22189. source: "./media/characters/briar/front.svg",
  22190. extra: 1223/1157,
  22191. bottom: 123/1346
  22192. }
  22193. },
  22194. },
  22195. [
  22196. {
  22197. name: "Normal",
  22198. height: math.unit(13 + 7 / 12, "feet"),
  22199. default: true
  22200. },
  22201. ]
  22202. ))
  22203. characterMakers.push(() => makeCharacter(
  22204. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22205. {
  22206. side: {
  22207. height: math.unit(16, "feet"),
  22208. weight: math.unit(500, "lb"),
  22209. name: "Side",
  22210. image: {
  22211. source: "./media/characters/vanguard/side.svg",
  22212. extra: 1022/914,
  22213. bottom: 30/1052
  22214. }
  22215. },
  22216. sideAlt: {
  22217. height: math.unit(10, "feet"),
  22218. weight: math.unit(500, "lb"),
  22219. name: "Side (Alt)",
  22220. image: {
  22221. source: "./media/characters/vanguard/side-alt.svg",
  22222. extra: 502 / 425,
  22223. bottom: 0.087
  22224. }
  22225. },
  22226. },
  22227. [
  22228. {
  22229. name: "Normal",
  22230. height: math.unit(17.71, "feet"),
  22231. default: true
  22232. },
  22233. ]
  22234. ))
  22235. characterMakers.push(() => makeCharacter(
  22236. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22237. {
  22238. front: {
  22239. height: math.unit(7.5, "feet"),
  22240. weight: math.unit(2, "lb"),
  22241. name: "Front",
  22242. image: {
  22243. source: "./media/characters/artemis/work-safe-front.svg",
  22244. extra: 1192 / 1075,
  22245. bottom: 0.07
  22246. },
  22247. form: "work-safe",
  22248. default: true
  22249. },
  22250. frontNsfw: {
  22251. height: math.unit(7.5, "feet"),
  22252. weight: math.unit(2, "lb"),
  22253. name: "Front",
  22254. image: {
  22255. source: "./media/characters/artemis/calibrating-front.svg",
  22256. extra: 1192 / 1075,
  22257. bottom: 0.07
  22258. },
  22259. form: "calibrating",
  22260. default: true
  22261. },
  22262. frontNsfwer: {
  22263. height: math.unit(7.5, "feet"),
  22264. weight: math.unit(2, "lb"),
  22265. name: "Front",
  22266. image: {
  22267. source: "./media/characters/artemis/oversize-load-front.svg",
  22268. extra: 1192 / 1075,
  22269. bottom: 0.07
  22270. },
  22271. form: "oversize-load",
  22272. default: true
  22273. },
  22274. side: {
  22275. height: math.unit(7.5, "feet"),
  22276. weight: math.unit(2, "lb"),
  22277. name: "Side",
  22278. image: {
  22279. source: "./media/characters/artemis/work-safe-side.svg",
  22280. extra: 1192 / 1075,
  22281. bottom: 0.07
  22282. },
  22283. form: "work-safe"
  22284. },
  22285. sideNsfw: {
  22286. height: math.unit(7.5, "feet"),
  22287. weight: math.unit(2, "lb"),
  22288. name: "Side",
  22289. image: {
  22290. source: "./media/characters/artemis/calibrating-side.svg",
  22291. extra: 1192 / 1075,
  22292. bottom: 0.07
  22293. },
  22294. form: "calibrating"
  22295. },
  22296. sideNsfwer: {
  22297. height: math.unit(7.5, "feet"),
  22298. weight: math.unit(2, "lb"),
  22299. name: "Side",
  22300. image: {
  22301. source: "./media/characters/artemis/oversize-load-side.svg",
  22302. extra: 1192 / 1075,
  22303. bottom: 0.07
  22304. },
  22305. form: "oversize-load"
  22306. },
  22307. maw: {
  22308. height: math.unit(1.1, "feet"),
  22309. name: "Maw",
  22310. image: {
  22311. source: "./media/characters/artemis/maw.svg"
  22312. },
  22313. form: "work-safe"
  22314. },
  22315. stomach: {
  22316. height: math.unit(0.95, "feet"),
  22317. name: "Stomach",
  22318. image: {
  22319. source: "./media/characters/artemis/stomach.svg"
  22320. },
  22321. form: "work-safe"
  22322. },
  22323. dickCanine: {
  22324. height: math.unit(1, "feet"),
  22325. name: "Dick (Canine)",
  22326. image: {
  22327. source: "./media/characters/artemis/dick-canine.svg"
  22328. },
  22329. form: "calibrating"
  22330. },
  22331. dickEquine: {
  22332. height: math.unit(0.85, "feet"),
  22333. name: "Dick (Equine)",
  22334. image: {
  22335. source: "./media/characters/artemis/dick-equine.svg"
  22336. },
  22337. form: "calibrating"
  22338. },
  22339. dickExotic: {
  22340. height: math.unit(0.85, "feet"),
  22341. name: "Dick (Exotic)",
  22342. image: {
  22343. source: "./media/characters/artemis/dick-exotic.svg"
  22344. },
  22345. form: "calibrating"
  22346. },
  22347. dickCanineBigger: {
  22348. height: math.unit(1 * 1.33, "feet"),
  22349. name: "Dick (Canine)",
  22350. image: {
  22351. source: "./media/characters/artemis/dick-canine.svg"
  22352. },
  22353. form: "oversize-load"
  22354. },
  22355. dickEquineBigger: {
  22356. height: math.unit(0.85 * 1.33, "feet"),
  22357. name: "Dick (Equine)",
  22358. image: {
  22359. source: "./media/characters/artemis/dick-equine.svg"
  22360. },
  22361. form: "oversize-load"
  22362. },
  22363. dickExoticBigger: {
  22364. height: math.unit(0.85 * 1.33, "feet"),
  22365. name: "Dick (Exotic)",
  22366. image: {
  22367. source: "./media/characters/artemis/dick-exotic.svg"
  22368. },
  22369. form: "oversize-load"
  22370. },
  22371. },
  22372. [
  22373. {
  22374. name: "Normal",
  22375. height: math.unit(7.5, "feet"),
  22376. form: "work-safe",
  22377. default: true
  22378. },
  22379. {
  22380. name: "Normal",
  22381. height: math.unit(7.5, "feet"),
  22382. form: "calibrating",
  22383. default: true
  22384. },
  22385. {
  22386. name: "Normal",
  22387. height: math.unit(7.5, "feet"),
  22388. form: "oversize-load",
  22389. default: true
  22390. },
  22391. {
  22392. name: "Enlarged",
  22393. height: math.unit(12, "feet"),
  22394. form: "work-safe",
  22395. },
  22396. {
  22397. name: "Enlarged",
  22398. height: math.unit(12, "feet"),
  22399. form: "calibrating",
  22400. },
  22401. {
  22402. name: "Enlarged",
  22403. height: math.unit(12, "feet"),
  22404. form: "oversize-load",
  22405. },
  22406. ],
  22407. {
  22408. "work-safe": {
  22409. name: "Work-Safe",
  22410. default: true
  22411. },
  22412. "calibrating": {
  22413. name: "Calibrating"
  22414. },
  22415. "oversize-load": {
  22416. name: "Oversize Load"
  22417. }
  22418. }
  22419. ))
  22420. characterMakers.push(() => makeCharacter(
  22421. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22422. {
  22423. front: {
  22424. height: math.unit(5 + 3 / 12, "feet"),
  22425. weight: math.unit(160, "lb"),
  22426. name: "Front",
  22427. image: {
  22428. source: "./media/characters/kira/front.svg",
  22429. extra: 906 / 786,
  22430. bottom: 0.01
  22431. }
  22432. },
  22433. back: {
  22434. height: math.unit(5 + 3 / 12, "feet"),
  22435. weight: math.unit(160, "lb"),
  22436. name: "Back",
  22437. image: {
  22438. source: "./media/characters/kira/back.svg",
  22439. extra: 882 / 757,
  22440. bottom: 0.005
  22441. }
  22442. },
  22443. frontDressed: {
  22444. height: math.unit(5 + 3 / 12, "feet"),
  22445. weight: math.unit(160, "lb"),
  22446. name: "Front (Dressed)",
  22447. image: {
  22448. source: "./media/characters/kira/front-dressed.svg",
  22449. extra: 906 / 786,
  22450. bottom: 0.01
  22451. }
  22452. },
  22453. beans: {
  22454. height: math.unit(0.92, "feet"),
  22455. name: "Beans",
  22456. image: {
  22457. source: "./media/characters/kira/beans.svg"
  22458. }
  22459. },
  22460. },
  22461. [
  22462. {
  22463. name: "Normal",
  22464. height: math.unit(5 + 3 / 12, "feet"),
  22465. default: true
  22466. },
  22467. ]
  22468. ))
  22469. characterMakers.push(() => makeCharacter(
  22470. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22471. {
  22472. front: {
  22473. height: math.unit(5 + 4 / 12, "feet"),
  22474. weight: math.unit(145, "lb"),
  22475. name: "Front",
  22476. image: {
  22477. source: "./media/characters/scramble/front.svg",
  22478. extra: 763 / 727,
  22479. bottom: 0.05
  22480. }
  22481. },
  22482. back: {
  22483. height: math.unit(5 + 4 / 12, "feet"),
  22484. weight: math.unit(145, "lb"),
  22485. name: "Back",
  22486. image: {
  22487. source: "./media/characters/scramble/back.svg",
  22488. extra: 826 / 737,
  22489. bottom: 0.002
  22490. }
  22491. },
  22492. },
  22493. [
  22494. {
  22495. name: "Normal",
  22496. height: math.unit(5 + 4 / 12, "feet"),
  22497. default: true
  22498. },
  22499. ]
  22500. ))
  22501. characterMakers.push(() => makeCharacter(
  22502. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22503. {
  22504. side: {
  22505. height: math.unit(6 + 2 / 12, "feet"),
  22506. weight: math.unit(190, "lb"),
  22507. name: "Side",
  22508. image: {
  22509. source: "./media/characters/biscuit/side.svg",
  22510. extra: 858 / 791,
  22511. bottom: 0.044
  22512. }
  22513. },
  22514. },
  22515. [
  22516. {
  22517. name: "Normal",
  22518. height: math.unit(6 + 2 / 12, "feet"),
  22519. default: true
  22520. },
  22521. ]
  22522. ))
  22523. characterMakers.push(() => makeCharacter(
  22524. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22525. {
  22526. front: {
  22527. height: math.unit(5 + 2 / 12, "feet"),
  22528. weight: math.unit(120, "lb"),
  22529. name: "Front",
  22530. image: {
  22531. source: "./media/characters/poffin/front.svg",
  22532. extra: 786 / 680,
  22533. bottom: 0.005
  22534. }
  22535. },
  22536. },
  22537. [
  22538. {
  22539. name: "Normal",
  22540. height: math.unit(5 + 2 / 12, "feet"),
  22541. default: true
  22542. },
  22543. ]
  22544. ))
  22545. characterMakers.push(() => makeCharacter(
  22546. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22547. {
  22548. front: {
  22549. height: math.unit(6 + 3 / 12, "feet"),
  22550. weight: math.unit(519, "lb"),
  22551. name: "Front",
  22552. image: {
  22553. source: "./media/characters/dhari/front.svg",
  22554. extra: 1048 / 946,
  22555. bottom: 0.015
  22556. }
  22557. },
  22558. back: {
  22559. height: math.unit(6 + 3 / 12, "feet"),
  22560. weight: math.unit(519, "lb"),
  22561. name: "Back",
  22562. image: {
  22563. source: "./media/characters/dhari/back.svg",
  22564. extra: 1048 / 931,
  22565. bottom: 0.005
  22566. }
  22567. },
  22568. frontDressed: {
  22569. height: math.unit(6 + 3 / 12, "feet"),
  22570. weight: math.unit(519, "lb"),
  22571. name: "Front (Dressed)",
  22572. image: {
  22573. source: "./media/characters/dhari/front-dressed.svg",
  22574. extra: 1713 / 1546,
  22575. bottom: 0.02
  22576. }
  22577. },
  22578. backDressed: {
  22579. height: math.unit(6 + 3 / 12, "feet"),
  22580. weight: math.unit(519, "lb"),
  22581. name: "Back (Dressed)",
  22582. image: {
  22583. source: "./media/characters/dhari/back-dressed.svg",
  22584. extra: 1699 / 1537,
  22585. bottom: 0.01
  22586. }
  22587. },
  22588. maw: {
  22589. height: math.unit(0.95, "feet"),
  22590. name: "Maw",
  22591. image: {
  22592. source: "./media/characters/dhari/maw.svg"
  22593. }
  22594. },
  22595. wereFront: {
  22596. height: math.unit(12 + 8 / 12, "feet"),
  22597. weight: math.unit(4000, "lb"),
  22598. name: "Front (Were)",
  22599. image: {
  22600. source: "./media/characters/dhari/were-front.svg",
  22601. extra: 1065 / 969,
  22602. bottom: 0.015
  22603. }
  22604. },
  22605. wereBack: {
  22606. height: math.unit(12 + 8 / 12, "feet"),
  22607. weight: math.unit(4000, "lb"),
  22608. name: "Back (Were)",
  22609. image: {
  22610. source: "./media/characters/dhari/were-back.svg",
  22611. extra: 1065 / 969,
  22612. bottom: 0.012
  22613. }
  22614. },
  22615. wereMaw: {
  22616. height: math.unit(0.625, "meters"),
  22617. name: "Maw (Were)",
  22618. image: {
  22619. source: "./media/characters/dhari/were-maw.svg"
  22620. }
  22621. },
  22622. },
  22623. [
  22624. {
  22625. name: "Normal",
  22626. height: math.unit(6 + 3 / 12, "feet"),
  22627. default: true
  22628. },
  22629. ]
  22630. ))
  22631. characterMakers.push(() => makeCharacter(
  22632. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22633. {
  22634. anthro: {
  22635. height: math.unit(5 + 7 / 12, "feet"),
  22636. weight: math.unit(175, "lb"),
  22637. name: "Anthro",
  22638. image: {
  22639. source: "./media/characters/rena-dyne/anthro.svg",
  22640. extra: 1849 / 1785,
  22641. bottom: 0.005
  22642. }
  22643. },
  22644. taur: {
  22645. height: math.unit(15 + 6 / 12, "feet"),
  22646. weight: math.unit(8000, "lb"),
  22647. name: "Taur",
  22648. image: {
  22649. source: "./media/characters/rena-dyne/taur.svg",
  22650. extra: 2315 / 2234,
  22651. bottom: 0.033
  22652. }
  22653. },
  22654. },
  22655. [
  22656. {
  22657. name: "Normal",
  22658. height: math.unit(5 + 7 / 12, "feet"),
  22659. default: true
  22660. },
  22661. ]
  22662. ))
  22663. characterMakers.push(() => makeCharacter(
  22664. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22665. {
  22666. front: {
  22667. height: math.unit(8, "feet"),
  22668. weight: math.unit(600, "lb"),
  22669. name: "Front",
  22670. image: {
  22671. source: "./media/characters/weremeep/front.svg",
  22672. extra: 970/849,
  22673. bottom: 7/977
  22674. }
  22675. },
  22676. },
  22677. [
  22678. {
  22679. name: "Normal",
  22680. height: math.unit(8, "feet"),
  22681. default: true
  22682. },
  22683. {
  22684. name: "Lorg",
  22685. height: math.unit(12, "feet")
  22686. },
  22687. {
  22688. name: "Oh Lawd She Comin'",
  22689. height: math.unit(20, "feet")
  22690. },
  22691. ]
  22692. ))
  22693. characterMakers.push(() => makeCharacter(
  22694. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22695. {
  22696. front: {
  22697. height: math.unit(4, "feet"),
  22698. weight: math.unit(90, "lb"),
  22699. name: "Front",
  22700. image: {
  22701. source: "./media/characters/reza/front.svg",
  22702. extra: 1183 / 1111,
  22703. bottom: 0.017
  22704. }
  22705. },
  22706. back: {
  22707. height: math.unit(4, "feet"),
  22708. weight: math.unit(90, "lb"),
  22709. name: "Back",
  22710. image: {
  22711. source: "./media/characters/reza/back.svg",
  22712. extra: 1183 / 1111,
  22713. bottom: 0.01
  22714. }
  22715. },
  22716. drake: {
  22717. height: math.unit(30, "feet"),
  22718. weight: math.unit(246960, "lb"),
  22719. name: "Drake",
  22720. image: {
  22721. source: "./media/characters/reza/drake.svg",
  22722. extra: 2350 / 2024,
  22723. bottom: 60.7 / 2403
  22724. }
  22725. },
  22726. },
  22727. [
  22728. {
  22729. name: "Normal",
  22730. height: math.unit(4, "feet"),
  22731. default: true
  22732. },
  22733. ]
  22734. ))
  22735. characterMakers.push(() => makeCharacter(
  22736. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22737. {
  22738. side: {
  22739. height: math.unit(15, "feet"),
  22740. weight: math.unit(14, "tons"),
  22741. name: "Side",
  22742. image: {
  22743. source: "./media/characters/athea/side.svg",
  22744. extra: 960 / 540,
  22745. bottom: 0.003
  22746. }
  22747. },
  22748. sitting: {
  22749. height: math.unit(6 * 2.85, "feet"),
  22750. weight: math.unit(14, "tons"),
  22751. name: "Sitting",
  22752. image: {
  22753. source: "./media/characters/athea/sitting.svg",
  22754. extra: 621 / 581,
  22755. bottom: 0.075
  22756. }
  22757. },
  22758. maw: {
  22759. height: math.unit(7.59498031496063, "feet"),
  22760. name: "Maw",
  22761. image: {
  22762. source: "./media/characters/athea/maw.svg"
  22763. }
  22764. },
  22765. },
  22766. [
  22767. {
  22768. name: "Lap Cat",
  22769. height: math.unit(2.5, "feet")
  22770. },
  22771. {
  22772. name: "Minimacro",
  22773. height: math.unit(15, "feet"),
  22774. default: true
  22775. },
  22776. {
  22777. name: "Macro",
  22778. height: math.unit(120, "feet")
  22779. },
  22780. {
  22781. name: "Macro+",
  22782. height: math.unit(640, "feet")
  22783. },
  22784. {
  22785. name: "Colossus",
  22786. height: math.unit(2.2, "miles")
  22787. },
  22788. ]
  22789. ))
  22790. characterMakers.push(() => makeCharacter(
  22791. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22792. {
  22793. front: {
  22794. height: math.unit(8 + 8 / 12, "feet"),
  22795. weight: math.unit(130, "kg"),
  22796. name: "Front",
  22797. image: {
  22798. source: "./media/characters/seroko/front.svg",
  22799. extra: 1385 / 1280,
  22800. bottom: 0.025
  22801. }
  22802. },
  22803. back: {
  22804. height: math.unit(8 + 8 / 12, "feet"),
  22805. weight: math.unit(130, "kg"),
  22806. name: "Back",
  22807. image: {
  22808. source: "./media/characters/seroko/back.svg",
  22809. extra: 1369 / 1238,
  22810. bottom: 0.018
  22811. }
  22812. },
  22813. frontDressed: {
  22814. height: math.unit(8 + 8 / 12, "feet"),
  22815. weight: math.unit(130, "kg"),
  22816. name: "Front (Dressed)",
  22817. image: {
  22818. source: "./media/characters/seroko/front-dressed.svg",
  22819. extra: 1366 / 1275,
  22820. bottom: 0.03
  22821. }
  22822. },
  22823. },
  22824. [
  22825. {
  22826. name: "Normal",
  22827. height: math.unit(8 + 8 / 12, "feet"),
  22828. default: true
  22829. },
  22830. ]
  22831. ))
  22832. characterMakers.push(() => makeCharacter(
  22833. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22834. {
  22835. front: {
  22836. height: math.unit(5.5, "feet"),
  22837. weight: math.unit(160, "lb"),
  22838. name: "Front",
  22839. image: {
  22840. source: "./media/characters/quatzi/front.svg",
  22841. extra: 2346 / 2242,
  22842. bottom: 0.015
  22843. }
  22844. },
  22845. },
  22846. [
  22847. {
  22848. name: "Normal",
  22849. height: math.unit(5.5, "feet"),
  22850. default: true
  22851. },
  22852. {
  22853. name: "Big",
  22854. height: math.unit(7.7, "feet")
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22860. {
  22861. front: {
  22862. height: math.unit(5 + 11 / 12, "feet"),
  22863. weight: math.unit(180, "lb"),
  22864. name: "Front",
  22865. image: {
  22866. source: "./media/characters/sen/front.svg",
  22867. extra: 1321 / 1254,
  22868. bottom: 0.015
  22869. }
  22870. },
  22871. side: {
  22872. height: math.unit(5 + 11 / 12, "feet"),
  22873. weight: math.unit(180, "lb"),
  22874. name: "Side",
  22875. image: {
  22876. source: "./media/characters/sen/side.svg",
  22877. extra: 1321 / 1254,
  22878. bottom: 0.007
  22879. }
  22880. },
  22881. back: {
  22882. height: math.unit(5 + 11 / 12, "feet"),
  22883. weight: math.unit(180, "lb"),
  22884. name: "Back",
  22885. image: {
  22886. source: "./media/characters/sen/back.svg",
  22887. extra: 1321 / 1254
  22888. }
  22889. },
  22890. },
  22891. [
  22892. {
  22893. name: "Normal",
  22894. height: math.unit(5 + 11 / 12, "feet"),
  22895. default: true
  22896. },
  22897. ]
  22898. ))
  22899. characterMakers.push(() => makeCharacter(
  22900. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22901. {
  22902. front: {
  22903. height: math.unit(166.6, "cm"),
  22904. weight: math.unit(66.6, "kg"),
  22905. name: "Front",
  22906. image: {
  22907. source: "./media/characters/fruity/front.svg",
  22908. extra: 1510 / 1386,
  22909. bottom: 0.04
  22910. }
  22911. },
  22912. back: {
  22913. height: math.unit(166.6, "cm"),
  22914. weight: math.unit(66.6, "lb"),
  22915. name: "Back",
  22916. image: {
  22917. source: "./media/characters/fruity/back.svg",
  22918. extra: 1563 / 1435,
  22919. bottom: 0.005
  22920. }
  22921. },
  22922. },
  22923. [
  22924. {
  22925. name: "Normal",
  22926. height: math.unit(166.6, "cm"),
  22927. default: true
  22928. },
  22929. {
  22930. name: "Demonic",
  22931. height: math.unit(166.6, "feet")
  22932. },
  22933. ]
  22934. ))
  22935. characterMakers.push(() => makeCharacter(
  22936. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22937. {
  22938. side: {
  22939. height: math.unit(10, "feet"),
  22940. weight: math.unit(500, "lb"),
  22941. name: "Side",
  22942. image: {
  22943. source: "./media/characters/zost/side.svg",
  22944. extra: 2870/2533,
  22945. bottom: 252/3122
  22946. }
  22947. },
  22948. mawFront: {
  22949. height: math.unit(1.08, "meters"),
  22950. name: "Maw (Front)",
  22951. image: {
  22952. source: "./media/characters/zost/maw-front.svg"
  22953. }
  22954. },
  22955. mawSide: {
  22956. height: math.unit(2.66, "feet"),
  22957. name: "Maw (Side)",
  22958. image: {
  22959. source: "./media/characters/zost/maw-side.svg"
  22960. }
  22961. },
  22962. wingspan: {
  22963. height: math.unit(7.4, "feet"),
  22964. name: "Wingspan",
  22965. image: {
  22966. source: "./media/characters/zost/wingspan.svg"
  22967. }
  22968. },
  22969. },
  22970. [
  22971. {
  22972. name: "Normal",
  22973. height: math.unit(10, "feet"),
  22974. default: true
  22975. },
  22976. ]
  22977. ))
  22978. characterMakers.push(() => makeCharacter(
  22979. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22980. {
  22981. front: {
  22982. height: math.unit(5 + 4 / 12, "feet"),
  22983. weight: math.unit(120, "lb"),
  22984. name: "Front",
  22985. image: {
  22986. source: "./media/characters/luci/front.svg",
  22987. extra: 1985 / 1884,
  22988. bottom: 0.04
  22989. }
  22990. },
  22991. back: {
  22992. height: math.unit(5 + 4 / 12, "feet"),
  22993. weight: math.unit(120, "lb"),
  22994. name: "Back",
  22995. image: {
  22996. source: "./media/characters/luci/back.svg",
  22997. extra: 1892 / 1791,
  22998. bottom: 0.002
  22999. }
  23000. },
  23001. },
  23002. [
  23003. {
  23004. name: "Normal",
  23005. height: math.unit(5 + 4 / 12, "feet"),
  23006. default: true
  23007. },
  23008. ]
  23009. ))
  23010. characterMakers.push(() => makeCharacter(
  23011. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23012. {
  23013. front: {
  23014. height: math.unit(1500, "feet"),
  23015. weight: math.unit(3.8e6, "tons"),
  23016. name: "Front",
  23017. image: {
  23018. source: "./media/characters/2th/front.svg",
  23019. extra: 3489 / 3350,
  23020. bottom: 0.1
  23021. }
  23022. },
  23023. foot: {
  23024. height: math.unit(461, "feet"),
  23025. name: "Foot",
  23026. image: {
  23027. source: "./media/characters/2th/foot.svg"
  23028. }
  23029. },
  23030. },
  23031. [
  23032. {
  23033. name: "\"Micro\"",
  23034. height: math.unit(15 + 7 / 12, "feet")
  23035. },
  23036. {
  23037. name: "Normal",
  23038. height: math.unit(1500, "feet"),
  23039. default: true
  23040. },
  23041. {
  23042. name: "Macro",
  23043. height: math.unit(5000, "feet")
  23044. },
  23045. {
  23046. name: "Megamacro",
  23047. height: math.unit(15, "miles")
  23048. },
  23049. {
  23050. name: "Gigamacro",
  23051. height: math.unit(4000, "miles")
  23052. },
  23053. {
  23054. name: "Galactic",
  23055. height: math.unit(50, "AU")
  23056. },
  23057. ]
  23058. ))
  23059. characterMakers.push(() => makeCharacter(
  23060. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23061. {
  23062. front: {
  23063. height: math.unit(5 + 6 / 12, "feet"),
  23064. weight: math.unit(220, "lb"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/amethyst/front.svg",
  23068. extra: 2078 / 2040,
  23069. bottom: 0.045
  23070. }
  23071. },
  23072. back: {
  23073. height: math.unit(5 + 6 / 12, "feet"),
  23074. weight: math.unit(220, "lb"),
  23075. name: "Back",
  23076. image: {
  23077. source: "./media/characters/amethyst/back.svg",
  23078. extra: 2021 / 1989,
  23079. bottom: 0.02
  23080. }
  23081. },
  23082. },
  23083. [
  23084. {
  23085. name: "Normal",
  23086. height: math.unit(5 + 6 / 12, "feet"),
  23087. default: true
  23088. },
  23089. ]
  23090. ))
  23091. characterMakers.push(() => makeCharacter(
  23092. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23093. {
  23094. front: {
  23095. height: math.unit(4 + 11 / 12, "feet"),
  23096. weight: math.unit(120, "lb"),
  23097. name: "Front",
  23098. image: {
  23099. source: "./media/characters/yumi-akiyama/front.svg",
  23100. extra: 1327 / 1235,
  23101. bottom: 0.02
  23102. }
  23103. },
  23104. back: {
  23105. height: math.unit(4 + 11 / 12, "feet"),
  23106. weight: math.unit(120, "lb"),
  23107. name: "Back",
  23108. image: {
  23109. source: "./media/characters/yumi-akiyama/back.svg",
  23110. extra: 1287 / 1245,
  23111. bottom: 0.002
  23112. }
  23113. },
  23114. },
  23115. [
  23116. {
  23117. name: "Galactic",
  23118. height: math.unit(50, "galaxies"),
  23119. default: true
  23120. },
  23121. {
  23122. name: "Universal",
  23123. height: math.unit(100, "universes")
  23124. },
  23125. ]
  23126. ))
  23127. characterMakers.push(() => makeCharacter(
  23128. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23129. {
  23130. front: {
  23131. height: math.unit(8, "feet"),
  23132. weight: math.unit(500, "lb"),
  23133. name: "Front",
  23134. image: {
  23135. source: "./media/characters/rifter-yrmori/front.svg",
  23136. extra: 1180 / 1125,
  23137. bottom: 0.02
  23138. }
  23139. },
  23140. back: {
  23141. height: math.unit(8, "feet"),
  23142. weight: math.unit(500, "lb"),
  23143. name: "Back",
  23144. image: {
  23145. source: "./media/characters/rifter-yrmori/back.svg",
  23146. extra: 1190 / 1145,
  23147. bottom: 0.001
  23148. }
  23149. },
  23150. wings: {
  23151. height: math.unit(7.75, "feet"),
  23152. weight: math.unit(500, "lb"),
  23153. name: "Wings",
  23154. image: {
  23155. source: "./media/characters/rifter-yrmori/wings.svg",
  23156. extra: 1357 / 1285
  23157. }
  23158. },
  23159. maw: {
  23160. height: math.unit(0.8, "feet"),
  23161. name: "Maw",
  23162. image: {
  23163. source: "./media/characters/rifter-yrmori/maw.svg"
  23164. }
  23165. },
  23166. mawfront: {
  23167. height: math.unit(1.45, "feet"),
  23168. name: "Maw (Front)",
  23169. image: {
  23170. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23171. }
  23172. },
  23173. },
  23174. [
  23175. {
  23176. name: "Normal",
  23177. height: math.unit(8, "feet"),
  23178. default: true
  23179. },
  23180. {
  23181. name: "Macro",
  23182. height: math.unit(42, "meters")
  23183. },
  23184. ]
  23185. ))
  23186. characterMakers.push(() => makeCharacter(
  23187. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23188. {
  23189. were: {
  23190. height: math.unit(25 + 6 / 12, "feet"),
  23191. weight: math.unit(10000, "lb"),
  23192. name: "Were",
  23193. image: {
  23194. source: "./media/characters/tahajin/were.svg",
  23195. extra: 801 / 770,
  23196. bottom: 0.042
  23197. }
  23198. },
  23199. aquatic: {
  23200. height: math.unit(6 + 4 / 12, "feet"),
  23201. weight: math.unit(160, "lb"),
  23202. name: "Aquatic",
  23203. image: {
  23204. source: "./media/characters/tahajin/aquatic.svg",
  23205. extra: 572 / 542,
  23206. bottom: 0.04
  23207. }
  23208. },
  23209. chow: {
  23210. height: math.unit(8 + 11 / 12, "feet"),
  23211. weight: math.unit(450, "lb"),
  23212. name: "Chow",
  23213. image: {
  23214. source: "./media/characters/tahajin/chow.svg",
  23215. extra: 660 / 640,
  23216. bottom: 0.015
  23217. }
  23218. },
  23219. demiNaga: {
  23220. height: math.unit(6 + 8 / 12, "feet"),
  23221. weight: math.unit(300, "lb"),
  23222. name: "Demi Naga",
  23223. image: {
  23224. source: "./media/characters/tahajin/demi-naga.svg",
  23225. extra: 643 / 615,
  23226. bottom: 0.1
  23227. }
  23228. },
  23229. data: {
  23230. height: math.unit(5, "inches"),
  23231. weight: math.unit(0.1, "lb"),
  23232. name: "Data",
  23233. image: {
  23234. source: "./media/characters/tahajin/data.svg"
  23235. }
  23236. },
  23237. fluu: {
  23238. height: math.unit(5 + 7 / 12, "feet"),
  23239. weight: math.unit(140, "lb"),
  23240. name: "Fluu",
  23241. image: {
  23242. source: "./media/characters/tahajin/fluu.svg",
  23243. extra: 628 / 592,
  23244. bottom: 0.02
  23245. }
  23246. },
  23247. starWarrior: {
  23248. height: math.unit(4 + 5 / 12, "feet"),
  23249. weight: math.unit(50, "lb"),
  23250. name: "Star Warrior",
  23251. image: {
  23252. source: "./media/characters/tahajin/star-warrior.svg"
  23253. }
  23254. },
  23255. },
  23256. [
  23257. {
  23258. name: "Normal",
  23259. height: math.unit(25 + 6 / 12, "feet"),
  23260. default: true
  23261. },
  23262. ]
  23263. ))
  23264. characterMakers.push(() => makeCharacter(
  23265. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23266. {
  23267. front: {
  23268. height: math.unit(8, "feet"),
  23269. weight: math.unit(350, "lb"),
  23270. name: "Front",
  23271. image: {
  23272. source: "./media/characters/gabira/front.svg",
  23273. extra: 1261/1154,
  23274. bottom: 51/1312
  23275. }
  23276. },
  23277. back: {
  23278. height: math.unit(8, "feet"),
  23279. weight: math.unit(350, "lb"),
  23280. name: "Back",
  23281. image: {
  23282. source: "./media/characters/gabira/back.svg",
  23283. extra: 1265/1163,
  23284. bottom: 46/1311
  23285. }
  23286. },
  23287. head: {
  23288. height: math.unit(2.85, "feet"),
  23289. name: "Head",
  23290. image: {
  23291. source: "./media/characters/gabira/head.svg"
  23292. }
  23293. },
  23294. },
  23295. [
  23296. {
  23297. name: "Normal",
  23298. height: math.unit(8, "feet"),
  23299. default: true
  23300. },
  23301. ]
  23302. ))
  23303. characterMakers.push(() => makeCharacter(
  23304. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23305. {
  23306. front: {
  23307. height: math.unit(5 + 3 / 12, "feet"),
  23308. weight: math.unit(137, "lb"),
  23309. name: "Front",
  23310. image: {
  23311. source: "./media/characters/sasha-katraine/front.svg",
  23312. extra: 1745/1694,
  23313. bottom: 37/1782
  23314. }
  23315. },
  23316. back: {
  23317. height: math.unit(5 + 3 / 12, "feet"),
  23318. weight: math.unit(137, "lb"),
  23319. name: "Back",
  23320. image: {
  23321. source: "./media/characters/sasha-katraine/back.svg",
  23322. extra: 1776/1699,
  23323. bottom: 26/1802
  23324. }
  23325. },
  23326. },
  23327. [
  23328. {
  23329. name: "Micro",
  23330. height: math.unit(5, "inches")
  23331. },
  23332. {
  23333. name: "Normal",
  23334. height: math.unit(5 + 3 / 12, "feet"),
  23335. default: true
  23336. },
  23337. ]
  23338. ))
  23339. characterMakers.push(() => makeCharacter(
  23340. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23341. {
  23342. side: {
  23343. height: math.unit(4, "inches"),
  23344. weight: math.unit(200, "grams"),
  23345. name: "Side",
  23346. image: {
  23347. source: "./media/characters/der/side.svg",
  23348. extra: 719 / 400,
  23349. bottom: 30.6 / 749.9187
  23350. }
  23351. },
  23352. },
  23353. [
  23354. {
  23355. name: "Micro",
  23356. height: math.unit(4, "inches"),
  23357. default: true
  23358. },
  23359. ]
  23360. ))
  23361. characterMakers.push(() => makeCharacter(
  23362. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23363. {
  23364. side: {
  23365. height: math.unit(30, "meters"),
  23366. weight: math.unit(700, "tonnes"),
  23367. name: "Side",
  23368. image: {
  23369. source: "./media/characters/fixerdragon/side.svg",
  23370. extra: (1293.0514 - 116.03) / 1106.86,
  23371. bottom: 116.03 / 1293.0514
  23372. }
  23373. },
  23374. },
  23375. [
  23376. {
  23377. name: "Planck",
  23378. height: math.unit(1.6e-35, "meters")
  23379. },
  23380. {
  23381. name: "Micro",
  23382. height: math.unit(0.4, "meters")
  23383. },
  23384. {
  23385. name: "Normal",
  23386. height: math.unit(30, "meters"),
  23387. default: true
  23388. },
  23389. {
  23390. name: "Megamacro",
  23391. height: math.unit(1.2, "megameters")
  23392. },
  23393. {
  23394. name: "Teramacro",
  23395. height: math.unit(130, "terameters")
  23396. },
  23397. {
  23398. name: "Yottamacro",
  23399. height: math.unit(6200, "yottameters")
  23400. },
  23401. ]
  23402. ));
  23403. characterMakers.push(() => makeCharacter(
  23404. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23405. {
  23406. front: {
  23407. height: math.unit(8, "feet"),
  23408. weight: math.unit(250, "lb"),
  23409. name: "Front",
  23410. image: {
  23411. source: "./media/characters/kite/front.svg",
  23412. extra: 2796 / 2659,
  23413. bottom: 0.002
  23414. }
  23415. },
  23416. },
  23417. [
  23418. {
  23419. name: "Normal",
  23420. height: math.unit(8, "feet"),
  23421. default: true
  23422. },
  23423. {
  23424. name: "Macro",
  23425. height: math.unit(360, "feet")
  23426. },
  23427. {
  23428. name: "Megamacro",
  23429. height: math.unit(1500, "feet")
  23430. },
  23431. ]
  23432. ))
  23433. characterMakers.push(() => makeCharacter(
  23434. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23435. {
  23436. front: {
  23437. height: math.unit(5 + 11/12, "feet"),
  23438. weight: math.unit(170, "lb"),
  23439. name: "Front",
  23440. image: {
  23441. source: "./media/characters/poojawa-vynar/front.svg",
  23442. extra: 1735/1585,
  23443. bottom: 96/1831
  23444. }
  23445. },
  23446. back: {
  23447. height: math.unit(5 + 11/12, "feet"),
  23448. weight: math.unit(170, "lb"),
  23449. name: "Back",
  23450. image: {
  23451. source: "./media/characters/poojawa-vynar/back.svg",
  23452. extra: 1749/1607,
  23453. bottom: 28/1777
  23454. }
  23455. },
  23456. male: {
  23457. height: math.unit(5 + 11/12, "feet"),
  23458. weight: math.unit(170, "lb"),
  23459. name: "Male",
  23460. image: {
  23461. source: "./media/characters/poojawa-vynar/male.svg",
  23462. extra: 1855/1713,
  23463. bottom: 63/1918
  23464. }
  23465. },
  23466. taur: {
  23467. height: math.unit(5 + 11/12, "feet"),
  23468. weight: math.unit(170, "lb"),
  23469. name: "Taur",
  23470. image: {
  23471. source: "./media/characters/poojawa-vynar/taur.svg",
  23472. extra: 1151/1059,
  23473. bottom: 356/1507
  23474. }
  23475. },
  23476. frontDressed: {
  23477. height: math.unit(5 + 11/12, "feet"),
  23478. weight: math.unit(170, "lb"),
  23479. name: "Front (Dressed)",
  23480. image: {
  23481. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23482. extra: 1735/1585,
  23483. bottom: 96/1831
  23484. }
  23485. },
  23486. backDressed: {
  23487. height: math.unit(5 + 11/12, "feet"),
  23488. weight: math.unit(170, "lb"),
  23489. name: "Back (Dressed)",
  23490. image: {
  23491. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23492. extra: 1749/1607,
  23493. bottom: 28/1777
  23494. }
  23495. },
  23496. maleDressed: {
  23497. height: math.unit(5 + 11/12, "feet"),
  23498. weight: math.unit(170, "lb"),
  23499. name: "Male (Dressed)",
  23500. image: {
  23501. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23502. extra: 1855/1713,
  23503. bottom: 63/1918
  23504. }
  23505. },
  23506. taurDressed: {
  23507. height: math.unit(5 + 11/12, "feet"),
  23508. weight: math.unit(170, "lb"),
  23509. name: "Taur (Dressed)",
  23510. image: {
  23511. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23512. extra: 1151/1059,
  23513. bottom: 356/1507
  23514. }
  23515. },
  23516. maw: {
  23517. height: math.unit(1.46, "feet"),
  23518. name: "Maw",
  23519. image: {
  23520. source: "./media/characters/poojawa-vynar/maw.svg"
  23521. }
  23522. },
  23523. head: {
  23524. height: math.unit(2.34, "feet"),
  23525. name: "Head",
  23526. image: {
  23527. source: "./media/characters/poojawa-vynar/head.svg"
  23528. }
  23529. },
  23530. paw: {
  23531. height: math.unit(1.61, "feet"),
  23532. name: "Paw",
  23533. image: {
  23534. source: "./media/characters/poojawa-vynar/paw.svg"
  23535. }
  23536. },
  23537. pawToering: {
  23538. height: math.unit(1.72, "feet"),
  23539. name: "Paw (Toering)",
  23540. image: {
  23541. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23542. }
  23543. },
  23544. toering: {
  23545. height: math.unit(2.9, "inches"),
  23546. name: "Toering",
  23547. image: {
  23548. source: "./media/characters/poojawa-vynar/toering.svg"
  23549. }
  23550. },
  23551. shaft: {
  23552. height: math.unit(0.625, "feet"),
  23553. name: "Shaft",
  23554. image: {
  23555. source: "./media/characters/poojawa-vynar/shaft.svg"
  23556. }
  23557. },
  23558. spade: {
  23559. height: math.unit(0.42, "feet"),
  23560. name: "Spade",
  23561. image: {
  23562. source: "./media/characters/poojawa-vynar/spade.svg"
  23563. }
  23564. },
  23565. },
  23566. [
  23567. {
  23568. name: "Shortstack",
  23569. height: math.unit(4, "feet")
  23570. },
  23571. {
  23572. name: "Normal",
  23573. height: math.unit(5 + 11 / 12, "feet"),
  23574. default: true
  23575. },
  23576. {
  23577. name: "Tauric",
  23578. height: math.unit(4, "meters")
  23579. },
  23580. ]
  23581. ))
  23582. characterMakers.push(() => makeCharacter(
  23583. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23584. {
  23585. front: {
  23586. height: math.unit(293, "meters"),
  23587. weight: math.unit(70400, "tons"),
  23588. name: "Front",
  23589. image: {
  23590. source: "./media/characters/violette/front.svg",
  23591. extra: 1227 / 1180,
  23592. bottom: 0.005
  23593. }
  23594. },
  23595. back: {
  23596. height: math.unit(293, "meters"),
  23597. weight: math.unit(70400, "tons"),
  23598. name: "Back",
  23599. image: {
  23600. source: "./media/characters/violette/back.svg",
  23601. extra: 1227 / 1180,
  23602. bottom: 0.005
  23603. }
  23604. },
  23605. },
  23606. [
  23607. {
  23608. name: "Macro",
  23609. height: math.unit(293, "meters"),
  23610. default: true
  23611. },
  23612. ]
  23613. ))
  23614. characterMakers.push(() => makeCharacter(
  23615. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23616. {
  23617. front: {
  23618. height: math.unit(1050, "feet"),
  23619. weight: math.unit(200000, "tons"),
  23620. name: "Front",
  23621. image: {
  23622. source: "./media/characters/alessandra/front.svg",
  23623. extra: 960 / 912,
  23624. bottom: 0.06
  23625. }
  23626. },
  23627. },
  23628. [
  23629. {
  23630. name: "Macro",
  23631. height: math.unit(1050, "feet")
  23632. },
  23633. {
  23634. name: "Macro+",
  23635. height: math.unit(900, "meters"),
  23636. default: true
  23637. },
  23638. ]
  23639. ))
  23640. characterMakers.push(() => makeCharacter(
  23641. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23642. {
  23643. front: {
  23644. height: math.unit(5, "feet"),
  23645. weight: math.unit(187, "lb"),
  23646. name: "Front",
  23647. image: {
  23648. source: "./media/characters/person/front.svg",
  23649. extra: 3087 / 2945,
  23650. bottom: 91 / 3181
  23651. }
  23652. },
  23653. },
  23654. [
  23655. {
  23656. name: "Micro",
  23657. height: math.unit(3, "inches")
  23658. },
  23659. {
  23660. name: "Normal",
  23661. height: math.unit(5, "feet"),
  23662. default: true
  23663. },
  23664. {
  23665. name: "Macro",
  23666. height: math.unit(90, "feet")
  23667. },
  23668. {
  23669. name: "Max Size",
  23670. height: math.unit(280, "feet")
  23671. },
  23672. ]
  23673. ))
  23674. characterMakers.push(() => makeCharacter(
  23675. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23676. {
  23677. front: {
  23678. height: math.unit(4.5, "meters"),
  23679. weight: math.unit(3200, "lb"),
  23680. name: "Front",
  23681. image: {
  23682. source: "./media/characters/ty/front.svg",
  23683. extra: 1038 / 960,
  23684. bottom: 31.156 / 1068
  23685. }
  23686. },
  23687. back: {
  23688. height: math.unit(4.5, "meters"),
  23689. weight: math.unit(3200, "lb"),
  23690. name: "Back",
  23691. image: {
  23692. source: "./media/characters/ty/back.svg",
  23693. extra: 1044 / 966,
  23694. bottom: 7.48 / 1049
  23695. }
  23696. },
  23697. },
  23698. [
  23699. {
  23700. name: "Normal",
  23701. height: math.unit(4.5, "meters"),
  23702. default: true
  23703. },
  23704. ]
  23705. ))
  23706. characterMakers.push(() => makeCharacter(
  23707. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23708. {
  23709. front: {
  23710. height: math.unit(5 + 4 / 12, "feet"),
  23711. weight: math.unit(115, "lb"),
  23712. name: "Front",
  23713. image: {
  23714. source: "./media/characters/rocky/front.svg",
  23715. extra: 1012 / 975,
  23716. bottom: 54 / 1066
  23717. }
  23718. },
  23719. },
  23720. [
  23721. {
  23722. name: "Normal",
  23723. height: math.unit(5 + 4 / 12, "feet"),
  23724. default: true
  23725. },
  23726. ]
  23727. ))
  23728. characterMakers.push(() => makeCharacter(
  23729. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23730. {
  23731. upright: {
  23732. height: math.unit(6, "meters"),
  23733. weight: math.unit(4000, "kg"),
  23734. name: "Upright",
  23735. image: {
  23736. source: "./media/characters/ruin/upright.svg",
  23737. extra: 668 / 661,
  23738. bottom: 42 / 799.8396
  23739. }
  23740. },
  23741. },
  23742. [
  23743. {
  23744. name: "Normal",
  23745. height: math.unit(6, "meters"),
  23746. default: true
  23747. },
  23748. ]
  23749. ))
  23750. characterMakers.push(() => makeCharacter(
  23751. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23752. {
  23753. front: {
  23754. height: math.unit(5, "feet"),
  23755. weight: math.unit(106, "lb"),
  23756. name: "Front",
  23757. image: {
  23758. source: "./media/characters/robin/front.svg",
  23759. extra: 862 / 799,
  23760. bottom: 42.4 / 914.8856
  23761. }
  23762. },
  23763. },
  23764. [
  23765. {
  23766. name: "Normal",
  23767. height: math.unit(5, "feet"),
  23768. default: true
  23769. },
  23770. ]
  23771. ))
  23772. characterMakers.push(() => makeCharacter(
  23773. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23774. {
  23775. side: {
  23776. height: math.unit(3, "feet"),
  23777. weight: math.unit(225, "lb"),
  23778. name: "Side",
  23779. image: {
  23780. source: "./media/characters/saian/side.svg",
  23781. extra: 566 / 356,
  23782. bottom: 79.7 / 643
  23783. }
  23784. },
  23785. maw: {
  23786. height: math.unit(2.85, "feet"),
  23787. name: "Maw",
  23788. image: {
  23789. source: "./media/characters/saian/maw.svg"
  23790. }
  23791. },
  23792. },
  23793. [
  23794. {
  23795. name: "Normal",
  23796. height: math.unit(3, "feet"),
  23797. default: true
  23798. },
  23799. ]
  23800. ))
  23801. characterMakers.push(() => makeCharacter(
  23802. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23803. {
  23804. side: {
  23805. height: math.unit(8, "feet"),
  23806. weight: math.unit(300, "lb"),
  23807. name: "Side",
  23808. image: {
  23809. source: "./media/characters/equus-silvermane/side.svg",
  23810. extra: 2176 / 2050,
  23811. bottom: 65.7 / 2245
  23812. }
  23813. },
  23814. front: {
  23815. height: math.unit(8, "feet"),
  23816. weight: math.unit(300, "lb"),
  23817. name: "Front",
  23818. image: {
  23819. source: "./media/characters/equus-silvermane/front.svg",
  23820. extra: 4633 / 4400,
  23821. bottom: 71.3 / 4706.915
  23822. }
  23823. },
  23824. sideStepping: {
  23825. height: math.unit(8, "feet"),
  23826. weight: math.unit(300, "lb"),
  23827. name: "Side (Stepping)",
  23828. image: {
  23829. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23830. extra: 1968 / 1860,
  23831. bottom: 16.4 / 1989
  23832. }
  23833. },
  23834. },
  23835. [
  23836. {
  23837. name: "Normal",
  23838. height: math.unit(8, "feet")
  23839. },
  23840. {
  23841. name: "Minimacro",
  23842. height: math.unit(75, "feet"),
  23843. default: true
  23844. },
  23845. {
  23846. name: "Macro",
  23847. height: math.unit(150, "feet")
  23848. },
  23849. {
  23850. name: "Macro+",
  23851. height: math.unit(1000, "feet")
  23852. },
  23853. {
  23854. name: "Megamacro",
  23855. height: math.unit(1, "mile")
  23856. },
  23857. ]
  23858. ))
  23859. characterMakers.push(() => makeCharacter(
  23860. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23861. {
  23862. side: {
  23863. height: math.unit(20, "feet"),
  23864. weight: math.unit(30000, "kg"),
  23865. name: "Side",
  23866. image: {
  23867. source: "./media/characters/windar/side.svg",
  23868. extra: 1491 / 1248,
  23869. bottom: 82.56 / 1568
  23870. }
  23871. },
  23872. },
  23873. [
  23874. {
  23875. name: "Normal",
  23876. height: math.unit(20, "feet"),
  23877. default: true
  23878. },
  23879. ]
  23880. ))
  23881. characterMakers.push(() => makeCharacter(
  23882. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23883. {
  23884. side: {
  23885. height: math.unit(15.66, "feet"),
  23886. weight: math.unit(150, "lb"),
  23887. name: "Side",
  23888. image: {
  23889. source: "./media/characters/melody/side.svg",
  23890. extra: 1097 / 944,
  23891. bottom: 11.8 / 1109
  23892. }
  23893. },
  23894. sideOutfit: {
  23895. height: math.unit(15.66, "feet"),
  23896. weight: math.unit(150, "lb"),
  23897. name: "Side (Outfit)",
  23898. image: {
  23899. source: "./media/characters/melody/side-outfit.svg",
  23900. extra: 1097 / 944,
  23901. bottom: 11.8 / 1109
  23902. }
  23903. },
  23904. },
  23905. [
  23906. {
  23907. name: "Normal",
  23908. height: math.unit(15.66, "feet"),
  23909. default: true
  23910. },
  23911. ]
  23912. ))
  23913. characterMakers.push(() => makeCharacter(
  23914. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23915. {
  23916. armoredFront: {
  23917. height: math.unit(8, "feet"),
  23918. weight: math.unit(325, "lb"),
  23919. name: "Front",
  23920. image: {
  23921. source: "./media/characters/windera/armored-front.svg",
  23922. extra: 1830/1598,
  23923. bottom: 151/1981
  23924. },
  23925. form: "armored",
  23926. default: true
  23927. },
  23928. macroFront: {
  23929. height: math.unit(70, "feet"),
  23930. weight: math.unit(315453, "lb"),
  23931. name: "Front",
  23932. image: {
  23933. source: "./media/characters/windera/macro-front.svg",
  23934. extra: 963/883,
  23935. bottom: 23/986
  23936. },
  23937. form: "macro",
  23938. default: true
  23939. },
  23940. },
  23941. [
  23942. {
  23943. name: "Normal",
  23944. height: math.unit(8, "feet"),
  23945. default: true,
  23946. form: "armored"
  23947. },
  23948. {
  23949. name: "Normal",
  23950. height: math.unit(70, "feet"),
  23951. default: true,
  23952. form: "macro"
  23953. },
  23954. ],
  23955. {
  23956. "armored": {
  23957. name: "Armored",
  23958. default: true
  23959. },
  23960. "macro": {
  23961. name: "Macro",
  23962. },
  23963. }
  23964. ))
  23965. characterMakers.push(() => makeCharacter(
  23966. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23967. {
  23968. front: {
  23969. height: math.unit(28.75, "feet"),
  23970. weight: math.unit(2000, "kg"),
  23971. name: "Front",
  23972. image: {
  23973. source: "./media/characters/sonear/front.svg",
  23974. extra: 1041.1 / 964.9,
  23975. bottom: 53.7 / 1096.6
  23976. }
  23977. },
  23978. },
  23979. [
  23980. {
  23981. name: "Normal",
  23982. height: math.unit(28.75, "feet"),
  23983. default: true
  23984. },
  23985. ]
  23986. ))
  23987. characterMakers.push(() => makeCharacter(
  23988. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23989. {
  23990. side: {
  23991. height: math.unit(25.5, "feet"),
  23992. weight: math.unit(23000, "kg"),
  23993. name: "Side",
  23994. image: {
  23995. source: "./media/characters/kanara/side.svg"
  23996. }
  23997. },
  23998. },
  23999. [
  24000. {
  24001. name: "Normal",
  24002. height: math.unit(25.5, "feet"),
  24003. default: true
  24004. },
  24005. ]
  24006. ))
  24007. characterMakers.push(() => makeCharacter(
  24008. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24009. {
  24010. side: {
  24011. height: math.unit(10, "feet"),
  24012. weight: math.unit(1000, "kg"),
  24013. name: "Side",
  24014. image: {
  24015. source: "./media/characters/ereus/side.svg",
  24016. extra: 1157 / 959,
  24017. bottom: 153 / 1312.5
  24018. }
  24019. },
  24020. },
  24021. [
  24022. {
  24023. name: "Normal",
  24024. height: math.unit(10, "feet"),
  24025. default: true
  24026. },
  24027. ]
  24028. ))
  24029. characterMakers.push(() => makeCharacter(
  24030. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24031. {
  24032. side: {
  24033. height: math.unit(4.5, "feet"),
  24034. weight: math.unit(500, "lb"),
  24035. name: "Side",
  24036. image: {
  24037. source: "./media/characters/e-ter/side.svg",
  24038. extra: 1550 / 1248,
  24039. bottom: 146 / 1694
  24040. }
  24041. },
  24042. },
  24043. [
  24044. {
  24045. name: "Normal",
  24046. height: math.unit(4.5, "feet"),
  24047. default: true
  24048. },
  24049. ]
  24050. ))
  24051. characterMakers.push(() => makeCharacter(
  24052. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24053. {
  24054. side: {
  24055. height: math.unit(9.7, "feet"),
  24056. weight: math.unit(4000, "kg"),
  24057. name: "Side",
  24058. image: {
  24059. source: "./media/characters/yamie/side.svg"
  24060. }
  24061. },
  24062. },
  24063. [
  24064. {
  24065. name: "Normal",
  24066. height: math.unit(9.7, "feet"),
  24067. default: true
  24068. },
  24069. ]
  24070. ))
  24071. characterMakers.push(() => makeCharacter(
  24072. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24073. {
  24074. front: {
  24075. height: math.unit(50, "feet"),
  24076. weight: math.unit(50000, "kg"),
  24077. name: "Front",
  24078. image: {
  24079. source: "./media/characters/anders/front.svg",
  24080. extra: 570 / 539,
  24081. bottom: 14.7 / 586.7
  24082. }
  24083. },
  24084. },
  24085. [
  24086. {
  24087. name: "Large",
  24088. height: math.unit(50, "feet")
  24089. },
  24090. {
  24091. name: "Macro",
  24092. height: math.unit(2000, "feet"),
  24093. default: true
  24094. },
  24095. {
  24096. name: "Megamacro",
  24097. height: math.unit(12, "miles")
  24098. },
  24099. ]
  24100. ))
  24101. characterMakers.push(() => makeCharacter(
  24102. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24103. {
  24104. front: {
  24105. height: math.unit(7 + 2 / 12, "feet"),
  24106. weight: math.unit(300, "lb"),
  24107. name: "Front",
  24108. image: {
  24109. source: "./media/characters/reban/front.svg",
  24110. extra: 1287/1212,
  24111. bottom: 148/1435
  24112. }
  24113. },
  24114. head: {
  24115. height: math.unit(1.95, "feet"),
  24116. name: "Head",
  24117. image: {
  24118. source: "./media/characters/reban/head.svg"
  24119. }
  24120. },
  24121. maw: {
  24122. height: math.unit(0.95, "feet"),
  24123. name: "Maw",
  24124. image: {
  24125. source: "./media/characters/reban/maw.svg"
  24126. }
  24127. },
  24128. foot: {
  24129. height: math.unit(1.65, "feet"),
  24130. name: "Foot",
  24131. image: {
  24132. source: "./media/characters/reban/foot.svg"
  24133. }
  24134. },
  24135. dick: {
  24136. height: math.unit(7 / 5, "feet"),
  24137. name: "Dick",
  24138. image: {
  24139. source: "./media/characters/reban/dick.svg"
  24140. }
  24141. },
  24142. },
  24143. [
  24144. {
  24145. name: "Natural Height",
  24146. height: math.unit(7 + 2 / 12, "feet")
  24147. },
  24148. {
  24149. name: "Macro",
  24150. height: math.unit(500, "feet"),
  24151. default: true
  24152. },
  24153. {
  24154. name: "Canon Height",
  24155. height: math.unit(50, "AU")
  24156. },
  24157. ]
  24158. ))
  24159. characterMakers.push(() => makeCharacter(
  24160. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24161. {
  24162. front: {
  24163. height: math.unit(6, "feet"),
  24164. weight: math.unit(150, "lb"),
  24165. name: "Front",
  24166. image: {
  24167. source: "./media/characters/terrance-keayes/front.svg",
  24168. extra: 1.005,
  24169. bottom: 151 / 1615
  24170. }
  24171. },
  24172. side: {
  24173. height: math.unit(6, "feet"),
  24174. weight: math.unit(150, "lb"),
  24175. name: "Side",
  24176. image: {
  24177. source: "./media/characters/terrance-keayes/side.svg",
  24178. extra: 1.005,
  24179. bottom: 129.4 / 1544
  24180. }
  24181. },
  24182. back: {
  24183. height: math.unit(6, "feet"),
  24184. weight: math.unit(150, "lb"),
  24185. name: "Back",
  24186. image: {
  24187. source: "./media/characters/terrance-keayes/back.svg",
  24188. extra: 1.005,
  24189. bottom: 58.4 / 1557.3
  24190. }
  24191. },
  24192. dick: {
  24193. height: math.unit(6 * 0.208, "feet"),
  24194. name: "Dick",
  24195. image: {
  24196. source: "./media/characters/terrance-keayes/dick.svg"
  24197. }
  24198. },
  24199. },
  24200. [
  24201. {
  24202. name: "Canon Height",
  24203. height: math.unit(35, "miles"),
  24204. default: true
  24205. },
  24206. ]
  24207. ))
  24208. characterMakers.push(() => makeCharacter(
  24209. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24210. {
  24211. front: {
  24212. height: math.unit(6, "feet"),
  24213. weight: math.unit(150, "lb"),
  24214. name: "Front",
  24215. image: {
  24216. source: "./media/characters/ofelia/front.svg",
  24217. extra: 1130/1117,
  24218. bottom: 91/1221
  24219. }
  24220. },
  24221. back: {
  24222. height: math.unit(6, "feet"),
  24223. weight: math.unit(150, "lb"),
  24224. name: "Back",
  24225. image: {
  24226. source: "./media/characters/ofelia/back.svg",
  24227. extra: 1172/1159,
  24228. bottom: 28/1200
  24229. }
  24230. },
  24231. maw: {
  24232. height: math.unit(1, "feet"),
  24233. name: "Maw",
  24234. image: {
  24235. source: "./media/characters/ofelia/maw.svg"
  24236. }
  24237. },
  24238. foot: {
  24239. height: math.unit(1.949, "feet"),
  24240. name: "Foot",
  24241. image: {
  24242. source: "./media/characters/ofelia/foot.svg"
  24243. }
  24244. },
  24245. },
  24246. [
  24247. {
  24248. name: "Canon Height",
  24249. height: math.unit(2000, "miles"),
  24250. default: true
  24251. },
  24252. ]
  24253. ))
  24254. characterMakers.push(() => makeCharacter(
  24255. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24256. {
  24257. front: {
  24258. height: math.unit(6, "feet"),
  24259. weight: math.unit(150, "lb"),
  24260. name: "Front",
  24261. image: {
  24262. source: "./media/characters/samuel/front.svg",
  24263. extra: 265 / 258,
  24264. bottom: 2 / 266.1566
  24265. }
  24266. },
  24267. },
  24268. [
  24269. {
  24270. name: "Macro",
  24271. height: math.unit(100, "feet"),
  24272. default: true
  24273. },
  24274. {
  24275. name: "Full Size",
  24276. height: math.unit(1000, "miles")
  24277. },
  24278. ]
  24279. ))
  24280. characterMakers.push(() => makeCharacter(
  24281. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24282. {
  24283. front: {
  24284. height: math.unit(6, "feet"),
  24285. weight: math.unit(300, "lb"),
  24286. name: "Front",
  24287. image: {
  24288. source: "./media/characters/beishir-kiel/front.svg",
  24289. extra: 569 / 547,
  24290. bottom: 41.9 / 609
  24291. }
  24292. },
  24293. maw: {
  24294. height: math.unit(6 * 0.202, "feet"),
  24295. name: "Maw",
  24296. image: {
  24297. source: "./media/characters/beishir-kiel/maw.svg"
  24298. }
  24299. },
  24300. },
  24301. [
  24302. {
  24303. name: "Macro",
  24304. height: math.unit(300, "feet"),
  24305. default: true
  24306. },
  24307. ]
  24308. ))
  24309. characterMakers.push(() => makeCharacter(
  24310. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24311. {
  24312. front: {
  24313. height: math.unit(5 + 7/12, "feet"),
  24314. weight: math.unit(120, "lb"),
  24315. name: "Front",
  24316. image: {
  24317. source: "./media/characters/logan-grey/front.svg",
  24318. extra: 1836/1738,
  24319. bottom: 108/1944
  24320. }
  24321. },
  24322. back: {
  24323. height: math.unit(5 + 7/12, "feet"),
  24324. weight: math.unit(120, "lb"),
  24325. name: "Back",
  24326. image: {
  24327. source: "./media/characters/logan-grey/back.svg",
  24328. extra: 1880/1794,
  24329. bottom: 24/1904
  24330. }
  24331. },
  24332. frontSfw: {
  24333. height: math.unit(5 + 7/12, "feet"),
  24334. weight: math.unit(120, "lb"),
  24335. name: "Front (SFW)",
  24336. image: {
  24337. source: "./media/characters/logan-grey/front-sfw.svg",
  24338. extra: 1836/1738,
  24339. bottom: 108/1944
  24340. }
  24341. },
  24342. backSfw: {
  24343. height: math.unit(5 + 7/12, "feet"),
  24344. weight: math.unit(120, "lb"),
  24345. name: "Back (SFW)",
  24346. image: {
  24347. source: "./media/characters/logan-grey/back-sfw.svg",
  24348. extra: 1880/1794,
  24349. bottom: 24/1904
  24350. }
  24351. },
  24352. hands: {
  24353. height: math.unit(0.84, "feet"),
  24354. name: "Hands",
  24355. image: {
  24356. source: "./media/characters/logan-grey/hands.svg"
  24357. }
  24358. },
  24359. paws: {
  24360. height: math.unit(0.72, "feet"),
  24361. name: "Paws",
  24362. image: {
  24363. source: "./media/characters/logan-grey/paws.svg"
  24364. }
  24365. },
  24366. cock: {
  24367. height: math.unit(1.45, "feet"),
  24368. name: "Cock",
  24369. image: {
  24370. source: "./media/characters/logan-grey/cock.svg"
  24371. }
  24372. },
  24373. cockAlt: {
  24374. height: math.unit(1.437, "feet"),
  24375. name: "Cock (alt)",
  24376. image: {
  24377. source: "./media/characters/logan-grey/cock-alt.svg"
  24378. }
  24379. },
  24380. },
  24381. [
  24382. {
  24383. name: "Normal",
  24384. height: math.unit(5 + 8 / 12, "feet")
  24385. },
  24386. {
  24387. name: "The 500 Foot Femboy",
  24388. height: math.unit(500, "feet"),
  24389. default: true
  24390. },
  24391. {
  24392. name: "Megmacro",
  24393. height: math.unit(20, "miles")
  24394. },
  24395. ]
  24396. ))
  24397. characterMakers.push(() => makeCharacter(
  24398. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24399. {
  24400. front: {
  24401. height: math.unit(8 + 2 / 12, "feet"),
  24402. weight: math.unit(275, "lb"),
  24403. name: "Front",
  24404. image: {
  24405. source: "./media/characters/draganta/front.svg",
  24406. extra: 1177 / 1135,
  24407. bottom: 33.46 / 1212.1
  24408. }
  24409. },
  24410. },
  24411. [
  24412. {
  24413. name: "Normal",
  24414. height: math.unit(8 + 6 / 12, "feet"),
  24415. default: true
  24416. },
  24417. {
  24418. name: "Macro",
  24419. height: math.unit(150, "feet")
  24420. },
  24421. {
  24422. name: "Megamacro",
  24423. height: math.unit(1000, "miles")
  24424. },
  24425. ]
  24426. ))
  24427. characterMakers.push(() => makeCharacter(
  24428. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24429. {
  24430. front: {
  24431. height: math.unit(1.72, "m"),
  24432. weight: math.unit(80, "lb"),
  24433. name: "Front",
  24434. image: {
  24435. source: "./media/characters/voski/front.svg",
  24436. extra: 2076.22 / 2022.4,
  24437. bottom: 102.7 / 2177.3866
  24438. }
  24439. },
  24440. frontFlaccid: {
  24441. height: math.unit(1.72, "m"),
  24442. weight: math.unit(80, "lb"),
  24443. name: "Front (Flaccid)",
  24444. image: {
  24445. source: "./media/characters/voski/front-flaccid.svg",
  24446. extra: 2076.22 / 2022.4,
  24447. bottom: 102.7 / 2177.3866
  24448. }
  24449. },
  24450. frontErect: {
  24451. height: math.unit(1.72, "m"),
  24452. weight: math.unit(80, "lb"),
  24453. name: "Front (Erect)",
  24454. image: {
  24455. source: "./media/characters/voski/front-erect.svg",
  24456. extra: 2076.22 / 2022.4,
  24457. bottom: 102.7 / 2177.3866
  24458. }
  24459. },
  24460. back: {
  24461. height: math.unit(1.72, "m"),
  24462. weight: math.unit(80, "lb"),
  24463. name: "Back",
  24464. image: {
  24465. source: "./media/characters/voski/back.svg",
  24466. extra: 2104 / 2051,
  24467. bottom: 10.45 / 2113.63
  24468. }
  24469. },
  24470. },
  24471. [
  24472. {
  24473. name: "Normal",
  24474. height: math.unit(1.72, "m")
  24475. },
  24476. {
  24477. name: "Macro",
  24478. height: math.unit(55, "m"),
  24479. default: true
  24480. },
  24481. {
  24482. name: "Macro+",
  24483. height: math.unit(300, "m")
  24484. },
  24485. {
  24486. name: "Macro++",
  24487. height: math.unit(700, "m")
  24488. },
  24489. {
  24490. name: "Macro+++",
  24491. height: math.unit(4500, "m")
  24492. },
  24493. {
  24494. name: "Macro++++",
  24495. height: math.unit(45, "km")
  24496. },
  24497. {
  24498. name: "Macro+++++",
  24499. height: math.unit(1220, "km")
  24500. },
  24501. ]
  24502. ))
  24503. characterMakers.push(() => makeCharacter(
  24504. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24505. {
  24506. front: {
  24507. height: math.unit(2.3, "m"),
  24508. weight: math.unit(304, "kg"),
  24509. name: "Front",
  24510. image: {
  24511. source: "./media/characters/icowom-lee/front.svg",
  24512. extra: 985 / 955,
  24513. bottom: 25.4 / 1012
  24514. }
  24515. },
  24516. fronttentacles: {
  24517. height: math.unit(2.3, "m"),
  24518. weight: math.unit(304, "kg"),
  24519. name: "Front-tentacles",
  24520. image: {
  24521. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24522. extra: 985 / 955,
  24523. bottom: 25.4 / 1012
  24524. }
  24525. },
  24526. back: {
  24527. height: math.unit(2.3, "m"),
  24528. weight: math.unit(304, "kg"),
  24529. name: "Back",
  24530. image: {
  24531. source: "./media/characters/icowom-lee/back.svg",
  24532. extra: 975 / 954,
  24533. bottom: 9.5 / 985
  24534. }
  24535. },
  24536. backtentacles: {
  24537. height: math.unit(2.3, "m"),
  24538. weight: math.unit(304, "kg"),
  24539. name: "Back-tentacles",
  24540. image: {
  24541. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24542. extra: 975 / 954,
  24543. bottom: 9.5 / 985
  24544. }
  24545. },
  24546. frontDressed: {
  24547. height: math.unit(2.3, "m"),
  24548. weight: math.unit(304, "kg"),
  24549. name: "Front (Dressed)",
  24550. image: {
  24551. source: "./media/characters/icowom-lee/front-dressed.svg",
  24552. extra: 3076 / 2933,
  24553. bottom: 51.4 / 3125.1889
  24554. }
  24555. },
  24556. rump: {
  24557. height: math.unit(0.776, "meters"),
  24558. name: "Rump",
  24559. image: {
  24560. source: "./media/characters/icowom-lee/rump.svg"
  24561. }
  24562. },
  24563. genitals: {
  24564. height: math.unit(0.78, "meters"),
  24565. name: "Genitals",
  24566. image: {
  24567. source: "./media/characters/icowom-lee/genitals.svg"
  24568. }
  24569. },
  24570. },
  24571. [
  24572. {
  24573. name: "Normal",
  24574. height: math.unit(2.3, "meters"),
  24575. default: true
  24576. },
  24577. {
  24578. name: "Macro",
  24579. height: math.unit(94, "meters"),
  24580. default: true
  24581. },
  24582. ]
  24583. ))
  24584. characterMakers.push(() => makeCharacter(
  24585. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24586. {
  24587. front: {
  24588. height: math.unit(22, "meters"),
  24589. weight: math.unit(21000, "kg"),
  24590. name: "Front",
  24591. image: {
  24592. source: "./media/characters/shock-diamond/front.svg",
  24593. extra: 2204 / 2053,
  24594. bottom: 65 / 2239.47
  24595. }
  24596. },
  24597. frontNude: {
  24598. height: math.unit(22, "meters"),
  24599. weight: math.unit(21000, "kg"),
  24600. name: "Front (Nude)",
  24601. image: {
  24602. source: "./media/characters/shock-diamond/front-nude.svg",
  24603. extra: 2514 / 2285,
  24604. bottom: 13 / 2527.56
  24605. }
  24606. },
  24607. },
  24608. [
  24609. {
  24610. name: "Normal",
  24611. height: math.unit(3, "meters")
  24612. },
  24613. {
  24614. name: "Macro",
  24615. height: math.unit(22, "meters"),
  24616. default: true
  24617. },
  24618. ]
  24619. ))
  24620. characterMakers.push(() => makeCharacter(
  24621. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24622. {
  24623. front: {
  24624. height: math.unit(5 + 4/12, "feet"),
  24625. weight: math.unit(125, "lb"),
  24626. name: "Front",
  24627. image: {
  24628. source: "./media/characters/rory/front.svg",
  24629. extra: 1790/1681,
  24630. bottom: 66/1856
  24631. },
  24632. form: "normal",
  24633. default: true
  24634. },
  24635. back: {
  24636. height: math.unit(5 + 4/12, "feet"),
  24637. weight: math.unit(125, "lb"),
  24638. name: "Back",
  24639. image: {
  24640. source: "./media/characters/rory/back.svg",
  24641. extra: 1805/1690,
  24642. bottom: 56/1861
  24643. },
  24644. form: "normal"
  24645. },
  24646. frontDressed: {
  24647. height: math.unit(5 + 4/12, "feet"),
  24648. weight: math.unit(125, "lb"),
  24649. name: "Front (Dressed)",
  24650. image: {
  24651. source: "./media/characters/rory/front-dressed.svg",
  24652. extra: 1790/1681,
  24653. bottom: 66/1856
  24654. },
  24655. form: "normal"
  24656. },
  24657. backDressed: {
  24658. height: math.unit(5 + 4/12, "feet"),
  24659. weight: math.unit(125, "lb"),
  24660. name: "Back (Dressed)",
  24661. image: {
  24662. source: "./media/characters/rory/back-dressed.svg",
  24663. extra: 1805/1690,
  24664. bottom: 56/1861
  24665. },
  24666. form: "normal"
  24667. },
  24668. frontNsfw: {
  24669. height: math.unit(5 + 4/12, "feet"),
  24670. weight: math.unit(125, "lb"),
  24671. name: "Front (NSFW)",
  24672. image: {
  24673. source: "./media/characters/rory/front-nsfw.svg",
  24674. extra: 1790/1681,
  24675. bottom: 66/1856
  24676. },
  24677. form: "normal"
  24678. },
  24679. backNsfw: {
  24680. height: math.unit(5 + 4/12, "feet"),
  24681. weight: math.unit(125, "lb"),
  24682. name: "Back (NSFW)",
  24683. image: {
  24684. source: "./media/characters/rory/back-nsfw.svg",
  24685. extra: 1805/1690,
  24686. bottom: 56/1861
  24687. },
  24688. form: "normal"
  24689. },
  24690. dick: {
  24691. height: math.unit(0.8, "feet"),
  24692. name: "Dick",
  24693. image: {
  24694. source: "./media/characters/rory/dick.svg"
  24695. },
  24696. form: "normal"
  24697. },
  24698. thicc_front: {
  24699. height: math.unit(5 + 4/12, "feet"),
  24700. weight: math.unit(195, "lb"),
  24701. name: "Front",
  24702. image: {
  24703. source: "./media/characters/rory/thicc-front.svg",
  24704. extra: 1220/1100,
  24705. bottom: 103/1323
  24706. },
  24707. form: "thicc",
  24708. default: true
  24709. },
  24710. thicc_back: {
  24711. height: math.unit(5 + 4/12, "feet"),
  24712. weight: math.unit(195, "lb"),
  24713. name: "Back",
  24714. image: {
  24715. source: "./media/characters/rory/thicc-back.svg",
  24716. extra: 1166/1086,
  24717. bottom: 35/1201
  24718. },
  24719. form: "thicc"
  24720. },
  24721. },
  24722. [
  24723. {
  24724. name: "Micro",
  24725. height: math.unit(3, "inches"),
  24726. allForms: true
  24727. },
  24728. {
  24729. name: "Normal",
  24730. height: math.unit(5 + 4/12, "feet"),
  24731. allForms: true,
  24732. default: true
  24733. },
  24734. {
  24735. name: "Macro",
  24736. height: math.unit(90, "feet"),
  24737. allForms: true
  24738. },
  24739. {
  24740. name: "Supercharged",
  24741. height: math.unit(270, "feet"),
  24742. allForms: true
  24743. },
  24744. ],
  24745. {
  24746. "normal": {
  24747. name: "Normal",
  24748. default: true
  24749. },
  24750. "thicc": {
  24751. name: "Thicc",
  24752. },
  24753. }
  24754. ))
  24755. characterMakers.push(() => makeCharacter(
  24756. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24757. {
  24758. front: {
  24759. height: math.unit(5 + 9 / 12, "feet"),
  24760. weight: math.unit(190, "lb"),
  24761. name: "Front",
  24762. image: {
  24763. source: "./media/characters/sprisk/front.svg",
  24764. extra: 1225 / 1180,
  24765. bottom: 42.7 / 1266.4
  24766. }
  24767. },
  24768. frontNsfw: {
  24769. height: math.unit(5 + 9 / 12, "feet"),
  24770. weight: math.unit(190, "lb"),
  24771. name: "Front (NSFW)",
  24772. image: {
  24773. source: "./media/characters/sprisk/front-nsfw.svg",
  24774. extra: 1225 / 1180,
  24775. bottom: 42.7 / 1266.4
  24776. }
  24777. },
  24778. back: {
  24779. height: math.unit(5 + 9 / 12, "feet"),
  24780. weight: math.unit(190, "lb"),
  24781. name: "Back",
  24782. image: {
  24783. source: "./media/characters/sprisk/back.svg",
  24784. extra: 1247 / 1200,
  24785. bottom: 5.6 / 1253.04
  24786. }
  24787. },
  24788. },
  24789. [
  24790. {
  24791. name: "Tiny",
  24792. height: math.unit(2, "inches")
  24793. },
  24794. {
  24795. name: "Normal",
  24796. height: math.unit(5 + 9 / 12, "feet"),
  24797. default: true
  24798. },
  24799. {
  24800. name: "Mini Macro",
  24801. height: math.unit(18, "feet")
  24802. },
  24803. {
  24804. name: "Macro",
  24805. height: math.unit(100, "feet")
  24806. },
  24807. {
  24808. name: "MACRO",
  24809. height: math.unit(50, "miles")
  24810. },
  24811. {
  24812. name: "M A C R O",
  24813. height: math.unit(300, "miles")
  24814. },
  24815. ]
  24816. ))
  24817. characterMakers.push(() => makeCharacter(
  24818. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24819. {
  24820. side: {
  24821. height: math.unit(15.6, "meters"),
  24822. weight: math.unit(700000, "kg"),
  24823. name: "Side",
  24824. image: {
  24825. source: "./media/characters/bunsen/side.svg",
  24826. extra: 1644 / 358
  24827. }
  24828. },
  24829. foot: {
  24830. height: math.unit(1.611 * 1644 / 358, "meter"),
  24831. name: "Foot",
  24832. image: {
  24833. source: "./media/characters/bunsen/foot.svg"
  24834. }
  24835. },
  24836. },
  24837. [
  24838. {
  24839. name: "Small",
  24840. height: math.unit(10, "feet")
  24841. },
  24842. {
  24843. name: "Normal",
  24844. height: math.unit(15.6, "meters"),
  24845. default: true
  24846. },
  24847. ]
  24848. ))
  24849. characterMakers.push(() => makeCharacter(
  24850. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24851. {
  24852. front: {
  24853. height: math.unit(4 + 11 / 12, "feet"),
  24854. weight: math.unit(140, "lb"),
  24855. name: "Front",
  24856. image: {
  24857. source: "./media/characters/sesh/front.svg",
  24858. extra: 3420 / 3231,
  24859. bottom: 72 / 3949.5
  24860. }
  24861. },
  24862. },
  24863. [
  24864. {
  24865. name: "Normal",
  24866. height: math.unit(4 + 11 / 12, "feet")
  24867. },
  24868. {
  24869. name: "Grown",
  24870. height: math.unit(15, "feet"),
  24871. default: true
  24872. },
  24873. {
  24874. name: "Macro",
  24875. height: math.unit(1500, "feet")
  24876. },
  24877. {
  24878. name: "Megamacro",
  24879. height: math.unit(30, "miles")
  24880. },
  24881. {
  24882. name: "Continental",
  24883. height: math.unit(3000, "miles")
  24884. },
  24885. {
  24886. name: "Gravity Mass",
  24887. height: math.unit(300000, "miles")
  24888. },
  24889. {
  24890. name: "Planet Buster",
  24891. height: math.unit(30000000, "miles")
  24892. },
  24893. {
  24894. name: "Big",
  24895. height: math.unit(3000000000, "miles")
  24896. },
  24897. ]
  24898. ))
  24899. characterMakers.push(() => makeCharacter(
  24900. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24901. {
  24902. front: {
  24903. height: math.unit(9, "feet"),
  24904. weight: math.unit(350, "lb"),
  24905. name: "Front",
  24906. image: {
  24907. source: "./media/characters/pepper/front.svg",
  24908. extra: 1448 / 1312,
  24909. bottom: 9.4 / 1457.88
  24910. }
  24911. },
  24912. back: {
  24913. height: math.unit(9, "feet"),
  24914. weight: math.unit(350, "lb"),
  24915. name: "Back",
  24916. image: {
  24917. source: "./media/characters/pepper/back.svg",
  24918. extra: 1423 / 1300,
  24919. bottom: 4.6 / 1429
  24920. }
  24921. },
  24922. maw: {
  24923. height: math.unit(0.932, "feet"),
  24924. name: "Maw",
  24925. image: {
  24926. source: "./media/characters/pepper/maw.svg"
  24927. }
  24928. },
  24929. },
  24930. [
  24931. {
  24932. name: "Normal",
  24933. height: math.unit(9, "feet"),
  24934. default: true
  24935. },
  24936. ]
  24937. ))
  24938. characterMakers.push(() => makeCharacter(
  24939. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24940. {
  24941. front: {
  24942. height: math.unit(6, "feet"),
  24943. weight: math.unit(150, "lb"),
  24944. name: "Front",
  24945. image: {
  24946. source: "./media/characters/maelstrom/front.svg",
  24947. extra: 2100 / 1883,
  24948. bottom: 94 / 2196.7
  24949. }
  24950. },
  24951. },
  24952. [
  24953. {
  24954. name: "Less Kaiju",
  24955. height: math.unit(200, "feet")
  24956. },
  24957. {
  24958. name: "Kaiju",
  24959. height: math.unit(400, "feet"),
  24960. default: true
  24961. },
  24962. {
  24963. name: "Kaiju-er",
  24964. height: math.unit(600, "feet")
  24965. },
  24966. ]
  24967. ))
  24968. characterMakers.push(() => makeCharacter(
  24969. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24970. {
  24971. front: {
  24972. height: math.unit(6 + 5 / 12, "feet"),
  24973. weight: math.unit(180, "lb"),
  24974. name: "Front",
  24975. image: {
  24976. source: "./media/characters/lexir/front.svg",
  24977. extra: 180 / 172,
  24978. bottom: 12 / 192
  24979. }
  24980. },
  24981. back: {
  24982. height: math.unit(6 + 5 / 12, "feet"),
  24983. weight: math.unit(180, "lb"),
  24984. name: "Back",
  24985. image: {
  24986. source: "./media/characters/lexir/back.svg",
  24987. extra: 1273/1201,
  24988. bottom: 39/1312
  24989. }
  24990. },
  24991. },
  24992. [
  24993. {
  24994. name: "Very Smal",
  24995. height: math.unit(1, "nm")
  24996. },
  24997. {
  24998. name: "Normal",
  24999. height: math.unit(6 + 5 / 12, "feet"),
  25000. default: true
  25001. },
  25002. {
  25003. name: "Macro",
  25004. height: math.unit(1, "mile")
  25005. },
  25006. {
  25007. name: "Megamacro",
  25008. height: math.unit(50, "miles")
  25009. },
  25010. ]
  25011. ))
  25012. characterMakers.push(() => makeCharacter(
  25013. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25014. {
  25015. front: {
  25016. height: math.unit(1.5, "meters"),
  25017. weight: math.unit(100, "lb"),
  25018. name: "Front",
  25019. image: {
  25020. source: "./media/characters/maksio/front.svg",
  25021. extra: 1549 / 1531,
  25022. bottom: 123.7 / 1674.5429
  25023. }
  25024. },
  25025. back: {
  25026. height: math.unit(1.5, "meters"),
  25027. weight: math.unit(100, "lb"),
  25028. name: "Back",
  25029. image: {
  25030. source: "./media/characters/maksio/back.svg",
  25031. extra: 1541 / 1509,
  25032. bottom: 97 / 1639
  25033. }
  25034. },
  25035. hand: {
  25036. height: math.unit(0.621, "feet"),
  25037. name: "Hand",
  25038. image: {
  25039. source: "./media/characters/maksio/hand.svg"
  25040. }
  25041. },
  25042. foot: {
  25043. height: math.unit(1.611, "feet"),
  25044. name: "Foot",
  25045. image: {
  25046. source: "./media/characters/maksio/foot.svg"
  25047. }
  25048. },
  25049. },
  25050. [
  25051. {
  25052. name: "Shrunken",
  25053. height: math.unit(10, "cm")
  25054. },
  25055. {
  25056. name: "Normal",
  25057. height: math.unit(150, "cm"),
  25058. default: true
  25059. },
  25060. ]
  25061. ))
  25062. characterMakers.push(() => makeCharacter(
  25063. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25064. {
  25065. front: {
  25066. height: math.unit(100, "feet"),
  25067. name: "Front",
  25068. image: {
  25069. source: "./media/characters/erza-bear/front.svg",
  25070. extra: 2449 / 2390,
  25071. bottom: 46 / 2494
  25072. }
  25073. },
  25074. back: {
  25075. height: math.unit(100, "feet"),
  25076. name: "Back",
  25077. image: {
  25078. source: "./media/characters/erza-bear/back.svg",
  25079. extra: 2489 / 2430,
  25080. bottom: 85.4 / 2480
  25081. }
  25082. },
  25083. tail: {
  25084. height: math.unit(42, "feet"),
  25085. name: "Tail",
  25086. image: {
  25087. source: "./media/characters/erza-bear/tail.svg"
  25088. }
  25089. },
  25090. tongue: {
  25091. height: math.unit(8, "feet"),
  25092. name: "Tongue",
  25093. image: {
  25094. source: "./media/characters/erza-bear/tongue.svg"
  25095. }
  25096. },
  25097. dick: {
  25098. height: math.unit(10.5, "feet"),
  25099. name: "Dick",
  25100. image: {
  25101. source: "./media/characters/erza-bear/dick.svg"
  25102. }
  25103. },
  25104. dickVertical: {
  25105. height: math.unit(16.9, "feet"),
  25106. name: "Dick (Vertical)",
  25107. image: {
  25108. source: "./media/characters/erza-bear/dick-vertical.svg"
  25109. }
  25110. },
  25111. },
  25112. [
  25113. {
  25114. name: "Macro",
  25115. height: math.unit(100, "feet"),
  25116. default: true
  25117. },
  25118. ]
  25119. ))
  25120. characterMakers.push(() => makeCharacter(
  25121. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25122. {
  25123. front: {
  25124. height: math.unit(172, "cm"),
  25125. weight: math.unit(73, "kg"),
  25126. name: "Front",
  25127. image: {
  25128. source: "./media/characters/violet-flor/front.svg",
  25129. extra: 1530 / 1442,
  25130. bottom: 61.9 / 1588.8
  25131. }
  25132. },
  25133. back: {
  25134. height: math.unit(180, "cm"),
  25135. weight: math.unit(73, "kg"),
  25136. name: "Back",
  25137. image: {
  25138. source: "./media/characters/violet-flor/back.svg",
  25139. extra: 1692 / 1630,
  25140. bottom: 20 / 1712
  25141. }
  25142. },
  25143. },
  25144. [
  25145. {
  25146. name: "Normal",
  25147. height: math.unit(172, "cm"),
  25148. default: true
  25149. },
  25150. ]
  25151. ))
  25152. characterMakers.push(() => makeCharacter(
  25153. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25154. {
  25155. front: {
  25156. height: math.unit(6, "feet"),
  25157. weight: math.unit(220, "lb"),
  25158. name: "Front",
  25159. image: {
  25160. source: "./media/characters/lynn-rhea/front.svg",
  25161. extra: 310 / 273
  25162. }
  25163. },
  25164. back: {
  25165. height: math.unit(6, "feet"),
  25166. weight: math.unit(220, "lb"),
  25167. name: "Back",
  25168. image: {
  25169. source: "./media/characters/lynn-rhea/back.svg",
  25170. extra: 310 / 273
  25171. }
  25172. },
  25173. dicks: {
  25174. height: math.unit(0.9, "feet"),
  25175. name: "Dicks",
  25176. image: {
  25177. source: "./media/characters/lynn-rhea/dicks.svg"
  25178. }
  25179. },
  25180. slit: {
  25181. height: math.unit(0.4, "feet"),
  25182. name: "Slit",
  25183. image: {
  25184. source: "./media/characters/lynn-rhea/slit.svg"
  25185. }
  25186. },
  25187. },
  25188. [
  25189. {
  25190. name: "Micro",
  25191. height: math.unit(1, "inch")
  25192. },
  25193. {
  25194. name: "Macro",
  25195. height: math.unit(60, "feet"),
  25196. default: true
  25197. },
  25198. {
  25199. name: "Megamacro",
  25200. height: math.unit(2, "miles")
  25201. },
  25202. {
  25203. name: "Gigamacro",
  25204. height: math.unit(3, "earths")
  25205. },
  25206. {
  25207. name: "Galactic",
  25208. height: math.unit(0.8, "galaxies")
  25209. },
  25210. ]
  25211. ))
  25212. characterMakers.push(() => makeCharacter(
  25213. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25214. {
  25215. front: {
  25216. height: math.unit(1600, "feet"),
  25217. weight: math.unit(85758785169, "kg"),
  25218. name: "Front",
  25219. image: {
  25220. source: "./media/characters/valathos/front.svg",
  25221. extra: 1451 / 1339
  25222. }
  25223. },
  25224. },
  25225. [
  25226. {
  25227. name: "Macro",
  25228. height: math.unit(1600, "feet"),
  25229. default: true
  25230. },
  25231. ]
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25235. {
  25236. front: {
  25237. height: math.unit(7 + 5 / 12, "feet"),
  25238. weight: math.unit(300, "lb"),
  25239. name: "Front",
  25240. image: {
  25241. source: "./media/characters/azula/front.svg",
  25242. extra: 3208 / 2880,
  25243. bottom: 80.2 / 3277
  25244. }
  25245. },
  25246. back: {
  25247. height: math.unit(7 + 5 / 12, "feet"),
  25248. weight: math.unit(300, "lb"),
  25249. name: "Back",
  25250. image: {
  25251. source: "./media/characters/azula/back.svg",
  25252. extra: 3169 / 2822,
  25253. bottom: 150.6 / 3321
  25254. }
  25255. },
  25256. },
  25257. [
  25258. {
  25259. name: "Normal",
  25260. height: math.unit(7 + 5 / 12, "feet"),
  25261. default: true
  25262. },
  25263. {
  25264. name: "Big",
  25265. height: math.unit(20, "feet")
  25266. },
  25267. ]
  25268. ))
  25269. characterMakers.push(() => makeCharacter(
  25270. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25271. {
  25272. front: {
  25273. height: math.unit(5 + 1 / 12, "feet"),
  25274. weight: math.unit(110, "lb"),
  25275. name: "Front",
  25276. image: {
  25277. source: "./media/characters/rupert/front.svg",
  25278. extra: 1549 / 1495,
  25279. bottom: 54.2 / 1604.4
  25280. }
  25281. },
  25282. },
  25283. [
  25284. {
  25285. name: "Normal",
  25286. height: math.unit(5 + 1 / 12, "feet"),
  25287. default: true
  25288. },
  25289. ]
  25290. ))
  25291. characterMakers.push(() => makeCharacter(
  25292. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25293. {
  25294. front: {
  25295. height: math.unit(8 + 4 / 12, "feet"),
  25296. weight: math.unit(350, "lb"),
  25297. name: "Front",
  25298. image: {
  25299. source: "./media/characters/sheera-castellar/front.svg",
  25300. extra: 1957 / 1894,
  25301. bottom: 26.97 / 1975.017
  25302. }
  25303. },
  25304. side: {
  25305. height: math.unit(8 + 4 / 12, "feet"),
  25306. weight: math.unit(350, "lb"),
  25307. name: "Side",
  25308. image: {
  25309. source: "./media/characters/sheera-castellar/side.svg",
  25310. extra: 1957 / 1894
  25311. }
  25312. },
  25313. back: {
  25314. height: math.unit(8 + 4 / 12, "feet"),
  25315. weight: math.unit(350, "lb"),
  25316. name: "Back",
  25317. image: {
  25318. source: "./media/characters/sheera-castellar/back.svg",
  25319. extra: 1957 / 1894
  25320. }
  25321. },
  25322. angled: {
  25323. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25324. weight: math.unit(350, "lb"),
  25325. name: "Angled",
  25326. image: {
  25327. source: "./media/characters/sheera-castellar/angled.svg",
  25328. extra: 1807 / 1707,
  25329. bottom: 68 / 1875
  25330. }
  25331. },
  25332. genitals: {
  25333. height: math.unit(2.2, "feet"),
  25334. name: "Genitals",
  25335. image: {
  25336. source: "./media/characters/sheera-castellar/genitals.svg"
  25337. }
  25338. },
  25339. taur: {
  25340. height: math.unit(10 + 6/12, "feet"),
  25341. name: "Taur",
  25342. image: {
  25343. source: "./media/characters/sheera-castellar/taur.svg",
  25344. extra: 2017/1909,
  25345. bottom: 185/2202
  25346. }
  25347. },
  25348. },
  25349. [
  25350. {
  25351. name: "Normal",
  25352. height: math.unit(8 + 4 / 12, "feet")
  25353. },
  25354. {
  25355. name: "Macro",
  25356. height: math.unit(150, "feet"),
  25357. default: true
  25358. },
  25359. {
  25360. name: "Macro+",
  25361. height: math.unit(800, "feet")
  25362. },
  25363. ]
  25364. ))
  25365. characterMakers.push(() => makeCharacter(
  25366. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25367. {
  25368. front: {
  25369. height: math.unit(6, "feet"),
  25370. weight: math.unit(150, "lb"),
  25371. name: "Front",
  25372. image: {
  25373. source: "./media/characters/jaipur/front.svg",
  25374. extra: 3860 / 3731,
  25375. bottom: 287 / 4140
  25376. }
  25377. },
  25378. back: {
  25379. height: math.unit(6, "feet"),
  25380. weight: math.unit(150, "lb"),
  25381. name: "Back",
  25382. image: {
  25383. source: "./media/characters/jaipur/back.svg",
  25384. extra: 1637/1561,
  25385. bottom: 154/1791
  25386. }
  25387. },
  25388. },
  25389. [
  25390. {
  25391. name: "Normal",
  25392. height: math.unit(1.85, "meters"),
  25393. default: true
  25394. },
  25395. {
  25396. name: "Macro",
  25397. height: math.unit(150, "meters")
  25398. },
  25399. {
  25400. name: "Macro+",
  25401. height: math.unit(0.5, "miles")
  25402. },
  25403. {
  25404. name: "Macro++",
  25405. height: math.unit(2.5, "miles")
  25406. },
  25407. {
  25408. name: "Macro+++",
  25409. height: math.unit(12, "miles")
  25410. },
  25411. {
  25412. name: "Macro++++",
  25413. height: math.unit(120, "miles")
  25414. },
  25415. {
  25416. name: "Macro+++++",
  25417. height: math.unit(1200, "miles")
  25418. },
  25419. ]
  25420. ))
  25421. characterMakers.push(() => makeCharacter(
  25422. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25423. {
  25424. front: {
  25425. height: math.unit(6, "feet"),
  25426. weight: math.unit(150, "lb"),
  25427. name: "Front",
  25428. image: {
  25429. source: "./media/characters/sheila-wolf/front.svg",
  25430. extra: 1931 / 1808,
  25431. bottom: 29.5 / 1960
  25432. }
  25433. },
  25434. dick: {
  25435. height: math.unit(1.464, "feet"),
  25436. name: "Dick",
  25437. image: {
  25438. source: "./media/characters/sheila-wolf/dick.svg"
  25439. }
  25440. },
  25441. muzzle: {
  25442. height: math.unit(0.513, "feet"),
  25443. name: "Muzzle",
  25444. image: {
  25445. source: "./media/characters/sheila-wolf/muzzle.svg"
  25446. }
  25447. },
  25448. },
  25449. [
  25450. {
  25451. name: "Macro",
  25452. height: math.unit(70, "feet"),
  25453. default: true
  25454. },
  25455. ]
  25456. ))
  25457. characterMakers.push(() => makeCharacter(
  25458. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25459. {
  25460. front: {
  25461. height: math.unit(32, "meters"),
  25462. weight: math.unit(300000, "kg"),
  25463. name: "Front",
  25464. image: {
  25465. source: "./media/characters/almor/front.svg",
  25466. extra: 1408 / 1322,
  25467. bottom: 94.6 / 1506.5
  25468. }
  25469. },
  25470. },
  25471. [
  25472. {
  25473. name: "Macro",
  25474. height: math.unit(32, "meters"),
  25475. default: true
  25476. },
  25477. ]
  25478. ))
  25479. characterMakers.push(() => makeCharacter(
  25480. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25481. {
  25482. front: {
  25483. height: math.unit(7, "feet"),
  25484. weight: math.unit(200, "lb"),
  25485. name: "Front",
  25486. image: {
  25487. source: "./media/characters/silver/front.svg",
  25488. extra: 472.1 / 450.5,
  25489. bottom: 26.5 / 499.424
  25490. }
  25491. },
  25492. },
  25493. [
  25494. {
  25495. name: "Normal",
  25496. height: math.unit(7, "feet"),
  25497. default: true
  25498. },
  25499. {
  25500. name: "Macro",
  25501. height: math.unit(800, "feet")
  25502. },
  25503. {
  25504. name: "Megamacro",
  25505. height: math.unit(250, "miles")
  25506. },
  25507. ]
  25508. ))
  25509. characterMakers.push(() => makeCharacter(
  25510. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25511. {
  25512. front: {
  25513. height: math.unit(6, "feet"),
  25514. weight: math.unit(150, "lb"),
  25515. name: "Front",
  25516. image: {
  25517. source: "./media/characters/pliskin/front.svg",
  25518. extra: 1469 / 1359,
  25519. bottom: 70 / 1540
  25520. }
  25521. },
  25522. },
  25523. [
  25524. {
  25525. name: "Micro",
  25526. height: math.unit(3, "inches")
  25527. },
  25528. {
  25529. name: "Normal",
  25530. height: math.unit(5 + 11 / 12, "feet"),
  25531. default: true
  25532. },
  25533. {
  25534. name: "Macro",
  25535. height: math.unit(120, "feet")
  25536. },
  25537. ]
  25538. ))
  25539. characterMakers.push(() => makeCharacter(
  25540. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25541. {
  25542. front: {
  25543. height: math.unit(6, "feet"),
  25544. weight: math.unit(150, "lb"),
  25545. name: "Front",
  25546. image: {
  25547. source: "./media/characters/sammy/front.svg",
  25548. extra: 1193 / 1089,
  25549. bottom: 30.5 / 1226
  25550. }
  25551. },
  25552. },
  25553. [
  25554. {
  25555. name: "Macro",
  25556. height: math.unit(1700, "feet"),
  25557. default: true
  25558. },
  25559. {
  25560. name: "Examacro",
  25561. height: math.unit(2.5e9, "lightyears")
  25562. },
  25563. ]
  25564. ))
  25565. characterMakers.push(() => makeCharacter(
  25566. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25567. {
  25568. front: {
  25569. height: math.unit(21, "meters"),
  25570. weight: math.unit(12, "tonnes"),
  25571. name: "Front",
  25572. image: {
  25573. source: "./media/characters/kuru/front.svg",
  25574. extra: 4301 / 3785,
  25575. bottom: 371.3 / 4691
  25576. }
  25577. },
  25578. },
  25579. [
  25580. {
  25581. name: "Macro",
  25582. height: math.unit(21, "meters"),
  25583. default: true
  25584. },
  25585. ]
  25586. ))
  25587. characterMakers.push(() => makeCharacter(
  25588. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25589. {
  25590. front: {
  25591. height: math.unit(23, "meters"),
  25592. weight: math.unit(12.2, "tonnes"),
  25593. name: "Front",
  25594. image: {
  25595. source: "./media/characters/rakka/front.svg",
  25596. extra: 4670 / 4169,
  25597. bottom: 301 / 4968.7
  25598. }
  25599. },
  25600. },
  25601. [
  25602. {
  25603. name: "Macro",
  25604. height: math.unit(23, "meters"),
  25605. default: true
  25606. },
  25607. ]
  25608. ))
  25609. characterMakers.push(() => makeCharacter(
  25610. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25611. {
  25612. front: {
  25613. height: math.unit(6, "feet"),
  25614. weight: math.unit(150, "lb"),
  25615. name: "Front",
  25616. image: {
  25617. source: "./media/characters/rhys-feline/front.svg",
  25618. extra: 2488 / 2308,
  25619. bottom: 35.67 / 2519.19
  25620. }
  25621. },
  25622. },
  25623. [
  25624. {
  25625. name: "Really Small",
  25626. height: math.unit(1, "nm")
  25627. },
  25628. {
  25629. name: "Micro",
  25630. height: math.unit(4, "inches")
  25631. },
  25632. {
  25633. name: "Normal",
  25634. height: math.unit(4 + 10 / 12, "feet"),
  25635. default: true
  25636. },
  25637. {
  25638. name: "Macro",
  25639. height: math.unit(100, "feet")
  25640. },
  25641. {
  25642. name: "Megamacto",
  25643. height: math.unit(50, "miles")
  25644. },
  25645. ]
  25646. ))
  25647. characterMakers.push(() => makeCharacter(
  25648. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25649. {
  25650. side: {
  25651. height: math.unit(30, "feet"),
  25652. weight: math.unit(35000, "kg"),
  25653. name: "Side",
  25654. image: {
  25655. source: "./media/characters/alydar/side.svg",
  25656. extra: 234 / 222,
  25657. bottom: 6.5 / 241
  25658. }
  25659. },
  25660. front: {
  25661. height: math.unit(30, "feet"),
  25662. weight: math.unit(35000, "kg"),
  25663. name: "Front",
  25664. image: {
  25665. source: "./media/characters/alydar/front.svg",
  25666. extra: 223.37 / 210.2,
  25667. bottom: 22.3 / 246.76
  25668. }
  25669. },
  25670. top: {
  25671. height: math.unit(64.54, "feet"),
  25672. weight: math.unit(35000, "kg"),
  25673. name: "Top",
  25674. image: {
  25675. source: "./media/characters/alydar/top.svg"
  25676. }
  25677. },
  25678. anthro: {
  25679. height: math.unit(30, "feet"),
  25680. weight: math.unit(9000, "kg"),
  25681. name: "Anthro",
  25682. image: {
  25683. source: "./media/characters/alydar/anthro.svg",
  25684. extra: 432 / 421,
  25685. bottom: 7.18 / 440
  25686. }
  25687. },
  25688. maw: {
  25689. height: math.unit(11.693, "feet"),
  25690. name: "Maw",
  25691. image: {
  25692. source: "./media/characters/alydar/maw.svg"
  25693. }
  25694. },
  25695. head: {
  25696. height: math.unit(11.693, "feet"),
  25697. name: "Head",
  25698. image: {
  25699. source: "./media/characters/alydar/head.svg"
  25700. }
  25701. },
  25702. headAlt: {
  25703. height: math.unit(12.861, "feet"),
  25704. name: "Head (Alt)",
  25705. image: {
  25706. source: "./media/characters/alydar/head-alt.svg"
  25707. }
  25708. },
  25709. wing: {
  25710. height: math.unit(20.712, "feet"),
  25711. name: "Wing",
  25712. image: {
  25713. source: "./media/characters/alydar/wing.svg"
  25714. }
  25715. },
  25716. wingFeather: {
  25717. height: math.unit(9.662, "feet"),
  25718. name: "Wing Feather",
  25719. image: {
  25720. source: "./media/characters/alydar/wing-feather.svg"
  25721. }
  25722. },
  25723. countourFeather: {
  25724. height: math.unit(4.154, "feet"),
  25725. name: "Contour Feather",
  25726. image: {
  25727. source: "./media/characters/alydar/contour-feather.svg"
  25728. }
  25729. },
  25730. },
  25731. [
  25732. {
  25733. name: "Diplomatic",
  25734. height: math.unit(13, "feet"),
  25735. default: true
  25736. },
  25737. {
  25738. name: "Small",
  25739. height: math.unit(30, "feet")
  25740. },
  25741. {
  25742. name: "Normal",
  25743. height: math.unit(95, "feet"),
  25744. default: true
  25745. },
  25746. {
  25747. name: "Large",
  25748. height: math.unit(285, "feet")
  25749. },
  25750. {
  25751. name: "Incomprehensible",
  25752. height: math.unit(450, "megameters")
  25753. },
  25754. ]
  25755. ))
  25756. characterMakers.push(() => makeCharacter(
  25757. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25758. {
  25759. side: {
  25760. height: math.unit(11, "feet"),
  25761. weight: math.unit(1750, "kg"),
  25762. name: "Side",
  25763. image: {
  25764. source: "./media/characters/selicia/side.svg",
  25765. extra: 440 / 396,
  25766. bottom: 24.8 / 465.979
  25767. }
  25768. },
  25769. maw: {
  25770. height: math.unit(4.665, "feet"),
  25771. name: "Maw",
  25772. image: {
  25773. source: "./media/characters/selicia/maw.svg"
  25774. }
  25775. },
  25776. },
  25777. [
  25778. {
  25779. name: "Normal",
  25780. height: math.unit(11, "feet"),
  25781. default: true
  25782. },
  25783. ]
  25784. ))
  25785. characterMakers.push(() => makeCharacter(
  25786. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25787. {
  25788. side: {
  25789. height: math.unit(2 + 6 / 12, "feet"),
  25790. weight: math.unit(30, "lb"),
  25791. name: "Side",
  25792. image: {
  25793. source: "./media/characters/layla/side.svg",
  25794. extra: 244 / 188,
  25795. bottom: 18.2 / 262.1
  25796. }
  25797. },
  25798. back: {
  25799. height: math.unit(2 + 6 / 12, "feet"),
  25800. weight: math.unit(30, "lb"),
  25801. name: "Back",
  25802. image: {
  25803. source: "./media/characters/layla/back.svg",
  25804. extra: 308 / 241.5,
  25805. bottom: 8.9 / 316.8
  25806. }
  25807. },
  25808. cumming: {
  25809. height: math.unit(2 + 6 / 12, "feet"),
  25810. weight: math.unit(30, "lb"),
  25811. name: "Cumming",
  25812. image: {
  25813. source: "./media/characters/layla/cumming.svg",
  25814. extra: 342 / 279,
  25815. bottom: 595 / 938
  25816. }
  25817. },
  25818. dickFlaccid: {
  25819. height: math.unit(2.595, "feet"),
  25820. name: "Flaccid Genitals",
  25821. image: {
  25822. source: "./media/characters/layla/dick-flaccid.svg"
  25823. }
  25824. },
  25825. dickErect: {
  25826. height: math.unit(2.359, "feet"),
  25827. name: "Erect Genitals",
  25828. image: {
  25829. source: "./media/characters/layla/dick-erect.svg"
  25830. }
  25831. },
  25832. dragon: {
  25833. height: math.unit(40, "feet"),
  25834. name: "Dragon",
  25835. image: {
  25836. source: "./media/characters/layla/dragon.svg",
  25837. extra: 610/535,
  25838. bottom: 367/977
  25839. }
  25840. },
  25841. taur: {
  25842. height: math.unit(30, "feet"),
  25843. name: "Taur",
  25844. image: {
  25845. source: "./media/characters/layla/taur.svg",
  25846. extra: 1268/1199,
  25847. bottom: 112/1380
  25848. }
  25849. },
  25850. },
  25851. [
  25852. {
  25853. name: "Micro",
  25854. height: math.unit(1, "inch")
  25855. },
  25856. {
  25857. name: "Small",
  25858. height: math.unit(1, "foot")
  25859. },
  25860. {
  25861. name: "Normal",
  25862. height: math.unit(2 + 6 / 12, "feet"),
  25863. default: true
  25864. },
  25865. {
  25866. name: "Macro",
  25867. height: math.unit(200, "feet")
  25868. },
  25869. {
  25870. name: "Megamacro",
  25871. height: math.unit(1000, "miles")
  25872. },
  25873. {
  25874. name: "Planetary",
  25875. height: math.unit(8000, "miles")
  25876. },
  25877. {
  25878. name: "True Layla",
  25879. height: math.unit(200000 * 7, "multiverses")
  25880. },
  25881. ]
  25882. ))
  25883. characterMakers.push(() => makeCharacter(
  25884. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25885. {
  25886. back: {
  25887. height: math.unit(10.5, "feet"),
  25888. weight: math.unit(800, "lb"),
  25889. name: "Back",
  25890. image: {
  25891. source: "./media/characters/knox/back.svg",
  25892. extra: 1486 / 1089,
  25893. bottom: 107 / 1601.4
  25894. }
  25895. },
  25896. side: {
  25897. height: math.unit(10.5, "feet"),
  25898. weight: math.unit(800, "lb"),
  25899. name: "Side",
  25900. image: {
  25901. source: "./media/characters/knox/side.svg",
  25902. extra: 244 / 218,
  25903. bottom: 14 / 260
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Compact",
  25910. height: math.unit(10.5, "feet"),
  25911. default: true
  25912. },
  25913. {
  25914. name: "Dynamax",
  25915. height: math.unit(210, "feet")
  25916. },
  25917. {
  25918. name: "Full Macro",
  25919. height: math.unit(850, "feet")
  25920. },
  25921. ]
  25922. ))
  25923. characterMakers.push(() => makeCharacter(
  25924. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25925. {
  25926. front: {
  25927. height: math.unit(28, "feet"),
  25928. weight: math.unit(10500, "lb"),
  25929. name: "Front",
  25930. image: {
  25931. source: "./media/characters/kayda/front.svg",
  25932. extra: 1536 / 1428,
  25933. bottom: 68.7 / 1603
  25934. }
  25935. },
  25936. back: {
  25937. height: math.unit(28, "feet"),
  25938. weight: math.unit(10500, "lb"),
  25939. name: "Back",
  25940. image: {
  25941. source: "./media/characters/kayda/back.svg",
  25942. extra: 1557 / 1464,
  25943. bottom: 39.5 / 1597.49
  25944. }
  25945. },
  25946. dick: {
  25947. height: math.unit(3.858, "feet"),
  25948. name: "Dick",
  25949. image: {
  25950. source: "./media/characters/kayda/dick.svg"
  25951. }
  25952. },
  25953. },
  25954. [
  25955. {
  25956. name: "Macro",
  25957. height: math.unit(28, "feet"),
  25958. default: true
  25959. },
  25960. ]
  25961. ))
  25962. characterMakers.push(() => makeCharacter(
  25963. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25964. {
  25965. front: {
  25966. height: math.unit(10 + 11 / 12, "feet"),
  25967. weight: math.unit(1400, "lb"),
  25968. name: "Front",
  25969. image: {
  25970. source: "./media/characters/brian/front.svg",
  25971. extra: 737 / 692,
  25972. bottom: 55.4 / 785
  25973. }
  25974. },
  25975. },
  25976. [
  25977. {
  25978. name: "Normal",
  25979. height: math.unit(10 + 11 / 12, "feet"),
  25980. default: true
  25981. },
  25982. ]
  25983. ))
  25984. characterMakers.push(() => makeCharacter(
  25985. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25986. {
  25987. front: {
  25988. height: math.unit(5 + 8 / 12, "feet"),
  25989. weight: math.unit(140, "lb"),
  25990. name: "Front",
  25991. image: {
  25992. source: "./media/characters/khemri/front.svg",
  25993. extra: 4780 / 4059,
  25994. bottom: 80.1 / 4859.25
  25995. }
  25996. },
  25997. },
  25998. [
  25999. {
  26000. name: "Micro",
  26001. height: math.unit(6, "inches")
  26002. },
  26003. {
  26004. name: "Normal",
  26005. height: math.unit(5 + 8 / 12, "feet"),
  26006. default: true
  26007. },
  26008. ]
  26009. ))
  26010. characterMakers.push(() => makeCharacter(
  26011. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26012. {
  26013. front: {
  26014. height: math.unit(13, "feet"),
  26015. weight: math.unit(1700, "lb"),
  26016. name: "Front",
  26017. image: {
  26018. source: "./media/characters/felix-braveheart/front.svg",
  26019. extra: 1222 / 1157,
  26020. bottom: 53.2 / 1280
  26021. }
  26022. },
  26023. back: {
  26024. height: math.unit(13, "feet"),
  26025. weight: math.unit(1700, "lb"),
  26026. name: "Back",
  26027. image: {
  26028. source: "./media/characters/felix-braveheart/back.svg",
  26029. extra: 1277 / 1203,
  26030. bottom: 50.2 / 1327
  26031. }
  26032. },
  26033. feral: {
  26034. height: math.unit(6, "feet"),
  26035. weight: math.unit(400, "lb"),
  26036. name: "Feral",
  26037. image: {
  26038. source: "./media/characters/felix-braveheart/feral.svg",
  26039. extra: 682 / 625,
  26040. bottom: 6.9 / 688
  26041. }
  26042. },
  26043. },
  26044. [
  26045. {
  26046. name: "Normal",
  26047. height: math.unit(13, "feet"),
  26048. default: true
  26049. },
  26050. ]
  26051. ))
  26052. characterMakers.push(() => makeCharacter(
  26053. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26054. {
  26055. side: {
  26056. height: math.unit(5 + 11 / 12, "feet"),
  26057. weight: math.unit(1400, "lb"),
  26058. name: "Side",
  26059. image: {
  26060. source: "./media/characters/shadow-blade/side.svg",
  26061. extra: 1726 / 1267,
  26062. bottom: 58.4 / 1785
  26063. }
  26064. },
  26065. },
  26066. [
  26067. {
  26068. name: "Normal",
  26069. height: math.unit(5 + 11 / 12, "feet"),
  26070. default: true
  26071. },
  26072. ]
  26073. ))
  26074. characterMakers.push(() => makeCharacter(
  26075. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26076. {
  26077. front: {
  26078. height: math.unit(1 + 6 / 12, "feet"),
  26079. weight: math.unit(25, "lb"),
  26080. name: "Front",
  26081. image: {
  26082. source: "./media/characters/karla-halldor/front.svg",
  26083. extra: 1459 / 1383,
  26084. bottom: 12 / 1472
  26085. }
  26086. },
  26087. },
  26088. [
  26089. {
  26090. name: "Normal",
  26091. height: math.unit(1 + 6 / 12, "feet"),
  26092. default: true
  26093. },
  26094. ]
  26095. ))
  26096. characterMakers.push(() => makeCharacter(
  26097. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26098. {
  26099. front: {
  26100. height: math.unit(6 + 2 / 12, "feet"),
  26101. weight: math.unit(160, "lb"),
  26102. name: "Front",
  26103. image: {
  26104. source: "./media/characters/ariam/front.svg",
  26105. extra: 1073/976,
  26106. bottom: 52/1125
  26107. }
  26108. },
  26109. back: {
  26110. height: math.unit(6 + 2/12, "feet"),
  26111. weight: math.unit(160, "lb"),
  26112. name: "Back",
  26113. image: {
  26114. source: "./media/characters/ariam/back.svg",
  26115. extra: 1103/1023,
  26116. bottom: 9/1112
  26117. }
  26118. },
  26119. dressed: {
  26120. height: math.unit(6 + 2/12, "feet"),
  26121. weight: math.unit(160, "lb"),
  26122. name: "Dressed",
  26123. image: {
  26124. source: "./media/characters/ariam/dressed.svg",
  26125. extra: 1099/1009,
  26126. bottom: 25/1124
  26127. }
  26128. },
  26129. squatting: {
  26130. height: math.unit(4.1, "feet"),
  26131. weight: math.unit(160, "lb"),
  26132. name: "Squatting",
  26133. image: {
  26134. source: "./media/characters/ariam/squatting.svg",
  26135. extra: 2617 / 2112,
  26136. bottom: 61.2 / 2681,
  26137. }
  26138. },
  26139. },
  26140. [
  26141. {
  26142. name: "Normal",
  26143. height: math.unit(6 + 2 / 12, "feet"),
  26144. default: true
  26145. },
  26146. {
  26147. name: "Normal+",
  26148. height: math.unit(4, "meters")
  26149. },
  26150. {
  26151. name: "Macro",
  26152. height: math.unit(50, "meters")
  26153. },
  26154. {
  26155. name: "Macro+",
  26156. height: math.unit(100, "meters")
  26157. },
  26158. {
  26159. name: "Megamacro",
  26160. height: math.unit(20, "km")
  26161. },
  26162. {
  26163. name: "Caretaker",
  26164. height: math.unit(444, "megameters")
  26165. },
  26166. ]
  26167. ))
  26168. characterMakers.push(() => makeCharacter(
  26169. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26170. {
  26171. front: {
  26172. height: math.unit(1.67, "meters"),
  26173. weight: math.unit(140, "lb"),
  26174. name: "Front",
  26175. image: {
  26176. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26177. extra: 438 / 410,
  26178. bottom: 0.75 / 439
  26179. }
  26180. },
  26181. },
  26182. [
  26183. {
  26184. name: "Shrunken",
  26185. height: math.unit(7.6, "cm")
  26186. },
  26187. {
  26188. name: "Human Scale",
  26189. height: math.unit(1.67, "meters")
  26190. },
  26191. {
  26192. name: "Wolxi Scale",
  26193. height: math.unit(36.7, "meters"),
  26194. default: true
  26195. },
  26196. ]
  26197. ))
  26198. characterMakers.push(() => makeCharacter(
  26199. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26200. {
  26201. front: {
  26202. height: math.unit(1.73, "meters"),
  26203. weight: math.unit(240, "lb"),
  26204. name: "Front",
  26205. image: {
  26206. source: "./media/characters/izue-two-mothers/front.svg",
  26207. extra: 469 / 437,
  26208. bottom: 1.24 / 470.6
  26209. }
  26210. },
  26211. },
  26212. [
  26213. {
  26214. name: "Shrunken",
  26215. height: math.unit(7.86, "cm")
  26216. },
  26217. {
  26218. name: "Human Scale",
  26219. height: math.unit(1.73, "meters")
  26220. },
  26221. {
  26222. name: "Wolxi Scale",
  26223. height: math.unit(38, "meters"),
  26224. default: true
  26225. },
  26226. ]
  26227. ))
  26228. characterMakers.push(() => makeCharacter(
  26229. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26230. {
  26231. front: {
  26232. height: math.unit(1.55, "meters"),
  26233. weight: math.unit(120, "lb"),
  26234. name: "Front",
  26235. image: {
  26236. source: "./media/characters/teeku-love-shack/front.svg",
  26237. extra: 387 / 362,
  26238. bottom: 1.51 / 388
  26239. }
  26240. },
  26241. },
  26242. [
  26243. {
  26244. name: "Shrunken",
  26245. height: math.unit(7, "cm")
  26246. },
  26247. {
  26248. name: "Human Scale",
  26249. height: math.unit(1.55, "meters")
  26250. },
  26251. {
  26252. name: "Wolxi Scale",
  26253. height: math.unit(34.1, "meters"),
  26254. default: true
  26255. },
  26256. ]
  26257. ))
  26258. characterMakers.push(() => makeCharacter(
  26259. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26260. {
  26261. front: {
  26262. height: math.unit(1.83, "meters"),
  26263. weight: math.unit(135, "lb"),
  26264. name: "Front",
  26265. image: {
  26266. source: "./media/characters/dejma-the-red/front.svg",
  26267. extra: 480 / 458,
  26268. bottom: 1.8 / 482
  26269. }
  26270. },
  26271. },
  26272. [
  26273. {
  26274. name: "Shrunken",
  26275. height: math.unit(8.3, "cm")
  26276. },
  26277. {
  26278. name: "Human Scale",
  26279. height: math.unit(1.83, "meters")
  26280. },
  26281. {
  26282. name: "Wolxi Scale",
  26283. height: math.unit(40, "meters"),
  26284. default: true
  26285. },
  26286. ]
  26287. ))
  26288. characterMakers.push(() => makeCharacter(
  26289. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26290. {
  26291. front: {
  26292. height: math.unit(1.78, "meters"),
  26293. weight: math.unit(65, "kg"),
  26294. name: "Front",
  26295. image: {
  26296. source: "./media/characters/aki/front.svg",
  26297. extra: 452 / 415
  26298. }
  26299. },
  26300. frontNsfw: {
  26301. height: math.unit(1.78, "meters"),
  26302. weight: math.unit(65, "kg"),
  26303. name: "Front (NSFW)",
  26304. image: {
  26305. source: "./media/characters/aki/front-nsfw.svg",
  26306. extra: 452 / 415
  26307. }
  26308. },
  26309. back: {
  26310. height: math.unit(1.78, "meters"),
  26311. weight: math.unit(65, "kg"),
  26312. name: "Back",
  26313. image: {
  26314. source: "./media/characters/aki/back.svg",
  26315. extra: 452 / 415
  26316. }
  26317. },
  26318. rump: {
  26319. height: math.unit(2.05, "feet"),
  26320. name: "Rump",
  26321. image: {
  26322. source: "./media/characters/aki/rump.svg"
  26323. }
  26324. },
  26325. dick: {
  26326. height: math.unit(0.95, "feet"),
  26327. name: "Dick",
  26328. image: {
  26329. source: "./media/characters/aki/dick.svg"
  26330. }
  26331. },
  26332. },
  26333. [
  26334. {
  26335. name: "Micro",
  26336. height: math.unit(15, "cm")
  26337. },
  26338. {
  26339. name: "Normal",
  26340. height: math.unit(178, "cm"),
  26341. default: true
  26342. },
  26343. {
  26344. name: "Macro",
  26345. height: math.unit(214, "m")
  26346. },
  26347. {
  26348. name: "Macro+",
  26349. height: math.unit(534, "m")
  26350. },
  26351. ]
  26352. ))
  26353. characterMakers.push(() => makeCharacter(
  26354. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26355. {
  26356. front: {
  26357. height: math.unit(5 + 5 / 12, "feet"),
  26358. weight: math.unit(120, "lb"),
  26359. name: "Front",
  26360. image: {
  26361. source: "./media/characters/ari/front.svg",
  26362. extra: 1550/1471,
  26363. bottom: 39/1589
  26364. }
  26365. },
  26366. },
  26367. [
  26368. {
  26369. name: "Normal",
  26370. height: math.unit(5 + 5 / 12, "feet")
  26371. },
  26372. {
  26373. name: "Macro",
  26374. height: math.unit(100, "feet"),
  26375. default: true
  26376. },
  26377. {
  26378. name: "Megamacro",
  26379. height: math.unit(100, "miles")
  26380. },
  26381. {
  26382. name: "Gigamacro",
  26383. height: math.unit(80000, "miles")
  26384. },
  26385. ]
  26386. ))
  26387. characterMakers.push(() => makeCharacter(
  26388. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26389. {
  26390. side: {
  26391. height: math.unit(9, "feet"),
  26392. weight: math.unit(400, "kg"),
  26393. name: "Side",
  26394. image: {
  26395. source: "./media/characters/bolt/side.svg",
  26396. extra: 1126 / 896,
  26397. bottom: 60 / 1187.3,
  26398. }
  26399. },
  26400. },
  26401. [
  26402. {
  26403. name: "Micro",
  26404. height: math.unit(5, "inches")
  26405. },
  26406. {
  26407. name: "Normal",
  26408. height: math.unit(9, "feet"),
  26409. default: true
  26410. },
  26411. {
  26412. name: "Macro",
  26413. height: math.unit(700, "feet")
  26414. },
  26415. {
  26416. name: "Max Size",
  26417. height: math.unit(1.52e22, "yottameters")
  26418. },
  26419. ]
  26420. ))
  26421. characterMakers.push(() => makeCharacter(
  26422. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26423. {
  26424. front: {
  26425. height: math.unit(4.3, "meters"),
  26426. weight: math.unit(3, "tons"),
  26427. name: "Front",
  26428. image: {
  26429. source: "./media/characters/draekon-sylviar/front.svg",
  26430. extra: 2072/1512,
  26431. bottom: 74/2146
  26432. }
  26433. },
  26434. back: {
  26435. height: math.unit(4.3, "meters"),
  26436. weight: math.unit(3, "tons"),
  26437. name: "Back",
  26438. image: {
  26439. source: "./media/characters/draekon-sylviar/back.svg",
  26440. extra: 1639/1483,
  26441. bottom: 41/1680
  26442. }
  26443. },
  26444. feral: {
  26445. height: math.unit(1.15, "meters"),
  26446. weight: math.unit(3, "tons"),
  26447. name: "Feral",
  26448. image: {
  26449. source: "./media/characters/draekon-sylviar/feral.svg",
  26450. extra: 1033/395,
  26451. bottom: 130/1163
  26452. }
  26453. },
  26454. maw: {
  26455. height: math.unit(1.3, "meters"),
  26456. name: "Maw",
  26457. image: {
  26458. source: "./media/characters/draekon-sylviar/maw.svg"
  26459. }
  26460. },
  26461. mawSeparated: {
  26462. height: math.unit(1.53, "meters"),
  26463. name: "Separated Maw",
  26464. image: {
  26465. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26466. }
  26467. },
  26468. tail: {
  26469. height: math.unit(1.15, "meters"),
  26470. name: "Tail",
  26471. image: {
  26472. source: "./media/characters/draekon-sylviar/tail.svg"
  26473. }
  26474. },
  26475. tailDick: {
  26476. height: math.unit(1.15, "meters"),
  26477. name: "Tail (Dick)",
  26478. image: {
  26479. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26480. }
  26481. },
  26482. tailDickSeparated: {
  26483. height: math.unit(1.19, "meters"),
  26484. name: "Tail (Separated Dick)",
  26485. image: {
  26486. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26487. }
  26488. },
  26489. slit: {
  26490. height: math.unit(1, "meters"),
  26491. name: "Slit",
  26492. image: {
  26493. source: "./media/characters/draekon-sylviar/slit.svg"
  26494. }
  26495. },
  26496. dick: {
  26497. height: math.unit(1.15, "meters"),
  26498. name: "Dick",
  26499. image: {
  26500. source: "./media/characters/draekon-sylviar/dick.svg"
  26501. }
  26502. },
  26503. dickSeparated: {
  26504. height: math.unit(1.1, "meters"),
  26505. name: "Separated Dick",
  26506. image: {
  26507. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26508. }
  26509. },
  26510. sheath: {
  26511. height: math.unit(1.15, "meters"),
  26512. name: "Sheath",
  26513. image: {
  26514. source: "./media/characters/draekon-sylviar/sheath.svg"
  26515. }
  26516. },
  26517. },
  26518. [
  26519. {
  26520. name: "Small",
  26521. height: math.unit(4.53 / 2, "meters"),
  26522. default: true
  26523. },
  26524. {
  26525. name: "Normal",
  26526. height: math.unit(4.53, "meters"),
  26527. default: true
  26528. },
  26529. {
  26530. name: "Large",
  26531. height: math.unit(4.53 * 2, "meters"),
  26532. },
  26533. ]
  26534. ))
  26535. characterMakers.push(() => makeCharacter(
  26536. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26537. {
  26538. front: {
  26539. height: math.unit(6 + 2 / 12, "feet"),
  26540. weight: math.unit(180, "lb"),
  26541. name: "Front",
  26542. image: {
  26543. source: "./media/characters/brawler/front.svg",
  26544. extra: 3301 / 3027,
  26545. bottom: 138 / 3439
  26546. }
  26547. },
  26548. },
  26549. [
  26550. {
  26551. name: "Normal",
  26552. height: math.unit(6 + 2 / 12, "feet"),
  26553. default: true
  26554. },
  26555. ]
  26556. ))
  26557. characterMakers.push(() => makeCharacter(
  26558. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26559. {
  26560. front: {
  26561. height: math.unit(11, "feet"),
  26562. weight: math.unit(1000, "lb"),
  26563. name: "Front",
  26564. image: {
  26565. source: "./media/characters/alex/front.svg",
  26566. bottom: 44.5 / 620
  26567. }
  26568. },
  26569. },
  26570. [
  26571. {
  26572. name: "Micro",
  26573. height: math.unit(5, "inches")
  26574. },
  26575. {
  26576. name: "Normal",
  26577. height: math.unit(11, "feet"),
  26578. default: true
  26579. },
  26580. {
  26581. name: "Macro",
  26582. height: math.unit(9.5e9, "feet")
  26583. },
  26584. {
  26585. name: "Max Size",
  26586. height: math.unit(1.4e283, "yottameters")
  26587. },
  26588. ]
  26589. ))
  26590. characterMakers.push(() => makeCharacter(
  26591. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26592. {
  26593. female: {
  26594. height: math.unit(29.9, "m"),
  26595. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26596. name: "Female",
  26597. image: {
  26598. source: "./media/characters/zenari/female.svg",
  26599. extra: 3281.6 / 3217,
  26600. bottom: 72.2 / 3353
  26601. }
  26602. },
  26603. male: {
  26604. height: math.unit(27.7, "m"),
  26605. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26606. name: "Male",
  26607. image: {
  26608. source: "./media/characters/zenari/male.svg",
  26609. extra: 3008 / 2991,
  26610. bottom: 54.6 / 3069
  26611. }
  26612. },
  26613. },
  26614. [
  26615. {
  26616. name: "Macro",
  26617. height: math.unit(29.7, "meters"),
  26618. default: true
  26619. },
  26620. ]
  26621. ))
  26622. characterMakers.push(() => makeCharacter(
  26623. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26624. {
  26625. female: {
  26626. height: math.unit(23.8, "m"),
  26627. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26628. name: "Female",
  26629. image: {
  26630. source: "./media/characters/mactarian/female.svg",
  26631. extra: 2662 / 2569,
  26632. bottom: 73 / 2736
  26633. }
  26634. },
  26635. male: {
  26636. height: math.unit(23.8, "m"),
  26637. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26638. name: "Male",
  26639. image: {
  26640. source: "./media/characters/mactarian/male.svg",
  26641. extra: 2673 / 2600,
  26642. bottom: 76 / 2750
  26643. }
  26644. },
  26645. },
  26646. [
  26647. {
  26648. name: "Macro",
  26649. height: math.unit(23.8, "meters"),
  26650. default: true
  26651. },
  26652. ]
  26653. ))
  26654. characterMakers.push(() => makeCharacter(
  26655. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26656. {
  26657. female: {
  26658. height: math.unit(19.3, "m"),
  26659. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26660. name: "Female",
  26661. image: {
  26662. source: "./media/characters/umok/female.svg",
  26663. extra: 2186 / 2078,
  26664. bottom: 87 / 2277
  26665. }
  26666. },
  26667. male: {
  26668. height: math.unit(19.5, "m"),
  26669. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26670. name: "Male",
  26671. image: {
  26672. source: "./media/characters/umok/male.svg",
  26673. extra: 2233 / 2140,
  26674. bottom: 24.4 / 2258
  26675. }
  26676. },
  26677. },
  26678. [
  26679. {
  26680. name: "Macro",
  26681. height: math.unit(19.3, "meters"),
  26682. default: true
  26683. },
  26684. ]
  26685. ))
  26686. characterMakers.push(() => makeCharacter(
  26687. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26688. {
  26689. female: {
  26690. height: math.unit(26.15, "m"),
  26691. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26692. name: "Female",
  26693. image: {
  26694. source: "./media/characters/joraxian/female.svg",
  26695. extra: 2912 / 2824,
  26696. bottom: 36 / 2956
  26697. }
  26698. },
  26699. male: {
  26700. height: math.unit(25.4, "m"),
  26701. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26702. name: "Male",
  26703. image: {
  26704. source: "./media/characters/joraxian/male.svg",
  26705. extra: 2877 / 2721,
  26706. bottom: 82 / 2967
  26707. }
  26708. },
  26709. },
  26710. [
  26711. {
  26712. name: "Macro",
  26713. height: math.unit(26.15, "meters"),
  26714. default: true
  26715. },
  26716. ]
  26717. ))
  26718. characterMakers.push(() => makeCharacter(
  26719. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26720. {
  26721. female: {
  26722. height: math.unit(21.6, "m"),
  26723. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26724. name: "Female",
  26725. image: {
  26726. source: "./media/characters/sthara/female.svg",
  26727. extra: 2516 / 2347,
  26728. bottom: 21.5 / 2537
  26729. }
  26730. },
  26731. male: {
  26732. height: math.unit(24, "m"),
  26733. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26734. name: "Male",
  26735. image: {
  26736. source: "./media/characters/sthara/male.svg",
  26737. extra: 2732 / 2607,
  26738. bottom: 23 / 2732
  26739. }
  26740. },
  26741. },
  26742. [
  26743. {
  26744. name: "Macro",
  26745. height: math.unit(21.6, "meters"),
  26746. default: true
  26747. },
  26748. ]
  26749. ))
  26750. characterMakers.push(() => makeCharacter(
  26751. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26752. {
  26753. front: {
  26754. height: math.unit(6 + 4 / 12, "feet"),
  26755. weight: math.unit(175, "lb"),
  26756. name: "Front",
  26757. image: {
  26758. source: "./media/characters/luka-bryzant/front.svg",
  26759. extra: 311 / 289,
  26760. bottom: 4 / 315
  26761. }
  26762. },
  26763. back: {
  26764. height: math.unit(6 + 4 / 12, "feet"),
  26765. weight: math.unit(175, "lb"),
  26766. name: "Back",
  26767. image: {
  26768. source: "./media/characters/luka-bryzant/back.svg",
  26769. extra: 311 / 289,
  26770. bottom: 3.8 / 313.7
  26771. }
  26772. },
  26773. },
  26774. [
  26775. {
  26776. name: "Micro",
  26777. height: math.unit(10, "inches")
  26778. },
  26779. {
  26780. name: "Normal",
  26781. height: math.unit(6 + 4 / 12, "feet"),
  26782. default: true
  26783. },
  26784. {
  26785. name: "Large",
  26786. height: math.unit(12, "feet")
  26787. },
  26788. ]
  26789. ))
  26790. characterMakers.push(() => makeCharacter(
  26791. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26792. {
  26793. front: {
  26794. height: math.unit(5 + 7 / 12, "feet"),
  26795. weight: math.unit(185, "lb"),
  26796. name: "Front",
  26797. image: {
  26798. source: "./media/characters/aman-aquila/front.svg",
  26799. extra: 1013 / 976,
  26800. bottom: 45.6 / 1057
  26801. }
  26802. },
  26803. side: {
  26804. height: math.unit(5 + 7 / 12, "feet"),
  26805. weight: math.unit(185, "lb"),
  26806. name: "Side",
  26807. image: {
  26808. source: "./media/characters/aman-aquila/side.svg",
  26809. extra: 1054 / 1011,
  26810. bottom: 15 / 1070
  26811. }
  26812. },
  26813. back: {
  26814. height: math.unit(5 + 7 / 12, "feet"),
  26815. weight: math.unit(185, "lb"),
  26816. name: "Back",
  26817. image: {
  26818. source: "./media/characters/aman-aquila/back.svg",
  26819. extra: 1026 / 970,
  26820. bottom: 12 / 1039
  26821. }
  26822. },
  26823. head: {
  26824. height: math.unit(1.211, "feet"),
  26825. name: "Head",
  26826. image: {
  26827. source: "./media/characters/aman-aquila/head.svg",
  26828. }
  26829. },
  26830. },
  26831. [
  26832. {
  26833. name: "Minimicro",
  26834. height: math.unit(0.057, "inches")
  26835. },
  26836. {
  26837. name: "Micro",
  26838. height: math.unit(7, "inches")
  26839. },
  26840. {
  26841. name: "Mini",
  26842. height: math.unit(3 + 7 / 12, "feet")
  26843. },
  26844. {
  26845. name: "Normal",
  26846. height: math.unit(5 + 7 / 12, "feet"),
  26847. default: true
  26848. },
  26849. {
  26850. name: "Macro",
  26851. height: math.unit(157 + 7 / 12, "feet")
  26852. },
  26853. {
  26854. name: "Megamacro",
  26855. height: math.unit(1557 + 7 / 12, "feet")
  26856. },
  26857. {
  26858. name: "Gigamacro",
  26859. height: math.unit(15557 + 7 / 12, "feet")
  26860. },
  26861. ]
  26862. ))
  26863. characterMakers.push(() => makeCharacter(
  26864. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26865. {
  26866. front: {
  26867. height: math.unit(3 + 2 / 12, "inches"),
  26868. weight: math.unit(0.3, "ounces"),
  26869. name: "Front",
  26870. image: {
  26871. source: "./media/characters/hiphae/front.svg",
  26872. extra: 1931 / 1683,
  26873. bottom: 24 / 1955
  26874. }
  26875. },
  26876. },
  26877. [
  26878. {
  26879. name: "Normal",
  26880. height: math.unit(3 + 1 / 2, "inches"),
  26881. default: true
  26882. },
  26883. ]
  26884. ))
  26885. characterMakers.push(() => makeCharacter(
  26886. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26887. {
  26888. front: {
  26889. height: math.unit(5 + 10 / 12, "feet"),
  26890. weight: math.unit(165, "lb"),
  26891. name: "Front",
  26892. image: {
  26893. source: "./media/characters/nicky/front.svg",
  26894. extra: 3144 / 2886,
  26895. bottom: 45.6 / 3192
  26896. }
  26897. },
  26898. back: {
  26899. height: math.unit(5 + 10 / 12, "feet"),
  26900. weight: math.unit(165, "lb"),
  26901. name: "Back",
  26902. image: {
  26903. source: "./media/characters/nicky/back.svg",
  26904. extra: 3055 / 2804,
  26905. bottom: 28.4 / 3087
  26906. }
  26907. },
  26908. frontclothed: {
  26909. height: math.unit(5 + 10 / 12, "feet"),
  26910. weight: math.unit(165, "lb"),
  26911. name: "Front-clothed",
  26912. image: {
  26913. source: "./media/characters/nicky/front-clothed.svg",
  26914. extra: 3184.9 / 2926.9,
  26915. bottom: 86.5 / 3239.9
  26916. }
  26917. },
  26918. foot: {
  26919. height: math.unit(1.16, "feet"),
  26920. name: "Foot",
  26921. image: {
  26922. source: "./media/characters/nicky/foot.svg"
  26923. }
  26924. },
  26925. feet: {
  26926. height: math.unit(1.34, "feet"),
  26927. name: "Feet",
  26928. image: {
  26929. source: "./media/characters/nicky/feet.svg"
  26930. }
  26931. },
  26932. maw: {
  26933. height: math.unit(0.9, "feet"),
  26934. name: "Maw",
  26935. image: {
  26936. source: "./media/characters/nicky/maw.svg"
  26937. }
  26938. },
  26939. },
  26940. [
  26941. {
  26942. name: "Normal",
  26943. height: math.unit(5 + 10 / 12, "feet"),
  26944. default: true
  26945. },
  26946. {
  26947. name: "Macro",
  26948. height: math.unit(60, "feet")
  26949. },
  26950. {
  26951. name: "Megamacro",
  26952. height: math.unit(1, "mile")
  26953. },
  26954. ]
  26955. ))
  26956. characterMakers.push(() => makeCharacter(
  26957. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26958. {
  26959. side: {
  26960. height: math.unit(10, "feet"),
  26961. weight: math.unit(600, "lb"),
  26962. name: "Side",
  26963. image: {
  26964. source: "./media/characters/blair/side.svg",
  26965. bottom: 16.6 / 475,
  26966. extra: 458 / 431
  26967. }
  26968. },
  26969. },
  26970. [
  26971. {
  26972. name: "Micro",
  26973. height: math.unit(8, "inches")
  26974. },
  26975. {
  26976. name: "Normal",
  26977. height: math.unit(10, "feet"),
  26978. default: true
  26979. },
  26980. {
  26981. name: "Macro",
  26982. height: math.unit(180, "feet")
  26983. },
  26984. ]
  26985. ))
  26986. characterMakers.push(() => makeCharacter(
  26987. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26988. {
  26989. front: {
  26990. height: math.unit(5 + 4 / 12, "feet"),
  26991. weight: math.unit(125, "lb"),
  26992. name: "Front",
  26993. image: {
  26994. source: "./media/characters/fisher/front.svg",
  26995. extra: 444 / 390,
  26996. bottom: 2 / 444.8
  26997. }
  26998. },
  26999. },
  27000. [
  27001. {
  27002. name: "Micro",
  27003. height: math.unit(4, "inches")
  27004. },
  27005. {
  27006. name: "Normal",
  27007. height: math.unit(5 + 4 / 12, "feet"),
  27008. default: true
  27009. },
  27010. {
  27011. name: "Macro",
  27012. height: math.unit(100, "feet")
  27013. },
  27014. ]
  27015. ))
  27016. characterMakers.push(() => makeCharacter(
  27017. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27018. {
  27019. front: {
  27020. height: math.unit(6.71, "feet"),
  27021. weight: math.unit(200, "lb"),
  27022. preyCapacity: math.unit(1000000, "people"),
  27023. name: "Front",
  27024. image: {
  27025. source: "./media/characters/gliss/front.svg",
  27026. extra: 2347 / 2231,
  27027. bottom: 113 / 2462
  27028. }
  27029. },
  27030. hammerspaceSize: {
  27031. height: math.unit(6.71 * 717, "feet"),
  27032. weight: math.unit(200, "lb"),
  27033. preyCapacity: math.unit(1000000, "people"),
  27034. name: "Hammerspace Size",
  27035. image: {
  27036. source: "./media/characters/gliss/front.svg",
  27037. extra: 2347 / 2231,
  27038. bottom: 113 / 2462
  27039. }
  27040. },
  27041. },
  27042. [
  27043. {
  27044. name: "Normal",
  27045. height: math.unit(6.71, "feet"),
  27046. default: true
  27047. },
  27048. ]
  27049. ))
  27050. characterMakers.push(() => makeCharacter(
  27051. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27052. {
  27053. side: {
  27054. height: math.unit(1.44, "m"),
  27055. weight: math.unit(80, "kg"),
  27056. name: "Side",
  27057. image: {
  27058. source: "./media/characters/dune-anderson/side.svg",
  27059. bottom: 49 / 1426
  27060. }
  27061. },
  27062. },
  27063. [
  27064. {
  27065. name: "Wolf-sized",
  27066. height: math.unit(1.44, "meters")
  27067. },
  27068. {
  27069. name: "Normal",
  27070. height: math.unit(5.05, "meters"),
  27071. default: true
  27072. },
  27073. {
  27074. name: "Big",
  27075. height: math.unit(14.4, "meters")
  27076. },
  27077. {
  27078. name: "Huge",
  27079. height: math.unit(144, "meters")
  27080. },
  27081. ]
  27082. ))
  27083. characterMakers.push(() => makeCharacter(
  27084. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27085. {
  27086. front: {
  27087. height: math.unit(7, "feet"),
  27088. weight: math.unit(425, "lb"),
  27089. name: "Front",
  27090. image: {
  27091. source: "./media/characters/hind/front.svg",
  27092. extra: 2091 / 1860,
  27093. bottom: 129 / 2220
  27094. }
  27095. },
  27096. back: {
  27097. height: math.unit(7, "feet"),
  27098. weight: math.unit(425, "lb"),
  27099. name: "Back",
  27100. image: {
  27101. source: "./media/characters/hind/back.svg",
  27102. extra: 2091 / 1860,
  27103. bottom: 24.6 / 2309
  27104. }
  27105. },
  27106. tail: {
  27107. height: math.unit(2.8, "feet"),
  27108. name: "Tail",
  27109. image: {
  27110. source: "./media/characters/hind/tail.svg"
  27111. }
  27112. },
  27113. head: {
  27114. height: math.unit(2.55, "feet"),
  27115. name: "Head",
  27116. image: {
  27117. source: "./media/characters/hind/head.svg"
  27118. }
  27119. },
  27120. },
  27121. [
  27122. {
  27123. name: "XS",
  27124. height: math.unit(0.7, "feet")
  27125. },
  27126. {
  27127. name: "Normal",
  27128. height: math.unit(7, "feet"),
  27129. default: true
  27130. },
  27131. {
  27132. name: "XL",
  27133. height: math.unit(70, "feet")
  27134. },
  27135. ]
  27136. ))
  27137. characterMakers.push(() => makeCharacter(
  27138. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27139. {
  27140. front: {
  27141. height: math.unit(2.1, "meters"),
  27142. weight: math.unit(150, "lb"),
  27143. name: "Front",
  27144. image: {
  27145. source: "./media/characters/tharquench-sizestealer/front.svg",
  27146. extra: 1605/1470,
  27147. bottom: 36/1641
  27148. }
  27149. },
  27150. frontAlt: {
  27151. height: math.unit(2.1, "meters"),
  27152. weight: math.unit(150, "lb"),
  27153. name: "Front (Alt)",
  27154. image: {
  27155. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27156. extra: 2318 / 2063,
  27157. bottom: 93.4 / 2410
  27158. }
  27159. },
  27160. },
  27161. [
  27162. {
  27163. name: "Nano",
  27164. height: math.unit(1, "mm")
  27165. },
  27166. {
  27167. name: "Micro",
  27168. height: math.unit(1, "cm")
  27169. },
  27170. {
  27171. name: "Normal",
  27172. height: math.unit(2.1, "meters"),
  27173. default: true
  27174. },
  27175. ]
  27176. ))
  27177. characterMakers.push(() => makeCharacter(
  27178. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27179. {
  27180. front: {
  27181. height: math.unit(7 + 5 / 12, "feet"),
  27182. weight: math.unit(357, "lb"),
  27183. name: "Front",
  27184. image: {
  27185. source: "./media/characters/solex-draconov/front.svg",
  27186. extra: 1993 / 1865,
  27187. bottom: 117 / 2111
  27188. }
  27189. },
  27190. },
  27191. [
  27192. {
  27193. name: "Natural Height",
  27194. height: math.unit(7 + 5 / 12, "feet"),
  27195. default: true
  27196. },
  27197. {
  27198. name: "Macro",
  27199. height: math.unit(350, "feet")
  27200. },
  27201. {
  27202. name: "Macro+",
  27203. height: math.unit(1000, "feet")
  27204. },
  27205. {
  27206. name: "Megamacro",
  27207. height: math.unit(20, "km")
  27208. },
  27209. {
  27210. name: "Megamacro+",
  27211. height: math.unit(1000, "km")
  27212. },
  27213. {
  27214. name: "Gigamacro",
  27215. height: math.unit(2.5, "Gm")
  27216. },
  27217. {
  27218. name: "Teramacro",
  27219. height: math.unit(15, "Tm")
  27220. },
  27221. {
  27222. name: "Galactic",
  27223. height: math.unit(30, "Zm")
  27224. },
  27225. {
  27226. name: "Universal",
  27227. height: math.unit(21000, "Ym")
  27228. },
  27229. {
  27230. name: "Omniversal",
  27231. height: math.unit(9.861e50, "Ym")
  27232. },
  27233. {
  27234. name: "Existential",
  27235. height: math.unit(1e300, "meters")
  27236. },
  27237. ]
  27238. ))
  27239. characterMakers.push(() => makeCharacter(
  27240. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27241. {
  27242. side: {
  27243. height: math.unit(25, "feet"),
  27244. weight: math.unit(90000, "lb"),
  27245. name: "Side",
  27246. image: {
  27247. source: "./media/characters/mandarax/side.svg",
  27248. extra: 614 / 332,
  27249. bottom: 55 / 630
  27250. }
  27251. },
  27252. lounging: {
  27253. height: math.unit(15.4, "feet"),
  27254. weight: math.unit(90000, "lb"),
  27255. name: "Lounging",
  27256. image: {
  27257. source: "./media/characters/mandarax/lounging.svg",
  27258. extra: 817/609,
  27259. bottom: 685/1502
  27260. }
  27261. },
  27262. head: {
  27263. height: math.unit(11.4, "feet"),
  27264. name: "Head",
  27265. image: {
  27266. source: "./media/characters/mandarax/head.svg"
  27267. }
  27268. },
  27269. belly: {
  27270. height: math.unit(33, "feet"),
  27271. name: "Belly",
  27272. preyCapacity: math.unit(500, "people"),
  27273. image: {
  27274. source: "./media/characters/mandarax/belly.svg"
  27275. }
  27276. },
  27277. dick: {
  27278. height: math.unit(8.46, "feet"),
  27279. name: "Dick",
  27280. image: {
  27281. source: "./media/characters/mandarax/dick.svg"
  27282. }
  27283. },
  27284. top: {
  27285. height: math.unit(28, "meters"),
  27286. name: "Top",
  27287. image: {
  27288. source: "./media/characters/mandarax/top.svg"
  27289. }
  27290. },
  27291. },
  27292. [
  27293. {
  27294. name: "Normal",
  27295. height: math.unit(25, "feet"),
  27296. default: true
  27297. },
  27298. ]
  27299. ))
  27300. characterMakers.push(() => makeCharacter(
  27301. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27302. {
  27303. front: {
  27304. height: math.unit(5, "feet"),
  27305. weight: math.unit(90, "lb"),
  27306. name: "Front",
  27307. image: {
  27308. source: "./media/characters/pixil/front.svg",
  27309. extra: 2000 / 1618,
  27310. bottom: 12.3 / 2011
  27311. }
  27312. },
  27313. },
  27314. [
  27315. {
  27316. name: "Normal",
  27317. height: math.unit(5, "feet"),
  27318. default: true
  27319. },
  27320. {
  27321. name: "Megamacro",
  27322. height: math.unit(10, "miles"),
  27323. },
  27324. ]
  27325. ))
  27326. characterMakers.push(() => makeCharacter(
  27327. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27328. {
  27329. front: {
  27330. height: math.unit(7 + 2 / 12, "feet"),
  27331. weight: math.unit(200, "lb"),
  27332. name: "Front",
  27333. image: {
  27334. source: "./media/characters/angel/front.svg",
  27335. extra: 1830 / 1737,
  27336. bottom: 22.6 / 1854,
  27337. }
  27338. },
  27339. },
  27340. [
  27341. {
  27342. name: "Normal",
  27343. height: math.unit(7 + 2 / 12, "feet"),
  27344. default: true
  27345. },
  27346. {
  27347. name: "Macro",
  27348. height: math.unit(1000, "feet")
  27349. },
  27350. {
  27351. name: "Megamacro",
  27352. height: math.unit(2, "miles")
  27353. },
  27354. {
  27355. name: "Gigamacro",
  27356. height: math.unit(20, "earths")
  27357. },
  27358. ]
  27359. ))
  27360. characterMakers.push(() => makeCharacter(
  27361. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27362. {
  27363. front: {
  27364. height: math.unit(5, "feet"),
  27365. weight: math.unit(180, "lb"),
  27366. name: "Front",
  27367. image: {
  27368. source: "./media/characters/mekana/front.svg",
  27369. extra: 1671 / 1605,
  27370. bottom: 3.5 / 1691
  27371. }
  27372. },
  27373. side: {
  27374. height: math.unit(5, "feet"),
  27375. weight: math.unit(180, "lb"),
  27376. name: "Side",
  27377. image: {
  27378. source: "./media/characters/mekana/side.svg",
  27379. extra: 1671 / 1605,
  27380. bottom: 3.5 / 1691
  27381. }
  27382. },
  27383. back: {
  27384. height: math.unit(5, "feet"),
  27385. weight: math.unit(180, "lb"),
  27386. name: "Back",
  27387. image: {
  27388. source: "./media/characters/mekana/back.svg",
  27389. extra: 1671 / 1605,
  27390. bottom: 3.5 / 1691
  27391. }
  27392. },
  27393. },
  27394. [
  27395. {
  27396. name: "Normal",
  27397. height: math.unit(5, "feet"),
  27398. default: true
  27399. },
  27400. ]
  27401. ))
  27402. characterMakers.push(() => makeCharacter(
  27403. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27404. {
  27405. front: {
  27406. height: math.unit(4 + 6 / 12, "feet"),
  27407. weight: math.unit(80, "lb"),
  27408. name: "Front",
  27409. image: {
  27410. source: "./media/characters/pixie/front.svg",
  27411. extra: 1924 / 1825,
  27412. bottom: 22.4 / 1946
  27413. }
  27414. },
  27415. },
  27416. [
  27417. {
  27418. name: "Normal",
  27419. height: math.unit(4 + 6 / 12, "feet"),
  27420. default: true
  27421. },
  27422. {
  27423. name: "Macro",
  27424. height: math.unit(40, "feet")
  27425. },
  27426. ]
  27427. ))
  27428. characterMakers.push(() => makeCharacter(
  27429. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27430. {
  27431. front: {
  27432. height: math.unit(2.1, "meters"),
  27433. weight: math.unit(200, "lb"),
  27434. name: "Front",
  27435. image: {
  27436. source: "./media/characters/the-lascivious/front.svg",
  27437. extra: 1 / 0.893,
  27438. bottom: 3.5 / 573.7
  27439. }
  27440. },
  27441. },
  27442. [
  27443. {
  27444. name: "Human Scale",
  27445. height: math.unit(2.1, "meters")
  27446. },
  27447. {
  27448. name: "Wolxi Scale",
  27449. height: math.unit(46.2, "m"),
  27450. default: true
  27451. },
  27452. {
  27453. name: "Boinker of Buildings",
  27454. height: math.unit(10, "km")
  27455. },
  27456. {
  27457. name: "Shagger of Skyscrapers",
  27458. height: math.unit(40, "km")
  27459. },
  27460. {
  27461. name: "Banger of Boroughs",
  27462. height: math.unit(4000, "km")
  27463. },
  27464. {
  27465. name: "Screwer of States",
  27466. height: math.unit(100000, "km")
  27467. },
  27468. {
  27469. name: "Pounder of Planets",
  27470. height: math.unit(2000000, "km")
  27471. },
  27472. ]
  27473. ))
  27474. characterMakers.push(() => makeCharacter(
  27475. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27476. {
  27477. front: {
  27478. height: math.unit(6, "feet"),
  27479. weight: math.unit(150, "lb"),
  27480. name: "Front",
  27481. image: {
  27482. source: "./media/characters/aj/front.svg",
  27483. extra: 2039 / 1562,
  27484. bottom: 40 / 2079
  27485. }
  27486. },
  27487. },
  27488. [
  27489. {
  27490. name: "Normal",
  27491. height: math.unit(11 + 6 / 12, "feet"),
  27492. default: true
  27493. },
  27494. {
  27495. name: "Megamacro",
  27496. height: math.unit(60, "megameters")
  27497. },
  27498. ]
  27499. ))
  27500. characterMakers.push(() => makeCharacter(
  27501. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27502. {
  27503. side: {
  27504. height: math.unit(31 + 8 / 12, "feet"),
  27505. weight: math.unit(75000, "kg"),
  27506. name: "Side",
  27507. image: {
  27508. source: "./media/characters/koros/side.svg",
  27509. extra: 1442 / 1297,
  27510. bottom: 122.7 / 1562
  27511. }
  27512. },
  27513. dicksKingsCrown: {
  27514. height: math.unit(6, "feet"),
  27515. name: "Dicks (King's Crown)",
  27516. image: {
  27517. source: "./media/characters/koros/dicks-kings-crown.svg"
  27518. }
  27519. },
  27520. dicksTailSet: {
  27521. height: math.unit(3, "feet"),
  27522. name: "Dicks (Tail Set)",
  27523. image: {
  27524. source: "./media/characters/koros/dicks-tail-set.svg"
  27525. }
  27526. },
  27527. dickCumming: {
  27528. height: math.unit(7.98, "feet"),
  27529. name: "Dick (Cumming)",
  27530. image: {
  27531. source: "./media/characters/koros/dick-cumming.svg"
  27532. }
  27533. },
  27534. dicksBack: {
  27535. height: math.unit(5.9, "feet"),
  27536. name: "Dicks (Back)",
  27537. image: {
  27538. source: "./media/characters/koros/dicks-back.svg"
  27539. }
  27540. },
  27541. dicksFront: {
  27542. height: math.unit(3.72, "feet"),
  27543. name: "Dicks (Front)",
  27544. image: {
  27545. source: "./media/characters/koros/dicks-front.svg"
  27546. }
  27547. },
  27548. dicksPeeking: {
  27549. height: math.unit(3.0, "feet"),
  27550. name: "Dicks (Peeking)",
  27551. image: {
  27552. source: "./media/characters/koros/dicks-peeking.svg"
  27553. }
  27554. },
  27555. eye: {
  27556. height: math.unit(1.7, "feet"),
  27557. name: "Eye",
  27558. image: {
  27559. source: "./media/characters/koros/eye.svg"
  27560. }
  27561. },
  27562. headFront: {
  27563. height: math.unit(11.69, "feet"),
  27564. name: "Head (Front)",
  27565. image: {
  27566. source: "./media/characters/koros/head-front.svg"
  27567. }
  27568. },
  27569. headSide: {
  27570. height: math.unit(14, "feet"),
  27571. name: "Head (Side)",
  27572. image: {
  27573. source: "./media/characters/koros/head-side.svg"
  27574. }
  27575. },
  27576. leg: {
  27577. height: math.unit(17, "feet"),
  27578. name: "Leg",
  27579. image: {
  27580. source: "./media/characters/koros/leg.svg"
  27581. }
  27582. },
  27583. mawSide: {
  27584. height: math.unit(12.8, "feet"),
  27585. name: "Maw (Side)",
  27586. image: {
  27587. source: "./media/characters/koros/maw-side.svg"
  27588. }
  27589. },
  27590. mawSpitting: {
  27591. height: math.unit(17, "feet"),
  27592. name: "Maw (Spitting)",
  27593. image: {
  27594. source: "./media/characters/koros/maw-spitting.svg"
  27595. }
  27596. },
  27597. slit: {
  27598. height: math.unit(2.8, "feet"),
  27599. name: "Slit",
  27600. image: {
  27601. source: "./media/characters/koros/slit.svg"
  27602. }
  27603. },
  27604. stomach: {
  27605. height: math.unit(6.8, "feet"),
  27606. preyCapacity: math.unit(20, "people"),
  27607. name: "Stomach",
  27608. image: {
  27609. source: "./media/characters/koros/stomach.svg"
  27610. }
  27611. },
  27612. wingspanBottom: {
  27613. height: math.unit(114, "feet"),
  27614. name: "Wingspan (Bottom)",
  27615. image: {
  27616. source: "./media/characters/koros/wingspan-bottom.svg"
  27617. }
  27618. },
  27619. wingspanTop: {
  27620. height: math.unit(104, "feet"),
  27621. name: "Wingspan (Top)",
  27622. image: {
  27623. source: "./media/characters/koros/wingspan-top.svg"
  27624. }
  27625. },
  27626. },
  27627. [
  27628. {
  27629. name: "Normal",
  27630. height: math.unit(31 + 8 / 12, "feet"),
  27631. default: true
  27632. },
  27633. ]
  27634. ))
  27635. characterMakers.push(() => makeCharacter(
  27636. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27637. {
  27638. front: {
  27639. height: math.unit(18 + 5 / 12, "feet"),
  27640. weight: math.unit(3750, "kg"),
  27641. name: "Front",
  27642. image: {
  27643. source: "./media/characters/vexx/front.svg",
  27644. extra: 426 / 396,
  27645. bottom: 31.5 / 458
  27646. }
  27647. },
  27648. maw: {
  27649. height: math.unit(6, "feet"),
  27650. name: "Maw",
  27651. image: {
  27652. source: "./media/characters/vexx/maw.svg"
  27653. }
  27654. },
  27655. },
  27656. [
  27657. {
  27658. name: "Normal",
  27659. height: math.unit(18 + 5 / 12, "feet"),
  27660. default: true
  27661. },
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27666. {
  27667. front: {
  27668. height: math.unit(17 + 6 / 12, "feet"),
  27669. weight: math.unit(150, "lb"),
  27670. name: "Front",
  27671. image: {
  27672. source: "./media/characters/baadra/front.svg",
  27673. extra: 1694/1553,
  27674. bottom: 179/1873
  27675. }
  27676. },
  27677. frontAlt: {
  27678. height: math.unit(17 + 6 / 12, "feet"),
  27679. weight: math.unit(150, "lb"),
  27680. name: "Front (Alt)",
  27681. image: {
  27682. source: "./media/characters/baadra/front-alt.svg",
  27683. extra: 3137 / 2890,
  27684. bottom: 168.4 / 3305
  27685. }
  27686. },
  27687. back: {
  27688. height: math.unit(17 + 6 / 12, "feet"),
  27689. weight: math.unit(150, "lb"),
  27690. name: "Back",
  27691. image: {
  27692. source: "./media/characters/baadra/back.svg",
  27693. extra: 3142 / 2890,
  27694. bottom: 220 / 3371
  27695. }
  27696. },
  27697. head: {
  27698. height: math.unit(5.45, "feet"),
  27699. name: "Head",
  27700. image: {
  27701. source: "./media/characters/baadra/head.svg"
  27702. }
  27703. },
  27704. headAngry: {
  27705. height: math.unit(4.95, "feet"),
  27706. name: "Head (Angry)",
  27707. image: {
  27708. source: "./media/characters/baadra/head-angry.svg"
  27709. }
  27710. },
  27711. headOpen: {
  27712. height: math.unit(6, "feet"),
  27713. name: "Head (Open)",
  27714. image: {
  27715. source: "./media/characters/baadra/head-open.svg"
  27716. }
  27717. },
  27718. },
  27719. [
  27720. {
  27721. name: "Normal",
  27722. height: math.unit(17 + 6 / 12, "feet"),
  27723. default: true
  27724. },
  27725. ]
  27726. ))
  27727. characterMakers.push(() => makeCharacter(
  27728. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27729. {
  27730. front: {
  27731. height: math.unit(7 + 3 / 12, "feet"),
  27732. weight: math.unit(180, "lb"),
  27733. name: "Front",
  27734. image: {
  27735. source: "./media/characters/juri/front.svg",
  27736. extra: 1401 / 1237,
  27737. bottom: 18.5 / 1418
  27738. }
  27739. },
  27740. side: {
  27741. height: math.unit(7 + 3 / 12, "feet"),
  27742. weight: math.unit(180, "lb"),
  27743. name: "Side",
  27744. image: {
  27745. source: "./media/characters/juri/side.svg",
  27746. extra: 1424 / 1242,
  27747. bottom: 18.5 / 1447
  27748. }
  27749. },
  27750. sitting: {
  27751. height: math.unit(6, "feet"),
  27752. weight: math.unit(180, "lb"),
  27753. name: "Sitting",
  27754. image: {
  27755. source: "./media/characters/juri/sitting.svg",
  27756. extra: 1270 / 1143,
  27757. bottom: 100 / 1343
  27758. }
  27759. },
  27760. back: {
  27761. height: math.unit(7 + 3 / 12, "feet"),
  27762. weight: math.unit(180, "lb"),
  27763. name: "Back",
  27764. image: {
  27765. source: "./media/characters/juri/back.svg",
  27766. extra: 1377 / 1240,
  27767. bottom: 23.7 / 1405
  27768. }
  27769. },
  27770. maw: {
  27771. height: math.unit(2.8, "feet"),
  27772. name: "Maw",
  27773. image: {
  27774. source: "./media/characters/juri/maw.svg"
  27775. }
  27776. },
  27777. stomach: {
  27778. height: math.unit(0.89, "feet"),
  27779. preyCapacity: math.unit(4, "liters"),
  27780. name: "Stomach",
  27781. image: {
  27782. source: "./media/characters/juri/stomach.svg"
  27783. }
  27784. },
  27785. },
  27786. [
  27787. {
  27788. name: "Normal",
  27789. height: math.unit(7 + 3 / 12, "feet"),
  27790. default: true
  27791. },
  27792. ]
  27793. ))
  27794. characterMakers.push(() => makeCharacter(
  27795. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27796. {
  27797. fox: {
  27798. height: math.unit(5 + 6 / 12, "feet"),
  27799. weight: math.unit(140, "lb"),
  27800. name: "Fox",
  27801. image: {
  27802. source: "./media/characters/maxene-sita/fox.svg",
  27803. extra: 146 / 138,
  27804. bottom: 2.1 / 148.19
  27805. }
  27806. },
  27807. foxLaying: {
  27808. height: math.unit(1.70, "feet"),
  27809. weight: math.unit(140, "lb"),
  27810. name: "Fox (Laying)",
  27811. image: {
  27812. source: "./media/characters/maxene-sita/fox-laying.svg",
  27813. extra: 910 / 572,
  27814. bottom: 71 / 981
  27815. }
  27816. },
  27817. kitsune: {
  27818. height: math.unit(10, "feet"),
  27819. weight: math.unit(800, "lb"),
  27820. name: "Kitsune",
  27821. image: {
  27822. source: "./media/characters/maxene-sita/kitsune.svg",
  27823. extra: 185 / 176,
  27824. bottom: 4.7 / 189.9
  27825. }
  27826. },
  27827. hellhound: {
  27828. height: math.unit(10, "feet"),
  27829. weight: math.unit(700, "lb"),
  27830. name: "Hellhound",
  27831. image: {
  27832. source: "./media/characters/maxene-sita/hellhound.svg",
  27833. extra: 1600 / 1545,
  27834. bottom: 81 / 1681
  27835. }
  27836. },
  27837. },
  27838. [
  27839. {
  27840. name: "Normal",
  27841. height: math.unit(5 + 6 / 12, "feet"),
  27842. default: true
  27843. },
  27844. ]
  27845. ))
  27846. characterMakers.push(() => makeCharacter(
  27847. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27848. {
  27849. front: {
  27850. height: math.unit(3 + 4 / 12, "feet"),
  27851. weight: math.unit(70, "lb"),
  27852. name: "Front",
  27853. image: {
  27854. source: "./media/characters/maia/front.svg",
  27855. extra: 227 / 219.5,
  27856. bottom: 40 / 267
  27857. }
  27858. },
  27859. back: {
  27860. height: math.unit(3 + 4 / 12, "feet"),
  27861. weight: math.unit(70, "lb"),
  27862. name: "Back",
  27863. image: {
  27864. source: "./media/characters/maia/back.svg",
  27865. extra: 237 / 225
  27866. }
  27867. },
  27868. },
  27869. [
  27870. {
  27871. name: "Normal",
  27872. height: math.unit(3 + 4 / 12, "feet"),
  27873. default: true
  27874. },
  27875. ]
  27876. ))
  27877. characterMakers.push(() => makeCharacter(
  27878. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27879. {
  27880. front: {
  27881. height: math.unit(5 + 10 / 12, "feet"),
  27882. weight: math.unit(197, "lb"),
  27883. name: "Front",
  27884. image: {
  27885. source: "./media/characters/jabaro/front.svg",
  27886. extra: 225 / 216,
  27887. bottom: 5.06 / 230
  27888. }
  27889. },
  27890. back: {
  27891. height: math.unit(5 + 10 / 12, "feet"),
  27892. weight: math.unit(197, "lb"),
  27893. name: "Back",
  27894. image: {
  27895. source: "./media/characters/jabaro/back.svg",
  27896. extra: 225 / 219,
  27897. bottom: 1.9 / 227
  27898. }
  27899. },
  27900. },
  27901. [
  27902. {
  27903. name: "Normal",
  27904. height: math.unit(5 + 10 / 12, "feet"),
  27905. default: true
  27906. },
  27907. ]
  27908. ))
  27909. characterMakers.push(() => makeCharacter(
  27910. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27911. {
  27912. front: {
  27913. height: math.unit(5 + 8 / 12, "feet"),
  27914. weight: math.unit(139, "lb"),
  27915. name: "Front",
  27916. image: {
  27917. source: "./media/characters/risa/front.svg",
  27918. extra: 270 / 260,
  27919. bottom: 11.2 / 282
  27920. }
  27921. },
  27922. back: {
  27923. height: math.unit(5 + 8 / 12, "feet"),
  27924. weight: math.unit(139, "lb"),
  27925. name: "Back",
  27926. image: {
  27927. source: "./media/characters/risa/back.svg",
  27928. extra: 264 / 255,
  27929. bottom: 4 / 268
  27930. }
  27931. },
  27932. },
  27933. [
  27934. {
  27935. name: "Normal",
  27936. height: math.unit(5 + 8 / 12, "feet"),
  27937. default: true
  27938. },
  27939. ]
  27940. ))
  27941. characterMakers.push(() => makeCharacter(
  27942. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27943. {
  27944. front: {
  27945. height: math.unit(2 + 11 / 12, "feet"),
  27946. weight: math.unit(30, "lb"),
  27947. name: "Front",
  27948. image: {
  27949. source: "./media/characters/weatley/front.svg",
  27950. bottom: 10.7 / 414,
  27951. extra: 403.5 / 362
  27952. }
  27953. },
  27954. back: {
  27955. height: math.unit(2 + 11 / 12, "feet"),
  27956. weight: math.unit(30, "lb"),
  27957. name: "Back",
  27958. image: {
  27959. source: "./media/characters/weatley/back.svg",
  27960. bottom: 10.7 / 414,
  27961. extra: 403.5 / 362
  27962. }
  27963. },
  27964. },
  27965. [
  27966. {
  27967. name: "Normal",
  27968. height: math.unit(2 + 11 / 12, "feet"),
  27969. default: true
  27970. },
  27971. ]
  27972. ))
  27973. characterMakers.push(() => makeCharacter(
  27974. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27975. {
  27976. front: {
  27977. height: math.unit(5 + 2 / 12, "feet"),
  27978. weight: math.unit(50, "kg"),
  27979. name: "Front",
  27980. image: {
  27981. source: "./media/characters/mercury-crescent/front.svg",
  27982. extra: 1088 / 1033,
  27983. bottom: 18.9 / 1109
  27984. }
  27985. },
  27986. },
  27987. [
  27988. {
  27989. name: "Normal",
  27990. height: math.unit(5 + 2 / 12, "feet"),
  27991. default: true
  27992. },
  27993. ]
  27994. ))
  27995. characterMakers.push(() => makeCharacter(
  27996. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27997. {
  27998. front: {
  27999. height: math.unit(2, "feet"),
  28000. weight: math.unit(15, "kg"),
  28001. name: "Front",
  28002. image: {
  28003. source: "./media/characters/diamond-jones/front.svg",
  28004. extra: 727/723,
  28005. bottom: 46/773
  28006. }
  28007. },
  28008. },
  28009. [
  28010. {
  28011. name: "Normal",
  28012. height: math.unit(2, "feet"),
  28013. default: true
  28014. },
  28015. ]
  28016. ))
  28017. characterMakers.push(() => makeCharacter(
  28018. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28019. {
  28020. front: {
  28021. height: math.unit(3, "feet"),
  28022. weight: math.unit(30, "kg"),
  28023. name: "Front",
  28024. image: {
  28025. source: "./media/characters/sweet-bit/front.svg",
  28026. extra: 675 / 567,
  28027. bottom: 27.7 / 703
  28028. }
  28029. },
  28030. },
  28031. [
  28032. {
  28033. name: "Normal",
  28034. height: math.unit(3, "feet"),
  28035. default: true
  28036. },
  28037. ]
  28038. ))
  28039. characterMakers.push(() => makeCharacter(
  28040. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28041. {
  28042. side: {
  28043. height: math.unit(9.178, "feet"),
  28044. weight: math.unit(500, "lb"),
  28045. name: "Side",
  28046. image: {
  28047. source: "./media/characters/umbrazen/side.svg",
  28048. extra: 1730 / 1473,
  28049. bottom: 34.6 / 1765
  28050. }
  28051. },
  28052. },
  28053. [
  28054. {
  28055. name: "Normal",
  28056. height: math.unit(9.178, "feet"),
  28057. default: true
  28058. },
  28059. ]
  28060. ))
  28061. characterMakers.push(() => makeCharacter(
  28062. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28063. {
  28064. front: {
  28065. height: math.unit(10, "feet"),
  28066. weight: math.unit(750, "lb"),
  28067. name: "Front",
  28068. image: {
  28069. source: "./media/characters/arlist/front.svg",
  28070. extra: 961 / 778,
  28071. bottom: 6.2 / 986
  28072. }
  28073. },
  28074. },
  28075. [
  28076. {
  28077. name: "Normal",
  28078. height: math.unit(10, "feet"),
  28079. default: true
  28080. },
  28081. ]
  28082. ))
  28083. characterMakers.push(() => makeCharacter(
  28084. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28085. {
  28086. front: {
  28087. height: math.unit(5 + 1 / 12, "feet"),
  28088. weight: math.unit(110, "lb"),
  28089. name: "Front",
  28090. image: {
  28091. source: "./media/characters/aradel/front.svg",
  28092. extra: 324 / 303,
  28093. bottom: 3.6 / 329.4
  28094. }
  28095. },
  28096. },
  28097. [
  28098. {
  28099. name: "Normal",
  28100. height: math.unit(5 + 1 / 12, "feet"),
  28101. default: true
  28102. },
  28103. ]
  28104. ))
  28105. characterMakers.push(() => makeCharacter(
  28106. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28107. {
  28108. dressed: {
  28109. height: math.unit(3 + 8 / 12, "feet"),
  28110. weight: math.unit(50, "lb"),
  28111. name: "Dressed",
  28112. image: {
  28113. source: "./media/characters/serryn/dressed.svg",
  28114. extra: 1792 / 1656,
  28115. bottom: 43.5 / 1840
  28116. }
  28117. },
  28118. nude: {
  28119. height: math.unit(3 + 8 / 12, "feet"),
  28120. weight: math.unit(50, "lb"),
  28121. name: "Nude",
  28122. image: {
  28123. source: "./media/characters/serryn/nude.svg",
  28124. extra: 1792 / 1656,
  28125. bottom: 43.5 / 1840
  28126. }
  28127. },
  28128. },
  28129. [
  28130. {
  28131. name: "Normal",
  28132. height: math.unit(3 + 8 / 12, "feet"),
  28133. default: true
  28134. },
  28135. ]
  28136. ))
  28137. characterMakers.push(() => makeCharacter(
  28138. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28139. {
  28140. front: {
  28141. height: math.unit(7 + 10 / 12, "feet"),
  28142. weight: math.unit(255, "lb"),
  28143. name: "Front",
  28144. image: {
  28145. source: "./media/characters/xavier-thyme/front.svg",
  28146. extra: 3733 / 3642,
  28147. bottom: 131 / 3869
  28148. }
  28149. },
  28150. frontRaven: {
  28151. height: math.unit(7 + 10 / 12, "feet"),
  28152. weight: math.unit(255, "lb"),
  28153. name: "Front (Raven)",
  28154. image: {
  28155. source: "./media/characters/xavier-thyme/front-raven.svg",
  28156. extra: 4385 / 3642,
  28157. bottom: 131 / 4517
  28158. }
  28159. },
  28160. },
  28161. [
  28162. {
  28163. name: "Normal",
  28164. height: math.unit(7 + 10 / 12, "feet"),
  28165. default: true
  28166. },
  28167. ]
  28168. ))
  28169. characterMakers.push(() => makeCharacter(
  28170. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28171. {
  28172. front: {
  28173. height: math.unit(1.6, "m"),
  28174. weight: math.unit(50, "kg"),
  28175. name: "Front",
  28176. image: {
  28177. source: "./media/characters/kiki/front.svg",
  28178. extra: 4682 / 3610,
  28179. bottom: 115 / 4777
  28180. }
  28181. },
  28182. },
  28183. [
  28184. {
  28185. name: "Normal",
  28186. height: math.unit(1.6, "meters"),
  28187. default: true
  28188. },
  28189. ]
  28190. ))
  28191. characterMakers.push(() => makeCharacter(
  28192. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28193. {
  28194. front: {
  28195. height: math.unit(50, "m"),
  28196. weight: math.unit(500, "tonnes"),
  28197. name: "Front",
  28198. image: {
  28199. source: "./media/characters/ryoko/front.svg",
  28200. extra: 4632 / 3926,
  28201. bottom: 193 / 4823
  28202. }
  28203. },
  28204. },
  28205. [
  28206. {
  28207. name: "Normal",
  28208. height: math.unit(50, "meters"),
  28209. default: true
  28210. },
  28211. ]
  28212. ))
  28213. characterMakers.push(() => makeCharacter(
  28214. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28215. {
  28216. front: {
  28217. height: math.unit(30, "m"),
  28218. weight: math.unit(22, "tonnes"),
  28219. name: "Front",
  28220. image: {
  28221. source: "./media/characters/elio/front.svg",
  28222. extra: 4582 / 3720,
  28223. bottom: 236 / 4828
  28224. }
  28225. },
  28226. },
  28227. [
  28228. {
  28229. name: "Normal",
  28230. height: math.unit(30, "meters"),
  28231. default: true
  28232. },
  28233. ]
  28234. ))
  28235. characterMakers.push(() => makeCharacter(
  28236. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28237. {
  28238. front: {
  28239. height: math.unit(6 + 3 / 12, "feet"),
  28240. weight: math.unit(120, "lb"),
  28241. name: "Front",
  28242. image: {
  28243. source: "./media/characters/azura/front.svg",
  28244. extra: 1149 / 1135,
  28245. bottom: 45 / 1194
  28246. }
  28247. },
  28248. frontClothed: {
  28249. height: math.unit(6 + 3 / 12, "feet"),
  28250. weight: math.unit(120, "lb"),
  28251. name: "Front (Clothed)",
  28252. image: {
  28253. source: "./media/characters/azura/front-clothed.svg",
  28254. extra: 1149 / 1135,
  28255. bottom: 45 / 1194
  28256. }
  28257. },
  28258. },
  28259. [
  28260. {
  28261. name: "Normal",
  28262. height: math.unit(6 + 3 / 12, "feet"),
  28263. default: true
  28264. },
  28265. {
  28266. name: "Macro",
  28267. height: math.unit(20 + 6 / 12, "feet")
  28268. },
  28269. {
  28270. name: "Megamacro",
  28271. height: math.unit(12, "miles")
  28272. },
  28273. {
  28274. name: "Gigamacro",
  28275. height: math.unit(10000, "miles")
  28276. },
  28277. {
  28278. name: "Teramacro",
  28279. height: math.unit(900000, "miles")
  28280. },
  28281. ]
  28282. ))
  28283. characterMakers.push(() => makeCharacter(
  28284. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28285. {
  28286. front: {
  28287. height: math.unit(12, "feet"),
  28288. weight: math.unit(1, "ton"),
  28289. capacity: math.unit(660000, "gallons"),
  28290. name: "Front",
  28291. image: {
  28292. source: "./media/characters/zeus/front.svg",
  28293. extra: 5005 / 4717,
  28294. bottom: 363 / 5388
  28295. }
  28296. },
  28297. },
  28298. [
  28299. {
  28300. name: "Normal",
  28301. height: math.unit(12, "feet")
  28302. },
  28303. {
  28304. name: "Preferred Size",
  28305. height: math.unit(0.5, "miles"),
  28306. default: true
  28307. },
  28308. {
  28309. name: "Giga Horse",
  28310. height: math.unit(300, "miles")
  28311. },
  28312. {
  28313. name: "Riding Planets",
  28314. height: math.unit(30, "megameters")
  28315. },
  28316. {
  28317. name: "Cosmic Giant",
  28318. height: math.unit(3, "zettameters")
  28319. },
  28320. {
  28321. name: "Breeding God",
  28322. height: math.unit(9.92e22, "yottameters")
  28323. },
  28324. ]
  28325. ))
  28326. characterMakers.push(() => makeCharacter(
  28327. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28328. {
  28329. side: {
  28330. height: math.unit(9, "feet"),
  28331. weight: math.unit(1500, "kg"),
  28332. name: "Side",
  28333. image: {
  28334. source: "./media/characters/fang/side.svg",
  28335. extra: 924 / 866,
  28336. bottom: 47.5 / 972.3
  28337. }
  28338. },
  28339. },
  28340. [
  28341. {
  28342. name: "Normal",
  28343. height: math.unit(9, "feet"),
  28344. default: true
  28345. },
  28346. {
  28347. name: "Macro",
  28348. height: math.unit(75 + 6 / 12, "feet")
  28349. },
  28350. {
  28351. name: "Teramacro",
  28352. height: math.unit(50000, "miles")
  28353. },
  28354. ]
  28355. ))
  28356. characterMakers.push(() => makeCharacter(
  28357. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28358. {
  28359. front: {
  28360. height: math.unit(10, "feet"),
  28361. weight: math.unit(2, "tons"),
  28362. name: "Front",
  28363. image: {
  28364. source: "./media/characters/rekhit/front.svg",
  28365. extra: 2796 / 2590,
  28366. bottom: 225 / 3022
  28367. }
  28368. },
  28369. },
  28370. [
  28371. {
  28372. name: "Normal",
  28373. height: math.unit(10, "feet"),
  28374. default: true
  28375. },
  28376. {
  28377. name: "Macro",
  28378. height: math.unit(500, "feet")
  28379. },
  28380. ]
  28381. ))
  28382. characterMakers.push(() => makeCharacter(
  28383. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28384. {
  28385. front: {
  28386. height: math.unit(7 + 6.451 / 12, "feet"),
  28387. weight: math.unit(310, "lb"),
  28388. name: "Front",
  28389. image: {
  28390. source: "./media/characters/dahlia-verrick/front.svg",
  28391. extra: 1488 / 1365,
  28392. bottom: 6.2 / 1495
  28393. }
  28394. },
  28395. back: {
  28396. height: math.unit(7 + 6.451 / 12, "feet"),
  28397. weight: math.unit(310, "lb"),
  28398. name: "Back",
  28399. image: {
  28400. source: "./media/characters/dahlia-verrick/back.svg",
  28401. extra: 1472 / 1351,
  28402. bottom: 5.28 / 1477
  28403. }
  28404. },
  28405. frontBusiness: {
  28406. height: math.unit(7 + 6.451 / 12, "feet"),
  28407. weight: math.unit(200, "lb"),
  28408. name: "Front (Business)",
  28409. image: {
  28410. source: "./media/characters/dahlia-verrick/front-business.svg",
  28411. extra: 1478 / 1381,
  28412. bottom: 5.5 / 1484
  28413. }
  28414. },
  28415. frontCasual: {
  28416. height: math.unit(7 + 6.451 / 12, "feet"),
  28417. weight: math.unit(200, "lb"),
  28418. name: "Front (Casual)",
  28419. image: {
  28420. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28421. extra: 1478 / 1381,
  28422. bottom: 5.5 / 1484
  28423. }
  28424. },
  28425. },
  28426. [
  28427. {
  28428. name: "Travel-Sized",
  28429. height: math.unit(7.45, "inches")
  28430. },
  28431. {
  28432. name: "Normal",
  28433. height: math.unit(7 + 6.451 / 12, "feet"),
  28434. default: true
  28435. },
  28436. {
  28437. name: "Hitting the Town",
  28438. height: math.unit(37 + 8 / 12, "feet")
  28439. },
  28440. {
  28441. name: "Stomp in the Suburbs",
  28442. height: math.unit(964 + 9.728 / 12, "feet")
  28443. },
  28444. {
  28445. name: "Sit on the City",
  28446. height: math.unit(61747 + 10.592 / 12, "feet")
  28447. },
  28448. {
  28449. name: "Glomp the Globe",
  28450. height: math.unit(252919327 + 4.832 / 12, "feet")
  28451. },
  28452. ]
  28453. ))
  28454. characterMakers.push(() => makeCharacter(
  28455. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28456. {
  28457. front: {
  28458. height: math.unit(6 + 4 / 12, "feet"),
  28459. weight: math.unit(320, "lb"),
  28460. name: "Front",
  28461. image: {
  28462. source: "./media/characters/balina-mahigan/front.svg",
  28463. extra: 447 / 428,
  28464. bottom: 18 / 466
  28465. }
  28466. },
  28467. back: {
  28468. height: math.unit(6 + 4 / 12, "feet"),
  28469. weight: math.unit(320, "lb"),
  28470. name: "Back",
  28471. image: {
  28472. source: "./media/characters/balina-mahigan/back.svg",
  28473. extra: 445 / 428,
  28474. bottom: 4.07 / 448
  28475. }
  28476. },
  28477. arm: {
  28478. height: math.unit(1.88, "feet"),
  28479. name: "Arm",
  28480. image: {
  28481. source: "./media/characters/balina-mahigan/arm.svg"
  28482. }
  28483. },
  28484. backPort: {
  28485. height: math.unit(0.685, "feet"),
  28486. name: "Back Port",
  28487. image: {
  28488. source: "./media/characters/balina-mahigan/back-port.svg"
  28489. }
  28490. },
  28491. hoofpaw: {
  28492. height: math.unit(1.41, "feet"),
  28493. name: "Hoofpaw",
  28494. image: {
  28495. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28496. }
  28497. },
  28498. leftHandBack: {
  28499. height: math.unit(0.938, "feet"),
  28500. name: "Left Hand (Back)",
  28501. image: {
  28502. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28503. }
  28504. },
  28505. leftHandFront: {
  28506. height: math.unit(0.938, "feet"),
  28507. name: "Left Hand (Front)",
  28508. image: {
  28509. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28510. }
  28511. },
  28512. rightHandBack: {
  28513. height: math.unit(0.95, "feet"),
  28514. name: "Right Hand (Back)",
  28515. image: {
  28516. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28517. }
  28518. },
  28519. rightHandFront: {
  28520. height: math.unit(0.95, "feet"),
  28521. name: "Right Hand (Front)",
  28522. image: {
  28523. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28524. }
  28525. },
  28526. },
  28527. [
  28528. {
  28529. name: "Normal",
  28530. height: math.unit(6 + 4 / 12, "feet"),
  28531. default: true
  28532. },
  28533. ]
  28534. ))
  28535. characterMakers.push(() => makeCharacter(
  28536. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28537. {
  28538. front: {
  28539. height: math.unit(6, "feet"),
  28540. weight: math.unit(320, "lb"),
  28541. name: "Front",
  28542. image: {
  28543. source: "./media/characters/balina-mejeri/front.svg",
  28544. extra: 517 / 488,
  28545. bottom: 44.2 / 561
  28546. }
  28547. },
  28548. },
  28549. [
  28550. {
  28551. name: "Normal",
  28552. height: math.unit(6 + 4 / 12, "feet")
  28553. },
  28554. {
  28555. name: "Business",
  28556. height: math.unit(155, "feet"),
  28557. default: true
  28558. },
  28559. ]
  28560. ))
  28561. characterMakers.push(() => makeCharacter(
  28562. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28563. {
  28564. kneeling: {
  28565. height: math.unit(6 + 4 / 12, "feet"),
  28566. weight: math.unit(300 * 20, "lb"),
  28567. name: "Kneeling",
  28568. image: {
  28569. source: "./media/characters/balbarian/kneeling.svg",
  28570. extra: 922 / 862,
  28571. bottom: 42.4 / 965
  28572. }
  28573. },
  28574. },
  28575. [
  28576. {
  28577. name: "Normal",
  28578. height: math.unit(6 + 4 / 12, "feet")
  28579. },
  28580. {
  28581. name: "Treasured",
  28582. height: math.unit(18 + 9 / 12, "feet"),
  28583. default: true
  28584. },
  28585. {
  28586. name: "Macro",
  28587. height: math.unit(900, "feet")
  28588. },
  28589. ]
  28590. ))
  28591. characterMakers.push(() => makeCharacter(
  28592. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28593. {
  28594. front: {
  28595. height: math.unit(6 + 4 / 12, "feet"),
  28596. weight: math.unit(325, "lb"),
  28597. name: "Front",
  28598. image: {
  28599. source: "./media/characters/balina-amarini/front.svg",
  28600. extra: 415 / 403,
  28601. bottom: 19 / 433.4
  28602. }
  28603. },
  28604. back: {
  28605. height: math.unit(6 + 4 / 12, "feet"),
  28606. weight: math.unit(325, "lb"),
  28607. name: "Back",
  28608. image: {
  28609. source: "./media/characters/balina-amarini/back.svg",
  28610. extra: 415 / 403,
  28611. bottom: 13.5 / 432
  28612. }
  28613. },
  28614. overdrive: {
  28615. height: math.unit(6 + 4 / 12, "feet"),
  28616. weight: math.unit(400, "lb"),
  28617. name: "Overdrive",
  28618. image: {
  28619. source: "./media/characters/balina-amarini/overdrive.svg",
  28620. extra: 269 / 259,
  28621. bottom: 12 / 282
  28622. }
  28623. },
  28624. },
  28625. [
  28626. {
  28627. name: "Boom",
  28628. height: math.unit(9 + 10 / 12, "feet"),
  28629. default: true
  28630. },
  28631. {
  28632. name: "Macro",
  28633. height: math.unit(280, "feet")
  28634. },
  28635. ]
  28636. ))
  28637. characterMakers.push(() => makeCharacter(
  28638. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28639. {
  28640. goddess: {
  28641. height: math.unit(600, "feet"),
  28642. weight: math.unit(2000000, "tons"),
  28643. name: "Goddess",
  28644. image: {
  28645. source: "./media/characters/lady-kubwa/goddess.svg",
  28646. extra: 1240.5 / 1223,
  28647. bottom: 22 / 1263
  28648. }
  28649. },
  28650. goddesser: {
  28651. height: math.unit(900, "feet"),
  28652. weight: math.unit(20000000, "lb"),
  28653. name: "Goddess-er",
  28654. image: {
  28655. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28656. extra: 899 / 888,
  28657. bottom: 12.6 / 912
  28658. }
  28659. },
  28660. },
  28661. [
  28662. {
  28663. name: "Macro",
  28664. height: math.unit(600, "feet"),
  28665. default: true
  28666. },
  28667. {
  28668. name: "Megamacro",
  28669. height: math.unit(250, "miles")
  28670. },
  28671. ]
  28672. ))
  28673. characterMakers.push(() => makeCharacter(
  28674. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28675. {
  28676. front: {
  28677. height: math.unit(7 + 7 / 12, "feet"),
  28678. weight: math.unit(250, "lb"),
  28679. name: "Front",
  28680. image: {
  28681. source: "./media/characters/tala-grovehorn/front.svg",
  28682. extra: 2636 / 2525,
  28683. bottom: 147 / 2781
  28684. }
  28685. },
  28686. back: {
  28687. height: math.unit(7 + 7 / 12, "feet"),
  28688. weight: math.unit(250, "lb"),
  28689. name: "Back",
  28690. image: {
  28691. source: "./media/characters/tala-grovehorn/back.svg",
  28692. extra: 2635 / 2539,
  28693. bottom: 100 / 2732.8
  28694. }
  28695. },
  28696. mouth: {
  28697. height: math.unit(1.15, "feet"),
  28698. name: "Mouth",
  28699. image: {
  28700. source: "./media/characters/tala-grovehorn/mouth.svg"
  28701. }
  28702. },
  28703. dick: {
  28704. height: math.unit(2.36, "feet"),
  28705. name: "Dick",
  28706. image: {
  28707. source: "./media/characters/tala-grovehorn/dick.svg"
  28708. }
  28709. },
  28710. slit: {
  28711. height: math.unit(0.61, "feet"),
  28712. name: "Slit",
  28713. image: {
  28714. source: "./media/characters/tala-grovehorn/slit.svg"
  28715. }
  28716. },
  28717. },
  28718. [
  28719. ]
  28720. ))
  28721. characterMakers.push(() => makeCharacter(
  28722. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28723. {
  28724. front: {
  28725. height: math.unit(7 + 7 / 12, "feet"),
  28726. weight: math.unit(225, "lb"),
  28727. name: "Front",
  28728. image: {
  28729. source: "./media/characters/epona/front.svg",
  28730. extra: 2445 / 2290,
  28731. bottom: 251 / 2696
  28732. }
  28733. },
  28734. back: {
  28735. height: math.unit(7 + 7 / 12, "feet"),
  28736. weight: math.unit(225, "lb"),
  28737. name: "Back",
  28738. image: {
  28739. source: "./media/characters/epona/back.svg",
  28740. extra: 2546 / 2408,
  28741. bottom: 44 / 2589
  28742. }
  28743. },
  28744. genitals: {
  28745. height: math.unit(1.5, "feet"),
  28746. name: "Genitals",
  28747. image: {
  28748. source: "./media/characters/epona/genitals.svg"
  28749. }
  28750. },
  28751. },
  28752. [
  28753. {
  28754. name: "Normal",
  28755. height: math.unit(7 + 7 / 12, "feet"),
  28756. default: true
  28757. },
  28758. ]
  28759. ))
  28760. characterMakers.push(() => makeCharacter(
  28761. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28762. {
  28763. front: {
  28764. height: math.unit(7, "feet"),
  28765. weight: math.unit(518, "lb"),
  28766. name: "Front",
  28767. image: {
  28768. source: "./media/characters/avia-bloodbourn/front.svg",
  28769. extra: 1466 / 1350,
  28770. bottom: 65 / 1527
  28771. }
  28772. },
  28773. },
  28774. [
  28775. ]
  28776. ))
  28777. characterMakers.push(() => makeCharacter(
  28778. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28779. {
  28780. front: {
  28781. height: math.unit(9.35, "feet"),
  28782. weight: math.unit(600, "lb"),
  28783. name: "Front",
  28784. image: {
  28785. source: "./media/characters/amera/front.svg",
  28786. extra: 891 / 818,
  28787. bottom: 30 / 922.7
  28788. }
  28789. },
  28790. back: {
  28791. height: math.unit(9.35, "feet"),
  28792. weight: math.unit(600, "lb"),
  28793. name: "Back",
  28794. image: {
  28795. source: "./media/characters/amera/back.svg",
  28796. extra: 876 / 824,
  28797. bottom: 6.8 / 884
  28798. }
  28799. },
  28800. dick: {
  28801. height: math.unit(2.14, "feet"),
  28802. name: "Dick",
  28803. image: {
  28804. source: "./media/characters/amera/dick.svg"
  28805. }
  28806. },
  28807. },
  28808. [
  28809. {
  28810. name: "Normal",
  28811. height: math.unit(9.35, "feet"),
  28812. default: true
  28813. },
  28814. ]
  28815. ))
  28816. characterMakers.push(() => makeCharacter(
  28817. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28818. {
  28819. kneeling: {
  28820. height: math.unit(3 + 4 / 12, "feet"),
  28821. weight: math.unit(90, "lb"),
  28822. name: "Kneeling",
  28823. image: {
  28824. source: "./media/characters/rosewen/kneeling.svg",
  28825. extra: 1835 / 1571,
  28826. bottom: 27.7 / 1862
  28827. }
  28828. },
  28829. },
  28830. [
  28831. {
  28832. name: "Normal",
  28833. height: math.unit(3 + 4 / 12, "feet"),
  28834. default: true
  28835. },
  28836. ]
  28837. ))
  28838. characterMakers.push(() => makeCharacter(
  28839. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28840. {
  28841. front: {
  28842. height: math.unit(5 + 10 / 12, "feet"),
  28843. weight: math.unit(200, "lb"),
  28844. name: "Front",
  28845. image: {
  28846. source: "./media/characters/sabah/front.svg",
  28847. extra: 849 / 763,
  28848. bottom: 33.9 / 881
  28849. }
  28850. },
  28851. },
  28852. [
  28853. {
  28854. name: "Normal",
  28855. height: math.unit(5 + 10 / 12, "feet"),
  28856. default: true
  28857. },
  28858. ]
  28859. ))
  28860. characterMakers.push(() => makeCharacter(
  28861. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28862. {
  28863. front: {
  28864. height: math.unit(3 + 5 / 12, "feet"),
  28865. weight: math.unit(40, "kg"),
  28866. name: "Front",
  28867. image: {
  28868. source: "./media/characters/purple-flame/front.svg",
  28869. extra: 1577 / 1412,
  28870. bottom: 97 / 1694
  28871. }
  28872. },
  28873. frontDressed: {
  28874. height: math.unit(3 + 5 / 12, "feet"),
  28875. weight: math.unit(40, "kg"),
  28876. name: "Front (Dressed)",
  28877. image: {
  28878. source: "./media/characters/purple-flame/front-dressed.svg",
  28879. extra: 1577 / 1412,
  28880. bottom: 97 / 1694
  28881. }
  28882. },
  28883. headphones: {
  28884. height: math.unit(0.85, "feet"),
  28885. name: "Headphones",
  28886. image: {
  28887. source: "./media/characters/purple-flame/headphones.svg"
  28888. }
  28889. },
  28890. },
  28891. [
  28892. {
  28893. name: "Really Small",
  28894. height: math.unit(5, "cm")
  28895. },
  28896. {
  28897. name: "Micro",
  28898. height: math.unit(1 + 5 / 12, "feet")
  28899. },
  28900. {
  28901. name: "Normal",
  28902. height: math.unit(3 + 5 / 12, "feet"),
  28903. default: true
  28904. },
  28905. {
  28906. name: "Minimacro",
  28907. height: math.unit(125, "feet")
  28908. },
  28909. {
  28910. name: "Macro",
  28911. height: math.unit(0.5, "miles")
  28912. },
  28913. {
  28914. name: "Megamacro",
  28915. height: math.unit(50, "miles")
  28916. },
  28917. {
  28918. name: "Gigantic",
  28919. height: math.unit(750, "miles")
  28920. },
  28921. {
  28922. name: "Planetary",
  28923. height: math.unit(15000, "miles")
  28924. },
  28925. ]
  28926. ))
  28927. characterMakers.push(() => makeCharacter(
  28928. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28929. {
  28930. front: {
  28931. height: math.unit(14, "feet"),
  28932. weight: math.unit(959, "lb"),
  28933. name: "Front",
  28934. image: {
  28935. source: "./media/characters/arsenal/front.svg",
  28936. extra: 2357 / 2157,
  28937. bottom: 93 / 2458
  28938. }
  28939. },
  28940. },
  28941. [
  28942. {
  28943. name: "Normal",
  28944. height: math.unit(14, "feet"),
  28945. default: true
  28946. },
  28947. ]
  28948. ))
  28949. characterMakers.push(() => makeCharacter(
  28950. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28951. {
  28952. front: {
  28953. height: math.unit(6, "feet"),
  28954. weight: math.unit(150, "lb"),
  28955. name: "Front",
  28956. image: {
  28957. source: "./media/characters/adira/front.svg",
  28958. extra: 1078 / 1029,
  28959. bottom: 87 / 1166
  28960. }
  28961. },
  28962. },
  28963. [
  28964. {
  28965. name: "Micro",
  28966. height: math.unit(4, "inches"),
  28967. default: true
  28968. },
  28969. {
  28970. name: "Macro",
  28971. height: math.unit(50, "feet")
  28972. },
  28973. ]
  28974. ))
  28975. characterMakers.push(() => makeCharacter(
  28976. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28977. {
  28978. front: {
  28979. height: math.unit(16, "feet"),
  28980. weight: math.unit(1000, "lb"),
  28981. name: "Front",
  28982. image: {
  28983. source: "./media/characters/grim/front.svg",
  28984. extra: 622 / 614,
  28985. bottom: 18.1 / 642
  28986. }
  28987. },
  28988. back: {
  28989. height: math.unit(16, "feet"),
  28990. weight: math.unit(1000, "lb"),
  28991. name: "Back",
  28992. image: {
  28993. source: "./media/characters/grim/back.svg",
  28994. extra: 610.6 / 602,
  28995. bottom: 40.8 / 652
  28996. }
  28997. },
  28998. hunched: {
  28999. height: math.unit(9.75, "feet"),
  29000. weight: math.unit(1000, "lb"),
  29001. name: "Hunched",
  29002. image: {
  29003. source: "./media/characters/grim/hunched.svg",
  29004. extra: 304 / 297,
  29005. bottom: 35.4 / 394
  29006. }
  29007. },
  29008. },
  29009. [
  29010. {
  29011. name: "Normal",
  29012. height: math.unit(16, "feet"),
  29013. default: true
  29014. },
  29015. ]
  29016. ))
  29017. characterMakers.push(() => makeCharacter(
  29018. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29019. {
  29020. front: {
  29021. height: math.unit(2.3, "meters"),
  29022. weight: math.unit(300, "lb"),
  29023. name: "Front",
  29024. image: {
  29025. source: "./media/characters/sinja/front-sfw.svg",
  29026. extra: 1393 / 1294,
  29027. bottom: 70 / 1463
  29028. }
  29029. },
  29030. frontNsfw: {
  29031. height: math.unit(2.3, "meters"),
  29032. weight: math.unit(300, "lb"),
  29033. name: "Front (NSFW)",
  29034. image: {
  29035. source: "./media/characters/sinja/front-nsfw.svg",
  29036. extra: 1393 / 1294,
  29037. bottom: 70 / 1463
  29038. }
  29039. },
  29040. back: {
  29041. height: math.unit(2.3, "meters"),
  29042. weight: math.unit(300, "lb"),
  29043. name: "Back",
  29044. image: {
  29045. source: "./media/characters/sinja/back.svg",
  29046. extra: 1393 / 1294,
  29047. bottom: 70 / 1463
  29048. }
  29049. },
  29050. head: {
  29051. height: math.unit(1.771, "feet"),
  29052. name: "Head",
  29053. image: {
  29054. source: "./media/characters/sinja/head.svg"
  29055. }
  29056. },
  29057. slit: {
  29058. height: math.unit(0.8, "feet"),
  29059. name: "Slit",
  29060. image: {
  29061. source: "./media/characters/sinja/slit.svg"
  29062. }
  29063. },
  29064. },
  29065. [
  29066. {
  29067. name: "Normal",
  29068. height: math.unit(2.3, "meters")
  29069. },
  29070. {
  29071. name: "Macro",
  29072. height: math.unit(91, "meters"),
  29073. default: true
  29074. },
  29075. {
  29076. name: "Megamacro",
  29077. height: math.unit(91440, "meters")
  29078. },
  29079. {
  29080. name: "Gigamacro",
  29081. height: math.unit(60960000, "meters")
  29082. },
  29083. {
  29084. name: "Teramacro",
  29085. height: math.unit(9144000000, "meters")
  29086. },
  29087. ]
  29088. ))
  29089. characterMakers.push(() => makeCharacter(
  29090. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29091. {
  29092. front: {
  29093. height: math.unit(1.7, "meters"),
  29094. weight: math.unit(130, "lb"),
  29095. name: "Front",
  29096. image: {
  29097. source: "./media/characters/kyu/front.svg",
  29098. extra: 415 / 395,
  29099. bottom: 5 / 420
  29100. }
  29101. },
  29102. head: {
  29103. height: math.unit(1.75, "feet"),
  29104. name: "Head",
  29105. image: {
  29106. source: "./media/characters/kyu/head.svg"
  29107. }
  29108. },
  29109. foot: {
  29110. height: math.unit(0.81, "feet"),
  29111. name: "Foot",
  29112. image: {
  29113. source: "./media/characters/kyu/foot.svg"
  29114. }
  29115. },
  29116. },
  29117. [
  29118. {
  29119. name: "Normal",
  29120. height: math.unit(1.7, "meters")
  29121. },
  29122. {
  29123. name: "Macro",
  29124. height: math.unit(131, "feet"),
  29125. default: true
  29126. },
  29127. {
  29128. name: "Megamacro",
  29129. height: math.unit(91440, "meters")
  29130. },
  29131. {
  29132. name: "Gigamacro",
  29133. height: math.unit(60960000, "meters")
  29134. },
  29135. {
  29136. name: "Teramacro",
  29137. height: math.unit(9144000000, "meters")
  29138. },
  29139. ]
  29140. ))
  29141. characterMakers.push(() => makeCharacter(
  29142. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29143. {
  29144. front: {
  29145. height: math.unit(7 + 1 / 12, "feet"),
  29146. weight: math.unit(250, "lb"),
  29147. name: "Front",
  29148. image: {
  29149. source: "./media/characters/joey/front.svg",
  29150. extra: 1791 / 1537,
  29151. bottom: 28 / 1816
  29152. }
  29153. },
  29154. },
  29155. [
  29156. {
  29157. name: "Micro",
  29158. height: math.unit(3, "inches")
  29159. },
  29160. {
  29161. name: "Normal",
  29162. height: math.unit(7 + 1 / 12, "feet"),
  29163. default: true
  29164. },
  29165. ]
  29166. ))
  29167. characterMakers.push(() => makeCharacter(
  29168. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29169. {
  29170. front: {
  29171. height: math.unit(165, "cm"),
  29172. weight: math.unit(140, "lb"),
  29173. name: "Front",
  29174. image: {
  29175. source: "./media/characters/sam-evans/front.svg",
  29176. extra: 3417 / 3230,
  29177. bottom: 41.3 / 3417
  29178. }
  29179. },
  29180. frontSixTails: {
  29181. height: math.unit(165, "cm"),
  29182. weight: math.unit(140, "lb"),
  29183. name: "Front-six-tails",
  29184. image: {
  29185. source: "./media/characters/sam-evans/front-six-tails.svg",
  29186. extra: 3417 / 3230,
  29187. bottom: 41.3 / 3417
  29188. }
  29189. },
  29190. back: {
  29191. height: math.unit(165, "cm"),
  29192. weight: math.unit(140, "lb"),
  29193. name: "Back",
  29194. image: {
  29195. source: "./media/characters/sam-evans/back.svg",
  29196. extra: 3227 / 3032,
  29197. bottom: 6.8 / 3234
  29198. }
  29199. },
  29200. face: {
  29201. height: math.unit(0.68, "feet"),
  29202. name: "Face",
  29203. image: {
  29204. source: "./media/characters/sam-evans/face.svg"
  29205. }
  29206. },
  29207. },
  29208. [
  29209. {
  29210. name: "Normal",
  29211. height: math.unit(165, "cm"),
  29212. default: true
  29213. },
  29214. {
  29215. name: "Macro",
  29216. height: math.unit(100, "meters")
  29217. },
  29218. {
  29219. name: "Macro+",
  29220. height: math.unit(800, "meters")
  29221. },
  29222. {
  29223. name: "Macro++",
  29224. height: math.unit(3, "km")
  29225. },
  29226. {
  29227. name: "Macro+++",
  29228. height: math.unit(30, "km")
  29229. },
  29230. ]
  29231. ))
  29232. characterMakers.push(() => makeCharacter(
  29233. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29234. {
  29235. front: {
  29236. height: math.unit(10, "feet"),
  29237. weight: math.unit(750, "lb"),
  29238. name: "Front",
  29239. image: {
  29240. source: "./media/characters/juliet-a/front.svg",
  29241. extra: 1766 / 1720,
  29242. bottom: 43 / 1809
  29243. }
  29244. },
  29245. back: {
  29246. height: math.unit(10, "feet"),
  29247. weight: math.unit(750, "lb"),
  29248. name: "Back",
  29249. image: {
  29250. source: "./media/characters/juliet-a/back.svg",
  29251. extra: 1781 / 1734,
  29252. bottom: 35 / 1810,
  29253. }
  29254. },
  29255. },
  29256. [
  29257. {
  29258. name: "Normal",
  29259. height: math.unit(10, "feet"),
  29260. default: true
  29261. },
  29262. {
  29263. name: "Dragon Form",
  29264. height: math.unit(250, "feet")
  29265. },
  29266. {
  29267. name: "Macro",
  29268. height: math.unit(1000, "feet")
  29269. },
  29270. {
  29271. name: "Megamacro",
  29272. height: math.unit(10000, "feet")
  29273. }
  29274. ]
  29275. ))
  29276. characterMakers.push(() => makeCharacter(
  29277. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29278. {
  29279. regular: {
  29280. height: math.unit(7 + 3 / 12, "feet"),
  29281. weight: math.unit(260, "lb"),
  29282. name: "Regular",
  29283. image: {
  29284. source: "./media/characters/wild/regular.svg",
  29285. extra: 97.45 / 92,
  29286. bottom: 6.8 / 104.3
  29287. }
  29288. },
  29289. biggums: {
  29290. height: math.unit(8 + 6 / 12, "feet"),
  29291. weight: math.unit(425, "lb"),
  29292. name: "Biggums",
  29293. image: {
  29294. source: "./media/characters/wild/biggums.svg",
  29295. extra: 97.45 / 92,
  29296. bottom: 7.5 / 132.34
  29297. }
  29298. },
  29299. mawRegular: {
  29300. height: math.unit(1.24, "feet"),
  29301. name: "Maw (Regular)",
  29302. image: {
  29303. source: "./media/characters/wild/maw.svg"
  29304. }
  29305. },
  29306. mawBiggums: {
  29307. height: math.unit(1.47, "feet"),
  29308. name: "Maw (Biggums)",
  29309. image: {
  29310. source: "./media/characters/wild/maw.svg"
  29311. }
  29312. },
  29313. },
  29314. [
  29315. {
  29316. name: "Normal",
  29317. height: math.unit(7 + 3 / 12, "feet"),
  29318. default: true
  29319. },
  29320. ]
  29321. ))
  29322. characterMakers.push(() => makeCharacter(
  29323. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29324. {
  29325. front: {
  29326. height: math.unit(2.5, "meters"),
  29327. weight: math.unit(200, "kg"),
  29328. name: "Front",
  29329. image: {
  29330. source: "./media/characters/vidar/front.svg",
  29331. extra: 2994 / 2795,
  29332. bottom: 56 / 3061
  29333. }
  29334. },
  29335. back: {
  29336. height: math.unit(2.5, "meters"),
  29337. weight: math.unit(200, "kg"),
  29338. name: "Back",
  29339. image: {
  29340. source: "./media/characters/vidar/back.svg",
  29341. extra: 3131 / 2928,
  29342. bottom: 13.5 / 3141.5
  29343. }
  29344. },
  29345. feral: {
  29346. height: math.unit(2.5, "meters"),
  29347. weight: math.unit(2000, "kg"),
  29348. name: "Feral",
  29349. image: {
  29350. source: "./media/characters/vidar/feral.svg",
  29351. extra: 2790 / 1765,
  29352. bottom: 6 / 2796
  29353. }
  29354. },
  29355. },
  29356. [
  29357. {
  29358. name: "Normal",
  29359. height: math.unit(2.5, "meters"),
  29360. default: true
  29361. },
  29362. {
  29363. name: "Macro",
  29364. height: math.unit(100, "meters")
  29365. },
  29366. ]
  29367. ))
  29368. characterMakers.push(() => makeCharacter(
  29369. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29370. {
  29371. front: {
  29372. height: math.unit(5 + 9 / 12, "feet"),
  29373. weight: math.unit(120, "lb"),
  29374. name: "Front",
  29375. image: {
  29376. source: "./media/characters/ash/front.svg",
  29377. extra: 2189 / 1961,
  29378. bottom: 5.2 / 2194
  29379. }
  29380. },
  29381. },
  29382. [
  29383. {
  29384. name: "Normal",
  29385. height: math.unit(5 + 9 / 12, "feet"),
  29386. default: true
  29387. },
  29388. ]
  29389. ))
  29390. characterMakers.push(() => makeCharacter(
  29391. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29392. {
  29393. front: {
  29394. height: math.unit(9, "feet"),
  29395. weight: math.unit(10000, "lb"),
  29396. name: "Front",
  29397. image: {
  29398. source: "./media/characters/gygabite/front.svg",
  29399. bottom: 31.7 / 537.8,
  29400. extra: 505 / 370
  29401. }
  29402. },
  29403. },
  29404. [
  29405. {
  29406. name: "Normal",
  29407. height: math.unit(9, "feet"),
  29408. default: true
  29409. },
  29410. ]
  29411. ))
  29412. characterMakers.push(() => makeCharacter(
  29413. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29414. {
  29415. front: {
  29416. height: math.unit(12, "feet"),
  29417. weight: math.unit(4000, "lb"),
  29418. name: "Front",
  29419. image: {
  29420. source: "./media/characters/p0tat0/front.svg",
  29421. extra: 1065 / 921,
  29422. bottom: 55.7 / 1121.25
  29423. }
  29424. },
  29425. },
  29426. [
  29427. {
  29428. name: "Normal",
  29429. height: math.unit(12, "feet"),
  29430. default: true
  29431. },
  29432. ]
  29433. ))
  29434. characterMakers.push(() => makeCharacter(
  29435. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29436. {
  29437. side: {
  29438. height: math.unit(6.5, "feet"),
  29439. weight: math.unit(800, "lb"),
  29440. name: "Side",
  29441. image: {
  29442. source: "./media/characters/dusk/side.svg",
  29443. extra: 615 / 373,
  29444. bottom: 53 / 664
  29445. }
  29446. },
  29447. sitting: {
  29448. height: math.unit(7, "feet"),
  29449. weight: math.unit(800, "lb"),
  29450. name: "Sitting",
  29451. image: {
  29452. source: "./media/characters/dusk/sitting.svg",
  29453. extra: 753 / 425,
  29454. bottom: 33 / 774
  29455. }
  29456. },
  29457. head: {
  29458. height: math.unit(6.1, "feet"),
  29459. name: "Head",
  29460. image: {
  29461. source: "./media/characters/dusk/head.svg"
  29462. }
  29463. },
  29464. },
  29465. [
  29466. {
  29467. name: "Normal",
  29468. height: math.unit(7, "feet"),
  29469. default: true
  29470. },
  29471. ]
  29472. ))
  29473. characterMakers.push(() => makeCharacter(
  29474. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29475. {
  29476. front: {
  29477. height: math.unit(15, "feet"),
  29478. weight: math.unit(7000, "lb"),
  29479. name: "Front",
  29480. image: {
  29481. source: "./media/characters/jay-direwolf/front.svg",
  29482. extra: 1810 / 1732,
  29483. bottom: 66 / 1892
  29484. }
  29485. },
  29486. },
  29487. [
  29488. {
  29489. name: "Normal",
  29490. height: math.unit(15, "feet"),
  29491. default: true
  29492. },
  29493. ]
  29494. ))
  29495. characterMakers.push(() => makeCharacter(
  29496. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29497. {
  29498. front: {
  29499. height: math.unit(4 + 9 / 12, "feet"),
  29500. weight: math.unit(130, "lb"),
  29501. name: "Front",
  29502. image: {
  29503. source: "./media/characters/anchovie/front.svg",
  29504. extra: 382 / 350,
  29505. bottom: 25 / 409
  29506. }
  29507. },
  29508. back: {
  29509. height: math.unit(4 + 9 / 12, "feet"),
  29510. weight: math.unit(130, "lb"),
  29511. name: "Back",
  29512. image: {
  29513. source: "./media/characters/anchovie/back.svg",
  29514. extra: 385 / 352,
  29515. bottom: 16.6 / 402
  29516. }
  29517. },
  29518. frontDressed: {
  29519. height: math.unit(4 + 9 / 12, "feet"),
  29520. weight: math.unit(130, "lb"),
  29521. name: "Front (Dressed)",
  29522. image: {
  29523. source: "./media/characters/anchovie/front-dressed.svg",
  29524. extra: 382 / 350,
  29525. bottom: 25 / 409
  29526. }
  29527. },
  29528. backDressed: {
  29529. height: math.unit(4 + 9 / 12, "feet"),
  29530. weight: math.unit(130, "lb"),
  29531. name: "Back (Dressed)",
  29532. image: {
  29533. source: "./media/characters/anchovie/back-dressed.svg",
  29534. extra: 385 / 352,
  29535. bottom: 16.6 / 402
  29536. }
  29537. },
  29538. },
  29539. [
  29540. {
  29541. name: "Micro",
  29542. height: math.unit(6.4, "inches")
  29543. },
  29544. {
  29545. name: "Normal",
  29546. height: math.unit(4 + 9 / 12, "feet"),
  29547. default: true
  29548. },
  29549. ]
  29550. ))
  29551. characterMakers.push(() => makeCharacter(
  29552. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29553. {
  29554. front: {
  29555. height: math.unit(2, "meters"),
  29556. weight: math.unit(180, "lb"),
  29557. name: "Front",
  29558. image: {
  29559. source: "./media/characters/acidrenamon/front.svg",
  29560. extra: 987 / 890,
  29561. bottom: 22.8 / 1009
  29562. }
  29563. },
  29564. back: {
  29565. height: math.unit(2, "meters"),
  29566. weight: math.unit(180, "lb"),
  29567. name: "Back",
  29568. image: {
  29569. source: "./media/characters/acidrenamon/back.svg",
  29570. extra: 983 / 891,
  29571. bottom: 8.4 / 992
  29572. }
  29573. },
  29574. head: {
  29575. height: math.unit(1.92, "feet"),
  29576. name: "Head",
  29577. image: {
  29578. source: "./media/characters/acidrenamon/head.svg"
  29579. }
  29580. },
  29581. rump: {
  29582. height: math.unit(1.72, "feet"),
  29583. name: "Rump",
  29584. image: {
  29585. source: "./media/characters/acidrenamon/rump.svg"
  29586. }
  29587. },
  29588. tail: {
  29589. height: math.unit(4.2, "feet"),
  29590. name: "Tail",
  29591. image: {
  29592. source: "./media/characters/acidrenamon/tail.svg"
  29593. }
  29594. },
  29595. },
  29596. [
  29597. {
  29598. name: "Normal",
  29599. height: math.unit(2, "meters"),
  29600. default: true
  29601. },
  29602. {
  29603. name: "Minimacro",
  29604. height: math.unit(7, "meters")
  29605. },
  29606. {
  29607. name: "Macro",
  29608. height: math.unit(200, "meters")
  29609. },
  29610. {
  29611. name: "Gigamacro",
  29612. height: math.unit(0.2, "earths")
  29613. },
  29614. ]
  29615. ))
  29616. characterMakers.push(() => makeCharacter(
  29617. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29618. {
  29619. front: {
  29620. height: math.unit(152, "feet"),
  29621. name: "Front",
  29622. image: {
  29623. source: "./media/characters/kenzie-lee/front.svg",
  29624. extra: 1869/1774,
  29625. bottom: 128/1997
  29626. }
  29627. },
  29628. side: {
  29629. height: math.unit(86, "feet"),
  29630. name: "Side",
  29631. image: {
  29632. source: "./media/characters/kenzie-lee/side.svg",
  29633. extra: 930/815,
  29634. bottom: 177/1107
  29635. }
  29636. },
  29637. paw: {
  29638. height: math.unit(15, "feet"),
  29639. name: "Paw",
  29640. image: {
  29641. source: "./media/characters/kenzie-lee/paw.svg"
  29642. }
  29643. },
  29644. },
  29645. [
  29646. {
  29647. name: "Kenzie Flea",
  29648. height: math.unit(2, "mm"),
  29649. default: true
  29650. },
  29651. {
  29652. name: "Micro",
  29653. height: math.unit(2, "inches")
  29654. },
  29655. {
  29656. name: "Normal",
  29657. height: math.unit(152, "feet")
  29658. },
  29659. {
  29660. name: "Megamacro",
  29661. height: math.unit(7, "miles")
  29662. },
  29663. {
  29664. name: "Gigamacro",
  29665. height: math.unit(8000, "miles")
  29666. },
  29667. ]
  29668. ))
  29669. characterMakers.push(() => makeCharacter(
  29670. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29671. {
  29672. front: {
  29673. height: math.unit(6, "feet"),
  29674. name: "Front",
  29675. image: {
  29676. source: "./media/characters/withers/front.svg",
  29677. extra: 1935/1760,
  29678. bottom: 72/2007
  29679. }
  29680. },
  29681. back: {
  29682. height: math.unit(6, "feet"),
  29683. name: "Back",
  29684. image: {
  29685. source: "./media/characters/withers/back.svg",
  29686. extra: 1944/1792,
  29687. bottom: 12/1956
  29688. }
  29689. },
  29690. dressed: {
  29691. height: math.unit(6, "feet"),
  29692. name: "Dressed",
  29693. image: {
  29694. source: "./media/characters/withers/dressed.svg",
  29695. extra: 1937/1765,
  29696. bottom: 73/2010
  29697. }
  29698. },
  29699. phase1: {
  29700. height: math.unit(1.1, "feet"),
  29701. name: "Phase 1",
  29702. image: {
  29703. source: "./media/characters/withers/phase-1.svg",
  29704. extra: 1885/1232,
  29705. bottom: 0/1885
  29706. }
  29707. },
  29708. phase2: {
  29709. height: math.unit(1.05, "feet"),
  29710. name: "Phase 2",
  29711. image: {
  29712. source: "./media/characters/withers/phase-2.svg",
  29713. extra: 1792/1090,
  29714. bottom: 0/1792
  29715. }
  29716. },
  29717. partyWipe: {
  29718. height: math.unit(1.1, "feet"),
  29719. name: "Party Wipe",
  29720. image: {
  29721. source: "./media/characters/withers/party-wipe.svg",
  29722. extra: 1864/1207,
  29723. bottom: 0/1864
  29724. }
  29725. },
  29726. },
  29727. [
  29728. {
  29729. name: "Macro",
  29730. height: math.unit(167, "feet"),
  29731. default: true
  29732. },
  29733. {
  29734. name: "Megamacro",
  29735. height: math.unit(15, "miles")
  29736. }
  29737. ]
  29738. ))
  29739. characterMakers.push(() => makeCharacter(
  29740. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29741. {
  29742. front: {
  29743. height: math.unit(6 + 7 / 12, "feet"),
  29744. weight: math.unit(250, "lb"),
  29745. name: "Front",
  29746. image: {
  29747. source: "./media/characters/nemoskii/front.svg",
  29748. extra: 2270 / 1734,
  29749. bottom: 86 / 2354
  29750. }
  29751. },
  29752. back: {
  29753. height: math.unit(6 + 7 / 12, "feet"),
  29754. weight: math.unit(250, "lb"),
  29755. name: "Back",
  29756. image: {
  29757. source: "./media/characters/nemoskii/back.svg",
  29758. extra: 1845 / 1788,
  29759. bottom: 10.5 / 1852
  29760. }
  29761. },
  29762. head: {
  29763. height: math.unit(1.31, "feet"),
  29764. name: "Head",
  29765. image: {
  29766. source: "./media/characters/nemoskii/head.svg"
  29767. }
  29768. },
  29769. },
  29770. [
  29771. {
  29772. name: "Micro",
  29773. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29774. },
  29775. {
  29776. name: "Normal",
  29777. height: math.unit(6 + 7 / 12, "feet"),
  29778. default: true
  29779. },
  29780. {
  29781. name: "Macro",
  29782. height: math.unit((6 + 7 / 12) * 150, "feet")
  29783. },
  29784. {
  29785. name: "Macro+",
  29786. height: math.unit((6 + 7 / 12) * 500, "feet")
  29787. },
  29788. {
  29789. name: "Megamacro",
  29790. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29791. },
  29792. ]
  29793. ))
  29794. characterMakers.push(() => makeCharacter(
  29795. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29796. {
  29797. front: {
  29798. height: math.unit(1, "mile"),
  29799. weight: math.unit(265261.9, "lb"),
  29800. name: "Front",
  29801. image: {
  29802. source: "./media/characters/shui/front.svg",
  29803. extra: 1633 / 1564,
  29804. bottom: 91.5 / 1726
  29805. }
  29806. },
  29807. },
  29808. [
  29809. {
  29810. name: "Macro",
  29811. height: math.unit(1, "mile"),
  29812. default: true
  29813. },
  29814. ]
  29815. ))
  29816. characterMakers.push(() => makeCharacter(
  29817. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29818. {
  29819. front: {
  29820. height: math.unit(12 + 6 / 12, "feet"),
  29821. weight: math.unit(1342, "lb"),
  29822. name: "Front",
  29823. image: {
  29824. source: "./media/characters/arokh-takakura/front.svg",
  29825. extra: 1089 / 1043,
  29826. bottom: 77.4 / 1176.7
  29827. }
  29828. },
  29829. back: {
  29830. height: math.unit(12 + 6 / 12, "feet"),
  29831. weight: math.unit(1342, "lb"),
  29832. name: "Back",
  29833. image: {
  29834. source: "./media/characters/arokh-takakura/back.svg",
  29835. extra: 1046 / 1019,
  29836. bottom: 102 / 1150
  29837. }
  29838. },
  29839. },
  29840. [
  29841. {
  29842. name: "Big",
  29843. height: math.unit(12 + 6 / 12, "feet"),
  29844. default: true
  29845. },
  29846. ]
  29847. ))
  29848. characterMakers.push(() => makeCharacter(
  29849. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29850. {
  29851. front: {
  29852. height: math.unit(5 + 6 / 12, "feet"),
  29853. weight: math.unit(150, "lb"),
  29854. name: "Front",
  29855. image: {
  29856. source: "./media/characters/theo/front.svg",
  29857. extra: 1184 / 1131,
  29858. bottom: 7.4 / 1191
  29859. }
  29860. },
  29861. },
  29862. [
  29863. {
  29864. name: "Micro",
  29865. height: math.unit(5, "inches")
  29866. },
  29867. {
  29868. name: "Normal",
  29869. height: math.unit(5 + 6 / 12, "feet"),
  29870. default: true
  29871. },
  29872. ]
  29873. ))
  29874. characterMakers.push(() => makeCharacter(
  29875. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29876. {
  29877. front: {
  29878. height: math.unit(5 + 9 / 12, "feet"),
  29879. weight: math.unit(130, "lb"),
  29880. name: "Front",
  29881. image: {
  29882. source: "./media/characters/cecelia-swift/front.svg",
  29883. extra: 502 / 484,
  29884. bottom: 23 / 523
  29885. }
  29886. },
  29887. back: {
  29888. height: math.unit(5 + 9 / 12, "feet"),
  29889. weight: math.unit(130, "lb"),
  29890. name: "Back",
  29891. image: {
  29892. source: "./media/characters/cecelia-swift/back.svg",
  29893. extra: 499 / 485,
  29894. bottom: 12 / 511
  29895. }
  29896. },
  29897. head: {
  29898. height: math.unit(0.90, "feet"),
  29899. name: "Head",
  29900. image: {
  29901. source: "./media/characters/cecelia-swift/head.svg"
  29902. }
  29903. },
  29904. rump: {
  29905. height: math.unit(1.75, "feet"),
  29906. name: "Rump",
  29907. image: {
  29908. source: "./media/characters/cecelia-swift/rump.svg"
  29909. }
  29910. },
  29911. },
  29912. [
  29913. {
  29914. name: "Normal",
  29915. height: math.unit(5 + 9 / 12, "feet"),
  29916. default: true
  29917. },
  29918. {
  29919. name: "Big",
  29920. height: math.unit(50, "feet")
  29921. },
  29922. {
  29923. name: "Macro",
  29924. height: math.unit(100, "feet")
  29925. },
  29926. {
  29927. name: "Macro+",
  29928. height: math.unit(500, "feet")
  29929. },
  29930. {
  29931. name: "Macro++",
  29932. height: math.unit(1000, "feet")
  29933. },
  29934. ]
  29935. ))
  29936. characterMakers.push(() => makeCharacter(
  29937. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29938. {
  29939. front: {
  29940. height: math.unit(6, "feet"),
  29941. weight: math.unit(150, "lb"),
  29942. name: "Front",
  29943. image: {
  29944. source: "./media/characters/kaunan/front.svg",
  29945. extra: 2890 / 2523,
  29946. bottom: 49 / 2939
  29947. }
  29948. },
  29949. },
  29950. [
  29951. {
  29952. name: "Macro",
  29953. height: math.unit(150, "feet"),
  29954. default: true
  29955. },
  29956. ]
  29957. ))
  29958. characterMakers.push(() => makeCharacter(
  29959. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29960. {
  29961. dressed: {
  29962. height: math.unit(175, "cm"),
  29963. weight: math.unit(60, "kg"),
  29964. name: "Dressed",
  29965. image: {
  29966. source: "./media/characters/fei/dressed.svg",
  29967. extra: 1402/1278,
  29968. bottom: 27/1429
  29969. }
  29970. },
  29971. nude: {
  29972. height: math.unit(175, "cm"),
  29973. weight: math.unit(60, "kg"),
  29974. name: "Nude",
  29975. image: {
  29976. source: "./media/characters/fei/nude.svg",
  29977. extra: 1402/1278,
  29978. bottom: 27/1429
  29979. }
  29980. },
  29981. heels: {
  29982. height: math.unit(0.466, "feet"),
  29983. name: "Heels",
  29984. image: {
  29985. source: "./media/characters/fei/heels.svg",
  29986. extra: 156/152,
  29987. bottom: 28/184
  29988. }
  29989. },
  29990. },
  29991. [
  29992. {
  29993. name: "Mortal",
  29994. height: math.unit(175, "cm")
  29995. },
  29996. {
  29997. name: "Normal",
  29998. height: math.unit(3500, "m")
  29999. },
  30000. {
  30001. name: "Stroll",
  30002. height: math.unit(18.4, "km"),
  30003. default: true
  30004. },
  30005. {
  30006. name: "Showoff",
  30007. height: math.unit(175, "km")
  30008. },
  30009. ]
  30010. ))
  30011. characterMakers.push(() => makeCharacter(
  30012. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30013. {
  30014. front: {
  30015. height: math.unit(7, "feet"),
  30016. weight: math.unit(1000, "kg"),
  30017. name: "Front",
  30018. image: {
  30019. source: "./media/characters/edrax/front.svg",
  30020. extra: 2838 / 2550,
  30021. bottom: 130 / 2968
  30022. }
  30023. },
  30024. },
  30025. [
  30026. {
  30027. name: "Small",
  30028. height: math.unit(7, "feet")
  30029. },
  30030. {
  30031. name: "Normal",
  30032. height: math.unit(1500, "meters")
  30033. },
  30034. {
  30035. name: "Mega",
  30036. height: math.unit(12000000, "km"),
  30037. default: true
  30038. },
  30039. {
  30040. name: "Megamacro",
  30041. height: math.unit(10600000, "lightyears")
  30042. },
  30043. {
  30044. name: "Hypermacro",
  30045. height: math.unit(256, "yottameters")
  30046. },
  30047. ]
  30048. ))
  30049. characterMakers.push(() => makeCharacter(
  30050. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30051. {
  30052. front: {
  30053. height: math.unit(10, "feet"),
  30054. weight: math.unit(750, "lb"),
  30055. name: "Front",
  30056. image: {
  30057. source: "./media/characters/clove/front.svg",
  30058. extra: 1918/1751,
  30059. bottom: 52/1970
  30060. }
  30061. },
  30062. back: {
  30063. height: math.unit(10, "feet"),
  30064. weight: math.unit(750, "lb"),
  30065. name: "Back",
  30066. image: {
  30067. source: "./media/characters/clove/back.svg",
  30068. extra: 1912/1747,
  30069. bottom: 50/1962
  30070. }
  30071. },
  30072. },
  30073. [
  30074. {
  30075. name: "Normal",
  30076. height: math.unit(10, "feet"),
  30077. default: true
  30078. },
  30079. ]
  30080. ))
  30081. characterMakers.push(() => makeCharacter(
  30082. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30083. {
  30084. front: {
  30085. height: math.unit(4, "feet"),
  30086. weight: math.unit(50, "lb"),
  30087. name: "Front",
  30088. image: {
  30089. source: "./media/characters/alex-rabbit/front.svg",
  30090. extra: 507 / 458,
  30091. bottom: 18.5 / 527
  30092. }
  30093. },
  30094. back: {
  30095. height: math.unit(4, "feet"),
  30096. weight: math.unit(50, "lb"),
  30097. name: "Back",
  30098. image: {
  30099. source: "./media/characters/alex-rabbit/back.svg",
  30100. extra: 502 / 460,
  30101. bottom: 18.9 / 521
  30102. }
  30103. },
  30104. },
  30105. [
  30106. {
  30107. name: "Normal",
  30108. height: math.unit(4, "feet"),
  30109. default: true
  30110. },
  30111. ]
  30112. ))
  30113. characterMakers.push(() => makeCharacter(
  30114. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30115. {
  30116. front: {
  30117. height: math.unit(1 + 3 / 12, "feet"),
  30118. weight: math.unit(80, "lb"),
  30119. name: "Front",
  30120. image: {
  30121. source: "./media/characters/zander-rose/front.svg",
  30122. extra: 916 / 797,
  30123. bottom: 17 / 933
  30124. }
  30125. },
  30126. back: {
  30127. height: math.unit(1 + 3 / 12, "feet"),
  30128. weight: math.unit(80, "lb"),
  30129. name: "Back",
  30130. image: {
  30131. source: "./media/characters/zander-rose/back.svg",
  30132. extra: 903 / 779,
  30133. bottom: 31 / 934
  30134. }
  30135. },
  30136. },
  30137. [
  30138. {
  30139. name: "Normal",
  30140. height: math.unit(1 + 3 / 12, "feet"),
  30141. default: true
  30142. },
  30143. ]
  30144. ))
  30145. characterMakers.push(() => makeCharacter(
  30146. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30147. {
  30148. anthro: {
  30149. height: math.unit(6, "feet"),
  30150. weight: math.unit(150, "lb"),
  30151. name: "Anthro",
  30152. image: {
  30153. source: "./media/characters/razz/anthro.svg",
  30154. extra: 1437 / 1343,
  30155. bottom: 48 / 1485
  30156. }
  30157. },
  30158. feral: {
  30159. height: math.unit(6, "feet"),
  30160. weight: math.unit(150, "lb"),
  30161. name: "Feral",
  30162. image: {
  30163. source: "./media/characters/razz/feral.svg",
  30164. extra: 2569 / 1385,
  30165. bottom: 95 / 2664
  30166. }
  30167. },
  30168. },
  30169. [
  30170. {
  30171. name: "Normal",
  30172. height: math.unit(6, "feet"),
  30173. default: true
  30174. },
  30175. ]
  30176. ))
  30177. characterMakers.push(() => makeCharacter(
  30178. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30179. {
  30180. front: {
  30181. height: math.unit(9 + 4 / 12, "feet"),
  30182. weight: math.unit(500, "lb"),
  30183. name: "Front",
  30184. image: {
  30185. source: "./media/characters/morrigan/front.svg",
  30186. extra: 2707 / 2579,
  30187. bottom: 156 / 2863
  30188. }
  30189. },
  30190. },
  30191. [
  30192. {
  30193. name: "Normal",
  30194. height: math.unit(9 + 4 / 12, "feet"),
  30195. default: true
  30196. },
  30197. ]
  30198. ))
  30199. characterMakers.push(() => makeCharacter(
  30200. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30201. {
  30202. front: {
  30203. height: math.unit(5, "stories"),
  30204. weight: math.unit(4000, "lb"),
  30205. name: "Front",
  30206. image: {
  30207. source: "./media/characters/jenene/front.svg",
  30208. extra: 1780 / 1710,
  30209. bottom: 57 / 1837
  30210. }
  30211. },
  30212. },
  30213. [
  30214. {
  30215. name: "Normal",
  30216. height: math.unit(5, "stories"),
  30217. default: true
  30218. },
  30219. ]
  30220. ))
  30221. characterMakers.push(() => makeCharacter(
  30222. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30223. {
  30224. taurSfw: {
  30225. height: math.unit(10, "meters"),
  30226. weight: math.unit(17500, "kg"),
  30227. name: "Taur",
  30228. image: {
  30229. source: "./media/characters/faey/taur-sfw.svg",
  30230. extra: 1200 / 968,
  30231. bottom: 41 / 1241
  30232. }
  30233. },
  30234. chestmaw: {
  30235. height: math.unit(2.01, "meters"),
  30236. name: "Chestmaw",
  30237. image: {
  30238. source: "./media/characters/faey/chestmaw.svg"
  30239. }
  30240. },
  30241. foot: {
  30242. height: math.unit(2.43, "meters"),
  30243. name: "Foot",
  30244. image: {
  30245. source: "./media/characters/faey/foot.svg"
  30246. }
  30247. },
  30248. jaws: {
  30249. height: math.unit(1.66, "meters"),
  30250. name: "Jaws",
  30251. image: {
  30252. source: "./media/characters/faey/jaws.svg"
  30253. }
  30254. },
  30255. tongues: {
  30256. height: math.unit(2.01, "meters"),
  30257. name: "Tongues",
  30258. image: {
  30259. source: "./media/characters/faey/tongues.svg"
  30260. }
  30261. },
  30262. },
  30263. [
  30264. {
  30265. name: "Small",
  30266. height: math.unit(10, "meters"),
  30267. default: true
  30268. },
  30269. {
  30270. name: "Big",
  30271. height: math.unit(500000, "km")
  30272. },
  30273. ]
  30274. ))
  30275. characterMakers.push(() => makeCharacter(
  30276. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30277. {
  30278. front: {
  30279. height: math.unit(7, "feet"),
  30280. weight: math.unit(275, "lb"),
  30281. name: "Front",
  30282. image: {
  30283. source: "./media/characters/roku/front.svg",
  30284. extra: 903 / 878,
  30285. bottom: 37 / 940
  30286. }
  30287. },
  30288. },
  30289. [
  30290. {
  30291. name: "Normal",
  30292. height: math.unit(7, "feet"),
  30293. default: true
  30294. },
  30295. {
  30296. name: "Macro",
  30297. height: math.unit(500, "feet")
  30298. },
  30299. {
  30300. name: "Megamacro",
  30301. height: math.unit(200, "miles")
  30302. },
  30303. ]
  30304. ))
  30305. characterMakers.push(() => makeCharacter(
  30306. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30307. {
  30308. front: {
  30309. height: math.unit(6 + 2 / 12, "feet"),
  30310. weight: math.unit(150, "lb"),
  30311. name: "Front",
  30312. image: {
  30313. source: "./media/characters/lira/front.svg",
  30314. extra: 1727 / 1605,
  30315. bottom: 26 / 1753
  30316. }
  30317. },
  30318. back: {
  30319. height: math.unit(6 + 2 / 12, "feet"),
  30320. weight: math.unit(150, "lb"),
  30321. name: "Back",
  30322. image: {
  30323. source: "./media/characters/lira/back.svg",
  30324. extra: 1713/1621,
  30325. bottom: 20/1733
  30326. }
  30327. },
  30328. hand: {
  30329. height: math.unit(0.75, "feet"),
  30330. name: "Hand",
  30331. image: {
  30332. source: "./media/characters/lira/hand.svg"
  30333. }
  30334. },
  30335. maw: {
  30336. height: math.unit(0.65, "feet"),
  30337. name: "Maw",
  30338. image: {
  30339. source: "./media/characters/lira/maw.svg"
  30340. }
  30341. },
  30342. pawDigi: {
  30343. height: math.unit(1.6, "feet"),
  30344. name: "Paw Digi",
  30345. image: {
  30346. source: "./media/characters/lira/paw-digi.svg"
  30347. }
  30348. },
  30349. pawPlanti: {
  30350. height: math.unit(1.4, "feet"),
  30351. name: "Paw Planti",
  30352. image: {
  30353. source: "./media/characters/lira/paw-planti.svg"
  30354. }
  30355. },
  30356. },
  30357. [
  30358. {
  30359. name: "Normal",
  30360. height: math.unit(6 + 2 / 12, "feet"),
  30361. default: true
  30362. },
  30363. {
  30364. name: "Macro",
  30365. height: math.unit(100, "feet")
  30366. },
  30367. {
  30368. name: "Macro²",
  30369. height: math.unit(1600, "feet")
  30370. },
  30371. {
  30372. name: "Planetary",
  30373. height: math.unit(20, "earths")
  30374. },
  30375. ]
  30376. ))
  30377. characterMakers.push(() => makeCharacter(
  30378. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30379. {
  30380. front: {
  30381. height: math.unit(6, "feet"),
  30382. weight: math.unit(150, "lb"),
  30383. name: "Front",
  30384. image: {
  30385. source: "./media/characters/hadjet/front.svg",
  30386. extra: 1480 / 1346,
  30387. bottom: 26 / 1506
  30388. }
  30389. },
  30390. frontNsfw: {
  30391. height: math.unit(6, "feet"),
  30392. weight: math.unit(150, "lb"),
  30393. name: "Front (NSFW)",
  30394. image: {
  30395. source: "./media/characters/hadjet/front-nsfw.svg",
  30396. extra: 1440 / 1358,
  30397. bottom: 52 / 1492
  30398. }
  30399. },
  30400. },
  30401. [
  30402. {
  30403. name: "Macro",
  30404. height: math.unit(10, "stories"),
  30405. default: true
  30406. },
  30407. {
  30408. name: "Megamacro",
  30409. height: math.unit(1.5, "miles")
  30410. },
  30411. {
  30412. name: "Megamacro+",
  30413. height: math.unit(5, "miles")
  30414. },
  30415. ]
  30416. ))
  30417. characterMakers.push(() => makeCharacter(
  30418. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30419. {
  30420. side: {
  30421. height: math.unit(106, "feet"),
  30422. weight: math.unit(500, "tonnes"),
  30423. name: "Side",
  30424. image: {
  30425. source: "./media/characters/kodran/side.svg",
  30426. extra: 553 / 480,
  30427. bottom: 33 / 586
  30428. }
  30429. },
  30430. front: {
  30431. height: math.unit(132, "feet"),
  30432. weight: math.unit(500, "tonnes"),
  30433. name: "Front",
  30434. image: {
  30435. source: "./media/characters/kodran/front.svg",
  30436. extra: 667 / 643,
  30437. bottom: 42 / 709
  30438. }
  30439. },
  30440. flying: {
  30441. height: math.unit(350, "feet"),
  30442. weight: math.unit(500, "tonnes"),
  30443. name: "Flying",
  30444. image: {
  30445. source: "./media/characters/kodran/flying.svg"
  30446. }
  30447. },
  30448. foot: {
  30449. height: math.unit(33, "feet"),
  30450. name: "Foot",
  30451. image: {
  30452. source: "./media/characters/kodran/foot.svg"
  30453. }
  30454. },
  30455. footFront: {
  30456. height: math.unit(19, "feet"),
  30457. name: "Foot (Front)",
  30458. image: {
  30459. source: "./media/characters/kodran/foot-front.svg",
  30460. extra: 261 / 261,
  30461. bottom: 91 / 352
  30462. }
  30463. },
  30464. headFront: {
  30465. height: math.unit(53, "feet"),
  30466. name: "Head (Front)",
  30467. image: {
  30468. source: "./media/characters/kodran/head-front.svg"
  30469. }
  30470. },
  30471. headSide: {
  30472. height: math.unit(65, "feet"),
  30473. name: "Head (Side)",
  30474. image: {
  30475. source: "./media/characters/kodran/head-side.svg"
  30476. }
  30477. },
  30478. throat: {
  30479. height: math.unit(79, "feet"),
  30480. name: "Throat",
  30481. image: {
  30482. source: "./media/characters/kodran/throat.svg"
  30483. }
  30484. },
  30485. },
  30486. [
  30487. {
  30488. name: "Large",
  30489. height: math.unit(106, "feet"),
  30490. default: true
  30491. },
  30492. ]
  30493. ))
  30494. characterMakers.push(() => makeCharacter(
  30495. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30496. {
  30497. side: {
  30498. height: math.unit(11, "feet"),
  30499. weight: math.unit(150, "lb"),
  30500. name: "Side",
  30501. image: {
  30502. source: "./media/characters/pyxaron/side.svg",
  30503. extra: 305 / 195,
  30504. bottom: 17 / 322
  30505. }
  30506. },
  30507. },
  30508. [
  30509. {
  30510. name: "Normal",
  30511. height: math.unit(11, "feet"),
  30512. default: true
  30513. },
  30514. ]
  30515. ))
  30516. characterMakers.push(() => makeCharacter(
  30517. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30518. {
  30519. front: {
  30520. height: math.unit(6, "feet"),
  30521. weight: math.unit(150, "lb"),
  30522. name: "Front",
  30523. image: {
  30524. source: "./media/characters/meep/front.svg",
  30525. extra: 88 / 80,
  30526. bottom: 6 / 94
  30527. }
  30528. },
  30529. },
  30530. [
  30531. {
  30532. name: "Fun Sized",
  30533. height: math.unit(2, "inches"),
  30534. default: true
  30535. },
  30536. {
  30537. name: "Friend Sized",
  30538. height: math.unit(8, "inches")
  30539. },
  30540. ]
  30541. ))
  30542. characterMakers.push(() => makeCharacter(
  30543. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30544. {
  30545. front: {
  30546. height: math.unit(15, "feet"),
  30547. weight: math.unit(2500, "lb"),
  30548. name: "Front",
  30549. image: {
  30550. source: "./media/characters/holly-rabbit/front.svg",
  30551. extra: 1433 / 1233,
  30552. bottom: 125 / 1558
  30553. }
  30554. },
  30555. dick: {
  30556. height: math.unit(4.6, "feet"),
  30557. name: "Dick",
  30558. image: {
  30559. source: "./media/characters/holly-rabbit/dick.svg"
  30560. }
  30561. },
  30562. },
  30563. [
  30564. {
  30565. name: "Normal",
  30566. height: math.unit(15, "feet"),
  30567. default: true
  30568. },
  30569. {
  30570. name: "Macro",
  30571. height: math.unit(250, "feet")
  30572. },
  30573. {
  30574. name: "Macro+",
  30575. height: math.unit(2500, "feet")
  30576. },
  30577. ]
  30578. ))
  30579. characterMakers.push(() => makeCharacter(
  30580. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30581. {
  30582. front: {
  30583. height: math.unit(3.02, "meters"),
  30584. weight: math.unit(500, "kg"),
  30585. name: "Front",
  30586. image: {
  30587. source: "./media/characters/drena/front.svg",
  30588. extra: 282 / 243,
  30589. bottom: 8 / 290
  30590. }
  30591. },
  30592. side: {
  30593. height: math.unit(3.02, "meters"),
  30594. weight: math.unit(500, "kg"),
  30595. name: "Side",
  30596. image: {
  30597. source: "./media/characters/drena/side.svg",
  30598. extra: 280 / 245,
  30599. bottom: 10 / 290
  30600. }
  30601. },
  30602. back: {
  30603. height: math.unit(3.02, "meters"),
  30604. weight: math.unit(500, "kg"),
  30605. name: "Back",
  30606. image: {
  30607. source: "./media/characters/drena/back.svg",
  30608. extra: 278 / 243,
  30609. bottom: 2 / 280
  30610. }
  30611. },
  30612. foot: {
  30613. height: math.unit(0.75, "meters"),
  30614. name: "Foot",
  30615. image: {
  30616. source: "./media/characters/drena/foot.svg"
  30617. }
  30618. },
  30619. maw: {
  30620. height: math.unit(0.82, "meters"),
  30621. name: "Maw",
  30622. image: {
  30623. source: "./media/characters/drena/maw.svg"
  30624. }
  30625. },
  30626. eating: {
  30627. height: math.unit(0.75, "meters"),
  30628. name: "Eating",
  30629. image: {
  30630. source: "./media/characters/drena/eating.svg"
  30631. }
  30632. },
  30633. rump: {
  30634. height: math.unit(0.93, "meters"),
  30635. name: "Rump",
  30636. image: {
  30637. source: "./media/characters/drena/rump.svg"
  30638. }
  30639. },
  30640. },
  30641. [
  30642. {
  30643. name: "Normal",
  30644. height: math.unit(3.02, "meters"),
  30645. default: true
  30646. },
  30647. ]
  30648. ))
  30649. characterMakers.push(() => makeCharacter(
  30650. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30651. {
  30652. front: {
  30653. height: math.unit(6 + 4 / 12, "feet"),
  30654. weight: math.unit(250, "lb"),
  30655. name: "Front",
  30656. image: {
  30657. source: "./media/characters/remmyzilla/front.svg",
  30658. extra: 4033 / 3588,
  30659. bottom: 123 / 4156
  30660. }
  30661. },
  30662. back: {
  30663. height: math.unit(6 + 4 / 12, "feet"),
  30664. weight: math.unit(250, "lb"),
  30665. name: "Back",
  30666. image: {
  30667. source: "./media/characters/remmyzilla/back.svg",
  30668. extra: 2687 / 2555,
  30669. bottom: 48 / 2735
  30670. }
  30671. },
  30672. paw: {
  30673. height: math.unit(1.73, "feet"),
  30674. name: "Paw",
  30675. image: {
  30676. source: "./media/characters/remmyzilla/paw.svg"
  30677. },
  30678. extraAttributes: {
  30679. "toeSize": {
  30680. name: "Toe Size",
  30681. power: 2,
  30682. type: "area",
  30683. base: math.unit(0.0035, "m^2")
  30684. },
  30685. "padSize": {
  30686. name: "Pad Size",
  30687. power: 2,
  30688. type: "area",
  30689. base: math.unit(0.015, "m^2")
  30690. },
  30691. "pawsize": {
  30692. name: "Paw Size",
  30693. power: 2,
  30694. type: "area",
  30695. base: math.unit(0.072, "m^2")
  30696. },
  30697. }
  30698. },
  30699. maw: {
  30700. height: math.unit(1.73, "feet"),
  30701. name: "Maw",
  30702. image: {
  30703. source: "./media/characters/remmyzilla/maw.svg"
  30704. }
  30705. },
  30706. },
  30707. [
  30708. {
  30709. name: "Normal",
  30710. height: math.unit(6 + 4 / 12, "feet")
  30711. },
  30712. {
  30713. name: "Minimacro",
  30714. height: math.unit(12 + 8 / 12, "feet")
  30715. },
  30716. {
  30717. name: "Normal",
  30718. height: math.unit(640, "feet"),
  30719. default: true
  30720. },
  30721. {
  30722. name: "Megamacro",
  30723. height: math.unit(6400, "feet")
  30724. },
  30725. {
  30726. name: "Gigamacro",
  30727. height: math.unit(64000, "miles")
  30728. },
  30729. ]
  30730. ))
  30731. characterMakers.push(() => makeCharacter(
  30732. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30733. {
  30734. front: {
  30735. height: math.unit(2.5, "meters"),
  30736. weight: math.unit(300, "lb"),
  30737. name: "Front",
  30738. image: {
  30739. source: "./media/characters/lawrence/front.svg",
  30740. extra: 357 / 335,
  30741. bottom: 30 / 387
  30742. }
  30743. },
  30744. back: {
  30745. height: math.unit(2.5, "meters"),
  30746. weight: math.unit(300, "lb"),
  30747. name: "Back",
  30748. image: {
  30749. source: "./media/characters/lawrence/back.svg",
  30750. extra: 357 / 338,
  30751. bottom: 16 / 373
  30752. }
  30753. },
  30754. head: {
  30755. height: math.unit(0.9, "meter"),
  30756. name: "Head",
  30757. image: {
  30758. source: "./media/characters/lawrence/head.svg"
  30759. }
  30760. },
  30761. maw: {
  30762. height: math.unit(0.7, "meter"),
  30763. name: "Maw",
  30764. image: {
  30765. source: "./media/characters/lawrence/maw.svg"
  30766. }
  30767. },
  30768. footBottom: {
  30769. height: math.unit(0.5, "meter"),
  30770. name: "Foot (Bottom)",
  30771. image: {
  30772. source: "./media/characters/lawrence/foot-bottom.svg"
  30773. }
  30774. },
  30775. footTop: {
  30776. height: math.unit(0.5, "meter"),
  30777. name: "Foot (Top)",
  30778. image: {
  30779. source: "./media/characters/lawrence/foot-top.svg"
  30780. }
  30781. },
  30782. },
  30783. [
  30784. {
  30785. name: "Normal",
  30786. height: math.unit(2.5, "meters"),
  30787. default: true
  30788. },
  30789. {
  30790. name: "Macro",
  30791. height: math.unit(95, "meters")
  30792. },
  30793. {
  30794. name: "Megamacro",
  30795. height: math.unit(150, "km")
  30796. },
  30797. ]
  30798. ))
  30799. characterMakers.push(() => makeCharacter(
  30800. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30801. {
  30802. front: {
  30803. height: math.unit(4.2, "meters"),
  30804. preyCapacity: math.unit(50, "m^3"),
  30805. weight: math.unit(30, "tonnes"),
  30806. name: "Front",
  30807. image: {
  30808. source: "./media/characters/sydney/front.svg",
  30809. extra: 1177/1129,
  30810. bottom: 197/1374
  30811. },
  30812. extraAttributes: {
  30813. "length": {
  30814. name: "Length",
  30815. power: 1,
  30816. type: "length",
  30817. base: math.unit(21, "meters")
  30818. },
  30819. }
  30820. },
  30821. },
  30822. [
  30823. {
  30824. name: "Normal",
  30825. height: math.unit(4.2, "meters"),
  30826. default: true
  30827. },
  30828. ]
  30829. ))
  30830. characterMakers.push(() => makeCharacter(
  30831. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30832. {
  30833. back: {
  30834. height: math.unit(201, "feet"),
  30835. name: "Back",
  30836. image: {
  30837. source: "./media/characters/jessica/back.svg",
  30838. extra: 273 / 259,
  30839. bottom: 7 / 280
  30840. }
  30841. },
  30842. },
  30843. [
  30844. {
  30845. name: "Normal",
  30846. height: math.unit(201, "feet"),
  30847. default: true
  30848. },
  30849. {
  30850. name: "Megamacro",
  30851. height: math.unit(8, "miles")
  30852. },
  30853. ]
  30854. ))
  30855. characterMakers.push(() => makeCharacter(
  30856. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30857. {
  30858. side: {
  30859. height: math.unit(5.6, "m"),
  30860. weight: math.unit(8000, "kg"),
  30861. name: "Side",
  30862. image: {
  30863. source: "./media/characters/victoria/side.svg",
  30864. extra: 1542/1229,
  30865. bottom: 124/1666
  30866. }
  30867. },
  30868. maw: {
  30869. height: math.unit(7.14, "feet"),
  30870. name: "Maw",
  30871. image: {
  30872. source: "./media/characters/victoria/maw.svg"
  30873. }
  30874. },
  30875. },
  30876. [
  30877. {
  30878. name: "Normal",
  30879. height: math.unit(5.6, "m"),
  30880. default: true
  30881. },
  30882. ]
  30883. ))
  30884. characterMakers.push(() => makeCharacter(
  30885. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30886. {
  30887. front: {
  30888. height: math.unit(5 + 6 / 12, "feet"),
  30889. name: "Front",
  30890. image: {
  30891. source: "./media/characters/cat/front.svg",
  30892. extra: 1449/1295,
  30893. bottom: 34/1483
  30894. },
  30895. form: "cat",
  30896. default: true
  30897. },
  30898. back: {
  30899. height: math.unit(5 + 6 / 12, "feet"),
  30900. name: "Back",
  30901. image: {
  30902. source: "./media/characters/cat/back.svg",
  30903. extra: 1466/1301,
  30904. bottom: 19/1485
  30905. },
  30906. form: "cat"
  30907. },
  30908. taur: {
  30909. height: math.unit(7, "feet"),
  30910. name: "Taur",
  30911. image: {
  30912. source: "./media/characters/cat/taur.svg",
  30913. extra: 1389/1233,
  30914. bottom: 83/1472
  30915. },
  30916. form: "taur",
  30917. default: true
  30918. },
  30919. lucarioFront: {
  30920. height: math.unit(4, "feet"),
  30921. name: "Lucario (Front)",
  30922. image: {
  30923. source: "./media/characters/cat/lucario-front.svg",
  30924. extra: 1149/1019,
  30925. bottom: 84/1233
  30926. },
  30927. form: "lucario",
  30928. default: true
  30929. },
  30930. lucarioBack: {
  30931. height: math.unit(4, "feet"),
  30932. name: "Lucario (Back)",
  30933. image: {
  30934. source: "./media/characters/cat/lucario-back.svg",
  30935. extra: 1190/1059,
  30936. bottom: 33/1223
  30937. },
  30938. form: "lucario"
  30939. },
  30940. megaLucario: {
  30941. height: math.unit(4, "feet"),
  30942. name: "Mega Lucario",
  30943. image: {
  30944. source: "./media/characters/cat/mega-lucario.svg",
  30945. extra: 1515 / 1319,
  30946. bottom: 63 / 1578
  30947. },
  30948. form: "lucario"
  30949. },
  30950. nickit: {
  30951. height: math.unit(2, "feet"),
  30952. name: "Nickit",
  30953. image: {
  30954. source: "./media/characters/cat/nickit.svg",
  30955. extra: 1980 / 1585,
  30956. bottom: 102 / 2082
  30957. },
  30958. form: "nickit",
  30959. default: true
  30960. },
  30961. lopunnyFront: {
  30962. height: math.unit(5, "feet"),
  30963. name: "Lopunny (Front)",
  30964. image: {
  30965. source: "./media/characters/cat/lopunny-front.svg",
  30966. extra: 1782 / 1469,
  30967. bottom: 38 / 1820
  30968. },
  30969. form: "lopunny",
  30970. default: true
  30971. },
  30972. lopunnyBack: {
  30973. height: math.unit(5, "feet"),
  30974. name: "Lopunny (Back)",
  30975. image: {
  30976. source: "./media/characters/cat/lopunny-back.svg",
  30977. extra: 1660 / 1490,
  30978. bottom: 25 / 1685
  30979. },
  30980. form: "lopunny"
  30981. },
  30982. },
  30983. [
  30984. {
  30985. name: "Really small",
  30986. height: math.unit(1, "nm")
  30987. },
  30988. {
  30989. name: "Micro",
  30990. height: math.unit(5, "inches")
  30991. },
  30992. {
  30993. name: "Normal",
  30994. height: math.unit(5 + 6 / 12, "feet"),
  30995. default: true
  30996. },
  30997. {
  30998. name: "Macro",
  30999. height: math.unit(50, "feet")
  31000. },
  31001. {
  31002. name: "Macro+",
  31003. height: math.unit(150, "feet")
  31004. },
  31005. {
  31006. name: "Megamacro",
  31007. height: math.unit(100, "miles")
  31008. },
  31009. ]
  31010. ))
  31011. characterMakers.push(() => makeCharacter(
  31012. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31013. {
  31014. front: {
  31015. height: math.unit(63.4, "meters"),
  31016. weight: math.unit(3.28349e+6, "kilograms"),
  31017. name: "Front",
  31018. image: {
  31019. source: "./media/characters/kirina-violet/front.svg",
  31020. extra: 2812 / 2725,
  31021. bottom: 0 / 2812
  31022. }
  31023. },
  31024. back: {
  31025. height: math.unit(63.4, "meters"),
  31026. weight: math.unit(3.28349e+6, "kilograms"),
  31027. name: "Back",
  31028. image: {
  31029. source: "./media/characters/kirina-violet/back.svg",
  31030. extra: 2812 / 2725,
  31031. bottom: 0 / 2812
  31032. }
  31033. },
  31034. mouth: {
  31035. height: math.unit(4.35, "meters"),
  31036. name: "Mouth",
  31037. image: {
  31038. source: "./media/characters/kirina-violet/mouth.svg"
  31039. }
  31040. },
  31041. paw: {
  31042. height: math.unit(5.6, "meters"),
  31043. name: "Paw",
  31044. image: {
  31045. source: "./media/characters/kirina-violet/paw.svg"
  31046. }
  31047. },
  31048. tail: {
  31049. height: math.unit(18, "meters"),
  31050. name: "Tail",
  31051. image: {
  31052. source: "./media/characters/kirina-violet/tail.svg"
  31053. }
  31054. },
  31055. },
  31056. [
  31057. {
  31058. name: "Macro",
  31059. height: math.unit(63.4, "meters"),
  31060. default: true
  31061. },
  31062. ]
  31063. ))
  31064. characterMakers.push(() => makeCharacter(
  31065. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31066. {
  31067. front: {
  31068. height: math.unit(75, "feet"),
  31069. name: "Front",
  31070. image: {
  31071. source: "./media/characters/cat-gigachu/front.svg",
  31072. extra: 1239/1027,
  31073. bottom: 32/1271
  31074. }
  31075. },
  31076. back: {
  31077. height: math.unit(75, "feet"),
  31078. name: "Back",
  31079. image: {
  31080. source: "./media/characters/cat-gigachu/back.svg",
  31081. extra: 1229/1030,
  31082. bottom: 9/1238
  31083. }
  31084. },
  31085. },
  31086. [
  31087. {
  31088. name: "Dynamax",
  31089. height: math.unit(75, "feet"),
  31090. default: true
  31091. },
  31092. ]
  31093. ))
  31094. characterMakers.push(() => makeCharacter(
  31095. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31096. {
  31097. front: {
  31098. height: math.unit(6, "feet"),
  31099. weight: math.unit(150, "lb"),
  31100. name: "Front",
  31101. image: {
  31102. source: "./media/characters/sfaiyan/front.svg",
  31103. extra: 999 / 978,
  31104. bottom: 5 / 1004
  31105. }
  31106. },
  31107. },
  31108. [
  31109. {
  31110. name: "Normal",
  31111. height: math.unit(1.82, "meters")
  31112. },
  31113. {
  31114. name: "Giant",
  31115. height: math.unit(2.27, "km"),
  31116. default: true
  31117. },
  31118. ]
  31119. ))
  31120. characterMakers.push(() => makeCharacter(
  31121. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31122. {
  31123. front: {
  31124. height: math.unit(179, "cm"),
  31125. weight: math.unit(100, "kg"),
  31126. name: "Front",
  31127. image: {
  31128. source: "./media/characters/raunehkeli/front.svg",
  31129. extra: 1934 / 1926,
  31130. bottom: 0 / 1934
  31131. }
  31132. },
  31133. },
  31134. [
  31135. {
  31136. name: "Normal",
  31137. height: math.unit(179, "cm")
  31138. },
  31139. {
  31140. name: "Maximum",
  31141. height: math.unit(575, "meters"),
  31142. default: true
  31143. },
  31144. ]
  31145. ))
  31146. characterMakers.push(() => makeCharacter(
  31147. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31148. {
  31149. front: {
  31150. height: math.unit(6, "feet"),
  31151. weight: math.unit(150, "lb"),
  31152. name: "Front",
  31153. image: {
  31154. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31155. extra: 2625 / 2518,
  31156. bottom: 60 / 2685
  31157. }
  31158. },
  31159. },
  31160. [
  31161. {
  31162. name: "Normal",
  31163. height: math.unit(6 + 2 / 12, "feet")
  31164. },
  31165. {
  31166. name: "Macro",
  31167. height: math.unit(1180, "feet"),
  31168. default: true
  31169. },
  31170. ]
  31171. ))
  31172. characterMakers.push(() => makeCharacter(
  31173. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31174. {
  31175. front: {
  31176. height: math.unit(5 + 6 / 12, "feet"),
  31177. weight: math.unit(108, "lb"),
  31178. name: "Front",
  31179. image: {
  31180. source: "./media/characters/lilith-zott/front.svg",
  31181. extra: 2510 / 2238,
  31182. bottom: 100 / 2610
  31183. }
  31184. },
  31185. frontDressed: {
  31186. height: math.unit(5 + 6 / 12, "feet"),
  31187. weight: math.unit(108, "lb"),
  31188. name: "Front (Dressed)",
  31189. image: {
  31190. source: "./media/characters/lilith-zott/front-dressed.svg",
  31191. extra: 2510 / 2238,
  31192. bottom: 100 / 2610
  31193. }
  31194. },
  31195. },
  31196. [
  31197. {
  31198. name: "Normal",
  31199. height: math.unit(5 + 6 / 12, "feet")
  31200. },
  31201. {
  31202. name: "Macro",
  31203. height: math.unit(1030, "feet"),
  31204. default: true
  31205. },
  31206. ]
  31207. ))
  31208. characterMakers.push(() => makeCharacter(
  31209. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31210. {
  31211. front: {
  31212. height: math.unit(6, "feet"),
  31213. weight: math.unit(150, "lb"),
  31214. name: "Front",
  31215. image: {
  31216. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31217. extra: 2567 / 2435,
  31218. bottom: 39 / 2606
  31219. }
  31220. },
  31221. frontSuper: {
  31222. height: math.unit(6, "feet"),
  31223. name: "Front (Super)",
  31224. image: {
  31225. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31226. extra: 2567 / 2435,
  31227. bottom: 39 / 2606
  31228. }
  31229. },
  31230. },
  31231. [
  31232. {
  31233. name: "Normal",
  31234. height: math.unit(5 + 10 / 12, "feet")
  31235. },
  31236. {
  31237. name: "Macro",
  31238. height: math.unit(1100, "feet"),
  31239. default: true
  31240. },
  31241. ]
  31242. ))
  31243. characterMakers.push(() => makeCharacter(
  31244. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31245. {
  31246. front: {
  31247. height: math.unit(100, "miles"),
  31248. name: "Front",
  31249. image: {
  31250. source: "./media/characters/sona/front.svg",
  31251. extra: 2433 / 2201,
  31252. bottom: 53 / 2486
  31253. }
  31254. },
  31255. foot: {
  31256. height: math.unit(16.1, "miles"),
  31257. name: "Foot",
  31258. image: {
  31259. source: "./media/characters/sona/foot.svg"
  31260. }
  31261. },
  31262. },
  31263. [
  31264. {
  31265. name: "Macro",
  31266. height: math.unit(100, "miles"),
  31267. default: true
  31268. },
  31269. ]
  31270. ))
  31271. characterMakers.push(() => makeCharacter(
  31272. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31273. {
  31274. front: {
  31275. height: math.unit(6, "feet"),
  31276. weight: math.unit(150, "lb"),
  31277. name: "Front",
  31278. image: {
  31279. source: "./media/characters/bailey/front.svg",
  31280. extra: 1778 / 1724,
  31281. bottom: 30 / 1808
  31282. }
  31283. },
  31284. },
  31285. [
  31286. {
  31287. name: "Micro",
  31288. height: math.unit(4, "inches")
  31289. },
  31290. {
  31291. name: "Normal",
  31292. height: math.unit(5 + 5 / 12, "feet"),
  31293. default: true
  31294. },
  31295. {
  31296. name: "Macro",
  31297. height: math.unit(250, "feet")
  31298. },
  31299. {
  31300. name: "Megamacro",
  31301. height: math.unit(100, "miles")
  31302. },
  31303. ]
  31304. ))
  31305. characterMakers.push(() => makeCharacter(
  31306. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31307. {
  31308. front: {
  31309. height: math.unit(5 + 2 / 12, "feet"),
  31310. weight: math.unit(120, "lb"),
  31311. name: "Front",
  31312. image: {
  31313. source: "./media/characters/snaps/front.svg",
  31314. extra: 2370 / 2177,
  31315. bottom: 48 / 2418
  31316. }
  31317. },
  31318. back: {
  31319. height: math.unit(5 + 2 / 12, "feet"),
  31320. weight: math.unit(120, "lb"),
  31321. name: "Back",
  31322. image: {
  31323. source: "./media/characters/snaps/back.svg",
  31324. extra: 2408 / 2258,
  31325. bottom: 15 / 2423
  31326. }
  31327. },
  31328. },
  31329. [
  31330. {
  31331. name: "Micro",
  31332. height: math.unit(9, "inches")
  31333. },
  31334. {
  31335. name: "Normal",
  31336. height: math.unit(5 + 2 / 12, "feet"),
  31337. default: true
  31338. },
  31339. {
  31340. name: "Mini Macro",
  31341. height: math.unit(10, "feet")
  31342. },
  31343. ]
  31344. ))
  31345. characterMakers.push(() => makeCharacter(
  31346. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31347. {
  31348. front: {
  31349. height: math.unit(1.8, "meters"),
  31350. weight: math.unit(85, "kg"),
  31351. name: "Front",
  31352. image: {
  31353. source: "./media/characters/azteck/front.svg",
  31354. extra: 2815 / 2625,
  31355. bottom: 89 / 2904
  31356. }
  31357. },
  31358. back: {
  31359. height: math.unit(1.8, "meters"),
  31360. weight: math.unit(85, "kg"),
  31361. name: "Back",
  31362. image: {
  31363. source: "./media/characters/azteck/back.svg",
  31364. extra: 2856 / 2648,
  31365. bottom: 85 / 2941
  31366. }
  31367. },
  31368. frontDressed: {
  31369. height: math.unit(1.8, "meters"),
  31370. weight: math.unit(85, "kg"),
  31371. name: "Front (Dressed)",
  31372. image: {
  31373. source: "./media/characters/azteck/front-dressed.svg",
  31374. extra: 2147 / 2003,
  31375. bottom: 68 / 2215
  31376. }
  31377. },
  31378. head: {
  31379. height: math.unit(0.47, "meters"),
  31380. weight: math.unit(85, "kg"),
  31381. name: "Head",
  31382. image: {
  31383. source: "./media/characters/azteck/head.svg"
  31384. }
  31385. },
  31386. },
  31387. [
  31388. {
  31389. name: "Bite sized",
  31390. height: math.unit(16, "cm")
  31391. },
  31392. {
  31393. name: "Normal",
  31394. height: math.unit(1.8, "meters"),
  31395. default: true
  31396. },
  31397. ]
  31398. ))
  31399. characterMakers.push(() => makeCharacter(
  31400. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31401. {
  31402. front: {
  31403. height: math.unit(6, "feet"),
  31404. weight: math.unit(150, "lb"),
  31405. name: "Front",
  31406. image: {
  31407. source: "./media/characters/pidge/front.svg",
  31408. extra: 1936/1820,
  31409. bottom: 0/1936
  31410. }
  31411. },
  31412. back: {
  31413. height: math.unit(6, "feet"),
  31414. weight: math.unit(150, "lb"),
  31415. name: "Back",
  31416. image: {
  31417. source: "./media/characters/pidge/back.svg",
  31418. extra: 1938/1843,
  31419. bottom: 0/1938
  31420. }
  31421. },
  31422. casual: {
  31423. height: math.unit(6, "feet"),
  31424. weight: math.unit(150, "lb"),
  31425. name: "Casual",
  31426. image: {
  31427. source: "./media/characters/pidge/casual.svg",
  31428. extra: 1936/1820,
  31429. bottom: 0/1936
  31430. }
  31431. },
  31432. tech: {
  31433. height: math.unit(6, "feet"),
  31434. weight: math.unit(150, "lb"),
  31435. name: "Tech",
  31436. image: {
  31437. source: "./media/characters/pidge/tech.svg",
  31438. extra: 1802/1682,
  31439. bottom: 0/1802
  31440. }
  31441. },
  31442. head: {
  31443. height: math.unit(1.61, "feet"),
  31444. name: "Head",
  31445. image: {
  31446. source: "./media/characters/pidge/head.svg"
  31447. }
  31448. },
  31449. collar: {
  31450. height: math.unit(0.82, "feet"),
  31451. name: "Collar",
  31452. image: {
  31453. source: "./media/characters/pidge/collar.svg"
  31454. }
  31455. },
  31456. },
  31457. [
  31458. {
  31459. name: "Macro",
  31460. height: math.unit(2, "mile"),
  31461. default: true
  31462. },
  31463. {
  31464. name: "PUPPY",
  31465. height: math.unit(20, "miles")
  31466. },
  31467. ]
  31468. ))
  31469. characterMakers.push(() => makeCharacter(
  31470. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31471. {
  31472. front: {
  31473. height: math.unit(6, "feet"),
  31474. weight: math.unit(150, "lb"),
  31475. name: "Front",
  31476. image: {
  31477. source: "./media/characters/en/front.svg",
  31478. extra: 1697 / 1563,
  31479. bottom: 103 / 1800
  31480. }
  31481. },
  31482. back: {
  31483. height: math.unit(6, "feet"),
  31484. weight: math.unit(150, "lb"),
  31485. name: "Back",
  31486. image: {
  31487. source: "./media/characters/en/back.svg",
  31488. extra: 1700 / 1570,
  31489. bottom: 51 / 1751
  31490. }
  31491. },
  31492. frontDressed: {
  31493. height: math.unit(6, "feet"),
  31494. weight: math.unit(150, "lb"),
  31495. name: "Front (Dressed)",
  31496. image: {
  31497. source: "./media/characters/en/front-dressed.svg",
  31498. extra: 1697 / 1563,
  31499. bottom: 103 / 1800
  31500. }
  31501. },
  31502. backDressed: {
  31503. height: math.unit(6, "feet"),
  31504. weight: math.unit(150, "lb"),
  31505. name: "Back (Dressed)",
  31506. image: {
  31507. source: "./media/characters/en/back-dressed.svg",
  31508. extra: 1700 / 1570,
  31509. bottom: 51 / 1751
  31510. }
  31511. },
  31512. },
  31513. [
  31514. {
  31515. name: "Macro",
  31516. height: math.unit(210, "feet"),
  31517. default: true
  31518. },
  31519. ]
  31520. ))
  31521. characterMakers.push(() => makeCharacter(
  31522. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31523. {
  31524. front: {
  31525. height: math.unit(6, "feet"),
  31526. weight: math.unit(150, "lb"),
  31527. name: "Front",
  31528. image: {
  31529. source: "./media/characters/haze-orris/front.svg",
  31530. extra: 3975 / 3525,
  31531. bottom: 137 / 4112
  31532. }
  31533. },
  31534. },
  31535. [
  31536. {
  31537. name: "Micro",
  31538. height: math.unit(150, "mm"),
  31539. default: true
  31540. },
  31541. ]
  31542. ))
  31543. characterMakers.push(() => makeCharacter(
  31544. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31545. {
  31546. front: {
  31547. height: math.unit(6, "feet"),
  31548. weight: math.unit(150, "lb"),
  31549. name: "Front",
  31550. image: {
  31551. source: "./media/characters/casselene-yaro/front.svg",
  31552. extra: 4721 / 4541,
  31553. bottom: 82 / 4803
  31554. }
  31555. },
  31556. back: {
  31557. height: math.unit(6, "feet"),
  31558. weight: math.unit(150, "lb"),
  31559. name: "Back",
  31560. image: {
  31561. source: "./media/characters/casselene-yaro/back.svg",
  31562. extra: 4569 / 4377,
  31563. bottom: 69 / 4638
  31564. }
  31565. },
  31566. dressed: {
  31567. height: math.unit(6, "feet"),
  31568. weight: math.unit(150, "lb"),
  31569. name: "Dressed",
  31570. image: {
  31571. source: "./media/characters/casselene-yaro/dressed.svg",
  31572. extra: 4721 / 4541,
  31573. bottom: 82 / 4803
  31574. }
  31575. },
  31576. maw: {
  31577. height: math.unit(1, "feet"),
  31578. name: "Maw",
  31579. image: {
  31580. source: "./media/characters/casselene-yaro/maw.svg"
  31581. }
  31582. },
  31583. },
  31584. [
  31585. {
  31586. name: "Macro",
  31587. height: math.unit(190, "feet"),
  31588. default: true
  31589. },
  31590. ]
  31591. ))
  31592. characterMakers.push(() => makeCharacter(
  31593. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31594. {
  31595. front: {
  31596. height: math.unit(10, "feet"),
  31597. weight: math.unit(15015, "lb"),
  31598. name: "Front",
  31599. image: {
  31600. source: "./media/characters/platine/front.svg",
  31601. extra: 1741/1650,
  31602. bottom: 84/1825
  31603. }
  31604. },
  31605. side: {
  31606. height: math.unit(10, "feet"),
  31607. weight: math.unit(15015, "lb"),
  31608. name: "Side",
  31609. image: {
  31610. source: "./media/characters/platine/side.svg",
  31611. extra: 1790/1705,
  31612. bottom: 29/1819
  31613. }
  31614. },
  31615. },
  31616. [
  31617. {
  31618. name: "Normal",
  31619. height: math.unit(10, "feet"),
  31620. default: true
  31621. },
  31622. {
  31623. name: "Macro",
  31624. height: math.unit(100, "feet")
  31625. },
  31626. {
  31627. name: "Megamacro",
  31628. height: math.unit(1000, "feet")
  31629. },
  31630. ]
  31631. ))
  31632. characterMakers.push(() => makeCharacter(
  31633. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31634. {
  31635. front: {
  31636. height: math.unit(15 + 5 / 12, "feet"),
  31637. weight: math.unit(4600, "lb"),
  31638. name: "Front",
  31639. image: {
  31640. source: "./media/characters/neapolitan-ananassa/front.svg",
  31641. extra: 2903 / 2736,
  31642. bottom: 0 / 2903
  31643. }
  31644. },
  31645. side: {
  31646. height: math.unit(15 + 5 / 12, "feet"),
  31647. weight: math.unit(4600, "lb"),
  31648. name: "Side",
  31649. image: {
  31650. source: "./media/characters/neapolitan-ananassa/side.svg",
  31651. extra: 2925 / 2719,
  31652. bottom: 0 / 2925
  31653. }
  31654. },
  31655. back: {
  31656. height: math.unit(15 + 5 / 12, "feet"),
  31657. weight: math.unit(4600, "lb"),
  31658. name: "Back",
  31659. image: {
  31660. source: "./media/characters/neapolitan-ananassa/back.svg",
  31661. extra: 2903 / 2736,
  31662. bottom: 0 / 2903
  31663. }
  31664. },
  31665. },
  31666. [
  31667. {
  31668. name: "Normal",
  31669. height: math.unit(15 + 5 / 12, "feet"),
  31670. default: true
  31671. },
  31672. {
  31673. name: "Post-Millenium",
  31674. height: math.unit(35 + 5 / 12, "feet")
  31675. },
  31676. {
  31677. name: "Post-Era",
  31678. height: math.unit(450 + 5 / 12, "feet")
  31679. },
  31680. ]
  31681. ))
  31682. characterMakers.push(() => makeCharacter(
  31683. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31684. {
  31685. front: {
  31686. height: math.unit(300, "meters"),
  31687. weight: math.unit(125000, "tonnes"),
  31688. name: "Front",
  31689. image: {
  31690. source: "./media/characters/pazuzu/front.svg",
  31691. extra: 877 / 794,
  31692. bottom: 47 / 924
  31693. }
  31694. },
  31695. },
  31696. [
  31697. {
  31698. name: "Macro",
  31699. height: math.unit(300, "meters"),
  31700. default: true
  31701. },
  31702. ]
  31703. ))
  31704. characterMakers.push(() => makeCharacter(
  31705. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31706. {
  31707. side: {
  31708. height: math.unit(10 + 7 / 12, "feet"),
  31709. weight: math.unit(2.5, "tons"),
  31710. name: "Side",
  31711. image: {
  31712. source: "./media/characters/aasha/side.svg",
  31713. extra: 1345 / 1245,
  31714. bottom: 111 / 1456
  31715. }
  31716. },
  31717. back: {
  31718. height: math.unit(10 + 7 / 12, "feet"),
  31719. weight: math.unit(2.5, "tons"),
  31720. name: "Back",
  31721. image: {
  31722. source: "./media/characters/aasha/back.svg",
  31723. extra: 1133 / 1057,
  31724. bottom: 257 / 1390
  31725. }
  31726. },
  31727. },
  31728. [
  31729. {
  31730. name: "Normal",
  31731. height: math.unit(10 + 7 / 12, "feet"),
  31732. default: true
  31733. },
  31734. ]
  31735. ))
  31736. characterMakers.push(() => makeCharacter(
  31737. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31738. {
  31739. front: {
  31740. height: math.unit(6 + 3 / 12, "feet"),
  31741. name: "Front",
  31742. image: {
  31743. source: "./media/characters/nevan/front.svg",
  31744. extra: 704 / 704,
  31745. bottom: 28 / 732
  31746. }
  31747. },
  31748. back: {
  31749. height: math.unit(6 + 3 / 12, "feet"),
  31750. name: "Back",
  31751. image: {
  31752. source: "./media/characters/nevan/back.svg",
  31753. extra: 714 / 714,
  31754. bottom: 21 / 735
  31755. }
  31756. },
  31757. frontFlaccid: {
  31758. height: math.unit(6 + 3 / 12, "feet"),
  31759. name: "Front (Flaccid)",
  31760. image: {
  31761. source: "./media/characters/nevan/front-flaccid.svg",
  31762. extra: 704 / 704,
  31763. bottom: 28 / 732
  31764. }
  31765. },
  31766. frontErect: {
  31767. height: math.unit(6 + 3 / 12, "feet"),
  31768. name: "Front (Erect)",
  31769. image: {
  31770. source: "./media/characters/nevan/front-erect.svg",
  31771. extra: 704 / 704,
  31772. bottom: 28 / 732
  31773. }
  31774. },
  31775. backFlaccid: {
  31776. height: math.unit(6 + 3 / 12, "feet"),
  31777. name: "Back (Flaccid)",
  31778. image: {
  31779. source: "./media/characters/nevan/back-flaccid.svg",
  31780. extra: 714 / 714,
  31781. bottom: 21 / 735
  31782. }
  31783. },
  31784. },
  31785. [
  31786. {
  31787. name: "Normal",
  31788. height: math.unit(6 + 3 / 12, "feet"),
  31789. default: true
  31790. },
  31791. ]
  31792. ))
  31793. characterMakers.push(() => makeCharacter(
  31794. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31795. {
  31796. front: {
  31797. height: math.unit(4, "feet"),
  31798. name: "Front",
  31799. image: {
  31800. source: "./media/characters/arhan/front.svg",
  31801. extra: 3368 / 3133,
  31802. bottom: 0 / 3368
  31803. }
  31804. },
  31805. side: {
  31806. height: math.unit(4, "feet"),
  31807. name: "Side",
  31808. image: {
  31809. source: "./media/characters/arhan/side.svg",
  31810. extra: 3347 / 3105,
  31811. bottom: 0 / 3347
  31812. }
  31813. },
  31814. tongue: {
  31815. height: math.unit(1.42, "feet"),
  31816. name: "Tongue",
  31817. image: {
  31818. source: "./media/characters/arhan/tongue.svg"
  31819. }
  31820. },
  31821. head: {
  31822. height: math.unit(0.85, "feet"),
  31823. name: "Head",
  31824. image: {
  31825. source: "./media/characters/arhan/head.svg"
  31826. }
  31827. },
  31828. },
  31829. [
  31830. {
  31831. name: "Normal",
  31832. height: math.unit(4, "feet"),
  31833. default: true
  31834. },
  31835. ]
  31836. ))
  31837. characterMakers.push(() => makeCharacter(
  31838. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31839. {
  31840. front: {
  31841. height: math.unit(5 + 7.5 / 12, "feet"),
  31842. weight: math.unit(120, "lb"),
  31843. name: "Front",
  31844. image: {
  31845. source: "./media/characters/digi-duncan/front.svg",
  31846. extra: 330 / 326,
  31847. bottom: 16 / 346
  31848. }
  31849. },
  31850. side: {
  31851. height: math.unit(5 + 7.5 / 12, "feet"),
  31852. weight: math.unit(120, "lb"),
  31853. name: "Side",
  31854. image: {
  31855. source: "./media/characters/digi-duncan/side.svg",
  31856. extra: 341 / 337,
  31857. bottom: 1 / 342
  31858. }
  31859. },
  31860. back: {
  31861. height: math.unit(5 + 7.5 / 12, "feet"),
  31862. weight: math.unit(120, "lb"),
  31863. name: "Back",
  31864. image: {
  31865. source: "./media/characters/digi-duncan/back.svg",
  31866. extra: 330 / 326,
  31867. bottom: 12 / 342
  31868. }
  31869. },
  31870. },
  31871. [
  31872. {
  31873. name: "Speck",
  31874. height: math.unit(0.25, "mm")
  31875. },
  31876. {
  31877. name: "Micro",
  31878. height: math.unit(5, "mm")
  31879. },
  31880. {
  31881. name: "Tiny",
  31882. height: math.unit(0.5, "inches"),
  31883. default: true
  31884. },
  31885. {
  31886. name: "Human",
  31887. height: math.unit(5 + 7.5 / 12, "feet")
  31888. },
  31889. {
  31890. name: "Minigiant",
  31891. height: math.unit(8 + 5.25, "feet")
  31892. },
  31893. {
  31894. name: "Giant",
  31895. height: math.unit(2000, "feet")
  31896. },
  31897. {
  31898. name: "Mega",
  31899. height: math.unit(371.1, "miles")
  31900. },
  31901. ]
  31902. ))
  31903. characterMakers.push(() => makeCharacter(
  31904. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31905. {
  31906. front: {
  31907. height: math.unit(2, "meters"),
  31908. weight: math.unit(350, "kg"),
  31909. name: "Front",
  31910. image: {
  31911. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31912. extra: 898 / 838,
  31913. bottom: 9 / 907
  31914. }
  31915. },
  31916. },
  31917. [
  31918. {
  31919. name: "Micro",
  31920. height: math.unit(8, "meters")
  31921. },
  31922. {
  31923. name: "Normal",
  31924. height: math.unit(50, "meters"),
  31925. default: true
  31926. },
  31927. {
  31928. name: "Macro",
  31929. height: math.unit(500, "meters")
  31930. },
  31931. ]
  31932. ))
  31933. characterMakers.push(() => makeCharacter(
  31934. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31935. {
  31936. front: {
  31937. height: math.unit(6 + 6 / 12, "feet"),
  31938. name: "Front",
  31939. image: {
  31940. source: "./media/characters/khardesh/front.svg",
  31941. extra: 1788/1596,
  31942. bottom: 66/1854
  31943. }
  31944. },
  31945. back: {
  31946. height: math.unit(6 + 6 / 12, "feet"),
  31947. name: "Back",
  31948. image: {
  31949. source: "./media/characters/khardesh/back.svg",
  31950. extra: 1781/1584,
  31951. bottom: 68/1849
  31952. }
  31953. },
  31954. },
  31955. [
  31956. {
  31957. name: "Normal",
  31958. height: math.unit(6 + 6 / 12, "feet"),
  31959. default: true
  31960. },
  31961. {
  31962. name: "Normal+",
  31963. height: math.unit(4, "meters")
  31964. },
  31965. {
  31966. name: "Macro",
  31967. height: math.unit(50, "meters")
  31968. },
  31969. {
  31970. name: "Macro+",
  31971. height: math.unit(100, "meters")
  31972. },
  31973. {
  31974. name: "Megamacro",
  31975. height: math.unit(20, "km")
  31976. },
  31977. ]
  31978. ))
  31979. characterMakers.push(() => makeCharacter(
  31980. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31981. {
  31982. front: {
  31983. height: math.unit(6, "feet"),
  31984. weight: math.unit(150, "lb"),
  31985. name: "Front",
  31986. image: {
  31987. source: "./media/characters/kosho/front.svg",
  31988. extra: 1847 / 1847,
  31989. bottom: 86 / 1933
  31990. }
  31991. },
  31992. },
  31993. [
  31994. {
  31995. name: "Second-stage micro",
  31996. height: math.unit(0.5, "inches")
  31997. },
  31998. {
  31999. name: "First-stage micro",
  32000. height: math.unit(6, "inches")
  32001. },
  32002. {
  32003. name: "Normal",
  32004. height: math.unit(6, "feet"),
  32005. default: true
  32006. },
  32007. {
  32008. name: "First-stage macro",
  32009. height: math.unit(72, "feet")
  32010. },
  32011. {
  32012. name: "Second-stage macro",
  32013. height: math.unit(864, "feet")
  32014. },
  32015. ]
  32016. ))
  32017. characterMakers.push(() => makeCharacter(
  32018. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32019. {
  32020. normal: {
  32021. height: math.unit(4 + 6 / 12, "feet"),
  32022. name: "Normal",
  32023. image: {
  32024. source: "./media/characters/hydra/normal.svg",
  32025. extra: 2833 / 2634,
  32026. bottom: 68 / 2901
  32027. }
  32028. },
  32029. smol: {
  32030. height: math.unit(0.705, "inches"),
  32031. name: "Smol",
  32032. image: {
  32033. source: "./media/characters/hydra/smol.svg",
  32034. extra: 2715 / 2540,
  32035. bottom: 0 / 2715
  32036. }
  32037. },
  32038. },
  32039. [
  32040. {
  32041. name: "Normal",
  32042. height: math.unit(4 + 6 / 12, "feet"),
  32043. default: true
  32044. }
  32045. ]
  32046. ))
  32047. characterMakers.push(() => makeCharacter(
  32048. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32049. {
  32050. front: {
  32051. height: math.unit(0.6, "cm"),
  32052. name: "Front",
  32053. image: {
  32054. source: "./media/characters/daz/front.svg",
  32055. extra: 1682 / 1164,
  32056. bottom: 42 / 1724
  32057. }
  32058. },
  32059. },
  32060. [
  32061. {
  32062. name: "Normal",
  32063. height: math.unit(0.6, "cm"),
  32064. default: true
  32065. },
  32066. ]
  32067. ))
  32068. characterMakers.push(() => makeCharacter(
  32069. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32070. {
  32071. front: {
  32072. height: math.unit(6, "feet"),
  32073. weight: math.unit(235, "lb"),
  32074. name: "Front",
  32075. image: {
  32076. source: "./media/characters/theo-pangolin/front.svg",
  32077. extra: 1996 / 1969,
  32078. bottom: 115 / 2111
  32079. }
  32080. },
  32081. back: {
  32082. height: math.unit(6, "feet"),
  32083. weight: math.unit(235, "lb"),
  32084. name: "Back",
  32085. image: {
  32086. source: "./media/characters/theo-pangolin/back.svg",
  32087. extra: 1979 / 1979,
  32088. bottom: 40 / 2019
  32089. }
  32090. },
  32091. feral: {
  32092. height: math.unit(2, "feet"),
  32093. weight: math.unit(30, "lb"),
  32094. name: "Feral",
  32095. image: {
  32096. source: "./media/characters/theo-pangolin/feral.svg",
  32097. extra: 803 / 791,
  32098. bottom: 181 / 984
  32099. }
  32100. },
  32101. footFive: {
  32102. height: math.unit(1.43, "feet"),
  32103. name: "Foot (Five Toes)",
  32104. image: {
  32105. source: "./media/characters/theo-pangolin/foot-five.svg"
  32106. }
  32107. },
  32108. footFour: {
  32109. height: math.unit(1.43, "feet"),
  32110. name: "Foot (Four Toes)",
  32111. image: {
  32112. source: "./media/characters/theo-pangolin/foot-four.svg"
  32113. }
  32114. },
  32115. handFour: {
  32116. height: math.unit(0.81, "feet"),
  32117. name: "Hand (Four Fingers)",
  32118. image: {
  32119. source: "./media/characters/theo-pangolin/hand-four.svg"
  32120. }
  32121. },
  32122. handThree: {
  32123. height: math.unit(0.81, "feet"),
  32124. name: "Hand (Three Fingers)",
  32125. image: {
  32126. source: "./media/characters/theo-pangolin/hand-three.svg"
  32127. }
  32128. },
  32129. headFront: {
  32130. height: math.unit(1.37, "feet"),
  32131. name: "Head (Front)",
  32132. image: {
  32133. source: "./media/characters/theo-pangolin/head-front.svg"
  32134. }
  32135. },
  32136. headSide: {
  32137. height: math.unit(1.43, "feet"),
  32138. name: "Head (Side)",
  32139. image: {
  32140. source: "./media/characters/theo-pangolin/head-side.svg"
  32141. }
  32142. },
  32143. tongue: {
  32144. height: math.unit(2.29, "feet"),
  32145. name: "Tongue",
  32146. image: {
  32147. source: "./media/characters/theo-pangolin/tongue.svg"
  32148. }
  32149. },
  32150. },
  32151. [
  32152. {
  32153. name: "Normal",
  32154. height: math.unit(6, "feet")
  32155. },
  32156. {
  32157. name: "Macro",
  32158. height: math.unit(400, "feet"),
  32159. default: true
  32160. },
  32161. ]
  32162. ))
  32163. characterMakers.push(() => makeCharacter(
  32164. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32165. {
  32166. front: {
  32167. height: math.unit(6, "inches"),
  32168. weight: math.unit(0.036, "kg"),
  32169. name: "Front",
  32170. image: {
  32171. source: "./media/characters/renée/front.svg",
  32172. extra: 900 / 886,
  32173. bottom: 8 / 908
  32174. }
  32175. },
  32176. },
  32177. [
  32178. {
  32179. name: "Nano",
  32180. height: math.unit(1, "nm")
  32181. },
  32182. {
  32183. name: "Micro",
  32184. height: math.unit(1, "mm")
  32185. },
  32186. {
  32187. name: "Normal",
  32188. height: math.unit(6, "inches")
  32189. },
  32190. {
  32191. name: "Macro",
  32192. height: math.unit(2000, "feet"),
  32193. default: true
  32194. },
  32195. {
  32196. name: "Megamacro",
  32197. height: math.unit(2, "km")
  32198. },
  32199. {
  32200. name: "Gigamacro",
  32201. height: math.unit(2000, "km")
  32202. },
  32203. {
  32204. name: "Teramacro",
  32205. height: math.unit(250000, "km")
  32206. },
  32207. ]
  32208. ))
  32209. characterMakers.push(() => makeCharacter(
  32210. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32211. {
  32212. front: {
  32213. height: math.unit(4, "meters"),
  32214. weight: math.unit(150, "kg"),
  32215. name: "Front",
  32216. image: {
  32217. source: "./media/characters/caledvwlch/front.svg",
  32218. extra: 1757/1537,
  32219. bottom: 31/1788
  32220. }
  32221. },
  32222. side: {
  32223. height: math.unit(4, "meters"),
  32224. weight: math.unit(150, "kg"),
  32225. name: "Side",
  32226. image: {
  32227. source: "./media/characters/caledvwlch/side.svg",
  32228. extra: 1605 / 1536,
  32229. bottom: 31 / 1636
  32230. }
  32231. },
  32232. back: {
  32233. height: math.unit(4, "meters"),
  32234. weight: math.unit(150, "kg"),
  32235. name: "Back",
  32236. image: {
  32237. source: "./media/characters/caledvwlch/back.svg",
  32238. extra: 1635 / 1565,
  32239. bottom: 27 / 1662
  32240. }
  32241. },
  32242. },
  32243. [
  32244. {
  32245. name: "\"Incognito\"",
  32246. height: math.unit(4, "meters")
  32247. },
  32248. {
  32249. name: "Small rampage",
  32250. height: math.unit(600, "meters")
  32251. },
  32252. {
  32253. name: "Mega",
  32254. height: math.unit(30, "km")
  32255. },
  32256. {
  32257. name: "Home-size",
  32258. height: math.unit(50, "km"),
  32259. default: true
  32260. },
  32261. {
  32262. name: "Giga",
  32263. height: math.unit(300, "km")
  32264. },
  32265. {
  32266. name: "Lounging",
  32267. height: math.unit(11000, "km")
  32268. },
  32269. {
  32270. name: "Planet snacking",
  32271. height: math.unit(2000000, "km")
  32272. },
  32273. ]
  32274. ))
  32275. characterMakers.push(() => makeCharacter(
  32276. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32277. {
  32278. front: {
  32279. height: math.unit(6, "feet"),
  32280. weight: math.unit(215, "lb"),
  32281. name: "Front",
  32282. image: {
  32283. source: "./media/characters/sapphire-svell/front.svg",
  32284. extra: 495 / 455,
  32285. bottom: 20 / 515
  32286. }
  32287. },
  32288. back: {
  32289. height: math.unit(6, "feet"),
  32290. weight: math.unit(216, "lb"),
  32291. name: "Back",
  32292. image: {
  32293. source: "./media/characters/sapphire-svell/back.svg",
  32294. extra: 497 / 477,
  32295. bottom: 7 / 504
  32296. }
  32297. },
  32298. maw: {
  32299. height: math.unit(1.57, "feet"),
  32300. name: "Maw",
  32301. image: {
  32302. source: "./media/characters/sapphire-svell/maw.svg"
  32303. }
  32304. },
  32305. foot: {
  32306. height: math.unit(1.07, "feet"),
  32307. name: "Foot",
  32308. image: {
  32309. source: "./media/characters/sapphire-svell/foot.svg"
  32310. }
  32311. },
  32312. toering: {
  32313. height: math.unit(1.7, "inch"),
  32314. name: "Toering",
  32315. image: {
  32316. source: "./media/characters/sapphire-svell/toering.svg"
  32317. }
  32318. },
  32319. },
  32320. [
  32321. {
  32322. name: "Normal",
  32323. height: math.unit(300, "feet"),
  32324. default: true
  32325. },
  32326. {
  32327. name: "Augmented",
  32328. height: math.unit(1250, "feet")
  32329. },
  32330. {
  32331. name: "Unleashed",
  32332. height: math.unit(3000, "feet")
  32333. },
  32334. ]
  32335. ))
  32336. characterMakers.push(() => makeCharacter(
  32337. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32338. {
  32339. side: {
  32340. height: math.unit(2 + 3 / 12, "feet"),
  32341. weight: math.unit(110, "lb"),
  32342. name: "Side",
  32343. image: {
  32344. source: "./media/characters/glitch-flux/side.svg",
  32345. extra: 997 / 805,
  32346. bottom: 20 / 1017
  32347. }
  32348. },
  32349. },
  32350. [
  32351. {
  32352. name: "Normal",
  32353. height: math.unit(2 + 3 / 12, "feet"),
  32354. default: true
  32355. },
  32356. ]
  32357. ))
  32358. characterMakers.push(() => makeCharacter(
  32359. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32360. {
  32361. front: {
  32362. height: math.unit(4, "meters"),
  32363. name: "Front",
  32364. image: {
  32365. source: "./media/characters/mid/front.svg",
  32366. extra: 507 / 476,
  32367. bottom: 17 / 524
  32368. }
  32369. },
  32370. back: {
  32371. height: math.unit(4, "meters"),
  32372. name: "Back",
  32373. image: {
  32374. source: "./media/characters/mid/back.svg",
  32375. extra: 519 / 487,
  32376. bottom: 7 / 526
  32377. }
  32378. },
  32379. stuck: {
  32380. height: math.unit(2.2, "meters"),
  32381. name: "Stuck",
  32382. image: {
  32383. source: "./media/characters/mid/stuck.svg",
  32384. extra: 1951 / 1869,
  32385. bottom: 88 / 2039
  32386. }
  32387. }
  32388. },
  32389. [
  32390. {
  32391. name: "Normal",
  32392. height: math.unit(4, "meters"),
  32393. default: true
  32394. },
  32395. {
  32396. name: "Big",
  32397. height: math.unit(10, "meters")
  32398. },
  32399. {
  32400. name: "Macro",
  32401. height: math.unit(800, "meters")
  32402. },
  32403. {
  32404. name: "Megamacro",
  32405. height: math.unit(100, "km")
  32406. },
  32407. {
  32408. name: "Overgrown",
  32409. height: math.unit(1, "parsec")
  32410. },
  32411. ]
  32412. ))
  32413. characterMakers.push(() => makeCharacter(
  32414. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32415. {
  32416. front: {
  32417. height: math.unit(2.5, "meters"),
  32418. weight: math.unit(225, "kg"),
  32419. name: "Front",
  32420. image: {
  32421. source: "./media/characters/iris/front.svg",
  32422. extra: 3348 / 3251,
  32423. bottom: 205 / 3553
  32424. }
  32425. },
  32426. maw: {
  32427. height: math.unit(0.56, "meter"),
  32428. name: "Maw",
  32429. image: {
  32430. source: "./media/characters/iris/maw.svg"
  32431. }
  32432. },
  32433. },
  32434. [
  32435. {
  32436. name: "Mewter cat",
  32437. height: math.unit(1.2, "meters")
  32438. },
  32439. {
  32440. name: "Normal",
  32441. height: math.unit(2.5, "meters"),
  32442. default: true
  32443. },
  32444. {
  32445. name: "Minimacro",
  32446. height: math.unit(18, "feet")
  32447. },
  32448. {
  32449. name: "Macro",
  32450. height: math.unit(140, "feet")
  32451. },
  32452. {
  32453. name: "Macro+",
  32454. height: math.unit(180, "meters")
  32455. },
  32456. {
  32457. name: "Megamacro",
  32458. height: math.unit(2746, "meters")
  32459. },
  32460. ]
  32461. ))
  32462. characterMakers.push(() => makeCharacter(
  32463. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32464. {
  32465. front: {
  32466. height: math.unit(6, "feet"),
  32467. weight: math.unit(135, "lb"),
  32468. name: "Front",
  32469. image: {
  32470. source: "./media/characters/axel/front.svg",
  32471. extra: 908 / 908,
  32472. bottom: 58 / 966
  32473. }
  32474. },
  32475. side: {
  32476. height: math.unit(6, "feet"),
  32477. weight: math.unit(135, "lb"),
  32478. name: "Side",
  32479. image: {
  32480. source: "./media/characters/axel/side.svg",
  32481. extra: 958 / 958,
  32482. bottom: 11 / 969
  32483. }
  32484. },
  32485. back: {
  32486. height: math.unit(6, "feet"),
  32487. weight: math.unit(135, "lb"),
  32488. name: "Back",
  32489. image: {
  32490. source: "./media/characters/axel/back.svg",
  32491. extra: 887 / 887,
  32492. bottom: 34 / 921
  32493. }
  32494. },
  32495. head: {
  32496. height: math.unit(1.07, "feet"),
  32497. name: "Head",
  32498. image: {
  32499. source: "./media/characters/axel/head.svg"
  32500. }
  32501. },
  32502. beak: {
  32503. height: math.unit(1.4, "feet"),
  32504. name: "Beak",
  32505. image: {
  32506. source: "./media/characters/axel/beak.svg"
  32507. }
  32508. },
  32509. beakSide: {
  32510. height: math.unit(1.4, "feet"),
  32511. name: "Beak Side",
  32512. image: {
  32513. source: "./media/characters/axel/beak-side.svg"
  32514. }
  32515. },
  32516. sheath: {
  32517. height: math.unit(0.5, "feet"),
  32518. name: "Sheath",
  32519. image: {
  32520. source: "./media/characters/axel/sheath.svg"
  32521. }
  32522. },
  32523. dick: {
  32524. height: math.unit(0.98, "feet"),
  32525. name: "Dick",
  32526. image: {
  32527. source: "./media/characters/axel/dick.svg"
  32528. }
  32529. },
  32530. },
  32531. [
  32532. {
  32533. name: "Macro",
  32534. height: math.unit(68, "meters"),
  32535. default: true
  32536. },
  32537. ]
  32538. ))
  32539. characterMakers.push(() => makeCharacter(
  32540. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32541. {
  32542. front: {
  32543. height: math.unit(3.5, "meters"),
  32544. weight: math.unit(1200, "kg"),
  32545. name: "Front",
  32546. image: {
  32547. source: "./media/characters/joanna/front.svg",
  32548. extra: 1596 / 1488,
  32549. bottom: 29 / 1625
  32550. }
  32551. },
  32552. back: {
  32553. height: math.unit(3.5, "meters"),
  32554. weight: math.unit(1200, "kg"),
  32555. name: "Back",
  32556. image: {
  32557. source: "./media/characters/joanna/back.svg",
  32558. extra: 1594 / 1495,
  32559. bottom: 26 / 1620
  32560. }
  32561. },
  32562. frontShorts: {
  32563. height: math.unit(3.5, "meters"),
  32564. weight: math.unit(1200, "kg"),
  32565. name: "Front (Shorts)",
  32566. image: {
  32567. source: "./media/characters/joanna/front-shorts.svg",
  32568. extra: 1596 / 1488,
  32569. bottom: 29 / 1625
  32570. }
  32571. },
  32572. frontBiker: {
  32573. height: math.unit(3.5, "meters"),
  32574. weight: math.unit(1200, "kg"),
  32575. name: "Front (Biker)",
  32576. image: {
  32577. source: "./media/characters/joanna/front-biker.svg",
  32578. extra: 1596 / 1488,
  32579. bottom: 29 / 1625
  32580. }
  32581. },
  32582. backBiker: {
  32583. height: math.unit(3.5, "meters"),
  32584. weight: math.unit(1200, "kg"),
  32585. name: "Back (Biker)",
  32586. image: {
  32587. source: "./media/characters/joanna/back-biker.svg",
  32588. extra: 1594 / 1495,
  32589. bottom: 88 / 1682
  32590. }
  32591. },
  32592. bikeLeft: {
  32593. height: math.unit(2.4, "meters"),
  32594. weight: math.unit(1600, "kg"),
  32595. name: "Bike (Left)",
  32596. image: {
  32597. source: "./media/characters/joanna/bike-left.svg",
  32598. extra: 720 / 720,
  32599. bottom: 8 / 728
  32600. }
  32601. },
  32602. bikeRight: {
  32603. height: math.unit(2.4, "meters"),
  32604. weight: math.unit(1600, "kg"),
  32605. name: "Bike (Right)",
  32606. image: {
  32607. source: "./media/characters/joanna/bike-right.svg",
  32608. extra: 720 / 720,
  32609. bottom: 8 / 728
  32610. }
  32611. },
  32612. },
  32613. [
  32614. {
  32615. name: "Incognito",
  32616. height: math.unit(3.5, "meters")
  32617. },
  32618. {
  32619. name: "Casual Big",
  32620. height: math.unit(200, "meters")
  32621. },
  32622. {
  32623. name: "Macro",
  32624. height: math.unit(600, "meters")
  32625. },
  32626. {
  32627. name: "Original",
  32628. height: math.unit(20, "km"),
  32629. default: true
  32630. },
  32631. {
  32632. name: "Giga",
  32633. height: math.unit(400, "km")
  32634. },
  32635. {
  32636. name: "Lounging",
  32637. height: math.unit(1500, "km")
  32638. },
  32639. {
  32640. name: "Planetary",
  32641. height: math.unit(200000, "km")
  32642. },
  32643. ]
  32644. ))
  32645. characterMakers.push(() => makeCharacter(
  32646. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32647. {
  32648. front: {
  32649. height: math.unit(6, "feet"),
  32650. weight: math.unit(150, "lb"),
  32651. name: "Front",
  32652. image: {
  32653. source: "./media/characters/hugo-sigil/front.svg",
  32654. extra: 522 / 500,
  32655. bottom: 2 / 524
  32656. }
  32657. },
  32658. back: {
  32659. height: math.unit(6, "feet"),
  32660. weight: math.unit(150, "lb"),
  32661. name: "Back",
  32662. image: {
  32663. source: "./media/characters/hugo-sigil/back.svg",
  32664. extra: 519 / 495,
  32665. bottom: 5 / 524
  32666. }
  32667. },
  32668. maw: {
  32669. height: math.unit(1.4, "feet"),
  32670. weight: math.unit(150, "lb"),
  32671. name: "Maw",
  32672. image: {
  32673. source: "./media/characters/hugo-sigil/maw.svg"
  32674. }
  32675. },
  32676. feet: {
  32677. height: math.unit(1.56, "feet"),
  32678. weight: math.unit(150, "lb"),
  32679. name: "Feet",
  32680. image: {
  32681. source: "./media/characters/hugo-sigil/feet.svg",
  32682. extra: 177 / 177,
  32683. bottom: 12 / 189
  32684. }
  32685. },
  32686. },
  32687. [
  32688. {
  32689. name: "Normal",
  32690. height: math.unit(6, "feet")
  32691. },
  32692. {
  32693. name: "Macro",
  32694. height: math.unit(200, "feet"),
  32695. default: true
  32696. },
  32697. ]
  32698. ))
  32699. characterMakers.push(() => makeCharacter(
  32700. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32701. {
  32702. front: {
  32703. height: math.unit(6, "feet"),
  32704. weight: math.unit(150, "lb"),
  32705. name: "Front",
  32706. image: {
  32707. source: "./media/characters/peri/front.svg",
  32708. extra: 2354 / 2233,
  32709. bottom: 49 / 2403
  32710. }
  32711. },
  32712. },
  32713. [
  32714. {
  32715. name: "Really Small",
  32716. height: math.unit(1, "nm")
  32717. },
  32718. {
  32719. name: "Micro",
  32720. height: math.unit(4, "inches")
  32721. },
  32722. {
  32723. name: "Normal",
  32724. height: math.unit(7, "inches"),
  32725. default: true
  32726. },
  32727. {
  32728. name: "Macro",
  32729. height: math.unit(400, "feet")
  32730. },
  32731. {
  32732. name: "Megamacro",
  32733. height: math.unit(100, "miles")
  32734. },
  32735. ]
  32736. ))
  32737. characterMakers.push(() => makeCharacter(
  32738. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32739. {
  32740. frontSlim: {
  32741. height: math.unit(7, "feet"),
  32742. name: "Front (Slim)",
  32743. image: {
  32744. source: "./media/characters/issilora/front-slim.svg",
  32745. extra: 529 / 449,
  32746. bottom: 53 / 582
  32747. }
  32748. },
  32749. sideSlim: {
  32750. height: math.unit(7, "feet"),
  32751. name: "Side (Slim)",
  32752. image: {
  32753. source: "./media/characters/issilora/side-slim.svg",
  32754. extra: 570 / 480,
  32755. bottom: 30 / 600
  32756. }
  32757. },
  32758. backSlim: {
  32759. height: math.unit(7, "feet"),
  32760. name: "Back (Slim)",
  32761. image: {
  32762. source: "./media/characters/issilora/back-slim.svg",
  32763. extra: 537 / 455,
  32764. bottom: 46 / 583
  32765. }
  32766. },
  32767. frontBuff: {
  32768. height: math.unit(7, "feet"),
  32769. name: "Front (Buff)",
  32770. image: {
  32771. source: "./media/characters/issilora/front-buff.svg",
  32772. extra: 2310 / 2035,
  32773. bottom: 335 / 2645
  32774. }
  32775. },
  32776. head: {
  32777. height: math.unit(1.94, "feet"),
  32778. name: "Head",
  32779. image: {
  32780. source: "./media/characters/issilora/head.svg"
  32781. }
  32782. },
  32783. },
  32784. [
  32785. {
  32786. name: "Minimum",
  32787. height: math.unit(7, "feet")
  32788. },
  32789. {
  32790. name: "Comfortable",
  32791. height: math.unit(17, "feet")
  32792. },
  32793. {
  32794. name: "Fun Size",
  32795. height: math.unit(47, "feet")
  32796. },
  32797. {
  32798. name: "Natural Macro",
  32799. height: math.unit(137, "feet"),
  32800. default: true
  32801. },
  32802. {
  32803. name: "Maximum Kaiju",
  32804. height: math.unit(397, "feet")
  32805. },
  32806. ]
  32807. ))
  32808. characterMakers.push(() => makeCharacter(
  32809. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32810. {
  32811. front: {
  32812. height: math.unit(50 + 9/12, "feet"),
  32813. weight: math.unit(32.8, "tons"),
  32814. name: "Front",
  32815. image: {
  32816. source: "./media/characters/irb'iiritaahn/front.svg",
  32817. extra: 1878/1826,
  32818. bottom: 326/2204
  32819. }
  32820. },
  32821. back: {
  32822. height: math.unit(50 + 9/12, "feet"),
  32823. weight: math.unit(32.8, "tons"),
  32824. name: "Back",
  32825. image: {
  32826. source: "./media/characters/irb'iiritaahn/back.svg",
  32827. extra: 2052/2018,
  32828. bottom: 152/2204
  32829. }
  32830. },
  32831. head: {
  32832. height: math.unit(12.86, "feet"),
  32833. name: "Head",
  32834. image: {
  32835. source: "./media/characters/irb'iiritaahn/head.svg"
  32836. }
  32837. },
  32838. maw: {
  32839. height: math.unit(9.66, "feet"),
  32840. name: "Maw",
  32841. image: {
  32842. source: "./media/characters/irb'iiritaahn/maw.svg"
  32843. }
  32844. },
  32845. frontDick: {
  32846. height: math.unit(8.78461, "feet"),
  32847. name: "Front Dick",
  32848. image: {
  32849. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32850. }
  32851. },
  32852. rearDick: {
  32853. height: math.unit(8.78461, "feet"),
  32854. name: "Rear Dick",
  32855. image: {
  32856. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32857. }
  32858. },
  32859. rearDickUnfolded: {
  32860. height: math.unit(8.78, "feet"),
  32861. name: "Rear Dick (Unfolded)",
  32862. image: {
  32863. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32864. }
  32865. },
  32866. wings: {
  32867. height: math.unit(43, "feet"),
  32868. name: "Wings",
  32869. image: {
  32870. source: "./media/characters/irb'iiritaahn/wings.svg"
  32871. }
  32872. },
  32873. },
  32874. [
  32875. {
  32876. name: "Macro",
  32877. height: math.unit(50 + 9/12, "feet"),
  32878. default: true
  32879. },
  32880. ]
  32881. ))
  32882. characterMakers.push(() => makeCharacter(
  32883. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32884. {
  32885. front: {
  32886. height: math.unit(205, "cm"),
  32887. weight: math.unit(102, "kg"),
  32888. name: "Front",
  32889. image: {
  32890. source: "./media/characters/irbisgreif/front.svg",
  32891. extra: 785/706,
  32892. bottom: 13/798
  32893. }
  32894. },
  32895. back: {
  32896. height: math.unit(205, "cm"),
  32897. weight: math.unit(102, "kg"),
  32898. name: "Back",
  32899. image: {
  32900. source: "./media/characters/irbisgreif/back.svg",
  32901. extra: 713/701,
  32902. bottom: 26/739
  32903. }
  32904. },
  32905. frontDressed: {
  32906. height: math.unit(216, "cm"),
  32907. weight: math.unit(102, "kg"),
  32908. name: "Front-dressed",
  32909. image: {
  32910. source: "./media/characters/irbisgreif/front-dressed.svg",
  32911. extra: 902/776,
  32912. bottom: 14/916
  32913. }
  32914. },
  32915. sideDressed: {
  32916. height: math.unit(195, "cm"),
  32917. weight: math.unit(102, "kg"),
  32918. name: "Side-dressed",
  32919. image: {
  32920. source: "./media/characters/irbisgreif/side-dressed.svg",
  32921. extra: 788/688,
  32922. bottom: 21/809
  32923. }
  32924. },
  32925. backDressed: {
  32926. height: math.unit(216, "cm"),
  32927. weight: math.unit(102, "kg"),
  32928. name: "Back-dressed",
  32929. image: {
  32930. source: "./media/characters/irbisgreif/back-dressed.svg",
  32931. extra: 901/783,
  32932. bottom: 10/911
  32933. }
  32934. },
  32935. dick: {
  32936. height: math.unit(0.49, "feet"),
  32937. name: "Dick",
  32938. image: {
  32939. source: "./media/characters/irbisgreif/dick.svg"
  32940. }
  32941. },
  32942. wingTop: {
  32943. height: math.unit(1.93 , "feet"),
  32944. name: "Wing-top",
  32945. image: {
  32946. source: "./media/characters/irbisgreif/wing-top.svg"
  32947. }
  32948. },
  32949. wingBottom: {
  32950. height: math.unit(1.93 , "feet"),
  32951. name: "Wing-bottom",
  32952. image: {
  32953. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32954. }
  32955. },
  32956. },
  32957. [
  32958. {
  32959. name: "Normal",
  32960. height: math.unit(216, "cm"),
  32961. default: true
  32962. },
  32963. ]
  32964. ))
  32965. characterMakers.push(() => makeCharacter(
  32966. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32967. {
  32968. front: {
  32969. height: math.unit(6, "feet"),
  32970. weight: math.unit(150, "lb"),
  32971. name: "Front",
  32972. image: {
  32973. source: "./media/characters/pride/front.svg",
  32974. extra: 1299/1230,
  32975. bottom: 18/1317
  32976. }
  32977. },
  32978. },
  32979. [
  32980. {
  32981. name: "Normal",
  32982. height: math.unit(7, "feet")
  32983. },
  32984. {
  32985. name: "Mini-macro",
  32986. height: math.unit(11, "feet")
  32987. },
  32988. {
  32989. name: "Macro",
  32990. height: math.unit(15, "meters"),
  32991. default: true
  32992. },
  32993. {
  32994. name: "Macro+",
  32995. height: math.unit(40, "meters")
  32996. },
  32997. ]
  32998. ))
  32999. characterMakers.push(() => makeCharacter(
  33000. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33001. {
  33002. front: {
  33003. height: math.unit(4 + 2 / 12, "feet"),
  33004. weight: math.unit(95, "lb"),
  33005. name: "Front",
  33006. image: {
  33007. source: "./media/characters/vaelophis-nyx/front.svg",
  33008. extra: 2532/2330,
  33009. bottom: 0/2532
  33010. }
  33011. },
  33012. back: {
  33013. height: math.unit(4 + 2 / 12, "feet"),
  33014. weight: math.unit(95, "lb"),
  33015. name: "Back",
  33016. image: {
  33017. source: "./media/characters/vaelophis-nyx/back.svg",
  33018. extra: 2484/2361,
  33019. bottom: 0/2484
  33020. }
  33021. },
  33022. feralSide: {
  33023. height: math.unit(2 + 1/12, "feet"),
  33024. weight: math.unit(20, "lb"),
  33025. name: "Feral (Side)",
  33026. image: {
  33027. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33028. extra: 1721/1581,
  33029. bottom: 70/1791
  33030. }
  33031. },
  33032. feralLazing: {
  33033. height: math.unit(1.08, "feet"),
  33034. weight: math.unit(20, "lb"),
  33035. name: "Feral (Lazing)",
  33036. image: {
  33037. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33038. extra: 822/822,
  33039. bottom: 248/1070
  33040. }
  33041. },
  33042. ear: {
  33043. height: math.unit(0.416, "feet"),
  33044. name: "Ear",
  33045. image: {
  33046. source: "./media/characters/vaelophis-nyx/ear.svg"
  33047. }
  33048. },
  33049. eye: {
  33050. height: math.unit(0.0748, "feet"),
  33051. name: "Eye",
  33052. image: {
  33053. source: "./media/characters/vaelophis-nyx/eye.svg"
  33054. }
  33055. },
  33056. mouth: {
  33057. height: math.unit(0.378, "feet"),
  33058. name: "Mouth",
  33059. image: {
  33060. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33061. }
  33062. },
  33063. spade: {
  33064. height: math.unit(0.55, "feet"),
  33065. name: "Spade",
  33066. image: {
  33067. source: "./media/characters/vaelophis-nyx/spade.svg"
  33068. }
  33069. },
  33070. },
  33071. [
  33072. {
  33073. name: "Normal",
  33074. height: math.unit(4 + 2/12, "feet"),
  33075. default: true
  33076. },
  33077. ]
  33078. ))
  33079. characterMakers.push(() => makeCharacter(
  33080. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33081. {
  33082. front: {
  33083. height: math.unit(7, "feet"),
  33084. weight: math.unit(231, "lb"),
  33085. name: "Front",
  33086. image: {
  33087. source: "./media/characters/flux/front.svg",
  33088. extra: 919/871,
  33089. bottom: 0/919
  33090. }
  33091. },
  33092. back: {
  33093. height: math.unit(7, "feet"),
  33094. weight: math.unit(231, "lb"),
  33095. name: "Back",
  33096. image: {
  33097. source: "./media/characters/flux/back.svg",
  33098. extra: 1040/992,
  33099. bottom: 0/1040
  33100. }
  33101. },
  33102. frontDressed: {
  33103. height: math.unit(7, "feet"),
  33104. weight: math.unit(231, "lb"),
  33105. name: "Front (Dressed)",
  33106. image: {
  33107. source: "./media/characters/flux/front-dressed.svg",
  33108. extra: 919/871,
  33109. bottom: 0/919
  33110. }
  33111. },
  33112. feralSide: {
  33113. height: math.unit(5, "feet"),
  33114. weight: math.unit(150, "lb"),
  33115. name: "Feral (Side)",
  33116. image: {
  33117. source: "./media/characters/flux/feral-side.svg",
  33118. extra: 598/528,
  33119. bottom: 28/626
  33120. }
  33121. },
  33122. head: {
  33123. height: math.unit(1.585, "feet"),
  33124. name: "Head",
  33125. image: {
  33126. source: "./media/characters/flux/head.svg"
  33127. }
  33128. },
  33129. headSide: {
  33130. height: math.unit(1.74, "feet"),
  33131. name: "Head (Side)",
  33132. image: {
  33133. source: "./media/characters/flux/head-side.svg"
  33134. }
  33135. },
  33136. headSideFire: {
  33137. height: math.unit(1.76, "feet"),
  33138. name: "Head (Side, Fire)",
  33139. image: {
  33140. source: "./media/characters/flux/head-side-fire.svg"
  33141. }
  33142. },
  33143. },
  33144. [
  33145. {
  33146. name: "Normal",
  33147. height: math.unit(7, "feet"),
  33148. default: true
  33149. },
  33150. ]
  33151. ))
  33152. characterMakers.push(() => makeCharacter(
  33153. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33154. {
  33155. front: {
  33156. height: math.unit(9, "feet"),
  33157. weight: math.unit(1012, "lb"),
  33158. name: "Front",
  33159. image: {
  33160. source: "./media/characters/ulfra-lupae/front.svg",
  33161. extra: 1083/1011,
  33162. bottom: 67/1150
  33163. }
  33164. },
  33165. },
  33166. [
  33167. {
  33168. name: "Micro",
  33169. height: math.unit(6, "inches")
  33170. },
  33171. {
  33172. name: "Socializing",
  33173. height: math.unit(6 + 5/12, "feet")
  33174. },
  33175. {
  33176. name: "Normal",
  33177. height: math.unit(9, "feet"),
  33178. default: true
  33179. },
  33180. {
  33181. name: "Macro",
  33182. height: math.unit(150, "feet")
  33183. },
  33184. ]
  33185. ))
  33186. characterMakers.push(() => makeCharacter(
  33187. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33188. {
  33189. front: {
  33190. height: math.unit(5 + 2/12, "feet"),
  33191. weight: math.unit(120, "lb"),
  33192. name: "Front",
  33193. image: {
  33194. source: "./media/characters/timber/front.svg",
  33195. extra: 2814/2705,
  33196. bottom: 181/2995
  33197. }
  33198. },
  33199. },
  33200. [
  33201. {
  33202. name: "Normal",
  33203. height: math.unit(5 + 2/12, "feet"),
  33204. default: true
  33205. },
  33206. ]
  33207. ))
  33208. characterMakers.push(() => makeCharacter(
  33209. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33210. {
  33211. front: {
  33212. height: math.unit(9, "feet"),
  33213. name: "Front",
  33214. image: {
  33215. source: "./media/characters/nicki/front.svg",
  33216. extra: 1240/990,
  33217. bottom: 45/1285
  33218. },
  33219. form: "anthro",
  33220. default: true
  33221. },
  33222. side: {
  33223. height: math.unit(9, "feet"),
  33224. name: "Side",
  33225. image: {
  33226. source: "./media/characters/nicki/side.svg",
  33227. extra: 1047/973,
  33228. bottom: 61/1108
  33229. },
  33230. form: "anthro"
  33231. },
  33232. back: {
  33233. height: math.unit(9, "feet"),
  33234. name: "Back",
  33235. image: {
  33236. source: "./media/characters/nicki/back.svg",
  33237. extra: 1006/965,
  33238. bottom: 39/1045
  33239. },
  33240. form: "anthro"
  33241. },
  33242. taur: {
  33243. height: math.unit(15, "feet"),
  33244. name: "Taur",
  33245. image: {
  33246. source: "./media/characters/nicki/taur.svg",
  33247. extra: 1592/1347,
  33248. bottom: 0/1592
  33249. },
  33250. form: "taur",
  33251. default: true
  33252. },
  33253. },
  33254. [
  33255. {
  33256. name: "Normal",
  33257. height: math.unit(9, "feet"),
  33258. form: "anthro",
  33259. default: true
  33260. },
  33261. {
  33262. name: "Normal",
  33263. height: math.unit(15, "feet"),
  33264. form: "taur",
  33265. default: true
  33266. }
  33267. ],
  33268. {
  33269. "anthro": {
  33270. name: "Anthro",
  33271. default: true
  33272. },
  33273. "taur": {
  33274. name: "Taur"
  33275. }
  33276. }
  33277. ))
  33278. characterMakers.push(() => makeCharacter(
  33279. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33280. {
  33281. front: {
  33282. height: math.unit(7 + 10/12, "feet"),
  33283. weight: math.unit(3.5, "tons"),
  33284. name: "Front",
  33285. image: {
  33286. source: "./media/characters/lee/front.svg",
  33287. extra: 1773/1615,
  33288. bottom: 86/1859
  33289. }
  33290. },
  33291. hand: {
  33292. height: math.unit(1.78, "feet"),
  33293. name: "Hand",
  33294. image: {
  33295. source: "./media/characters/lee/hand.svg"
  33296. }
  33297. },
  33298. maw: {
  33299. height: math.unit(1.18, "feet"),
  33300. name: "Maw",
  33301. image: {
  33302. source: "./media/characters/lee/maw.svg"
  33303. }
  33304. },
  33305. },
  33306. [
  33307. {
  33308. name: "Normal",
  33309. height: math.unit(7 + 10/12, "feet"),
  33310. default: true
  33311. },
  33312. ]
  33313. ))
  33314. characterMakers.push(() => makeCharacter(
  33315. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33316. {
  33317. front: {
  33318. height: math.unit(9, "feet"),
  33319. name: "Front",
  33320. image: {
  33321. source: "./media/characters/guti/front.svg",
  33322. extra: 4551/4355,
  33323. bottom: 123/4674
  33324. }
  33325. },
  33326. tongue: {
  33327. height: math.unit(1, "feet"),
  33328. name: "Tongue",
  33329. image: {
  33330. source: "./media/characters/guti/tongue.svg"
  33331. }
  33332. },
  33333. paw: {
  33334. height: math.unit(1.18, "feet"),
  33335. name: "Paw",
  33336. image: {
  33337. source: "./media/characters/guti/paw.svg"
  33338. }
  33339. },
  33340. },
  33341. [
  33342. {
  33343. name: "Normal",
  33344. height: math.unit(9, "feet"),
  33345. default: true
  33346. },
  33347. ]
  33348. ))
  33349. characterMakers.push(() => makeCharacter(
  33350. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33351. {
  33352. side: {
  33353. height: math.unit(5, "meters"),
  33354. name: "Side",
  33355. image: {
  33356. source: "./media/characters/vesper/side.svg",
  33357. extra: 1605/1518,
  33358. bottom: 0/1605
  33359. }
  33360. },
  33361. },
  33362. [
  33363. {
  33364. name: "Small",
  33365. height: math.unit(5, "meters")
  33366. },
  33367. {
  33368. name: "Sage",
  33369. height: math.unit(100, "meters"),
  33370. default: true
  33371. },
  33372. {
  33373. name: "Fun Size",
  33374. height: math.unit(600, "meters")
  33375. },
  33376. {
  33377. name: "Goddess",
  33378. height: math.unit(20000, "km")
  33379. },
  33380. {
  33381. name: "Maximum",
  33382. height: math.unit(5, "galaxies")
  33383. },
  33384. ]
  33385. ))
  33386. characterMakers.push(() => makeCharacter(
  33387. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33388. {
  33389. front: {
  33390. height: math.unit(6 + 3/12, "feet"),
  33391. weight: math.unit(190, "lb"),
  33392. name: "Front",
  33393. image: {
  33394. source: "./media/characters/gawain/front.svg",
  33395. extra: 2222/2139,
  33396. bottom: 90/2312
  33397. }
  33398. },
  33399. back: {
  33400. height: math.unit(6 + 3/12, "feet"),
  33401. weight: math.unit(190, "lb"),
  33402. name: "Back",
  33403. image: {
  33404. source: "./media/characters/gawain/back.svg",
  33405. extra: 2199/2111,
  33406. bottom: 73/2272
  33407. }
  33408. },
  33409. },
  33410. [
  33411. {
  33412. name: "Normal",
  33413. height: math.unit(6 + 3/12, "feet"),
  33414. default: true
  33415. },
  33416. ]
  33417. ))
  33418. characterMakers.push(() => makeCharacter(
  33419. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33420. {
  33421. side: {
  33422. height: math.unit(3.5, "meters"),
  33423. weight: math.unit(16000, "lb"),
  33424. name: "Side",
  33425. image: {
  33426. source: "./media/characters/dascalti/side.svg",
  33427. extra: 392/273,
  33428. bottom: 47/439
  33429. }
  33430. },
  33431. breath: {
  33432. height: math.unit(7.4, "feet"),
  33433. name: "Breath",
  33434. image: {
  33435. source: "./media/characters/dascalti/breath.svg"
  33436. }
  33437. },
  33438. fed: {
  33439. height: math.unit(3.6, "meters"),
  33440. weight: math.unit(16000, "lb"),
  33441. name: "Fed",
  33442. image: {
  33443. source: "./media/characters/dascalti/fed.svg",
  33444. extra: 1419/820,
  33445. bottom: 95/1514
  33446. }
  33447. },
  33448. },
  33449. [
  33450. {
  33451. name: "Normal",
  33452. height: math.unit(3.5, "meters"),
  33453. default: true
  33454. },
  33455. ]
  33456. ))
  33457. characterMakers.push(() => makeCharacter(
  33458. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33459. {
  33460. front: {
  33461. height: math.unit(3 + 5/12, "feet"),
  33462. name: "Front",
  33463. image: {
  33464. source: "./media/characters/mauve/front.svg",
  33465. extra: 1126/1033,
  33466. bottom: 65/1191
  33467. }
  33468. },
  33469. side: {
  33470. height: math.unit(3 + 5/12, "feet"),
  33471. name: "Side",
  33472. image: {
  33473. source: "./media/characters/mauve/side.svg",
  33474. extra: 1089/1001,
  33475. bottom: 29/1118
  33476. }
  33477. },
  33478. back: {
  33479. height: math.unit(3 + 5/12, "feet"),
  33480. name: "Back",
  33481. image: {
  33482. source: "./media/characters/mauve/back.svg",
  33483. extra: 1173/1053,
  33484. bottom: 109/1282
  33485. }
  33486. },
  33487. },
  33488. [
  33489. {
  33490. name: "Normal",
  33491. height: math.unit(3 + 5/12, "feet"),
  33492. default: true
  33493. },
  33494. ]
  33495. ))
  33496. characterMakers.push(() => makeCharacter(
  33497. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33498. {
  33499. front: {
  33500. height: math.unit(6 + 3/12, "feet"),
  33501. weight: math.unit(430, "lb"),
  33502. name: "Front",
  33503. image: {
  33504. source: "./media/characters/carlos/front.svg",
  33505. extra: 1964/1913,
  33506. bottom: 70/2034
  33507. }
  33508. },
  33509. },
  33510. [
  33511. {
  33512. name: "Normal",
  33513. height: math.unit(6 + 3/12, "feet"),
  33514. default: true
  33515. },
  33516. ]
  33517. ))
  33518. characterMakers.push(() => makeCharacter(
  33519. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33520. {
  33521. back: {
  33522. height: math.unit(5 + 10/12, "feet"),
  33523. weight: math.unit(200, "lb"),
  33524. name: "Back",
  33525. image: {
  33526. source: "./media/characters/jax/back.svg",
  33527. extra: 764/739,
  33528. bottom: 25/789
  33529. }
  33530. },
  33531. },
  33532. [
  33533. {
  33534. name: "Normal",
  33535. height: math.unit(5 + 10/12, "feet"),
  33536. default: true
  33537. },
  33538. ]
  33539. ))
  33540. characterMakers.push(() => makeCharacter(
  33541. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33542. {
  33543. front: {
  33544. height: math.unit(8, "feet"),
  33545. weight: math.unit(250, "lb"),
  33546. name: "Front",
  33547. image: {
  33548. source: "./media/characters/eikthynir/front.svg",
  33549. extra: 1332/1166,
  33550. bottom: 82/1414
  33551. }
  33552. },
  33553. back: {
  33554. height: math.unit(8, "feet"),
  33555. weight: math.unit(250, "lb"),
  33556. name: "Back",
  33557. image: {
  33558. source: "./media/characters/eikthynir/back.svg",
  33559. extra: 1342/1190,
  33560. bottom: 19/1361
  33561. }
  33562. },
  33563. dick: {
  33564. height: math.unit(2.35, "feet"),
  33565. name: "Dick",
  33566. image: {
  33567. source: "./media/characters/eikthynir/dick.svg"
  33568. }
  33569. },
  33570. },
  33571. [
  33572. {
  33573. name: "Normal",
  33574. height: math.unit(8, "feet"),
  33575. default: true
  33576. },
  33577. ]
  33578. ))
  33579. characterMakers.push(() => makeCharacter(
  33580. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33581. {
  33582. front: {
  33583. height: math.unit(99, "meters"),
  33584. weight: math.unit(13000, "tons"),
  33585. name: "Front",
  33586. image: {
  33587. source: "./media/characters/zlmos/front.svg",
  33588. extra: 2202/1992,
  33589. bottom: 315/2517
  33590. }
  33591. },
  33592. },
  33593. [
  33594. {
  33595. name: "Macro",
  33596. height: math.unit(99, "meters"),
  33597. default: true
  33598. },
  33599. ]
  33600. ))
  33601. characterMakers.push(() => makeCharacter(
  33602. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33603. {
  33604. front: {
  33605. height: math.unit(6 + 5/12, "feet"),
  33606. name: "Front",
  33607. image: {
  33608. source: "./media/characters/purri/front.svg",
  33609. extra: 1698/1610,
  33610. bottom: 32/1730
  33611. }
  33612. },
  33613. frontAlt: {
  33614. height: math.unit(6 + 5/12, "feet"),
  33615. name: "Front (Alt)",
  33616. image: {
  33617. source: "./media/characters/purri/front-alt.svg",
  33618. extra: 450/420,
  33619. bottom: 26/476
  33620. }
  33621. },
  33622. boots: {
  33623. height: math.unit(5.5, "feet"),
  33624. name: "Boots",
  33625. image: {
  33626. source: "./media/characters/purri/boots.svg",
  33627. extra: 905/853,
  33628. bottom: 18/923
  33629. }
  33630. },
  33631. lying: {
  33632. height: math.unit(2, "feet"),
  33633. name: "Lying",
  33634. image: {
  33635. source: "./media/characters/purri/lying.svg",
  33636. extra: 940/843,
  33637. bottom: 146/1086
  33638. }
  33639. },
  33640. devious: {
  33641. height: math.unit(1.77, "feet"),
  33642. name: "Devious",
  33643. image: {
  33644. source: "./media/characters/purri/devious.svg",
  33645. extra: 1440/1155,
  33646. bottom: 147/1587
  33647. }
  33648. },
  33649. bean: {
  33650. height: math.unit(1.94, "feet"),
  33651. name: "Bean",
  33652. image: {
  33653. source: "./media/characters/purri/bean.svg"
  33654. }
  33655. },
  33656. },
  33657. [
  33658. {
  33659. name: "Micro",
  33660. height: math.unit(1, "mm")
  33661. },
  33662. {
  33663. name: "Normal",
  33664. height: math.unit(6 + 5/12, "feet"),
  33665. default: true
  33666. },
  33667. {
  33668. name: "Macro :3c",
  33669. height: math.unit(2, "miles")
  33670. },
  33671. ]
  33672. ))
  33673. characterMakers.push(() => makeCharacter(
  33674. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33675. {
  33676. front: {
  33677. height: math.unit(6 + 2/12, "feet"),
  33678. weight: math.unit(250, "lb"),
  33679. name: "Front",
  33680. image: {
  33681. source: "./media/characters/moonlight/front.svg",
  33682. extra: 1044/908,
  33683. bottom: 56/1100
  33684. }
  33685. },
  33686. feral: {
  33687. height: math.unit(3 + 1/12, "feet"),
  33688. weight: math.unit(50, "kg"),
  33689. name: "Feral",
  33690. image: {
  33691. source: "./media/characters/moonlight/feral.svg",
  33692. extra: 3705/2791,
  33693. bottom: 145/3850
  33694. }
  33695. },
  33696. paw: {
  33697. height: math.unit(1, "feet"),
  33698. name: "Paw",
  33699. image: {
  33700. source: "./media/characters/moonlight/paw.svg"
  33701. }
  33702. },
  33703. paws: {
  33704. height: math.unit(0.98, "feet"),
  33705. name: "Paws",
  33706. image: {
  33707. source: "./media/characters/moonlight/paws.svg",
  33708. extra: 939/939,
  33709. bottom: 50/989
  33710. }
  33711. },
  33712. mouth: {
  33713. height: math.unit(0.48, "feet"),
  33714. name: "Mouth",
  33715. image: {
  33716. source: "./media/characters/moonlight/mouth.svg"
  33717. }
  33718. },
  33719. dick: {
  33720. height: math.unit(1.46, "feet"),
  33721. name: "Dick",
  33722. image: {
  33723. source: "./media/characters/moonlight/dick.svg"
  33724. }
  33725. },
  33726. },
  33727. [
  33728. {
  33729. name: "Normal",
  33730. height: math.unit(6 + 2/12, "feet"),
  33731. default: true
  33732. },
  33733. {
  33734. name: "Macro",
  33735. height: math.unit(300, "feet")
  33736. },
  33737. {
  33738. name: "Macro+",
  33739. height: math.unit(1, "mile")
  33740. },
  33741. {
  33742. name: "Mt. Moon",
  33743. height: math.unit(5, "miles")
  33744. },
  33745. {
  33746. name: "Megamacro",
  33747. height: math.unit(15, "miles")
  33748. },
  33749. ]
  33750. ))
  33751. characterMakers.push(() => makeCharacter(
  33752. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33753. {
  33754. back: {
  33755. height: math.unit(6, "feet"),
  33756. weight: math.unit(150, "lb"),
  33757. name: "Back",
  33758. image: {
  33759. source: "./media/characters/sylen/back.svg",
  33760. extra: 1335/1273,
  33761. bottom: 107/1442
  33762. }
  33763. },
  33764. },
  33765. [
  33766. {
  33767. name: "Normal",
  33768. height: math.unit(5 + 5/12, "feet")
  33769. },
  33770. {
  33771. name: "Megamacro",
  33772. height: math.unit(3, "miles"),
  33773. default: true
  33774. },
  33775. ]
  33776. ))
  33777. characterMakers.push(() => makeCharacter(
  33778. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33779. {
  33780. front: {
  33781. height: math.unit(6, "feet"),
  33782. weight: math.unit(190, "lb"),
  33783. name: "Front",
  33784. image: {
  33785. source: "./media/characters/huttser/front.svg",
  33786. extra: 1152/1058,
  33787. bottom: 23/1175
  33788. }
  33789. },
  33790. side: {
  33791. height: math.unit(6, "feet"),
  33792. weight: math.unit(190, "lb"),
  33793. name: "Side",
  33794. image: {
  33795. source: "./media/characters/huttser/side.svg",
  33796. extra: 1174/1065,
  33797. bottom: 18/1192
  33798. }
  33799. },
  33800. back: {
  33801. height: math.unit(6, "feet"),
  33802. weight: math.unit(190, "lb"),
  33803. name: "Back",
  33804. image: {
  33805. source: "./media/characters/huttser/back.svg",
  33806. extra: 1158/1056,
  33807. bottom: 12/1170
  33808. }
  33809. },
  33810. },
  33811. [
  33812. ]
  33813. ))
  33814. characterMakers.push(() => makeCharacter(
  33815. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33816. {
  33817. side: {
  33818. height: math.unit(12 + 9/12, "feet"),
  33819. weight: math.unit(15000, "lb"),
  33820. name: "Side",
  33821. image: {
  33822. source: "./media/characters/faan/side.svg",
  33823. extra: 2747/2697,
  33824. bottom: 0/2747
  33825. }
  33826. },
  33827. front: {
  33828. height: math.unit(12 + 9/12, "feet"),
  33829. weight: math.unit(15000, "lb"),
  33830. name: "Front",
  33831. image: {
  33832. source: "./media/characters/faan/front.svg",
  33833. extra: 607/571,
  33834. bottom: 24/631
  33835. }
  33836. },
  33837. head: {
  33838. height: math.unit(2.85, "feet"),
  33839. name: "Head",
  33840. image: {
  33841. source: "./media/characters/faan/head.svg"
  33842. }
  33843. },
  33844. headAlt: {
  33845. height: math.unit(3.13, "feet"),
  33846. name: "Head-alt",
  33847. image: {
  33848. source: "./media/characters/faan/head-alt.svg"
  33849. }
  33850. },
  33851. },
  33852. [
  33853. {
  33854. name: "Normal",
  33855. height: math.unit(12 + 9/12, "feet"),
  33856. default: true
  33857. },
  33858. ]
  33859. ))
  33860. characterMakers.push(() => makeCharacter(
  33861. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33862. {
  33863. front: {
  33864. height: math.unit(6, "feet"),
  33865. weight: math.unit(300, "lb"),
  33866. name: "Front",
  33867. image: {
  33868. source: "./media/characters/tanio/front.svg",
  33869. extra: 711/673,
  33870. bottom: 25/736
  33871. }
  33872. },
  33873. },
  33874. [
  33875. {
  33876. name: "Normal",
  33877. height: math.unit(6, "feet"),
  33878. default: true
  33879. },
  33880. ]
  33881. ))
  33882. characterMakers.push(() => makeCharacter(
  33883. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33884. {
  33885. front: {
  33886. height: math.unit(3, "inches"),
  33887. name: "Front",
  33888. image: {
  33889. source: "./media/characters/noboru/front.svg",
  33890. extra: 1039/932,
  33891. bottom: 18/1057
  33892. }
  33893. },
  33894. },
  33895. [
  33896. {
  33897. name: "Micro",
  33898. height: math.unit(3, "inches"),
  33899. default: true
  33900. },
  33901. ]
  33902. ))
  33903. characterMakers.push(() => makeCharacter(
  33904. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33905. {
  33906. front: {
  33907. height: math.unit(1.85, "meters"),
  33908. weight: math.unit(80, "kg"),
  33909. name: "Front",
  33910. image: {
  33911. source: "./media/characters/daniel-barrett/front.svg",
  33912. extra: 355/337,
  33913. bottom: 9/364
  33914. }
  33915. },
  33916. },
  33917. [
  33918. {
  33919. name: "Pico",
  33920. height: math.unit(0.0433, "mm")
  33921. },
  33922. {
  33923. name: "Nano",
  33924. height: math.unit(1.5, "mm")
  33925. },
  33926. {
  33927. name: "Micro",
  33928. height: math.unit(5.3, "cm"),
  33929. default: true
  33930. },
  33931. {
  33932. name: "Normal",
  33933. height: math.unit(1.85, "meters")
  33934. },
  33935. {
  33936. name: "Macro",
  33937. height: math.unit(64.7, "meters")
  33938. },
  33939. {
  33940. name: "Megamacro",
  33941. height: math.unit(2.26, "km")
  33942. },
  33943. {
  33944. name: "Gigamacro",
  33945. height: math.unit(79, "km")
  33946. },
  33947. {
  33948. name: "Teramacro",
  33949. height: math.unit(2765, "km")
  33950. },
  33951. {
  33952. name: "Petamacro",
  33953. height: math.unit(96678, "km")
  33954. },
  33955. ]
  33956. ))
  33957. characterMakers.push(() => makeCharacter(
  33958. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33959. {
  33960. front: {
  33961. height: math.unit(30, "meters"),
  33962. weight: math.unit(400, "tons"),
  33963. name: "Front",
  33964. image: {
  33965. source: "./media/characters/zeel/front.svg",
  33966. extra: 2599/2599,
  33967. bottom: 226/2825
  33968. }
  33969. },
  33970. },
  33971. [
  33972. {
  33973. name: "Macro",
  33974. height: math.unit(30, "meters"),
  33975. default: true
  33976. },
  33977. ]
  33978. ))
  33979. characterMakers.push(() => makeCharacter(
  33980. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33981. {
  33982. front: {
  33983. height: math.unit(6 + 7/12, "feet"),
  33984. weight: math.unit(210, "lb"),
  33985. name: "Front",
  33986. image: {
  33987. source: "./media/characters/tarn/front.svg",
  33988. extra: 3517/3220,
  33989. bottom: 91/3608
  33990. }
  33991. },
  33992. back: {
  33993. height: math.unit(6 + 7/12, "feet"),
  33994. weight: math.unit(210, "lb"),
  33995. name: "Back",
  33996. image: {
  33997. source: "./media/characters/tarn/back.svg",
  33998. extra: 3566/3241,
  33999. bottom: 34/3600
  34000. }
  34001. },
  34002. dick: {
  34003. height: math.unit(1.65, "feet"),
  34004. name: "Dick",
  34005. image: {
  34006. source: "./media/characters/tarn/dick.svg"
  34007. }
  34008. },
  34009. paw: {
  34010. height: math.unit(1.80, "feet"),
  34011. name: "Paw",
  34012. image: {
  34013. source: "./media/characters/tarn/paw.svg"
  34014. }
  34015. },
  34016. tongue: {
  34017. height: math.unit(0.97, "feet"),
  34018. name: "Tongue",
  34019. image: {
  34020. source: "./media/characters/tarn/tongue.svg"
  34021. }
  34022. },
  34023. },
  34024. [
  34025. {
  34026. name: "Micro",
  34027. height: math.unit(4, "inches")
  34028. },
  34029. {
  34030. name: "Normal",
  34031. height: math.unit(6 + 7/12, "feet"),
  34032. default: true
  34033. },
  34034. {
  34035. name: "Macro",
  34036. height: math.unit(300, "feet")
  34037. },
  34038. ]
  34039. ))
  34040. characterMakers.push(() => makeCharacter(
  34041. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34042. {
  34043. front: {
  34044. height: math.unit(5 + 7/12, "feet"),
  34045. weight: math.unit(80, "kg"),
  34046. name: "Front",
  34047. image: {
  34048. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34049. extra: 3023/2865,
  34050. bottom: 33/3056
  34051. }
  34052. },
  34053. back: {
  34054. height: math.unit(5 + 7/12, "feet"),
  34055. weight: math.unit(80, "kg"),
  34056. name: "Back",
  34057. image: {
  34058. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34059. extra: 3020/2886,
  34060. bottom: 30/3050
  34061. }
  34062. },
  34063. dick: {
  34064. height: math.unit(0.98, "feet"),
  34065. name: "Dick",
  34066. image: {
  34067. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34068. }
  34069. },
  34070. anatomy: {
  34071. height: math.unit(2.86, "feet"),
  34072. name: "Anatomy",
  34073. image: {
  34074. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34075. }
  34076. },
  34077. },
  34078. [
  34079. {
  34080. name: "Really Small",
  34081. height: math.unit(2, "inches")
  34082. },
  34083. {
  34084. name: "Micro",
  34085. height: math.unit(5.583, "inches")
  34086. },
  34087. {
  34088. name: "Normal",
  34089. height: math.unit(5 + 7/12, "feet"),
  34090. default: true
  34091. },
  34092. {
  34093. name: "Macro",
  34094. height: math.unit(67, "feet")
  34095. },
  34096. {
  34097. name: "Megamacro",
  34098. height: math.unit(134, "feet")
  34099. },
  34100. ]
  34101. ))
  34102. characterMakers.push(() => makeCharacter(
  34103. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34104. {
  34105. front: {
  34106. height: math.unit(9, "feet"),
  34107. weight: math.unit(120, "lb"),
  34108. name: "Front",
  34109. image: {
  34110. source: "./media/characters/sally/front.svg",
  34111. extra: 1506/1349,
  34112. bottom: 66/1572
  34113. }
  34114. },
  34115. },
  34116. [
  34117. {
  34118. name: "Normal",
  34119. height: math.unit(9, "feet"),
  34120. default: true
  34121. },
  34122. ]
  34123. ))
  34124. characterMakers.push(() => makeCharacter(
  34125. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34126. {
  34127. front: {
  34128. height: math.unit(8, "feet"),
  34129. weight: math.unit(900, "lb"),
  34130. name: "Front",
  34131. image: {
  34132. source: "./media/characters/owen/front.svg",
  34133. extra: 1761/1657,
  34134. bottom: 74/1835
  34135. }
  34136. },
  34137. side: {
  34138. height: math.unit(8, "feet"),
  34139. weight: math.unit(900, "lb"),
  34140. name: "Side",
  34141. image: {
  34142. source: "./media/characters/owen/side.svg",
  34143. extra: 1797/1734,
  34144. bottom: 30/1827
  34145. }
  34146. },
  34147. back: {
  34148. height: math.unit(8, "feet"),
  34149. weight: math.unit(900, "lb"),
  34150. name: "Back",
  34151. image: {
  34152. source: "./media/characters/owen/back.svg",
  34153. extra: 1796/1706,
  34154. bottom: 59/1855
  34155. }
  34156. },
  34157. maw: {
  34158. height: math.unit(1.76, "feet"),
  34159. name: "Maw",
  34160. image: {
  34161. source: "./media/characters/owen/maw.svg"
  34162. }
  34163. },
  34164. },
  34165. [
  34166. {
  34167. name: "Normal",
  34168. height: math.unit(8, "feet"),
  34169. default: true
  34170. },
  34171. ]
  34172. ))
  34173. characterMakers.push(() => makeCharacter(
  34174. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34175. {
  34176. front: {
  34177. height: math.unit(4, "feet"),
  34178. weight: math.unit(400, "lb"),
  34179. name: "Front",
  34180. image: {
  34181. source: "./media/characters/ryth/front.svg",
  34182. extra: 1920/1748,
  34183. bottom: 42/1962
  34184. }
  34185. },
  34186. back: {
  34187. height: math.unit(4, "feet"),
  34188. weight: math.unit(400, "lb"),
  34189. name: "Back",
  34190. image: {
  34191. source: "./media/characters/ryth/back.svg",
  34192. extra: 1897/1690,
  34193. bottom: 89/1986
  34194. }
  34195. },
  34196. mouth: {
  34197. height: math.unit(1.39, "feet"),
  34198. name: "Mouth",
  34199. image: {
  34200. source: "./media/characters/ryth/mouth.svg"
  34201. }
  34202. },
  34203. tailmaw: {
  34204. height: math.unit(1.23, "feet"),
  34205. name: "Tailmaw",
  34206. image: {
  34207. source: "./media/characters/ryth/tailmaw.svg"
  34208. }
  34209. },
  34210. goia: {
  34211. height: math.unit(4, "meters"),
  34212. weight: math.unit(10800, "lb"),
  34213. name: "Goia",
  34214. image: {
  34215. source: "./media/characters/ryth/goia.svg",
  34216. extra: 745/640,
  34217. bottom: 107/852
  34218. }
  34219. },
  34220. goiaFront: {
  34221. height: math.unit(4, "meters"),
  34222. weight: math.unit(10800, "lb"),
  34223. name: "Goia (Front)",
  34224. image: {
  34225. source: "./media/characters/ryth/goia-front.svg",
  34226. extra: 750/586,
  34227. bottom: 114/864
  34228. }
  34229. },
  34230. goiaMaw: {
  34231. height: math.unit(5.55, "feet"),
  34232. name: "Goia Maw",
  34233. image: {
  34234. source: "./media/characters/ryth/goia-maw.svg"
  34235. }
  34236. },
  34237. goiaForepaw: {
  34238. height: math.unit(3.5, "feet"),
  34239. name: "Goia Forepaw",
  34240. image: {
  34241. source: "./media/characters/ryth/goia-forepaw.svg"
  34242. }
  34243. },
  34244. goiaHindpaw: {
  34245. height: math.unit(5.55, "feet"),
  34246. name: "Goia Hindpaw",
  34247. image: {
  34248. source: "./media/characters/ryth/goia-hindpaw.svg"
  34249. }
  34250. },
  34251. },
  34252. [
  34253. {
  34254. name: "Normal",
  34255. height: math.unit(4, "feet"),
  34256. default: true
  34257. },
  34258. ]
  34259. ))
  34260. characterMakers.push(() => makeCharacter(
  34261. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34262. {
  34263. front: {
  34264. height: math.unit(7, "feet"),
  34265. weight: math.unit(180, "lb"),
  34266. name: "Front",
  34267. image: {
  34268. source: "./media/characters/necrolance/front.svg",
  34269. extra: 1062/947,
  34270. bottom: 41/1103
  34271. }
  34272. },
  34273. back: {
  34274. height: math.unit(7, "feet"),
  34275. weight: math.unit(180, "lb"),
  34276. name: "Back",
  34277. image: {
  34278. source: "./media/characters/necrolance/back.svg",
  34279. extra: 1045/984,
  34280. bottom: 14/1059
  34281. }
  34282. },
  34283. wing: {
  34284. height: math.unit(2.67, "feet"),
  34285. name: "Wing",
  34286. image: {
  34287. source: "./media/characters/necrolance/wing.svg"
  34288. }
  34289. },
  34290. },
  34291. [
  34292. {
  34293. name: "Normal",
  34294. height: math.unit(7, "feet"),
  34295. default: true
  34296. },
  34297. ]
  34298. ))
  34299. characterMakers.push(() => makeCharacter(
  34300. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34301. {
  34302. front: {
  34303. height: math.unit(76, "meters"),
  34304. weight: math.unit(30000, "tons"),
  34305. name: "Front",
  34306. image: {
  34307. source: "./media/characters/tyler/front.svg",
  34308. extra: 1640/1640,
  34309. bottom: 114/1754
  34310. }
  34311. },
  34312. },
  34313. [
  34314. {
  34315. name: "Macro",
  34316. height: math.unit(76, "meters"),
  34317. default: true
  34318. },
  34319. ]
  34320. ))
  34321. characterMakers.push(() => makeCharacter(
  34322. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34323. {
  34324. front: {
  34325. height: math.unit(4 + 11/12, "feet"),
  34326. weight: math.unit(132, "lb"),
  34327. name: "Front",
  34328. image: {
  34329. source: "./media/characters/icey/front.svg",
  34330. extra: 2750/2550,
  34331. bottom: 33/2783
  34332. }
  34333. },
  34334. back: {
  34335. height: math.unit(4 + 11/12, "feet"),
  34336. weight: math.unit(132, "lb"),
  34337. name: "Back",
  34338. image: {
  34339. source: "./media/characters/icey/back.svg",
  34340. extra: 2624/2481,
  34341. bottom: 35/2659
  34342. }
  34343. },
  34344. },
  34345. [
  34346. {
  34347. name: "Normal",
  34348. height: math.unit(4 + 11/12, "feet"),
  34349. default: true
  34350. },
  34351. ]
  34352. ))
  34353. characterMakers.push(() => makeCharacter(
  34354. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34355. {
  34356. front: {
  34357. height: math.unit(100, "feet"),
  34358. weight: math.unit(0, "lb"),
  34359. name: "Front",
  34360. image: {
  34361. source: "./media/characters/smile/front.svg",
  34362. extra: 2983/2912,
  34363. bottom: 162/3145
  34364. }
  34365. },
  34366. back: {
  34367. height: math.unit(100, "feet"),
  34368. weight: math.unit(0, "lb"),
  34369. name: "Back",
  34370. image: {
  34371. source: "./media/characters/smile/back.svg",
  34372. extra: 3143/3031,
  34373. bottom: 91/3234
  34374. }
  34375. },
  34376. head: {
  34377. height: math.unit(26.3, "feet"),
  34378. weight: math.unit(0, "lb"),
  34379. name: "Head",
  34380. image: {
  34381. source: "./media/characters/smile/head.svg"
  34382. }
  34383. },
  34384. collar: {
  34385. height: math.unit(5.3, "feet"),
  34386. weight: math.unit(0, "lb"),
  34387. name: "Collar",
  34388. image: {
  34389. source: "./media/characters/smile/collar.svg"
  34390. }
  34391. },
  34392. },
  34393. [
  34394. {
  34395. name: "Macro",
  34396. height: math.unit(100, "feet"),
  34397. default: true
  34398. },
  34399. ]
  34400. ))
  34401. characterMakers.push(() => makeCharacter(
  34402. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34403. {
  34404. dragon: {
  34405. height: math.unit(26, "feet"),
  34406. weight: math.unit(36, "tons"),
  34407. name: "Dragon",
  34408. image: {
  34409. source: "./media/characters/arimphae/dragon.svg",
  34410. extra: 1574/983,
  34411. bottom: 357/1931
  34412. }
  34413. },
  34414. drake: {
  34415. height: math.unit(9, "feet"),
  34416. weight: math.unit(1.5, "tons"),
  34417. name: "Drake",
  34418. image: {
  34419. source: "./media/characters/arimphae/drake.svg",
  34420. extra: 1120/925,
  34421. bottom: 435/1555
  34422. }
  34423. },
  34424. },
  34425. [
  34426. {
  34427. name: "Small",
  34428. height: math.unit(26*5/9, "feet")
  34429. },
  34430. {
  34431. name: "Normal",
  34432. height: math.unit(26, "feet"),
  34433. default: true
  34434. },
  34435. ]
  34436. ))
  34437. characterMakers.push(() => makeCharacter(
  34438. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34439. {
  34440. front: {
  34441. height: math.unit(8 + 9/12, "feet"),
  34442. name: "Front",
  34443. image: {
  34444. source: "./media/characters/xander/front.svg",
  34445. extra: 1237/974,
  34446. bottom: 94/1331
  34447. }
  34448. },
  34449. },
  34450. [
  34451. {
  34452. name: "Normal",
  34453. height: math.unit(8 + 9/12, "feet"),
  34454. default: true
  34455. },
  34456. {
  34457. name: "Gaze Grabber",
  34458. height: math.unit(13 + 8/12, "feet")
  34459. },
  34460. {
  34461. name: "Jaw Dropper",
  34462. height: math.unit(27, "feet")
  34463. },
  34464. {
  34465. name: "Show Stopper",
  34466. height: math.unit(136, "feet")
  34467. },
  34468. {
  34469. name: "Superstar",
  34470. height: math.unit(1.9e6, "miles")
  34471. },
  34472. ]
  34473. ))
  34474. characterMakers.push(() => makeCharacter(
  34475. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34476. {
  34477. side: {
  34478. height: math.unit(2100, "feet"),
  34479. name: "Side",
  34480. image: {
  34481. source: "./media/characters/osiris/side.svg",
  34482. extra: 1105/939,
  34483. bottom: 167/1272
  34484. }
  34485. },
  34486. },
  34487. [
  34488. {
  34489. name: "Macro",
  34490. height: math.unit(2100, "feet"),
  34491. default: true
  34492. },
  34493. ]
  34494. ))
  34495. characterMakers.push(() => makeCharacter(
  34496. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34497. {
  34498. front: {
  34499. height: math.unit(6 + 8/12, "feet"),
  34500. weight: math.unit(225, "lb"),
  34501. name: "Front",
  34502. image: {
  34503. source: "./media/characters/rhys-londe/front.svg",
  34504. extra: 2258/2141,
  34505. bottom: 188/2446
  34506. }
  34507. },
  34508. back: {
  34509. height: math.unit(6 + 8/12, "feet"),
  34510. weight: math.unit(225, "lb"),
  34511. name: "Back",
  34512. image: {
  34513. source: "./media/characters/rhys-londe/back.svg",
  34514. extra: 2237/2137,
  34515. bottom: 63/2300
  34516. }
  34517. },
  34518. frontNsfw: {
  34519. height: math.unit(6 + 8/12, "feet"),
  34520. weight: math.unit(225, "lb"),
  34521. name: "Front (NSFW)",
  34522. image: {
  34523. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34524. extra: 2258/2141,
  34525. bottom: 188/2446
  34526. }
  34527. },
  34528. backNsfw: {
  34529. height: math.unit(6 + 8/12, "feet"),
  34530. weight: math.unit(225, "lb"),
  34531. name: "Back (NSFW)",
  34532. image: {
  34533. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34534. extra: 2237/2137,
  34535. bottom: 63/2300
  34536. }
  34537. },
  34538. dick: {
  34539. height: math.unit(30, "inches"),
  34540. name: "Dick",
  34541. image: {
  34542. source: "./media/characters/rhys-londe/dick.svg"
  34543. }
  34544. },
  34545. maw: {
  34546. height: math.unit(1.6, "feet"),
  34547. name: "Maw",
  34548. image: {
  34549. source: "./media/characters/rhys-londe/maw.svg"
  34550. }
  34551. },
  34552. },
  34553. [
  34554. {
  34555. name: "Normal",
  34556. height: math.unit(6 + 8/12, "feet"),
  34557. default: true
  34558. },
  34559. ]
  34560. ))
  34561. characterMakers.push(() => makeCharacter(
  34562. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34563. {
  34564. front: {
  34565. height: math.unit(3 + 10/12, "feet"),
  34566. weight: math.unit(90, "lb"),
  34567. name: "Front",
  34568. image: {
  34569. source: "./media/characters/taivas-ensim/front.svg",
  34570. extra: 1327/1216,
  34571. bottom: 96/1423
  34572. }
  34573. },
  34574. back: {
  34575. height: math.unit(3 + 10/12, "feet"),
  34576. weight: math.unit(90, "lb"),
  34577. name: "Back",
  34578. image: {
  34579. source: "./media/characters/taivas-ensim/back.svg",
  34580. extra: 1355/1247,
  34581. bottom: 11/1366
  34582. }
  34583. },
  34584. frontNsfw: {
  34585. height: math.unit(3 + 10/12, "feet"),
  34586. weight: math.unit(90, "lb"),
  34587. name: "Front (NSFW)",
  34588. image: {
  34589. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34590. extra: 1327/1216,
  34591. bottom: 96/1423
  34592. }
  34593. },
  34594. backNsfw: {
  34595. height: math.unit(3 + 10/12, "feet"),
  34596. weight: math.unit(90, "lb"),
  34597. name: "Back (NSFW)",
  34598. image: {
  34599. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34600. extra: 1355/1247,
  34601. bottom: 11/1366
  34602. }
  34603. },
  34604. },
  34605. [
  34606. {
  34607. name: "Normal",
  34608. height: math.unit(3 + 10/12, "feet"),
  34609. default: true
  34610. },
  34611. ]
  34612. ))
  34613. characterMakers.push(() => makeCharacter(
  34614. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34615. {
  34616. front: {
  34617. height: math.unit(9 + 6/12, "feet"),
  34618. weight: math.unit(940, "lb"),
  34619. name: "Front",
  34620. image: {
  34621. source: "./media/characters/byliss/front.svg",
  34622. extra: 1327/1290,
  34623. bottom: 82/1409
  34624. }
  34625. },
  34626. back: {
  34627. height: math.unit(9 + 6/12, "feet"),
  34628. weight: math.unit(940, "lb"),
  34629. name: "Back",
  34630. image: {
  34631. source: "./media/characters/byliss/back.svg",
  34632. extra: 1376/1349,
  34633. bottom: 9/1385
  34634. }
  34635. },
  34636. frontNsfw: {
  34637. height: math.unit(9 + 6/12, "feet"),
  34638. weight: math.unit(940, "lb"),
  34639. name: "Front (NSFW)",
  34640. image: {
  34641. source: "./media/characters/byliss/front-nsfw.svg",
  34642. extra: 1327/1290,
  34643. bottom: 82/1409
  34644. }
  34645. },
  34646. backNsfw: {
  34647. height: math.unit(9 + 6/12, "feet"),
  34648. weight: math.unit(940, "lb"),
  34649. name: "Back (NSFW)",
  34650. image: {
  34651. source: "./media/characters/byliss/back-nsfw.svg",
  34652. extra: 1376/1349,
  34653. bottom: 9/1385
  34654. }
  34655. },
  34656. },
  34657. [
  34658. {
  34659. name: "Normal",
  34660. height: math.unit(9 + 6/12, "feet"),
  34661. default: true
  34662. },
  34663. ]
  34664. ))
  34665. characterMakers.push(() => makeCharacter(
  34666. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34667. {
  34668. front: {
  34669. height: math.unit(5 + 2/12, "feet"),
  34670. weight: math.unit(200, "lb"),
  34671. name: "Front",
  34672. image: {
  34673. source: "./media/characters/noraly/front.svg",
  34674. extra: 4985/4773,
  34675. bottom: 150/5135
  34676. }
  34677. },
  34678. full: {
  34679. height: math.unit(5 + 2/12, "feet"),
  34680. weight: math.unit(164, "lb"),
  34681. name: "Full",
  34682. image: {
  34683. source: "./media/characters/noraly/full.svg",
  34684. extra: 1114/1059,
  34685. bottom: 35/1149
  34686. }
  34687. },
  34688. fuller: {
  34689. height: math.unit(5 + 2/12, "feet"),
  34690. weight: math.unit(230, "lb"),
  34691. name: "Fuller",
  34692. image: {
  34693. source: "./media/characters/noraly/fuller.svg",
  34694. extra: 1114/1059,
  34695. bottom: 35/1149
  34696. }
  34697. },
  34698. fullest: {
  34699. height: math.unit(5 + 2/12, "feet"),
  34700. weight: math.unit(300, "lb"),
  34701. name: "Fullest",
  34702. image: {
  34703. source: "./media/characters/noraly/fullest.svg",
  34704. extra: 1114/1059,
  34705. bottom: 35/1149
  34706. }
  34707. },
  34708. },
  34709. [
  34710. {
  34711. name: "Normal",
  34712. height: math.unit(5 + 2/12, "feet"),
  34713. default: true
  34714. },
  34715. ]
  34716. ))
  34717. characterMakers.push(() => makeCharacter(
  34718. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34719. {
  34720. front: {
  34721. height: math.unit(5 + 2/12, "feet"),
  34722. weight: math.unit(210, "lb"),
  34723. name: "Front",
  34724. image: {
  34725. source: "./media/characters/pera/front.svg",
  34726. extra: 1560/1531,
  34727. bottom: 165/1725
  34728. }
  34729. },
  34730. back: {
  34731. height: math.unit(5 + 2/12, "feet"),
  34732. weight: math.unit(210, "lb"),
  34733. name: "Back",
  34734. image: {
  34735. source: "./media/characters/pera/back.svg",
  34736. extra: 1523/1493,
  34737. bottom: 152/1675
  34738. }
  34739. },
  34740. dick: {
  34741. height: math.unit(2.4, "feet"),
  34742. name: "Dick",
  34743. image: {
  34744. source: "./media/characters/pera/dick.svg"
  34745. }
  34746. },
  34747. },
  34748. [
  34749. {
  34750. name: "Normal",
  34751. height: math.unit(5 + 2/12, "feet"),
  34752. default: true
  34753. },
  34754. ]
  34755. ))
  34756. characterMakers.push(() => makeCharacter(
  34757. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34758. {
  34759. front: {
  34760. height: math.unit(12, "feet"),
  34761. weight: math.unit(3200, "lb"),
  34762. name: "Front",
  34763. image: {
  34764. source: "./media/characters/julian/front.svg",
  34765. extra: 2962/2701,
  34766. bottom: 184/3146
  34767. }
  34768. },
  34769. maw: {
  34770. height: math.unit(5.35, "feet"),
  34771. name: "Maw",
  34772. image: {
  34773. source: "./media/characters/julian/maw.svg"
  34774. }
  34775. },
  34776. paw: {
  34777. height: math.unit(3.07, "feet"),
  34778. name: "Paw",
  34779. image: {
  34780. source: "./media/characters/julian/paw.svg"
  34781. }
  34782. },
  34783. },
  34784. [
  34785. {
  34786. name: "Default",
  34787. height: math.unit(12, "feet"),
  34788. default: true
  34789. },
  34790. {
  34791. name: "Big",
  34792. height: math.unit(50, "feet")
  34793. },
  34794. {
  34795. name: "Really Big",
  34796. height: math.unit(1, "mile")
  34797. },
  34798. {
  34799. name: "Extremely Big",
  34800. height: math.unit(100, "miles")
  34801. },
  34802. {
  34803. name: "Planet Hugger",
  34804. height: math.unit(200, "megameters")
  34805. },
  34806. {
  34807. name: "Unreasonably Big",
  34808. height: math.unit(1e300, "meters")
  34809. },
  34810. ]
  34811. ))
  34812. characterMakers.push(() => makeCharacter(
  34813. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34814. {
  34815. solgooleo: {
  34816. height: math.unit(4, "meters"),
  34817. weight: math.unit(6000*1.5, "kg"),
  34818. volume: math.unit(6000, "liters"),
  34819. name: "Solgooleo",
  34820. image: {
  34821. source: "./media/characters/pi/solgooleo.svg",
  34822. extra: 388/331,
  34823. bottom: 29/417
  34824. }
  34825. },
  34826. },
  34827. [
  34828. {
  34829. name: "Normal",
  34830. height: math.unit(4, "meters"),
  34831. default: true
  34832. },
  34833. ]
  34834. ))
  34835. characterMakers.push(() => makeCharacter(
  34836. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34837. {
  34838. front: {
  34839. height: math.unit(8, "feet"),
  34840. weight: math.unit(4, "tons"),
  34841. name: "Front",
  34842. image: {
  34843. source: "./media/characters/shaun/front.svg",
  34844. extra: 503/495,
  34845. bottom: 20/523
  34846. }
  34847. },
  34848. back: {
  34849. height: math.unit(8, "feet"),
  34850. weight: math.unit(4, "tons"),
  34851. name: "Back",
  34852. image: {
  34853. source: "./media/characters/shaun/back.svg",
  34854. extra: 487/480,
  34855. bottom: 20/507
  34856. }
  34857. },
  34858. },
  34859. [
  34860. {
  34861. name: "Lorg",
  34862. height: math.unit(8, "feet"),
  34863. default: true
  34864. },
  34865. ]
  34866. ))
  34867. characterMakers.push(() => makeCharacter(
  34868. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34869. {
  34870. frontAnthro: {
  34871. height: math.unit(7, "feet"),
  34872. name: "Front",
  34873. image: {
  34874. source: "./media/characters/sini/front-anthro.svg",
  34875. extra: 726/678,
  34876. bottom: 35/761
  34877. },
  34878. form: "anthro",
  34879. default: true
  34880. },
  34881. backAnthro: {
  34882. height: math.unit(7, "feet"),
  34883. name: "Back",
  34884. image: {
  34885. source: "./media/characters/sini/back-anthro.svg",
  34886. extra: 743/701,
  34887. bottom: 12/755
  34888. },
  34889. form: "anthro",
  34890. },
  34891. frontAnthroNsfw: {
  34892. height: math.unit(7, "feet"),
  34893. name: "Front (NSFW)",
  34894. image: {
  34895. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34896. extra: 726/678,
  34897. bottom: 35/761
  34898. },
  34899. form: "anthro"
  34900. },
  34901. backAnthroNsfw: {
  34902. height: math.unit(7, "feet"),
  34903. name: "Back (NSFW)",
  34904. image: {
  34905. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34906. extra: 743/701,
  34907. bottom: 12/755
  34908. },
  34909. form: "anthro",
  34910. },
  34911. mawAnthro: {
  34912. height: math.unit(2.14, "feet"),
  34913. name: "Maw",
  34914. image: {
  34915. source: "./media/characters/sini/maw-anthro.svg"
  34916. },
  34917. form: "anthro"
  34918. },
  34919. dick: {
  34920. height: math.unit(1.45, "feet"),
  34921. name: "Dick",
  34922. image: {
  34923. source: "./media/characters/sini/dick-anthro.svg"
  34924. },
  34925. form: "anthro"
  34926. },
  34927. feral: {
  34928. height: math.unit(16, "feet"),
  34929. name: "Feral",
  34930. image: {
  34931. source: "./media/characters/sini/feral.svg",
  34932. extra: 814/605,
  34933. bottom: 11/825
  34934. },
  34935. form: "feral",
  34936. default: true
  34937. },
  34938. feralNsfw: {
  34939. height: math.unit(16, "feet"),
  34940. name: "Feral (NSFW)",
  34941. image: {
  34942. source: "./media/characters/sini/feral-nsfw.svg",
  34943. extra: 814/605,
  34944. bottom: 11/825
  34945. },
  34946. form: "feral"
  34947. },
  34948. mawFeral: {
  34949. height: math.unit(5.66, "feet"),
  34950. name: "Maw",
  34951. image: {
  34952. source: "./media/characters/sini/maw-feral.svg"
  34953. },
  34954. form: "feral",
  34955. },
  34956. pawFeral: {
  34957. height: math.unit(5.17, "feet"),
  34958. name: "Paw",
  34959. image: {
  34960. source: "./media/characters/sini/paw-feral.svg"
  34961. },
  34962. form: "feral",
  34963. },
  34964. rumpFeral: {
  34965. height: math.unit(13.11, "feet"),
  34966. name: "Rump",
  34967. image: {
  34968. source: "./media/characters/sini/rump-feral.svg"
  34969. },
  34970. form: "feral",
  34971. },
  34972. dickFeral: {
  34973. height: math.unit(1, "feet"),
  34974. name: "Dick",
  34975. image: {
  34976. source: "./media/characters/sini/dick-feral.svg"
  34977. },
  34978. form: "feral",
  34979. },
  34980. eyeFeral: {
  34981. height: math.unit(1.23, "feet"),
  34982. name: "Eye",
  34983. image: {
  34984. source: "./media/characters/sini/eye-feral.svg"
  34985. },
  34986. form: "feral",
  34987. },
  34988. },
  34989. [
  34990. {
  34991. name: "Normal",
  34992. height: math.unit(7, "feet"),
  34993. default: true,
  34994. form: "anthro"
  34995. },
  34996. {
  34997. name: "Normal",
  34998. height: math.unit(16, "feet"),
  34999. default: true,
  35000. form: "feral"
  35001. },
  35002. ],
  35003. {
  35004. "anthro": {
  35005. name: "Anthro",
  35006. default: true
  35007. },
  35008. "feral": {
  35009. name: "Feral",
  35010. }
  35011. }
  35012. ))
  35013. characterMakers.push(() => makeCharacter(
  35014. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35015. {
  35016. side: {
  35017. height: math.unit(47.2, "meters"),
  35018. weight: math.unit(10000, "tons"),
  35019. name: "Side",
  35020. image: {
  35021. source: "./media/characters/raylldo/side.svg",
  35022. extra: 2363/642,
  35023. bottom: 221/2584
  35024. }
  35025. },
  35026. top: {
  35027. height: math.unit(240, "meters"),
  35028. weight: math.unit(10000, "tons"),
  35029. name: "Top",
  35030. image: {
  35031. source: "./media/characters/raylldo/top.svg"
  35032. }
  35033. },
  35034. bottom: {
  35035. height: math.unit(240, "meters"),
  35036. weight: math.unit(10000, "tons"),
  35037. name: "Bottom",
  35038. image: {
  35039. source: "./media/characters/raylldo/bottom.svg"
  35040. }
  35041. },
  35042. head: {
  35043. height: math.unit(38.6, "meters"),
  35044. name: "Head",
  35045. image: {
  35046. source: "./media/characters/raylldo/head.svg",
  35047. extra: 1335/1112,
  35048. bottom: 0/1335
  35049. }
  35050. },
  35051. maw: {
  35052. height: math.unit(16.37, "meters"),
  35053. name: "Maw",
  35054. image: {
  35055. source: "./media/characters/raylldo/maw.svg",
  35056. extra: 883/660,
  35057. bottom: 0/883
  35058. },
  35059. extraAttributes: {
  35060. preyCapacity: {
  35061. name: "Capacity",
  35062. power: 3,
  35063. type: "volume",
  35064. base: math.unit(1000, "people")
  35065. },
  35066. tongueSize: {
  35067. name: "Tongue Size",
  35068. power: 2,
  35069. type: "area",
  35070. base: math.unit(21, "m^2")
  35071. }
  35072. }
  35073. },
  35074. forepaw: {
  35075. height: math.unit(18, "meters"),
  35076. name: "Forepaw",
  35077. image: {
  35078. source: "./media/characters/raylldo/forepaw.svg"
  35079. }
  35080. },
  35081. hindpaw: {
  35082. height: math.unit(23, "meters"),
  35083. name: "Hindpaw",
  35084. image: {
  35085. source: "./media/characters/raylldo/hindpaw.svg"
  35086. }
  35087. },
  35088. genitals: {
  35089. height: math.unit(42, "meters"),
  35090. name: "Genitals",
  35091. image: {
  35092. source: "./media/characters/raylldo/genitals.svg"
  35093. }
  35094. },
  35095. },
  35096. [
  35097. {
  35098. name: "Normal",
  35099. height: math.unit(47.2, "meters"),
  35100. default: true
  35101. },
  35102. ]
  35103. ))
  35104. characterMakers.push(() => makeCharacter(
  35105. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35106. {
  35107. anthroFront: {
  35108. height: math.unit(9, "feet"),
  35109. weight: math.unit(600, "lb"),
  35110. name: "Anthro (Front)",
  35111. image: {
  35112. source: "./media/characters/glint/anthro-front.svg",
  35113. extra: 1097/1018,
  35114. bottom: 28/1125
  35115. }
  35116. },
  35117. anthroBack: {
  35118. height: math.unit(9, "feet"),
  35119. weight: math.unit(600, "lb"),
  35120. name: "Anthro (Back)",
  35121. image: {
  35122. source: "./media/characters/glint/anthro-back.svg",
  35123. extra: 1154/997,
  35124. bottom: 36/1190
  35125. }
  35126. },
  35127. feral: {
  35128. height: math.unit(11, "feet"),
  35129. weight: math.unit(50000, "lb"),
  35130. name: "Feral",
  35131. image: {
  35132. source: "./media/characters/glint/feral.svg",
  35133. extra: 3035/1585,
  35134. bottom: 1169/4204
  35135. }
  35136. },
  35137. dickAnthro: {
  35138. height: math.unit(0.7, "meters"),
  35139. name: "Dick (Anthro)",
  35140. image: {
  35141. source: "./media/characters/glint/dick-anthro.svg"
  35142. }
  35143. },
  35144. dickFeral: {
  35145. height: math.unit(2.65, "meters"),
  35146. name: "Dick (Feral)",
  35147. image: {
  35148. source: "./media/characters/glint/dick-feral.svg"
  35149. }
  35150. },
  35151. slitHidden: {
  35152. height: math.unit(5.85, "meters"),
  35153. name: "Slit (Hidden)",
  35154. image: {
  35155. source: "./media/characters/glint/slit-hidden.svg"
  35156. }
  35157. },
  35158. slitErect: {
  35159. height: math.unit(5.85, "meters"),
  35160. name: "Slit (Erect)",
  35161. image: {
  35162. source: "./media/characters/glint/slit-erect.svg"
  35163. }
  35164. },
  35165. mawAnthro: {
  35166. height: math.unit(0.63, "meters"),
  35167. name: "Maw (Anthro)",
  35168. image: {
  35169. source: "./media/characters/glint/maw.svg"
  35170. }
  35171. },
  35172. mawFeral: {
  35173. height: math.unit(2.89, "meters"),
  35174. name: "Maw (Feral)",
  35175. image: {
  35176. source: "./media/characters/glint/maw.svg"
  35177. }
  35178. },
  35179. },
  35180. [
  35181. {
  35182. name: "Normal",
  35183. height: math.unit(9, "feet"),
  35184. default: true
  35185. },
  35186. ]
  35187. ))
  35188. characterMakers.push(() => makeCharacter(
  35189. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35190. {
  35191. side: {
  35192. height: math.unit(15, "feet"),
  35193. weight: math.unit(5000, "kg"),
  35194. name: "Side",
  35195. image: {
  35196. source: "./media/characters/kairne/side.svg",
  35197. extra: 979/811,
  35198. bottom: 13/992
  35199. }
  35200. },
  35201. front: {
  35202. height: math.unit(15, "feet"),
  35203. weight: math.unit(5000, "kg"),
  35204. name: "Front",
  35205. image: {
  35206. source: "./media/characters/kairne/front.svg",
  35207. extra: 908/814,
  35208. bottom: 26/934
  35209. }
  35210. },
  35211. sideNsfw: {
  35212. height: math.unit(15, "feet"),
  35213. weight: math.unit(5000, "kg"),
  35214. name: "Side (NSFW)",
  35215. image: {
  35216. source: "./media/characters/kairne/side-nsfw.svg",
  35217. extra: 979/811,
  35218. bottom: 13/992
  35219. }
  35220. },
  35221. frontNsfw: {
  35222. height: math.unit(15, "feet"),
  35223. weight: math.unit(5000, "kg"),
  35224. name: "Front (NSFW)",
  35225. image: {
  35226. source: "./media/characters/kairne/front-nsfw.svg",
  35227. extra: 908/814,
  35228. bottom: 26/934
  35229. }
  35230. },
  35231. dickCaged: {
  35232. height: math.unit(0.65, "meters"),
  35233. name: "Dick-caged",
  35234. image: {
  35235. source: "./media/characters/kairne/dick-caged.svg"
  35236. }
  35237. },
  35238. dick: {
  35239. height: math.unit(0.79, "meters"),
  35240. name: "Dick",
  35241. image: {
  35242. source: "./media/characters/kairne/dick.svg"
  35243. }
  35244. },
  35245. genitals: {
  35246. height: math.unit(1.29, "meters"),
  35247. name: "Genitals",
  35248. image: {
  35249. source: "./media/characters/kairne/genitals.svg"
  35250. }
  35251. },
  35252. maw: {
  35253. height: math.unit(1.73, "meters"),
  35254. name: "Maw",
  35255. image: {
  35256. source: "./media/characters/kairne/maw.svg"
  35257. }
  35258. },
  35259. },
  35260. [
  35261. {
  35262. name: "Normal",
  35263. height: math.unit(15, "feet"),
  35264. default: true
  35265. },
  35266. ]
  35267. ))
  35268. characterMakers.push(() => makeCharacter(
  35269. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35270. {
  35271. front: {
  35272. height: math.unit(5 + 8/12, "feet"),
  35273. weight: math.unit(139, "lb"),
  35274. name: "Front",
  35275. image: {
  35276. source: "./media/characters/biscuit-jackal/front.svg",
  35277. extra: 2106/1961,
  35278. bottom: 58/2164
  35279. }
  35280. },
  35281. back: {
  35282. height: math.unit(5 + 8/12, "feet"),
  35283. weight: math.unit(139, "lb"),
  35284. name: "Back",
  35285. image: {
  35286. source: "./media/characters/biscuit-jackal/back.svg",
  35287. extra: 2132/1976,
  35288. bottom: 57/2189
  35289. }
  35290. },
  35291. werejackal: {
  35292. height: math.unit(6 + 3/12, "feet"),
  35293. weight: math.unit(188, "lb"),
  35294. name: "Werejackal",
  35295. image: {
  35296. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35297. extra: 2373/2178,
  35298. bottom: 53/2426
  35299. }
  35300. },
  35301. },
  35302. [
  35303. {
  35304. name: "Normal",
  35305. height: math.unit(5 + 8/12, "feet"),
  35306. default: true
  35307. },
  35308. ]
  35309. ))
  35310. characterMakers.push(() => makeCharacter(
  35311. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35312. {
  35313. front: {
  35314. height: math.unit(140, "cm"),
  35315. weight: math.unit(45, "kg"),
  35316. name: "Front",
  35317. image: {
  35318. source: "./media/characters/tayra-white/front.svg",
  35319. extra: 2229/2192,
  35320. bottom: 75/2304
  35321. }
  35322. },
  35323. },
  35324. [
  35325. {
  35326. name: "Normal",
  35327. height: math.unit(140, "cm"),
  35328. default: true
  35329. },
  35330. ]
  35331. ))
  35332. characterMakers.push(() => makeCharacter(
  35333. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35334. {
  35335. front: {
  35336. height: math.unit(4 + 5/12, "feet"),
  35337. name: "Front",
  35338. image: {
  35339. source: "./media/characters/scoop/front.svg",
  35340. extra: 1257/1136,
  35341. bottom: 69/1326
  35342. }
  35343. },
  35344. back: {
  35345. height: math.unit(4 + 5/12, "feet"),
  35346. name: "Back",
  35347. image: {
  35348. source: "./media/characters/scoop/back.svg",
  35349. extra: 1321/1152,
  35350. bottom: 32/1353
  35351. }
  35352. },
  35353. maw: {
  35354. height: math.unit(0.68, "feet"),
  35355. name: "Maw",
  35356. image: {
  35357. source: "./media/characters/scoop/maw.svg"
  35358. }
  35359. },
  35360. },
  35361. [
  35362. {
  35363. name: "Really Small",
  35364. height: math.unit(1, "mm")
  35365. },
  35366. {
  35367. name: "Micro",
  35368. height: math.unit(1, "inch")
  35369. },
  35370. {
  35371. name: "Normal",
  35372. height: math.unit(4 + 5/12, "feet"),
  35373. default: true
  35374. },
  35375. {
  35376. name: "Macro",
  35377. height: math.unit(200, "feet")
  35378. },
  35379. {
  35380. name: "Megamacro",
  35381. height: math.unit(3240, "feet")
  35382. },
  35383. {
  35384. name: "Teramacro",
  35385. height: math.unit(2500, "miles")
  35386. },
  35387. ]
  35388. ))
  35389. characterMakers.push(() => makeCharacter(
  35390. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35391. {
  35392. front: {
  35393. height: math.unit(15 + 7/12, "feet"),
  35394. weight: math.unit(1150, "tons"),
  35395. name: "Front",
  35396. image: {
  35397. source: "./media/characters/saphinara/front.svg",
  35398. extra: 1837/1643,
  35399. bottom: 84/1921
  35400. },
  35401. form: "normal",
  35402. default: true
  35403. },
  35404. side: {
  35405. height: math.unit(15 + 7/12, "feet"),
  35406. weight: math.unit(1150, "tons"),
  35407. name: "Side",
  35408. image: {
  35409. source: "./media/characters/saphinara/side.svg",
  35410. extra: 605/547,
  35411. bottom: 6/611
  35412. },
  35413. form: "normal"
  35414. },
  35415. back: {
  35416. height: math.unit(15 + 7/12, "feet"),
  35417. weight: math.unit(1150, "tons"),
  35418. name: "Back",
  35419. image: {
  35420. source: "./media/characters/saphinara/back.svg",
  35421. extra: 591/531,
  35422. bottom: 13/604
  35423. },
  35424. form: "normal"
  35425. },
  35426. frontTail: {
  35427. height: math.unit(15 + 7/12, "feet"),
  35428. weight: math.unit(1150, "tons"),
  35429. name: "Front (Full Tail)",
  35430. image: {
  35431. source: "./media/characters/saphinara/front-tail.svg",
  35432. extra: 2256/1630,
  35433. bottom: 261/2517
  35434. },
  35435. form: "normal"
  35436. },
  35437. insides: {
  35438. height: math.unit(11.92, "feet"),
  35439. name: "Insides",
  35440. image: {
  35441. source: "./media/characters/saphinara/insides.svg"
  35442. },
  35443. form: "normal"
  35444. },
  35445. head: {
  35446. height: math.unit(4.17, "feet"),
  35447. name: "Head",
  35448. image: {
  35449. source: "./media/characters/saphinara/head.svg"
  35450. },
  35451. form: "normal"
  35452. },
  35453. tongue: {
  35454. height: math.unit(4.60, "feet"),
  35455. name: "Tongue",
  35456. image: {
  35457. source: "./media/characters/saphinara/tongue.svg"
  35458. },
  35459. form: "normal"
  35460. },
  35461. headEnraged: {
  35462. height: math.unit(5.55, "feet"),
  35463. name: "Head (Enraged)",
  35464. image: {
  35465. source: "./media/characters/saphinara/head-enraged.svg"
  35466. },
  35467. form: "normal"
  35468. },
  35469. wings: {
  35470. height: math.unit(11.95, "feet"),
  35471. name: "Wings",
  35472. image: {
  35473. source: "./media/characters/saphinara/wings.svg"
  35474. },
  35475. form: "normal"
  35476. },
  35477. feathers: {
  35478. height: math.unit(8.92, "feet"),
  35479. name: "Feathers",
  35480. image: {
  35481. source: "./media/characters/saphinara/feathers.svg"
  35482. },
  35483. form: "normal"
  35484. },
  35485. shackles: {
  35486. height: math.unit(2, "feet"),
  35487. name: "Shackles",
  35488. image: {
  35489. source: "./media/characters/saphinara/shackles.svg"
  35490. },
  35491. form: "normal"
  35492. },
  35493. eyes: {
  35494. height: math.unit(1.331, "feet"),
  35495. name: "Eyes",
  35496. image: {
  35497. source: "./media/characters/saphinara/eyes.svg"
  35498. },
  35499. form: "normal"
  35500. },
  35501. eyesEnraged: {
  35502. height: math.unit(1.331, "feet"),
  35503. name: "Eyes (Enraged)",
  35504. image: {
  35505. source: "./media/characters/saphinara/eyes-enraged.svg"
  35506. },
  35507. form: "normal"
  35508. },
  35509. trueFormSide: {
  35510. height: math.unit(200, "feet"),
  35511. weight: math.unit(1e7, "tons"),
  35512. name: "Side",
  35513. image: {
  35514. source: "./media/characters/saphinara/true-form-side.svg",
  35515. extra: 1399/770,
  35516. bottom: 97/1496
  35517. },
  35518. form: "true-form",
  35519. default: true
  35520. },
  35521. trueFormMaw: {
  35522. height: math.unit(71.5, "feet"),
  35523. name: "Maw",
  35524. image: {
  35525. source: "./media/characters/saphinara/true-form-maw.svg",
  35526. extra: 2302/1453,
  35527. bottom: 0/2302
  35528. },
  35529. form: "true-form"
  35530. },
  35531. meowberusSide: {
  35532. height: math.unit(75, "feet"),
  35533. weight: math.unit(180000, "kg"),
  35534. preyCapacity: math.unit(50000, "people"),
  35535. name: "Side",
  35536. image: {
  35537. source: "./media/characters/saphinara/meowberus-side.svg",
  35538. extra: 1400/711,
  35539. bottom: 126/1526
  35540. },
  35541. form: "meowberus",
  35542. extraAttributes: {
  35543. "pawArea": {
  35544. name: "Paw Size",
  35545. power: 2,
  35546. type: "area",
  35547. base: math.unit(35, "m^2")
  35548. }
  35549. }
  35550. },
  35551. },
  35552. [
  35553. {
  35554. name: "Normal",
  35555. height: math.unit(15 + 7/12, "feet"),
  35556. default: true,
  35557. form: "normal"
  35558. },
  35559. {
  35560. name: "Angry",
  35561. height: math.unit(30 + 6/12, "feet"),
  35562. form: "normal"
  35563. },
  35564. {
  35565. name: "Enraged",
  35566. height: math.unit(102 + 1/12, "feet"),
  35567. form: "normal"
  35568. },
  35569. {
  35570. name: "True",
  35571. height: math.unit(200, "feet"),
  35572. default: true,
  35573. form: "true-form"
  35574. },
  35575. {
  35576. name: "Normal",
  35577. height: math.unit(75, "feet"),
  35578. default: true,
  35579. form: "meowberus"
  35580. },
  35581. ],
  35582. {
  35583. "normal": {
  35584. name: "Normal",
  35585. default: true
  35586. },
  35587. "true-form": {
  35588. name: "True Form"
  35589. },
  35590. "meowberus": {
  35591. name: "Meowberus",
  35592. },
  35593. }
  35594. ))
  35595. characterMakers.push(() => makeCharacter(
  35596. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35597. {
  35598. front: {
  35599. height: math.unit(6 + 8/12, "feet"),
  35600. weight: math.unit(300, "lb"),
  35601. name: "Front",
  35602. image: {
  35603. source: "./media/characters/jrain/front.svg",
  35604. extra: 3039/2865,
  35605. bottom: 399/3438
  35606. }
  35607. },
  35608. back: {
  35609. height: math.unit(6 + 8/12, "feet"),
  35610. weight: math.unit(300, "lb"),
  35611. name: "Back",
  35612. image: {
  35613. source: "./media/characters/jrain/back.svg",
  35614. extra: 3089/2938,
  35615. bottom: 172/3261
  35616. }
  35617. },
  35618. head: {
  35619. height: math.unit(2.14, "feet"),
  35620. name: "Head",
  35621. image: {
  35622. source: "./media/characters/jrain/head.svg"
  35623. }
  35624. },
  35625. maw: {
  35626. height: math.unit(1.77, "feet"),
  35627. name: "Maw",
  35628. image: {
  35629. source: "./media/characters/jrain/maw.svg"
  35630. }
  35631. },
  35632. leftHand: {
  35633. height: math.unit(1.1, "feet"),
  35634. name: "Left Hand",
  35635. image: {
  35636. source: "./media/characters/jrain/left-hand.svg"
  35637. }
  35638. },
  35639. rightHand: {
  35640. height: math.unit(1.1, "feet"),
  35641. name: "Right Hand",
  35642. image: {
  35643. source: "./media/characters/jrain/right-hand.svg"
  35644. }
  35645. },
  35646. eye: {
  35647. height: math.unit(0.35, "feet"),
  35648. name: "Eye",
  35649. image: {
  35650. source: "./media/characters/jrain/eye.svg"
  35651. }
  35652. },
  35653. },
  35654. [
  35655. {
  35656. name: "Normal",
  35657. height: math.unit(6 + 8/12, "feet"),
  35658. default: true
  35659. },
  35660. {
  35661. name: "Casually Large",
  35662. height: math.unit(25, "feet")
  35663. },
  35664. {
  35665. name: "Giant",
  35666. height: math.unit(100, "feet")
  35667. },
  35668. {
  35669. name: "Kaiju",
  35670. height: math.unit(300, "feet")
  35671. },
  35672. ]
  35673. ))
  35674. characterMakers.push(() => makeCharacter(
  35675. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35676. {
  35677. dragon: {
  35678. height: math.unit(5, "meters"),
  35679. name: "Dragon",
  35680. image: {
  35681. source: "./media/characters/sabrina/dragon.svg",
  35682. extra: 3670 / 2365,
  35683. bottom: 333 / 4003
  35684. }
  35685. },
  35686. gryphon: {
  35687. height: math.unit(3, "meters"),
  35688. name: "Gryphon",
  35689. image: {
  35690. source: "./media/characters/sabrina/gryphon.svg",
  35691. extra: 1576 / 945,
  35692. bottom: 71 / 1647
  35693. }
  35694. },
  35695. snake: {
  35696. height: math.unit(12, "meters"),
  35697. name: "Snake",
  35698. image: {
  35699. source: "./media/characters/sabrina/snake.svg",
  35700. extra: 1758 / 1320,
  35701. bottom: 186 / 1944
  35702. }
  35703. },
  35704. collar: {
  35705. height: math.unit(1.86, "meters"),
  35706. name: "Collar",
  35707. image: {
  35708. source: "./media/characters/sabrina/collar.svg"
  35709. }
  35710. },
  35711. eye: {
  35712. height: math.unit(0.53, "meters"),
  35713. name: "Eye",
  35714. image: {
  35715. source: "./media/characters/sabrina/eye.svg"
  35716. }
  35717. },
  35718. foot: {
  35719. height: math.unit(1.86, "meters"),
  35720. name: "Foot",
  35721. image: {
  35722. source: "./media/characters/sabrina/foot.svg"
  35723. }
  35724. },
  35725. hand: {
  35726. height: math.unit(1.32, "meters"),
  35727. name: "Hand",
  35728. image: {
  35729. source: "./media/characters/sabrina/hand.svg"
  35730. }
  35731. },
  35732. head: {
  35733. height: math.unit(2.44, "meters"),
  35734. name: "Head",
  35735. image: {
  35736. source: "./media/characters/sabrina/head.svg"
  35737. }
  35738. },
  35739. headAngry: {
  35740. height: math.unit(2.44, "meters"),
  35741. name: "Head (Angry))",
  35742. image: {
  35743. source: "./media/characters/sabrina/head-angry.svg"
  35744. }
  35745. },
  35746. maw: {
  35747. height: math.unit(1.65, "meters"),
  35748. name: "Maw",
  35749. image: {
  35750. source: "./media/characters/sabrina/maw.svg"
  35751. }
  35752. },
  35753. spikes: {
  35754. height: math.unit(1.69, "meters"),
  35755. name: "Spikes",
  35756. image: {
  35757. source: "./media/characters/sabrina/spikes.svg"
  35758. }
  35759. },
  35760. stomach: {
  35761. height: math.unit(1.15, "meters"),
  35762. name: "Stomach",
  35763. image: {
  35764. source: "./media/characters/sabrina/stomach.svg"
  35765. }
  35766. },
  35767. tongue: {
  35768. height: math.unit(1.27, "meters"),
  35769. name: "Tongue",
  35770. image: {
  35771. source: "./media/characters/sabrina/tongue.svg"
  35772. }
  35773. },
  35774. wingDorsal: {
  35775. height: math.unit(4.85, "meters"),
  35776. name: "Wing (Dorsal)",
  35777. image: {
  35778. source: "./media/characters/sabrina/wing-dorsal.svg"
  35779. }
  35780. },
  35781. wingVentral: {
  35782. height: math.unit(4.85, "meters"),
  35783. name: "Wing (Ventral)",
  35784. image: {
  35785. source: "./media/characters/sabrina/wing-ventral.svg"
  35786. }
  35787. },
  35788. },
  35789. [
  35790. {
  35791. name: "Normal",
  35792. height: math.unit(5, "meters"),
  35793. default: true
  35794. },
  35795. ]
  35796. ))
  35797. characterMakers.push(() => makeCharacter(
  35798. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35799. {
  35800. frontMaid: {
  35801. height: math.unit(5 + 5/12, "feet"),
  35802. weight: math.unit(130, "lb"),
  35803. name: "Front (Maid)",
  35804. image: {
  35805. source: "./media/characters/midnight-tales/front-maid.svg",
  35806. extra: 489/454,
  35807. bottom: 61/550
  35808. }
  35809. },
  35810. frontFormal: {
  35811. height: math.unit(5 + 5/12, "feet"),
  35812. weight: math.unit(130, "lb"),
  35813. name: "Front (Formal)",
  35814. image: {
  35815. source: "./media/characters/midnight-tales/front-formal.svg",
  35816. extra: 489/454,
  35817. bottom: 61/550
  35818. }
  35819. },
  35820. back: {
  35821. height: math.unit(5 + 5/12, "feet"),
  35822. weight: math.unit(130, "lb"),
  35823. name: "Back",
  35824. image: {
  35825. source: "./media/characters/midnight-tales/back.svg",
  35826. extra: 498/456,
  35827. bottom: 33/531
  35828. }
  35829. },
  35830. frontBeast: {
  35831. height: math.unit(40, "feet"),
  35832. weight: math.unit(64000, "lb"),
  35833. name: "Front (Beast)",
  35834. image: {
  35835. source: "./media/characters/midnight-tales/front-beast.svg",
  35836. extra: 927/860,
  35837. bottom: 53/980
  35838. }
  35839. },
  35840. backBeast: {
  35841. height: math.unit(40, "feet"),
  35842. weight: math.unit(64000, "lb"),
  35843. name: "Back (Beast)",
  35844. image: {
  35845. source: "./media/characters/midnight-tales/back-beast.svg",
  35846. extra: 929/855,
  35847. bottom: 16/945
  35848. }
  35849. },
  35850. footBeast: {
  35851. height: math.unit(6.7, "feet"),
  35852. name: "Foot (Beast)",
  35853. image: {
  35854. source: "./media/characters/midnight-tales/foot-beast.svg"
  35855. }
  35856. },
  35857. headBeast: {
  35858. height: math.unit(8, "feet"),
  35859. name: "Head (Beast)",
  35860. image: {
  35861. source: "./media/characters/midnight-tales/head-beast.svg"
  35862. }
  35863. },
  35864. },
  35865. [
  35866. {
  35867. name: "Normal",
  35868. height: math.unit(5 + 5 / 12, "feet"),
  35869. default: true
  35870. },
  35871. {
  35872. name: "Macro",
  35873. height: math.unit(25, "feet")
  35874. },
  35875. ]
  35876. ))
  35877. characterMakers.push(() => makeCharacter(
  35878. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35879. {
  35880. front: {
  35881. height: math.unit(5 + 10/12, "feet"),
  35882. name: "Front",
  35883. image: {
  35884. source: "./media/characters/argon/front.svg",
  35885. extra: 2009/1935,
  35886. bottom: 118/2127
  35887. }
  35888. },
  35889. back: {
  35890. height: math.unit(5 + 10/12, "feet"),
  35891. name: "Back",
  35892. image: {
  35893. source: "./media/characters/argon/back.svg",
  35894. extra: 2047/1992,
  35895. bottom: 20/2067
  35896. }
  35897. },
  35898. frontDressed: {
  35899. height: math.unit(5 + 10/12, "feet"),
  35900. name: "Front (Dressed)",
  35901. image: {
  35902. source: "./media/characters/argon/front-dressed.svg",
  35903. extra: 2009/1935,
  35904. bottom: 118/2127
  35905. }
  35906. },
  35907. },
  35908. [
  35909. {
  35910. name: "Normal",
  35911. height: math.unit(5 + 10/12, "feet"),
  35912. default: true
  35913. },
  35914. ]
  35915. ))
  35916. characterMakers.push(() => makeCharacter(
  35917. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35918. {
  35919. front: {
  35920. height: math.unit(8 + 6/12, "feet"),
  35921. weight: math.unit(1150, "lb"),
  35922. name: "Front",
  35923. image: {
  35924. source: "./media/characters/kichi/front.svg",
  35925. extra: 1267/1164,
  35926. bottom: 61/1328
  35927. }
  35928. },
  35929. back: {
  35930. height: math.unit(8 + 6/12, "feet"),
  35931. weight: math.unit(1150, "lb"),
  35932. name: "Back",
  35933. image: {
  35934. source: "./media/characters/kichi/back.svg",
  35935. extra: 1273/1166,
  35936. bottom: 33/1306
  35937. }
  35938. },
  35939. },
  35940. [
  35941. {
  35942. name: "Normal",
  35943. height: math.unit(8 + 6/12, "feet"),
  35944. default: true
  35945. },
  35946. ]
  35947. ))
  35948. characterMakers.push(() => makeCharacter(
  35949. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35950. {
  35951. front: {
  35952. height: math.unit(6, "feet"),
  35953. weight: math.unit(210, "lb"),
  35954. name: "Front",
  35955. image: {
  35956. source: "./media/characters/manetel-greyscale/front.svg",
  35957. extra: 350/312,
  35958. bottom: 8/358
  35959. }
  35960. },
  35961. },
  35962. [
  35963. {
  35964. name: "Micro",
  35965. height: math.unit(2, "inches")
  35966. },
  35967. {
  35968. name: "Normal",
  35969. height: math.unit(6, "feet"),
  35970. default: true
  35971. },
  35972. {
  35973. name: "Minimacro",
  35974. height: math.unit(17, "feet")
  35975. },
  35976. {
  35977. name: "Macro",
  35978. height: math.unit(117, "feet")
  35979. },
  35980. ]
  35981. ))
  35982. characterMakers.push(() => makeCharacter(
  35983. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35984. {
  35985. side: {
  35986. height: math.unit(5 + 1/12, "feet"),
  35987. weight: math.unit(418, "lb"),
  35988. name: "Side",
  35989. image: {
  35990. source: "./media/characters/softpurr/side.svg",
  35991. extra: 1993/1945,
  35992. bottom: 134/2127
  35993. }
  35994. },
  35995. front: {
  35996. height: math.unit(5 + 1/12, "feet"),
  35997. weight: math.unit(418, "lb"),
  35998. name: "Front",
  35999. image: {
  36000. source: "./media/characters/softpurr/front.svg",
  36001. extra: 1950/1856,
  36002. bottom: 174/2124
  36003. }
  36004. },
  36005. paw: {
  36006. height: math.unit(1, "feet"),
  36007. name: "Paw",
  36008. image: {
  36009. source: "./media/characters/softpurr/paw.svg"
  36010. }
  36011. },
  36012. },
  36013. [
  36014. {
  36015. name: "Normal",
  36016. height: math.unit(5 + 1/12, "feet"),
  36017. default: true
  36018. },
  36019. ]
  36020. ))
  36021. characterMakers.push(() => makeCharacter(
  36022. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36023. {
  36024. front: {
  36025. height: math.unit(260, "meters"),
  36026. name: "Front",
  36027. image: {
  36028. source: "./media/characters/anahita/front.svg",
  36029. extra: 665/635,
  36030. bottom: 89/754
  36031. }
  36032. },
  36033. },
  36034. [
  36035. {
  36036. name: "Macro",
  36037. height: math.unit(260, "meters"),
  36038. default: true
  36039. },
  36040. ]
  36041. ))
  36042. characterMakers.push(() => makeCharacter(
  36043. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36044. {
  36045. front: {
  36046. height: math.unit(4 + 10/12, "feet"),
  36047. weight: math.unit(160, "lb"),
  36048. name: "Front",
  36049. image: {
  36050. source: "./media/characters/chip-mouse/front.svg",
  36051. extra: 3528/3408,
  36052. bottom: 0/3528
  36053. }
  36054. },
  36055. frontNsfw: {
  36056. height: math.unit(4 + 10/12, "feet"),
  36057. weight: math.unit(160, "lb"),
  36058. name: "Front (NSFW)",
  36059. image: {
  36060. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36061. extra: 3528/3408,
  36062. bottom: 0/3528
  36063. }
  36064. },
  36065. },
  36066. [
  36067. {
  36068. name: "Normal",
  36069. height: math.unit(4 + 10/12, "feet"),
  36070. default: true
  36071. },
  36072. ]
  36073. ))
  36074. characterMakers.push(() => makeCharacter(
  36075. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36076. {
  36077. side: {
  36078. height: math.unit(10, "feet"),
  36079. weight: math.unit(14000, "lb"),
  36080. name: "Side",
  36081. image: {
  36082. source: "./media/characters/kremm/side.svg",
  36083. extra: 1390/1053,
  36084. bottom: 90/1480
  36085. }
  36086. },
  36087. gut: {
  36088. height: math.unit(5.8, "feet"),
  36089. name: "Gut",
  36090. image: {
  36091. source: "./media/characters/kremm/gut.svg"
  36092. }
  36093. },
  36094. ass: {
  36095. height: math.unit(6.1, "feet"),
  36096. name: "Ass",
  36097. image: {
  36098. source: "./media/characters/kremm/ass.svg"
  36099. }
  36100. },
  36101. jaws: {
  36102. height: math.unit(2.2, "feet"),
  36103. name: "Jaws",
  36104. image: {
  36105. source: "./media/characters/kremm/jaws.svg"
  36106. }
  36107. },
  36108. dick: {
  36109. height: math.unit(4.26, "feet"),
  36110. name: "Dick",
  36111. image: {
  36112. source: "./media/characters/kremm/dick.svg"
  36113. }
  36114. },
  36115. },
  36116. [
  36117. {
  36118. name: "Normal",
  36119. height: math.unit(10, "feet"),
  36120. default: true
  36121. },
  36122. ]
  36123. ))
  36124. characterMakers.push(() => makeCharacter(
  36125. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36126. {
  36127. front: {
  36128. height: math.unit(30, "stories"),
  36129. name: "Front",
  36130. image: {
  36131. source: "./media/characters/kai/front.svg",
  36132. extra: 1892/1718,
  36133. bottom: 162/2054
  36134. }
  36135. },
  36136. },
  36137. [
  36138. {
  36139. name: "Macro",
  36140. height: math.unit(30, "stories"),
  36141. default: true
  36142. },
  36143. ]
  36144. ))
  36145. characterMakers.push(() => makeCharacter(
  36146. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36147. {
  36148. front: {
  36149. height: math.unit(6 + 4/12, "feet"),
  36150. weight: math.unit(145, "lb"),
  36151. name: "Front",
  36152. image: {
  36153. source: "./media/characters/sykes/front.svg",
  36154. extra: 1321 / 1187,
  36155. bottom: 66 / 1387
  36156. }
  36157. },
  36158. back: {
  36159. height: math.unit(6 + 4/12, "feet"),
  36160. weight: math.unit(145, "lb"),
  36161. name: "Back",
  36162. image: {
  36163. source: "./media/characters/sykes/back.svg",
  36164. extra: 1326/1181,
  36165. bottom: 31/1357
  36166. }
  36167. },
  36168. traditionalOutfit: {
  36169. height: math.unit(6 + 4/12, "feet"),
  36170. weight: math.unit(145, "lb"),
  36171. name: "Traditional Outfit",
  36172. image: {
  36173. source: "./media/characters/sykes/traditional-outfit.svg",
  36174. extra: 1321 / 1187,
  36175. bottom: 66 / 1387
  36176. }
  36177. },
  36178. adventureOutfit: {
  36179. height: math.unit(6 + 4/12, "feet"),
  36180. weight: math.unit(145, "lb"),
  36181. name: "Adventure Outfit",
  36182. image: {
  36183. source: "./media/characters/sykes/adventure-outfit.svg",
  36184. extra: 1321 / 1187,
  36185. bottom: 66 / 1387
  36186. }
  36187. },
  36188. handLeft: {
  36189. height: math.unit(0.9, "feet"),
  36190. name: "Hand (Left)",
  36191. image: {
  36192. source: "./media/characters/sykes/hand-left.svg"
  36193. }
  36194. },
  36195. handRight: {
  36196. height: math.unit(0.839, "feet"),
  36197. name: "Hand (Right)",
  36198. image: {
  36199. source: "./media/characters/sykes/hand-right.svg"
  36200. }
  36201. },
  36202. leftFoot: {
  36203. height: math.unit(1.2, "feet"),
  36204. name: "Foot (Left)",
  36205. image: {
  36206. source: "./media/characters/sykes/foot-left.svg"
  36207. }
  36208. },
  36209. rightFoot: {
  36210. height: math.unit(1.2, "feet"),
  36211. name: "Foot (Right)",
  36212. image: {
  36213. source: "./media/characters/sykes/foot-right.svg"
  36214. }
  36215. },
  36216. maw: {
  36217. height: math.unit(1.93, "feet"),
  36218. name: "Maw",
  36219. image: {
  36220. source: "./media/characters/sykes/maw.svg"
  36221. }
  36222. },
  36223. teeth: {
  36224. height: math.unit(0.51, "feet"),
  36225. name: "Teeth",
  36226. image: {
  36227. source: "./media/characters/sykes/teeth.svg"
  36228. }
  36229. },
  36230. tongue: {
  36231. height: math.unit(2.13, "feet"),
  36232. name: "Tongue",
  36233. image: {
  36234. source: "./media/characters/sykes/tongue.svg"
  36235. }
  36236. },
  36237. uvula: {
  36238. height: math.unit(0.16, "feet"),
  36239. name: "Uvula",
  36240. image: {
  36241. source: "./media/characters/sykes/uvula.svg"
  36242. }
  36243. },
  36244. collar: {
  36245. height: math.unit(0.287, "feet"),
  36246. name: "Collar",
  36247. image: {
  36248. source: "./media/characters/sykes/collar.svg"
  36249. }
  36250. },
  36251. tail: {
  36252. height: math.unit(3.8, "feet"),
  36253. name: "Tail",
  36254. image: {
  36255. source: "./media/characters/sykes/tail.svg"
  36256. }
  36257. },
  36258. },
  36259. [
  36260. {
  36261. name: "Shrunken",
  36262. height: math.unit(5, "inches")
  36263. },
  36264. {
  36265. name: "Normal",
  36266. height: math.unit(6 + 4 / 12, "feet"),
  36267. default: true
  36268. },
  36269. {
  36270. name: "Big",
  36271. height: math.unit(15, "feet")
  36272. },
  36273. ]
  36274. ))
  36275. characterMakers.push(() => makeCharacter(
  36276. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36277. {
  36278. front: {
  36279. height: math.unit(5 + 8/12, "feet"),
  36280. weight: math.unit(190, "lb"),
  36281. name: "Front",
  36282. image: {
  36283. source: "./media/characters/oven-otter/front.svg",
  36284. extra: 1809/1740,
  36285. bottom: 181/1990
  36286. }
  36287. },
  36288. back: {
  36289. height: math.unit(5 + 8/12, "feet"),
  36290. weight: math.unit(190, "lb"),
  36291. name: "Back",
  36292. image: {
  36293. source: "./media/characters/oven-otter/back.svg",
  36294. extra: 1709/1635,
  36295. bottom: 118/1827
  36296. }
  36297. },
  36298. hand: {
  36299. height: math.unit(1.07, "feet"),
  36300. name: "Hand",
  36301. image: {
  36302. source: "./media/characters/oven-otter/hand.svg"
  36303. }
  36304. },
  36305. beans: {
  36306. height: math.unit(1.74, "feet"),
  36307. name: "Beans",
  36308. image: {
  36309. source: "./media/characters/oven-otter/beans.svg"
  36310. }
  36311. },
  36312. },
  36313. [
  36314. {
  36315. name: "Micro",
  36316. height: math.unit(0.5, "inches")
  36317. },
  36318. {
  36319. name: "Normal",
  36320. height: math.unit(5 + 8/12, "feet"),
  36321. default: true
  36322. },
  36323. {
  36324. name: "Macro",
  36325. height: math.unit(250, "feet")
  36326. },
  36327. {
  36328. name: "Really High",
  36329. height: math.unit(420, "feet")
  36330. },
  36331. ]
  36332. ))
  36333. characterMakers.push(() => makeCharacter(
  36334. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36335. {
  36336. front: {
  36337. height: math.unit(5, "meters"),
  36338. weight: math.unit(292000000000000, "kg"),
  36339. name: "Front",
  36340. image: {
  36341. source: "./media/characters/devourer/front.svg",
  36342. extra: 1800/1733,
  36343. bottom: 211/2011
  36344. }
  36345. },
  36346. maw: {
  36347. height: math.unit(1.1, "meter"),
  36348. name: "Maw",
  36349. image: {
  36350. source: "./media/characters/devourer/maw.svg"
  36351. }
  36352. },
  36353. },
  36354. [
  36355. {
  36356. name: "Small",
  36357. height: math.unit(3, "meters")
  36358. },
  36359. {
  36360. name: "Large",
  36361. height: math.unit(5, "meters"),
  36362. default: true
  36363. },
  36364. ]
  36365. ))
  36366. characterMakers.push(() => makeCharacter(
  36367. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36368. {
  36369. front: {
  36370. height: math.unit(6, "feet"),
  36371. weight: math.unit(400, "lb"),
  36372. name: "Front",
  36373. image: {
  36374. source: "./media/characters/ellarby/front.svg",
  36375. extra: 1909/1763,
  36376. bottom: 80/1989
  36377. }
  36378. },
  36379. back: {
  36380. height: math.unit(6, "feet"),
  36381. weight: math.unit(400, "lb"),
  36382. name: "Back",
  36383. image: {
  36384. source: "./media/characters/ellarby/back.svg",
  36385. extra: 1914/1784,
  36386. bottom: 172/2086
  36387. }
  36388. },
  36389. },
  36390. [
  36391. {
  36392. name: "Mischief",
  36393. height: math.unit(18, "inches")
  36394. },
  36395. {
  36396. name: "Trouble",
  36397. height: math.unit(12, "feet")
  36398. },
  36399. {
  36400. name: "Havoc",
  36401. height: math.unit(200, "feet"),
  36402. default: true
  36403. },
  36404. {
  36405. name: "Pandemonium",
  36406. height: math.unit(1, "mile")
  36407. },
  36408. {
  36409. name: "Catastrophe",
  36410. height: math.unit(100, "miles")
  36411. },
  36412. ]
  36413. ))
  36414. characterMakers.push(() => makeCharacter(
  36415. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36416. {
  36417. front: {
  36418. height: math.unit(4.7, "meters"),
  36419. weight: math.unit(6500, "kg"),
  36420. name: "Front",
  36421. image: {
  36422. source: "./media/characters/vex/front.svg",
  36423. extra: 1288/1140,
  36424. bottom: 100/1388
  36425. }
  36426. },
  36427. },
  36428. [
  36429. {
  36430. name: "Normal",
  36431. height: math.unit(4.7, "meters"),
  36432. default: true
  36433. },
  36434. ]
  36435. ))
  36436. characterMakers.push(() => makeCharacter(
  36437. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36438. {
  36439. normal: {
  36440. height: math.unit(6, "feet"),
  36441. weight: math.unit(350, "lb"),
  36442. name: "Normal",
  36443. image: {
  36444. source: "./media/characters/teshy/normal.svg",
  36445. extra: 1795/1735,
  36446. bottom: 16/1811
  36447. }
  36448. },
  36449. monsterFront: {
  36450. height: math.unit(12, "feet"),
  36451. weight: math.unit(4700, "lb"),
  36452. name: "Monster (Front)",
  36453. image: {
  36454. source: "./media/characters/teshy/monster-front.svg",
  36455. extra: 2042/2034,
  36456. bottom: 128/2170
  36457. }
  36458. },
  36459. monsterSide: {
  36460. height: math.unit(12, "feet"),
  36461. weight: math.unit(4700, "lb"),
  36462. name: "Monster (Side)",
  36463. image: {
  36464. source: "./media/characters/teshy/monster-side.svg",
  36465. extra: 2067/2056,
  36466. bottom: 70/2137
  36467. }
  36468. },
  36469. monsterBack: {
  36470. height: math.unit(12, "feet"),
  36471. weight: math.unit(4700, "lb"),
  36472. name: "Monster (Back)",
  36473. image: {
  36474. source: "./media/characters/teshy/monster-back.svg",
  36475. extra: 1921/1914,
  36476. bottom: 171/2092
  36477. }
  36478. },
  36479. },
  36480. [
  36481. {
  36482. name: "Normal",
  36483. height: math.unit(6, "feet"),
  36484. default: true
  36485. },
  36486. ]
  36487. ))
  36488. characterMakers.push(() => makeCharacter(
  36489. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36490. {
  36491. front: {
  36492. height: math.unit(6, "feet"),
  36493. name: "Front",
  36494. image: {
  36495. source: "./media/characters/ramey/front.svg",
  36496. extra: 790/787,
  36497. bottom: 27/817
  36498. }
  36499. },
  36500. },
  36501. [
  36502. {
  36503. name: "Normal",
  36504. height: math.unit(6, "feet"),
  36505. default: true
  36506. },
  36507. ]
  36508. ))
  36509. characterMakers.push(() => makeCharacter(
  36510. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36511. {
  36512. front: {
  36513. height: math.unit(5 + 5/12, "feet"),
  36514. weight: math.unit(120, "lb"),
  36515. name: "Front",
  36516. image: {
  36517. source: "./media/characters/phirae/front.svg",
  36518. extra: 2491/2436,
  36519. bottom: 38/2529
  36520. }
  36521. },
  36522. },
  36523. [
  36524. {
  36525. name: "Normal",
  36526. height: math.unit(5 + 5/12, "feet"),
  36527. default: true
  36528. },
  36529. ]
  36530. ))
  36531. characterMakers.push(() => makeCharacter(
  36532. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36533. {
  36534. front: {
  36535. height: math.unit(5 + 3/12, "feet"),
  36536. name: "Front",
  36537. image: {
  36538. source: "./media/characters/stagglas/front.svg",
  36539. extra: 962/882,
  36540. bottom: 53/1015
  36541. }
  36542. },
  36543. feral: {
  36544. height: math.unit(335, "cm"),
  36545. name: "Feral",
  36546. image: {
  36547. source: "./media/characters/stagglas/feral.svg",
  36548. extra: 1732/1090,
  36549. bottom: 48/1780
  36550. }
  36551. },
  36552. },
  36553. [
  36554. {
  36555. name: "Normal",
  36556. height: math.unit(5 + 3/12, "feet"),
  36557. default: true
  36558. },
  36559. ]
  36560. ))
  36561. characterMakers.push(() => makeCharacter(
  36562. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36563. {
  36564. front: {
  36565. height: math.unit(5 + 4/12, "feet"),
  36566. weight: math.unit(145, "lb"),
  36567. name: "Front",
  36568. image: {
  36569. source: "./media/characters/starra/front.svg",
  36570. extra: 1790/1691,
  36571. bottom: 91/1881
  36572. }
  36573. },
  36574. },
  36575. [
  36576. {
  36577. name: "Normal",
  36578. height: math.unit(5 + 4/12, "feet"),
  36579. default: true
  36580. },
  36581. ]
  36582. ))
  36583. characterMakers.push(() => makeCharacter(
  36584. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36585. {
  36586. front: {
  36587. height: math.unit(2.2, "meters"),
  36588. name: "Front",
  36589. image: {
  36590. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36591. extra: 1248/972,
  36592. bottom: 38/1286
  36593. }
  36594. },
  36595. },
  36596. [
  36597. {
  36598. name: "Normal",
  36599. height: math.unit(2.2, "meters"),
  36600. default: true
  36601. },
  36602. ]
  36603. ))
  36604. characterMakers.push(() => makeCharacter(
  36605. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36606. {
  36607. side: {
  36608. height: math.unit(8 + 2/12, "feet"),
  36609. weight: math.unit(1240, "lb"),
  36610. name: "Side",
  36611. image: {
  36612. source: "./media/characters/mika-valentine/side.svg",
  36613. extra: 2670/2501,
  36614. bottom: 250/2920
  36615. }
  36616. },
  36617. },
  36618. [
  36619. {
  36620. name: "Normal",
  36621. height: math.unit(8 + 2/12, "feet"),
  36622. default: true
  36623. },
  36624. ]
  36625. ))
  36626. characterMakers.push(() => makeCharacter(
  36627. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36628. {
  36629. front: {
  36630. height: math.unit(7 + 2/12, "feet"),
  36631. name: "Front",
  36632. image: {
  36633. source: "./media/characters/xoltol/front.svg",
  36634. extra: 2212/2124,
  36635. bottom: 84/2296
  36636. }
  36637. },
  36638. side: {
  36639. height: math.unit(7 + 2/12, "feet"),
  36640. name: "Side",
  36641. image: {
  36642. source: "./media/characters/xoltol/side.svg",
  36643. extra: 2273/2197,
  36644. bottom: 26/2299
  36645. }
  36646. },
  36647. hand: {
  36648. height: math.unit(2.5, "feet"),
  36649. name: "Hand",
  36650. image: {
  36651. source: "./media/characters/xoltol/hand.svg"
  36652. }
  36653. },
  36654. },
  36655. [
  36656. {
  36657. name: "Small-ish",
  36658. height: math.unit(5 + 11/12, "feet")
  36659. },
  36660. {
  36661. name: "Normal",
  36662. height: math.unit(7 + 2/12, "feet")
  36663. },
  36664. {
  36665. name: "\"Macro\"",
  36666. height: math.unit(14 + 9/12, "feet"),
  36667. default: true
  36668. },
  36669. {
  36670. name: "Alternate Height",
  36671. height: math.unit(20, "feet")
  36672. },
  36673. {
  36674. name: "Actually Macro",
  36675. height: math.unit(100, "feet")
  36676. },
  36677. ]
  36678. ))
  36679. characterMakers.push(() => makeCharacter(
  36680. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36681. {
  36682. front: {
  36683. height: math.unit(5 + 2/12, "feet"),
  36684. name: "Front",
  36685. image: {
  36686. source: "./media/characters/kotetsu-redwood/front.svg",
  36687. extra: 1053/942,
  36688. bottom: 60/1113
  36689. }
  36690. },
  36691. },
  36692. [
  36693. {
  36694. name: "Normal",
  36695. height: math.unit(5 + 2/12, "feet"),
  36696. default: true
  36697. },
  36698. ]
  36699. ))
  36700. characterMakers.push(() => makeCharacter(
  36701. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36702. {
  36703. front: {
  36704. height: math.unit(2.4, "meters"),
  36705. weight: math.unit(125, "kg"),
  36706. name: "Front",
  36707. image: {
  36708. source: "./media/characters/lilith/front.svg",
  36709. extra: 1590/1513,
  36710. bottom: 203/1793
  36711. }
  36712. },
  36713. },
  36714. [
  36715. {
  36716. name: "Humanoid",
  36717. height: math.unit(2.4, "meters")
  36718. },
  36719. {
  36720. name: "Normal",
  36721. height: math.unit(6, "meters"),
  36722. default: true
  36723. },
  36724. {
  36725. name: "Largest",
  36726. height: math.unit(55, "meters")
  36727. },
  36728. ]
  36729. ))
  36730. characterMakers.push(() => makeCharacter(
  36731. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36732. {
  36733. front: {
  36734. height: math.unit(8 + 4/12, "feet"),
  36735. weight: math.unit(535, "lb"),
  36736. name: "Front",
  36737. image: {
  36738. source: "./media/characters/beh'kah-bolger/front.svg",
  36739. extra: 1660/1603,
  36740. bottom: 37/1697
  36741. }
  36742. },
  36743. },
  36744. [
  36745. {
  36746. name: "Normal",
  36747. height: math.unit(8 + 4/12, "feet"),
  36748. default: true
  36749. },
  36750. {
  36751. name: "Kaiju",
  36752. height: math.unit(250, "feet")
  36753. },
  36754. {
  36755. name: "Still Growing",
  36756. height: math.unit(10, "miles")
  36757. },
  36758. {
  36759. name: "Continental",
  36760. height: math.unit(5000, "miles")
  36761. },
  36762. {
  36763. name: "Final Form",
  36764. height: math.unit(2500000, "miles")
  36765. },
  36766. ]
  36767. ))
  36768. characterMakers.push(() => makeCharacter(
  36769. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36770. {
  36771. front: {
  36772. height: math.unit(7 + 2/12, "feet"),
  36773. weight: math.unit(230, "kg"),
  36774. name: "Front",
  36775. image: {
  36776. source: "./media/characters/tatyana-milewska/front.svg",
  36777. extra: 1199/1150,
  36778. bottom: 86/1285
  36779. }
  36780. },
  36781. },
  36782. [
  36783. {
  36784. name: "Normal",
  36785. height: math.unit(7 + 2/12, "feet"),
  36786. default: true
  36787. },
  36788. {
  36789. name: "Big",
  36790. height: math.unit(12, "feet")
  36791. },
  36792. {
  36793. name: "Minimacro",
  36794. height: math.unit(20, "feet")
  36795. },
  36796. {
  36797. name: "Macro",
  36798. height: math.unit(120, "feet")
  36799. },
  36800. ]
  36801. ))
  36802. characterMakers.push(() => makeCharacter(
  36803. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36804. {
  36805. front: {
  36806. height: math.unit(7 + 8/12, "feet"),
  36807. weight: math.unit(152, "kg"),
  36808. name: "Front",
  36809. image: {
  36810. source: "./media/characters/helen-arri/front.svg",
  36811. extra: 440/423,
  36812. bottom: 14/454
  36813. }
  36814. },
  36815. back: {
  36816. height: math.unit(7 + 8/12, "feet"),
  36817. weight: math.unit(152, "kg"),
  36818. name: "Back",
  36819. image: {
  36820. source: "./media/characters/helen-arri/back.svg",
  36821. extra: 443/426,
  36822. bottom: 8/451
  36823. }
  36824. },
  36825. },
  36826. [
  36827. {
  36828. name: "Normal",
  36829. height: math.unit(7 + 8/12, "feet"),
  36830. default: true
  36831. },
  36832. {
  36833. name: "Big",
  36834. height: math.unit(14, "feet")
  36835. },
  36836. {
  36837. name: "Minimacro",
  36838. height: math.unit(24, "feet")
  36839. },
  36840. {
  36841. name: "Macro",
  36842. height: math.unit(140, "feet")
  36843. },
  36844. ]
  36845. ))
  36846. characterMakers.push(() => makeCharacter(
  36847. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36848. {
  36849. front: {
  36850. height: math.unit(6, "meters"),
  36851. name: "Front",
  36852. image: {
  36853. source: "./media/characters/ehanu-rehu/front.svg",
  36854. extra: 1800/1800,
  36855. bottom: 59/1859
  36856. }
  36857. },
  36858. },
  36859. [
  36860. {
  36861. name: "Normal",
  36862. height: math.unit(6, "meters"),
  36863. default: true
  36864. },
  36865. ]
  36866. ))
  36867. characterMakers.push(() => makeCharacter(
  36868. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36869. {
  36870. front: {
  36871. height: math.unit(7 + 3/12, "feet"),
  36872. name: "Front",
  36873. image: {
  36874. source: "./media/characters/renholder/front.svg",
  36875. extra: 3096/2960,
  36876. bottom: 250/3346
  36877. }
  36878. },
  36879. },
  36880. [
  36881. {
  36882. name: "Normal Bat",
  36883. height: math.unit(7 + 3/12, "feet"),
  36884. default: true
  36885. },
  36886. {
  36887. name: "Slightly Tall Bat",
  36888. height: math.unit(100, "feet")
  36889. },
  36890. {
  36891. name: "Big Bat",
  36892. height: math.unit(1000, "feet")
  36893. },
  36894. {
  36895. name: "City-Sized Bat",
  36896. height: math.unit(200000, "feet")
  36897. },
  36898. {
  36899. name: "Bigger Bat",
  36900. height: math.unit(10000, "miles")
  36901. },
  36902. {
  36903. name: "Solar Sized Bat",
  36904. height: math.unit(100, "AU")
  36905. },
  36906. {
  36907. name: "Galactic Bat",
  36908. height: math.unit(200000, "lightyears")
  36909. },
  36910. {
  36911. name: "Universally Known Bat",
  36912. height: math.unit(1, "universe")
  36913. },
  36914. ]
  36915. ))
  36916. characterMakers.push(() => makeCharacter(
  36917. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36918. {
  36919. front: {
  36920. height: math.unit(6 + 11/12, "feet"),
  36921. weight: math.unit(250, "lb"),
  36922. name: "Front",
  36923. image: {
  36924. source: "./media/characters/cookiecat/front.svg",
  36925. extra: 893/827,
  36926. bottom: 14/907
  36927. }
  36928. },
  36929. },
  36930. [
  36931. {
  36932. name: "Micro",
  36933. height: math.unit(3, "inches")
  36934. },
  36935. {
  36936. name: "Normal",
  36937. height: math.unit(6 + 11/12, "feet"),
  36938. default: true
  36939. },
  36940. {
  36941. name: "Macro",
  36942. height: math.unit(100, "feet")
  36943. },
  36944. {
  36945. name: "Macro+",
  36946. height: math.unit(404, "feet")
  36947. },
  36948. {
  36949. name: "Megamacro",
  36950. height: math.unit(165, "miles")
  36951. },
  36952. {
  36953. name: "Planetary",
  36954. height: math.unit(4600, "miles")
  36955. },
  36956. ]
  36957. ))
  36958. characterMakers.push(() => makeCharacter(
  36959. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36960. {
  36961. front: {
  36962. height: math.unit(10 + 3/12, "feet"),
  36963. weight: math.unit(1500, "lb"),
  36964. name: "Front",
  36965. image: {
  36966. source: "./media/characters/tux-kusanagi/front.svg",
  36967. extra: 944/840,
  36968. bottom: 39/983
  36969. }
  36970. },
  36971. back: {
  36972. height: math.unit(10 + 3/12, "feet"),
  36973. weight: math.unit(1500, "lb"),
  36974. name: "Back",
  36975. image: {
  36976. source: "./media/characters/tux-kusanagi/back.svg",
  36977. extra: 941/842,
  36978. bottom: 28/969
  36979. }
  36980. },
  36981. rump: {
  36982. height: math.unit(5.25, "feet"),
  36983. name: "Rump",
  36984. image: {
  36985. source: "./media/characters/tux-kusanagi/rump.svg"
  36986. }
  36987. },
  36988. beak: {
  36989. height: math.unit(1.54, "feet"),
  36990. name: "Beak",
  36991. image: {
  36992. source: "./media/characters/tux-kusanagi/beak.svg"
  36993. }
  36994. },
  36995. },
  36996. [
  36997. {
  36998. name: "Normal",
  36999. height: math.unit(10 + 3/12, "feet"),
  37000. default: true
  37001. },
  37002. ]
  37003. ))
  37004. characterMakers.push(() => makeCharacter(
  37005. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37006. {
  37007. front: {
  37008. height: math.unit(58, "feet"),
  37009. weight: math.unit(200, "tons"),
  37010. name: "Front",
  37011. image: {
  37012. source: "./media/characters/uzarmazari/front.svg",
  37013. extra: 1575/1455,
  37014. bottom: 152/1727
  37015. }
  37016. },
  37017. back: {
  37018. height: math.unit(58, "feet"),
  37019. weight: math.unit(200, "tons"),
  37020. name: "Back",
  37021. image: {
  37022. source: "./media/characters/uzarmazari/back.svg",
  37023. extra: 1585/1510,
  37024. bottom: 157/1742
  37025. }
  37026. },
  37027. head: {
  37028. height: math.unit(26, "feet"),
  37029. name: "Head",
  37030. image: {
  37031. source: "./media/characters/uzarmazari/head.svg"
  37032. }
  37033. },
  37034. },
  37035. [
  37036. {
  37037. name: "Normal",
  37038. height: math.unit(58, "feet"),
  37039. default: true
  37040. },
  37041. ]
  37042. ))
  37043. characterMakers.push(() => makeCharacter(
  37044. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37045. {
  37046. side: {
  37047. height: math.unit(15, "feet"),
  37048. name: "Side",
  37049. image: {
  37050. source: "./media/characters/akitu/side.svg",
  37051. extra: 1421/1321,
  37052. bottom: 157/1578
  37053. }
  37054. },
  37055. front: {
  37056. height: math.unit(15, "feet"),
  37057. name: "Front",
  37058. image: {
  37059. source: "./media/characters/akitu/front.svg",
  37060. extra: 1435/1326,
  37061. bottom: 232/1667
  37062. }
  37063. },
  37064. },
  37065. [
  37066. {
  37067. name: "Normal",
  37068. height: math.unit(15, "feet"),
  37069. default: true
  37070. },
  37071. ]
  37072. ))
  37073. characterMakers.push(() => makeCharacter(
  37074. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37075. {
  37076. front: {
  37077. height: math.unit(10 + 8/12, "feet"),
  37078. name: "Front",
  37079. image: {
  37080. source: "./media/characters/azalie-croixland/front.svg",
  37081. extra: 1972/1856,
  37082. bottom: 31/2003
  37083. }
  37084. },
  37085. },
  37086. [
  37087. {
  37088. name: "Original Height",
  37089. height: math.unit(5 + 4/12, "feet")
  37090. },
  37091. {
  37092. name: "Normal Height",
  37093. height: math.unit(10 + 8/12, "feet"),
  37094. default: true
  37095. },
  37096. ]
  37097. ))
  37098. characterMakers.push(() => makeCharacter(
  37099. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37100. {
  37101. side: {
  37102. height: math.unit(7 + 1/12, "feet"),
  37103. weight: math.unit(245, "lb"),
  37104. name: "Side",
  37105. image: {
  37106. source: "./media/characters/kavus-kazian/side.svg",
  37107. extra: 349/342,
  37108. bottom: 15/364
  37109. }
  37110. },
  37111. },
  37112. [
  37113. {
  37114. name: "Normal",
  37115. height: math.unit(7 + 1/12, "feet"),
  37116. default: true
  37117. },
  37118. ]
  37119. ))
  37120. characterMakers.push(() => makeCharacter(
  37121. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37122. {
  37123. normalFront: {
  37124. height: math.unit(5 + 11/12, "feet"),
  37125. name: "Front",
  37126. image: {
  37127. source: "./media/characters/moonlight-rose/normal-front.svg",
  37128. extra: 1980/1825,
  37129. bottom: 18/1998
  37130. },
  37131. form: "normal",
  37132. default: true
  37133. },
  37134. normalBack: {
  37135. height: math.unit(5 + 11/12, "feet"),
  37136. name: "Back",
  37137. image: {
  37138. source: "./media/characters/moonlight-rose/normal-back.svg",
  37139. extra: 2010/1839,
  37140. bottom: 10/2020
  37141. },
  37142. form: "normal"
  37143. },
  37144. demonFront: {
  37145. height: math.unit(1.5, "earths"),
  37146. name: "Front",
  37147. image: {
  37148. source: "./media/characters/moonlight-rose/demon.svg",
  37149. extra: 1400/1294,
  37150. bottom: 45/1445
  37151. },
  37152. form: "demon",
  37153. default: true
  37154. },
  37155. terraFront: {
  37156. height: math.unit(1.5, "earths"),
  37157. name: "Front",
  37158. image: {
  37159. source: "./media/characters/moonlight-rose/terra.svg"
  37160. },
  37161. form: "terra",
  37162. default: true
  37163. },
  37164. jupiterFront: {
  37165. height: math.unit(69911*2, "km"),
  37166. name: "Front",
  37167. image: {
  37168. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37169. extra: 1367/1286,
  37170. bottom: 55/1422
  37171. },
  37172. form: "jupiter",
  37173. default: true
  37174. },
  37175. neptuneFront: {
  37176. height: math.unit(24622*2, "feet"),
  37177. name: "Front",
  37178. image: {
  37179. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37180. extra: 1851/1712,
  37181. bottom: 0/1851
  37182. },
  37183. form: "neptune",
  37184. default: true
  37185. },
  37186. },
  37187. [
  37188. {
  37189. name: "\"Natural\" Height",
  37190. height: math.unit(5 + 11/12, "feet"),
  37191. form: "normal"
  37192. },
  37193. {
  37194. name: "Smallest comfortable size",
  37195. height: math.unit(40, "meters"),
  37196. form: "normal"
  37197. },
  37198. {
  37199. name: "Common size",
  37200. height: math.unit(50, "km"),
  37201. form: "normal",
  37202. default: true
  37203. },
  37204. {
  37205. name: "Normal",
  37206. height: math.unit(1.5, "earths"),
  37207. form: "demon",
  37208. default: true
  37209. },
  37210. {
  37211. name: "Universal",
  37212. height: math.unit(15, "universes"),
  37213. form: "demon"
  37214. },
  37215. {
  37216. name: "Earth",
  37217. height: math.unit(1.5, "earths"),
  37218. form: "terra",
  37219. default: true
  37220. },
  37221. {
  37222. name: "Super Earth",
  37223. height: math.unit(67.5, "earths"),
  37224. form: "terra"
  37225. },
  37226. {
  37227. name: "Doesn't fit in a solar system...",
  37228. height: math.unit(1, "galaxy"),
  37229. form: "terra"
  37230. },
  37231. {
  37232. name: "Saturn",
  37233. height: math.unit(58232*2, "km"),
  37234. form: "jupiter"
  37235. },
  37236. {
  37237. name: "Jupiter",
  37238. height: math.unit(69911*2, "km"),
  37239. form: "jupiter",
  37240. default: true
  37241. },
  37242. {
  37243. name: "HD 100546 b",
  37244. height: math.unit(482938, "km"),
  37245. form: "jupiter"
  37246. },
  37247. {
  37248. name: "Enceladus",
  37249. height: math.unit(513*2, "km"),
  37250. form: "neptune"
  37251. },
  37252. {
  37253. name: "Europe",
  37254. height: math.unit(1560*2, "km"),
  37255. form: "neptune"
  37256. },
  37257. {
  37258. name: "Neptune",
  37259. height: math.unit(24622*2, "km"),
  37260. form: "neptune",
  37261. default: true
  37262. },
  37263. {
  37264. name: "CoRoT-9b",
  37265. height: math.unit(75067*2, "km"),
  37266. form: "neptune"
  37267. },
  37268. ],
  37269. {
  37270. "normal": {
  37271. name: "Normal",
  37272. default: true
  37273. },
  37274. "demon": {
  37275. name: "Demon"
  37276. },
  37277. "terra": {
  37278. name: "Terra"
  37279. },
  37280. "jupiter": {
  37281. name: "Jupiter"
  37282. },
  37283. "neptune": {
  37284. name: "Neptune"
  37285. }
  37286. }
  37287. ))
  37288. characterMakers.push(() => makeCharacter(
  37289. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37290. {
  37291. front: {
  37292. height: math.unit(16, "feet"),
  37293. weight: math.unit(610, "kg"),
  37294. name: "Front",
  37295. image: {
  37296. source: "./media/characters/huckle/front.svg",
  37297. extra: 1731/1625,
  37298. bottom: 33/1764
  37299. }
  37300. },
  37301. back: {
  37302. height: math.unit(16, "feet"),
  37303. weight: math.unit(610, "kg"),
  37304. name: "Back",
  37305. image: {
  37306. source: "./media/characters/huckle/back.svg",
  37307. extra: 1738/1651,
  37308. bottom: 37/1775
  37309. }
  37310. },
  37311. laughing: {
  37312. height: math.unit(3.75, "feet"),
  37313. name: "Laughing",
  37314. image: {
  37315. source: "./media/characters/huckle/laughing.svg"
  37316. }
  37317. },
  37318. angry: {
  37319. height: math.unit(4.15, "feet"),
  37320. name: "Angry",
  37321. image: {
  37322. source: "./media/characters/huckle/angry.svg"
  37323. }
  37324. },
  37325. },
  37326. [
  37327. {
  37328. name: "Normal",
  37329. height: math.unit(16, "feet"),
  37330. default: true
  37331. },
  37332. {
  37333. name: "Mini Macro",
  37334. height: math.unit(463, "feet")
  37335. },
  37336. {
  37337. name: "Macro",
  37338. height: math.unit(1680, "meters")
  37339. },
  37340. {
  37341. name: "Mega Macro",
  37342. height: math.unit(175, "km")
  37343. },
  37344. {
  37345. name: "Terra Macro",
  37346. height: math.unit(32, "gigameters")
  37347. },
  37348. {
  37349. name: "Multiverse+",
  37350. height: math.unit(2.56e23, "yottameters")
  37351. },
  37352. ]
  37353. ))
  37354. characterMakers.push(() => makeCharacter(
  37355. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37356. {
  37357. front: {
  37358. height: math.unit(6 + 9/12, "feet"),
  37359. weight: math.unit(280, "lb"),
  37360. name: "Front",
  37361. image: {
  37362. source: "./media/characters/candy/front.svg",
  37363. extra: 234/217,
  37364. bottom: 11/245
  37365. }
  37366. },
  37367. },
  37368. [
  37369. {
  37370. name: "Really Small",
  37371. height: math.unit(0.1, "nm")
  37372. },
  37373. {
  37374. name: "Micro",
  37375. height: math.unit(2, "inches")
  37376. },
  37377. {
  37378. name: "Normal",
  37379. height: math.unit(6 + 9/12, "feet"),
  37380. default: true
  37381. },
  37382. {
  37383. name: "Small Macro",
  37384. height: math.unit(69, "feet")
  37385. },
  37386. {
  37387. name: "Macro",
  37388. height: math.unit(160, "feet")
  37389. },
  37390. {
  37391. name: "Megamacro",
  37392. height: math.unit(22000, "miles")
  37393. },
  37394. {
  37395. name: "Gigamacro",
  37396. height: math.unit(50000, "miles")
  37397. },
  37398. ]
  37399. ))
  37400. characterMakers.push(() => makeCharacter(
  37401. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37402. {
  37403. front: {
  37404. height: math.unit(4, "feet"),
  37405. weight: math.unit(90, "lb"),
  37406. name: "Front",
  37407. image: {
  37408. source: "./media/characters/joey-mcdonald/front.svg",
  37409. extra: 1059/852,
  37410. bottom: 33/1092
  37411. }
  37412. },
  37413. back: {
  37414. height: math.unit(4, "feet"),
  37415. weight: math.unit(90, "lb"),
  37416. name: "Back",
  37417. image: {
  37418. source: "./media/characters/joey-mcdonald/back.svg",
  37419. extra: 1077/879,
  37420. bottom: 5/1082
  37421. }
  37422. },
  37423. frontKobold: {
  37424. height: math.unit(4, "feet"),
  37425. weight: math.unit(100, "lb"),
  37426. name: "Front-kobold",
  37427. image: {
  37428. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37429. extra: 1480/1367,
  37430. bottom: 0/1480
  37431. }
  37432. },
  37433. backKobold: {
  37434. height: math.unit(4, "feet"),
  37435. weight: math.unit(100, "lb"),
  37436. name: "Back-kobold",
  37437. image: {
  37438. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37439. extra: 1449/1361,
  37440. bottom: 0/1449
  37441. }
  37442. },
  37443. },
  37444. [
  37445. {
  37446. name: "Normal",
  37447. height: math.unit(4, "feet"),
  37448. default: true
  37449. },
  37450. ]
  37451. ))
  37452. characterMakers.push(() => makeCharacter(
  37453. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37454. {
  37455. front: {
  37456. height: math.unit(12 + 6/12, "feet"),
  37457. name: "Front",
  37458. image: {
  37459. source: "./media/characters/kass-lockheed/front.svg",
  37460. extra: 354/343,
  37461. bottom: 9/363
  37462. }
  37463. },
  37464. back: {
  37465. height: math.unit(12 + 6/12, "feet"),
  37466. name: "Back",
  37467. image: {
  37468. source: "./media/characters/kass-lockheed/back.svg",
  37469. extra: 364/352,
  37470. bottom: 3/367
  37471. }
  37472. },
  37473. dick: {
  37474. height: math.unit(3.12, "feet"),
  37475. name: "Dick",
  37476. image: {
  37477. source: "./media/characters/kass-lockheed/dick.svg"
  37478. }
  37479. },
  37480. head: {
  37481. height: math.unit(2.6, "feet"),
  37482. name: "Head",
  37483. image: {
  37484. source: "./media/characters/kass-lockheed/head.svg"
  37485. }
  37486. },
  37487. bleh: {
  37488. height: math.unit(2.85, "feet"),
  37489. name: "Bleh",
  37490. image: {
  37491. source: "./media/characters/kass-lockheed/bleh.svg"
  37492. }
  37493. },
  37494. smug: {
  37495. height: math.unit(2.85, "feet"),
  37496. name: "Smug",
  37497. image: {
  37498. source: "./media/characters/kass-lockheed/smug.svg"
  37499. }
  37500. },
  37501. },
  37502. [
  37503. {
  37504. name: "Normal",
  37505. height: math.unit(12 + 6/12, "feet"),
  37506. default: true
  37507. },
  37508. ]
  37509. ))
  37510. characterMakers.push(() => makeCharacter(
  37511. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37512. {
  37513. front: {
  37514. height: math.unit(6 + 2/12, "feet"),
  37515. name: "Front",
  37516. image: {
  37517. source: "./media/characters/taylor/front.svg",
  37518. extra: 639/495,
  37519. bottom: 12/651
  37520. }
  37521. },
  37522. },
  37523. [
  37524. {
  37525. name: "Normal",
  37526. height: math.unit(6 + 2/12, "feet"),
  37527. default: true
  37528. },
  37529. {
  37530. name: "Big",
  37531. height: math.unit(15, "feet")
  37532. },
  37533. {
  37534. name: "Lorg",
  37535. height: math.unit(80, "feet")
  37536. },
  37537. {
  37538. name: "Too Lorg",
  37539. height: math.unit(120, "feet")
  37540. },
  37541. ]
  37542. ))
  37543. characterMakers.push(() => makeCharacter(
  37544. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37545. {
  37546. front: {
  37547. height: math.unit(15, "feet"),
  37548. name: "Front",
  37549. image: {
  37550. source: "./media/characters/kaizer/front.svg",
  37551. extra: 1612/1436,
  37552. bottom: 43/1655
  37553. }
  37554. },
  37555. },
  37556. [
  37557. {
  37558. name: "Normal",
  37559. height: math.unit(15, "feet"),
  37560. default: true
  37561. },
  37562. ]
  37563. ))
  37564. characterMakers.push(() => makeCharacter(
  37565. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37566. {
  37567. front: {
  37568. height: math.unit(2, "feet"),
  37569. weight: math.unit(30, "lb"),
  37570. name: "Front",
  37571. image: {
  37572. source: "./media/characters/sandy/front.svg",
  37573. extra: 1439/1307,
  37574. bottom: 194/1633
  37575. }
  37576. },
  37577. },
  37578. [
  37579. {
  37580. name: "Normal",
  37581. height: math.unit(2, "feet"),
  37582. default: true
  37583. },
  37584. ]
  37585. ))
  37586. characterMakers.push(() => makeCharacter(
  37587. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37588. {
  37589. front: {
  37590. height: math.unit(3, "feet"),
  37591. name: "Front",
  37592. image: {
  37593. source: "./media/characters/mellvi/front.svg",
  37594. extra: 1831/1630,
  37595. bottom: 58/1889
  37596. }
  37597. },
  37598. },
  37599. [
  37600. {
  37601. name: "Normal",
  37602. height: math.unit(3, "feet"),
  37603. default: true
  37604. },
  37605. ]
  37606. ))
  37607. characterMakers.push(() => makeCharacter(
  37608. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37609. {
  37610. front: {
  37611. height: math.unit(5 + 11/12, "feet"),
  37612. weight: math.unit(200, "lb"),
  37613. name: "Front",
  37614. image: {
  37615. source: "./media/characters/shirou/front.svg",
  37616. extra: 2491/2383,
  37617. bottom: 189/2680
  37618. }
  37619. },
  37620. back: {
  37621. height: math.unit(5 + 11/12, "feet"),
  37622. weight: math.unit(200, "lb"),
  37623. name: "Back",
  37624. image: {
  37625. source: "./media/characters/shirou/back.svg",
  37626. extra: 2554/2450,
  37627. bottom: 76/2630
  37628. }
  37629. },
  37630. },
  37631. [
  37632. {
  37633. name: "Normal",
  37634. height: math.unit(5 + 11/12, "feet"),
  37635. default: true
  37636. },
  37637. ]
  37638. ))
  37639. characterMakers.push(() => makeCharacter(
  37640. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37641. {
  37642. front: {
  37643. height: math.unit(6 + 3/12, "feet"),
  37644. weight: math.unit(177, "lb"),
  37645. name: "Front",
  37646. image: {
  37647. source: "./media/characters/noryu/front.svg",
  37648. extra: 973/885,
  37649. bottom: 10/983
  37650. }
  37651. },
  37652. },
  37653. [
  37654. {
  37655. name: "Normal",
  37656. height: math.unit(6 + 3/12, "feet"),
  37657. default: true
  37658. },
  37659. ]
  37660. ))
  37661. characterMakers.push(() => makeCharacter(
  37662. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37663. {
  37664. front: {
  37665. height: math.unit(5 + 6/12, "feet"),
  37666. weight: math.unit(170, "lb"),
  37667. name: "Front",
  37668. image: {
  37669. source: "./media/characters/mevolas-rubenido/front.svg",
  37670. extra: 2109/1901,
  37671. bottom: 96/2205
  37672. }
  37673. },
  37674. },
  37675. [
  37676. {
  37677. name: "Normal",
  37678. height: math.unit(5 + 6/12, "feet"),
  37679. default: true
  37680. },
  37681. ]
  37682. ))
  37683. characterMakers.push(() => makeCharacter(
  37684. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37685. {
  37686. front: {
  37687. height: math.unit(100, "feet"),
  37688. name: "Front",
  37689. image: {
  37690. source: "./media/characters/dee/front.svg",
  37691. extra: 2153/2036,
  37692. bottom: 59/2212
  37693. }
  37694. },
  37695. back: {
  37696. height: math.unit(100, "feet"),
  37697. name: "Back",
  37698. image: {
  37699. source: "./media/characters/dee/back.svg",
  37700. extra: 2183/2058,
  37701. bottom: 75/2258
  37702. }
  37703. },
  37704. foot: {
  37705. height: math.unit(19.43, "feet"),
  37706. name: "Foot",
  37707. image: {
  37708. source: "./media/characters/dee/foot.svg"
  37709. }
  37710. },
  37711. hoof: {
  37712. height: math.unit(20.6, "feet"),
  37713. name: "Hoof",
  37714. image: {
  37715. source: "./media/characters/dee/hoof.svg"
  37716. }
  37717. },
  37718. },
  37719. [
  37720. {
  37721. name: "Macro",
  37722. height: math.unit(100, "feet"),
  37723. default: true
  37724. },
  37725. ]
  37726. ))
  37727. characterMakers.push(() => makeCharacter(
  37728. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37729. {
  37730. front: {
  37731. height: math.unit(5 + 6/12, "feet"),
  37732. name: "Front",
  37733. image: {
  37734. source: "./media/characters/teh/front.svg",
  37735. extra: 1002/847,
  37736. bottom: 62/1064
  37737. }
  37738. },
  37739. },
  37740. [
  37741. {
  37742. name: "Normal",
  37743. height: math.unit(5 + 6/12, "feet"),
  37744. default: true
  37745. },
  37746. ]
  37747. ))
  37748. characterMakers.push(() => makeCharacter(
  37749. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37750. {
  37751. side: {
  37752. height: math.unit(6 + 1/12, "feet"),
  37753. weight: math.unit(204, "lb"),
  37754. name: "Side",
  37755. image: {
  37756. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37757. extra: 974/775,
  37758. bottom: 169/1143
  37759. }
  37760. },
  37761. sitting: {
  37762. height: math.unit(6 + 2/12, "feet"),
  37763. weight: math.unit(204, "lb"),
  37764. name: "Sitting",
  37765. image: {
  37766. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37767. extra: 1175/964,
  37768. bottom: 378/1553
  37769. }
  37770. },
  37771. },
  37772. [
  37773. {
  37774. name: "Normal",
  37775. height: math.unit(6 + 1/12, "feet"),
  37776. default: true
  37777. },
  37778. ]
  37779. ))
  37780. characterMakers.push(() => makeCharacter(
  37781. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37782. {
  37783. front: {
  37784. height: math.unit(6, "inches"),
  37785. name: "Front",
  37786. image: {
  37787. source: "./media/characters/tululi/front.svg",
  37788. extra: 1997/1876,
  37789. bottom: 20/2017
  37790. }
  37791. },
  37792. },
  37793. [
  37794. {
  37795. name: "Normal",
  37796. height: math.unit(6, "inches"),
  37797. default: true
  37798. },
  37799. ]
  37800. ))
  37801. characterMakers.push(() => makeCharacter(
  37802. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37803. {
  37804. front: {
  37805. height: math.unit(4 + 1/12, "feet"),
  37806. name: "Front",
  37807. image: {
  37808. source: "./media/characters/star/front.svg",
  37809. extra: 1493/1189,
  37810. bottom: 48/1541
  37811. }
  37812. },
  37813. },
  37814. [
  37815. {
  37816. name: "Normal",
  37817. height: math.unit(4 + 1/12, "feet"),
  37818. default: true
  37819. },
  37820. ]
  37821. ))
  37822. characterMakers.push(() => makeCharacter(
  37823. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37824. {
  37825. front: {
  37826. height: math.unit(6 + 3/12, "feet"),
  37827. name: "Front",
  37828. image: {
  37829. source: "./media/characters/comet/front.svg",
  37830. extra: 1681/1462,
  37831. bottom: 26/1707
  37832. }
  37833. },
  37834. },
  37835. [
  37836. {
  37837. name: "Normal",
  37838. height: math.unit(6 + 3/12, "feet"),
  37839. default: true
  37840. },
  37841. ]
  37842. ))
  37843. characterMakers.push(() => makeCharacter(
  37844. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37845. {
  37846. front: {
  37847. height: math.unit(950, "feet"),
  37848. name: "Front",
  37849. image: {
  37850. source: "./media/characters/vortex/front.svg",
  37851. extra: 1497/1434,
  37852. bottom: 56/1553
  37853. }
  37854. },
  37855. maw: {
  37856. height: math.unit(285, "feet"),
  37857. name: "Maw",
  37858. image: {
  37859. source: "./media/characters/vortex/maw.svg"
  37860. }
  37861. },
  37862. },
  37863. [
  37864. {
  37865. name: "Macro",
  37866. height: math.unit(950, "feet"),
  37867. default: true
  37868. },
  37869. ]
  37870. ))
  37871. characterMakers.push(() => makeCharacter(
  37872. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37873. {
  37874. front: {
  37875. height: math.unit(600, "feet"),
  37876. weight: math.unit(0.02, "grams"),
  37877. name: "Front",
  37878. image: {
  37879. source: "./media/characters/doodle/front.svg",
  37880. extra: 1578/1413,
  37881. bottom: 37/1615
  37882. }
  37883. },
  37884. },
  37885. [
  37886. {
  37887. name: "Macro",
  37888. height: math.unit(600, "feet"),
  37889. default: true
  37890. },
  37891. ]
  37892. ))
  37893. characterMakers.push(() => makeCharacter(
  37894. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37895. {
  37896. front: {
  37897. height: math.unit(6 + 6/12, "feet"),
  37898. name: "Front",
  37899. image: {
  37900. source: "./media/characters/jai/front.svg",
  37901. extra: 1645/1534,
  37902. bottom: 115/1760
  37903. }
  37904. },
  37905. },
  37906. [
  37907. {
  37908. name: "Normal",
  37909. height: math.unit(6 + 6/12, "feet"),
  37910. default: true
  37911. },
  37912. ]
  37913. ))
  37914. characterMakers.push(() => makeCharacter(
  37915. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37916. {
  37917. front: {
  37918. height: math.unit(6 + 8/12, "feet"),
  37919. name: "Front",
  37920. image: {
  37921. source: "./media/characters/pixel/front.svg",
  37922. extra: 1900/1735,
  37923. bottom: 63/1963
  37924. }
  37925. },
  37926. },
  37927. [
  37928. {
  37929. name: "Normal",
  37930. height: math.unit(6 + 8/12, "feet"),
  37931. default: true
  37932. },
  37933. ]
  37934. ))
  37935. characterMakers.push(() => makeCharacter(
  37936. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37937. {
  37938. back: {
  37939. height: math.unit(4 + 1/12, "feet"),
  37940. weight: math.unit(75, "lb"),
  37941. name: "Back",
  37942. image: {
  37943. source: "./media/characters/rhett/back.svg",
  37944. extra: 930/878,
  37945. bottom: 25/955
  37946. }
  37947. },
  37948. front: {
  37949. height: math.unit(4 + 1/12, "feet"),
  37950. weight: math.unit(75, "lb"),
  37951. name: "Front",
  37952. image: {
  37953. source: "./media/characters/rhett/front.svg",
  37954. extra: 1682/1586,
  37955. bottom: 92/1774
  37956. }
  37957. },
  37958. },
  37959. [
  37960. {
  37961. name: "Micro",
  37962. height: math.unit(8, "inches")
  37963. },
  37964. {
  37965. name: "Tiny",
  37966. height: math.unit(2, "feet")
  37967. },
  37968. {
  37969. name: "Normal",
  37970. height: math.unit(4 + 1/12, "feet"),
  37971. default: true
  37972. },
  37973. ]
  37974. ))
  37975. characterMakers.push(() => makeCharacter(
  37976. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37977. {
  37978. front: {
  37979. height: math.unit(3 + 3/12, "feet"),
  37980. name: "Front",
  37981. image: {
  37982. source: "./media/characters/penny/front.svg",
  37983. extra: 1406/1311,
  37984. bottom: 26/1432
  37985. }
  37986. },
  37987. },
  37988. [
  37989. {
  37990. name: "Normal",
  37991. height: math.unit(3 + 3/12, "feet"),
  37992. default: true
  37993. },
  37994. ]
  37995. ))
  37996. characterMakers.push(() => makeCharacter(
  37997. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37998. {
  37999. front: {
  38000. height: math.unit(4 + 11/12, "feet"),
  38001. name: "Front",
  38002. image: {
  38003. source: "./media/characters/monty/front.svg",
  38004. extra: 1479/1209,
  38005. bottom: 0/1479
  38006. }
  38007. },
  38008. },
  38009. [
  38010. {
  38011. name: "Normal",
  38012. height: math.unit(4 + 11/12, "feet"),
  38013. default: true
  38014. },
  38015. ]
  38016. ))
  38017. characterMakers.push(() => makeCharacter(
  38018. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38019. {
  38020. front: {
  38021. height: math.unit(8 + 4/12, "feet"),
  38022. name: "Front",
  38023. image: {
  38024. source: "./media/characters/sterling/front.svg",
  38025. extra: 1420/1236,
  38026. bottom: 27/1447
  38027. }
  38028. },
  38029. },
  38030. [
  38031. {
  38032. name: "Normal",
  38033. height: math.unit(8 + 4/12, "feet"),
  38034. default: true
  38035. },
  38036. ]
  38037. ))
  38038. characterMakers.push(() => makeCharacter(
  38039. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38040. {
  38041. front: {
  38042. height: math.unit(15, "feet"),
  38043. name: "Front",
  38044. image: {
  38045. source: "./media/characters/marble/front.svg",
  38046. extra: 973/937,
  38047. bottom: 32/1005
  38048. }
  38049. },
  38050. },
  38051. [
  38052. {
  38053. name: "Normal",
  38054. height: math.unit(15, "feet"),
  38055. default: true
  38056. },
  38057. ]
  38058. ))
  38059. characterMakers.push(() => makeCharacter(
  38060. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38061. {
  38062. front: {
  38063. height: math.unit(3, "inches"),
  38064. name: "Front",
  38065. image: {
  38066. source: "./media/characters/powder/front.svg",
  38067. extra: 1504/1334,
  38068. bottom: 518/2022
  38069. }
  38070. },
  38071. },
  38072. [
  38073. {
  38074. name: "Normal",
  38075. height: math.unit(3, "inches"),
  38076. default: true
  38077. },
  38078. ]
  38079. ))
  38080. characterMakers.push(() => makeCharacter(
  38081. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38082. {
  38083. front: {
  38084. height: math.unit(4 + 5/12, "feet"),
  38085. name: "Front",
  38086. image: {
  38087. source: "./media/characters/joey-raccoon/front.svg",
  38088. extra: 1273/1197,
  38089. bottom: 0/1273
  38090. }
  38091. },
  38092. },
  38093. [
  38094. {
  38095. name: "Normal",
  38096. height: math.unit(4 + 5/12, "feet"),
  38097. default: true
  38098. },
  38099. ]
  38100. ))
  38101. characterMakers.push(() => makeCharacter(
  38102. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38103. {
  38104. front: {
  38105. height: math.unit(8 + 4/12, "feet"),
  38106. name: "Front",
  38107. image: {
  38108. source: "./media/characters/vick/front.svg",
  38109. extra: 2187/2118,
  38110. bottom: 47/2234
  38111. }
  38112. },
  38113. },
  38114. [
  38115. {
  38116. name: "Normal",
  38117. height: math.unit(8 + 4/12, "feet"),
  38118. default: true
  38119. },
  38120. ]
  38121. ))
  38122. characterMakers.push(() => makeCharacter(
  38123. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38124. {
  38125. front: {
  38126. height: math.unit(5 + 5/12, "feet"),
  38127. name: "Front",
  38128. image: {
  38129. source: "./media/characters/mitsy/front.svg",
  38130. extra: 1842/1695,
  38131. bottom: 0/1842
  38132. }
  38133. },
  38134. },
  38135. [
  38136. {
  38137. name: "Normal",
  38138. height: math.unit(5 + 5/12, "feet"),
  38139. default: true
  38140. },
  38141. ]
  38142. ))
  38143. characterMakers.push(() => makeCharacter(
  38144. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38145. {
  38146. front: {
  38147. height: math.unit(6 + 3/12, "feet"),
  38148. name: "Front",
  38149. image: {
  38150. source: "./media/characters/silvy/front.svg",
  38151. extra: 1995/1836,
  38152. bottom: 225/2220
  38153. }
  38154. },
  38155. },
  38156. [
  38157. {
  38158. name: "Normal",
  38159. height: math.unit(6 + 3/12, "feet"),
  38160. default: true
  38161. },
  38162. ]
  38163. ))
  38164. characterMakers.push(() => makeCharacter(
  38165. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38166. {
  38167. front: {
  38168. height: math.unit(3 + 8/12, "feet"),
  38169. name: "Front",
  38170. image: {
  38171. source: "./media/characters/rodney/front.svg",
  38172. extra: 1956/1747,
  38173. bottom: 31/1987
  38174. }
  38175. },
  38176. frontDressed: {
  38177. height: math.unit(2.9, "feet"),
  38178. name: "Front (Dressed)",
  38179. image: {
  38180. source: "./media/characters/rodney/front-dressed.svg",
  38181. extra: 1382/1241,
  38182. bottom: 385/1767
  38183. }
  38184. },
  38185. },
  38186. [
  38187. {
  38188. name: "Normal",
  38189. height: math.unit(3 + 8/12, "feet"),
  38190. default: true
  38191. },
  38192. ]
  38193. ))
  38194. characterMakers.push(() => makeCharacter(
  38195. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38196. {
  38197. front: {
  38198. height: math.unit(5 + 9/12, "feet"),
  38199. weight: math.unit(194, "lbs"),
  38200. name: "Front",
  38201. image: {
  38202. source: "./media/characters/zakail-sudekai/front.svg",
  38203. extra: 2696/2533,
  38204. bottom: 248/2944
  38205. }
  38206. },
  38207. maw: {
  38208. height: math.unit(1.35, "feet"),
  38209. name: "Maw",
  38210. image: {
  38211. source: "./media/characters/zakail-sudekai/maw.svg"
  38212. }
  38213. },
  38214. },
  38215. [
  38216. {
  38217. name: "Normal",
  38218. height: math.unit(5 + 9/12, "feet"),
  38219. default: true
  38220. },
  38221. ]
  38222. ))
  38223. characterMakers.push(() => makeCharacter(
  38224. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38225. {
  38226. front: {
  38227. height: math.unit(8 + 4/12, "feet"),
  38228. weight: math.unit(1200, "lb"),
  38229. name: "Front",
  38230. image: {
  38231. source: "./media/characters/eleanor/front.svg",
  38232. extra: 1226/1192,
  38233. bottom: 52/1278
  38234. }
  38235. },
  38236. back: {
  38237. height: math.unit(8 + 4/12, "feet"),
  38238. weight: math.unit(1200, "lb"),
  38239. name: "Back",
  38240. image: {
  38241. source: "./media/characters/eleanor/back.svg",
  38242. extra: 1242/1184,
  38243. bottom: 60/1302
  38244. }
  38245. },
  38246. head: {
  38247. height: math.unit(2.62, "feet"),
  38248. name: "Head",
  38249. image: {
  38250. source: "./media/characters/eleanor/head.svg"
  38251. }
  38252. },
  38253. },
  38254. [
  38255. {
  38256. name: "Normal",
  38257. height: math.unit(8 + 4/12, "feet"),
  38258. default: true
  38259. },
  38260. ]
  38261. ))
  38262. characterMakers.push(() => makeCharacter(
  38263. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38264. {
  38265. front: {
  38266. height: math.unit(8 + 4/12, "feet"),
  38267. weight: math.unit(750, "lb"),
  38268. name: "Front",
  38269. image: {
  38270. source: "./media/characters/tanya/front.svg",
  38271. extra: 1749/1615,
  38272. bottom: 33/1782
  38273. }
  38274. },
  38275. },
  38276. [
  38277. {
  38278. name: "Normal",
  38279. height: math.unit(8 + 4/12, "feet"),
  38280. default: true
  38281. },
  38282. ]
  38283. ))
  38284. characterMakers.push(() => makeCharacter(
  38285. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38286. {
  38287. front: {
  38288. height: math.unit(5, "feet"),
  38289. weight: math.unit(225, "lb"),
  38290. name: "Front",
  38291. image: {
  38292. source: "./media/characters/cindy/front.svg",
  38293. extra: 1320/1250,
  38294. bottom: 42/1362
  38295. }
  38296. },
  38297. frontDressed: {
  38298. height: math.unit(5, "feet"),
  38299. weight: math.unit(225, "lb"),
  38300. name: "Front (Dressed)",
  38301. image: {
  38302. source: "./media/characters/cindy/front-dressed.svg",
  38303. extra: 1320/1250,
  38304. bottom: 42/1362
  38305. }
  38306. },
  38307. back: {
  38308. height: math.unit(5, "feet"),
  38309. weight: math.unit(225, "lb"),
  38310. name: "Back",
  38311. image: {
  38312. source: "./media/characters/cindy/back.svg",
  38313. extra: 1384/1346,
  38314. bottom: 14/1398
  38315. }
  38316. },
  38317. },
  38318. [
  38319. {
  38320. name: "Normal",
  38321. height: math.unit(5, "feet"),
  38322. default: true
  38323. },
  38324. ]
  38325. ))
  38326. characterMakers.push(() => makeCharacter(
  38327. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38328. {
  38329. front: {
  38330. height: math.unit(6 + 9/12, "feet"),
  38331. weight: math.unit(440, "lb"),
  38332. name: "Front",
  38333. image: {
  38334. source: "./media/characters/wilbur-owen/front.svg",
  38335. extra: 1575/1448,
  38336. bottom: 72/1647
  38337. }
  38338. },
  38339. back: {
  38340. height: math.unit(6 + 9/12, "feet"),
  38341. weight: math.unit(440, "lb"),
  38342. name: "Back",
  38343. image: {
  38344. source: "./media/characters/wilbur-owen/back.svg",
  38345. extra: 1578/1445,
  38346. bottom: 36/1614
  38347. }
  38348. },
  38349. },
  38350. [
  38351. {
  38352. name: "Normal",
  38353. height: math.unit(6 + 9/12, "feet"),
  38354. default: true
  38355. },
  38356. ]
  38357. ))
  38358. characterMakers.push(() => makeCharacter(
  38359. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38360. {
  38361. front: {
  38362. height: math.unit(6 + 5/12, "feet"),
  38363. weight: math.unit(650, "lb"),
  38364. name: "Front",
  38365. image: {
  38366. source: "./media/characters/keegan/front.svg",
  38367. extra: 2387/2198,
  38368. bottom: 33/2420
  38369. }
  38370. },
  38371. side: {
  38372. height: math.unit(6 + 5/12, "feet"),
  38373. weight: math.unit(650, "lb"),
  38374. name: "Side",
  38375. image: {
  38376. source: "./media/characters/keegan/side.svg",
  38377. extra: 2390/2202,
  38378. bottom: 47/2437
  38379. }
  38380. },
  38381. back: {
  38382. height: math.unit(6 + 5/12, "feet"),
  38383. weight: math.unit(650, "lb"),
  38384. name: "Back",
  38385. image: {
  38386. source: "./media/characters/keegan/back.svg",
  38387. extra: 2418/2268,
  38388. bottom: 15/2433
  38389. }
  38390. },
  38391. frontSfw: {
  38392. height: math.unit(6 + 5/12, "feet"),
  38393. weight: math.unit(650, "lb"),
  38394. name: "Front (SFW)",
  38395. image: {
  38396. source: "./media/characters/keegan/front-sfw.svg",
  38397. extra: 2387/2198,
  38398. bottom: 33/2420
  38399. }
  38400. },
  38401. beans: {
  38402. height: math.unit(1.85, "feet"),
  38403. name: "Beans",
  38404. image: {
  38405. source: "./media/characters/keegan/beans.svg"
  38406. }
  38407. },
  38408. },
  38409. [
  38410. {
  38411. name: "Normal",
  38412. height: math.unit(6 + 5/12, "feet"),
  38413. default: true
  38414. },
  38415. ]
  38416. ))
  38417. characterMakers.push(() => makeCharacter(
  38418. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38419. {
  38420. front: {
  38421. height: math.unit(9, "feet"),
  38422. name: "Front",
  38423. image: {
  38424. source: "./media/characters/colton/front.svg",
  38425. extra: 1589/1326,
  38426. bottom: 139/1728
  38427. }
  38428. },
  38429. },
  38430. [
  38431. {
  38432. name: "Normal",
  38433. height: math.unit(9, "feet"),
  38434. default: true
  38435. },
  38436. ]
  38437. ))
  38438. characterMakers.push(() => makeCharacter(
  38439. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38440. {
  38441. front: {
  38442. height: math.unit(2 + 9/12, "feet"),
  38443. name: "Front",
  38444. image: {
  38445. source: "./media/characters/bora/front.svg",
  38446. extra: 1265/1250,
  38447. bottom: 24/1289
  38448. }
  38449. },
  38450. },
  38451. [
  38452. {
  38453. name: "Normal",
  38454. height: math.unit(2 + 9/12, "feet"),
  38455. default: true
  38456. },
  38457. ]
  38458. ))
  38459. characterMakers.push(() => makeCharacter(
  38460. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38461. {
  38462. front: {
  38463. height: math.unit(8, "feet"),
  38464. name: "Front",
  38465. image: {
  38466. source: "./media/characters/myu-myu/front.svg",
  38467. extra: 1949/1857,
  38468. bottom: 90/2039
  38469. }
  38470. },
  38471. },
  38472. [
  38473. {
  38474. name: "Normal",
  38475. height: math.unit(8, "feet"),
  38476. default: true
  38477. },
  38478. {
  38479. name: "Big",
  38480. height: math.unit(15, "feet")
  38481. },
  38482. {
  38483. name: "BIG",
  38484. height: math.unit(25, "feet")
  38485. },
  38486. ]
  38487. ))
  38488. characterMakers.push(() => makeCharacter(
  38489. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38490. {
  38491. side: {
  38492. height: math.unit(7 + 5/12, "feet"),
  38493. weight: math.unit(2800, "lb"),
  38494. name: "Side",
  38495. image: {
  38496. source: "./media/characters/haloren/side.svg",
  38497. extra: 1793/409,
  38498. bottom: 59/1852
  38499. }
  38500. },
  38501. frontPaw: {
  38502. height: math.unit(2.36, "feet"),
  38503. name: "Front paw",
  38504. image: {
  38505. source: "./media/characters/haloren/front-paw.svg"
  38506. }
  38507. },
  38508. hindPaw: {
  38509. height: math.unit(3.18, "feet"),
  38510. name: "Hind paw",
  38511. image: {
  38512. source: "./media/characters/haloren/hind-paw.svg"
  38513. }
  38514. },
  38515. maw: {
  38516. height: math.unit(5.05, "feet"),
  38517. name: "Maw",
  38518. image: {
  38519. source: "./media/characters/haloren/maw.svg"
  38520. }
  38521. },
  38522. dick: {
  38523. height: math.unit(2.90, "feet"),
  38524. name: "Dick",
  38525. image: {
  38526. source: "./media/characters/haloren/dick.svg"
  38527. }
  38528. },
  38529. },
  38530. [
  38531. {
  38532. name: "Normal",
  38533. height: math.unit(7 + 5/12, "feet"),
  38534. default: true
  38535. },
  38536. {
  38537. name: "Enhanced",
  38538. height: math.unit(14 + 3/12, "feet")
  38539. },
  38540. ]
  38541. ))
  38542. characterMakers.push(() => makeCharacter(
  38543. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38544. {
  38545. front: {
  38546. height: math.unit(171, "cm"),
  38547. name: "Front",
  38548. image: {
  38549. source: "./media/characters/kimmy/front.svg",
  38550. extra: 1491/1435,
  38551. bottom: 53/1544
  38552. }
  38553. },
  38554. },
  38555. [
  38556. {
  38557. name: "Small",
  38558. height: math.unit(9, "cm")
  38559. },
  38560. {
  38561. name: "Normal",
  38562. height: math.unit(171, "cm"),
  38563. default: true
  38564. },
  38565. ]
  38566. ))
  38567. characterMakers.push(() => makeCharacter(
  38568. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38569. {
  38570. front: {
  38571. height: math.unit(8, "feet"),
  38572. weight: math.unit(300, "lb"),
  38573. name: "Front",
  38574. image: {
  38575. source: "./media/characters/galeboomer/front.svg",
  38576. extra: 4651/4415,
  38577. bottom: 162/4813
  38578. }
  38579. },
  38580. back: {
  38581. height: math.unit(8, "feet"),
  38582. weight: math.unit(300, "lb"),
  38583. name: "Back",
  38584. image: {
  38585. source: "./media/characters/galeboomer/back.svg",
  38586. extra: 4544/4314,
  38587. bottom: 16/4560
  38588. }
  38589. },
  38590. frontAlt: {
  38591. height: math.unit(8, "feet"),
  38592. weight: math.unit(300, "lb"),
  38593. name: "Front (Alt)",
  38594. image: {
  38595. source: "./media/characters/galeboomer/front-alt.svg",
  38596. extra: 4458/4228,
  38597. bottom: 68/4526
  38598. }
  38599. },
  38600. maw: {
  38601. height: math.unit(1.2, "feet"),
  38602. name: "Maw",
  38603. image: {
  38604. source: "./media/characters/galeboomer/maw.svg"
  38605. }
  38606. },
  38607. },
  38608. [
  38609. {
  38610. name: "Normal",
  38611. height: math.unit(8, "feet"),
  38612. default: true
  38613. },
  38614. ]
  38615. ))
  38616. characterMakers.push(() => makeCharacter(
  38617. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38618. {
  38619. front: {
  38620. height: math.unit(5 + 9/12, "feet"),
  38621. weight: math.unit(120, "lb"),
  38622. name: "Front",
  38623. image: {
  38624. source: "./media/characters/chyr/front.svg",
  38625. extra: 1323/1254,
  38626. bottom: 63/1386
  38627. }
  38628. },
  38629. back: {
  38630. height: math.unit(5 + 9/12, "feet"),
  38631. weight: math.unit(120, "lb"),
  38632. name: "Back",
  38633. image: {
  38634. source: "./media/characters/chyr/back.svg",
  38635. extra: 1323/1252,
  38636. bottom: 48/1371
  38637. }
  38638. },
  38639. },
  38640. [
  38641. {
  38642. name: "Normal",
  38643. height: math.unit(5 + 9/12, "feet"),
  38644. default: true
  38645. },
  38646. ]
  38647. ))
  38648. characterMakers.push(() => makeCharacter(
  38649. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38650. {
  38651. front: {
  38652. height: math.unit(7, "feet"),
  38653. weight: math.unit(310, "lb"),
  38654. name: "Front",
  38655. image: {
  38656. source: "./media/characters/solarus/front.svg",
  38657. extra: 2415/2021,
  38658. bottom: 103/2518
  38659. }
  38660. },
  38661. back: {
  38662. height: math.unit(7, "feet"),
  38663. weight: math.unit(310, "lb"),
  38664. name: "Back",
  38665. image: {
  38666. source: "./media/characters/solarus/back.svg",
  38667. extra: 2463/2089,
  38668. bottom: 79/2542
  38669. }
  38670. },
  38671. },
  38672. [
  38673. {
  38674. name: "Normal",
  38675. height: math.unit(7, "feet"),
  38676. default: true
  38677. },
  38678. ]
  38679. ))
  38680. characterMakers.push(() => makeCharacter(
  38681. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38682. {
  38683. front: {
  38684. height: math.unit(16, "feet"),
  38685. name: "Front",
  38686. image: {
  38687. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38688. extra: 1844/1780,
  38689. bottom: 58/1902
  38690. }
  38691. },
  38692. winterCoat: {
  38693. height: math.unit(16, "feet"),
  38694. name: "Winter Coat",
  38695. image: {
  38696. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38697. extra: 1807/1775,
  38698. bottom: 69/1876
  38699. }
  38700. },
  38701. },
  38702. [
  38703. {
  38704. name: "Normal",
  38705. height: math.unit(16, "feet"),
  38706. default: true
  38707. },
  38708. {
  38709. name: "Chicago Size",
  38710. height: math.unit(560, "feet")
  38711. },
  38712. ]
  38713. ))
  38714. characterMakers.push(() => makeCharacter(
  38715. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38716. {
  38717. front: {
  38718. height: math.unit(11 + 6/12, "feet"),
  38719. weight: math.unit(1366, "lb"),
  38720. name: "Front",
  38721. image: {
  38722. source: "./media/characters/lexor/front.svg",
  38723. extra: 1560/1481,
  38724. bottom: 211/1771
  38725. }
  38726. },
  38727. back: {
  38728. height: math.unit(11 + 6/12, "feet"),
  38729. weight: math.unit(1366, "lb"),
  38730. name: "Back",
  38731. image: {
  38732. source: "./media/characters/lexor/back.svg",
  38733. extra: 1614/1533,
  38734. bottom: 76/1690
  38735. }
  38736. },
  38737. maw: {
  38738. height: math.unit(3, "feet"),
  38739. name: "Maw",
  38740. image: {
  38741. source: "./media/characters/lexor/maw.svg"
  38742. }
  38743. },
  38744. dick: {
  38745. height: math.unit(2.59, "feet"),
  38746. name: "Dick",
  38747. image: {
  38748. source: "./media/characters/lexor/dick.svg"
  38749. }
  38750. },
  38751. },
  38752. [
  38753. {
  38754. name: "Normal",
  38755. height: math.unit(11 + 6/12, "feet"),
  38756. default: true
  38757. },
  38758. ]
  38759. ))
  38760. characterMakers.push(() => makeCharacter(
  38761. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38762. {
  38763. front: {
  38764. height: math.unit(5 + 8/12, "feet"),
  38765. name: "Front",
  38766. image: {
  38767. source: "./media/characters/magnum/front.svg",
  38768. extra: 942/855,
  38769. bottom: 26/968
  38770. }
  38771. },
  38772. },
  38773. [
  38774. {
  38775. name: "Normal",
  38776. height: math.unit(5 + 8/12, "feet"),
  38777. default: true
  38778. },
  38779. ]
  38780. ))
  38781. characterMakers.push(() => makeCharacter(
  38782. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38783. {
  38784. front: {
  38785. height: math.unit(18 + 4/12, "feet"),
  38786. weight: math.unit(1500, "kg"),
  38787. name: "Front",
  38788. image: {
  38789. source: "./media/characters/solas-sharpsman/front.svg",
  38790. extra: 1698/1589,
  38791. bottom: 0/1698
  38792. }
  38793. },
  38794. },
  38795. [
  38796. {
  38797. name: "Normal",
  38798. height: math.unit(18 + 4/12, "feet"),
  38799. default: true
  38800. },
  38801. ]
  38802. ))
  38803. characterMakers.push(() => makeCharacter(
  38804. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38805. {
  38806. front: {
  38807. height: math.unit(5 + 5/12, "feet"),
  38808. weight: math.unit(180, "lb"),
  38809. name: "Front",
  38810. image: {
  38811. source: "./media/characters/october/front.svg",
  38812. extra: 1800/1650,
  38813. bottom: 0/1800
  38814. }
  38815. },
  38816. frontNsfw: {
  38817. height: math.unit(5 + 5/12, "feet"),
  38818. weight: math.unit(180, "lb"),
  38819. name: "Front (NSFW)",
  38820. image: {
  38821. source: "./media/characters/october/front-nsfw.svg",
  38822. extra: 1392/1307,
  38823. bottom: 42/1434
  38824. }
  38825. },
  38826. },
  38827. [
  38828. {
  38829. name: "Normal",
  38830. height: math.unit(5 + 5/12, "feet"),
  38831. default: true
  38832. },
  38833. ]
  38834. ))
  38835. characterMakers.push(() => makeCharacter(
  38836. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38837. {
  38838. front: {
  38839. height: math.unit(8 + 6/12, "feet"),
  38840. name: "Front",
  38841. image: {
  38842. source: "./media/characters/essynkardi/front.svg",
  38843. extra: 1914/1846,
  38844. bottom: 22/1936
  38845. }
  38846. },
  38847. },
  38848. [
  38849. {
  38850. name: "Normal",
  38851. height: math.unit(8 + 6/12, "feet"),
  38852. default: true
  38853. },
  38854. ]
  38855. ))
  38856. characterMakers.push(() => makeCharacter(
  38857. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38858. {
  38859. front: {
  38860. height: math.unit(6 + 6/12, "feet"),
  38861. weight: math.unit(7, "lb"),
  38862. name: "Front",
  38863. image: {
  38864. source: "./media/characters/icky/front.svg",
  38865. extra: 813/782,
  38866. bottom: 66/879
  38867. }
  38868. },
  38869. back: {
  38870. height: math.unit(6 + 6/12, "feet"),
  38871. weight: math.unit(7, "lb"),
  38872. name: "Back",
  38873. image: {
  38874. source: "./media/characters/icky/back.svg",
  38875. extra: 754/735,
  38876. bottom: 56/810
  38877. }
  38878. },
  38879. },
  38880. [
  38881. {
  38882. name: "Normal",
  38883. height: math.unit(6 + 6/12, "feet"),
  38884. default: true
  38885. },
  38886. ]
  38887. ))
  38888. characterMakers.push(() => makeCharacter(
  38889. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38890. {
  38891. front: {
  38892. height: math.unit(15, "feet"),
  38893. name: "Front",
  38894. image: {
  38895. source: "./media/characters/rojas/front.svg",
  38896. extra: 1462/1408,
  38897. bottom: 95/1557
  38898. }
  38899. },
  38900. back: {
  38901. height: math.unit(15, "feet"),
  38902. name: "Back",
  38903. image: {
  38904. source: "./media/characters/rojas/back.svg",
  38905. extra: 1023/954,
  38906. bottom: 28/1051
  38907. }
  38908. },
  38909. },
  38910. [
  38911. {
  38912. name: "Normal",
  38913. height: math.unit(15, "feet"),
  38914. default: true
  38915. },
  38916. ]
  38917. ))
  38918. characterMakers.push(() => makeCharacter(
  38919. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38920. {
  38921. frontHuman: {
  38922. height: math.unit(5 + 7/12, "feet"),
  38923. name: "Front (Human)",
  38924. image: {
  38925. source: "./media/characters/alek-dryagan/front-human.svg",
  38926. extra: 1687/1667,
  38927. bottom: 69/1756
  38928. }
  38929. },
  38930. backHuman: {
  38931. height: math.unit(5 + 7/12, "feet"),
  38932. name: "Back (Human)",
  38933. image: {
  38934. source: "./media/characters/alek-dryagan/back-human.svg",
  38935. extra: 1670/1649,
  38936. bottom: 65/1735
  38937. }
  38938. },
  38939. frontDemi: {
  38940. height: math.unit(65, "feet"),
  38941. name: "Front (Demi)",
  38942. image: {
  38943. source: "./media/characters/alek-dryagan/front-demi.svg",
  38944. extra: 1669/1642,
  38945. bottom: 49/1718
  38946. }
  38947. },
  38948. backDemi: {
  38949. height: math.unit(65, "feet"),
  38950. name: "Back (Demi)",
  38951. image: {
  38952. source: "./media/characters/alek-dryagan/back-demi.svg",
  38953. extra: 1658/1637,
  38954. bottom: 40/1698
  38955. }
  38956. },
  38957. mawHuman: {
  38958. height: math.unit(0.3, "feet"),
  38959. name: "Maw (Human)",
  38960. image: {
  38961. source: "./media/characters/alek-dryagan/maw-human.svg"
  38962. }
  38963. },
  38964. mawDemi: {
  38965. height: math.unit(3.8, "feet"),
  38966. name: "Maw (Demi)",
  38967. image: {
  38968. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38969. }
  38970. },
  38971. },
  38972. [
  38973. {
  38974. name: "Normal",
  38975. height: math.unit(5 + 7/12, "feet"),
  38976. default: true
  38977. },
  38978. ]
  38979. ))
  38980. characterMakers.push(() => makeCharacter(
  38981. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38982. {
  38983. frontHuman: {
  38984. height: math.unit(5 + 2/12, "feet"),
  38985. name: "Front (Human)",
  38986. image: {
  38987. source: "./media/characters/gen/front-human.svg",
  38988. extra: 1627/1538,
  38989. bottom: 71/1698
  38990. }
  38991. },
  38992. backHuman: {
  38993. height: math.unit(5 + 2/12, "feet"),
  38994. name: "Back (Human)",
  38995. image: {
  38996. source: "./media/characters/gen/back-human.svg",
  38997. extra: 1638/1548,
  38998. bottom: 69/1707
  38999. }
  39000. },
  39001. frontDemi: {
  39002. height: math.unit(5 + 2/12, "feet"),
  39003. name: "Front (Demi)",
  39004. image: {
  39005. source: "./media/characters/gen/front-demi.svg",
  39006. extra: 1627/1538,
  39007. bottom: 71/1698
  39008. }
  39009. },
  39010. backDemi: {
  39011. height: math.unit(5 + 2/12, "feet"),
  39012. name: "Back (Demi)",
  39013. image: {
  39014. source: "./media/characters/gen/back-demi.svg",
  39015. extra: 1638/1548,
  39016. bottom: 69/1707
  39017. }
  39018. },
  39019. },
  39020. [
  39021. {
  39022. name: "Normal",
  39023. height: math.unit(5 + 2/12, "feet"),
  39024. default: true
  39025. },
  39026. ]
  39027. ))
  39028. characterMakers.push(() => makeCharacter(
  39029. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39030. {
  39031. frontImp: {
  39032. height: math.unit(1 + 11/12, "feet"),
  39033. name: "Front (Imp)",
  39034. image: {
  39035. source: "./media/characters/max-kobold/front-imp.svg",
  39036. extra: 1238/1134,
  39037. bottom: 81/1319
  39038. }
  39039. },
  39040. backImp: {
  39041. height: math.unit(1 + 11/12, "feet"),
  39042. name: "Back (Imp)",
  39043. image: {
  39044. source: "./media/characters/max-kobold/back-imp.svg",
  39045. extra: 1334/1175,
  39046. bottom: 34/1368
  39047. }
  39048. },
  39049. frontDemi: {
  39050. height: math.unit(5 + 9/12, "feet"),
  39051. name: "Front (Demi)",
  39052. image: {
  39053. source: "./media/characters/max-kobold/front-demi.svg",
  39054. extra: 1715/1685,
  39055. bottom: 54/1769
  39056. }
  39057. },
  39058. backDemi: {
  39059. height: math.unit(5 + 9/12, "feet"),
  39060. name: "Back (Demi)",
  39061. image: {
  39062. source: "./media/characters/max-kobold/back-demi.svg",
  39063. extra: 1752/1729,
  39064. bottom: 41/1793
  39065. }
  39066. },
  39067. handImp: {
  39068. height: math.unit(0.45, "feet"),
  39069. name: "Hand (Imp)",
  39070. image: {
  39071. source: "./media/characters/max-kobold/hand.svg"
  39072. }
  39073. },
  39074. pawImp: {
  39075. height: math.unit(0.46, "feet"),
  39076. name: "Paw (Imp)",
  39077. image: {
  39078. source: "./media/characters/max-kobold/paw.svg"
  39079. }
  39080. },
  39081. handDemi: {
  39082. height: math.unit(0.80, "feet"),
  39083. name: "Hand (Demi)",
  39084. image: {
  39085. source: "./media/characters/max-kobold/hand.svg"
  39086. }
  39087. },
  39088. pawDemi: {
  39089. height: math.unit(1.1, "feet"),
  39090. name: "Paw (Demi)",
  39091. image: {
  39092. source: "./media/characters/max-kobold/paw.svg"
  39093. }
  39094. },
  39095. headImp: {
  39096. height: math.unit(1.33, "feet"),
  39097. name: "Head (Imp)",
  39098. image: {
  39099. source: "./media/characters/max-kobold/head-imp.svg"
  39100. }
  39101. },
  39102. mawImp: {
  39103. height: math.unit(0.75, "feet"),
  39104. name: "Maw (Imp)",
  39105. image: {
  39106. source: "./media/characters/max-kobold/maw-imp.svg"
  39107. }
  39108. },
  39109. mawDemi: {
  39110. height: math.unit(0.42, "feet"),
  39111. name: "Maw (Demi)",
  39112. image: {
  39113. source: "./media/characters/max-kobold/maw-demi.svg"
  39114. }
  39115. },
  39116. },
  39117. [
  39118. {
  39119. name: "Normal",
  39120. height: math.unit(1 + 11/12, "feet"),
  39121. default: true
  39122. },
  39123. ]
  39124. ))
  39125. characterMakers.push(() => makeCharacter(
  39126. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39127. {
  39128. front: {
  39129. height: math.unit(7 + 5/12, "feet"),
  39130. name: "Front",
  39131. image: {
  39132. source: "./media/characters/carbon/front.svg",
  39133. extra: 1754/1689,
  39134. bottom: 65/1819
  39135. }
  39136. },
  39137. back: {
  39138. height: math.unit(7 + 5/12, "feet"),
  39139. name: "Back",
  39140. image: {
  39141. source: "./media/characters/carbon/back.svg",
  39142. extra: 1762/1695,
  39143. bottom: 24/1786
  39144. }
  39145. },
  39146. frontGigantamax: {
  39147. height: math.unit(150, "feet"),
  39148. name: "Front (Gigantamax)",
  39149. image: {
  39150. source: "./media/characters/carbon/front-gigantamax.svg",
  39151. extra: 1826/1669,
  39152. bottom: 59/1885
  39153. }
  39154. },
  39155. backGigantamax: {
  39156. height: math.unit(150, "feet"),
  39157. name: "Back (Gigantamax)",
  39158. image: {
  39159. source: "./media/characters/carbon/back-gigantamax.svg",
  39160. extra: 1796/1653,
  39161. bottom: 53/1849
  39162. }
  39163. },
  39164. maw: {
  39165. height: math.unit(0.48, "feet"),
  39166. name: "Maw",
  39167. image: {
  39168. source: "./media/characters/carbon/maw.svg"
  39169. }
  39170. },
  39171. mawGigantamax: {
  39172. height: math.unit(7.5, "feet"),
  39173. name: "Maw (Gigantamax)",
  39174. image: {
  39175. source: "./media/characters/carbon/maw-gigantamax.svg"
  39176. }
  39177. },
  39178. },
  39179. [
  39180. {
  39181. name: "Normal",
  39182. height: math.unit(7 + 5/12, "feet"),
  39183. default: true
  39184. },
  39185. ]
  39186. ))
  39187. characterMakers.push(() => makeCharacter(
  39188. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39189. {
  39190. front: {
  39191. height: math.unit(6, "feet"),
  39192. name: "Front",
  39193. image: {
  39194. source: "./media/characters/maverick/front.svg",
  39195. extra: 1672/1661,
  39196. bottom: 85/1757
  39197. }
  39198. },
  39199. back: {
  39200. height: math.unit(6, "feet"),
  39201. name: "Back",
  39202. image: {
  39203. source: "./media/characters/maverick/back.svg",
  39204. extra: 1642/1631,
  39205. bottom: 38/1680
  39206. }
  39207. },
  39208. },
  39209. [
  39210. {
  39211. name: "Normal",
  39212. height: math.unit(6, "feet"),
  39213. default: true
  39214. },
  39215. ]
  39216. ))
  39217. characterMakers.push(() => makeCharacter(
  39218. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39219. {
  39220. front: {
  39221. height: math.unit(15, "feet"),
  39222. weight: math.unit(615, "lb"),
  39223. name: "Front",
  39224. image: {
  39225. source: "./media/characters/grockle/front.svg",
  39226. extra: 1535/1427,
  39227. bottom: 56/1591
  39228. }
  39229. },
  39230. },
  39231. [
  39232. {
  39233. name: "Normal",
  39234. height: math.unit(15, "feet"),
  39235. default: true
  39236. },
  39237. {
  39238. name: "Large",
  39239. height: math.unit(150, "feet")
  39240. },
  39241. {
  39242. name: "Macro",
  39243. height: math.unit(1876, "feet")
  39244. },
  39245. {
  39246. name: "Mega Macro",
  39247. height: math.unit(121940, "feet")
  39248. },
  39249. {
  39250. name: "Giga Macro",
  39251. height: math.unit(750, "km")
  39252. },
  39253. {
  39254. name: "Tera Macro",
  39255. height: math.unit(750000, "km")
  39256. },
  39257. {
  39258. name: "Galactic",
  39259. height: math.unit(1.4e5, "km")
  39260. },
  39261. {
  39262. name: "Godlike",
  39263. height: math.unit(9.8e280, "galaxies")
  39264. },
  39265. ]
  39266. ))
  39267. characterMakers.push(() => makeCharacter(
  39268. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39269. {
  39270. front: {
  39271. height: math.unit(11, "meters"),
  39272. weight: math.unit(20, "tonnes"),
  39273. name: "Front",
  39274. image: {
  39275. source: "./media/characters/alistair/front.svg",
  39276. extra: 1265/1009,
  39277. bottom: 93/1358
  39278. }
  39279. },
  39280. },
  39281. [
  39282. {
  39283. name: "Normal",
  39284. height: math.unit(11, "meters"),
  39285. default: true
  39286. },
  39287. ]
  39288. ))
  39289. characterMakers.push(() => makeCharacter(
  39290. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39291. {
  39292. front: {
  39293. height: math.unit(5 + 8/12, "feet"),
  39294. name: "Front",
  39295. image: {
  39296. source: "./media/characters/haruka/front.svg",
  39297. extra: 2012/1952,
  39298. bottom: 0/2012
  39299. }
  39300. },
  39301. },
  39302. [
  39303. {
  39304. name: "Normal",
  39305. height: math.unit(5 + 8/12, "feet"),
  39306. default: true
  39307. },
  39308. ]
  39309. ))
  39310. characterMakers.push(() => makeCharacter(
  39311. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39312. {
  39313. back: {
  39314. height: math.unit(9, "feet"),
  39315. name: "Back",
  39316. image: {
  39317. source: "./media/characters/vivian-sylveon/back.svg",
  39318. extra: 1853/1714,
  39319. bottom: 0/1853
  39320. }
  39321. },
  39322. },
  39323. [
  39324. {
  39325. name: "Normal",
  39326. height: math.unit(9, "feet"),
  39327. default: true
  39328. },
  39329. {
  39330. name: "Macro",
  39331. height: math.unit(500, "feet")
  39332. },
  39333. {
  39334. name: "Megamacro",
  39335. height: math.unit(600, "miles")
  39336. },
  39337. {
  39338. name: "Gigamacro",
  39339. height: math.unit(30000, "miles")
  39340. },
  39341. ]
  39342. ))
  39343. characterMakers.push(() => makeCharacter(
  39344. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39345. {
  39346. anthro: {
  39347. height: math.unit(5 + 10/12, "feet"),
  39348. weight: math.unit(100, "lb"),
  39349. name: "Anthro",
  39350. image: {
  39351. source: "./media/characters/daiki/anthro.svg",
  39352. extra: 1115/1027,
  39353. bottom: 69/1184
  39354. }
  39355. },
  39356. feral: {
  39357. height: math.unit(200, "feet"),
  39358. name: "Feral",
  39359. image: {
  39360. source: "./media/characters/daiki/feral.svg",
  39361. extra: 1256/313,
  39362. bottom: 39/1295
  39363. }
  39364. },
  39365. feralHead: {
  39366. height: math.unit(171, "feet"),
  39367. name: "Feral Head",
  39368. image: {
  39369. source: "./media/characters/daiki/feral-head.svg"
  39370. }
  39371. },
  39372. manaDragon: {
  39373. height: math.unit(170, "meters"),
  39374. name: "Mana-dragon",
  39375. image: {
  39376. source: "./media/characters/daiki/mana-dragon.svg",
  39377. extra: 763/420,
  39378. bottom: 97/860
  39379. }
  39380. },
  39381. },
  39382. [
  39383. {
  39384. name: "Normal",
  39385. height: math.unit(5 + 10/12, "feet"),
  39386. default: true
  39387. },
  39388. ]
  39389. ))
  39390. characterMakers.push(() => makeCharacter(
  39391. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39392. {
  39393. fullyEquippedFront: {
  39394. height: math.unit(3 + 1/12, "feet"),
  39395. weight: math.unit(24, "lb"),
  39396. name: "Fully Equipped (Front)",
  39397. image: {
  39398. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39399. extra: 687/605,
  39400. bottom: 18/705
  39401. }
  39402. },
  39403. fullyEquippedBack: {
  39404. height: math.unit(3 + 1/12, "feet"),
  39405. weight: math.unit(24, "lb"),
  39406. name: "Fully Equipped (Back)",
  39407. image: {
  39408. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39409. extra: 689/590,
  39410. bottom: 18/707
  39411. }
  39412. },
  39413. dailyWear: {
  39414. height: math.unit(3 + 1/12, "feet"),
  39415. weight: math.unit(24, "lb"),
  39416. name: "Daily Wear",
  39417. image: {
  39418. source: "./media/characters/tea-spot/daily-wear.svg",
  39419. extra: 701/620,
  39420. bottom: 21/722
  39421. }
  39422. },
  39423. maidWork: {
  39424. height: math.unit(3 + 1/12, "feet"),
  39425. weight: math.unit(24, "lb"),
  39426. name: "Maid Work",
  39427. image: {
  39428. source: "./media/characters/tea-spot/maid-work.svg",
  39429. extra: 693/609,
  39430. bottom: 15/708
  39431. }
  39432. },
  39433. },
  39434. [
  39435. {
  39436. name: "Normal",
  39437. height: math.unit(3 + 1/12, "feet"),
  39438. default: true
  39439. },
  39440. ]
  39441. ))
  39442. characterMakers.push(() => makeCharacter(
  39443. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39444. {
  39445. front: {
  39446. height: math.unit(175, "cm"),
  39447. weight: math.unit(75, "kg"),
  39448. name: "Front",
  39449. image: {
  39450. source: "./media/characters/chee/front.svg",
  39451. extra: 1796/1740,
  39452. bottom: 40/1836
  39453. }
  39454. },
  39455. },
  39456. [
  39457. {
  39458. name: "Micro-Micro",
  39459. height: math.unit(1, "nm")
  39460. },
  39461. {
  39462. name: "Micro-erst",
  39463. height: math.unit(1, "micrometer")
  39464. },
  39465. {
  39466. name: "Micro-er",
  39467. height: math.unit(1, "cm")
  39468. },
  39469. {
  39470. name: "Normal",
  39471. height: math.unit(175, "cm"),
  39472. default: true
  39473. },
  39474. {
  39475. name: "Macro",
  39476. height: math.unit(100, "m")
  39477. },
  39478. {
  39479. name: "Macro-er",
  39480. height: math.unit(1, "km")
  39481. },
  39482. {
  39483. name: "Macro-erst",
  39484. height: math.unit(10, "km")
  39485. },
  39486. {
  39487. name: "Macro-Macro",
  39488. height: math.unit(100, "km")
  39489. },
  39490. ]
  39491. ))
  39492. characterMakers.push(() => makeCharacter(
  39493. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39494. {
  39495. front: {
  39496. height: math.unit(11 + 9/12, "feet"),
  39497. weight: math.unit(935, "lb"),
  39498. name: "Front",
  39499. image: {
  39500. source: "./media/characters/kingsley/front.svg",
  39501. extra: 1803/1674,
  39502. bottom: 127/1930
  39503. }
  39504. },
  39505. frontNude: {
  39506. height: math.unit(11 + 9/12, "feet"),
  39507. weight: math.unit(935, "lb"),
  39508. name: "Front (Nude)",
  39509. image: {
  39510. source: "./media/characters/kingsley/front-nude.svg",
  39511. extra: 1803/1674,
  39512. bottom: 127/1930
  39513. }
  39514. },
  39515. },
  39516. [
  39517. {
  39518. name: "Normal",
  39519. height: math.unit(11 + 9/12, "feet"),
  39520. default: true
  39521. },
  39522. ]
  39523. ))
  39524. characterMakers.push(() => makeCharacter(
  39525. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39526. {
  39527. side: {
  39528. height: math.unit(9, "feet"),
  39529. name: "Side",
  39530. image: {
  39531. source: "./media/characters/rymel/side.svg",
  39532. extra: 792/469,
  39533. bottom: 121/913
  39534. }
  39535. },
  39536. maw: {
  39537. height: math.unit(2.4, "meters"),
  39538. name: "Maw",
  39539. image: {
  39540. source: "./media/characters/rymel/maw.svg"
  39541. }
  39542. },
  39543. },
  39544. [
  39545. {
  39546. name: "House Drake",
  39547. height: math.unit(2, "feet")
  39548. },
  39549. {
  39550. name: "Reduced",
  39551. height: math.unit(4.5, "feet")
  39552. },
  39553. {
  39554. name: "Normal",
  39555. height: math.unit(9, "feet"),
  39556. default: true
  39557. },
  39558. ]
  39559. ))
  39560. characterMakers.push(() => makeCharacter(
  39561. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39562. {
  39563. front: {
  39564. height: math.unit(1.74, "meters"),
  39565. weight: math.unit(55, "kg"),
  39566. name: "Front",
  39567. image: {
  39568. source: "./media/characters/rubus/front.svg",
  39569. extra: 1894/1742,
  39570. bottom: 44/1938
  39571. }
  39572. },
  39573. },
  39574. [
  39575. {
  39576. name: "Normal",
  39577. height: math.unit(1.74, "meters"),
  39578. default: true
  39579. },
  39580. ]
  39581. ))
  39582. characterMakers.push(() => makeCharacter(
  39583. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39584. {
  39585. front: {
  39586. height: math.unit(5 + 2/12, "feet"),
  39587. weight: math.unit(112, "lb"),
  39588. name: "Front",
  39589. image: {
  39590. source: "./media/characters/cassie-kingston/front.svg",
  39591. extra: 1438/1390,
  39592. bottom: 47/1485
  39593. }
  39594. },
  39595. },
  39596. [
  39597. {
  39598. name: "Normal",
  39599. height: math.unit(5 + 2/12, "feet"),
  39600. default: true
  39601. },
  39602. {
  39603. name: "Macro",
  39604. height: math.unit(128, "feet")
  39605. },
  39606. {
  39607. name: "Megamacro",
  39608. height: math.unit(2.56, "miles")
  39609. },
  39610. ]
  39611. ))
  39612. characterMakers.push(() => makeCharacter(
  39613. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39614. {
  39615. front: {
  39616. height: math.unit(7, "feet"),
  39617. name: "Front",
  39618. image: {
  39619. source: "./media/characters/fox/front.svg",
  39620. extra: 1798/1703,
  39621. bottom: 55/1853
  39622. }
  39623. },
  39624. back: {
  39625. height: math.unit(7, "feet"),
  39626. name: "Back",
  39627. image: {
  39628. source: "./media/characters/fox/back.svg",
  39629. extra: 1748/1649,
  39630. bottom: 32/1780
  39631. }
  39632. },
  39633. head: {
  39634. height: math.unit(1.95, "feet"),
  39635. name: "Head",
  39636. image: {
  39637. source: "./media/characters/fox/head.svg"
  39638. }
  39639. },
  39640. dick: {
  39641. height: math.unit(1.33, "feet"),
  39642. name: "Dick",
  39643. image: {
  39644. source: "./media/characters/fox/dick.svg"
  39645. }
  39646. },
  39647. foot: {
  39648. height: math.unit(1, "feet"),
  39649. name: "Foot",
  39650. image: {
  39651. source: "./media/characters/fox/foot.svg"
  39652. }
  39653. },
  39654. paw: {
  39655. height: math.unit(0.92, "feet"),
  39656. name: "Paw",
  39657. image: {
  39658. source: "./media/characters/fox/paw.svg"
  39659. }
  39660. },
  39661. },
  39662. [
  39663. {
  39664. name: "Small",
  39665. height: math.unit(3, "inches")
  39666. },
  39667. {
  39668. name: "\"Realistic\"",
  39669. height: math.unit(7, "feet")
  39670. },
  39671. {
  39672. name: "Normal",
  39673. height: math.unit(150, "feet"),
  39674. default: true
  39675. },
  39676. {
  39677. name: "BIG",
  39678. height: math.unit(1200, "feet")
  39679. },
  39680. {
  39681. name: "👀",
  39682. height: math.unit(5, "miles")
  39683. },
  39684. {
  39685. name: "👀👀👀",
  39686. height: math.unit(64, "miles")
  39687. },
  39688. ]
  39689. ))
  39690. characterMakers.push(() => makeCharacter(
  39691. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39692. {
  39693. front: {
  39694. height: math.unit(625, "feet"),
  39695. name: "Front",
  39696. image: {
  39697. source: "./media/characters/asonja-rossa/front.svg",
  39698. extra: 1833/1686,
  39699. bottom: 24/1857
  39700. }
  39701. },
  39702. back: {
  39703. height: math.unit(625, "feet"),
  39704. name: "Back",
  39705. image: {
  39706. source: "./media/characters/asonja-rossa/back.svg",
  39707. extra: 1852/1753,
  39708. bottom: 26/1878
  39709. }
  39710. },
  39711. },
  39712. [
  39713. {
  39714. name: "Macro",
  39715. height: math.unit(625, "feet"),
  39716. default: true
  39717. },
  39718. ]
  39719. ))
  39720. characterMakers.push(() => makeCharacter(
  39721. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39722. {
  39723. side: {
  39724. height: math.unit(8, "feet"),
  39725. name: "Side",
  39726. image: {
  39727. source: "./media/characters/rezukii/side.svg",
  39728. extra: 979/542,
  39729. bottom: 87/1066
  39730. }
  39731. },
  39732. sitting: {
  39733. height: math.unit(14.6, "feet"),
  39734. name: "Sitting",
  39735. image: {
  39736. source: "./media/characters/rezukii/sitting.svg",
  39737. extra: 1023/813,
  39738. bottom: 45/1068
  39739. }
  39740. },
  39741. },
  39742. [
  39743. {
  39744. name: "Tiny",
  39745. height: math.unit(2, "feet")
  39746. },
  39747. {
  39748. name: "Smol",
  39749. height: math.unit(4, "feet")
  39750. },
  39751. {
  39752. name: "Normal",
  39753. height: math.unit(8, "feet"),
  39754. default: true
  39755. },
  39756. {
  39757. name: "Big",
  39758. height: math.unit(12, "feet")
  39759. },
  39760. {
  39761. name: "Macro",
  39762. height: math.unit(30, "feet")
  39763. },
  39764. ]
  39765. ))
  39766. characterMakers.push(() => makeCharacter(
  39767. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39768. {
  39769. front: {
  39770. height: math.unit(14, "feet"),
  39771. weight: math.unit(9.5, "tonnes"),
  39772. name: "Front",
  39773. image: {
  39774. source: "./media/characters/dawnheart/front.svg",
  39775. extra: 2792/2675,
  39776. bottom: 64/2856
  39777. }
  39778. },
  39779. },
  39780. [
  39781. {
  39782. name: "Normal",
  39783. height: math.unit(14, "feet"),
  39784. default: true
  39785. },
  39786. ]
  39787. ))
  39788. characterMakers.push(() => makeCharacter(
  39789. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39790. {
  39791. front: {
  39792. height: math.unit(1.7, "m"),
  39793. name: "Front",
  39794. image: {
  39795. source: "./media/characters/gladi/front.svg",
  39796. extra: 1460/1362,
  39797. bottom: 19/1479
  39798. }
  39799. },
  39800. back: {
  39801. height: math.unit(1.7, "m"),
  39802. name: "Back",
  39803. image: {
  39804. source: "./media/characters/gladi/back.svg",
  39805. extra: 1459/1357,
  39806. bottom: 12/1471
  39807. }
  39808. },
  39809. feral: {
  39810. height: math.unit(2.05, "m"),
  39811. name: "Feral",
  39812. image: {
  39813. source: "./media/characters/gladi/feral.svg",
  39814. extra: 821/557,
  39815. bottom: 91/912
  39816. }
  39817. },
  39818. },
  39819. [
  39820. {
  39821. name: "Shortest",
  39822. height: math.unit(70, "cm")
  39823. },
  39824. {
  39825. name: "Normal",
  39826. height: math.unit(1.7, "m")
  39827. },
  39828. {
  39829. name: "Macro",
  39830. height: math.unit(10, "m"),
  39831. default: true
  39832. },
  39833. {
  39834. name: "Tallest",
  39835. height: math.unit(200, "m")
  39836. },
  39837. ]
  39838. ))
  39839. characterMakers.push(() => makeCharacter(
  39840. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39841. {
  39842. front: {
  39843. height: math.unit(5 + 7/12, "feet"),
  39844. weight: math.unit(2, "tons"),
  39845. name: "Front",
  39846. image: {
  39847. source: "./media/characters/erdno/front.svg",
  39848. extra: 1234/1129,
  39849. bottom: 35/1269
  39850. }
  39851. },
  39852. angled: {
  39853. height: math.unit(5 + 7/12, "feet"),
  39854. weight: math.unit(2, "tons"),
  39855. name: "Angled",
  39856. image: {
  39857. source: "./media/characters/erdno/angled.svg",
  39858. extra: 1185/1139,
  39859. bottom: 36/1221
  39860. }
  39861. },
  39862. side: {
  39863. height: math.unit(5 + 7/12, "feet"),
  39864. weight: math.unit(2, "tons"),
  39865. name: "Side",
  39866. image: {
  39867. source: "./media/characters/erdno/side.svg",
  39868. extra: 1191/1144,
  39869. bottom: 40/1231
  39870. }
  39871. },
  39872. back: {
  39873. height: math.unit(5 + 7/12, "feet"),
  39874. weight: math.unit(2, "tons"),
  39875. name: "Back",
  39876. image: {
  39877. source: "./media/characters/erdno/back.svg",
  39878. extra: 1202/1146,
  39879. bottom: 17/1219
  39880. }
  39881. },
  39882. frontNsfw: {
  39883. height: math.unit(5 + 7/12, "feet"),
  39884. weight: math.unit(2, "tons"),
  39885. name: "Front (NSFW)",
  39886. image: {
  39887. source: "./media/characters/erdno/front-nsfw.svg",
  39888. extra: 1234/1129,
  39889. bottom: 35/1269
  39890. }
  39891. },
  39892. angledNsfw: {
  39893. height: math.unit(5 + 7/12, "feet"),
  39894. weight: math.unit(2, "tons"),
  39895. name: "Angled (NSFW)",
  39896. image: {
  39897. source: "./media/characters/erdno/angled-nsfw.svg",
  39898. extra: 1185/1139,
  39899. bottom: 36/1221
  39900. }
  39901. },
  39902. sideNsfw: {
  39903. height: math.unit(5 + 7/12, "feet"),
  39904. weight: math.unit(2, "tons"),
  39905. name: "Side (NSFW)",
  39906. image: {
  39907. source: "./media/characters/erdno/side-nsfw.svg",
  39908. extra: 1191/1144,
  39909. bottom: 40/1231
  39910. }
  39911. },
  39912. backNsfw: {
  39913. height: math.unit(5 + 7/12, "feet"),
  39914. weight: math.unit(2, "tons"),
  39915. name: "Back (NSFW)",
  39916. image: {
  39917. source: "./media/characters/erdno/back-nsfw.svg",
  39918. extra: 1202/1146,
  39919. bottom: 17/1219
  39920. }
  39921. },
  39922. frontHyper: {
  39923. height: math.unit(5 + 7/12, "feet"),
  39924. weight: math.unit(2, "tons"),
  39925. name: "Front (Hyper)",
  39926. image: {
  39927. source: "./media/characters/erdno/front-hyper.svg",
  39928. extra: 1298/1136,
  39929. bottom: 35/1333
  39930. }
  39931. },
  39932. },
  39933. [
  39934. {
  39935. name: "Normal",
  39936. height: math.unit(5 + 7/12, "feet"),
  39937. default: true
  39938. },
  39939. {
  39940. name: "Big",
  39941. height: math.unit(5.7, "meters")
  39942. },
  39943. {
  39944. name: "Macro",
  39945. height: math.unit(5.7, "kilometers")
  39946. },
  39947. {
  39948. name: "Megamacro",
  39949. height: math.unit(5.7, "earths")
  39950. },
  39951. ]
  39952. ))
  39953. characterMakers.push(() => makeCharacter(
  39954. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39955. {
  39956. front: {
  39957. height: math.unit(5 + 10/12, "feet"),
  39958. weight: math.unit(150, "lb"),
  39959. name: "Front",
  39960. image: {
  39961. source: "./media/characters/jamie/front.svg",
  39962. extra: 1908/1768,
  39963. bottom: 19/1927
  39964. }
  39965. },
  39966. },
  39967. [
  39968. {
  39969. name: "Minimum",
  39970. height: math.unit(2, "cm")
  39971. },
  39972. {
  39973. name: "Micro",
  39974. height: math.unit(3, "inches")
  39975. },
  39976. {
  39977. name: "Normal",
  39978. height: math.unit(5 + 10/12, "feet"),
  39979. default: true
  39980. },
  39981. {
  39982. name: "Macro",
  39983. height: math.unit(150, "feet")
  39984. },
  39985. {
  39986. name: "Megamacro",
  39987. height: math.unit(10000, "m")
  39988. },
  39989. ]
  39990. ))
  39991. characterMakers.push(() => makeCharacter(
  39992. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39993. {
  39994. front: {
  39995. height: math.unit(2, "meters"),
  39996. weight: math.unit(100, "kg"),
  39997. name: "Front",
  39998. image: {
  39999. source: "./media/characters/shiron/front.svg",
  40000. extra: 2103/1985,
  40001. bottom: 98/2201
  40002. }
  40003. },
  40004. back: {
  40005. height: math.unit(2, "meters"),
  40006. weight: math.unit(100, "kg"),
  40007. name: "Back",
  40008. image: {
  40009. source: "./media/characters/shiron/back.svg",
  40010. extra: 2110/2015,
  40011. bottom: 89/2199
  40012. }
  40013. },
  40014. hand: {
  40015. height: math.unit(0.96, "feet"),
  40016. name: "Hand",
  40017. image: {
  40018. source: "./media/characters/shiron/hand.svg"
  40019. }
  40020. },
  40021. foot: {
  40022. height: math.unit(1.464, "feet"),
  40023. name: "Foot",
  40024. image: {
  40025. source: "./media/characters/shiron/foot.svg"
  40026. }
  40027. },
  40028. },
  40029. [
  40030. {
  40031. name: "Normal",
  40032. height: math.unit(2, "meters")
  40033. },
  40034. {
  40035. name: "Macro",
  40036. height: math.unit(500, "meters"),
  40037. default: true
  40038. },
  40039. {
  40040. name: "Megamacro",
  40041. height: math.unit(20, "km")
  40042. },
  40043. ]
  40044. ))
  40045. characterMakers.push(() => makeCharacter(
  40046. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40047. {
  40048. front: {
  40049. height: math.unit(6, "feet"),
  40050. name: "Front",
  40051. image: {
  40052. source: "./media/characters/sam/front.svg",
  40053. extra: 849/826,
  40054. bottom: 19/868
  40055. }
  40056. },
  40057. },
  40058. [
  40059. {
  40060. name: "Normal",
  40061. height: math.unit(6, "feet"),
  40062. default: true
  40063. },
  40064. ]
  40065. ))
  40066. characterMakers.push(() => makeCharacter(
  40067. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40068. {
  40069. front: {
  40070. height: math.unit(8 + 4/12, "feet"),
  40071. weight: math.unit(122, "kg"),
  40072. name: "Front",
  40073. image: {
  40074. source: "./media/characters/namori-kurogawa/front.svg",
  40075. extra: 1894/1576,
  40076. bottom: 34/1928
  40077. }
  40078. },
  40079. },
  40080. [
  40081. {
  40082. name: "Normal",
  40083. height: math.unit(8 + 4/12, "feet"),
  40084. default: true
  40085. },
  40086. ]
  40087. ))
  40088. characterMakers.push(() => makeCharacter(
  40089. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40090. {
  40091. front: {
  40092. height: math.unit(9, "feet"),
  40093. weight: math.unit(621, "lb"),
  40094. name: "Front",
  40095. image: {
  40096. source: "./media/characters/unmru/front.svg",
  40097. extra: 1853/1747,
  40098. bottom: 73/1926
  40099. }
  40100. },
  40101. side: {
  40102. height: math.unit(9, "feet"),
  40103. weight: math.unit(621, "lb"),
  40104. name: "Side",
  40105. image: {
  40106. source: "./media/characters/unmru/side.svg",
  40107. extra: 1781/1671,
  40108. bottom: 127/1908
  40109. }
  40110. },
  40111. back: {
  40112. height: math.unit(9, "feet"),
  40113. weight: math.unit(621, "lb"),
  40114. name: "Back",
  40115. image: {
  40116. source: "./media/characters/unmru/back.svg",
  40117. extra: 1894/1765,
  40118. bottom: 75/1969
  40119. }
  40120. },
  40121. dick: {
  40122. height: math.unit(3, "feet"),
  40123. weight: math.unit(35, "lb"),
  40124. name: "Dick",
  40125. image: {
  40126. source: "./media/characters/unmru/dick.svg"
  40127. }
  40128. },
  40129. },
  40130. [
  40131. {
  40132. name: "Normal",
  40133. height: math.unit(9, "feet")
  40134. },
  40135. {
  40136. name: "Natural",
  40137. height: math.unit(27, "feet"),
  40138. default: true
  40139. },
  40140. {
  40141. name: "Giant",
  40142. height: math.unit(90, "feet")
  40143. },
  40144. {
  40145. name: "Kaiju",
  40146. height: math.unit(270, "feet")
  40147. },
  40148. {
  40149. name: "Macro",
  40150. height: math.unit(900, "feet")
  40151. },
  40152. {
  40153. name: "Macro+",
  40154. height: math.unit(2700, "feet")
  40155. },
  40156. {
  40157. name: "Megamacro",
  40158. height: math.unit(9000, "feet")
  40159. },
  40160. {
  40161. name: "City-Crushing",
  40162. height: math.unit(27000, "feet")
  40163. },
  40164. {
  40165. name: "Mountain-Mashing",
  40166. height: math.unit(90000, "feet")
  40167. },
  40168. {
  40169. name: "Earth-Eclipsing",
  40170. height: math.unit(2.7e8, "feet")
  40171. },
  40172. {
  40173. name: "Sol-Swallowing",
  40174. height: math.unit(9e10, "feet")
  40175. },
  40176. {
  40177. name: "Majoris-Munching",
  40178. height: math.unit(2.7e13, "feet")
  40179. },
  40180. ]
  40181. ))
  40182. characterMakers.push(() => makeCharacter(
  40183. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40184. {
  40185. front: {
  40186. height: math.unit(1, "inch"),
  40187. name: "Front",
  40188. image: {
  40189. source: "./media/characters/squeaks-mouse/front.svg",
  40190. extra: 352/308,
  40191. bottom: 25/377
  40192. }
  40193. },
  40194. },
  40195. [
  40196. {
  40197. name: "Micro",
  40198. height: math.unit(1, "inch"),
  40199. default: true
  40200. },
  40201. ]
  40202. ))
  40203. characterMakers.push(() => makeCharacter(
  40204. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40205. {
  40206. side: {
  40207. height: math.unit(35, "feet"),
  40208. name: "Side",
  40209. image: {
  40210. source: "./media/characters/sayko/side.svg",
  40211. extra: 1697/1021,
  40212. bottom: 82/1779
  40213. }
  40214. },
  40215. head: {
  40216. height: math.unit(16, "feet"),
  40217. name: "Head",
  40218. image: {
  40219. source: "./media/characters/sayko/head.svg"
  40220. }
  40221. },
  40222. forepaw: {
  40223. height: math.unit(7.85, "feet"),
  40224. name: "Forepaw",
  40225. image: {
  40226. source: "./media/characters/sayko/forepaw.svg"
  40227. }
  40228. },
  40229. hindpaw: {
  40230. height: math.unit(8.8, "feet"),
  40231. name: "Hindpaw",
  40232. image: {
  40233. source: "./media/characters/sayko/hindpaw.svg"
  40234. }
  40235. },
  40236. },
  40237. [
  40238. {
  40239. name: "Normal",
  40240. height: math.unit(35, "feet"),
  40241. default: true
  40242. },
  40243. {
  40244. name: "Colossus",
  40245. height: math.unit(100, "meters")
  40246. },
  40247. {
  40248. name: "\"Small\" Deity",
  40249. height: math.unit(1, "km")
  40250. },
  40251. {
  40252. name: "\"Large\" Deity",
  40253. height: math.unit(15, "km")
  40254. },
  40255. ]
  40256. ))
  40257. characterMakers.push(() => makeCharacter(
  40258. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40259. {
  40260. front: {
  40261. height: math.unit(6, "feet"),
  40262. weight: math.unit(250, "lb"),
  40263. name: "Front",
  40264. image: {
  40265. source: "./media/characters/mukiro/front.svg",
  40266. extra: 1368/1310,
  40267. bottom: 34/1402
  40268. }
  40269. },
  40270. },
  40271. [
  40272. {
  40273. name: "Normal",
  40274. height: math.unit(6, "feet"),
  40275. default: true
  40276. },
  40277. ]
  40278. ))
  40279. characterMakers.push(() => makeCharacter(
  40280. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40281. {
  40282. front: {
  40283. height: math.unit(12 + 4/12, "feet"),
  40284. name: "Front",
  40285. image: {
  40286. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40287. extra: 1346/1311,
  40288. bottom: 65/1411
  40289. }
  40290. },
  40291. },
  40292. [
  40293. {
  40294. name: "Base",
  40295. height: math.unit(12 + 4/12, "feet"),
  40296. default: true
  40297. },
  40298. {
  40299. name: "Macro",
  40300. height: math.unit(150, "feet")
  40301. },
  40302. {
  40303. name: "Mega",
  40304. height: math.unit(2, "miles")
  40305. },
  40306. {
  40307. name: "Demi God",
  40308. height: math.unit(4, "AU")
  40309. },
  40310. {
  40311. name: "God Size",
  40312. height: math.unit(1, "universe")
  40313. },
  40314. ]
  40315. ))
  40316. characterMakers.push(() => makeCharacter(
  40317. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40318. {
  40319. front: {
  40320. height: math.unit(3 + 3/12, "feet"),
  40321. weight: math.unit(88, "lb"),
  40322. name: "Front",
  40323. image: {
  40324. source: "./media/characters/trey/front.svg",
  40325. extra: 1815/1509,
  40326. bottom: 60/1875
  40327. }
  40328. },
  40329. },
  40330. [
  40331. {
  40332. name: "Normal",
  40333. height: math.unit(3 + 3/12, "feet"),
  40334. default: true
  40335. },
  40336. ]
  40337. ))
  40338. characterMakers.push(() => makeCharacter(
  40339. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40340. {
  40341. front: {
  40342. height: math.unit(4, "meters"),
  40343. name: "Front",
  40344. image: {
  40345. source: "./media/characters/adelonda/front.svg",
  40346. extra: 1077/982,
  40347. bottom: 39/1116
  40348. }
  40349. },
  40350. back: {
  40351. height: math.unit(4, "meters"),
  40352. name: "Back",
  40353. image: {
  40354. source: "./media/characters/adelonda/back.svg",
  40355. extra: 1105/1003,
  40356. bottom: 25/1130
  40357. }
  40358. },
  40359. feral: {
  40360. height: math.unit(40/1.5, "meters"),
  40361. name: "Feral",
  40362. image: {
  40363. source: "./media/characters/adelonda/feral.svg",
  40364. extra: 597/271,
  40365. bottom: 387/984
  40366. }
  40367. },
  40368. },
  40369. [
  40370. {
  40371. name: "Normal",
  40372. height: math.unit(4, "meters"),
  40373. default: true
  40374. },
  40375. ]
  40376. ))
  40377. characterMakers.push(() => makeCharacter(
  40378. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40379. {
  40380. front: {
  40381. height: math.unit(8 + 4/12, "feet"),
  40382. weight: math.unit(670, "lb"),
  40383. name: "Front",
  40384. image: {
  40385. source: "./media/characters/acadiel/front.svg",
  40386. extra: 1901/1595,
  40387. bottom: 142/2043
  40388. }
  40389. },
  40390. },
  40391. [
  40392. {
  40393. name: "Normal",
  40394. height: math.unit(8 + 4/12, "feet"),
  40395. default: true
  40396. },
  40397. {
  40398. name: "Macro",
  40399. height: math.unit(200, "feet")
  40400. },
  40401. ]
  40402. ))
  40403. characterMakers.push(() => makeCharacter(
  40404. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40405. {
  40406. front: {
  40407. height: math.unit(6 + 2/12, "feet"),
  40408. weight: math.unit(185, "lb"),
  40409. name: "Front",
  40410. image: {
  40411. source: "./media/characters/kayne-ein/front.svg",
  40412. extra: 1780/1560,
  40413. bottom: 81/1861
  40414. }
  40415. },
  40416. },
  40417. [
  40418. {
  40419. name: "Normal",
  40420. height: math.unit(6 + 2/12, "feet"),
  40421. default: true
  40422. },
  40423. {
  40424. name: "Transformation Stage",
  40425. height: math.unit(15, "feet")
  40426. },
  40427. {
  40428. name: "Macro",
  40429. height: math.unit(150, "feet")
  40430. },
  40431. {
  40432. name: "Earth's Shadow",
  40433. height: math.unit(6200, "miles")
  40434. },
  40435. {
  40436. name: "Universal Demon",
  40437. height: math.unit(28e9, "parsecs")
  40438. },
  40439. {
  40440. name: "Multiverse God",
  40441. height: math.unit(3, "multiverses")
  40442. },
  40443. ]
  40444. ))
  40445. characterMakers.push(() => makeCharacter(
  40446. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40447. {
  40448. front: {
  40449. height: math.unit(5 + 5/12, "feet"),
  40450. name: "Front",
  40451. image: {
  40452. source: "./media/characters/fawn/front.svg",
  40453. extra: 1873/1731,
  40454. bottom: 95/1968
  40455. }
  40456. },
  40457. back: {
  40458. height: math.unit(5 + 5/12, "feet"),
  40459. name: "Back",
  40460. image: {
  40461. source: "./media/characters/fawn/back.svg",
  40462. extra: 1813/1700,
  40463. bottom: 14/1827
  40464. }
  40465. },
  40466. hoof: {
  40467. height: math.unit(1.45, "feet"),
  40468. name: "Hoof",
  40469. image: {
  40470. source: "./media/characters/fawn/hoof.svg"
  40471. }
  40472. },
  40473. },
  40474. [
  40475. {
  40476. name: "Normal",
  40477. height: math.unit(5 + 5/12, "feet"),
  40478. default: true
  40479. },
  40480. ]
  40481. ))
  40482. characterMakers.push(() => makeCharacter(
  40483. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40484. {
  40485. front: {
  40486. height: math.unit(2 + 5/12, "feet"),
  40487. name: "Front",
  40488. image: {
  40489. source: "./media/characters/orion/front.svg",
  40490. extra: 1366/1304,
  40491. bottom: 43/1409
  40492. }
  40493. },
  40494. paw: {
  40495. height: math.unit(0.52, "feet"),
  40496. name: "Paw",
  40497. image: {
  40498. source: "./media/characters/orion/paw.svg"
  40499. }
  40500. },
  40501. },
  40502. [
  40503. {
  40504. name: "Normal",
  40505. height: math.unit(2 + 5/12, "feet"),
  40506. default: true
  40507. },
  40508. ]
  40509. ))
  40510. characterMakers.push(() => makeCharacter(
  40511. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40512. {
  40513. front: {
  40514. height: math.unit(5 + 10/12, "feet"),
  40515. name: "Front",
  40516. image: {
  40517. source: "./media/characters/vera/front.svg",
  40518. extra: 1680/1575,
  40519. bottom: 49/1729
  40520. }
  40521. },
  40522. back: {
  40523. height: math.unit(5 + 10/12, "feet"),
  40524. name: "Back",
  40525. image: {
  40526. source: "./media/characters/vera/back.svg",
  40527. extra: 1700/1588,
  40528. bottom: 18/1718
  40529. }
  40530. },
  40531. arcanine: {
  40532. height: math.unit(6 + 8/12, "feet"),
  40533. name: "Arcanine",
  40534. image: {
  40535. source: "./media/characters/vera/arcanine.svg",
  40536. extra: 1590/1511,
  40537. bottom: 71/1661
  40538. }
  40539. },
  40540. maw: {
  40541. height: math.unit(0.82, "feet"),
  40542. name: "Maw",
  40543. image: {
  40544. source: "./media/characters/vera/maw.svg"
  40545. }
  40546. },
  40547. mawArcanine: {
  40548. height: math.unit(0.97, "feet"),
  40549. name: "Maw (Arcanine)",
  40550. image: {
  40551. source: "./media/characters/vera/maw-arcanine.svg"
  40552. }
  40553. },
  40554. paw: {
  40555. height: math.unit(0.75, "feet"),
  40556. name: "Paw",
  40557. image: {
  40558. source: "./media/characters/vera/paw.svg"
  40559. }
  40560. },
  40561. pawprint: {
  40562. height: math.unit(0.52, "feet"),
  40563. name: "Pawprint",
  40564. image: {
  40565. source: "./media/characters/vera/pawprint.svg"
  40566. }
  40567. },
  40568. },
  40569. [
  40570. {
  40571. name: "Normal",
  40572. height: math.unit(5 + 10/12, "feet"),
  40573. default: true
  40574. },
  40575. {
  40576. name: "Macro",
  40577. height: math.unit(75, "feet")
  40578. },
  40579. ]
  40580. ))
  40581. characterMakers.push(() => makeCharacter(
  40582. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40583. {
  40584. front: {
  40585. height: math.unit(4, "feet"),
  40586. weight: math.unit(40, "lb"),
  40587. name: "Front",
  40588. image: {
  40589. source: "./media/characters/orvan-rabbit/front.svg",
  40590. extra: 1896/1642,
  40591. bottom: 29/1925
  40592. }
  40593. },
  40594. },
  40595. [
  40596. {
  40597. name: "Normal",
  40598. height: math.unit(4, "feet"),
  40599. default: true
  40600. },
  40601. ]
  40602. ))
  40603. characterMakers.push(() => makeCharacter(
  40604. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40605. {
  40606. front: {
  40607. height: math.unit(6, "feet"),
  40608. weight: math.unit(168, "lb"),
  40609. name: "Front",
  40610. image: {
  40611. source: "./media/characters/lisa/front.svg",
  40612. extra: 2065/1867,
  40613. bottom: 46/2111
  40614. }
  40615. },
  40616. back: {
  40617. height: math.unit(6, "feet"),
  40618. weight: math.unit(168, "lb"),
  40619. name: "Back",
  40620. image: {
  40621. source: "./media/characters/lisa/back.svg",
  40622. extra: 1982/1838,
  40623. bottom: 29/2011
  40624. }
  40625. },
  40626. maw: {
  40627. height: math.unit(0.81, "feet"),
  40628. name: "Maw",
  40629. image: {
  40630. source: "./media/characters/lisa/maw.svg"
  40631. }
  40632. },
  40633. paw: {
  40634. height: math.unit(0.9, "feet"),
  40635. name: "Paw",
  40636. image: {
  40637. source: "./media/characters/lisa/paw.svg"
  40638. }
  40639. },
  40640. caribousune: {
  40641. height: math.unit(7 + 2/12, "feet"),
  40642. weight: math.unit(268, "lb"),
  40643. name: "Caribousune",
  40644. image: {
  40645. source: "./media/characters/lisa/caribousune.svg",
  40646. extra: 1843/1633,
  40647. bottom: 29/1872
  40648. }
  40649. },
  40650. frontCaribousune: {
  40651. height: math.unit(7 + 2/12, "feet"),
  40652. weight: math.unit(268, "lb"),
  40653. name: "Front (Caribousune)",
  40654. image: {
  40655. source: "./media/characters/lisa/front-caribousune.svg",
  40656. extra: 1818/1638,
  40657. bottom: 52/1870
  40658. }
  40659. },
  40660. sideCaribousune: {
  40661. height: math.unit(7 + 2/12, "feet"),
  40662. weight: math.unit(268, "lb"),
  40663. name: "Side (Caribousune)",
  40664. image: {
  40665. source: "./media/characters/lisa/side-caribousune.svg",
  40666. extra: 1851/1635,
  40667. bottom: 16/1867
  40668. }
  40669. },
  40670. backCaribousune: {
  40671. height: math.unit(7 + 2/12, "feet"),
  40672. weight: math.unit(268, "lb"),
  40673. name: "Back (Caribousune)",
  40674. image: {
  40675. source: "./media/characters/lisa/back-caribousune.svg",
  40676. extra: 1801/1604,
  40677. bottom: 44/1845
  40678. }
  40679. },
  40680. caribou: {
  40681. height: math.unit(7 + 2/12, "feet"),
  40682. weight: math.unit(268, "lb"),
  40683. name: "Caribou",
  40684. image: {
  40685. source: "./media/characters/lisa/caribou.svg",
  40686. extra: 1843/1633,
  40687. bottom: 29/1872
  40688. }
  40689. },
  40690. frontCaribou: {
  40691. height: math.unit(7 + 2/12, "feet"),
  40692. weight: math.unit(268, "lb"),
  40693. name: "Front (Caribou)",
  40694. image: {
  40695. source: "./media/characters/lisa/front-caribou.svg",
  40696. extra: 1818/1638,
  40697. bottom: 52/1870
  40698. }
  40699. },
  40700. sideCaribou: {
  40701. height: math.unit(7 + 2/12, "feet"),
  40702. weight: math.unit(268, "lb"),
  40703. name: "Side (Caribou)",
  40704. image: {
  40705. source: "./media/characters/lisa/side-caribou.svg",
  40706. extra: 1851/1635,
  40707. bottom: 16/1867
  40708. }
  40709. },
  40710. backCaribou: {
  40711. height: math.unit(7 + 2/12, "feet"),
  40712. weight: math.unit(268, "lb"),
  40713. name: "Back (Caribou)",
  40714. image: {
  40715. source: "./media/characters/lisa/back-caribou.svg",
  40716. extra: 1801/1604,
  40717. bottom: 44/1845
  40718. }
  40719. },
  40720. mawCaribou: {
  40721. height: math.unit(1.45, "feet"),
  40722. name: "Maw (Caribou)",
  40723. image: {
  40724. source: "./media/characters/lisa/maw-caribou.svg"
  40725. }
  40726. },
  40727. mawCaribousune: {
  40728. height: math.unit(1.45, "feet"),
  40729. name: "Maw (Caribousune)",
  40730. image: {
  40731. source: "./media/characters/lisa/maw-caribousune.svg"
  40732. }
  40733. },
  40734. pawCaribousune: {
  40735. height: math.unit(1.61, "feet"),
  40736. name: "Paw (Caribou)",
  40737. image: {
  40738. source: "./media/characters/lisa/paw-caribousune.svg"
  40739. }
  40740. },
  40741. },
  40742. [
  40743. {
  40744. name: "Normal",
  40745. height: math.unit(6, "feet")
  40746. },
  40747. {
  40748. name: "God Size",
  40749. height: math.unit(72, "feet"),
  40750. default: true
  40751. },
  40752. {
  40753. name: "Towering",
  40754. height: math.unit(288, "feet")
  40755. },
  40756. {
  40757. name: "City Size",
  40758. height: math.unit(48384, "feet")
  40759. },
  40760. {
  40761. name: "Continental",
  40762. height: math.unit(4200, "miles")
  40763. },
  40764. {
  40765. name: "Planet Eater",
  40766. height: math.unit(42, "earths")
  40767. },
  40768. {
  40769. name: "Star Swallower",
  40770. height: math.unit(42, "solarradii")
  40771. },
  40772. {
  40773. name: "System Swallower",
  40774. height: math.unit(84000, "AU")
  40775. },
  40776. {
  40777. name: "Galaxy Gobbler",
  40778. height: math.unit(42, "galaxies")
  40779. },
  40780. {
  40781. name: "Universe Devourer",
  40782. height: math.unit(42, "universes")
  40783. },
  40784. {
  40785. name: "Multiverse Muncher",
  40786. height: math.unit(42, "multiverses")
  40787. },
  40788. ]
  40789. ))
  40790. characterMakers.push(() => makeCharacter(
  40791. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40792. {
  40793. front: {
  40794. height: math.unit(36, "feet"),
  40795. name: "Front",
  40796. image: {
  40797. source: "./media/characters/shadow-rat/front.svg",
  40798. extra: 1845/1758,
  40799. bottom: 83/1928
  40800. }
  40801. },
  40802. },
  40803. [
  40804. {
  40805. name: "Macro",
  40806. height: math.unit(36, "feet"),
  40807. default: true
  40808. },
  40809. ]
  40810. ))
  40811. characterMakers.push(() => makeCharacter(
  40812. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40813. {
  40814. side: {
  40815. height: math.unit(8, "feet"),
  40816. weight: math.unit(2630, "lb"),
  40817. name: "Side",
  40818. image: {
  40819. source: "./media/characters/torallia/side.svg",
  40820. extra: 2164/2021,
  40821. bottom: 371/2535
  40822. }
  40823. },
  40824. },
  40825. [
  40826. {
  40827. name: "Mortal Interaction",
  40828. height: math.unit(8, "feet")
  40829. },
  40830. {
  40831. name: "Natural",
  40832. height: math.unit(24, "feet"),
  40833. default: true
  40834. },
  40835. {
  40836. name: "Giant",
  40837. height: math.unit(80, "feet")
  40838. },
  40839. {
  40840. name: "Kaiju",
  40841. height: math.unit(240, "feet")
  40842. },
  40843. {
  40844. name: "Macro",
  40845. height: math.unit(800, "feet")
  40846. },
  40847. {
  40848. name: "Macro+",
  40849. height: math.unit(2400, "feet")
  40850. },
  40851. {
  40852. name: "Macro++",
  40853. height: math.unit(8000, "feet")
  40854. },
  40855. {
  40856. name: "City-Crushing",
  40857. height: math.unit(24000, "feet")
  40858. },
  40859. {
  40860. name: "Mountain-Mashing",
  40861. height: math.unit(80000, "feet")
  40862. },
  40863. {
  40864. name: "District Demolisher",
  40865. height: math.unit(240000, "feet")
  40866. },
  40867. {
  40868. name: "Tri-County Terror",
  40869. height: math.unit(800000, "feet")
  40870. },
  40871. {
  40872. name: "State Smasher",
  40873. height: math.unit(2.4e6, "feet")
  40874. },
  40875. {
  40876. name: "Nation Nemesis",
  40877. height: math.unit(8e6, "feet")
  40878. },
  40879. {
  40880. name: "Continent Cracker",
  40881. height: math.unit(2.4e7, "feet")
  40882. },
  40883. {
  40884. name: "Planet-Pillaging",
  40885. height: math.unit(8e7, "feet")
  40886. },
  40887. {
  40888. name: "Earth-Eclipsing",
  40889. height: math.unit(2.4e8, "feet")
  40890. },
  40891. {
  40892. name: "Jovian-Jostling",
  40893. height: math.unit(8e8, "feet")
  40894. },
  40895. {
  40896. name: "Gas Giant Gulper",
  40897. height: math.unit(2.4e9, "feet")
  40898. },
  40899. {
  40900. name: "Astral Annihilator",
  40901. height: math.unit(8e9, "feet")
  40902. },
  40903. {
  40904. name: "Celestial Conqueror",
  40905. height: math.unit(2.4e10, "feet")
  40906. },
  40907. {
  40908. name: "Sol-Swallowing",
  40909. height: math.unit(8e10, "feet")
  40910. },
  40911. {
  40912. name: "Hunter of the Heavens",
  40913. height: math.unit(2.4e13, "feet")
  40914. },
  40915. ]
  40916. ))
  40917. characterMakers.push(() => makeCharacter(
  40918. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40919. {
  40920. front: {
  40921. height: math.unit(6 + 8/12, "feet"),
  40922. weight: math.unit(250, "kilograms"),
  40923. volume: math.unit(28, "liters"),
  40924. name: "Front",
  40925. image: {
  40926. source: "./media/characters/rebecca-pawlson/front.svg",
  40927. extra: 1737/1596,
  40928. bottom: 107/1844
  40929. }
  40930. },
  40931. back: {
  40932. height: math.unit(6 + 8/12, "feet"),
  40933. weight: math.unit(250, "kilograms"),
  40934. volume: math.unit(28, "liters"),
  40935. name: "Back",
  40936. image: {
  40937. source: "./media/characters/rebecca-pawlson/back.svg",
  40938. extra: 1702/1523,
  40939. bottom: 86/1788
  40940. }
  40941. },
  40942. },
  40943. [
  40944. {
  40945. name: "Normal",
  40946. height: math.unit(6 + 8/12, "feet")
  40947. },
  40948. {
  40949. name: "Mini Macro",
  40950. height: math.unit(10, "feet"),
  40951. default: true
  40952. },
  40953. {
  40954. name: "Macro",
  40955. height: math.unit(100, "feet")
  40956. },
  40957. {
  40958. name: "Mega Macro",
  40959. height: math.unit(2500, "feet")
  40960. },
  40961. {
  40962. name: "Giga Macro",
  40963. height: math.unit(50, "miles")
  40964. },
  40965. ]
  40966. ))
  40967. characterMakers.push(() => makeCharacter(
  40968. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40969. {
  40970. front: {
  40971. height: math.unit(7 + 6/12, "feet"),
  40972. weight: math.unit(600, "lb"),
  40973. name: "Front",
  40974. image: {
  40975. source: "./media/characters/moxie-nova/front.svg",
  40976. extra: 1734/1652,
  40977. bottom: 41/1775
  40978. }
  40979. },
  40980. },
  40981. [
  40982. {
  40983. name: "Normal",
  40984. height: math.unit(7 + 6/12, "feet"),
  40985. default: true
  40986. },
  40987. ]
  40988. ))
  40989. characterMakers.push(() => makeCharacter(
  40990. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40991. {
  40992. goat: {
  40993. height: math.unit(4, "feet"),
  40994. weight: math.unit(180, "lb"),
  40995. name: "Goat",
  40996. image: {
  40997. source: "./media/characters/tiffany/goat.svg",
  40998. extra: 1845/1595,
  40999. bottom: 106/1951
  41000. }
  41001. },
  41002. front: {
  41003. height: math.unit(5, "feet"),
  41004. weight: math.unit(150, "lb"),
  41005. name: "Foxcoon",
  41006. image: {
  41007. source: "./media/characters/tiffany/foxcoon.svg",
  41008. extra: 1941/1845,
  41009. bottom: 58/1999
  41010. }
  41011. },
  41012. },
  41013. [
  41014. {
  41015. name: "Normal",
  41016. height: math.unit(5, "feet"),
  41017. default: true
  41018. },
  41019. ]
  41020. ))
  41021. characterMakers.push(() => makeCharacter(
  41022. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41023. {
  41024. front: {
  41025. height: math.unit(8, "feet"),
  41026. weight: math.unit(300, "lb"),
  41027. name: "Front",
  41028. image: {
  41029. source: "./media/characters/raxinath/front.svg",
  41030. extra: 1407/1309,
  41031. bottom: 39/1446
  41032. }
  41033. },
  41034. back: {
  41035. height: math.unit(8, "feet"),
  41036. weight: math.unit(300, "lb"),
  41037. name: "Back",
  41038. image: {
  41039. source: "./media/characters/raxinath/back.svg",
  41040. extra: 1405/1315,
  41041. bottom: 9/1414
  41042. }
  41043. },
  41044. },
  41045. [
  41046. {
  41047. name: "Speck",
  41048. height: math.unit(0.5, "nm")
  41049. },
  41050. {
  41051. name: "Micro",
  41052. height: math.unit(3, "inches")
  41053. },
  41054. {
  41055. name: "Kobold",
  41056. height: math.unit(3, "feet")
  41057. },
  41058. {
  41059. name: "Normal",
  41060. height: math.unit(8, "feet"),
  41061. default: true
  41062. },
  41063. {
  41064. name: "Giant",
  41065. height: math.unit(50, "feet")
  41066. },
  41067. {
  41068. name: "Macro",
  41069. height: math.unit(1000, "feet")
  41070. },
  41071. {
  41072. name: "Megamacro",
  41073. height: math.unit(1, "mile")
  41074. },
  41075. ]
  41076. ))
  41077. characterMakers.push(() => makeCharacter(
  41078. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41079. {
  41080. front: {
  41081. height: math.unit(10, "feet"),
  41082. weight: math.unit(1442, "lb"),
  41083. name: "Front",
  41084. image: {
  41085. source: "./media/characters/mal-dragon/front.svg",
  41086. extra: 1515/1444,
  41087. bottom: 113/1628
  41088. }
  41089. },
  41090. back: {
  41091. height: math.unit(10, "feet"),
  41092. weight: math.unit(1442, "lb"),
  41093. name: "Back",
  41094. image: {
  41095. source: "./media/characters/mal-dragon/back.svg",
  41096. extra: 1527/1434,
  41097. bottom: 25/1552
  41098. }
  41099. },
  41100. },
  41101. [
  41102. {
  41103. name: "Mortal Interaction",
  41104. height: math.unit(10, "feet"),
  41105. default: true
  41106. },
  41107. {
  41108. name: "Large",
  41109. height: math.unit(30, "feet")
  41110. },
  41111. {
  41112. name: "Kaiju",
  41113. height: math.unit(300, "feet")
  41114. },
  41115. {
  41116. name: "Megamacro",
  41117. height: math.unit(10000, "feet")
  41118. },
  41119. {
  41120. name: "Continent Cracker",
  41121. height: math.unit(30000000, "feet")
  41122. },
  41123. {
  41124. name: "Sol-Swallowing",
  41125. height: math.unit(1e11, "feet")
  41126. },
  41127. {
  41128. name: "Light Universal",
  41129. height: math.unit(5, "universes")
  41130. },
  41131. {
  41132. name: "Universe Atoms",
  41133. height: math.unit(1.829e9, "universes")
  41134. },
  41135. {
  41136. name: "Light Multiversal",
  41137. height: math.unit(5, "multiverses")
  41138. },
  41139. {
  41140. name: "Multiverse Atoms",
  41141. height: math.unit(1.829e9, "multiverses")
  41142. },
  41143. {
  41144. name: "Fabric of Time",
  41145. height: math.unit(1e262, "multiverses")
  41146. },
  41147. ]
  41148. ))
  41149. characterMakers.push(() => makeCharacter(
  41150. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41151. {
  41152. front: {
  41153. height: math.unit(9, "feet"),
  41154. weight: math.unit(1050, "lb"),
  41155. name: "Front",
  41156. image: {
  41157. source: "./media/characters/tabitha/front.svg",
  41158. extra: 2083/1994,
  41159. bottom: 68/2151
  41160. }
  41161. },
  41162. },
  41163. [
  41164. {
  41165. name: "Baseline",
  41166. height: math.unit(9, "feet"),
  41167. default: true
  41168. },
  41169. {
  41170. name: "Giant",
  41171. height: math.unit(90, "feet")
  41172. },
  41173. {
  41174. name: "Macro",
  41175. height: math.unit(900, "feet")
  41176. },
  41177. {
  41178. name: "Megamacro",
  41179. height: math.unit(9000, "feet")
  41180. },
  41181. {
  41182. name: "City-Crushing",
  41183. height: math.unit(27000, "feet")
  41184. },
  41185. {
  41186. name: "Mountain-Mashing",
  41187. height: math.unit(90000, "feet")
  41188. },
  41189. {
  41190. name: "Nation Nemesis",
  41191. height: math.unit(9e6, "feet")
  41192. },
  41193. {
  41194. name: "Continent Cracker",
  41195. height: math.unit(27e6, "feet")
  41196. },
  41197. {
  41198. name: "Earth-Eclipsing",
  41199. height: math.unit(2.7e8, "feet")
  41200. },
  41201. {
  41202. name: "Gas Giant Gulper",
  41203. height: math.unit(2.7e9, "feet")
  41204. },
  41205. {
  41206. name: "Sol-Swallowing",
  41207. height: math.unit(9e10, "feet")
  41208. },
  41209. {
  41210. name: "Galaxy Gulper",
  41211. height: math.unit(9, "galaxies")
  41212. },
  41213. {
  41214. name: "Cosmos Churner",
  41215. height: math.unit(9, "universes")
  41216. },
  41217. ]
  41218. ))
  41219. characterMakers.push(() => makeCharacter(
  41220. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41221. {
  41222. front: {
  41223. height: math.unit(160, "cm"),
  41224. weight: math.unit(55, "kg"),
  41225. name: "Front",
  41226. image: {
  41227. source: "./media/characters/tow/front.svg",
  41228. extra: 1751/1722,
  41229. bottom: 74/1825
  41230. }
  41231. },
  41232. },
  41233. [
  41234. {
  41235. name: "Norm",
  41236. height: math.unit(160, "cm")
  41237. },
  41238. {
  41239. name: "Casual",
  41240. height: math.unit(3200, "m"),
  41241. default: true
  41242. },
  41243. {
  41244. name: "Show-Off",
  41245. height: math.unit(160, "km")
  41246. },
  41247. ]
  41248. ))
  41249. characterMakers.push(() => makeCharacter(
  41250. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41251. {
  41252. front: {
  41253. height: math.unit(7 + 11/12, "feet"),
  41254. weight: math.unit(342.8, "lb"),
  41255. name: "Front",
  41256. image: {
  41257. source: "./media/characters/vivian-orca-dragon/front.svg",
  41258. extra: 1890/1865,
  41259. bottom: 28/1918
  41260. }
  41261. },
  41262. },
  41263. [
  41264. {
  41265. name: "Micro",
  41266. height: math.unit(5, "inches")
  41267. },
  41268. {
  41269. name: "Normal",
  41270. height: math.unit(7 + 11/12, "feet"),
  41271. default: true
  41272. },
  41273. {
  41274. name: "Macro",
  41275. height: math.unit(395 + 7/12, "feet")
  41276. },
  41277. ]
  41278. ))
  41279. characterMakers.push(() => makeCharacter(
  41280. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41281. {
  41282. side: {
  41283. height: math.unit(10, "feet"),
  41284. weight: math.unit(1442, "lb"),
  41285. name: "Side",
  41286. image: {
  41287. source: "./media/characters/lotherakon/side.svg",
  41288. extra: 1604/1497,
  41289. bottom: 89/1693
  41290. }
  41291. },
  41292. },
  41293. [
  41294. {
  41295. name: "Mortal Interaction",
  41296. height: math.unit(10, "feet")
  41297. },
  41298. {
  41299. name: "Large",
  41300. height: math.unit(30, "feet"),
  41301. default: true
  41302. },
  41303. {
  41304. name: "Giant",
  41305. height: math.unit(100, "feet")
  41306. },
  41307. {
  41308. name: "Kaiju",
  41309. height: math.unit(300, "feet")
  41310. },
  41311. {
  41312. name: "Macro",
  41313. height: math.unit(1000, "feet")
  41314. },
  41315. {
  41316. name: "Macro+",
  41317. height: math.unit(3000, "feet")
  41318. },
  41319. {
  41320. name: "Megamacro",
  41321. height: math.unit(10000, "feet")
  41322. },
  41323. {
  41324. name: "City-Crushing",
  41325. height: math.unit(30000, "feet")
  41326. },
  41327. {
  41328. name: "Continent Cracker",
  41329. height: math.unit(30e6, "feet")
  41330. },
  41331. {
  41332. name: "Earth Eclipsing",
  41333. height: math.unit(3e8, "feet")
  41334. },
  41335. {
  41336. name: "Gas Giant Gulper",
  41337. height: math.unit(3e9, "feet")
  41338. },
  41339. {
  41340. name: "Sol-Swallowing",
  41341. height: math.unit(1e11, "feet")
  41342. },
  41343. {
  41344. name: "System Swallower",
  41345. height: math.unit(3e14, "feet")
  41346. },
  41347. {
  41348. name: "Galaxy Gulper",
  41349. height: math.unit(10, "galaxies")
  41350. },
  41351. {
  41352. name: "Light Universal",
  41353. height: math.unit(5, "universes")
  41354. },
  41355. {
  41356. name: "Universe Palm",
  41357. height: math.unit(20, "universes")
  41358. },
  41359. {
  41360. name: "Light Multiversal",
  41361. height: math.unit(5, "multiverses")
  41362. },
  41363. {
  41364. name: "Multiverse Palm",
  41365. height: math.unit(20, "multiverses")
  41366. },
  41367. {
  41368. name: "Inferno Incarnate",
  41369. height: math.unit(1e7, "multiverses")
  41370. },
  41371. ]
  41372. ))
  41373. characterMakers.push(() => makeCharacter(
  41374. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41375. {
  41376. front: {
  41377. height: math.unit(8, "feet"),
  41378. weight: math.unit(1200, "lb"),
  41379. name: "Front",
  41380. image: {
  41381. source: "./media/characters/malithee/front.svg",
  41382. extra: 1675/1640,
  41383. bottom: 162/1837
  41384. }
  41385. },
  41386. },
  41387. [
  41388. {
  41389. name: "Mortal Interaction",
  41390. height: math.unit(8, "feet"),
  41391. default: true
  41392. },
  41393. {
  41394. name: "Large",
  41395. height: math.unit(24, "feet")
  41396. },
  41397. {
  41398. name: "Kaiju",
  41399. height: math.unit(240, "feet")
  41400. },
  41401. {
  41402. name: "Megamacro",
  41403. height: math.unit(8000, "feet")
  41404. },
  41405. {
  41406. name: "Continent Cracker",
  41407. height: math.unit(24e6, "feet")
  41408. },
  41409. {
  41410. name: "Earth-Eclipsing",
  41411. height: math.unit(2.4e8, "feet")
  41412. },
  41413. {
  41414. name: "Sol-Swallowing",
  41415. height: math.unit(8e10, "feet")
  41416. },
  41417. {
  41418. name: "Galaxy Gulper",
  41419. height: math.unit(8, "galaxies")
  41420. },
  41421. {
  41422. name: "Light Universal",
  41423. height: math.unit(4, "universes")
  41424. },
  41425. {
  41426. name: "Universe Atoms",
  41427. height: math.unit(1.829e9, "universes")
  41428. },
  41429. {
  41430. name: "Light Multiversal",
  41431. height: math.unit(4, "multiverses")
  41432. },
  41433. {
  41434. name: "Multiverse Atoms",
  41435. height: math.unit(1.829e9, "multiverses")
  41436. },
  41437. {
  41438. name: "Nigh-Omnipresence",
  41439. height: math.unit(8e261, "multiverses")
  41440. },
  41441. ]
  41442. ))
  41443. characterMakers.push(() => makeCharacter(
  41444. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41445. {
  41446. front: {
  41447. height: math.unit(10, "feet"),
  41448. weight: math.unit(1500, "lb"),
  41449. name: "Front",
  41450. image: {
  41451. source: "./media/characters/miles-thestia/front.svg",
  41452. extra: 1812/1727,
  41453. bottom: 86/1898
  41454. }
  41455. },
  41456. back: {
  41457. height: math.unit(10, "feet"),
  41458. weight: math.unit(1500, "lb"),
  41459. name: "Back",
  41460. image: {
  41461. source: "./media/characters/miles-thestia/back.svg",
  41462. extra: 1799/1690,
  41463. bottom: 47/1846
  41464. }
  41465. },
  41466. frontNsfw: {
  41467. height: math.unit(10, "feet"),
  41468. weight: math.unit(1500, "lb"),
  41469. name: "Front (NSFW)",
  41470. image: {
  41471. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41472. extra: 1812/1727,
  41473. bottom: 86/1898
  41474. }
  41475. },
  41476. },
  41477. [
  41478. {
  41479. name: "Mini-Macro",
  41480. height: math.unit(10, "feet"),
  41481. default: true
  41482. },
  41483. ]
  41484. ))
  41485. characterMakers.push(() => makeCharacter(
  41486. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41487. {
  41488. front: {
  41489. height: math.unit(25, "feet"),
  41490. name: "Front",
  41491. image: {
  41492. source: "./media/characters/titan-s-wulf/front.svg",
  41493. extra: 1560/1484,
  41494. bottom: 76/1636
  41495. }
  41496. },
  41497. },
  41498. [
  41499. {
  41500. name: "Smallest",
  41501. height: math.unit(25, "feet"),
  41502. default: true
  41503. },
  41504. {
  41505. name: "Normal",
  41506. height: math.unit(200, "feet")
  41507. },
  41508. {
  41509. name: "Macro",
  41510. height: math.unit(200000, "feet")
  41511. },
  41512. {
  41513. name: "Multiversal Original",
  41514. height: math.unit(10000, "multiverses")
  41515. },
  41516. ]
  41517. ))
  41518. characterMakers.push(() => makeCharacter(
  41519. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41520. {
  41521. front: {
  41522. height: math.unit(8, "feet"),
  41523. weight: math.unit(553, "lb"),
  41524. name: "Front",
  41525. image: {
  41526. source: "./media/characters/tawendeh/front.svg",
  41527. extra: 2365/2268,
  41528. bottom: 83/2448
  41529. }
  41530. },
  41531. frontClothed: {
  41532. height: math.unit(8, "feet"),
  41533. weight: math.unit(553, "lb"),
  41534. name: "Front (Clothed)",
  41535. image: {
  41536. source: "./media/characters/tawendeh/front-clothed.svg",
  41537. extra: 2365/2268,
  41538. bottom: 83/2448
  41539. }
  41540. },
  41541. back: {
  41542. height: math.unit(8, "feet"),
  41543. weight: math.unit(553, "lb"),
  41544. name: "Back",
  41545. image: {
  41546. source: "./media/characters/tawendeh/back.svg",
  41547. extra: 2397/2294,
  41548. bottom: 42/2439
  41549. }
  41550. },
  41551. },
  41552. [
  41553. {
  41554. name: "Mortal Interaction",
  41555. height: math.unit(8, "feet"),
  41556. default: true
  41557. },
  41558. {
  41559. name: "Giant",
  41560. height: math.unit(80, "feet")
  41561. },
  41562. {
  41563. name: "Macro",
  41564. height: math.unit(800, "feet")
  41565. },
  41566. {
  41567. name: "Megamacro",
  41568. height: math.unit(8000, "feet")
  41569. },
  41570. {
  41571. name: "City-Crushing",
  41572. height: math.unit(24000, "feet")
  41573. },
  41574. {
  41575. name: "Mountain-Mashing",
  41576. height: math.unit(80000, "feet")
  41577. },
  41578. {
  41579. name: "Nation Nemesis",
  41580. height: math.unit(8e6, "feet")
  41581. },
  41582. {
  41583. name: "Continent Cracker",
  41584. height: math.unit(24e6, "feet")
  41585. },
  41586. {
  41587. name: "Earth-Eclipsing",
  41588. height: math.unit(2.4e8, "feet")
  41589. },
  41590. {
  41591. name: "Gas Giant Gulper",
  41592. height: math.unit(2.4e9, "feet")
  41593. },
  41594. {
  41595. name: "Sol-Swallowing",
  41596. height: math.unit(8e10, "feet")
  41597. },
  41598. {
  41599. name: "Galaxy Gulper",
  41600. height: math.unit(8, "galaxies")
  41601. },
  41602. {
  41603. name: "Cosmos Churner",
  41604. height: math.unit(8, "universes")
  41605. },
  41606. {
  41607. name: "Omnipotent Otter",
  41608. height: math.unit(80, "universes")
  41609. },
  41610. ]
  41611. ))
  41612. characterMakers.push(() => makeCharacter(
  41613. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41614. {
  41615. front: {
  41616. height: math.unit(2.6, "meters"),
  41617. weight: math.unit(900, "kg"),
  41618. name: "Front",
  41619. image: {
  41620. source: "./media/characters/neesha/front.svg",
  41621. extra: 1803/1653,
  41622. bottom: 128/1931
  41623. }
  41624. },
  41625. },
  41626. [
  41627. {
  41628. name: "Normal",
  41629. height: math.unit(2.6, "meters"),
  41630. default: true
  41631. },
  41632. {
  41633. name: "Macro",
  41634. height: math.unit(50, "meters")
  41635. },
  41636. ]
  41637. ))
  41638. characterMakers.push(() => makeCharacter(
  41639. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41640. {
  41641. front: {
  41642. height: math.unit(5, "feet"),
  41643. weight: math.unit(185, "lb"),
  41644. name: "Front",
  41645. image: {
  41646. source: "./media/characters/kyera/front.svg",
  41647. extra: 1875/1790,
  41648. bottom: 96/1971
  41649. }
  41650. },
  41651. },
  41652. [
  41653. {
  41654. name: "Normal",
  41655. height: math.unit(5, "feet"),
  41656. default: true
  41657. },
  41658. ]
  41659. ))
  41660. characterMakers.push(() => makeCharacter(
  41661. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41662. {
  41663. front: {
  41664. height: math.unit(7 + 6/12, "feet"),
  41665. weight: math.unit(540, "lb"),
  41666. name: "Front",
  41667. image: {
  41668. source: "./media/characters/yuko/front.svg",
  41669. extra: 1282/1222,
  41670. bottom: 101/1383
  41671. }
  41672. },
  41673. frontClothed: {
  41674. height: math.unit(7 + 6/12, "feet"),
  41675. weight: math.unit(540, "lb"),
  41676. name: "Front (Clothed)",
  41677. image: {
  41678. source: "./media/characters/yuko/front-clothed.svg",
  41679. extra: 1282/1222,
  41680. bottom: 101/1383
  41681. }
  41682. },
  41683. },
  41684. [
  41685. {
  41686. name: "Normal",
  41687. height: math.unit(7 + 6/12, "feet"),
  41688. default: true
  41689. },
  41690. {
  41691. name: "Macro",
  41692. height: math.unit(26 + 9/12, "feet")
  41693. },
  41694. {
  41695. name: "Megamacro",
  41696. height: math.unit(300, "feet")
  41697. },
  41698. {
  41699. name: "Gigamacro",
  41700. height: math.unit(5000, "feet")
  41701. },
  41702. {
  41703. name: "Planetary",
  41704. height: math.unit(10000, "miles")
  41705. },
  41706. ]
  41707. ))
  41708. characterMakers.push(() => makeCharacter(
  41709. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41710. {
  41711. front: {
  41712. height: math.unit(8 + 2/12, "feet"),
  41713. weight: math.unit(600, "lb"),
  41714. name: "Front",
  41715. image: {
  41716. source: "./media/characters/deam-nitrel/front.svg",
  41717. extra: 1308/1234,
  41718. bottom: 125/1433
  41719. }
  41720. },
  41721. },
  41722. [
  41723. {
  41724. name: "Normal",
  41725. height: math.unit(8 + 2/12, "feet"),
  41726. default: true
  41727. },
  41728. ]
  41729. ))
  41730. characterMakers.push(() => makeCharacter(
  41731. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41732. {
  41733. front: {
  41734. height: math.unit(6.1, "feet"),
  41735. weight: math.unit(180, "lb"),
  41736. name: "Front",
  41737. image: {
  41738. source: "./media/characters/skyress/front.svg",
  41739. extra: 1045/915,
  41740. bottom: 28/1073
  41741. }
  41742. },
  41743. maw: {
  41744. height: math.unit(1, "feet"),
  41745. name: "Maw",
  41746. image: {
  41747. source: "./media/characters/skyress/maw.svg"
  41748. }
  41749. },
  41750. },
  41751. [
  41752. {
  41753. name: "Normal",
  41754. height: math.unit(6.1, "feet"),
  41755. default: true
  41756. },
  41757. {
  41758. name: "Macro",
  41759. height: math.unit(200, "feet")
  41760. },
  41761. ]
  41762. ))
  41763. characterMakers.push(() => makeCharacter(
  41764. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41765. {
  41766. front: {
  41767. height: math.unit(4 + 2/12, "feet"),
  41768. weight: math.unit(40, "kg"),
  41769. name: "Front",
  41770. image: {
  41771. source: "./media/characters/amethyst-jones/front.svg",
  41772. extra: 1220/1150,
  41773. bottom: 101/1321
  41774. }
  41775. },
  41776. },
  41777. [
  41778. {
  41779. name: "Normal",
  41780. height: math.unit(4 + 2/12, "feet"),
  41781. default: true
  41782. },
  41783. ]
  41784. ))
  41785. characterMakers.push(() => makeCharacter(
  41786. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41787. {
  41788. front: {
  41789. height: math.unit(1.7, "m"),
  41790. weight: math.unit(135, "lb"),
  41791. name: "Front",
  41792. image: {
  41793. source: "./media/characters/jade/front.svg",
  41794. extra: 1818/1767,
  41795. bottom: 32/1850
  41796. }
  41797. },
  41798. back: {
  41799. height: math.unit(1.7, "m"),
  41800. weight: math.unit(135, "lb"),
  41801. name: "Back",
  41802. image: {
  41803. source: "./media/characters/jade/back.svg",
  41804. extra: 1869/1809,
  41805. bottom: 35/1904
  41806. }
  41807. },
  41808. hand: {
  41809. height: math.unit(0.24, "m"),
  41810. name: "Hand",
  41811. image: {
  41812. source: "./media/characters/jade/hand.svg"
  41813. }
  41814. },
  41815. foot: {
  41816. height: math.unit(0.263, "m"),
  41817. name: "Foot",
  41818. image: {
  41819. source: "./media/characters/jade/foot.svg"
  41820. }
  41821. },
  41822. dick: {
  41823. height: math.unit(0.47, "m"),
  41824. name: "Dick",
  41825. image: {
  41826. source: "./media/characters/jade/dick.svg"
  41827. }
  41828. },
  41829. },
  41830. [
  41831. {
  41832. name: "Micro",
  41833. height: math.unit(22, "cm")
  41834. },
  41835. {
  41836. name: "Normal",
  41837. height: math.unit(1.7, "m"),
  41838. default: true
  41839. },
  41840. {
  41841. name: "Macro",
  41842. height: math.unit(152, "m")
  41843. },
  41844. ]
  41845. ))
  41846. characterMakers.push(() => makeCharacter(
  41847. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41848. {
  41849. front: {
  41850. height: math.unit(100, "miles"),
  41851. weight: math.unit(20000, "tons"),
  41852. name: "Front",
  41853. image: {
  41854. source: "./media/characters/cookie/front.svg",
  41855. extra: 1125/1070,
  41856. bottom: 30/1155
  41857. }
  41858. },
  41859. },
  41860. [
  41861. {
  41862. name: "Big",
  41863. height: math.unit(50, "feet")
  41864. },
  41865. {
  41866. name: "Macro",
  41867. height: math.unit(100, "miles"),
  41868. default: true
  41869. },
  41870. {
  41871. name: "Megamacro",
  41872. height: math.unit(90000, "miles")
  41873. },
  41874. ]
  41875. ))
  41876. characterMakers.push(() => makeCharacter(
  41877. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41878. {
  41879. front: {
  41880. height: math.unit(6, "feet"),
  41881. weight: math.unit(145, "lb"),
  41882. name: "Front",
  41883. image: {
  41884. source: "./media/characters/farzian/front.svg",
  41885. extra: 1902/1693,
  41886. bottom: 108/2010
  41887. }
  41888. },
  41889. },
  41890. [
  41891. {
  41892. name: "Macro",
  41893. height: math.unit(500, "feet"),
  41894. default: true
  41895. },
  41896. ]
  41897. ))
  41898. characterMakers.push(() => makeCharacter(
  41899. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41900. {
  41901. front: {
  41902. height: math.unit(3 + 6/12, "feet"),
  41903. weight: math.unit(50, "lb"),
  41904. name: "Front",
  41905. image: {
  41906. source: "./media/characters/kimberly-tilson/front.svg",
  41907. extra: 1400/1322,
  41908. bottom: 36/1436
  41909. }
  41910. },
  41911. back: {
  41912. height: math.unit(3 + 6/12, "feet"),
  41913. weight: math.unit(50, "lb"),
  41914. name: "Back",
  41915. image: {
  41916. source: "./media/characters/kimberly-tilson/back.svg",
  41917. extra: 1370/1307,
  41918. bottom: 20/1390
  41919. }
  41920. },
  41921. },
  41922. [
  41923. {
  41924. name: "Normal",
  41925. height: math.unit(3 + 6/12, "feet"),
  41926. default: true
  41927. },
  41928. ]
  41929. ))
  41930. characterMakers.push(() => makeCharacter(
  41931. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41932. {
  41933. front: {
  41934. height: math.unit(1148, "feet"),
  41935. weight: math.unit(34057, "lb"),
  41936. name: "Front",
  41937. image: {
  41938. source: "./media/characters/harthos/front.svg",
  41939. extra: 1391/1339,
  41940. bottom: 13/1404
  41941. }
  41942. },
  41943. },
  41944. [
  41945. {
  41946. name: "Macro",
  41947. height: math.unit(1148, "feet"),
  41948. default: true
  41949. },
  41950. ]
  41951. ))
  41952. characterMakers.push(() => makeCharacter(
  41953. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41954. {
  41955. front: {
  41956. height: math.unit(15, "feet"),
  41957. name: "Front",
  41958. image: {
  41959. source: "./media/characters/hypatia/front.svg",
  41960. extra: 1653/1591,
  41961. bottom: 79/1732
  41962. }
  41963. },
  41964. },
  41965. [
  41966. {
  41967. name: "Normal",
  41968. height: math.unit(15, "feet")
  41969. },
  41970. {
  41971. name: "Small",
  41972. height: math.unit(300, "feet")
  41973. },
  41974. {
  41975. name: "Macro",
  41976. height: math.unit(2500, "feet"),
  41977. default: true
  41978. },
  41979. {
  41980. name: "Mega Macro",
  41981. height: math.unit(1500, "miles")
  41982. },
  41983. {
  41984. name: "Giga Macro",
  41985. height: math.unit(1.5e6, "miles")
  41986. },
  41987. ]
  41988. ))
  41989. characterMakers.push(() => makeCharacter(
  41990. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41991. {
  41992. front: {
  41993. height: math.unit(6, "feet"),
  41994. weight: math.unit(200, "lb"),
  41995. name: "Front",
  41996. image: {
  41997. source: "./media/characters/wulver/front.svg",
  41998. extra: 1724/1632,
  41999. bottom: 130/1854
  42000. }
  42001. },
  42002. frontNsfw: {
  42003. height: math.unit(6, "feet"),
  42004. weight: math.unit(200, "lb"),
  42005. name: "Front (NSFW)",
  42006. image: {
  42007. source: "./media/characters/wulver/front-nsfw.svg",
  42008. extra: 1724/1632,
  42009. bottom: 130/1854
  42010. }
  42011. },
  42012. },
  42013. [
  42014. {
  42015. name: "Human-Sized",
  42016. height: math.unit(6, "feet")
  42017. },
  42018. {
  42019. name: "Normal",
  42020. height: math.unit(4, "meters"),
  42021. default: true
  42022. },
  42023. {
  42024. name: "Large",
  42025. height: math.unit(6, "m")
  42026. },
  42027. ]
  42028. ))
  42029. characterMakers.push(() => makeCharacter(
  42030. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42031. {
  42032. front: {
  42033. height: math.unit(7, "feet"),
  42034. name: "Front",
  42035. image: {
  42036. source: "./media/characters/maru/front.svg",
  42037. extra: 1595/1570,
  42038. bottom: 0/1595
  42039. }
  42040. },
  42041. },
  42042. [
  42043. {
  42044. name: "Normal",
  42045. height: math.unit(7, "feet"),
  42046. default: true
  42047. },
  42048. {
  42049. name: "Macro",
  42050. height: math.unit(700, "feet")
  42051. },
  42052. {
  42053. name: "Mega Macro",
  42054. height: math.unit(25, "miles")
  42055. },
  42056. ]
  42057. ))
  42058. characterMakers.push(() => makeCharacter(
  42059. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42060. {
  42061. front: {
  42062. height: math.unit(6, "feet"),
  42063. weight: math.unit(170, "lb"),
  42064. name: "Front",
  42065. image: {
  42066. source: "./media/characters/xenon/front.svg",
  42067. extra: 1376/1305,
  42068. bottom: 56/1432
  42069. }
  42070. },
  42071. back: {
  42072. height: math.unit(6, "feet"),
  42073. weight: math.unit(170, "lb"),
  42074. name: "Back",
  42075. image: {
  42076. source: "./media/characters/xenon/back.svg",
  42077. extra: 1328/1259,
  42078. bottom: 95/1423
  42079. }
  42080. },
  42081. maw: {
  42082. height: math.unit(0.52, "feet"),
  42083. name: "Maw",
  42084. image: {
  42085. source: "./media/characters/xenon/maw.svg"
  42086. }
  42087. },
  42088. handLeft: {
  42089. height: math.unit(0.82 * 169 / 153, "feet"),
  42090. name: "Hand (Left)",
  42091. image: {
  42092. source: "./media/characters/xenon/hand-left.svg"
  42093. }
  42094. },
  42095. handRight: {
  42096. height: math.unit(0.82, "feet"),
  42097. name: "Hand (Right)",
  42098. image: {
  42099. source: "./media/characters/xenon/hand-right.svg"
  42100. }
  42101. },
  42102. footLeft: {
  42103. height: math.unit(1.13, "feet"),
  42104. name: "Foot (Left)",
  42105. image: {
  42106. source: "./media/characters/xenon/foot-left.svg"
  42107. }
  42108. },
  42109. footRight: {
  42110. height: math.unit(1.13 * 194 / 196, "feet"),
  42111. name: "Foot (Right)",
  42112. image: {
  42113. source: "./media/characters/xenon/foot-right.svg"
  42114. }
  42115. },
  42116. },
  42117. [
  42118. {
  42119. name: "Micro",
  42120. height: math.unit(0.8, "inches")
  42121. },
  42122. {
  42123. name: "Normal",
  42124. height: math.unit(6, "feet")
  42125. },
  42126. {
  42127. name: "Macro",
  42128. height: math.unit(50, "feet"),
  42129. default: true
  42130. },
  42131. {
  42132. name: "Macro+",
  42133. height: math.unit(250, "feet")
  42134. },
  42135. {
  42136. name: "Megamacro",
  42137. height: math.unit(1500, "feet")
  42138. },
  42139. ]
  42140. ))
  42141. characterMakers.push(() => makeCharacter(
  42142. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42143. {
  42144. front: {
  42145. height: math.unit(7 + 5/12, "feet"),
  42146. name: "Front",
  42147. image: {
  42148. source: "./media/characters/zane/front.svg",
  42149. extra: 1260/1203,
  42150. bottom: 94/1354
  42151. }
  42152. },
  42153. back: {
  42154. height: math.unit(5.05, "feet"),
  42155. name: "Back",
  42156. image: {
  42157. source: "./media/characters/zane/back.svg",
  42158. extra: 893/829,
  42159. bottom: 30/923
  42160. }
  42161. },
  42162. werewolf: {
  42163. height: math.unit(11, "feet"),
  42164. name: "Werewolf",
  42165. image: {
  42166. source: "./media/characters/zane/werewolf.svg",
  42167. extra: 1383/1323,
  42168. bottom: 89/1472
  42169. }
  42170. },
  42171. foot: {
  42172. height: math.unit(1.46, "feet"),
  42173. name: "Foot",
  42174. image: {
  42175. source: "./media/characters/zane/foot.svg"
  42176. }
  42177. },
  42178. footFront: {
  42179. height: math.unit(0.784, "feet"),
  42180. name: "Foot (Front)",
  42181. image: {
  42182. source: "./media/characters/zane/foot-front.svg"
  42183. }
  42184. },
  42185. dick: {
  42186. height: math.unit(1.95, "feet"),
  42187. name: "Dick",
  42188. image: {
  42189. source: "./media/characters/zane/dick.svg"
  42190. }
  42191. },
  42192. dickWerewolf: {
  42193. height: math.unit(3.77, "feet"),
  42194. name: "Dick (Werewolf)",
  42195. image: {
  42196. source: "./media/characters/zane/dick.svg"
  42197. }
  42198. },
  42199. },
  42200. [
  42201. {
  42202. name: "Normal",
  42203. height: math.unit(7 + 5/12, "feet"),
  42204. default: true
  42205. },
  42206. ]
  42207. ))
  42208. characterMakers.push(() => makeCharacter(
  42209. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42210. {
  42211. front: {
  42212. height: math.unit(6 + 2/12, "feet"),
  42213. weight: math.unit(284, "lb"),
  42214. name: "Front",
  42215. image: {
  42216. source: "./media/characters/benni-desparque/front.svg",
  42217. extra: 1353/1126,
  42218. bottom: 69/1422
  42219. }
  42220. },
  42221. },
  42222. [
  42223. {
  42224. name: "Civilian",
  42225. height: math.unit(6 + 2/12, "feet")
  42226. },
  42227. {
  42228. name: "Normal",
  42229. height: math.unit(98, "feet"),
  42230. default: true
  42231. },
  42232. {
  42233. name: "Kaiju Fighter",
  42234. height: math.unit(268, "feet")
  42235. },
  42236. ]
  42237. ))
  42238. characterMakers.push(() => makeCharacter(
  42239. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42240. {
  42241. front: {
  42242. height: math.unit(5, "feet"),
  42243. weight: math.unit(105, "lb"),
  42244. name: "Front",
  42245. image: {
  42246. source: "./media/characters/maxine/front.svg",
  42247. extra: 1386/1250,
  42248. bottom: 71/1457
  42249. }
  42250. },
  42251. },
  42252. [
  42253. {
  42254. name: "Normal",
  42255. height: math.unit(5, "feet"),
  42256. default: true
  42257. },
  42258. ]
  42259. ))
  42260. characterMakers.push(() => makeCharacter(
  42261. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42262. {
  42263. front: {
  42264. height: math.unit(11 + 7/12, "feet"),
  42265. weight: math.unit(9576, "lb"),
  42266. name: "Front",
  42267. image: {
  42268. source: "./media/characters/scaly/front.svg",
  42269. extra: 888/867,
  42270. bottom: 36/924
  42271. }
  42272. },
  42273. },
  42274. [
  42275. {
  42276. name: "Normal",
  42277. height: math.unit(11 + 7/12, "feet"),
  42278. default: true
  42279. },
  42280. ]
  42281. ))
  42282. characterMakers.push(() => makeCharacter(
  42283. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42284. {
  42285. front: {
  42286. height: math.unit(6 + 3/12, "feet"),
  42287. name: "Front",
  42288. image: {
  42289. source: "./media/characters/saelria/front.svg",
  42290. extra: 1243/1138,
  42291. bottom: 46/1289
  42292. }
  42293. },
  42294. },
  42295. [
  42296. {
  42297. name: "Micro",
  42298. height: math.unit(6, "inches"),
  42299. },
  42300. {
  42301. name: "Normal",
  42302. height: math.unit(6 + 3/12, "feet"),
  42303. default: true
  42304. },
  42305. {
  42306. name: "Macro",
  42307. height: math.unit(25, "feet")
  42308. },
  42309. ]
  42310. ))
  42311. characterMakers.push(() => makeCharacter(
  42312. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42313. {
  42314. front: {
  42315. height: math.unit(80, "meters"),
  42316. weight: math.unit(7000, "tonnes"),
  42317. name: "Front",
  42318. image: {
  42319. source: "./media/characters/tef/front.svg",
  42320. extra: 2036/1991,
  42321. bottom: 54/2090
  42322. }
  42323. },
  42324. back: {
  42325. height: math.unit(80, "meters"),
  42326. weight: math.unit(7000, "tonnes"),
  42327. name: "Back",
  42328. image: {
  42329. source: "./media/characters/tef/back.svg",
  42330. extra: 2036/1991,
  42331. bottom: 54/2090
  42332. }
  42333. },
  42334. },
  42335. [
  42336. {
  42337. name: "Macro",
  42338. height: math.unit(80, "meters"),
  42339. default: true
  42340. },
  42341. ]
  42342. ))
  42343. characterMakers.push(() => makeCharacter(
  42344. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42345. {
  42346. front: {
  42347. height: math.unit(13, "feet"),
  42348. weight: math.unit(6, "tons"),
  42349. name: "Front",
  42350. image: {
  42351. source: "./media/characters/rover/front.svg",
  42352. extra: 1233/1156,
  42353. bottom: 50/1283
  42354. }
  42355. },
  42356. back: {
  42357. height: math.unit(13, "feet"),
  42358. weight: math.unit(6, "tons"),
  42359. name: "Back",
  42360. image: {
  42361. source: "./media/characters/rover/back.svg",
  42362. extra: 1327/1258,
  42363. bottom: 39/1366
  42364. }
  42365. },
  42366. },
  42367. [
  42368. {
  42369. name: "Normal",
  42370. height: math.unit(13, "feet"),
  42371. default: true
  42372. },
  42373. {
  42374. name: "Macro",
  42375. height: math.unit(1300, "feet")
  42376. },
  42377. {
  42378. name: "Megamacro",
  42379. height: math.unit(1300, "miles")
  42380. },
  42381. {
  42382. name: "Gigamacro",
  42383. height: math.unit(1300000, "miles")
  42384. },
  42385. ]
  42386. ))
  42387. characterMakers.push(() => makeCharacter(
  42388. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42389. {
  42390. front: {
  42391. height: math.unit(6, "feet"),
  42392. weight: math.unit(150, "lb"),
  42393. name: "Front",
  42394. image: {
  42395. source: "./media/characters/ariz/front.svg",
  42396. extra: 1401/1346,
  42397. bottom: 5/1406
  42398. }
  42399. },
  42400. },
  42401. [
  42402. {
  42403. name: "Normal",
  42404. height: math.unit(10, "feet"),
  42405. default: true
  42406. },
  42407. ]
  42408. ))
  42409. characterMakers.push(() => makeCharacter(
  42410. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42411. {
  42412. front: {
  42413. height: math.unit(6, "feet"),
  42414. weight: math.unit(140, "lb"),
  42415. name: "Front",
  42416. image: {
  42417. source: "./media/characters/sigrun/front.svg",
  42418. extra: 1418/1359,
  42419. bottom: 27/1445
  42420. }
  42421. },
  42422. },
  42423. [
  42424. {
  42425. name: "Macro",
  42426. height: math.unit(35, "feet"),
  42427. default: true
  42428. },
  42429. ]
  42430. ))
  42431. characterMakers.push(() => makeCharacter(
  42432. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42433. {
  42434. front: {
  42435. height: math.unit(6, "feet"),
  42436. weight: math.unit(150, "lb"),
  42437. name: "Front",
  42438. image: {
  42439. source: "./media/characters/numin/front.svg",
  42440. extra: 1433/1388,
  42441. bottom: 12/1445
  42442. }
  42443. },
  42444. },
  42445. [
  42446. {
  42447. name: "Macro",
  42448. height: math.unit(21.5, "km"),
  42449. default: true
  42450. },
  42451. ]
  42452. ))
  42453. characterMakers.push(() => makeCharacter(
  42454. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42455. {
  42456. front: {
  42457. height: math.unit(6, "feet"),
  42458. weight: math.unit(463, "lb"),
  42459. name: "Front",
  42460. image: {
  42461. source: "./media/characters/melwa/front.svg",
  42462. extra: 1307/1248,
  42463. bottom: 93/1400
  42464. }
  42465. },
  42466. },
  42467. [
  42468. {
  42469. name: "Macro",
  42470. height: math.unit(50, "meters"),
  42471. default: true
  42472. },
  42473. ]
  42474. ))
  42475. characterMakers.push(() => makeCharacter(
  42476. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42477. {
  42478. front: {
  42479. height: math.unit(325, "feet"),
  42480. name: "Front",
  42481. image: {
  42482. source: "./media/characters/zorkaiju/front.svg",
  42483. extra: 1955/1814,
  42484. bottom: 40/1995
  42485. }
  42486. },
  42487. frontExtended: {
  42488. height: math.unit(325, "feet"),
  42489. name: "Front (Extended)",
  42490. image: {
  42491. source: "./media/characters/zorkaiju/front-extended.svg",
  42492. extra: 1955/1814,
  42493. bottom: 40/1995
  42494. }
  42495. },
  42496. side: {
  42497. height: math.unit(325, "feet"),
  42498. name: "Side",
  42499. image: {
  42500. source: "./media/characters/zorkaiju/side.svg",
  42501. extra: 1495/1396,
  42502. bottom: 17/1512
  42503. }
  42504. },
  42505. sideExtended: {
  42506. height: math.unit(325, "feet"),
  42507. name: "Side (Extended)",
  42508. image: {
  42509. source: "./media/characters/zorkaiju/side-extended.svg",
  42510. extra: 1495/1396,
  42511. bottom: 17/1512
  42512. }
  42513. },
  42514. back: {
  42515. height: math.unit(325, "feet"),
  42516. name: "Back",
  42517. image: {
  42518. source: "./media/characters/zorkaiju/back.svg",
  42519. extra: 1959/1821,
  42520. bottom: 31/1990
  42521. }
  42522. },
  42523. backExtended: {
  42524. height: math.unit(325, "feet"),
  42525. name: "Back (Extended)",
  42526. image: {
  42527. source: "./media/characters/zorkaiju/back-extended.svg",
  42528. extra: 1959/1821,
  42529. bottom: 31/1990
  42530. }
  42531. },
  42532. hand: {
  42533. height: math.unit(58.4, "feet"),
  42534. name: "Hand",
  42535. image: {
  42536. source: "./media/characters/zorkaiju/hand.svg"
  42537. }
  42538. },
  42539. handExtended: {
  42540. height: math.unit(61.4, "feet"),
  42541. name: "Hand (Extended)",
  42542. image: {
  42543. source: "./media/characters/zorkaiju/hand-extended.svg"
  42544. }
  42545. },
  42546. foot: {
  42547. height: math.unit(95, "feet"),
  42548. name: "Foot",
  42549. image: {
  42550. source: "./media/characters/zorkaiju/foot.svg"
  42551. }
  42552. },
  42553. leftArm: {
  42554. height: math.unit(59, "feet"),
  42555. name: "Left Arm",
  42556. image: {
  42557. source: "./media/characters/zorkaiju/left-arm.svg"
  42558. }
  42559. },
  42560. rightArm: {
  42561. height: math.unit(59, "feet"),
  42562. name: "Right Arm",
  42563. image: {
  42564. source: "./media/characters/zorkaiju/right-arm.svg"
  42565. }
  42566. },
  42567. leftArmExtended: {
  42568. height: math.unit(59 * 1.033546, "feet"),
  42569. name: "Left Arm (Extended)",
  42570. image: {
  42571. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42572. }
  42573. },
  42574. rightArmExtended: {
  42575. height: math.unit(59 * 1.0496, "feet"),
  42576. name: "Right Arm (Extended)",
  42577. image: {
  42578. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42579. }
  42580. },
  42581. tail: {
  42582. height: math.unit(104, "feet"),
  42583. name: "Tail",
  42584. image: {
  42585. source: "./media/characters/zorkaiju/tail.svg"
  42586. }
  42587. },
  42588. tailExtended: {
  42589. height: math.unit(104, "feet"),
  42590. name: "Tail (Extended)",
  42591. image: {
  42592. source: "./media/characters/zorkaiju/tail-extended.svg"
  42593. }
  42594. },
  42595. tailBottom: {
  42596. height: math.unit(104, "feet"),
  42597. name: "Tail Bottom",
  42598. image: {
  42599. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42600. }
  42601. },
  42602. crystal: {
  42603. height: math.unit(27.54, "feet"),
  42604. name: "Crystal",
  42605. image: {
  42606. source: "./media/characters/zorkaiju/crystal.svg"
  42607. }
  42608. },
  42609. },
  42610. [
  42611. {
  42612. name: "Kaiju",
  42613. height: math.unit(325, "feet"),
  42614. default: true
  42615. },
  42616. ]
  42617. ))
  42618. characterMakers.push(() => makeCharacter(
  42619. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42620. {
  42621. front: {
  42622. height: math.unit(6 + 1/12, "feet"),
  42623. weight: math.unit(115, "lb"),
  42624. name: "Front",
  42625. image: {
  42626. source: "./media/characters/bailey-belfry/front.svg",
  42627. extra: 1240/1121,
  42628. bottom: 101/1341
  42629. }
  42630. },
  42631. },
  42632. [
  42633. {
  42634. name: "Normal",
  42635. height: math.unit(6 + 1/12, "feet"),
  42636. default: true
  42637. },
  42638. ]
  42639. ))
  42640. characterMakers.push(() => makeCharacter(
  42641. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42642. {
  42643. side: {
  42644. height: math.unit(4, "meters"),
  42645. weight: math.unit(250, "kg"),
  42646. name: "Side",
  42647. image: {
  42648. source: "./media/characters/blacky/side.svg",
  42649. extra: 1027/919,
  42650. bottom: 43/1070
  42651. }
  42652. },
  42653. maw: {
  42654. height: math.unit(1, "meters"),
  42655. name: "Maw",
  42656. image: {
  42657. source: "./media/characters/blacky/maw.svg"
  42658. }
  42659. },
  42660. paw: {
  42661. height: math.unit(1, "meters"),
  42662. name: "Paw",
  42663. image: {
  42664. source: "./media/characters/blacky/paw.svg"
  42665. }
  42666. },
  42667. },
  42668. [
  42669. {
  42670. name: "Normal",
  42671. height: math.unit(4, "meters"),
  42672. default: true
  42673. },
  42674. ]
  42675. ))
  42676. characterMakers.push(() => makeCharacter(
  42677. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42678. {
  42679. front: {
  42680. height: math.unit(170, "cm"),
  42681. weight: math.unit(66, "kg"),
  42682. name: "Front",
  42683. image: {
  42684. source: "./media/characters/thux-ei/front.svg",
  42685. extra: 1109/1011,
  42686. bottom: 8/1117
  42687. }
  42688. },
  42689. },
  42690. [
  42691. {
  42692. name: "Normal",
  42693. height: math.unit(170, "cm"),
  42694. default: true
  42695. },
  42696. ]
  42697. ))
  42698. characterMakers.push(() => makeCharacter(
  42699. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42700. {
  42701. front: {
  42702. height: math.unit(5, "feet"),
  42703. weight: math.unit(120, "lb"),
  42704. name: "Front",
  42705. image: {
  42706. source: "./media/characters/roxanne-voltaire/front.svg",
  42707. extra: 1901/1779,
  42708. bottom: 53/1954
  42709. }
  42710. },
  42711. },
  42712. [
  42713. {
  42714. name: "Normal",
  42715. height: math.unit(5, "feet"),
  42716. default: true
  42717. },
  42718. {
  42719. name: "Giant",
  42720. height: math.unit(50, "feet")
  42721. },
  42722. {
  42723. name: "Titan",
  42724. height: math.unit(500, "feet")
  42725. },
  42726. {
  42727. name: "Macro",
  42728. height: math.unit(5000, "feet")
  42729. },
  42730. {
  42731. name: "Megamacro",
  42732. height: math.unit(50000, "feet")
  42733. },
  42734. {
  42735. name: "Gigamacro",
  42736. height: math.unit(500000, "feet")
  42737. },
  42738. {
  42739. name: "Teramacro",
  42740. height: math.unit(5e6, "feet")
  42741. },
  42742. ]
  42743. ))
  42744. characterMakers.push(() => makeCharacter(
  42745. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42746. {
  42747. front: {
  42748. height: math.unit(6 + 2/12, "feet"),
  42749. name: "Front",
  42750. image: {
  42751. source: "./media/characters/squeaks/front.svg",
  42752. extra: 1823/1768,
  42753. bottom: 138/1961
  42754. }
  42755. },
  42756. },
  42757. [
  42758. {
  42759. name: "Micro",
  42760. height: math.unit(0.5, "inches")
  42761. },
  42762. {
  42763. name: "Normal",
  42764. height: math.unit(6 + 2/12, "feet"),
  42765. default: true
  42766. },
  42767. {
  42768. name: "Macro",
  42769. height: math.unit(600, "feet")
  42770. },
  42771. ]
  42772. ))
  42773. characterMakers.push(() => makeCharacter(
  42774. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42775. {
  42776. front: {
  42777. height: math.unit(1.72, "meters"),
  42778. name: "Front",
  42779. image: {
  42780. source: "./media/characters/archinger/front.svg",
  42781. extra: 1861/1675,
  42782. bottom: 125/1986
  42783. }
  42784. },
  42785. back: {
  42786. height: math.unit(1.72, "meters"),
  42787. name: "Back",
  42788. image: {
  42789. source: "./media/characters/archinger/back.svg",
  42790. extra: 1844/1701,
  42791. bottom: 104/1948
  42792. }
  42793. },
  42794. cock: {
  42795. height: math.unit(0.59, "feet"),
  42796. name: "Cock",
  42797. image: {
  42798. source: "./media/characters/archinger/cock.svg"
  42799. }
  42800. },
  42801. },
  42802. [
  42803. {
  42804. name: "Normal",
  42805. height: math.unit(1.72, "meters"),
  42806. default: true
  42807. },
  42808. {
  42809. name: "Macro",
  42810. height: math.unit(84, "meters")
  42811. },
  42812. {
  42813. name: "Macro+",
  42814. height: math.unit(112, "meters")
  42815. },
  42816. {
  42817. name: "Macro++",
  42818. height: math.unit(960, "meters")
  42819. },
  42820. {
  42821. name: "Macro+++",
  42822. height: math.unit(4, "km")
  42823. },
  42824. {
  42825. name: "Macro++++",
  42826. height: math.unit(48, "km")
  42827. },
  42828. {
  42829. name: "Macro+++++",
  42830. height: math.unit(4500, "km")
  42831. },
  42832. ]
  42833. ))
  42834. characterMakers.push(() => makeCharacter(
  42835. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42836. {
  42837. front: {
  42838. height: math.unit(5 + 5/12, "feet"),
  42839. name: "Front",
  42840. image: {
  42841. source: "./media/characters/alsnapz/front.svg",
  42842. extra: 1157/1065,
  42843. bottom: 42/1199
  42844. }
  42845. },
  42846. },
  42847. [
  42848. {
  42849. name: "Normal",
  42850. height: math.unit(5 + 5/12, "feet"),
  42851. default: true
  42852. },
  42853. ]
  42854. ))
  42855. characterMakers.push(() => makeCharacter(
  42856. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42857. {
  42858. side: {
  42859. height: math.unit(3.2, "earths"),
  42860. name: "Side",
  42861. image: {
  42862. source: "./media/characters/mag/side.svg",
  42863. extra: 1331/1008,
  42864. bottom: 52/1383
  42865. }
  42866. },
  42867. wing: {
  42868. height: math.unit(1.94, "earths"),
  42869. name: "Wing",
  42870. image: {
  42871. source: "./media/characters/mag/wing.svg"
  42872. }
  42873. },
  42874. dick: {
  42875. height: math.unit(1.8, "earths"),
  42876. name: "Dick",
  42877. image: {
  42878. source: "./media/characters/mag/dick.svg"
  42879. }
  42880. },
  42881. ass: {
  42882. height: math.unit(1.33, "earths"),
  42883. name: "Ass",
  42884. image: {
  42885. source: "./media/characters/mag/ass.svg"
  42886. }
  42887. },
  42888. head: {
  42889. height: math.unit(1.1, "earths"),
  42890. name: "Head",
  42891. image: {
  42892. source: "./media/characters/mag/head.svg"
  42893. }
  42894. },
  42895. maw: {
  42896. height: math.unit(1.62, "earths"),
  42897. name: "Maw",
  42898. image: {
  42899. source: "./media/characters/mag/maw.svg"
  42900. }
  42901. },
  42902. },
  42903. [
  42904. {
  42905. name: "Small",
  42906. height: math.unit(162, "feet")
  42907. },
  42908. {
  42909. name: "Normal",
  42910. height: math.unit(3.2, "earths"),
  42911. default: true
  42912. },
  42913. ]
  42914. ))
  42915. characterMakers.push(() => makeCharacter(
  42916. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42917. {
  42918. front: {
  42919. height: math.unit(512, "feet"),
  42920. weight: math.unit(63509, "tonnes"),
  42921. name: "Front",
  42922. image: {
  42923. source: "./media/characters/vorrel-harroc/front.svg",
  42924. extra: 1075/1063,
  42925. bottom: 62/1137
  42926. }
  42927. },
  42928. },
  42929. [
  42930. {
  42931. name: "Normal",
  42932. height: math.unit(10, "feet")
  42933. },
  42934. {
  42935. name: "Macro",
  42936. height: math.unit(512, "feet"),
  42937. default: true
  42938. },
  42939. {
  42940. name: "Megamacro",
  42941. height: math.unit(256, "miles")
  42942. },
  42943. {
  42944. name: "Gigamacro",
  42945. height: math.unit(4096, "miles")
  42946. },
  42947. ]
  42948. ))
  42949. characterMakers.push(() => makeCharacter(
  42950. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42951. {
  42952. side: {
  42953. height: math.unit(50, "feet"),
  42954. name: "Side",
  42955. image: {
  42956. source: "./media/characters/froimar/side.svg",
  42957. extra: 855/638,
  42958. bottom: 99/954
  42959. }
  42960. },
  42961. },
  42962. [
  42963. {
  42964. name: "Macro",
  42965. height: math.unit(50, "feet"),
  42966. default: true
  42967. },
  42968. ]
  42969. ))
  42970. characterMakers.push(() => makeCharacter(
  42971. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42972. {
  42973. front: {
  42974. height: math.unit(210, "miles"),
  42975. name: "Front",
  42976. image: {
  42977. source: "./media/characters/timothy/front.svg",
  42978. extra: 1007/943,
  42979. bottom: 62/1069
  42980. }
  42981. },
  42982. frontSkirt: {
  42983. height: math.unit(210, "miles"),
  42984. name: "Front (Skirt)",
  42985. image: {
  42986. source: "./media/characters/timothy/front-skirt.svg",
  42987. extra: 1007/943,
  42988. bottom: 62/1069
  42989. }
  42990. },
  42991. frontCoat: {
  42992. height: math.unit(210, "miles"),
  42993. name: "Front (Coat)",
  42994. image: {
  42995. source: "./media/characters/timothy/front-coat.svg",
  42996. extra: 1007/943,
  42997. bottom: 62/1069
  42998. }
  42999. },
  43000. },
  43001. [
  43002. {
  43003. name: "Macro",
  43004. height: math.unit(210, "miles"),
  43005. default: true
  43006. },
  43007. {
  43008. name: "Megamacro",
  43009. height: math.unit(210000, "miles")
  43010. },
  43011. ]
  43012. ))
  43013. characterMakers.push(() => makeCharacter(
  43014. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43015. {
  43016. front: {
  43017. height: math.unit(188, "feet"),
  43018. name: "Front",
  43019. image: {
  43020. source: "./media/characters/pyotr/front.svg",
  43021. extra: 1912/1826,
  43022. bottom: 18/1930
  43023. }
  43024. },
  43025. },
  43026. [
  43027. {
  43028. name: "Macro",
  43029. height: math.unit(188, "feet"),
  43030. default: true
  43031. },
  43032. {
  43033. name: "Megamacro",
  43034. height: math.unit(8, "miles")
  43035. },
  43036. ]
  43037. ))
  43038. characterMakers.push(() => makeCharacter(
  43039. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43040. {
  43041. side: {
  43042. height: math.unit(10, "feet"),
  43043. weight: math.unit(4500, "lb"),
  43044. name: "Side",
  43045. image: {
  43046. source: "./media/characters/ackart/side.svg",
  43047. extra: 1776/1668,
  43048. bottom: 116/1892
  43049. }
  43050. },
  43051. },
  43052. [
  43053. {
  43054. name: "Normal",
  43055. height: math.unit(10, "feet"),
  43056. default: true
  43057. },
  43058. ]
  43059. ))
  43060. characterMakers.push(() => makeCharacter(
  43061. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43062. {
  43063. side: {
  43064. height: math.unit(21, "feet"),
  43065. name: "Side",
  43066. image: {
  43067. source: "./media/characters/nolow/side.svg",
  43068. extra: 1484/1434,
  43069. bottom: 85/1569
  43070. }
  43071. },
  43072. sideErect: {
  43073. height: math.unit(21, "feet"),
  43074. name: "Side-erect",
  43075. image: {
  43076. source: "./media/characters/nolow/side-erect.svg",
  43077. extra: 1484/1434,
  43078. bottom: 85/1569
  43079. }
  43080. },
  43081. },
  43082. [
  43083. {
  43084. name: "Regular",
  43085. height: math.unit(12, "feet")
  43086. },
  43087. {
  43088. name: "Big Chee",
  43089. height: math.unit(21, "feet"),
  43090. default: true
  43091. },
  43092. ]
  43093. ))
  43094. characterMakers.push(() => makeCharacter(
  43095. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43096. {
  43097. front: {
  43098. height: math.unit(7, "feet"),
  43099. weight: math.unit(250, "lb"),
  43100. name: "Front",
  43101. image: {
  43102. source: "./media/characters/nines/front.svg",
  43103. extra: 1741/1607,
  43104. bottom: 41/1782
  43105. }
  43106. },
  43107. side: {
  43108. height: math.unit(7, "feet"),
  43109. weight: math.unit(250, "lb"),
  43110. name: "Side",
  43111. image: {
  43112. source: "./media/characters/nines/side.svg",
  43113. extra: 1854/1735,
  43114. bottom: 93/1947
  43115. }
  43116. },
  43117. back: {
  43118. height: math.unit(7, "feet"),
  43119. weight: math.unit(250, "lb"),
  43120. name: "Back",
  43121. image: {
  43122. source: "./media/characters/nines/back.svg",
  43123. extra: 1748/1615,
  43124. bottom: 20/1768
  43125. }
  43126. },
  43127. },
  43128. [
  43129. {
  43130. name: "Megamacro",
  43131. height: math.unit(99, "km"),
  43132. default: true
  43133. },
  43134. ]
  43135. ))
  43136. characterMakers.push(() => makeCharacter(
  43137. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43138. {
  43139. front: {
  43140. height: math.unit(5 + 10/12, "feet"),
  43141. weight: math.unit(210, "lb"),
  43142. name: "Front",
  43143. image: {
  43144. source: "./media/characters/zenith/front.svg",
  43145. extra: 1531/1452,
  43146. bottom: 198/1729
  43147. }
  43148. },
  43149. back: {
  43150. height: math.unit(5 + 10/12, "feet"),
  43151. weight: math.unit(210, "lb"),
  43152. name: "Back",
  43153. image: {
  43154. source: "./media/characters/zenith/back.svg",
  43155. extra: 1571/1487,
  43156. bottom: 75/1646
  43157. }
  43158. },
  43159. },
  43160. [
  43161. {
  43162. name: "Normal",
  43163. height: math.unit(5 + 10/12, "feet"),
  43164. default: true
  43165. }
  43166. ]
  43167. ))
  43168. characterMakers.push(() => makeCharacter(
  43169. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43170. {
  43171. front: {
  43172. height: math.unit(4, "feet"),
  43173. weight: math.unit(60, "lb"),
  43174. name: "Front",
  43175. image: {
  43176. source: "./media/characters/jasper/front.svg",
  43177. extra: 1450/1379,
  43178. bottom: 19/1469
  43179. }
  43180. },
  43181. },
  43182. [
  43183. {
  43184. name: "Normal",
  43185. height: math.unit(4, "feet"),
  43186. default: true
  43187. },
  43188. ]
  43189. ))
  43190. characterMakers.push(() => makeCharacter(
  43191. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43192. {
  43193. front: {
  43194. height: math.unit(6 + 5/12, "feet"),
  43195. weight: math.unit(290, "lb"),
  43196. name: "Front",
  43197. image: {
  43198. source: "./media/characters/tiberius-thyben/front.svg",
  43199. extra: 757/739,
  43200. bottom: 39/796
  43201. }
  43202. },
  43203. },
  43204. [
  43205. {
  43206. name: "Micro",
  43207. height: math.unit(1.5, "inches")
  43208. },
  43209. {
  43210. name: "Normal",
  43211. height: math.unit(6 + 5/12, "feet"),
  43212. default: true
  43213. },
  43214. {
  43215. name: "Macro",
  43216. height: math.unit(300, "feet")
  43217. },
  43218. ]
  43219. ))
  43220. characterMakers.push(() => makeCharacter(
  43221. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43222. {
  43223. front: {
  43224. height: math.unit(5 + 6/12, "feet"),
  43225. weight: math.unit(60, "kg"),
  43226. name: "Front",
  43227. image: {
  43228. source: "./media/characters/sabre/front.svg",
  43229. extra: 738/671,
  43230. bottom: 27/765
  43231. }
  43232. },
  43233. },
  43234. [
  43235. {
  43236. name: "Teeny",
  43237. height: math.unit(2, "inches")
  43238. },
  43239. {
  43240. name: "Smol",
  43241. height: math.unit(8, "inches")
  43242. },
  43243. {
  43244. name: "Normal",
  43245. height: math.unit(5 + 6/12, "feet"),
  43246. default: true
  43247. },
  43248. {
  43249. name: "Mini-Macro",
  43250. height: math.unit(15, "feet")
  43251. },
  43252. {
  43253. name: "Macro",
  43254. height: math.unit(50, "feet")
  43255. },
  43256. ]
  43257. ))
  43258. characterMakers.push(() => makeCharacter(
  43259. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43260. {
  43261. front: {
  43262. height: math.unit(6 + 4/12, "feet"),
  43263. weight: math.unit(170, "lb"),
  43264. name: "Front",
  43265. image: {
  43266. source: "./media/characters/charlie/front.svg",
  43267. extra: 1348/1228,
  43268. bottom: 15/1363
  43269. }
  43270. },
  43271. },
  43272. [
  43273. {
  43274. name: "Macro",
  43275. height: math.unit(1700, "meters"),
  43276. default: true
  43277. },
  43278. {
  43279. name: "MegaMacro",
  43280. height: math.unit(20400, "meters")
  43281. },
  43282. ]
  43283. ))
  43284. characterMakers.push(() => makeCharacter(
  43285. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43286. {
  43287. front: {
  43288. height: math.unit(6 + 3/12, "feet"),
  43289. weight: math.unit(185, "lb"),
  43290. name: "Front",
  43291. image: {
  43292. source: "./media/characters/susan-grant/front.svg",
  43293. extra: 1351/1327,
  43294. bottom: 26/1377
  43295. }
  43296. },
  43297. },
  43298. [
  43299. {
  43300. name: "Normal",
  43301. height: math.unit(6 + 3/12, "feet"),
  43302. default: true
  43303. },
  43304. {
  43305. name: "Macro",
  43306. height: math.unit(225, "feet")
  43307. },
  43308. {
  43309. name: "Macro+",
  43310. height: math.unit(900, "feet")
  43311. },
  43312. {
  43313. name: "MegaMacro",
  43314. height: math.unit(14400, "feet")
  43315. },
  43316. ]
  43317. ))
  43318. characterMakers.push(() => makeCharacter(
  43319. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43320. {
  43321. front: {
  43322. height: math.unit(5 + 4/12, "feet"),
  43323. weight: math.unit(110, "lb"),
  43324. name: "Front",
  43325. image: {
  43326. source: "./media/characters/axel-isanov/front.svg",
  43327. extra: 1096/1065,
  43328. bottom: 13/1109
  43329. }
  43330. },
  43331. },
  43332. [
  43333. {
  43334. name: "Normal",
  43335. height: math.unit(5 + 4/12, "feet"),
  43336. default: true
  43337. },
  43338. ]
  43339. ))
  43340. characterMakers.push(() => makeCharacter(
  43341. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43342. {
  43343. front: {
  43344. height: math.unit(9, "feet"),
  43345. weight: math.unit(467, "lb"),
  43346. name: "Front",
  43347. image: {
  43348. source: "./media/characters/necahual/front.svg",
  43349. extra: 920/873,
  43350. bottom: 26/946
  43351. }
  43352. },
  43353. back: {
  43354. height: math.unit(9, "feet"),
  43355. weight: math.unit(467, "lb"),
  43356. name: "Back",
  43357. image: {
  43358. source: "./media/characters/necahual/back.svg",
  43359. extra: 930/884,
  43360. bottom: 16/946
  43361. }
  43362. },
  43363. frontUnderwear: {
  43364. height: math.unit(9, "feet"),
  43365. weight: math.unit(467, "lb"),
  43366. name: "Front (Underwear)",
  43367. image: {
  43368. source: "./media/characters/necahual/front-underwear.svg",
  43369. extra: 920/873,
  43370. bottom: 26/946
  43371. }
  43372. },
  43373. frontDressed: {
  43374. height: math.unit(9, "feet"),
  43375. weight: math.unit(467, "lb"),
  43376. name: "Front (Dressed)",
  43377. image: {
  43378. source: "./media/characters/necahual/front-dressed.svg",
  43379. extra: 920/873,
  43380. bottom: 26/946
  43381. }
  43382. },
  43383. },
  43384. [
  43385. {
  43386. name: "Comprsesed",
  43387. height: math.unit(9, "feet")
  43388. },
  43389. {
  43390. name: "Natural",
  43391. height: math.unit(15, "feet"),
  43392. default: true
  43393. },
  43394. {
  43395. name: "Boosted",
  43396. height: math.unit(50, "feet")
  43397. },
  43398. {
  43399. name: "Boosted+",
  43400. height: math.unit(150, "feet")
  43401. },
  43402. {
  43403. name: "Max",
  43404. height: math.unit(500, "feet")
  43405. },
  43406. ]
  43407. ))
  43408. characterMakers.push(() => makeCharacter(
  43409. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43410. {
  43411. front: {
  43412. height: math.unit(22 + 1/12, "feet"),
  43413. weight: math.unit(3200, "lb"),
  43414. name: "Front",
  43415. image: {
  43416. source: "./media/characters/theo-acacia/front.svg",
  43417. extra: 1796/1741,
  43418. bottom: 83/1879
  43419. }
  43420. },
  43421. frontUnderwear: {
  43422. height: math.unit(22 + 1/12, "feet"),
  43423. weight: math.unit(3200, "lb"),
  43424. name: "Front (Underwear)",
  43425. image: {
  43426. source: "./media/characters/theo-acacia/front-underwear.svg",
  43427. extra: 1796/1741,
  43428. bottom: 83/1879
  43429. }
  43430. },
  43431. frontNude: {
  43432. height: math.unit(22 + 1/12, "feet"),
  43433. weight: math.unit(3200, "lb"),
  43434. name: "Front (Nude)",
  43435. image: {
  43436. source: "./media/characters/theo-acacia/front-nude.svg",
  43437. extra: 1796/1741,
  43438. bottom: 83/1879
  43439. }
  43440. },
  43441. },
  43442. [
  43443. {
  43444. name: "Normal",
  43445. height: math.unit(22 + 1/12, "feet"),
  43446. default: true
  43447. },
  43448. ]
  43449. ))
  43450. characterMakers.push(() => makeCharacter(
  43451. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43452. {
  43453. front: {
  43454. height: math.unit(20, "feet"),
  43455. name: "Front",
  43456. image: {
  43457. source: "./media/characters/astra/front.svg",
  43458. extra: 1850/1714,
  43459. bottom: 106/1956
  43460. }
  43461. },
  43462. frontUndressed: {
  43463. height: math.unit(20, "feet"),
  43464. name: "Front (Undressed)",
  43465. image: {
  43466. source: "./media/characters/astra/front-undressed.svg",
  43467. extra: 1926/1749,
  43468. bottom: 0/1926
  43469. }
  43470. },
  43471. hand: {
  43472. height: math.unit(1.53, "feet"),
  43473. name: "Hand",
  43474. image: {
  43475. source: "./media/characters/astra/hand.svg"
  43476. }
  43477. },
  43478. paw: {
  43479. height: math.unit(1.53, "feet"),
  43480. name: "Paw",
  43481. image: {
  43482. source: "./media/characters/astra/paw.svg"
  43483. }
  43484. },
  43485. },
  43486. [
  43487. {
  43488. name: "Smallest",
  43489. height: math.unit(20, "feet")
  43490. },
  43491. {
  43492. name: "Normal",
  43493. height: math.unit(1e9, "miles"),
  43494. default: true
  43495. },
  43496. {
  43497. name: "Larger",
  43498. height: math.unit(5, "multiverses")
  43499. },
  43500. {
  43501. name: "Largest",
  43502. height: math.unit(1e9, "multiverses")
  43503. },
  43504. ]
  43505. ))
  43506. characterMakers.push(() => makeCharacter(
  43507. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43508. {
  43509. front: {
  43510. height: math.unit(8, "feet"),
  43511. name: "Front",
  43512. image: {
  43513. source: "./media/characters/breanna/front.svg",
  43514. extra: 1912/1632,
  43515. bottom: 33/1945
  43516. }
  43517. },
  43518. },
  43519. [
  43520. {
  43521. name: "Smallest",
  43522. height: math.unit(8, "feet")
  43523. },
  43524. {
  43525. name: "Normal",
  43526. height: math.unit(1, "mile"),
  43527. default: true
  43528. },
  43529. {
  43530. name: "Maximum",
  43531. height: math.unit(1500000000000, "lightyears")
  43532. },
  43533. ]
  43534. ))
  43535. characterMakers.push(() => makeCharacter(
  43536. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43537. {
  43538. front: {
  43539. height: math.unit(5 + 11/12, "feet"),
  43540. weight: math.unit(155, "lb"),
  43541. name: "Front",
  43542. image: {
  43543. source: "./media/characters/cai/front.svg",
  43544. extra: 1823/1702,
  43545. bottom: 32/1855
  43546. }
  43547. },
  43548. back: {
  43549. height: math.unit(5 + 11/12, "feet"),
  43550. weight: math.unit(155, "lb"),
  43551. name: "Back",
  43552. image: {
  43553. source: "./media/characters/cai/back.svg",
  43554. extra: 1809/1708,
  43555. bottom: 31/1840
  43556. }
  43557. },
  43558. },
  43559. [
  43560. {
  43561. name: "Normal",
  43562. height: math.unit(5 + 11/12, "feet"),
  43563. default: true
  43564. },
  43565. {
  43566. name: "Big",
  43567. height: math.unit(15, "feet")
  43568. },
  43569. {
  43570. name: "Macro",
  43571. height: math.unit(200, "feet")
  43572. },
  43573. ]
  43574. ))
  43575. characterMakers.push(() => makeCharacter(
  43576. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43577. {
  43578. front: {
  43579. height: math.unit(5 + 6/12, "feet"),
  43580. weight: math.unit(160, "lb"),
  43581. name: "Front",
  43582. image: {
  43583. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43584. extra: 1227/1174,
  43585. bottom: 37/1264
  43586. }
  43587. },
  43588. },
  43589. [
  43590. {
  43591. name: "Macro",
  43592. height: math.unit(444, "meters"),
  43593. default: true
  43594. },
  43595. ]
  43596. ))
  43597. characterMakers.push(() => makeCharacter(
  43598. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43599. {
  43600. front: {
  43601. height: math.unit(18 + 7/12, "feet"),
  43602. name: "Front",
  43603. image: {
  43604. source: "./media/characters/rex/front.svg",
  43605. extra: 1941/1807,
  43606. bottom: 66/2007
  43607. }
  43608. },
  43609. back: {
  43610. height: math.unit(18 + 7/12, "feet"),
  43611. name: "Back",
  43612. image: {
  43613. source: "./media/characters/rex/back.svg",
  43614. extra: 1937/1822,
  43615. bottom: 42/1979
  43616. }
  43617. },
  43618. boot: {
  43619. height: math.unit(3.45, "feet"),
  43620. name: "Boot",
  43621. image: {
  43622. source: "./media/characters/rex/boot.svg"
  43623. }
  43624. },
  43625. paw: {
  43626. height: math.unit(4.17, "feet"),
  43627. name: "Paw",
  43628. image: {
  43629. source: "./media/characters/rex/paw.svg"
  43630. }
  43631. },
  43632. head: {
  43633. height: math.unit(6.728, "feet"),
  43634. name: "Head",
  43635. image: {
  43636. source: "./media/characters/rex/head.svg"
  43637. }
  43638. },
  43639. },
  43640. [
  43641. {
  43642. name: "Nano",
  43643. height: math.unit(18 + 7/12, "feet")
  43644. },
  43645. {
  43646. name: "Micro",
  43647. height: math.unit(1.5, "megameters")
  43648. },
  43649. {
  43650. name: "Normal",
  43651. height: math.unit(440, "megameters"),
  43652. default: true
  43653. },
  43654. {
  43655. name: "Macro",
  43656. height: math.unit(2.5, "gigameters")
  43657. },
  43658. {
  43659. name: "Gigamacro",
  43660. height: math.unit(2, "galaxies")
  43661. },
  43662. ]
  43663. ))
  43664. characterMakers.push(() => makeCharacter(
  43665. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43666. {
  43667. side: {
  43668. height: math.unit(32, "feet"),
  43669. weight: math.unit(250000, "lb"),
  43670. name: "Side",
  43671. image: {
  43672. source: "./media/characters/silverwing/side.svg",
  43673. extra: 1100/1019,
  43674. bottom: 204/1304
  43675. }
  43676. },
  43677. },
  43678. [
  43679. {
  43680. name: "Normal",
  43681. height: math.unit(32, "feet"),
  43682. default: true
  43683. },
  43684. ]
  43685. ))
  43686. characterMakers.push(() => makeCharacter(
  43687. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43688. {
  43689. front: {
  43690. height: math.unit(6 + 6/12, "feet"),
  43691. weight: math.unit(350, "lb"),
  43692. name: "Front",
  43693. image: {
  43694. source: "./media/characters/tristan-hawthorne/front.svg",
  43695. extra: 1159/1124,
  43696. bottom: 37/1196
  43697. },
  43698. form: "labrador",
  43699. default: true
  43700. },
  43701. skunkFront: {
  43702. height: math.unit(4 + 6/12, "feet"),
  43703. weight: math.unit(120, "lb"),
  43704. name: "Front",
  43705. image: {
  43706. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43707. extra: 1609/1551,
  43708. bottom: 169/1778
  43709. },
  43710. form: "skunk",
  43711. default: true
  43712. },
  43713. },
  43714. [
  43715. {
  43716. name: "Normal",
  43717. height: math.unit(6 + 6/12, "feet"),
  43718. form: "labrador",
  43719. default: true
  43720. },
  43721. {
  43722. name: "Normal",
  43723. height: math.unit(4 + 6/12, "feet"),
  43724. form: "skunk",
  43725. default: true
  43726. },
  43727. ],
  43728. {
  43729. "labrador": {
  43730. name: "Labrador",
  43731. default: true
  43732. },
  43733. "skunk": {
  43734. name: "Skunk"
  43735. }
  43736. }
  43737. ))
  43738. characterMakers.push(() => makeCharacter(
  43739. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43740. {
  43741. front: {
  43742. height: math.unit(5 + 11/12, "feet"),
  43743. weight: math.unit(190, "lb"),
  43744. name: "Front",
  43745. image: {
  43746. source: "./media/characters/mizu/front.svg",
  43747. extra: 1988/1788,
  43748. bottom: 14/2002
  43749. }
  43750. },
  43751. },
  43752. [
  43753. {
  43754. name: "Normal",
  43755. height: math.unit(5 + 11/12, "feet"),
  43756. default: true
  43757. },
  43758. ]
  43759. ))
  43760. characterMakers.push(() => makeCharacter(
  43761. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43762. {
  43763. front: {
  43764. height: math.unit(1.7, "feet"),
  43765. weight: math.unit(50, "lb"),
  43766. name: "Front",
  43767. image: {
  43768. source: "./media/characters/dechroma/front.svg",
  43769. extra: 1095/859,
  43770. bottom: 64/1159
  43771. }
  43772. },
  43773. },
  43774. [
  43775. {
  43776. name: "Normal",
  43777. height: math.unit(1.7, "feet"),
  43778. default: true
  43779. },
  43780. ]
  43781. ))
  43782. characterMakers.push(() => makeCharacter(
  43783. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43784. {
  43785. side: {
  43786. height: math.unit(30, "feet"),
  43787. name: "Side",
  43788. image: {
  43789. source: "./media/characters/veluren-thanazel/side.svg",
  43790. extra: 1611/633,
  43791. bottom: 118/1729
  43792. }
  43793. },
  43794. front: {
  43795. height: math.unit(30, "feet"),
  43796. name: "Front",
  43797. image: {
  43798. source: "./media/characters/veluren-thanazel/front.svg",
  43799. extra: 1486/636,
  43800. bottom: 238/1724
  43801. }
  43802. },
  43803. head: {
  43804. height: math.unit(21.4, "feet"),
  43805. name: "Head",
  43806. image: {
  43807. source: "./media/characters/veluren-thanazel/head.svg"
  43808. }
  43809. },
  43810. genitals: {
  43811. height: math.unit(19.4, "feet"),
  43812. name: "Genitals",
  43813. image: {
  43814. source: "./media/characters/veluren-thanazel/genitals.svg"
  43815. }
  43816. },
  43817. },
  43818. [
  43819. {
  43820. name: "Social",
  43821. height: math.unit(6, "feet")
  43822. },
  43823. {
  43824. name: "Play",
  43825. height: math.unit(12, "feet")
  43826. },
  43827. {
  43828. name: "True",
  43829. height: math.unit(30, "feet"),
  43830. default: true
  43831. },
  43832. ]
  43833. ))
  43834. characterMakers.push(() => makeCharacter(
  43835. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43836. {
  43837. front: {
  43838. height: math.unit(7 + 6/12, "feet"),
  43839. weight: math.unit(500, "kg"),
  43840. name: "Front",
  43841. image: {
  43842. source: "./media/characters/arcturas/front.svg",
  43843. extra: 1700/1500,
  43844. bottom: 145/1845
  43845. }
  43846. },
  43847. },
  43848. [
  43849. {
  43850. name: "Normal",
  43851. height: math.unit(7 + 6/12, "feet"),
  43852. default: true
  43853. },
  43854. ]
  43855. ))
  43856. characterMakers.push(() => makeCharacter(
  43857. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43858. {
  43859. side: {
  43860. height: math.unit(6, "feet"),
  43861. weight: math.unit(2, "tons"),
  43862. name: "Side",
  43863. image: {
  43864. source: "./media/characters/vitaen/side.svg",
  43865. extra: 1157/617,
  43866. bottom: 122/1279
  43867. }
  43868. },
  43869. },
  43870. [
  43871. {
  43872. name: "Normal",
  43873. height: math.unit(6, "feet"),
  43874. default: true
  43875. },
  43876. ]
  43877. ))
  43878. characterMakers.push(() => makeCharacter(
  43879. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43880. {
  43881. front: {
  43882. height: math.unit(19, "feet"),
  43883. name: "Front",
  43884. image: {
  43885. source: "./media/characters/fia-dreamweaver/front.svg",
  43886. extra: 1630/1504,
  43887. bottom: 25/1655
  43888. }
  43889. },
  43890. },
  43891. [
  43892. {
  43893. name: "Normal",
  43894. height: math.unit(19, "feet"),
  43895. default: true
  43896. },
  43897. ]
  43898. ))
  43899. characterMakers.push(() => makeCharacter(
  43900. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43901. {
  43902. front: {
  43903. height: math.unit(5 + 4/12, "feet"),
  43904. name: "Front",
  43905. image: {
  43906. source: "./media/characters/artan/front.svg",
  43907. extra: 1618/1535,
  43908. bottom: 46/1664
  43909. }
  43910. },
  43911. back: {
  43912. height: math.unit(5 + 4/12, "feet"),
  43913. name: "Back",
  43914. image: {
  43915. source: "./media/characters/artan/back.svg",
  43916. extra: 1618/1543,
  43917. bottom: 31/1649
  43918. }
  43919. },
  43920. },
  43921. [
  43922. {
  43923. name: "Normal",
  43924. height: math.unit(5 + 4/12, "feet"),
  43925. default: true
  43926. },
  43927. ]
  43928. ))
  43929. characterMakers.push(() => makeCharacter(
  43930. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43931. {
  43932. side: {
  43933. height: math.unit(182, "cm"),
  43934. weight: math.unit(1000, "lb"),
  43935. name: "Side",
  43936. image: {
  43937. source: "./media/characters/silver-dragon/side.svg",
  43938. extra: 710/287,
  43939. bottom: 88/798
  43940. }
  43941. },
  43942. },
  43943. [
  43944. {
  43945. name: "Normal",
  43946. height: math.unit(182, "cm"),
  43947. default: true
  43948. },
  43949. ]
  43950. ))
  43951. characterMakers.push(() => makeCharacter(
  43952. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43953. {
  43954. side: {
  43955. height: math.unit(6 + 6/12, "feet"),
  43956. weight: math.unit(1.5, "tons"),
  43957. name: "Side",
  43958. image: {
  43959. source: "./media/characters/zephyr/side.svg",
  43960. extra: 1433/586,
  43961. bottom: 109/1542
  43962. }
  43963. },
  43964. },
  43965. [
  43966. {
  43967. name: "Normal",
  43968. height: math.unit(6 + 6/12, "feet"),
  43969. default: true
  43970. },
  43971. ]
  43972. ))
  43973. characterMakers.push(() => makeCharacter(
  43974. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43975. {
  43976. side: {
  43977. height: math.unit(1, "feet"),
  43978. name: "Side",
  43979. image: {
  43980. source: "./media/characters/vixye/side.svg",
  43981. extra: 632/541,
  43982. bottom: 0/632
  43983. }
  43984. },
  43985. },
  43986. [
  43987. {
  43988. name: "Normal",
  43989. height: math.unit(1, "feet"),
  43990. default: true
  43991. },
  43992. {
  43993. name: "True",
  43994. height: math.unit(1e15, "multiverses")
  43995. },
  43996. ]
  43997. ))
  43998. characterMakers.push(() => makeCharacter(
  43999. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44000. {
  44001. front: {
  44002. height: math.unit(8 + 2/12, "feet"),
  44003. weight: math.unit(650, "lb"),
  44004. name: "Front",
  44005. image: {
  44006. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44007. extra: 1174/1137,
  44008. bottom: 82/1256
  44009. }
  44010. },
  44011. back: {
  44012. height: math.unit(8 + 2/12, "feet"),
  44013. weight: math.unit(650, "lb"),
  44014. name: "Back",
  44015. image: {
  44016. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44017. extra: 1204/1157,
  44018. bottom: 46/1250
  44019. }
  44020. },
  44021. },
  44022. [
  44023. {
  44024. name: "Wildform",
  44025. height: math.unit(8 + 2/12, "feet"),
  44026. default: true
  44027. },
  44028. ]
  44029. ))
  44030. characterMakers.push(() => makeCharacter(
  44031. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44032. {
  44033. front: {
  44034. height: math.unit(18, "feet"),
  44035. name: "Front",
  44036. image: {
  44037. source: "./media/characters/cyphin/front.svg",
  44038. extra: 970/886,
  44039. bottom: 42/1012
  44040. }
  44041. },
  44042. back: {
  44043. height: math.unit(18, "feet"),
  44044. name: "Back",
  44045. image: {
  44046. source: "./media/characters/cyphin/back.svg",
  44047. extra: 1009/894,
  44048. bottom: 24/1033
  44049. }
  44050. },
  44051. head: {
  44052. height: math.unit(5.05, "feet"),
  44053. name: "Head",
  44054. image: {
  44055. source: "./media/characters/cyphin/head.svg"
  44056. }
  44057. },
  44058. tailbud: {
  44059. height: math.unit(5, "feet"),
  44060. name: "Tailbud",
  44061. image: {
  44062. source: "./media/characters/cyphin/tailbud.svg"
  44063. }
  44064. },
  44065. },
  44066. [
  44067. ]
  44068. ))
  44069. characterMakers.push(() => makeCharacter(
  44070. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44071. {
  44072. side: {
  44073. height: math.unit(10, "feet"),
  44074. weight: math.unit(6, "tons"),
  44075. name: "Side",
  44076. image: {
  44077. source: "./media/characters/raijin/side.svg",
  44078. extra: 1529/613,
  44079. bottom: 337/1866
  44080. }
  44081. },
  44082. },
  44083. [
  44084. {
  44085. name: "Normal",
  44086. height: math.unit(10, "feet"),
  44087. default: true
  44088. },
  44089. ]
  44090. ))
  44091. characterMakers.push(() => makeCharacter(
  44092. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44093. {
  44094. side: {
  44095. height: math.unit(9, "feet"),
  44096. name: "Side",
  44097. image: {
  44098. source: "./media/characters/nilghais/side.svg",
  44099. extra: 1047/744,
  44100. bottom: 91/1138
  44101. }
  44102. },
  44103. head: {
  44104. height: math.unit(3.14, "feet"),
  44105. name: "Head",
  44106. image: {
  44107. source: "./media/characters/nilghais/head.svg"
  44108. }
  44109. },
  44110. mouth: {
  44111. height: math.unit(4.6, "feet"),
  44112. name: "Mouth",
  44113. image: {
  44114. source: "./media/characters/nilghais/mouth.svg"
  44115. }
  44116. },
  44117. wings: {
  44118. height: math.unit(24, "feet"),
  44119. name: "Wings",
  44120. image: {
  44121. source: "./media/characters/nilghais/wings.svg"
  44122. }
  44123. },
  44124. ass: {
  44125. height: math.unit(6.12, "feet"),
  44126. name: "Ass",
  44127. image: {
  44128. source: "./media/characters/nilghais/ass.svg"
  44129. }
  44130. },
  44131. },
  44132. [
  44133. {
  44134. name: "Normal",
  44135. height: math.unit(9, "feet"),
  44136. default: true
  44137. },
  44138. ]
  44139. ))
  44140. characterMakers.push(() => makeCharacter(
  44141. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44142. {
  44143. regular: {
  44144. height: math.unit(16 + 2/12, "feet"),
  44145. weight: math.unit(2300, "lb"),
  44146. name: "Regular",
  44147. image: {
  44148. source: "./media/characters/zolgar/regular.svg",
  44149. extra: 1246/1004,
  44150. bottom: 124/1370
  44151. }
  44152. },
  44153. boxers: {
  44154. height: math.unit(16 + 2/12, "feet"),
  44155. weight: math.unit(2300, "lb"),
  44156. name: "Boxers",
  44157. image: {
  44158. source: "./media/characters/zolgar/boxers.svg",
  44159. extra: 1246/1004,
  44160. bottom: 124/1370
  44161. }
  44162. },
  44163. armored: {
  44164. height: math.unit(16 + 2/12, "feet"),
  44165. weight: math.unit(2300, "lb"),
  44166. name: "Armored",
  44167. image: {
  44168. source: "./media/characters/zolgar/armored.svg",
  44169. extra: 1246/1004,
  44170. bottom: 124/1370
  44171. }
  44172. },
  44173. goth: {
  44174. height: math.unit(16 + 2/12, "feet"),
  44175. weight: math.unit(2300, "lb"),
  44176. name: "Goth",
  44177. image: {
  44178. source: "./media/characters/zolgar/goth.svg",
  44179. extra: 1246/1004,
  44180. bottom: 124/1370
  44181. }
  44182. },
  44183. },
  44184. [
  44185. {
  44186. name: "Shrunken Down",
  44187. height: math.unit(9 + 2/12, "feet")
  44188. },
  44189. {
  44190. name: "Normal",
  44191. height: math.unit(16 + 2/12, "feet"),
  44192. default: true
  44193. },
  44194. ]
  44195. ))
  44196. characterMakers.push(() => makeCharacter(
  44197. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44198. {
  44199. front: {
  44200. height: math.unit(6, "feet"),
  44201. weight: math.unit(168, "lb"),
  44202. name: "Front",
  44203. image: {
  44204. source: "./media/characters/luca/front.svg",
  44205. extra: 841/667,
  44206. bottom: 102/943
  44207. }
  44208. },
  44209. },
  44210. [
  44211. {
  44212. name: "Normal",
  44213. height: math.unit(6, "feet"),
  44214. default: true
  44215. },
  44216. ]
  44217. ))
  44218. characterMakers.push(() => makeCharacter(
  44219. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44220. {
  44221. side: {
  44222. height: math.unit(7 + 3/12, "feet"),
  44223. weight: math.unit(312, "lb"),
  44224. name: "Side",
  44225. image: {
  44226. source: "./media/characters/zezo/side.svg",
  44227. extra: 1192/1067,
  44228. bottom: 63/1255
  44229. }
  44230. },
  44231. },
  44232. [
  44233. {
  44234. name: "Normal",
  44235. height: math.unit(7 + 3/12, "feet"),
  44236. default: true
  44237. },
  44238. ]
  44239. ))
  44240. characterMakers.push(() => makeCharacter(
  44241. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44242. {
  44243. front: {
  44244. height: math.unit(5 + 5/12, "feet"),
  44245. weight: math.unit(170, "lb"),
  44246. name: "Front",
  44247. image: {
  44248. source: "./media/characters/mayso/front.svg",
  44249. extra: 1215/1108,
  44250. bottom: 16/1231
  44251. }
  44252. },
  44253. },
  44254. [
  44255. {
  44256. name: "Normal",
  44257. height: math.unit(5 + 5/12, "feet"),
  44258. default: true
  44259. },
  44260. ]
  44261. ))
  44262. characterMakers.push(() => makeCharacter(
  44263. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44264. {
  44265. front: {
  44266. height: math.unit(4 + 3/12, "feet"),
  44267. weight: math.unit(80, "lb"),
  44268. name: "Front",
  44269. image: {
  44270. source: "./media/characters/hess/front.svg",
  44271. extra: 1200/1123,
  44272. bottom: 16/1216
  44273. }
  44274. },
  44275. },
  44276. [
  44277. {
  44278. name: "Normal",
  44279. height: math.unit(4 + 3/12, "feet"),
  44280. default: true
  44281. },
  44282. ]
  44283. ))
  44284. characterMakers.push(() => makeCharacter(
  44285. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44286. {
  44287. front: {
  44288. height: math.unit(1.9, "meters"),
  44289. name: "Front",
  44290. image: {
  44291. source: "./media/characters/ashgar/front.svg",
  44292. extra: 1177/1146,
  44293. bottom: 99/1276
  44294. }
  44295. },
  44296. back: {
  44297. height: math.unit(1.9, "meters"),
  44298. name: "Back",
  44299. image: {
  44300. source: "./media/characters/ashgar/back.svg",
  44301. extra: 1201/1183,
  44302. bottom: 53/1254
  44303. }
  44304. },
  44305. feral: {
  44306. height: math.unit(1.4, "meters"),
  44307. name: "Feral",
  44308. image: {
  44309. source: "./media/characters/ashgar/feral.svg",
  44310. extra: 370/345,
  44311. bottom: 45/415
  44312. }
  44313. },
  44314. },
  44315. [
  44316. {
  44317. name: "Normal",
  44318. height: math.unit(1.9, "meters"),
  44319. default: true
  44320. },
  44321. ]
  44322. ))
  44323. characterMakers.push(() => makeCharacter(
  44324. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44325. {
  44326. regular: {
  44327. height: math.unit(6, "feet"),
  44328. weight: math.unit(220, "lb"),
  44329. name: "Regular",
  44330. image: {
  44331. source: "./media/characters/phillip/regular.svg",
  44332. extra: 1373/1277,
  44333. bottom: 75/1448
  44334. }
  44335. },
  44336. dressed: {
  44337. height: math.unit(6, "feet"),
  44338. weight: math.unit(220, "lb"),
  44339. name: "Dressed",
  44340. image: {
  44341. source: "./media/characters/phillip/dressed.svg",
  44342. extra: 1373/1277,
  44343. bottom: 75/1448
  44344. }
  44345. },
  44346. paw: {
  44347. height: math.unit(1.44, "feet"),
  44348. name: "Paw",
  44349. image: {
  44350. source: "./media/characters/phillip/paw.svg"
  44351. }
  44352. },
  44353. },
  44354. [
  44355. {
  44356. name: "Normal",
  44357. height: math.unit(6, "feet"),
  44358. default: true
  44359. },
  44360. ]
  44361. ))
  44362. characterMakers.push(() => makeCharacter(
  44363. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44364. {
  44365. side: {
  44366. height: math.unit(42, "feet"),
  44367. name: "Side",
  44368. image: {
  44369. source: "./media/characters/uvula/side.svg",
  44370. extra: 683/586,
  44371. bottom: 60/743
  44372. }
  44373. },
  44374. front: {
  44375. height: math.unit(42, "feet"),
  44376. name: "Front",
  44377. image: {
  44378. source: "./media/characters/uvula/front.svg",
  44379. extra: 705/613,
  44380. bottom: 54/759
  44381. }
  44382. },
  44383. maw: {
  44384. height: math.unit(23.5, "feet"),
  44385. name: "Maw",
  44386. image: {
  44387. source: "./media/characters/uvula/maw.svg"
  44388. }
  44389. },
  44390. },
  44391. [
  44392. {
  44393. name: "Original Size",
  44394. height: math.unit(14, "inches")
  44395. },
  44396. {
  44397. name: "Human Size",
  44398. height: math.unit(6, "feet")
  44399. },
  44400. {
  44401. name: "Big",
  44402. height: math.unit(42, "feet"),
  44403. default: true
  44404. },
  44405. {
  44406. name: "Bigger",
  44407. height: math.unit(100, "feet")
  44408. },
  44409. ]
  44410. ))
  44411. characterMakers.push(() => makeCharacter(
  44412. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44413. {
  44414. front: {
  44415. height: math.unit(5 + 11/12, "feet"),
  44416. name: "Front",
  44417. image: {
  44418. source: "./media/characters/lannah/front.svg",
  44419. extra: 1208/1113,
  44420. bottom: 97/1305
  44421. }
  44422. },
  44423. },
  44424. [
  44425. {
  44426. name: "Normal",
  44427. height: math.unit(5 + 11/12, "feet"),
  44428. default: true
  44429. },
  44430. ]
  44431. ))
  44432. characterMakers.push(() => makeCharacter(
  44433. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44434. {
  44435. front: {
  44436. height: math.unit(6 + 3/12, "feet"),
  44437. weight: math.unit(3.5, "tons"),
  44438. name: "Front",
  44439. image: {
  44440. source: "./media/characters/emberflame/front.svg",
  44441. extra: 1198/672,
  44442. bottom: 82/1280
  44443. }
  44444. },
  44445. side: {
  44446. height: math.unit(6 + 3/12, "feet"),
  44447. weight: math.unit(3.5, "tons"),
  44448. name: "Side",
  44449. image: {
  44450. source: "./media/characters/emberflame/side.svg",
  44451. extra: 938/527,
  44452. bottom: 56/994
  44453. }
  44454. },
  44455. },
  44456. [
  44457. {
  44458. name: "Normal",
  44459. height: math.unit(6 + 3/12, "feet"),
  44460. default: true
  44461. },
  44462. ]
  44463. ))
  44464. characterMakers.push(() => makeCharacter(
  44465. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44466. {
  44467. side: {
  44468. height: math.unit(17.5, "feet"),
  44469. weight: math.unit(35, "tons"),
  44470. name: "Side",
  44471. image: {
  44472. source: "./media/characters/sophie-ambrose/side.svg",
  44473. extra: 1573/1242,
  44474. bottom: 71/1644
  44475. }
  44476. },
  44477. maw: {
  44478. height: math.unit(7.4, "feet"),
  44479. name: "Maw",
  44480. image: {
  44481. source: "./media/characters/sophie-ambrose/maw.svg"
  44482. }
  44483. },
  44484. },
  44485. [
  44486. {
  44487. name: "Normal",
  44488. height: math.unit(17.5, "feet"),
  44489. default: true
  44490. },
  44491. ]
  44492. ))
  44493. characterMakers.push(() => makeCharacter(
  44494. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44495. {
  44496. front: {
  44497. height: math.unit(280, "feet"),
  44498. weight: math.unit(550, "tons"),
  44499. name: "Front",
  44500. image: {
  44501. source: "./media/characters/king-mugi/front.svg",
  44502. extra: 1102/947,
  44503. bottom: 104/1206
  44504. }
  44505. },
  44506. },
  44507. [
  44508. {
  44509. name: "King Mugi",
  44510. height: math.unit(280, "feet"),
  44511. default: true
  44512. },
  44513. ]
  44514. ))
  44515. characterMakers.push(() => makeCharacter(
  44516. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44517. {
  44518. front: {
  44519. height: math.unit(64, "meters"),
  44520. name: "Front",
  44521. image: {
  44522. source: "./media/characters/nova-fox/front.svg",
  44523. extra: 1310/1246,
  44524. bottom: 65/1375
  44525. }
  44526. },
  44527. },
  44528. [
  44529. {
  44530. name: "Macro",
  44531. height: math.unit(64, "meters"),
  44532. default: true
  44533. },
  44534. ]
  44535. ))
  44536. characterMakers.push(() => makeCharacter(
  44537. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44538. {
  44539. front: {
  44540. height: math.unit(6 + 3/12, "feet"),
  44541. weight: math.unit(170, "lb"),
  44542. name: "Front",
  44543. image: {
  44544. source: "./media/characters/sam-bat/front.svg",
  44545. extra: 1601/1411,
  44546. bottom: 125/1726
  44547. }
  44548. },
  44549. back: {
  44550. height: math.unit(6 + 3/12, "feet"),
  44551. weight: math.unit(170, "lb"),
  44552. name: "Back",
  44553. image: {
  44554. source: "./media/characters/sam-bat/back.svg",
  44555. extra: 1577/1405,
  44556. bottom: 58/1635
  44557. }
  44558. },
  44559. },
  44560. [
  44561. {
  44562. name: "Normal",
  44563. height: math.unit(6 + 3/12, "feet"),
  44564. default: true
  44565. },
  44566. ]
  44567. ))
  44568. characterMakers.push(() => makeCharacter(
  44569. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44570. {
  44571. front: {
  44572. height: math.unit(59, "feet"),
  44573. weight: math.unit(40000, "lb"),
  44574. name: "Front",
  44575. image: {
  44576. source: "./media/characters/inari/front.svg",
  44577. extra: 1884/1350,
  44578. bottom: 95/1979
  44579. }
  44580. },
  44581. },
  44582. [
  44583. {
  44584. name: "Gigantamax",
  44585. height: math.unit(59, "feet"),
  44586. default: true
  44587. },
  44588. ]
  44589. ))
  44590. characterMakers.push(() => makeCharacter(
  44591. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44592. {
  44593. front: {
  44594. height: math.unit(5 + 8/12, "feet"),
  44595. name: "Front",
  44596. image: {
  44597. source: "./media/characters/elizabeth/front.svg",
  44598. extra: 1395/1298,
  44599. bottom: 54/1449
  44600. }
  44601. },
  44602. mouth: {
  44603. height: math.unit(1.97, "feet"),
  44604. name: "Mouth",
  44605. image: {
  44606. source: "./media/characters/elizabeth/mouth.svg"
  44607. }
  44608. },
  44609. foot: {
  44610. height: math.unit(1.17, "feet"),
  44611. name: "Foot",
  44612. image: {
  44613. source: "./media/characters/elizabeth/foot.svg"
  44614. }
  44615. },
  44616. },
  44617. [
  44618. {
  44619. name: "Normal",
  44620. height: math.unit(5 + 8/12, "feet"),
  44621. default: true
  44622. },
  44623. {
  44624. name: "Minimacro",
  44625. height: math.unit(18, "feet")
  44626. },
  44627. {
  44628. name: "Macro",
  44629. height: math.unit(180, "feet")
  44630. },
  44631. ]
  44632. ))
  44633. characterMakers.push(() => makeCharacter(
  44634. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44635. {
  44636. front: {
  44637. height: math.unit(5 + 2/12, "feet"),
  44638. name: "Front",
  44639. image: {
  44640. source: "./media/characters/october-gossamer/front.svg",
  44641. extra: 505/454,
  44642. bottom: 7/512
  44643. }
  44644. },
  44645. back: {
  44646. height: math.unit(5 + 2/12, "feet"),
  44647. name: "Back",
  44648. image: {
  44649. source: "./media/characters/october-gossamer/back.svg",
  44650. extra: 501/454,
  44651. bottom: 11/512
  44652. }
  44653. },
  44654. },
  44655. [
  44656. {
  44657. name: "Normal",
  44658. height: math.unit(5 + 2/12, "feet"),
  44659. default: true
  44660. },
  44661. ]
  44662. ))
  44663. characterMakers.push(() => makeCharacter(
  44664. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44665. {
  44666. front: {
  44667. height: math.unit(5, "feet"),
  44668. name: "Front",
  44669. image: {
  44670. source: "./media/characters/epiglottis/front.svg",
  44671. extra: 923/849,
  44672. bottom: 17/940
  44673. }
  44674. },
  44675. },
  44676. [
  44677. {
  44678. name: "Original Size",
  44679. height: math.unit(10, "inches")
  44680. },
  44681. {
  44682. name: "Human Size",
  44683. height: math.unit(5, "feet"),
  44684. default: true
  44685. },
  44686. {
  44687. name: "Big",
  44688. height: math.unit(25, "feet")
  44689. },
  44690. {
  44691. name: "Bigger",
  44692. height: math.unit(50, "feet")
  44693. },
  44694. {
  44695. name: "oh lawd",
  44696. height: math.unit(75, "feet")
  44697. },
  44698. ]
  44699. ))
  44700. characterMakers.push(() => makeCharacter(
  44701. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44702. {
  44703. front: {
  44704. height: math.unit(2 + 4/12, "feet"),
  44705. weight: math.unit(60, "lb"),
  44706. name: "Front",
  44707. image: {
  44708. source: "./media/characters/lerm/front.svg",
  44709. extra: 796/790,
  44710. bottom: 79/875
  44711. }
  44712. },
  44713. },
  44714. [
  44715. {
  44716. name: "Normal",
  44717. height: math.unit(2 + 4/12, "feet"),
  44718. default: true
  44719. },
  44720. ]
  44721. ))
  44722. characterMakers.push(() => makeCharacter(
  44723. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44724. {
  44725. front: {
  44726. height: math.unit(5.5, "feet"),
  44727. weight: math.unit(130, "lb"),
  44728. name: "Front",
  44729. image: {
  44730. source: "./media/characters/xena-nebadon/front.svg",
  44731. extra: 1828/1730,
  44732. bottom: 79/1907
  44733. }
  44734. },
  44735. },
  44736. [
  44737. {
  44738. name: "Tiny Puppy",
  44739. height: math.unit(3, "inches")
  44740. },
  44741. {
  44742. name: "Normal",
  44743. height: math.unit(5.5, "feet"),
  44744. default: true
  44745. },
  44746. {
  44747. name: "Lotta Lady",
  44748. height: math.unit(12, "feet")
  44749. },
  44750. {
  44751. name: "Pretty Big",
  44752. height: math.unit(100, "feet")
  44753. },
  44754. {
  44755. name: "Big",
  44756. height: math.unit(500, "feet")
  44757. },
  44758. {
  44759. name: "Skyscraper Toys",
  44760. height: math.unit(2500, "feet")
  44761. },
  44762. {
  44763. name: "Plane Catcher",
  44764. height: math.unit(8, "miles")
  44765. },
  44766. {
  44767. name: "Planet Toys",
  44768. height: math.unit(15, "earths")
  44769. },
  44770. {
  44771. name: "Stardust",
  44772. height: math.unit(0.25, "galaxies")
  44773. },
  44774. {
  44775. name: "Snacks",
  44776. height: math.unit(70, "universes")
  44777. },
  44778. ]
  44779. ))
  44780. characterMakers.push(() => makeCharacter(
  44781. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44782. {
  44783. front: {
  44784. height: math.unit(1.6, "meters"),
  44785. weight: math.unit(60, "kg"),
  44786. name: "Front",
  44787. image: {
  44788. source: "./media/characters/bounty/front.svg",
  44789. extra: 1426/1308,
  44790. bottom: 15/1441
  44791. }
  44792. },
  44793. back: {
  44794. height: math.unit(1.6, "meters"),
  44795. weight: math.unit(60, "kg"),
  44796. name: "Back",
  44797. image: {
  44798. source: "./media/characters/bounty/back.svg",
  44799. extra: 1417/1307,
  44800. bottom: 8/1425
  44801. }
  44802. },
  44803. },
  44804. [
  44805. {
  44806. name: "Normal",
  44807. height: math.unit(1.6, "meters"),
  44808. default: true
  44809. },
  44810. {
  44811. name: "Macro",
  44812. height: math.unit(300, "meters")
  44813. },
  44814. ]
  44815. ))
  44816. characterMakers.push(() => makeCharacter(
  44817. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44818. {
  44819. front: {
  44820. height: math.unit(2 + 8/12, "feet"),
  44821. weight: math.unit(15, "lb"),
  44822. name: "Front",
  44823. image: {
  44824. source: "./media/characters/mochi/front.svg",
  44825. extra: 1022/852,
  44826. bottom: 435/1457
  44827. }
  44828. },
  44829. back: {
  44830. height: math.unit(2 + 8/12, "feet"),
  44831. weight: math.unit(15, "lb"),
  44832. name: "Back",
  44833. image: {
  44834. source: "./media/characters/mochi/back.svg",
  44835. extra: 1335/1119,
  44836. bottom: 39/1374
  44837. }
  44838. },
  44839. bird: {
  44840. height: math.unit(2 + 8/12, "feet"),
  44841. weight: math.unit(15, "lb"),
  44842. name: "Bird",
  44843. image: {
  44844. source: "./media/characters/mochi/bird.svg",
  44845. extra: 1251/1113,
  44846. bottom: 178/1429
  44847. }
  44848. },
  44849. kaiju: {
  44850. height: math.unit(154, "feet"),
  44851. weight: math.unit(1e7, "lb"),
  44852. name: "Kaiju",
  44853. image: {
  44854. source: "./media/characters/mochi/kaiju.svg",
  44855. extra: 460/324,
  44856. bottom: 40/500
  44857. }
  44858. },
  44859. head: {
  44860. height: math.unit(1.21, "feet"),
  44861. name: "Head",
  44862. image: {
  44863. source: "./media/characters/mochi/head.svg"
  44864. }
  44865. },
  44866. alternateTail: {
  44867. height: math.unit(2 + 8/12, "feet"),
  44868. weight: math.unit(45, "lb"),
  44869. name: "Alternate Tail",
  44870. image: {
  44871. source: "./media/characters/mochi/alternate-tail.svg",
  44872. extra: 139/76,
  44873. bottom: 45/184
  44874. }
  44875. },
  44876. },
  44877. [
  44878. {
  44879. name: "Micro",
  44880. height: math.unit(2, "inches")
  44881. },
  44882. {
  44883. name: "Normal",
  44884. height: math.unit(2 + 8/12, "feet"),
  44885. default: true
  44886. },
  44887. {
  44888. name: "Macro",
  44889. height: math.unit(106, "feet")
  44890. },
  44891. ]
  44892. ))
  44893. characterMakers.push(() => makeCharacter(
  44894. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44895. {
  44896. front: {
  44897. height: math.unit(5.67, "feet"),
  44898. weight: math.unit(135, "lb"),
  44899. name: "Front",
  44900. image: {
  44901. source: "./media/characters/sarel/front.svg",
  44902. extra: 865/788,
  44903. bottom: 97/962
  44904. }
  44905. },
  44906. back: {
  44907. height: math.unit(5.67, "feet"),
  44908. weight: math.unit(135, "lb"),
  44909. name: "Back",
  44910. image: {
  44911. source: "./media/characters/sarel/back.svg",
  44912. extra: 857/777,
  44913. bottom: 32/889
  44914. }
  44915. },
  44916. chozoan: {
  44917. height: math.unit(5.67, "feet"),
  44918. weight: math.unit(135, "lb"),
  44919. name: "Chozoan",
  44920. image: {
  44921. source: "./media/characters/sarel/chozoan.svg",
  44922. extra: 865/788,
  44923. bottom: 97/962
  44924. }
  44925. },
  44926. current: {
  44927. height: math.unit(5.67, "feet"),
  44928. weight: math.unit(135, "lb"),
  44929. name: "Current",
  44930. image: {
  44931. source: "./media/characters/sarel/current.svg",
  44932. extra: 865/788,
  44933. bottom: 97/962
  44934. }
  44935. },
  44936. head: {
  44937. height: math.unit(1.77, "feet"),
  44938. name: "Head",
  44939. image: {
  44940. source: "./media/characters/sarel/head.svg"
  44941. }
  44942. },
  44943. claws: {
  44944. height: math.unit(1.8, "feet"),
  44945. name: "Claws",
  44946. image: {
  44947. source: "./media/characters/sarel/claws.svg"
  44948. }
  44949. },
  44950. clawsAlt: {
  44951. height: math.unit(1.8, "feet"),
  44952. name: "Claws-alt",
  44953. image: {
  44954. source: "./media/characters/sarel/claws-alt.svg"
  44955. }
  44956. },
  44957. },
  44958. [
  44959. {
  44960. name: "Normal",
  44961. height: math.unit(5.67, "feet"),
  44962. default: true
  44963. },
  44964. ]
  44965. ))
  44966. characterMakers.push(() => makeCharacter(
  44967. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44968. {
  44969. front: {
  44970. height: math.unit(5500, "feet"),
  44971. name: "Front",
  44972. image: {
  44973. source: "./media/characters/alyonia/front.svg",
  44974. extra: 1200/1135,
  44975. bottom: 29/1229
  44976. }
  44977. },
  44978. back: {
  44979. height: math.unit(5500, "feet"),
  44980. name: "Back",
  44981. image: {
  44982. source: "./media/characters/alyonia/back.svg",
  44983. extra: 1205/1138,
  44984. bottom: 10/1215
  44985. }
  44986. },
  44987. },
  44988. [
  44989. {
  44990. name: "Small",
  44991. height: math.unit(10, "feet")
  44992. },
  44993. {
  44994. name: "Macro",
  44995. height: math.unit(500, "feet")
  44996. },
  44997. {
  44998. name: "Mega Macro",
  44999. height: math.unit(5500, "feet"),
  45000. default: true
  45001. },
  45002. {
  45003. name: "Mega Macro+",
  45004. height: math.unit(500000, "feet")
  45005. },
  45006. {
  45007. name: "Giga Macro",
  45008. height: math.unit(3000, "miles")
  45009. },
  45010. {
  45011. name: "Tera Macro",
  45012. height: math.unit(2.8e6, "miles")
  45013. },
  45014. {
  45015. name: "Galactic",
  45016. height: math.unit(120000, "lightyears")
  45017. },
  45018. ]
  45019. ))
  45020. characterMakers.push(() => makeCharacter(
  45021. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45022. {
  45023. werewolf: {
  45024. height: math.unit(8, "feet"),
  45025. weight: math.unit(425, "lb"),
  45026. name: "Werewolf",
  45027. image: {
  45028. source: "./media/characters/autumn/werewolf.svg",
  45029. extra: 2154/2031,
  45030. bottom: 160/2314
  45031. }
  45032. },
  45033. human: {
  45034. height: math.unit(5 + 8/12, "feet"),
  45035. weight: math.unit(150, "lb"),
  45036. name: "Human",
  45037. image: {
  45038. source: "./media/characters/autumn/human.svg",
  45039. extra: 1200/1149,
  45040. bottom: 30/1230
  45041. }
  45042. },
  45043. },
  45044. [
  45045. {
  45046. name: "Normal",
  45047. height: math.unit(8, "feet"),
  45048. default: true
  45049. },
  45050. ]
  45051. ))
  45052. characterMakers.push(() => makeCharacter(
  45053. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45054. {
  45055. front: {
  45056. height: math.unit(8 + 5/12, "feet"),
  45057. weight: math.unit(825, "lb"),
  45058. name: "Front",
  45059. image: {
  45060. source: "./media/characters/cobalt-charizard/front.svg",
  45061. extra: 1268/1155,
  45062. bottom: 122/1390
  45063. }
  45064. },
  45065. side: {
  45066. height: math.unit(8 + 5/12, "feet"),
  45067. weight: math.unit(825, "lb"),
  45068. name: "Side",
  45069. image: {
  45070. source: "./media/characters/cobalt-charizard/side.svg",
  45071. extra: 1348/1257,
  45072. bottom: 58/1406
  45073. }
  45074. },
  45075. gMax: {
  45076. height: math.unit(134 + 11/12, "feet"),
  45077. name: "G-Max",
  45078. image: {
  45079. source: "./media/characters/cobalt-charizard/g-max.svg",
  45080. extra: 1835/1541,
  45081. bottom: 151/1986
  45082. }
  45083. },
  45084. },
  45085. [
  45086. {
  45087. name: "Normal",
  45088. height: math.unit(8 + 5/12, "feet"),
  45089. default: true
  45090. },
  45091. ]
  45092. ))
  45093. characterMakers.push(() => makeCharacter(
  45094. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45095. {
  45096. front: {
  45097. height: math.unit(6 + 3/12, "feet"),
  45098. weight: math.unit(210, "lb"),
  45099. name: "Front",
  45100. image: {
  45101. source: "./media/characters/stella/front.svg",
  45102. extra: 3549/3335,
  45103. bottom: 51/3600
  45104. }
  45105. },
  45106. },
  45107. [
  45108. {
  45109. name: "Normal",
  45110. height: math.unit(6 + 3/12, "feet"),
  45111. default: true
  45112. },
  45113. ]
  45114. ))
  45115. characterMakers.push(() => makeCharacter(
  45116. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45117. {
  45118. front: {
  45119. height: math.unit(5, "feet"),
  45120. weight: math.unit(90, "lb"),
  45121. name: "Front",
  45122. image: {
  45123. source: "./media/characters/riley-bishop/front.svg",
  45124. extra: 1450/1428,
  45125. bottom: 152/1602
  45126. }
  45127. },
  45128. },
  45129. [
  45130. {
  45131. name: "Normal",
  45132. height: math.unit(5, "feet"),
  45133. default: true
  45134. },
  45135. ]
  45136. ))
  45137. characterMakers.push(() => makeCharacter(
  45138. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45139. {
  45140. side: {
  45141. height: math.unit(8 + 2/12, "feet"),
  45142. weight: math.unit(500, "kg"),
  45143. name: "Side",
  45144. image: {
  45145. source: "./media/characters/theo-arcanine/side.svg",
  45146. extra: 1342/1074,
  45147. bottom: 111/1453
  45148. }
  45149. },
  45150. },
  45151. [
  45152. {
  45153. name: "Normal",
  45154. height: math.unit(8 + 2/12, "feet"),
  45155. default: true
  45156. },
  45157. ]
  45158. ))
  45159. characterMakers.push(() => makeCharacter(
  45160. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45161. {
  45162. front: {
  45163. height: math.unit(4, "feet"),
  45164. name: "Front",
  45165. image: {
  45166. source: "./media/characters/kali/front.svg",
  45167. extra: 1921/1357,
  45168. bottom: 70/1991
  45169. }
  45170. },
  45171. },
  45172. [
  45173. {
  45174. name: "Normal",
  45175. height: math.unit(4, "feet"),
  45176. default: true
  45177. },
  45178. {
  45179. name: "Macro",
  45180. height: math.unit(32, "meters")
  45181. },
  45182. {
  45183. name: "Macro+",
  45184. height: math.unit(150, "meters")
  45185. },
  45186. {
  45187. name: "Megamacro",
  45188. height: math.unit(7500, "meters")
  45189. },
  45190. {
  45191. name: "Megamacro+",
  45192. height: math.unit(80, "kilometers")
  45193. },
  45194. ]
  45195. ))
  45196. characterMakers.push(() => makeCharacter(
  45197. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45198. {
  45199. side: {
  45200. height: math.unit(5 + 11/12, "feet"),
  45201. weight: math.unit(236, "lb"),
  45202. name: "Side",
  45203. image: {
  45204. source: "./media/characters/gapp/side.svg",
  45205. extra: 775/340,
  45206. bottom: 58/833
  45207. }
  45208. },
  45209. mouth: {
  45210. height: math.unit(2.98, "feet"),
  45211. name: "Mouth",
  45212. image: {
  45213. source: "./media/characters/gapp/mouth.svg"
  45214. }
  45215. },
  45216. },
  45217. [
  45218. {
  45219. name: "Normal",
  45220. height: math.unit(5 + 1/12, "feet"),
  45221. default: true
  45222. },
  45223. ]
  45224. ))
  45225. characterMakers.push(() => makeCharacter(
  45226. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45227. {
  45228. front: {
  45229. height: math.unit(6, "feet"),
  45230. name: "Front",
  45231. image: {
  45232. source: "./media/characters/persephone/front.svg",
  45233. extra: 1895/1717,
  45234. bottom: 96/1991
  45235. }
  45236. },
  45237. back: {
  45238. height: math.unit(6, "feet"),
  45239. name: "Back",
  45240. image: {
  45241. source: "./media/characters/persephone/back.svg",
  45242. extra: 1868/1679,
  45243. bottom: 26/1894
  45244. }
  45245. },
  45246. casual: {
  45247. height: math.unit(6, "feet"),
  45248. name: "Casual",
  45249. image: {
  45250. source: "./media/characters/persephone/casual.svg",
  45251. extra: 1713/1541,
  45252. bottom: 76/1789
  45253. }
  45254. },
  45255. },
  45256. [
  45257. {
  45258. name: "Human Size",
  45259. height: math.unit(6, "feet")
  45260. },
  45261. {
  45262. name: "Big Steppy",
  45263. height: math.unit(600, "meters"),
  45264. default: true
  45265. },
  45266. {
  45267. name: "Galaxy Brain",
  45268. height: math.unit(1, "zettameter")
  45269. },
  45270. ]
  45271. ))
  45272. characterMakers.push(() => makeCharacter(
  45273. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45274. {
  45275. front: {
  45276. height: math.unit(1.85, "meters"),
  45277. name: "Front",
  45278. image: {
  45279. source: "./media/characters/riley-foxthing/front.svg",
  45280. extra: 1495/1354,
  45281. bottom: 122/1617
  45282. }
  45283. },
  45284. frontAlt: {
  45285. height: math.unit(1.85, "meters"),
  45286. name: "Front (Alt)",
  45287. image: {
  45288. source: "./media/characters/riley-foxthing/front-alt.svg",
  45289. extra: 1572/1389,
  45290. bottom: 116/1688
  45291. }
  45292. },
  45293. },
  45294. [
  45295. {
  45296. name: "Normal Sized",
  45297. height: math.unit(1.85, "meters"),
  45298. default: true
  45299. },
  45300. {
  45301. name: "Quite Sizable",
  45302. height: math.unit(5, "meters")
  45303. },
  45304. {
  45305. name: "Rather Large",
  45306. height: math.unit(20, "meters")
  45307. },
  45308. {
  45309. name: "Macro",
  45310. height: math.unit(450, "meters")
  45311. },
  45312. {
  45313. name: "Giga",
  45314. height: math.unit(5, "km")
  45315. },
  45316. ]
  45317. ))
  45318. characterMakers.push(() => makeCharacter(
  45319. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45320. {
  45321. front: {
  45322. height: math.unit(6, "feet"),
  45323. weight: math.unit(200, "lb"),
  45324. name: "Front",
  45325. image: {
  45326. source: "./media/characters/blizzard/front.svg",
  45327. extra: 1136/990,
  45328. bottom: 136/1272
  45329. }
  45330. },
  45331. back: {
  45332. height: math.unit(6, "feet"),
  45333. weight: math.unit(200, "lb"),
  45334. name: "Back",
  45335. image: {
  45336. source: "./media/characters/blizzard/back.svg",
  45337. extra: 1175/1034,
  45338. bottom: 97/1272
  45339. }
  45340. },
  45341. sitting: {
  45342. height: math.unit(3.725, "feet"),
  45343. weight: math.unit(200, "lb"),
  45344. name: "Sitting",
  45345. image: {
  45346. source: "./media/characters/blizzard/sitting.svg",
  45347. extra: 581/485,
  45348. bottom: 90/671
  45349. }
  45350. },
  45351. frontWizard: {
  45352. height: math.unit(7.9, "feet"),
  45353. weight: math.unit(200, "lb"),
  45354. name: "Front (Wizard)",
  45355. image: {
  45356. source: "./media/characters/blizzard/front-wizard.svg"
  45357. }
  45358. },
  45359. backWizard: {
  45360. height: math.unit(7.9, "feet"),
  45361. weight: math.unit(200, "lb"),
  45362. name: "Back (Wizard)",
  45363. image: {
  45364. source: "./media/characters/blizzard/back-wizard.svg"
  45365. }
  45366. },
  45367. frontNsfw: {
  45368. height: math.unit(6, "feet"),
  45369. weight: math.unit(200, "lb"),
  45370. name: "Front (NSFW)",
  45371. image: {
  45372. source: "./media/characters/blizzard/front-nsfw.svg",
  45373. extra: 1136/990,
  45374. bottom: 136/1272
  45375. }
  45376. },
  45377. backNsfw: {
  45378. height: math.unit(6, "feet"),
  45379. weight: math.unit(200, "lb"),
  45380. name: "Back (NSFW)",
  45381. image: {
  45382. source: "./media/characters/blizzard/back-nsfw.svg",
  45383. extra: 1175/1034,
  45384. bottom: 97/1272
  45385. }
  45386. },
  45387. sittingNsfw: {
  45388. height: math.unit(3.725, "feet"),
  45389. weight: math.unit(200, "lb"),
  45390. name: "Sitting (NSFW)",
  45391. image: {
  45392. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45393. extra: 581/485,
  45394. bottom: 90/671
  45395. }
  45396. },
  45397. wizardFrontNsfw: {
  45398. height: math.unit(7.9, "feet"),
  45399. weight: math.unit(200, "lb"),
  45400. name: "Wizard (Front, NSFW)",
  45401. image: {
  45402. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45403. }
  45404. },
  45405. },
  45406. [
  45407. {
  45408. name: "Normal",
  45409. height: math.unit(6, "feet"),
  45410. default: true
  45411. },
  45412. ]
  45413. ))
  45414. characterMakers.push(() => makeCharacter(
  45415. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45416. {
  45417. front: {
  45418. height: math.unit(5 + 2/12, "feet"),
  45419. name: "Front",
  45420. image: {
  45421. source: "./media/characters/lumi/front.svg",
  45422. extra: 1328/1268,
  45423. bottom: 103/1431
  45424. }
  45425. },
  45426. back: {
  45427. height: math.unit(5 + 2/12, "feet"),
  45428. name: "Back",
  45429. image: {
  45430. source: "./media/characters/lumi/back.svg",
  45431. extra: 1381/1327,
  45432. bottom: 43/1424
  45433. }
  45434. },
  45435. },
  45436. [
  45437. {
  45438. name: "Normal",
  45439. height: math.unit(5 + 2/12, "feet"),
  45440. default: true
  45441. },
  45442. ]
  45443. ))
  45444. characterMakers.push(() => makeCharacter(
  45445. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45446. {
  45447. front: {
  45448. height: math.unit(5 + 9/12, "feet"),
  45449. name: "Front",
  45450. image: {
  45451. source: "./media/characters/aliya-cotton/front.svg",
  45452. extra: 577/564,
  45453. bottom: 29/606
  45454. }
  45455. },
  45456. },
  45457. [
  45458. {
  45459. name: "Normal",
  45460. height: math.unit(5 + 9/12, "feet"),
  45461. default: true
  45462. },
  45463. ]
  45464. ))
  45465. characterMakers.push(() => makeCharacter(
  45466. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45467. {
  45468. front: {
  45469. height: math.unit(2.7, "meters"),
  45470. weight: math.unit(25000, "lb"),
  45471. name: "Front",
  45472. image: {
  45473. source: "./media/characters/noah-luxray/front.svg",
  45474. extra: 1644/825,
  45475. bottom: 339/1983
  45476. }
  45477. },
  45478. side: {
  45479. height: math.unit(2.97, "meters"),
  45480. weight: math.unit(25000, "lb"),
  45481. name: "Side",
  45482. image: {
  45483. source: "./media/characters/noah-luxray/side.svg",
  45484. extra: 1319/650,
  45485. bottom: 163/1482
  45486. }
  45487. },
  45488. dick: {
  45489. height: math.unit(7.4, "feet"),
  45490. weight: math.unit(2500, "lb"),
  45491. name: "Dick",
  45492. image: {
  45493. source: "./media/characters/noah-luxray/dick.svg"
  45494. }
  45495. },
  45496. dickAlt: {
  45497. height: math.unit(10.83, "feet"),
  45498. weight: math.unit(2500, "lb"),
  45499. name: "Dick-alt",
  45500. image: {
  45501. source: "./media/characters/noah-luxray/dick-alt.svg"
  45502. }
  45503. },
  45504. },
  45505. [
  45506. {
  45507. name: "BIG",
  45508. height: math.unit(2.7, "meters"),
  45509. default: true
  45510. },
  45511. ]
  45512. ))
  45513. characterMakers.push(() => makeCharacter(
  45514. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45515. {
  45516. standing: {
  45517. height: math.unit(183, "cm"),
  45518. weight: math.unit(68, "kg"),
  45519. name: "Standing",
  45520. image: {
  45521. source: "./media/characters/arion/standing.svg",
  45522. extra: 1869/1807,
  45523. bottom: 93/1962
  45524. }
  45525. },
  45526. reclining: {
  45527. height: math.unit(70.5, "cm"),
  45528. weight: math.unit(68, "lb"),
  45529. name: "Reclining",
  45530. image: {
  45531. source: "./media/characters/arion/reclining.svg",
  45532. extra: 937/870,
  45533. bottom: 63/1000
  45534. }
  45535. },
  45536. },
  45537. [
  45538. {
  45539. name: "Colossus Size, Low",
  45540. height: math.unit(33, "meters"),
  45541. default: true
  45542. },
  45543. {
  45544. name: "Colossus Size, Mid",
  45545. height: math.unit(52, "meters")
  45546. },
  45547. {
  45548. name: "Colossus Size, High",
  45549. height: math.unit(60, "meters")
  45550. },
  45551. {
  45552. name: "Titan Size, Low",
  45553. height: math.unit(91, "meters"),
  45554. },
  45555. {
  45556. name: "Titan Size, Mid",
  45557. height: math.unit(122, "meters")
  45558. },
  45559. {
  45560. name: "Titan Size, High",
  45561. height: math.unit(162, "meters")
  45562. },
  45563. ]
  45564. ))
  45565. characterMakers.push(() => makeCharacter(
  45566. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45567. {
  45568. front: {
  45569. height: math.unit(53, "meters"),
  45570. name: "Front",
  45571. image: {
  45572. source: "./media/characters/stellar-marbey/front.svg",
  45573. extra: 1913/1805,
  45574. bottom: 92/2005
  45575. }
  45576. },
  45577. back: {
  45578. height: math.unit(53, "meters"),
  45579. name: "Back",
  45580. image: {
  45581. source: "./media/characters/stellar-marbey/back.svg",
  45582. extra: 1960/1851,
  45583. bottom: 28/1988
  45584. }
  45585. },
  45586. mouth: {
  45587. height: math.unit(3.5, "meters"),
  45588. name: "Mouth",
  45589. image: {
  45590. source: "./media/characters/stellar-marbey/mouth.svg"
  45591. }
  45592. },
  45593. },
  45594. [
  45595. {
  45596. name: "Macro",
  45597. height: math.unit(53, "meters"),
  45598. default: true
  45599. },
  45600. ]
  45601. ))
  45602. characterMakers.push(() => makeCharacter(
  45603. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45604. {
  45605. front: {
  45606. height: math.unit(8 + 1/12, "feet"),
  45607. weight: math.unit(233, "lb"),
  45608. name: "Front",
  45609. image: {
  45610. source: "./media/characters/matsu/front.svg",
  45611. extra: 832/772,
  45612. bottom: 40/872
  45613. }
  45614. },
  45615. back: {
  45616. height: math.unit(8 + 1/12, "feet"),
  45617. weight: math.unit(233, "lb"),
  45618. name: "Back",
  45619. image: {
  45620. source: "./media/characters/matsu/back.svg",
  45621. extra: 839/780,
  45622. bottom: 47/886
  45623. }
  45624. },
  45625. },
  45626. [
  45627. {
  45628. name: "Normal",
  45629. height: math.unit(8 + 1/12, "feet"),
  45630. default: true
  45631. },
  45632. ]
  45633. ))
  45634. characterMakers.push(() => makeCharacter(
  45635. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45636. {
  45637. front: {
  45638. height: math.unit(4, "feet"),
  45639. weight: math.unit(148, "lb"),
  45640. name: "Front",
  45641. image: {
  45642. source: "./media/characters/thiz/front.svg",
  45643. extra: 1913/1748,
  45644. bottom: 62/1975
  45645. }
  45646. },
  45647. },
  45648. [
  45649. {
  45650. name: "Normal",
  45651. height: math.unit(4, "feet"),
  45652. default: true
  45653. },
  45654. ]
  45655. ))
  45656. characterMakers.push(() => makeCharacter(
  45657. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45658. {
  45659. front: {
  45660. height: math.unit(7 + 6/12, "feet"),
  45661. weight: math.unit(267, "lb"),
  45662. name: "Front",
  45663. image: {
  45664. source: "./media/characters/marcel/front.svg",
  45665. extra: 1221/1096,
  45666. bottom: 76/1297
  45667. }
  45668. },
  45669. },
  45670. [
  45671. {
  45672. name: "Normal",
  45673. height: math.unit(7 + 6/12, "feet"),
  45674. default: true
  45675. },
  45676. ]
  45677. ))
  45678. characterMakers.push(() => makeCharacter(
  45679. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45680. {
  45681. side: {
  45682. height: math.unit(42, "meters"),
  45683. name: "Side",
  45684. image: {
  45685. source: "./media/characters/flake/side.svg",
  45686. extra: 1525/1306,
  45687. bottom: 209/1734
  45688. }
  45689. },
  45690. },
  45691. [
  45692. {
  45693. name: "Normal",
  45694. height: math.unit(42, "meters"),
  45695. default: true
  45696. },
  45697. ]
  45698. ))
  45699. characterMakers.push(() => makeCharacter(
  45700. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45701. {
  45702. dressed: {
  45703. height: math.unit(6 + 4/12, "feet"),
  45704. weight: math.unit(520, "lb"),
  45705. name: "Dressed",
  45706. image: {
  45707. source: "./media/characters/someonne/dressed.svg",
  45708. extra: 1020/1010,
  45709. bottom: 178/1198
  45710. }
  45711. },
  45712. undressed: {
  45713. height: math.unit(6 + 4/12, "feet"),
  45714. weight: math.unit(520, "lb"),
  45715. name: "Undressed",
  45716. image: {
  45717. source: "./media/characters/someonne/undressed.svg",
  45718. extra: 1019/1014,
  45719. bottom: 169/1188
  45720. }
  45721. },
  45722. },
  45723. [
  45724. {
  45725. name: "Normal",
  45726. height: math.unit(6 + 4/12, "feet"),
  45727. default: true
  45728. },
  45729. ]
  45730. ))
  45731. characterMakers.push(() => makeCharacter(
  45732. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45733. {
  45734. front: {
  45735. height: math.unit(3, "feet"),
  45736. weight: math.unit(30, "lb"),
  45737. name: "Front",
  45738. image: {
  45739. source: "./media/characters/till/front.svg",
  45740. extra: 892/823,
  45741. bottom: 55/947
  45742. }
  45743. },
  45744. },
  45745. [
  45746. {
  45747. name: "Normal",
  45748. height: math.unit(3, "feet"),
  45749. default: true
  45750. },
  45751. ]
  45752. ))
  45753. characterMakers.push(() => makeCharacter(
  45754. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45755. {
  45756. front: {
  45757. height: math.unit(9 + 8/12, "feet"),
  45758. weight: math.unit(800, "lb"),
  45759. name: "Front",
  45760. image: {
  45761. source: "./media/characters/sydney-heki/front.svg",
  45762. extra: 1360/1300,
  45763. bottom: 22/1382
  45764. }
  45765. },
  45766. back: {
  45767. height: math.unit(9 + 8/12, "feet"),
  45768. weight: math.unit(800, "lb"),
  45769. name: "Back",
  45770. image: {
  45771. source: "./media/characters/sydney-heki/back.svg",
  45772. extra: 1356/1293,
  45773. bottom: 12/1368
  45774. }
  45775. },
  45776. frontDressed: {
  45777. height: math.unit(9 + 8/12, "feet"),
  45778. weight: math.unit(800, "lb"),
  45779. name: "Front-dressed",
  45780. image: {
  45781. source: "./media/characters/sydney-heki/front-dressed.svg",
  45782. extra: 1360/1300,
  45783. bottom: 22/1382
  45784. }
  45785. },
  45786. },
  45787. [
  45788. {
  45789. name: "Normal",
  45790. height: math.unit(9 + 8/12, "feet"),
  45791. default: true
  45792. },
  45793. {
  45794. name: "Macro",
  45795. height: math.unit(500, "feet")
  45796. },
  45797. {
  45798. name: "Megamacro",
  45799. height: math.unit(3.6, "miles")
  45800. },
  45801. ]
  45802. ))
  45803. characterMakers.push(() => makeCharacter(
  45804. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45805. {
  45806. front: {
  45807. height: math.unit(200, "cm"),
  45808. weight: math.unit(250, "lb"),
  45809. name: "Front",
  45810. image: {
  45811. source: "./media/characters/fowler-karlsson/front.svg",
  45812. extra: 897/845,
  45813. bottom: 123/1020
  45814. }
  45815. },
  45816. back: {
  45817. height: math.unit(200, "cm"),
  45818. weight: math.unit(250, "lb"),
  45819. name: "Back",
  45820. image: {
  45821. source: "./media/characters/fowler-karlsson/back.svg",
  45822. extra: 999/944,
  45823. bottom: 26/1025
  45824. }
  45825. },
  45826. dick: {
  45827. height: math.unit(1.92, "feet"),
  45828. weight: math.unit(150, "lb"),
  45829. name: "Dick",
  45830. image: {
  45831. source: "./media/characters/fowler-karlsson/dick.svg"
  45832. }
  45833. },
  45834. },
  45835. [
  45836. {
  45837. name: "Normal",
  45838. height: math.unit(200, "cm"),
  45839. default: true
  45840. },
  45841. {
  45842. name: "Smaller Macro",
  45843. height: math.unit(90, "m")
  45844. },
  45845. {
  45846. name: "Macro",
  45847. height: math.unit(150, "m")
  45848. },
  45849. {
  45850. name: "Bigger Macro",
  45851. height: math.unit(300, "m")
  45852. },
  45853. ]
  45854. ))
  45855. characterMakers.push(() => makeCharacter(
  45856. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45857. {
  45858. side: {
  45859. height: math.unit(8 + 2/12, "feet"),
  45860. weight: math.unit(1, "tonne"),
  45861. name: "Side",
  45862. image: {
  45863. source: "./media/characters/rylide/side.svg",
  45864. extra: 1318/1034,
  45865. bottom: 106/1424
  45866. }
  45867. },
  45868. sitting: {
  45869. height: math.unit(303, "cm"),
  45870. weight: math.unit(1, "tonne"),
  45871. name: "Sitting",
  45872. image: {
  45873. source: "./media/characters/rylide/sitting.svg",
  45874. extra: 1303/1103,
  45875. bottom: 36/1339
  45876. }
  45877. },
  45878. },
  45879. [
  45880. {
  45881. name: "Normal",
  45882. height: math.unit(8 + 2/12, "feet"),
  45883. default: true
  45884. },
  45885. ]
  45886. ))
  45887. characterMakers.push(() => makeCharacter(
  45888. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45889. {
  45890. front: {
  45891. height: math.unit(5 + 10/12, "feet"),
  45892. weight: math.unit(160, "lb"),
  45893. name: "Front",
  45894. image: {
  45895. source: "./media/characters/pudask/front.svg",
  45896. extra: 1616/1590,
  45897. bottom: 161/1777
  45898. }
  45899. },
  45900. },
  45901. [
  45902. {
  45903. name: "Ferret Height",
  45904. height: math.unit(2 + 5/12, "feet")
  45905. },
  45906. {
  45907. name: "Canon Height",
  45908. height: math.unit(5 + 10/12, "feet"),
  45909. default: true
  45910. },
  45911. ]
  45912. ))
  45913. characterMakers.push(() => makeCharacter(
  45914. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45915. {
  45916. front: {
  45917. height: math.unit(3 + 6/12, "feet"),
  45918. weight: math.unit(60, "lb"),
  45919. name: "Front",
  45920. image: {
  45921. source: "./media/characters/ramita/front.svg",
  45922. extra: 1402/1232,
  45923. bottom: 62/1464
  45924. }
  45925. },
  45926. dressed: {
  45927. height: math.unit(3 + 6/12, "feet"),
  45928. weight: math.unit(60, "lb"),
  45929. name: "Dressed",
  45930. image: {
  45931. source: "./media/characters/ramita/dressed.svg",
  45932. extra: 1534/1249,
  45933. bottom: 50/1584
  45934. }
  45935. },
  45936. },
  45937. [
  45938. {
  45939. name: "Normal",
  45940. height: math.unit(3 + 6/12, "feet"),
  45941. default: true
  45942. },
  45943. ]
  45944. ))
  45945. characterMakers.push(() => makeCharacter(
  45946. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45947. {
  45948. front: {
  45949. height: math.unit(8, "feet"),
  45950. name: "Front",
  45951. image: {
  45952. source: "./media/characters/ark/front.svg",
  45953. extra: 772/693,
  45954. bottom: 45/817
  45955. }
  45956. },
  45957. },
  45958. [
  45959. {
  45960. name: "Normal",
  45961. height: math.unit(8, "feet"),
  45962. default: true
  45963. },
  45964. ]
  45965. ))
  45966. characterMakers.push(() => makeCharacter(
  45967. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45968. {
  45969. front: {
  45970. height: math.unit(6, "feet"),
  45971. weight: math.unit(250, "lb"),
  45972. volume: math.unit(5/8, "gallons"),
  45973. name: "Front",
  45974. image: {
  45975. source: "./media/characters/ludwig-horn/front.svg",
  45976. extra: 1782/1635,
  45977. bottom: 96/1878
  45978. }
  45979. },
  45980. back: {
  45981. height: math.unit(6, "feet"),
  45982. weight: math.unit(250, "lb"),
  45983. volume: math.unit(5/8, "gallons"),
  45984. name: "Back",
  45985. image: {
  45986. source: "./media/characters/ludwig-horn/back.svg",
  45987. extra: 1874/1729,
  45988. bottom: 27/1901
  45989. }
  45990. },
  45991. dick: {
  45992. height: math.unit(1.05, "feet"),
  45993. weight: math.unit(15, "lb"),
  45994. volume: math.unit(5/8, "gallons"),
  45995. name: "Dick",
  45996. image: {
  45997. source: "./media/characters/ludwig-horn/dick.svg"
  45998. }
  45999. },
  46000. },
  46001. [
  46002. {
  46003. name: "Small",
  46004. height: math.unit(6, "feet")
  46005. },
  46006. {
  46007. name: "Typical",
  46008. height: math.unit(12, "feet"),
  46009. default: true
  46010. },
  46011. {
  46012. name: "Building",
  46013. height: math.unit(80, "feet")
  46014. },
  46015. {
  46016. name: "Town",
  46017. height: math.unit(800, "feet")
  46018. },
  46019. {
  46020. name: "Kingdom",
  46021. height: math.unit(80000, "feet")
  46022. },
  46023. {
  46024. name: "Planet",
  46025. height: math.unit(8000000, "feet")
  46026. },
  46027. {
  46028. name: "Universe",
  46029. height: math.unit(8000000000, "feet")
  46030. },
  46031. {
  46032. name: "Transcended",
  46033. height: math.unit(8e27, "feet")
  46034. },
  46035. ]
  46036. ))
  46037. characterMakers.push(() => makeCharacter(
  46038. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46039. {
  46040. front: {
  46041. height: math.unit(5, "feet"),
  46042. weight: math.unit(50, "kg"),
  46043. name: "Front",
  46044. image: {
  46045. source: "./media/characters/biot-avery/front.svg",
  46046. extra: 1295/1232,
  46047. bottom: 86/1381
  46048. }
  46049. },
  46050. },
  46051. [
  46052. {
  46053. name: "Normal",
  46054. height: math.unit(5, "feet"),
  46055. default: true
  46056. },
  46057. ]
  46058. ))
  46059. characterMakers.push(() => makeCharacter(
  46060. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46061. {
  46062. front: {
  46063. height: math.unit(6, "feet"),
  46064. name: "Front",
  46065. image: {
  46066. source: "./media/characters/kitsune-kiro/front.svg",
  46067. extra: 1270/1158,
  46068. bottom: 42/1312
  46069. }
  46070. },
  46071. frontAlt: {
  46072. height: math.unit(6, "feet"),
  46073. name: "Front-alt",
  46074. image: {
  46075. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46076. extra: 1130/1081,
  46077. bottom: 36/1166
  46078. }
  46079. },
  46080. },
  46081. [
  46082. {
  46083. name: "Smol",
  46084. height: math.unit(3, "feet")
  46085. },
  46086. {
  46087. name: "Normal",
  46088. height: math.unit(6, "feet"),
  46089. default: true
  46090. },
  46091. ]
  46092. ))
  46093. characterMakers.push(() => makeCharacter(
  46094. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46095. {
  46096. front: {
  46097. height: math.unit(6, "feet"),
  46098. weight: math.unit(125, "lb"),
  46099. name: "Front",
  46100. image: {
  46101. source: "./media/characters/jack-thatcher/front.svg",
  46102. extra: 1474/1370,
  46103. bottom: 26/1500
  46104. }
  46105. },
  46106. back: {
  46107. height: math.unit(6, "feet"),
  46108. weight: math.unit(125, "lb"),
  46109. name: "Back",
  46110. image: {
  46111. source: "./media/characters/jack-thatcher/back.svg",
  46112. extra: 1489/1384,
  46113. bottom: 18/1507
  46114. }
  46115. },
  46116. },
  46117. [
  46118. {
  46119. name: "Normal",
  46120. height: math.unit(6, "feet"),
  46121. default: true
  46122. },
  46123. {
  46124. name: "Macro",
  46125. height: math.unit(75, "feet")
  46126. },
  46127. {
  46128. name: "Macro-er",
  46129. height: math.unit(250, "feet")
  46130. },
  46131. ]
  46132. ))
  46133. characterMakers.push(() => makeCharacter(
  46134. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46135. {
  46136. front: {
  46137. height: math.unit(7, "feet"),
  46138. weight: math.unit(110, "kg"),
  46139. name: "Front",
  46140. image: {
  46141. source: "./media/characters/max-hyper/front.svg",
  46142. extra: 1969/1881,
  46143. bottom: 49/2018
  46144. }
  46145. },
  46146. },
  46147. [
  46148. {
  46149. name: "Normal",
  46150. height: math.unit(7, "feet"),
  46151. default: true
  46152. },
  46153. ]
  46154. ))
  46155. characterMakers.push(() => makeCharacter(
  46156. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46157. {
  46158. front: {
  46159. height: math.unit(5 + 5/12, "feet"),
  46160. weight: math.unit(160, "lb"),
  46161. name: "Front",
  46162. image: {
  46163. source: "./media/characters/spook/front.svg",
  46164. extra: 794/791,
  46165. bottom: 54/848
  46166. }
  46167. },
  46168. back: {
  46169. height: math.unit(5 + 5/12, "feet"),
  46170. weight: math.unit(160, "lb"),
  46171. name: "Back",
  46172. image: {
  46173. source: "./media/characters/spook/back.svg",
  46174. extra: 812/798,
  46175. bottom: 32/844
  46176. }
  46177. },
  46178. },
  46179. [
  46180. {
  46181. name: "Normal",
  46182. height: math.unit(5 + 5/12, "feet"),
  46183. default: true
  46184. },
  46185. ]
  46186. ))
  46187. characterMakers.push(() => makeCharacter(
  46188. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46189. {
  46190. front: {
  46191. height: math.unit(18, "feet"),
  46192. name: "Front",
  46193. image: {
  46194. source: "./media/characters/xeaduulix/front.svg",
  46195. extra: 1380/1166,
  46196. bottom: 110/1490
  46197. }
  46198. },
  46199. back: {
  46200. height: math.unit(18, "feet"),
  46201. name: "Back",
  46202. image: {
  46203. source: "./media/characters/xeaduulix/back.svg",
  46204. extra: 1592/1170,
  46205. bottom: 128/1720
  46206. }
  46207. },
  46208. frontNsfw: {
  46209. height: math.unit(18, "feet"),
  46210. name: "Front (NSFW)",
  46211. image: {
  46212. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46213. extra: 1380/1166,
  46214. bottom: 110/1490
  46215. }
  46216. },
  46217. backNsfw: {
  46218. height: math.unit(18, "feet"),
  46219. name: "Back (NSFW)",
  46220. image: {
  46221. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46222. extra: 1592/1170,
  46223. bottom: 128/1720
  46224. }
  46225. },
  46226. },
  46227. [
  46228. {
  46229. name: "Normal",
  46230. height: math.unit(18, "feet"),
  46231. default: true
  46232. },
  46233. ]
  46234. ))
  46235. characterMakers.push(() => makeCharacter(
  46236. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46237. {
  46238. spreadWings: {
  46239. height: math.unit(20, "feet"),
  46240. name: "Spread Wings",
  46241. image: {
  46242. source: "./media/characters/fledge/spread-wings.svg",
  46243. extra: 693/635,
  46244. bottom: 26/719
  46245. }
  46246. },
  46247. front: {
  46248. height: math.unit(20, "feet"),
  46249. name: "Front",
  46250. image: {
  46251. source: "./media/characters/fledge/front.svg",
  46252. extra: 684/637,
  46253. bottom: 18/702
  46254. }
  46255. },
  46256. frontAlt: {
  46257. height: math.unit(20, "feet"),
  46258. name: "Front (Alt)",
  46259. image: {
  46260. source: "./media/characters/fledge/front-alt.svg",
  46261. extra: 708/664,
  46262. bottom: 13/721
  46263. }
  46264. },
  46265. back: {
  46266. height: math.unit(20, "feet"),
  46267. name: "Back",
  46268. image: {
  46269. source: "./media/characters/fledge/back.svg",
  46270. extra: 718/634,
  46271. bottom: 22/740
  46272. }
  46273. },
  46274. head: {
  46275. height: math.unit(5.55, "feet"),
  46276. name: "Head",
  46277. image: {
  46278. source: "./media/characters/fledge/head.svg"
  46279. }
  46280. },
  46281. headAlt: {
  46282. height: math.unit(5.1, "feet"),
  46283. name: "Head (Alt)",
  46284. image: {
  46285. source: "./media/characters/fledge/head-alt.svg"
  46286. }
  46287. },
  46288. },
  46289. [
  46290. {
  46291. name: "Small",
  46292. height: math.unit(6 + 2/12, "feet")
  46293. },
  46294. {
  46295. name: "Big",
  46296. height: math.unit(20, "feet"),
  46297. default: true
  46298. },
  46299. {
  46300. name: "Giant",
  46301. height: math.unit(100, "feet")
  46302. },
  46303. {
  46304. name: "Macro",
  46305. height: math.unit(200, "feet")
  46306. },
  46307. ]
  46308. ))
  46309. characterMakers.push(() => makeCharacter(
  46310. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46311. {
  46312. front: {
  46313. height: math.unit(1, "meter"),
  46314. name: "Front",
  46315. image: {
  46316. source: "./media/characters/atlas-morenai/front.svg",
  46317. extra: 1275/1043,
  46318. bottom: 19/1294
  46319. }
  46320. },
  46321. back: {
  46322. height: math.unit(1, "meter"),
  46323. name: "Back",
  46324. image: {
  46325. source: "./media/characters/atlas-morenai/back.svg",
  46326. extra: 1141/1001,
  46327. bottom: 25/1166
  46328. }
  46329. },
  46330. },
  46331. [
  46332. {
  46333. name: "Normal",
  46334. height: math.unit(1, "meter"),
  46335. default: true
  46336. },
  46337. {
  46338. name: "Magic-Infused",
  46339. height: math.unit(5, "meters")
  46340. },
  46341. ]
  46342. ))
  46343. characterMakers.push(() => makeCharacter(
  46344. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46345. {
  46346. front: {
  46347. height: math.unit(5, "meters"),
  46348. name: "Front",
  46349. image: {
  46350. source: "./media/characters/cintia/front.svg",
  46351. extra: 1312/1228,
  46352. bottom: 38/1350
  46353. }
  46354. },
  46355. back: {
  46356. height: math.unit(5, "meters"),
  46357. name: "Back",
  46358. image: {
  46359. source: "./media/characters/cintia/back.svg",
  46360. extra: 1260/1166,
  46361. bottom: 98/1358
  46362. }
  46363. },
  46364. frontDick: {
  46365. height: math.unit(5, "meters"),
  46366. name: "Front (Dick)",
  46367. image: {
  46368. source: "./media/characters/cintia/front-dick.svg",
  46369. extra: 1312/1228,
  46370. bottom: 38/1350
  46371. }
  46372. },
  46373. backDick: {
  46374. height: math.unit(5, "meters"),
  46375. name: "Back (Dick)",
  46376. image: {
  46377. source: "./media/characters/cintia/back-dick.svg",
  46378. extra: 1260/1166,
  46379. bottom: 98/1358
  46380. }
  46381. },
  46382. bust: {
  46383. height: math.unit(1.97, "meters"),
  46384. name: "Bust",
  46385. image: {
  46386. source: "./media/characters/cintia/bust.svg",
  46387. extra: 617/565,
  46388. bottom: 0/617
  46389. }
  46390. },
  46391. },
  46392. [
  46393. {
  46394. name: "Normal",
  46395. height: math.unit(5, "meters"),
  46396. default: true
  46397. },
  46398. ]
  46399. ))
  46400. characterMakers.push(() => makeCharacter(
  46401. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46402. {
  46403. side: {
  46404. height: math.unit(100, "feet"),
  46405. name: "Side",
  46406. image: {
  46407. source: "./media/characters/denora/side.svg",
  46408. extra: 875/803,
  46409. bottom: 9/884
  46410. }
  46411. },
  46412. },
  46413. [
  46414. {
  46415. name: "Standard",
  46416. height: math.unit(100, "feet"),
  46417. default: true
  46418. },
  46419. {
  46420. name: "Grand",
  46421. height: math.unit(1000, "feet")
  46422. },
  46423. {
  46424. name: "Conquering",
  46425. height: math.unit(10000, "feet")
  46426. },
  46427. ]
  46428. ))
  46429. characterMakers.push(() => makeCharacter(
  46430. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46431. {
  46432. dressed: {
  46433. height: math.unit(8 + 5/12, "feet"),
  46434. weight: math.unit(700, "lb"),
  46435. name: "Dressed",
  46436. image: {
  46437. source: "./media/characters/kiva/dressed.svg",
  46438. extra: 1102/1055,
  46439. bottom: 60/1162
  46440. }
  46441. },
  46442. nude: {
  46443. height: math.unit(8 + 5/12, "feet"),
  46444. weight: math.unit(700, "lb"),
  46445. name: "Nude",
  46446. image: {
  46447. source: "./media/characters/kiva/nude.svg",
  46448. extra: 1102/1055,
  46449. bottom: 60/1162
  46450. }
  46451. },
  46452. },
  46453. [
  46454. {
  46455. name: "Base Height",
  46456. height: math.unit(8 + 5/12, "feet"),
  46457. default: true
  46458. },
  46459. {
  46460. name: "Macro",
  46461. height: math.unit(100, "feet")
  46462. },
  46463. {
  46464. name: "Max",
  46465. height: math.unit(3280, "feet")
  46466. },
  46467. ]
  46468. ))
  46469. characterMakers.push(() => makeCharacter(
  46470. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46471. {
  46472. front: {
  46473. height: math.unit(6 + 8/12, "feet"),
  46474. weight: math.unit(250, "lb"),
  46475. name: "Front",
  46476. image: {
  46477. source: "./media/characters/ztragon/front.svg",
  46478. extra: 1825/1684,
  46479. bottom: 98/1923
  46480. }
  46481. },
  46482. },
  46483. [
  46484. {
  46485. name: "Normal",
  46486. height: math.unit(6 + 8/12, "feet"),
  46487. default: true
  46488. },
  46489. {
  46490. name: "Macro",
  46491. height: math.unit(80, "feet")
  46492. },
  46493. ]
  46494. ))
  46495. characterMakers.push(() => makeCharacter(
  46496. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46497. {
  46498. front: {
  46499. height: math.unit(10.4, "feet"),
  46500. weight: math.unit(2, "tons"),
  46501. name: "Front",
  46502. image: {
  46503. source: "./media/characters/yesenia/front.svg",
  46504. extra: 1479/1474,
  46505. bottom: 233/1712
  46506. }
  46507. },
  46508. },
  46509. [
  46510. {
  46511. name: "Normal",
  46512. height: math.unit(10.4, "feet"),
  46513. default: true
  46514. },
  46515. ]
  46516. ))
  46517. characterMakers.push(() => makeCharacter(
  46518. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46519. {
  46520. normal: {
  46521. height: math.unit(6 + 1/12, "feet"),
  46522. weight: math.unit(180, "lb"),
  46523. name: "Normal",
  46524. image: {
  46525. source: "./media/characters/leanne-lycheborne/normal.svg",
  46526. extra: 1748/1660,
  46527. bottom: 98/1846
  46528. }
  46529. },
  46530. were: {
  46531. height: math.unit(12, "feet"),
  46532. weight: math.unit(1600, "lb"),
  46533. name: "Were",
  46534. image: {
  46535. source: "./media/characters/leanne-lycheborne/were.svg",
  46536. extra: 1485/1432,
  46537. bottom: 66/1551
  46538. }
  46539. },
  46540. },
  46541. [
  46542. {
  46543. name: "Normal",
  46544. height: math.unit(6 + 1/12, "feet"),
  46545. default: true
  46546. },
  46547. ]
  46548. ))
  46549. characterMakers.push(() => makeCharacter(
  46550. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46551. {
  46552. side: {
  46553. height: math.unit(13, "feet"),
  46554. name: "Side",
  46555. image: {
  46556. source: "./media/characters/kira-tyler/side.svg",
  46557. extra: 693/393,
  46558. bottom: 58/751
  46559. }
  46560. },
  46561. },
  46562. [
  46563. {
  46564. name: "Normal",
  46565. height: math.unit(13, "feet"),
  46566. default: true
  46567. },
  46568. ]
  46569. ))
  46570. characterMakers.push(() => makeCharacter(
  46571. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46572. {
  46573. front: {
  46574. height: math.unit(10.3, "feet"),
  46575. weight: math.unit(150, "lb"),
  46576. name: "Front",
  46577. image: {
  46578. source: "./media/characters/blaze/front.svg",
  46579. extra: 1378/1286,
  46580. bottom: 172/1550
  46581. }
  46582. },
  46583. },
  46584. [
  46585. {
  46586. name: "Normal",
  46587. height: math.unit(10.3, "feet"),
  46588. default: true
  46589. },
  46590. ]
  46591. ))
  46592. characterMakers.push(() => makeCharacter(
  46593. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46594. {
  46595. side: {
  46596. height: math.unit(2, "meters"),
  46597. weight: math.unit(400, "kg"),
  46598. name: "Side",
  46599. image: {
  46600. source: "./media/characters/anu/side.svg",
  46601. extra: 506/394,
  46602. bottom: 18/524
  46603. }
  46604. },
  46605. },
  46606. [
  46607. {
  46608. name: "Humanoid",
  46609. height: math.unit(2, "meters")
  46610. },
  46611. {
  46612. name: "Normal",
  46613. height: math.unit(5, "meters"),
  46614. default: true
  46615. },
  46616. ]
  46617. ))
  46618. characterMakers.push(() => makeCharacter(
  46619. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46620. {
  46621. front: {
  46622. height: math.unit(5 + 5/12, "feet"),
  46623. weight: math.unit(170, "lb"),
  46624. name: "Front",
  46625. image: {
  46626. source: "./media/characters/synx-the-lynx/front.svg",
  46627. extra: 1893/1745,
  46628. bottom: 17/1910
  46629. }
  46630. },
  46631. side: {
  46632. height: math.unit(5 + 5/12, "feet"),
  46633. weight: math.unit(170, "lb"),
  46634. name: "Side",
  46635. image: {
  46636. source: "./media/characters/synx-the-lynx/side.svg",
  46637. extra: 1884/1740,
  46638. bottom: 39/1923
  46639. }
  46640. },
  46641. back: {
  46642. height: math.unit(5 + 5/12, "feet"),
  46643. weight: math.unit(170, "lb"),
  46644. name: "Back",
  46645. image: {
  46646. source: "./media/characters/synx-the-lynx/back.svg",
  46647. extra: 1903/1755,
  46648. bottom: 14/1917
  46649. }
  46650. },
  46651. },
  46652. [
  46653. {
  46654. name: "Normal",
  46655. height: math.unit(5 + 5/12, "feet"),
  46656. default: true
  46657. },
  46658. ]
  46659. ))
  46660. characterMakers.push(() => makeCharacter(
  46661. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46662. {
  46663. back: {
  46664. height: math.unit(15, "feet"),
  46665. name: "Back",
  46666. image: {
  46667. source: "./media/characters/nadezda-fex/back.svg",
  46668. extra: 1695/1481,
  46669. bottom: 25/1720
  46670. }
  46671. },
  46672. },
  46673. [
  46674. {
  46675. name: "Normal",
  46676. height: math.unit(15, "feet"),
  46677. default: true
  46678. },
  46679. {
  46680. name: "Macro",
  46681. height: math.unit(2.5, "miles")
  46682. },
  46683. {
  46684. name: "Goddess",
  46685. height: math.unit(2, "multiverses")
  46686. },
  46687. ]
  46688. ))
  46689. characterMakers.push(() => makeCharacter(
  46690. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46691. {
  46692. front: {
  46693. height: math.unit(216, "cm"),
  46694. name: "Front",
  46695. image: {
  46696. source: "./media/characters/lev/front.svg",
  46697. extra: 1728/1670,
  46698. bottom: 82/1810
  46699. }
  46700. },
  46701. back: {
  46702. height: math.unit(216, "cm"),
  46703. name: "Back",
  46704. image: {
  46705. source: "./media/characters/lev/back.svg",
  46706. extra: 1738/1675,
  46707. bottom: 24/1762
  46708. }
  46709. },
  46710. dressed: {
  46711. height: math.unit(216, "cm"),
  46712. name: "Dressed",
  46713. image: {
  46714. source: "./media/characters/lev/dressed.svg",
  46715. extra: 1397/1351,
  46716. bottom: 73/1470
  46717. }
  46718. },
  46719. head: {
  46720. height: math.unit(0.51, "meter"),
  46721. name: "Head",
  46722. image: {
  46723. source: "./media/characters/lev/head.svg"
  46724. }
  46725. },
  46726. },
  46727. [
  46728. {
  46729. name: "Normal",
  46730. height: math.unit(216, "cm"),
  46731. default: true
  46732. },
  46733. {
  46734. name: "Relatively Macro",
  46735. height: math.unit(80, "meters")
  46736. },
  46737. {
  46738. name: "Megamacro",
  46739. height: math.unit(21600, "meters")
  46740. },
  46741. {
  46742. name: "Megamacro+",
  46743. height: math.unit(64800, "meters")
  46744. },
  46745. ]
  46746. ))
  46747. characterMakers.push(() => makeCharacter(
  46748. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46749. {
  46750. front: {
  46751. height: math.unit(2, "meters"),
  46752. weight: math.unit(80, "kg"),
  46753. name: "Front",
  46754. image: {
  46755. source: "./media/characters/moka/front.svg",
  46756. extra: 1337/1255,
  46757. bottom: 58/1395
  46758. }
  46759. },
  46760. },
  46761. [
  46762. {
  46763. name: "Micro",
  46764. height: math.unit(15, "cm")
  46765. },
  46766. {
  46767. name: "Normal",
  46768. height: math.unit(2, "meters"),
  46769. default: true
  46770. },
  46771. {
  46772. name: "Macro",
  46773. height: math.unit(20, "meters"),
  46774. },
  46775. ]
  46776. ))
  46777. characterMakers.push(() => makeCharacter(
  46778. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46779. {
  46780. front: {
  46781. height: math.unit(9, "feet"),
  46782. weight: math.unit(240, "lb"),
  46783. name: "Front",
  46784. image: {
  46785. source: "./media/characters/kuzco/front.svg",
  46786. extra: 1593/1487,
  46787. bottom: 32/1625
  46788. }
  46789. },
  46790. side: {
  46791. height: math.unit(9, "feet"),
  46792. weight: math.unit(240, "lb"),
  46793. name: "Side",
  46794. image: {
  46795. source: "./media/characters/kuzco/side.svg",
  46796. extra: 1575/1485,
  46797. bottom: 30/1605
  46798. }
  46799. },
  46800. back: {
  46801. height: math.unit(9, "feet"),
  46802. weight: math.unit(240, "lb"),
  46803. name: "Back",
  46804. image: {
  46805. source: "./media/characters/kuzco/back.svg",
  46806. extra: 1603/1514,
  46807. bottom: 14/1617
  46808. }
  46809. },
  46810. },
  46811. [
  46812. {
  46813. name: "Normal",
  46814. height: math.unit(9, "feet"),
  46815. default: true
  46816. },
  46817. ]
  46818. ))
  46819. characterMakers.push(() => makeCharacter(
  46820. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46821. {
  46822. side: {
  46823. height: math.unit(2, "meters"),
  46824. weight: math.unit(300, "kg"),
  46825. name: "Side",
  46826. image: {
  46827. source: "./media/characters/ceruleus/side.svg",
  46828. extra: 1068/974,
  46829. bottom: 126/1194
  46830. }
  46831. },
  46832. maw: {
  46833. height: math.unit(0.8125, "meter"),
  46834. name: "Maw",
  46835. image: {
  46836. source: "./media/characters/ceruleus/maw.svg"
  46837. }
  46838. },
  46839. },
  46840. [
  46841. {
  46842. name: "Normal",
  46843. height: math.unit(16, "meters"),
  46844. default: true
  46845. },
  46846. ]
  46847. ))
  46848. characterMakers.push(() => makeCharacter(
  46849. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46850. {
  46851. front: {
  46852. height: math.unit(9, "feet"),
  46853. weight: math.unit(500, "kg"),
  46854. name: "Front",
  46855. image: {
  46856. source: "./media/characters/acouya/front.svg",
  46857. extra: 1660/1473,
  46858. bottom: 28/1688
  46859. }
  46860. },
  46861. },
  46862. [
  46863. {
  46864. name: "Normal",
  46865. height: math.unit(9, "feet"),
  46866. default: true
  46867. },
  46868. ]
  46869. ))
  46870. characterMakers.push(() => makeCharacter(
  46871. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46872. {
  46873. front: {
  46874. height: math.unit(5 + 6/12, "feet"),
  46875. weight: math.unit(195, "lb"),
  46876. name: "Front",
  46877. image: {
  46878. source: "./media/characters/vant/front.svg",
  46879. extra: 1396/1320,
  46880. bottom: 20/1416
  46881. }
  46882. },
  46883. back: {
  46884. height: math.unit(5 + 6/12, "feet"),
  46885. weight: math.unit(195, "lb"),
  46886. name: "Back",
  46887. image: {
  46888. source: "./media/characters/vant/back.svg",
  46889. extra: 1396/1320,
  46890. bottom: 20/1416
  46891. }
  46892. },
  46893. maw: {
  46894. height: math.unit(0.75, "feet"),
  46895. name: "Maw",
  46896. image: {
  46897. source: "./media/characters/vant/maw.svg"
  46898. }
  46899. },
  46900. paw: {
  46901. height: math.unit(1.07, "feet"),
  46902. name: "Paw",
  46903. image: {
  46904. source: "./media/characters/vant/paw.svg"
  46905. }
  46906. },
  46907. },
  46908. [
  46909. {
  46910. name: "Micro",
  46911. height: math.unit(0.25, "inches")
  46912. },
  46913. {
  46914. name: "Normal",
  46915. height: math.unit(5 + 6/12, "feet"),
  46916. default: true
  46917. },
  46918. {
  46919. name: "Macro",
  46920. height: math.unit(75, "feet")
  46921. },
  46922. ]
  46923. ))
  46924. characterMakers.push(() => makeCharacter(
  46925. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46926. {
  46927. front: {
  46928. height: math.unit(30, "meters"),
  46929. weight: math.unit(363, "tons"),
  46930. name: "Front",
  46931. image: {
  46932. source: "./media/characters/ahra/front.svg",
  46933. extra: 1914/1814,
  46934. bottom: 46/1960
  46935. }
  46936. },
  46937. },
  46938. [
  46939. {
  46940. name: "Macro",
  46941. height: math.unit(30, "meters"),
  46942. default: true
  46943. },
  46944. ]
  46945. ))
  46946. characterMakers.push(() => makeCharacter(
  46947. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46948. {
  46949. undressed: {
  46950. height: math.unit(2, "m"),
  46951. weight: math.unit(250, "kg"),
  46952. name: "Undressed",
  46953. image: {
  46954. source: "./media/characters/coriander/undressed.svg",
  46955. extra: 1757/1606,
  46956. bottom: 107/1864
  46957. }
  46958. },
  46959. dressed: {
  46960. height: math.unit(2, "m"),
  46961. weight: math.unit(250, "kg"),
  46962. name: "Dressed",
  46963. image: {
  46964. source: "./media/characters/coriander/dressed.svg",
  46965. extra: 1757/1606,
  46966. bottom: 107/1864
  46967. }
  46968. },
  46969. },
  46970. [
  46971. {
  46972. name: "Normal",
  46973. height: math.unit(4, "meters"),
  46974. default: true
  46975. },
  46976. {
  46977. name: "XL",
  46978. height: math.unit(6, "meters")
  46979. },
  46980. {
  46981. name: "XXL",
  46982. height: math.unit(8, "meters")
  46983. },
  46984. ]
  46985. ))
  46986. characterMakers.push(() => makeCharacter(
  46987. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46988. {
  46989. front: {
  46990. height: math.unit(6, "feet"),
  46991. name: "Front",
  46992. image: {
  46993. source: "./media/characters/syrinx/front.svg",
  46994. extra: 1557/1259,
  46995. bottom: 171/1728
  46996. }
  46997. },
  46998. },
  46999. [
  47000. {
  47001. name: "Normal",
  47002. height: math.unit(6 + 3/12, "feet"),
  47003. default: true
  47004. },
  47005. ]
  47006. ))
  47007. characterMakers.push(() => makeCharacter(
  47008. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47009. {
  47010. front: {
  47011. height: math.unit(11 + 6/12, "feet"),
  47012. weight: math.unit(1.5, "tons"),
  47013. name: "Front",
  47014. image: {
  47015. source: "./media/characters/bor/front.svg",
  47016. extra: 1189/1109,
  47017. bottom: 170/1359
  47018. }
  47019. },
  47020. },
  47021. [
  47022. {
  47023. name: "Normal",
  47024. height: math.unit(11 + 6/12, "feet"),
  47025. default: true
  47026. },
  47027. {
  47028. name: "Macro",
  47029. height: math.unit(32 + 9/12, "feet")
  47030. },
  47031. ]
  47032. ))
  47033. characterMakers.push(() => makeCharacter(
  47034. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47035. {
  47036. anthro: {
  47037. height: math.unit(9, "feet"),
  47038. weight: math.unit(2076, "lb"),
  47039. name: "Anthro",
  47040. image: {
  47041. source: "./media/characters/abacus/anthro.svg",
  47042. extra: 1540/1494,
  47043. bottom: 233/1773
  47044. }
  47045. },
  47046. pigeon: {
  47047. height: math.unit(1, "feet"),
  47048. name: "Pigeon",
  47049. image: {
  47050. source: "./media/characters/abacus/pigeon.svg",
  47051. extra: 528/525,
  47052. bottom: 46/574
  47053. }
  47054. },
  47055. },
  47056. [
  47057. {
  47058. name: "Normal",
  47059. height: math.unit(9, "feet"),
  47060. default: true
  47061. },
  47062. ]
  47063. ))
  47064. characterMakers.push(() => makeCharacter(
  47065. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47066. {
  47067. side: {
  47068. height: math.unit(6, "feet"),
  47069. name: "Side",
  47070. image: {
  47071. source: "./media/characters/delkhan/side.svg",
  47072. extra: 1884/1786,
  47073. bottom: 308/2192
  47074. }
  47075. },
  47076. head: {
  47077. height: math.unit(3.38, "feet"),
  47078. name: "Head",
  47079. image: {
  47080. source: "./media/characters/delkhan/head.svg"
  47081. }
  47082. },
  47083. },
  47084. [
  47085. {
  47086. name: "Normal",
  47087. height: math.unit(72, "feet"),
  47088. default: true
  47089. },
  47090. {
  47091. name: "Giant",
  47092. height: math.unit(172, "feet")
  47093. },
  47094. ]
  47095. ))
  47096. characterMakers.push(() => makeCharacter(
  47097. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47098. {
  47099. standing: {
  47100. height: math.unit(6, "feet"),
  47101. name: "Standing",
  47102. image: {
  47103. source: "./media/characters/euchidat/standing.svg",
  47104. extra: 1612/1553,
  47105. bottom: 116/1728
  47106. }
  47107. },
  47108. leaning: {
  47109. height: math.unit(6, "feet"),
  47110. name: "Leaning",
  47111. image: {
  47112. source: "./media/characters/euchidat/leaning.svg",
  47113. extra: 1719/1674,
  47114. bottom: 27/1746
  47115. }
  47116. },
  47117. },
  47118. [
  47119. {
  47120. name: "Normal",
  47121. height: math.unit(175, "feet"),
  47122. default: true
  47123. },
  47124. {
  47125. name: "Megamacro",
  47126. height: math.unit(190, "miles")
  47127. },
  47128. {
  47129. name: "Gigamacro",
  47130. height: math.unit(190000, "miles")
  47131. },
  47132. ]
  47133. ))
  47134. characterMakers.push(() => makeCharacter(
  47135. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47136. {
  47137. front: {
  47138. height: math.unit(6, "feet"),
  47139. weight: math.unit(150, "lb"),
  47140. name: "Front",
  47141. image: {
  47142. source: "./media/characters/rebecca-stack/front.svg",
  47143. extra: 1256/1201,
  47144. bottom: 18/1274
  47145. }
  47146. },
  47147. },
  47148. [
  47149. {
  47150. name: "Normal",
  47151. height: math.unit(5 + 8/12, "feet"),
  47152. default: true
  47153. },
  47154. {
  47155. name: "Demolitionist",
  47156. height: math.unit(200, "feet")
  47157. },
  47158. {
  47159. name: "Out of Control",
  47160. height: math.unit(2, "miles")
  47161. },
  47162. {
  47163. name: "Giga",
  47164. height: math.unit(7200, "miles")
  47165. },
  47166. ]
  47167. ))
  47168. characterMakers.push(() => makeCharacter(
  47169. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47170. {
  47171. front: {
  47172. height: math.unit(6, "feet"),
  47173. weight: math.unit(150, "lb"),
  47174. name: "Front",
  47175. image: {
  47176. source: "./media/characters/jenny-cartwright/front.svg",
  47177. extra: 1384/1376,
  47178. bottom: 58/1442
  47179. }
  47180. },
  47181. },
  47182. [
  47183. {
  47184. name: "Normal",
  47185. height: math.unit(6 + 7/12, "feet"),
  47186. default: true
  47187. },
  47188. {
  47189. name: "Librarian",
  47190. height: math.unit(55, "feet")
  47191. },
  47192. {
  47193. name: "Sightseer",
  47194. height: math.unit(50, "miles")
  47195. },
  47196. {
  47197. name: "Giga",
  47198. height: math.unit(30000, "miles")
  47199. },
  47200. ]
  47201. ))
  47202. characterMakers.push(() => makeCharacter(
  47203. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47204. {
  47205. nude: {
  47206. height: math.unit(8, "feet"),
  47207. weight: math.unit(225, "lb"),
  47208. name: "Nude",
  47209. image: {
  47210. source: "./media/characters/marvy/nude.svg",
  47211. extra: 1900/1683,
  47212. bottom: 89/1989
  47213. }
  47214. },
  47215. dressed: {
  47216. height: math.unit(8, "feet"),
  47217. weight: math.unit(225, "lb"),
  47218. name: "Dressed",
  47219. image: {
  47220. source: "./media/characters/marvy/dressed.svg",
  47221. extra: 1900/1683,
  47222. bottom: 89/1989
  47223. }
  47224. },
  47225. head: {
  47226. height: math.unit(2.85, "feet"),
  47227. name: "Head",
  47228. image: {
  47229. source: "./media/characters/marvy/head.svg"
  47230. }
  47231. },
  47232. },
  47233. [
  47234. {
  47235. name: "Normal",
  47236. height: math.unit(8, "feet"),
  47237. default: true
  47238. },
  47239. ]
  47240. ))
  47241. characterMakers.push(() => makeCharacter(
  47242. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47243. {
  47244. front: {
  47245. height: math.unit(8, "feet"),
  47246. weight: math.unit(250, "lb"),
  47247. name: "Front",
  47248. image: {
  47249. source: "./media/characters/leah/front.svg",
  47250. extra: 1257/1149,
  47251. bottom: 109/1366
  47252. }
  47253. },
  47254. },
  47255. [
  47256. {
  47257. name: "Normal",
  47258. height: math.unit(8, "feet"),
  47259. default: true
  47260. },
  47261. {
  47262. name: "Minimacro",
  47263. height: math.unit(40, "feet")
  47264. },
  47265. {
  47266. name: "Macro",
  47267. height: math.unit(124, "feet")
  47268. },
  47269. {
  47270. name: "Megamacro",
  47271. height: math.unit(850, "feet")
  47272. },
  47273. ]
  47274. ))
  47275. characterMakers.push(() => makeCharacter(
  47276. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47277. {
  47278. side: {
  47279. height: math.unit(13 + 6/12, "feet"),
  47280. weight: math.unit(3200, "lb"),
  47281. name: "Side",
  47282. image: {
  47283. source: "./media/characters/alvir/side.svg",
  47284. extra: 896/589,
  47285. bottom: 26/922
  47286. }
  47287. },
  47288. },
  47289. [
  47290. {
  47291. name: "Normal",
  47292. height: math.unit(13 + 6/12, "feet"),
  47293. default: true
  47294. },
  47295. ]
  47296. ))
  47297. characterMakers.push(() => makeCharacter(
  47298. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47299. {
  47300. front: {
  47301. height: math.unit(5 + 4/12, "feet"),
  47302. weight: math.unit(236, "lb"),
  47303. name: "Front",
  47304. image: {
  47305. source: "./media/characters/zaina-khalil/front.svg",
  47306. extra: 1533/1485,
  47307. bottom: 94/1627
  47308. }
  47309. },
  47310. side: {
  47311. height: math.unit(5 + 4/12, "feet"),
  47312. weight: math.unit(236, "lb"),
  47313. name: "Side",
  47314. image: {
  47315. source: "./media/characters/zaina-khalil/side.svg",
  47316. extra: 1537/1498,
  47317. bottom: 66/1603
  47318. }
  47319. },
  47320. back: {
  47321. height: math.unit(5 + 4/12, "feet"),
  47322. weight: math.unit(236, "lb"),
  47323. name: "Back",
  47324. image: {
  47325. source: "./media/characters/zaina-khalil/back.svg",
  47326. extra: 1546/1494,
  47327. bottom: 89/1635
  47328. }
  47329. },
  47330. },
  47331. [
  47332. {
  47333. name: "Normal",
  47334. height: math.unit(5 + 4/12, "feet"),
  47335. default: true
  47336. },
  47337. ]
  47338. ))
  47339. characterMakers.push(() => makeCharacter(
  47340. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47341. {
  47342. side: {
  47343. height: math.unit(12, "feet"),
  47344. weight: math.unit(4000, "lb"),
  47345. name: "Side",
  47346. image: {
  47347. source: "./media/characters/terry/side.svg",
  47348. extra: 1518/1439,
  47349. bottom: 149/1667
  47350. }
  47351. },
  47352. },
  47353. [
  47354. {
  47355. name: "Normal",
  47356. height: math.unit(12, "feet"),
  47357. default: true
  47358. },
  47359. ]
  47360. ))
  47361. characterMakers.push(() => makeCharacter(
  47362. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47363. {
  47364. front: {
  47365. height: math.unit(12, "feet"),
  47366. weight: math.unit(1500, "lb"),
  47367. name: "Front",
  47368. image: {
  47369. source: "./media/characters/kahea/front.svg",
  47370. extra: 1722/1617,
  47371. bottom: 179/1901
  47372. }
  47373. },
  47374. },
  47375. [
  47376. {
  47377. name: "Normal",
  47378. height: math.unit(12, "feet"),
  47379. default: true
  47380. },
  47381. ]
  47382. ))
  47383. characterMakers.push(() => makeCharacter(
  47384. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47385. {
  47386. demonFront: {
  47387. height: math.unit(36, "feet"),
  47388. name: "Front",
  47389. image: {
  47390. source: "./media/characters/alex-xuria/demon-front.svg",
  47391. extra: 1705/1673,
  47392. bottom: 198/1903
  47393. },
  47394. form: "demon",
  47395. default: true
  47396. },
  47397. demonBack: {
  47398. height: math.unit(36, "feet"),
  47399. name: "Back",
  47400. image: {
  47401. source: "./media/characters/alex-xuria/demon-back.svg",
  47402. extra: 1725/1693,
  47403. bottom: 70/1795
  47404. },
  47405. form: "demon"
  47406. },
  47407. demonHead: {
  47408. height: math.unit(2.14, "meters"),
  47409. name: "Head",
  47410. image: {
  47411. source: "./media/characters/alex-xuria/demon-head.svg"
  47412. },
  47413. form: "demon"
  47414. },
  47415. demonHand: {
  47416. height: math.unit(1.61, "meters"),
  47417. name: "Hand",
  47418. image: {
  47419. source: "./media/characters/alex-xuria/demon-hand.svg"
  47420. },
  47421. form: "demon"
  47422. },
  47423. demonPaw: {
  47424. height: math.unit(1.35, "meters"),
  47425. name: "Paw",
  47426. image: {
  47427. source: "./media/characters/alex-xuria/demon-paw.svg"
  47428. },
  47429. form: "demon"
  47430. },
  47431. demonFoot: {
  47432. height: math.unit(2.2, "meters"),
  47433. name: "Foot",
  47434. image: {
  47435. source: "./media/characters/alex-xuria/demon-foot.svg"
  47436. },
  47437. form: "demon"
  47438. },
  47439. demonCock: {
  47440. height: math.unit(1.74, "meters"),
  47441. name: "Cock",
  47442. image: {
  47443. source: "./media/characters/alex-xuria/demon-cock.svg"
  47444. },
  47445. form: "demon"
  47446. },
  47447. demonTailClosed: {
  47448. height: math.unit(1.47, "meters"),
  47449. name: "Tail (Closed)",
  47450. image: {
  47451. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47452. },
  47453. form: "demon"
  47454. },
  47455. demonTailOpen: {
  47456. height: math.unit(2.85, "meters"),
  47457. name: "Tail (Open)",
  47458. image: {
  47459. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47460. },
  47461. form: "demon"
  47462. },
  47463. incubusFront: {
  47464. height: math.unit(12, "feet"),
  47465. name: "Front",
  47466. image: {
  47467. source: "./media/characters/alex-xuria/incubus-front.svg",
  47468. extra: 1754/1677,
  47469. bottom: 125/1879
  47470. },
  47471. form: "incubus",
  47472. default: true
  47473. },
  47474. incubusBack: {
  47475. height: math.unit(12, "feet"),
  47476. name: "Back",
  47477. image: {
  47478. source: "./media/characters/alex-xuria/incubus-back.svg",
  47479. extra: 1702/1647,
  47480. bottom: 30/1732
  47481. },
  47482. form: "incubus"
  47483. },
  47484. incubusHead: {
  47485. height: math.unit(3.45, "feet"),
  47486. name: "Head",
  47487. image: {
  47488. source: "./media/characters/alex-xuria/incubus-head.svg"
  47489. },
  47490. form: "incubus"
  47491. },
  47492. rabbitFront: {
  47493. height: math.unit(6, "feet"),
  47494. name: "Front",
  47495. image: {
  47496. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47497. extra: 1369/1349,
  47498. bottom: 45/1414
  47499. },
  47500. form: "rabbit",
  47501. default: true
  47502. },
  47503. rabbitSide: {
  47504. height: math.unit(6, "feet"),
  47505. name: "Side",
  47506. image: {
  47507. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47508. extra: 1370/1356,
  47509. bottom: 37/1407
  47510. },
  47511. form: "rabbit"
  47512. },
  47513. rabbitBack: {
  47514. height: math.unit(6, "feet"),
  47515. name: "Back",
  47516. image: {
  47517. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47518. extra: 1375/1358,
  47519. bottom: 43/1418
  47520. },
  47521. form: "rabbit"
  47522. },
  47523. },
  47524. [
  47525. {
  47526. name: "Normal",
  47527. height: math.unit(6, "feet"),
  47528. default: true,
  47529. form: "rabbit"
  47530. },
  47531. {
  47532. name: "Incubus",
  47533. height: math.unit(12, "feet"),
  47534. default: true,
  47535. form: "incubus"
  47536. },
  47537. {
  47538. name: "Demon",
  47539. height: math.unit(36, "feet"),
  47540. default: true,
  47541. form: "demon"
  47542. }
  47543. ],
  47544. {
  47545. "demon": {
  47546. name: "Demon",
  47547. default: true
  47548. },
  47549. "incubus": {
  47550. name: "Incubus",
  47551. },
  47552. "rabbit": {
  47553. name: "Rabbit"
  47554. }
  47555. }
  47556. ))
  47557. characterMakers.push(() => makeCharacter(
  47558. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47559. {
  47560. front: {
  47561. height: math.unit(7 + 5/12, "feet"),
  47562. weight: math.unit(510, "lb"),
  47563. name: "Front",
  47564. image: {
  47565. source: "./media/characters/syrup/front.svg",
  47566. extra: 932/916,
  47567. bottom: 26/958
  47568. }
  47569. },
  47570. },
  47571. [
  47572. {
  47573. name: "Normal",
  47574. height: math.unit(7 + 5/12, "feet"),
  47575. default: true
  47576. },
  47577. {
  47578. name: "Big",
  47579. height: math.unit(50, "feet")
  47580. },
  47581. {
  47582. name: "Macro",
  47583. height: math.unit(300, "feet")
  47584. },
  47585. {
  47586. name: "Megamacro",
  47587. height: math.unit(1, "mile")
  47588. },
  47589. ]
  47590. ))
  47591. characterMakers.push(() => makeCharacter(
  47592. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47593. {
  47594. front: {
  47595. height: math.unit(6 + 9/12, "feet"),
  47596. name: "Front",
  47597. image: {
  47598. source: "./media/characters/zeimne/front.svg",
  47599. extra: 1969/1806,
  47600. bottom: 53/2022
  47601. }
  47602. },
  47603. },
  47604. [
  47605. {
  47606. name: "Normal",
  47607. height: math.unit(6 + 9/12, "feet"),
  47608. default: true
  47609. },
  47610. {
  47611. name: "Giant",
  47612. height: math.unit(550, "feet")
  47613. },
  47614. {
  47615. name: "Mega",
  47616. height: math.unit(3, "miles")
  47617. },
  47618. {
  47619. name: "Giga",
  47620. height: math.unit(250, "miles")
  47621. },
  47622. {
  47623. name: "Tera",
  47624. height: math.unit(1, "AU")
  47625. },
  47626. ]
  47627. ))
  47628. characterMakers.push(() => makeCharacter(
  47629. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47630. {
  47631. front: {
  47632. height: math.unit(5 + 2/12, "feet"),
  47633. name: "Front",
  47634. image: {
  47635. source: "./media/characters/grar/front.svg",
  47636. extra: 1331/1119,
  47637. bottom: 60/1391
  47638. }
  47639. },
  47640. back: {
  47641. height: math.unit(5 + 2/12, "feet"),
  47642. name: "Back",
  47643. image: {
  47644. source: "./media/characters/grar/back.svg",
  47645. extra: 1385/1169,
  47646. bottom: 23/1408
  47647. }
  47648. },
  47649. },
  47650. [
  47651. {
  47652. name: "Normal",
  47653. height: math.unit(5 + 2/12, "feet"),
  47654. default: true
  47655. },
  47656. ]
  47657. ))
  47658. characterMakers.push(() => makeCharacter(
  47659. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47660. {
  47661. front: {
  47662. height: math.unit(13 + 7/12, "feet"),
  47663. weight: math.unit(2200, "lb"),
  47664. name: "Front",
  47665. image: {
  47666. source: "./media/characters/endraya/front.svg",
  47667. extra: 1289/1215,
  47668. bottom: 50/1339
  47669. }
  47670. },
  47671. nude: {
  47672. height: math.unit(13 + 7/12, "feet"),
  47673. weight: math.unit(2200, "lb"),
  47674. name: "Nude",
  47675. image: {
  47676. source: "./media/characters/endraya/nude.svg",
  47677. extra: 1247/1171,
  47678. bottom: 40/1287
  47679. }
  47680. },
  47681. head: {
  47682. height: math.unit(2.6, "feet"),
  47683. name: "Head",
  47684. image: {
  47685. source: "./media/characters/endraya/head.svg"
  47686. }
  47687. },
  47688. slit: {
  47689. height: math.unit(3.4, "feet"),
  47690. name: "Slit",
  47691. image: {
  47692. source: "./media/characters/endraya/slit.svg"
  47693. }
  47694. },
  47695. },
  47696. [
  47697. {
  47698. name: "Normal",
  47699. height: math.unit(13 + 7/12, "feet"),
  47700. default: true
  47701. },
  47702. {
  47703. name: "Macro",
  47704. height: math.unit(200, "feet")
  47705. },
  47706. ]
  47707. ))
  47708. characterMakers.push(() => makeCharacter(
  47709. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47710. {
  47711. front: {
  47712. height: math.unit(1.81, "meters"),
  47713. weight: math.unit(69, "kg"),
  47714. name: "Front",
  47715. image: {
  47716. source: "./media/characters/rodryana/front.svg",
  47717. extra: 2002/1921,
  47718. bottom: 53/2055
  47719. }
  47720. },
  47721. back: {
  47722. height: math.unit(1.81, "meters"),
  47723. weight: math.unit(69, "kg"),
  47724. name: "Back",
  47725. image: {
  47726. source: "./media/characters/rodryana/back.svg",
  47727. extra: 1993/1926,
  47728. bottom: 48/2041
  47729. }
  47730. },
  47731. maw: {
  47732. height: math.unit(0.19769417475, "meters"),
  47733. name: "Maw",
  47734. image: {
  47735. source: "./media/characters/rodryana/maw.svg"
  47736. }
  47737. },
  47738. slit: {
  47739. height: math.unit(0.31631067961, "meters"),
  47740. name: "Slit",
  47741. image: {
  47742. source: "./media/characters/rodryana/slit.svg"
  47743. }
  47744. },
  47745. },
  47746. [
  47747. {
  47748. name: "Normal",
  47749. height: math.unit(1.81, "meters")
  47750. },
  47751. {
  47752. name: "Mini Macro",
  47753. height: math.unit(181, "meters")
  47754. },
  47755. {
  47756. name: "Macro",
  47757. height: math.unit(452, "meters"),
  47758. default: true
  47759. },
  47760. {
  47761. name: "Mega Macro",
  47762. height: math.unit(1.375, "km")
  47763. },
  47764. {
  47765. name: "Giga Macro",
  47766. height: math.unit(13.575, "km")
  47767. },
  47768. ]
  47769. ))
  47770. characterMakers.push(() => makeCharacter(
  47771. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47772. {
  47773. front: {
  47774. height: math.unit(6, "feet"),
  47775. weight: math.unit(1000, "lb"),
  47776. name: "Front",
  47777. image: {
  47778. source: "./media/characters/asaya/front.svg",
  47779. extra: 1460/1200,
  47780. bottom: 71/1531
  47781. }
  47782. },
  47783. },
  47784. [
  47785. {
  47786. name: "Normal",
  47787. height: math.unit(8, "km"),
  47788. default: true
  47789. },
  47790. ]
  47791. ))
  47792. characterMakers.push(() => makeCharacter(
  47793. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47794. {
  47795. front: {
  47796. height: math.unit(3.5, "meters"),
  47797. name: "Front",
  47798. image: {
  47799. source: "./media/characters/sarzu-and-israz/front.svg",
  47800. extra: 1570/1558,
  47801. bottom: 150/1720
  47802. },
  47803. },
  47804. back: {
  47805. height: math.unit(3.5, "meters"),
  47806. name: "Back",
  47807. image: {
  47808. source: "./media/characters/sarzu-and-israz/back.svg",
  47809. extra: 1523/1509,
  47810. bottom: 132/1655
  47811. },
  47812. },
  47813. frontFemale: {
  47814. height: math.unit(3.5, "meters"),
  47815. name: "Front (Female)",
  47816. image: {
  47817. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47818. extra: 1570/1558,
  47819. bottom: 150/1720
  47820. },
  47821. },
  47822. frontHerm: {
  47823. height: math.unit(3.5, "meters"),
  47824. name: "Front (Herm)",
  47825. image: {
  47826. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47827. extra: 1570/1558,
  47828. bottom: 150/1720
  47829. },
  47830. },
  47831. },
  47832. [
  47833. {
  47834. name: "Normal",
  47835. height: math.unit(3.5, "meters"),
  47836. default: true,
  47837. },
  47838. {
  47839. name: "Macro",
  47840. height: math.unit(65.5, "meters"),
  47841. },
  47842. ],
  47843. ))
  47844. characterMakers.push(() => makeCharacter(
  47845. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47846. {
  47847. front: {
  47848. height: math.unit(6, "feet"),
  47849. weight: math.unit(250, "lb"),
  47850. name: "Front",
  47851. image: {
  47852. source: "./media/characters/zenimma/front.svg",
  47853. extra: 1346/1320,
  47854. bottom: 58/1404
  47855. }
  47856. },
  47857. back: {
  47858. height: math.unit(6, "feet"),
  47859. weight: math.unit(250, "lb"),
  47860. name: "Back",
  47861. image: {
  47862. source: "./media/characters/zenimma/back.svg",
  47863. extra: 1324/1308,
  47864. bottom: 44/1368
  47865. }
  47866. },
  47867. dick: {
  47868. height: math.unit(1.44, "feet"),
  47869. name: "Dick",
  47870. image: {
  47871. source: "./media/characters/zenimma/dick.svg"
  47872. }
  47873. },
  47874. },
  47875. [
  47876. {
  47877. name: "Canon Height",
  47878. height: math.unit(66, "miles"),
  47879. default: true
  47880. },
  47881. ]
  47882. ))
  47883. characterMakers.push(() => makeCharacter(
  47884. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47885. {
  47886. nude: {
  47887. height: math.unit(6, "feet"),
  47888. weight: math.unit(150, "lb"),
  47889. name: "Nude",
  47890. image: {
  47891. source: "./media/characters/shavon/nude.svg",
  47892. extra: 1242/1096,
  47893. bottom: 98/1340
  47894. }
  47895. },
  47896. dressed: {
  47897. height: math.unit(6, "feet"),
  47898. weight: math.unit(150, "lb"),
  47899. name: "Dressed",
  47900. image: {
  47901. source: "./media/characters/shavon/dressed.svg",
  47902. extra: 1242/1096,
  47903. bottom: 98/1340
  47904. }
  47905. },
  47906. },
  47907. [
  47908. {
  47909. name: "Macro",
  47910. height: math.unit(255, "feet"),
  47911. default: true
  47912. },
  47913. ]
  47914. ))
  47915. characterMakers.push(() => makeCharacter(
  47916. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47917. {
  47918. front: {
  47919. height: math.unit(6, "feet"),
  47920. name: "Front",
  47921. image: {
  47922. source: "./media/characters/steph/front.svg",
  47923. extra: 1430/1330,
  47924. bottom: 54/1484
  47925. }
  47926. },
  47927. },
  47928. [
  47929. {
  47930. name: "Normal",
  47931. height: math.unit(6, "feet"),
  47932. default: true
  47933. },
  47934. ]
  47935. ))
  47936. characterMakers.push(() => makeCharacter(
  47937. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47938. {
  47939. front: {
  47940. height: math.unit(9, "feet"),
  47941. weight: math.unit(400, "lb"),
  47942. name: "Front",
  47943. image: {
  47944. source: "./media/characters/kil'aman/front.svg",
  47945. extra: 1210/1159,
  47946. bottom: 109/1319
  47947. }
  47948. },
  47949. head: {
  47950. height: math.unit(2.14, "feet"),
  47951. name: "Head",
  47952. image: {
  47953. source: "./media/characters/kil'aman/head.svg"
  47954. }
  47955. },
  47956. maw: {
  47957. height: math.unit(1.21, "feet"),
  47958. name: "Maw",
  47959. image: {
  47960. source: "./media/characters/kil'aman/maw.svg"
  47961. }
  47962. },
  47963. foot: {
  47964. height: math.unit(1.7, "feet"),
  47965. name: "Foot",
  47966. image: {
  47967. source: "./media/characters/kil'aman/foot.svg"
  47968. }
  47969. },
  47970. dick: {
  47971. height: math.unit(2.1, "feet"),
  47972. name: "Dick",
  47973. image: {
  47974. source: "./media/characters/kil'aman/dick.svg"
  47975. }
  47976. },
  47977. },
  47978. [
  47979. {
  47980. name: "Normal",
  47981. height: math.unit(9, "feet")
  47982. },
  47983. {
  47984. name: "Canon Height",
  47985. height: math.unit(10, "miles"),
  47986. default: true
  47987. },
  47988. {
  47989. name: "Maximum",
  47990. height: math.unit(6e9, "miles")
  47991. },
  47992. ]
  47993. ))
  47994. characterMakers.push(() => makeCharacter(
  47995. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47996. {
  47997. front: {
  47998. height: math.unit(90, "feet"),
  47999. weight: math.unit(675000, "lb"),
  48000. name: "Front",
  48001. image: {
  48002. source: "./media/characters/qadan/front.svg",
  48003. extra: 1012/1004,
  48004. bottom: 78/1090
  48005. }
  48006. },
  48007. back: {
  48008. height: math.unit(90, "feet"),
  48009. weight: math.unit(675000, "lb"),
  48010. name: "Back",
  48011. image: {
  48012. source: "./media/characters/qadan/back.svg",
  48013. extra: 1042/1031,
  48014. bottom: 55/1097
  48015. }
  48016. },
  48017. armored: {
  48018. height: math.unit(90, "feet"),
  48019. weight: math.unit(675000, "lb"),
  48020. name: "Armored",
  48021. image: {
  48022. source: "./media/characters/qadan/armored.svg",
  48023. extra: 1047/1037,
  48024. bottom: 48/1095
  48025. }
  48026. },
  48027. },
  48028. [
  48029. {
  48030. name: "Normal",
  48031. height: math.unit(90, "feet"),
  48032. default: true
  48033. },
  48034. ]
  48035. ))
  48036. characterMakers.push(() => makeCharacter(
  48037. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48038. {
  48039. front: {
  48040. height: math.unit(6, "feet"),
  48041. weight: math.unit(225, "lb"),
  48042. name: "Front",
  48043. image: {
  48044. source: "./media/characters/brooke/front.svg",
  48045. extra: 1050/1010,
  48046. bottom: 66/1116
  48047. }
  48048. },
  48049. back: {
  48050. height: math.unit(6, "feet"),
  48051. weight: math.unit(225, "lb"),
  48052. name: "Back",
  48053. image: {
  48054. source: "./media/characters/brooke/back.svg",
  48055. extra: 1053/1013,
  48056. bottom: 41/1094
  48057. }
  48058. },
  48059. dressed: {
  48060. height: math.unit(6, "feet"),
  48061. weight: math.unit(225, "lb"),
  48062. name: "Dressed",
  48063. image: {
  48064. source: "./media/characters/brooke/dressed.svg",
  48065. extra: 1050/1010,
  48066. bottom: 66/1116
  48067. }
  48068. },
  48069. },
  48070. [
  48071. {
  48072. name: "Canon Height",
  48073. height: math.unit(500, "miles"),
  48074. default: true
  48075. },
  48076. ]
  48077. ))
  48078. characterMakers.push(() => makeCharacter(
  48079. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48080. {
  48081. front: {
  48082. height: math.unit(6 + 2/12, "feet"),
  48083. weight: math.unit(210, "lb"),
  48084. name: "Front",
  48085. image: {
  48086. source: "./media/characters/wubs/front.svg",
  48087. extra: 1345/1325,
  48088. bottom: 70/1415
  48089. }
  48090. },
  48091. back: {
  48092. height: math.unit(6 + 2/12, "feet"),
  48093. weight: math.unit(210, "lb"),
  48094. name: "Back",
  48095. image: {
  48096. source: "./media/characters/wubs/back.svg",
  48097. extra: 1296/1275,
  48098. bottom: 58/1354
  48099. }
  48100. },
  48101. },
  48102. [
  48103. {
  48104. name: "Normal",
  48105. height: math.unit(6 + 2/12, "feet"),
  48106. default: true
  48107. },
  48108. {
  48109. name: "Macro",
  48110. height: math.unit(1000, "feet")
  48111. },
  48112. {
  48113. name: "Megamacro",
  48114. height: math.unit(1, "mile")
  48115. },
  48116. ]
  48117. ))
  48118. characterMakers.push(() => makeCharacter(
  48119. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48120. {
  48121. front: {
  48122. height: math.unit(4, "feet"),
  48123. weight: math.unit(120, "lb"),
  48124. name: "Front",
  48125. image: {
  48126. source: "./media/characters/blue/front.svg",
  48127. extra: 1636/1525,
  48128. bottom: 43/1679
  48129. }
  48130. },
  48131. back: {
  48132. height: math.unit(4, "feet"),
  48133. weight: math.unit(120, "lb"),
  48134. name: "Back",
  48135. image: {
  48136. source: "./media/characters/blue/back.svg",
  48137. extra: 1660/1560,
  48138. bottom: 57/1717
  48139. }
  48140. },
  48141. paws: {
  48142. height: math.unit(0.826, "feet"),
  48143. name: "Paws",
  48144. image: {
  48145. source: "./media/characters/blue/paws.svg"
  48146. }
  48147. },
  48148. },
  48149. [
  48150. {
  48151. name: "Micro",
  48152. height: math.unit(3, "inches")
  48153. },
  48154. {
  48155. name: "Normal",
  48156. height: math.unit(4, "feet"),
  48157. default: true
  48158. },
  48159. {
  48160. name: "Femenine Form",
  48161. height: math.unit(14, "feet")
  48162. },
  48163. {
  48164. name: "Werebat Form",
  48165. height: math.unit(18, "feet")
  48166. },
  48167. ]
  48168. ))
  48169. characterMakers.push(() => makeCharacter(
  48170. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48171. {
  48172. female: {
  48173. height: math.unit(7 + 4/12, "feet"),
  48174. weight: math.unit(243, "lb"),
  48175. name: "Female",
  48176. image: {
  48177. source: "./media/characters/kaya/female.svg",
  48178. extra: 975/898,
  48179. bottom: 34/1009
  48180. }
  48181. },
  48182. herm: {
  48183. height: math.unit(7 + 4/12, "feet"),
  48184. weight: math.unit(243, "lb"),
  48185. name: "Herm",
  48186. image: {
  48187. source: "./media/characters/kaya/herm.svg",
  48188. extra: 975/898,
  48189. bottom: 34/1009
  48190. }
  48191. },
  48192. },
  48193. [
  48194. {
  48195. name: "Normal",
  48196. height: math.unit(7 + 4/12, "feet"),
  48197. default: true
  48198. },
  48199. ]
  48200. ))
  48201. characterMakers.push(() => makeCharacter(
  48202. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48203. {
  48204. female: {
  48205. height: math.unit(9 + 4/12, "feet"),
  48206. weight: math.unit(398, "lb"),
  48207. name: "Female",
  48208. image: {
  48209. source: "./media/characters/kassandra/female.svg",
  48210. extra: 908/839,
  48211. bottom: 61/969
  48212. }
  48213. },
  48214. intersex: {
  48215. height: math.unit(9 + 4/12, "feet"),
  48216. weight: math.unit(398, "lb"),
  48217. name: "Intersex",
  48218. image: {
  48219. source: "./media/characters/kassandra/intersex.svg",
  48220. extra: 908/839,
  48221. bottom: 61/969
  48222. }
  48223. },
  48224. },
  48225. [
  48226. {
  48227. name: "Normal",
  48228. height: math.unit(9 + 4/12, "feet"),
  48229. default: true
  48230. },
  48231. ]
  48232. ))
  48233. characterMakers.push(() => makeCharacter(
  48234. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48235. {
  48236. front: {
  48237. height: math.unit(3, "meters"),
  48238. name: "Front",
  48239. image: {
  48240. source: "./media/characters/amy/front.svg",
  48241. extra: 1380/1343,
  48242. bottom: 70/1450
  48243. }
  48244. },
  48245. back: {
  48246. height: math.unit(3, "meters"),
  48247. name: "Back",
  48248. image: {
  48249. source: "./media/characters/amy/back.svg",
  48250. extra: 1380/1347,
  48251. bottom: 66/1446
  48252. }
  48253. },
  48254. },
  48255. [
  48256. {
  48257. name: "Normal",
  48258. height: math.unit(3, "meters"),
  48259. default: true
  48260. },
  48261. ]
  48262. ))
  48263. characterMakers.push(() => makeCharacter(
  48264. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48265. {
  48266. side: {
  48267. height: math.unit(47, "cm"),
  48268. weight: math.unit(10.8, "kg"),
  48269. name: "Side",
  48270. image: {
  48271. source: "./media/characters/alphaschakal/side.svg",
  48272. extra: 1058/568,
  48273. bottom: 62/1120
  48274. }
  48275. },
  48276. back: {
  48277. height: math.unit(78, "cm"),
  48278. weight: math.unit(10.8, "kg"),
  48279. name: "Back",
  48280. image: {
  48281. source: "./media/characters/alphaschakal/back.svg",
  48282. extra: 1102/942,
  48283. bottom: 185/1287
  48284. }
  48285. },
  48286. head: {
  48287. height: math.unit(28, "cm"),
  48288. name: "Head",
  48289. image: {
  48290. source: "./media/characters/alphaschakal/head.svg",
  48291. extra: 696/508,
  48292. bottom: 0/696
  48293. }
  48294. },
  48295. paw: {
  48296. height: math.unit(16, "cm"),
  48297. name: "Paw",
  48298. image: {
  48299. source: "./media/characters/alphaschakal/paw.svg"
  48300. }
  48301. },
  48302. },
  48303. [
  48304. {
  48305. name: "Normal",
  48306. height: math.unit(47, "cm"),
  48307. default: true
  48308. },
  48309. {
  48310. name: "Macro",
  48311. height: math.unit(340, "cm")
  48312. },
  48313. ]
  48314. ))
  48315. characterMakers.push(() => makeCharacter(
  48316. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48317. {
  48318. front: {
  48319. height: math.unit(36, "earths"),
  48320. name: "Front",
  48321. image: {
  48322. source: "./media/characters/ecobyss/front.svg",
  48323. extra: 1282/1215,
  48324. bottom: 11/1293
  48325. }
  48326. },
  48327. back: {
  48328. height: math.unit(36, "earths"),
  48329. name: "Back",
  48330. image: {
  48331. source: "./media/characters/ecobyss/back.svg",
  48332. extra: 1291/1222,
  48333. bottom: 8/1299
  48334. }
  48335. },
  48336. },
  48337. [
  48338. {
  48339. name: "Normal",
  48340. height: math.unit(36, "earths"),
  48341. default: true
  48342. },
  48343. ]
  48344. ))
  48345. characterMakers.push(() => makeCharacter(
  48346. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48347. {
  48348. front: {
  48349. height: math.unit(12, "feet"),
  48350. name: "Front",
  48351. image: {
  48352. source: "./media/characters/vasuk/front.svg",
  48353. extra: 1326/1207,
  48354. bottom: 64/1390
  48355. }
  48356. },
  48357. },
  48358. [
  48359. {
  48360. name: "Normal",
  48361. height: math.unit(12, "feet"),
  48362. default: true
  48363. },
  48364. ]
  48365. ))
  48366. characterMakers.push(() => makeCharacter(
  48367. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48368. {
  48369. side: {
  48370. height: math.unit(100, "feet"),
  48371. name: "Side",
  48372. image: {
  48373. source: "./media/characters/linneaus/side.svg",
  48374. extra: 987/807,
  48375. bottom: 47/1034
  48376. }
  48377. },
  48378. },
  48379. [
  48380. {
  48381. name: "Macro",
  48382. height: math.unit(100, "feet"),
  48383. default: true
  48384. },
  48385. ]
  48386. ))
  48387. characterMakers.push(() => makeCharacter(
  48388. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48389. {
  48390. front: {
  48391. height: math.unit(8, "feet"),
  48392. weight: math.unit(1200, "lb"),
  48393. name: "Front",
  48394. image: {
  48395. source: "./media/characters/nyterious-daligdig/front.svg",
  48396. extra: 1284/1094,
  48397. bottom: 84/1368
  48398. }
  48399. },
  48400. back: {
  48401. height: math.unit(8, "feet"),
  48402. weight: math.unit(1200, "lb"),
  48403. name: "Back",
  48404. image: {
  48405. source: "./media/characters/nyterious-daligdig/back.svg",
  48406. extra: 1301/1121,
  48407. bottom: 129/1430
  48408. }
  48409. },
  48410. mouth: {
  48411. height: math.unit(1.464, "feet"),
  48412. name: "Mouth",
  48413. image: {
  48414. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48415. }
  48416. },
  48417. },
  48418. [
  48419. {
  48420. name: "Small",
  48421. height: math.unit(8, "feet"),
  48422. default: true
  48423. },
  48424. {
  48425. name: "Normal",
  48426. height: math.unit(15, "feet")
  48427. },
  48428. {
  48429. name: "Macro",
  48430. height: math.unit(90, "feet")
  48431. },
  48432. ]
  48433. ))
  48434. characterMakers.push(() => makeCharacter(
  48435. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48436. {
  48437. front: {
  48438. height: math.unit(7 + 4/12, "feet"),
  48439. weight: math.unit(252, "lb"),
  48440. name: "Front",
  48441. image: {
  48442. source: "./media/characters/bandel/front.svg",
  48443. extra: 1946/1775,
  48444. bottom: 26/1972
  48445. }
  48446. },
  48447. back: {
  48448. height: math.unit(7 + 4/12, "feet"),
  48449. weight: math.unit(252, "lb"),
  48450. name: "Back",
  48451. image: {
  48452. source: "./media/characters/bandel/back.svg",
  48453. extra: 1940/1770,
  48454. bottom: 25/1965
  48455. }
  48456. },
  48457. maw: {
  48458. height: math.unit(2.15, "feet"),
  48459. name: "Maw",
  48460. image: {
  48461. source: "./media/characters/bandel/maw.svg"
  48462. }
  48463. },
  48464. stomach: {
  48465. height: math.unit(1.95, "feet"),
  48466. name: "Stomach",
  48467. image: {
  48468. source: "./media/characters/bandel/stomach.svg"
  48469. }
  48470. },
  48471. },
  48472. [
  48473. {
  48474. name: "Normal",
  48475. height: math.unit(7 + 4/12, "feet"),
  48476. default: true
  48477. },
  48478. ]
  48479. ))
  48480. characterMakers.push(() => makeCharacter(
  48481. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48482. {
  48483. front: {
  48484. height: math.unit(10 + 5/12, "feet"),
  48485. weight: math.unit(773.5, "kg"),
  48486. name: "Front",
  48487. image: {
  48488. source: "./media/characters/zed/front.svg",
  48489. extra: 987/941,
  48490. bottom: 52/1039
  48491. }
  48492. },
  48493. },
  48494. [
  48495. {
  48496. name: "Short",
  48497. height: math.unit(5 + 4/12, "feet")
  48498. },
  48499. {
  48500. name: "Average",
  48501. height: math.unit(10 + 5/12, "feet"),
  48502. default: true
  48503. },
  48504. {
  48505. name: "Mini-Macro",
  48506. height: math.unit(24 + 9/12, "feet")
  48507. },
  48508. {
  48509. name: "Macro",
  48510. height: math.unit(249, "feet")
  48511. },
  48512. {
  48513. name: "Mega-Macro",
  48514. height: math.unit(12490, "feet")
  48515. },
  48516. {
  48517. name: "Giga-Macro",
  48518. height: math.unit(24.9, "miles")
  48519. },
  48520. {
  48521. name: "Tera-Macro",
  48522. height: math.unit(24900, "miles")
  48523. },
  48524. {
  48525. name: "Cosmic Scale",
  48526. height: math.unit(38.9, "lightyears")
  48527. },
  48528. {
  48529. name: "Universal Scale",
  48530. height: math.unit(138e12, "lightyears")
  48531. },
  48532. ]
  48533. ))
  48534. characterMakers.push(() => makeCharacter(
  48535. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48536. {
  48537. front: {
  48538. height: math.unit(1561, "inches"),
  48539. name: "Front",
  48540. image: {
  48541. source: "./media/characters/ivan/front.svg",
  48542. extra: 1126/1071,
  48543. bottom: 26/1152
  48544. }
  48545. },
  48546. back: {
  48547. height: math.unit(1561, "inches"),
  48548. name: "Back",
  48549. image: {
  48550. source: "./media/characters/ivan/back.svg",
  48551. extra: 1134/1079,
  48552. bottom: 30/1164
  48553. }
  48554. },
  48555. },
  48556. [
  48557. {
  48558. name: "Normal",
  48559. height: math.unit(1561, "inches"),
  48560. default: true
  48561. },
  48562. ]
  48563. ))
  48564. characterMakers.push(() => makeCharacter(
  48565. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48566. {
  48567. front: {
  48568. height: math.unit(5 + 7/12, "feet"),
  48569. weight: math.unit(150, "lb"),
  48570. name: "Front",
  48571. image: {
  48572. source: "./media/characters/robin-arctic-hare/front.svg",
  48573. extra: 1148/974,
  48574. bottom: 20/1168
  48575. }
  48576. },
  48577. },
  48578. [
  48579. {
  48580. name: "Normal",
  48581. height: math.unit(5 + 7/12, "feet"),
  48582. default: true
  48583. },
  48584. ]
  48585. ))
  48586. characterMakers.push(() => makeCharacter(
  48587. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48588. {
  48589. side: {
  48590. height: math.unit(5, "feet"),
  48591. name: "Side",
  48592. image: {
  48593. source: "./media/characters/birch/side.svg",
  48594. extra: 985/796,
  48595. bottom: 111/1096
  48596. }
  48597. },
  48598. },
  48599. [
  48600. {
  48601. name: "Normal",
  48602. height: math.unit(5, "feet"),
  48603. default: true
  48604. },
  48605. ]
  48606. ))
  48607. characterMakers.push(() => makeCharacter(
  48608. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48609. {
  48610. front: {
  48611. height: math.unit(4, "feet"),
  48612. name: "Front",
  48613. image: {
  48614. source: "./media/characters/rasp/front.svg",
  48615. extra: 561/478,
  48616. bottom: 74/635
  48617. }
  48618. },
  48619. },
  48620. [
  48621. {
  48622. name: "Normal",
  48623. height: math.unit(4, "feet"),
  48624. default: true
  48625. },
  48626. ]
  48627. ))
  48628. characterMakers.push(() => makeCharacter(
  48629. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48630. {
  48631. front: {
  48632. height: math.unit(4 + 6/12, "feet"),
  48633. name: "Front",
  48634. image: {
  48635. source: "./media/characters/agatha/front.svg",
  48636. extra: 947/933,
  48637. bottom: 42/989
  48638. }
  48639. },
  48640. back: {
  48641. height: math.unit(4 + 6/12, "feet"),
  48642. name: "Back",
  48643. image: {
  48644. source: "./media/characters/agatha/back.svg",
  48645. extra: 935/922,
  48646. bottom: 48/983
  48647. }
  48648. },
  48649. },
  48650. [
  48651. {
  48652. name: "Normal",
  48653. height: math.unit(4 + 6 /12, "feet"),
  48654. default: true
  48655. },
  48656. {
  48657. name: "Max Size",
  48658. height: math.unit(500, "feet")
  48659. },
  48660. ]
  48661. ))
  48662. characterMakers.push(() => makeCharacter(
  48663. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48664. {
  48665. side: {
  48666. height: math.unit(30, "feet"),
  48667. name: "Side",
  48668. image: {
  48669. source: "./media/characters/roggy/side.svg",
  48670. extra: 909/643,
  48671. bottom: 63/972
  48672. }
  48673. },
  48674. lounging: {
  48675. height: math.unit(20, "feet"),
  48676. name: "Lounging",
  48677. image: {
  48678. source: "./media/characters/roggy/lounging.svg",
  48679. extra: 643/479,
  48680. bottom: 145/788
  48681. }
  48682. },
  48683. handpaw: {
  48684. height: math.unit(13.1, "feet"),
  48685. name: "Handpaw",
  48686. image: {
  48687. source: "./media/characters/roggy/handpaw.svg"
  48688. }
  48689. },
  48690. footpaw: {
  48691. height: math.unit(15.8, "feet"),
  48692. name: "Footpaw",
  48693. image: {
  48694. source: "./media/characters/roggy/footpaw.svg"
  48695. }
  48696. },
  48697. },
  48698. [
  48699. {
  48700. name: "Menacing",
  48701. height: math.unit(30, "feet"),
  48702. default: true
  48703. },
  48704. ]
  48705. ))
  48706. characterMakers.push(() => makeCharacter(
  48707. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48708. {
  48709. front: {
  48710. height: math.unit(5 + 7/12, "feet"),
  48711. weight: math.unit(135, "lb"),
  48712. name: "Front",
  48713. image: {
  48714. source: "./media/characters/naomi/front.svg",
  48715. extra: 1209/1154,
  48716. bottom: 129/1338
  48717. }
  48718. },
  48719. back: {
  48720. height: math.unit(5 + 7/12, "feet"),
  48721. weight: math.unit(135, "lb"),
  48722. name: "Back",
  48723. image: {
  48724. source: "./media/characters/naomi/back.svg",
  48725. extra: 1252/1190,
  48726. bottom: 23/1275
  48727. }
  48728. },
  48729. },
  48730. [
  48731. {
  48732. name: "Normal",
  48733. height: math.unit(5 + 7 /12, "feet"),
  48734. default: true
  48735. },
  48736. ]
  48737. ))
  48738. characterMakers.push(() => makeCharacter(
  48739. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48740. {
  48741. side: {
  48742. height: math.unit(35, "meters"),
  48743. name: "Side",
  48744. image: {
  48745. source: "./media/characters/kimpi/side.svg",
  48746. extra: 419/382,
  48747. bottom: 63/482
  48748. }
  48749. },
  48750. hand: {
  48751. height: math.unit(8.96, "meters"),
  48752. name: "Hand",
  48753. image: {
  48754. source: "./media/characters/kimpi/hand.svg"
  48755. }
  48756. },
  48757. },
  48758. [
  48759. {
  48760. name: "Normal",
  48761. height: math.unit(35, "meters"),
  48762. default: true
  48763. },
  48764. ]
  48765. ))
  48766. characterMakers.push(() => makeCharacter(
  48767. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48768. {
  48769. front: {
  48770. height: math.unit(4 + 4/12, "feet"),
  48771. name: "Front",
  48772. image: {
  48773. source: "./media/characters/pepper-purrloin/front.svg",
  48774. extra: 1141/1024,
  48775. bottom: 21/1162
  48776. }
  48777. },
  48778. },
  48779. [
  48780. {
  48781. name: "Normal",
  48782. height: math.unit(4 + 4/12, "feet"),
  48783. default: true
  48784. },
  48785. ]
  48786. ))
  48787. characterMakers.push(() => makeCharacter(
  48788. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48789. {
  48790. front: {
  48791. height: math.unit(6 + 2/12, "feet"),
  48792. name: "Front",
  48793. image: {
  48794. source: "./media/characters/raphael/front.svg",
  48795. extra: 1101/962,
  48796. bottom: 59/1160
  48797. }
  48798. },
  48799. },
  48800. [
  48801. {
  48802. name: "Normal",
  48803. height: math.unit(6 + 2/12, "feet"),
  48804. default: true
  48805. },
  48806. ]
  48807. ))
  48808. characterMakers.push(() => makeCharacter(
  48809. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48810. {
  48811. front: {
  48812. height: math.unit(6, "feet"),
  48813. weight: math.unit(150, "lb"),
  48814. name: "Front",
  48815. image: {
  48816. source: "./media/characters/victor-williams/front.svg",
  48817. extra: 1894/1825,
  48818. bottom: 67/1961
  48819. }
  48820. },
  48821. },
  48822. [
  48823. {
  48824. name: "Normal",
  48825. height: math.unit(6, "feet"),
  48826. default: true
  48827. },
  48828. ]
  48829. ))
  48830. characterMakers.push(() => makeCharacter(
  48831. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48832. {
  48833. front: {
  48834. height: math.unit(5 + 8/12, "feet"),
  48835. weight: math.unit(150, "lb"),
  48836. name: "Front",
  48837. image: {
  48838. source: "./media/characters/rachel/front.svg",
  48839. extra: 1902/1787,
  48840. bottom: 46/1948
  48841. }
  48842. },
  48843. },
  48844. [
  48845. {
  48846. name: "Base Height",
  48847. height: math.unit(5 + 8/12, "feet"),
  48848. default: true
  48849. },
  48850. {
  48851. name: "Macro",
  48852. height: math.unit(200, "feet")
  48853. },
  48854. {
  48855. name: "Mega Macro",
  48856. height: math.unit(1, "mile")
  48857. },
  48858. {
  48859. name: "Giga Macro",
  48860. height: math.unit(1500, "miles")
  48861. },
  48862. {
  48863. name: "Tera Macro",
  48864. height: math.unit(8000, "miles")
  48865. },
  48866. {
  48867. name: "Tera Macro+",
  48868. height: math.unit(2e5, "miles")
  48869. },
  48870. ]
  48871. ))
  48872. characterMakers.push(() => makeCharacter(
  48873. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48874. {
  48875. front: {
  48876. height: math.unit(6.5, "feet"),
  48877. name: "Front",
  48878. image: {
  48879. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48880. extra: 860/819,
  48881. bottom: 307/1167
  48882. }
  48883. },
  48884. back: {
  48885. height: math.unit(6.5, "feet"),
  48886. name: "Back",
  48887. image: {
  48888. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48889. extra: 880/837,
  48890. bottom: 395/1275
  48891. }
  48892. },
  48893. sleeping: {
  48894. height: math.unit(2.79, "feet"),
  48895. name: "Sleeping",
  48896. image: {
  48897. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48898. extra: 465/383,
  48899. bottom: 263/728
  48900. }
  48901. },
  48902. maw: {
  48903. height: math.unit(2.52, "feet"),
  48904. name: "Maw",
  48905. image: {
  48906. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48907. }
  48908. },
  48909. },
  48910. [
  48911. {
  48912. name: "Normal",
  48913. height: math.unit(6.5, "feet"),
  48914. default: true
  48915. },
  48916. ]
  48917. ))
  48918. characterMakers.push(() => makeCharacter(
  48919. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48920. {
  48921. front: {
  48922. height: math.unit(5, "feet"),
  48923. name: "Front",
  48924. image: {
  48925. source: "./media/characters/nova-nerium/front.svg",
  48926. extra: 1548/1392,
  48927. bottom: 374/1922
  48928. }
  48929. },
  48930. back: {
  48931. height: math.unit(5, "feet"),
  48932. name: "Back",
  48933. image: {
  48934. source: "./media/characters/nova-nerium/back.svg",
  48935. extra: 1658/1468,
  48936. bottom: 257/1915
  48937. }
  48938. },
  48939. },
  48940. [
  48941. {
  48942. name: "Normal",
  48943. height: math.unit(5, "feet"),
  48944. default: true
  48945. },
  48946. ]
  48947. ))
  48948. characterMakers.push(() => makeCharacter(
  48949. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48950. {
  48951. front: {
  48952. height: math.unit(5 + 4/12, "feet"),
  48953. name: "Front",
  48954. image: {
  48955. source: "./media/characters/ashe-pyriph/front.svg",
  48956. extra: 1935/1747,
  48957. bottom: 60/1995
  48958. }
  48959. },
  48960. },
  48961. [
  48962. {
  48963. name: "Normal",
  48964. height: math.unit(5 + 4/12, "feet"),
  48965. default: true
  48966. },
  48967. ]
  48968. ))
  48969. characterMakers.push(() => makeCharacter(
  48970. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48971. {
  48972. front: {
  48973. height: math.unit(8.7, "feet"),
  48974. name: "Front",
  48975. image: {
  48976. source: "./media/characters/flicker-wisp/front.svg",
  48977. extra: 1835/1613,
  48978. bottom: 449/2284
  48979. }
  48980. },
  48981. side: {
  48982. height: math.unit(8.7, "feet"),
  48983. name: "Side",
  48984. image: {
  48985. source: "./media/characters/flicker-wisp/side.svg",
  48986. extra: 1841/1642,
  48987. bottom: 336/2177
  48988. },
  48989. default: true
  48990. },
  48991. maw: {
  48992. height: math.unit(3.35, "feet"),
  48993. name: "Maw",
  48994. image: {
  48995. source: "./media/characters/flicker-wisp/maw.svg",
  48996. extra: 2338/1506,
  48997. bottom: 0/2338
  48998. }
  48999. },
  49000. ovipositor: {
  49001. height: math.unit(4.95, "feet"),
  49002. name: "Ovipositor",
  49003. image: {
  49004. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49005. }
  49006. },
  49007. egg: {
  49008. height: math.unit(0.385, "feet"),
  49009. weight: math.unit(2, "lb"),
  49010. name: "Egg",
  49011. image: {
  49012. source: "./media/characters/flicker-wisp/egg.svg"
  49013. }
  49014. },
  49015. },
  49016. [
  49017. {
  49018. name: "Normal",
  49019. height: math.unit(8.7, "feet"),
  49020. default: true
  49021. },
  49022. ]
  49023. ))
  49024. characterMakers.push(() => makeCharacter(
  49025. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49026. {
  49027. side: {
  49028. height: math.unit(11, "feet"),
  49029. name: "Side",
  49030. image: {
  49031. source: "./media/characters/faefnul/side.svg",
  49032. extra: 1100/1007,
  49033. bottom: 0/1100
  49034. }
  49035. },
  49036. },
  49037. [
  49038. {
  49039. name: "Normal",
  49040. height: math.unit(11, "feet"),
  49041. default: true
  49042. },
  49043. ]
  49044. ))
  49045. characterMakers.push(() => makeCharacter(
  49046. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49047. {
  49048. front: {
  49049. height: math.unit(6 + 2/12, "feet"),
  49050. name: "Front",
  49051. image: {
  49052. source: "./media/characters/shady/front.svg",
  49053. extra: 502/461,
  49054. bottom: 9/511
  49055. }
  49056. },
  49057. kneeling: {
  49058. height: math.unit(4.6, "feet"),
  49059. name: "Kneeling",
  49060. image: {
  49061. source: "./media/characters/shady/kneeling.svg",
  49062. extra: 1328/1219,
  49063. bottom: 117/1445
  49064. }
  49065. },
  49066. maw: {
  49067. height: math.unit(2, "feet"),
  49068. name: "Maw",
  49069. image: {
  49070. source: "./media/characters/shady/maw.svg"
  49071. }
  49072. },
  49073. },
  49074. [
  49075. {
  49076. name: "Nano",
  49077. height: math.unit(1, "mm")
  49078. },
  49079. {
  49080. name: "Micro",
  49081. height: math.unit(12, "mm")
  49082. },
  49083. {
  49084. name: "Tiny",
  49085. height: math.unit(3, "inches")
  49086. },
  49087. {
  49088. name: "Normal",
  49089. height: math.unit(6 + 2/12, "feet"),
  49090. default: true
  49091. },
  49092. {
  49093. name: "Big",
  49094. height: math.unit(15, "feet")
  49095. },
  49096. {
  49097. name: "Macro",
  49098. height: math.unit(150, "feet")
  49099. },
  49100. {
  49101. name: "Titanic",
  49102. height: math.unit(500, "feet")
  49103. },
  49104. ]
  49105. ))
  49106. characterMakers.push(() => makeCharacter(
  49107. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49108. {
  49109. front: {
  49110. height: math.unit(12, "feet"),
  49111. name: "Front",
  49112. image: {
  49113. source: "./media/characters/fenrir/front.svg",
  49114. extra: 968/875,
  49115. bottom: 22/990
  49116. }
  49117. },
  49118. },
  49119. [
  49120. {
  49121. name: "Big",
  49122. height: math.unit(12, "feet"),
  49123. default: true
  49124. },
  49125. ]
  49126. ))
  49127. characterMakers.push(() => makeCharacter(
  49128. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49129. {
  49130. front: {
  49131. height: math.unit(5 + 4/12, "feet"),
  49132. name: "Front",
  49133. image: {
  49134. source: "./media/characters/makar/front.svg",
  49135. extra: 1181/1112,
  49136. bottom: 78/1259
  49137. }
  49138. },
  49139. },
  49140. [
  49141. {
  49142. name: "Normal",
  49143. height: math.unit(5 + 4/12, "feet"),
  49144. default: true
  49145. },
  49146. ]
  49147. ))
  49148. characterMakers.push(() => makeCharacter(
  49149. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49150. {
  49151. front: {
  49152. height: math.unit(5 + 7/12, "feet"),
  49153. name: "Front",
  49154. image: {
  49155. source: "./media/characters/callow/front.svg",
  49156. extra: 1482/1304,
  49157. bottom: 23/1505
  49158. }
  49159. },
  49160. back: {
  49161. height: math.unit(5 + 7/12, "feet"),
  49162. name: "Back",
  49163. image: {
  49164. source: "./media/characters/callow/back.svg",
  49165. extra: 1484/1296,
  49166. bottom: 25/1509
  49167. }
  49168. },
  49169. },
  49170. [
  49171. {
  49172. name: "Micro",
  49173. height: math.unit(3, "inches"),
  49174. default: true
  49175. },
  49176. {
  49177. name: "Normal",
  49178. height: math.unit(5 + 7/12, "feet")
  49179. },
  49180. ]
  49181. ))
  49182. characterMakers.push(() => makeCharacter(
  49183. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49184. {
  49185. front: {
  49186. height: math.unit(6 + 2/12, "feet"),
  49187. name: "Front",
  49188. image: {
  49189. source: "./media/characters/natel/front.svg",
  49190. extra: 1833/1692,
  49191. bottom: 166/1999
  49192. }
  49193. },
  49194. },
  49195. [
  49196. {
  49197. name: "Normal",
  49198. height: math.unit(6 + 2/12, "feet"),
  49199. default: true
  49200. },
  49201. ]
  49202. ))
  49203. characterMakers.push(() => makeCharacter(
  49204. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49205. {
  49206. front: {
  49207. height: math.unit(1.75, "meters"),
  49208. name: "Front",
  49209. image: {
  49210. source: "./media/characters/misu/front.svg",
  49211. extra: 1690/1558,
  49212. bottom: 234/1924
  49213. }
  49214. },
  49215. back: {
  49216. height: math.unit(1.75, "meters"),
  49217. name: "Back",
  49218. image: {
  49219. source: "./media/characters/misu/back.svg",
  49220. extra: 1762/1618,
  49221. bottom: 146/1908
  49222. }
  49223. },
  49224. frontNude: {
  49225. height: math.unit(1.75, "meters"),
  49226. name: "Front (Nude)",
  49227. image: {
  49228. source: "./media/characters/misu/front-nude.svg",
  49229. extra: 1690/1558,
  49230. bottom: 234/1924
  49231. }
  49232. },
  49233. backNude: {
  49234. height: math.unit(1.75, "meters"),
  49235. name: "Back (Nude)",
  49236. image: {
  49237. source: "./media/characters/misu/back-nude.svg",
  49238. extra: 1762/1618,
  49239. bottom: 146/1908
  49240. }
  49241. },
  49242. frontErect: {
  49243. height: math.unit(1.75, "meters"),
  49244. name: "Front (Erect)",
  49245. image: {
  49246. source: "./media/characters/misu/front-erect.svg",
  49247. extra: 1690/1558,
  49248. bottom: 234/1924
  49249. }
  49250. },
  49251. maw: {
  49252. height: math.unit(0.47, "meters"),
  49253. name: "Maw",
  49254. image: {
  49255. source: "./media/characters/misu/maw.svg"
  49256. }
  49257. },
  49258. head: {
  49259. height: math.unit(0.35, "meters"),
  49260. name: "Head",
  49261. image: {
  49262. source: "./media/characters/misu/head.svg"
  49263. }
  49264. },
  49265. rear: {
  49266. height: math.unit(0.47, "meters"),
  49267. name: "Rear",
  49268. image: {
  49269. source: "./media/characters/misu/rear.svg"
  49270. }
  49271. },
  49272. },
  49273. [
  49274. {
  49275. name: "Normal",
  49276. height: math.unit(1.75, "meters")
  49277. },
  49278. {
  49279. name: "Not good for the people",
  49280. height: math.unit(42, "meters")
  49281. },
  49282. {
  49283. name: "Not good for the neighborhood",
  49284. height: math.unit(135, "meters")
  49285. },
  49286. {
  49287. name: "Bit bigger problem",
  49288. height: math.unit(380, "meters"),
  49289. default: true
  49290. },
  49291. {
  49292. name: "Not good for the city",
  49293. height: math.unit(1.5, "km")
  49294. },
  49295. {
  49296. name: "Not good for the county",
  49297. height: math.unit(5.5, "km")
  49298. },
  49299. {
  49300. name: "Not good for the state",
  49301. height: math.unit(25, "km")
  49302. },
  49303. {
  49304. name: "Not good for the country",
  49305. height: math.unit(125, "km")
  49306. },
  49307. {
  49308. name: "Not good for the continent",
  49309. height: math.unit(2100, "km")
  49310. },
  49311. {
  49312. name: "Not good for the planet",
  49313. height: math.unit(35000, "km")
  49314. },
  49315. {
  49316. name: "Just no",
  49317. height: math.unit(8.5e18, "km")
  49318. },
  49319. ]
  49320. ))
  49321. characterMakers.push(() => makeCharacter(
  49322. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49323. {
  49324. front: {
  49325. height: math.unit(6.5, "feet"),
  49326. name: "Front",
  49327. image: {
  49328. source: "./media/characters/poppy/front.svg",
  49329. extra: 1878/1812,
  49330. bottom: 43/1921
  49331. }
  49332. },
  49333. feet: {
  49334. height: math.unit(1.06, "feet"),
  49335. name: "Feet",
  49336. image: {
  49337. source: "./media/characters/poppy/feet.svg",
  49338. extra: 1083/1083,
  49339. bottom: 87/1170
  49340. }
  49341. },
  49342. },
  49343. [
  49344. {
  49345. name: "Human",
  49346. height: math.unit(6.5, "feet")
  49347. },
  49348. {
  49349. name: "Default",
  49350. height: math.unit(300, "feet"),
  49351. default: true
  49352. },
  49353. {
  49354. name: "Huge",
  49355. height: math.unit(850, "feet")
  49356. },
  49357. {
  49358. name: "Mega",
  49359. height: math.unit(8000, "feet")
  49360. },
  49361. {
  49362. name: "Giga",
  49363. height: math.unit(300, "miles")
  49364. },
  49365. ]
  49366. ))
  49367. characterMakers.push(() => makeCharacter(
  49368. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49369. {
  49370. bipedal: {
  49371. height: math.unit(7, "feet"),
  49372. name: "Bipedal",
  49373. image: {
  49374. source: "./media/characters/zener/bipedal.svg",
  49375. extra: 874/805,
  49376. bottom: 109/983
  49377. }
  49378. },
  49379. quadrupedal: {
  49380. height: math.unit(4.64, "feet"),
  49381. name: "Quadrupedal",
  49382. image: {
  49383. source: "./media/characters/zener/quadrupedal.svg",
  49384. extra: 638/507,
  49385. bottom: 190/828
  49386. }
  49387. },
  49388. cock: {
  49389. height: math.unit(18, "inches"),
  49390. name: "Cock",
  49391. image: {
  49392. source: "./media/characters/zener/cock.svg"
  49393. }
  49394. },
  49395. },
  49396. [
  49397. {
  49398. name: "Normal",
  49399. height: math.unit(7, "feet"),
  49400. default: true
  49401. },
  49402. ]
  49403. ))
  49404. characterMakers.push(() => makeCharacter(
  49405. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49406. {
  49407. nude: {
  49408. height: math.unit(5 + 6/12, "feet"),
  49409. name: "Nude",
  49410. image: {
  49411. source: "./media/characters/charlie-dog/nude.svg",
  49412. extra: 768/734,
  49413. bottom: 26/794
  49414. }
  49415. },
  49416. dressed: {
  49417. height: math.unit(5 + 6/12, "feet"),
  49418. name: "Dressed",
  49419. image: {
  49420. source: "./media/characters/charlie-dog/dressed.svg",
  49421. extra: 768/734,
  49422. bottom: 26/794
  49423. }
  49424. },
  49425. },
  49426. [
  49427. {
  49428. name: "Normal",
  49429. height: math.unit(5 + 6/12, "feet"),
  49430. default: true
  49431. },
  49432. ]
  49433. ))
  49434. characterMakers.push(() => makeCharacter(
  49435. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49436. {
  49437. front: {
  49438. height: math.unit(6 + 4/12, "feet"),
  49439. name: "Front",
  49440. image: {
  49441. source: "./media/characters/ir'istrasz/front.svg",
  49442. extra: 1014/977,
  49443. bottom: 65/1079
  49444. }
  49445. },
  49446. back: {
  49447. height: math.unit(6 + 4/12, "feet"),
  49448. name: "Back",
  49449. image: {
  49450. source: "./media/characters/ir'istrasz/back.svg",
  49451. extra: 1024/992,
  49452. bottom: 34/1058
  49453. }
  49454. },
  49455. },
  49456. [
  49457. {
  49458. name: "Normal",
  49459. height: math.unit(6 + 4/12, "feet"),
  49460. default: true
  49461. },
  49462. ]
  49463. ))
  49464. characterMakers.push(() => makeCharacter(
  49465. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49466. {
  49467. front: {
  49468. height: math.unit(5 + 8/12, "feet"),
  49469. name: "Front",
  49470. image: {
  49471. source: "./media/characters/dee-ditto/front.svg",
  49472. extra: 1874/1785,
  49473. bottom: 68/1942
  49474. }
  49475. },
  49476. back: {
  49477. height: math.unit(5 + 8/12, "feet"),
  49478. name: "Back",
  49479. image: {
  49480. source: "./media/characters/dee-ditto/back.svg",
  49481. extra: 1870/1783,
  49482. bottom: 77/1947
  49483. }
  49484. },
  49485. },
  49486. [
  49487. {
  49488. name: "Normal",
  49489. height: math.unit(5 + 8/12, "feet"),
  49490. default: true
  49491. },
  49492. ]
  49493. ))
  49494. characterMakers.push(() => makeCharacter(
  49495. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49496. {
  49497. front: {
  49498. height: math.unit(7 + 6/12, "feet"),
  49499. name: "Front",
  49500. image: {
  49501. source: "./media/characters/fey/front.svg",
  49502. extra: 995/979,
  49503. bottom: 30/1025
  49504. }
  49505. },
  49506. back: {
  49507. height: math.unit(7 + 6/12, "feet"),
  49508. name: "Back",
  49509. image: {
  49510. source: "./media/characters/fey/back.svg",
  49511. extra: 1079/1008,
  49512. bottom: 5/1084
  49513. }
  49514. },
  49515. dressed: {
  49516. height: math.unit(7 + 6/12, "feet"),
  49517. name: "Dressed",
  49518. image: {
  49519. source: "./media/characters/fey/dressed.svg",
  49520. extra: 995/979,
  49521. bottom: 30/1025
  49522. }
  49523. },
  49524. },
  49525. [
  49526. {
  49527. name: "Normal",
  49528. height: math.unit(7 + 6/12, "feet"),
  49529. default: true
  49530. },
  49531. ]
  49532. ))
  49533. characterMakers.push(() => makeCharacter(
  49534. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49535. {
  49536. standing: {
  49537. height: math.unit(17, "feet"),
  49538. name: "Standing",
  49539. image: {
  49540. source: "./media/characters/aster/standing.svg",
  49541. extra: 1798/1598,
  49542. bottom: 117/1915
  49543. }
  49544. },
  49545. },
  49546. [
  49547. {
  49548. name: "Normal",
  49549. height: math.unit(17, "feet"),
  49550. default: true
  49551. },
  49552. {
  49553. name: "Homewrecker",
  49554. height: math.unit(95, "feet")
  49555. },
  49556. {
  49557. name: "Planet Devourer",
  49558. height: math.unit(1008000, "miles")
  49559. },
  49560. ]
  49561. ))
  49562. characterMakers.push(() => makeCharacter(
  49563. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49564. {
  49565. front: {
  49566. height: math.unit(6 + 5/12, "feet"),
  49567. weight: math.unit(265, "lb"),
  49568. name: "Front",
  49569. image: {
  49570. source: "./media/characters/devon-childs/front.svg",
  49571. extra: 1795/1721,
  49572. bottom: 41/1836
  49573. }
  49574. },
  49575. side: {
  49576. height: math.unit(6 + 5/12, "feet"),
  49577. weight: math.unit(265, "lb"),
  49578. name: "Side",
  49579. image: {
  49580. source: "./media/characters/devon-childs/side.svg",
  49581. extra: 1812/1738,
  49582. bottom: 30/1842
  49583. }
  49584. },
  49585. back: {
  49586. height: math.unit(6 + 5/12, "feet"),
  49587. weight: math.unit(265, "lb"),
  49588. name: "Back",
  49589. image: {
  49590. source: "./media/characters/devon-childs/back.svg",
  49591. extra: 1808/1735,
  49592. bottom: 23/1831
  49593. }
  49594. },
  49595. hand: {
  49596. height: math.unit(1.464, "feet"),
  49597. name: "Hand",
  49598. image: {
  49599. source: "./media/characters/devon-childs/hand.svg"
  49600. }
  49601. },
  49602. foot: {
  49603. height: math.unit(1.6, "feet"),
  49604. name: "Foot",
  49605. image: {
  49606. source: "./media/characters/devon-childs/foot.svg"
  49607. }
  49608. },
  49609. },
  49610. [
  49611. {
  49612. name: "Micro",
  49613. height: math.unit(7, "cm")
  49614. },
  49615. {
  49616. name: "Normal",
  49617. height: math.unit(6 + 5/12, "feet"),
  49618. default: true
  49619. },
  49620. {
  49621. name: "Macro",
  49622. height: math.unit(154, "feet")
  49623. },
  49624. ]
  49625. ))
  49626. characterMakers.push(() => makeCharacter(
  49627. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49628. {
  49629. front: {
  49630. height: math.unit(6, "feet"),
  49631. weight: math.unit(180, "lb"),
  49632. name: "Front",
  49633. image: {
  49634. source: "./media/characters/lydemox-vir/front.svg",
  49635. extra: 1632/1435,
  49636. bottom: 58/1690
  49637. }
  49638. },
  49639. frontSFW: {
  49640. height: math.unit(6, "feet"),
  49641. weight: math.unit(180, "lb"),
  49642. name: "Front (SFW)",
  49643. image: {
  49644. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49645. extra: 1632/1435,
  49646. bottom: 58/1690
  49647. }
  49648. },
  49649. back: {
  49650. height: math.unit(6, "feet"),
  49651. weight: math.unit(180, "lb"),
  49652. name: "Back",
  49653. image: {
  49654. source: "./media/characters/lydemox-vir/back.svg",
  49655. extra: 1593/1408,
  49656. bottom: 31/1624
  49657. }
  49658. },
  49659. paw: {
  49660. height: math.unit(1.85, "feet"),
  49661. name: "Paw",
  49662. image: {
  49663. source: "./media/characters/lydemox-vir/paw.svg"
  49664. }
  49665. },
  49666. dick: {
  49667. height: math.unit(1.8, "feet"),
  49668. name: "Dick",
  49669. image: {
  49670. source: "./media/characters/lydemox-vir/dick.svg"
  49671. }
  49672. },
  49673. },
  49674. [
  49675. {
  49676. name: "Macro",
  49677. height: math.unit(100, "feet"),
  49678. default: true
  49679. },
  49680. {
  49681. name: "Teramacro",
  49682. height: math.unit(1, "earth")
  49683. },
  49684. {
  49685. name: "Planetary",
  49686. height: math.unit(20, "earths")
  49687. },
  49688. ]
  49689. ))
  49690. characterMakers.push(() => makeCharacter(
  49691. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49692. {
  49693. front: {
  49694. height: math.unit(15 + 8/12, "feet"),
  49695. weight: math.unit(1237, "kg"),
  49696. name: "Front",
  49697. image: {
  49698. source: "./media/characters/mia/front.svg",
  49699. extra: 1573/1446,
  49700. bottom: 58/1631
  49701. }
  49702. },
  49703. },
  49704. [
  49705. {
  49706. name: "Small",
  49707. height: math.unit(9 + 5/12, "feet")
  49708. },
  49709. {
  49710. name: "Normal",
  49711. height: math.unit(15 + 8/12, "feet"),
  49712. default: true
  49713. },
  49714. ]
  49715. ))
  49716. characterMakers.push(() => makeCharacter(
  49717. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49718. {
  49719. front: {
  49720. height: math.unit(10 + 6/12, "feet"),
  49721. weight: math.unit(1.3, "tons"),
  49722. name: "Front",
  49723. image: {
  49724. source: "./media/characters/mr-graves/front.svg",
  49725. extra: 1779/1695,
  49726. bottom: 198/1977
  49727. }
  49728. },
  49729. },
  49730. [
  49731. {
  49732. name: "Normal",
  49733. height: math.unit(10 + 6 /12, "feet"),
  49734. default: true
  49735. },
  49736. ]
  49737. ))
  49738. characterMakers.push(() => makeCharacter(
  49739. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49740. {
  49741. dressedFront: {
  49742. height: math.unit(5 + 8/12, "feet"),
  49743. weight: math.unit(125, "lb"),
  49744. name: "Dressed (Front)",
  49745. image: {
  49746. source: "./media/characters/jess/dressed-front.svg",
  49747. extra: 1176/1152,
  49748. bottom: 42/1218
  49749. }
  49750. },
  49751. dressedSide: {
  49752. height: math.unit(5 + 8/12, "feet"),
  49753. weight: math.unit(125, "lb"),
  49754. name: "Dressed (Side)",
  49755. image: {
  49756. source: "./media/characters/jess/dressed-side.svg",
  49757. extra: 1204/1190,
  49758. bottom: 6/1210
  49759. }
  49760. },
  49761. nudeFront: {
  49762. height: math.unit(5 + 8/12, "feet"),
  49763. weight: math.unit(125, "lb"),
  49764. name: "Nude (Front)",
  49765. image: {
  49766. source: "./media/characters/jess/nude-front.svg",
  49767. extra: 1176/1152,
  49768. bottom: 42/1218
  49769. }
  49770. },
  49771. nudeSide: {
  49772. height: math.unit(5 + 8/12, "feet"),
  49773. weight: math.unit(125, "lb"),
  49774. name: "Nude (Side)",
  49775. image: {
  49776. source: "./media/characters/jess/nude-side.svg",
  49777. extra: 1204/1190,
  49778. bottom: 6/1210
  49779. }
  49780. },
  49781. organsFront: {
  49782. height: math.unit(2.83799342105, "feet"),
  49783. name: "Organs (Front)",
  49784. image: {
  49785. source: "./media/characters/jess/organs-front.svg"
  49786. }
  49787. },
  49788. organsSide: {
  49789. height: math.unit(2.64225290474, "feet"),
  49790. name: "Organs (Side)",
  49791. image: {
  49792. source: "./media/characters/jess/organs-side.svg"
  49793. }
  49794. },
  49795. digestiveTractFront: {
  49796. height: math.unit(2.8106580871, "feet"),
  49797. name: "Digestive Tract (Front)",
  49798. image: {
  49799. source: "./media/characters/jess/digestive-tract-front.svg"
  49800. }
  49801. },
  49802. digestiveTractSide: {
  49803. height: math.unit(2.54365045014, "feet"),
  49804. name: "Digestive Tract (Side)",
  49805. image: {
  49806. source: "./media/characters/jess/digestive-tract-side.svg"
  49807. }
  49808. },
  49809. respiratorySystemFront: {
  49810. height: math.unit(1.11196233456, "feet"),
  49811. name: "Respiratory System (Front)",
  49812. image: {
  49813. source: "./media/characters/jess/respiratory-system-front.svg"
  49814. }
  49815. },
  49816. respiratorySystemSide: {
  49817. height: math.unit(0.89327966297, "feet"),
  49818. name: "Respiratory System (Side)",
  49819. image: {
  49820. source: "./media/characters/jess/respiratory-system-side.svg"
  49821. }
  49822. },
  49823. urinaryTractFront: {
  49824. height: math.unit(1.16126356186, "feet"),
  49825. name: "Urinary Tract (Front)",
  49826. image: {
  49827. source: "./media/characters/jess/urinary-tract-front.svg"
  49828. }
  49829. },
  49830. urinaryTractSide: {
  49831. height: math.unit(1.20910039627, "feet"),
  49832. name: "Urinary Tract (Side)",
  49833. image: {
  49834. source: "./media/characters/jess/urinary-tract-side.svg"
  49835. }
  49836. },
  49837. reproductiveOrgansFront: {
  49838. height: math.unit(0.48422591566, "feet"),
  49839. name: "Reproductive Organs (Front)",
  49840. image: {
  49841. source: "./media/characters/jess/reproductive-organs-front.svg"
  49842. }
  49843. },
  49844. reproductiveOrgansSide: {
  49845. height: math.unit(0.61553314481, "feet"),
  49846. name: "Reproductive Organs (Side)",
  49847. image: {
  49848. source: "./media/characters/jess/reproductive-organs-side.svg"
  49849. }
  49850. },
  49851. breastsFront: {
  49852. height: math.unit(0.47690395121, "feet"),
  49853. name: "Breasts (Front)",
  49854. image: {
  49855. source: "./media/characters/jess/breasts-front.svg"
  49856. }
  49857. },
  49858. breastsSide: {
  49859. height: math.unit(0.30556998307, "feet"),
  49860. name: "Breasts (Side)",
  49861. image: {
  49862. source: "./media/characters/jess/breasts-side.svg"
  49863. }
  49864. },
  49865. heartFront: {
  49866. height: math.unit(0.53011022622, "feet"),
  49867. name: "Heart (Front)",
  49868. image: {
  49869. source: "./media/characters/jess/heart-front.svg"
  49870. }
  49871. },
  49872. heartSide: {
  49873. height: math.unit(0.51790695213, "feet"),
  49874. name: "Heart (Side)",
  49875. image: {
  49876. source: "./media/characters/jess/heart-side.svg"
  49877. }
  49878. },
  49879. earsAndNoseFront: {
  49880. height: math.unit(0.29385483995, "feet"),
  49881. name: "Ears and Nose (Front)",
  49882. image: {
  49883. source: "./media/characters/jess/ears-and-nose-front.svg"
  49884. }
  49885. },
  49886. earsAndNoseSide: {
  49887. height: math.unit(0.18109658741, "feet"),
  49888. name: "Ears and Nose (Side)",
  49889. image: {
  49890. source: "./media/characters/jess/ears-and-nose-side.svg"
  49891. }
  49892. },
  49893. },
  49894. [
  49895. {
  49896. name: "Normal",
  49897. height: math.unit(5 + 8/12, "feet"),
  49898. default: true
  49899. },
  49900. ]
  49901. ))
  49902. characterMakers.push(() => makeCharacter(
  49903. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49904. {
  49905. front: {
  49906. height: math.unit(6, "feet"),
  49907. weight: math.unit(6.64467e-7, "grams"),
  49908. name: "Front",
  49909. image: {
  49910. source: "./media/characters/wimpering/front.svg",
  49911. extra: 597/587,
  49912. bottom: 34/631
  49913. }
  49914. },
  49915. },
  49916. [
  49917. {
  49918. name: "Micro",
  49919. height: math.unit(0.4, "mm"),
  49920. default: true
  49921. },
  49922. ]
  49923. ))
  49924. characterMakers.push(() => makeCharacter(
  49925. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49926. {
  49927. front: {
  49928. height: math.unit(5 + 2/12, "feet"),
  49929. weight: math.unit(110, "lb"),
  49930. name: "Front",
  49931. image: {
  49932. source: "./media/characters/keltre/front.svg",
  49933. extra: 1099/1057,
  49934. bottom: 22/1121
  49935. }
  49936. },
  49937. back: {
  49938. height: math.unit(5 + 2/12, "feet"),
  49939. weight: math.unit(110, "lb"),
  49940. name: "Back",
  49941. image: {
  49942. source: "./media/characters/keltre/back.svg",
  49943. extra: 1095/1053,
  49944. bottom: 17/1112
  49945. }
  49946. },
  49947. dressed: {
  49948. height: math.unit(5 + 2/12, "feet"),
  49949. weight: math.unit(110, "lb"),
  49950. name: "Dressed",
  49951. image: {
  49952. source: "./media/characters/keltre/dressed.svg",
  49953. extra: 1099/1057,
  49954. bottom: 22/1121
  49955. }
  49956. },
  49957. winter: {
  49958. height: math.unit(5 + 2/12, "feet"),
  49959. weight: math.unit(110, "lb"),
  49960. name: "Winter",
  49961. image: {
  49962. source: "./media/characters/keltre/winter.svg",
  49963. extra: 1099/1057,
  49964. bottom: 22/1121
  49965. }
  49966. },
  49967. head: {
  49968. height: math.unit(1.61 * 0.86, "feet"),
  49969. name: "Head",
  49970. image: {
  49971. source: "./media/characters/keltre/head.svg",
  49972. extra: 534/421,
  49973. bottom: 0/534
  49974. }
  49975. },
  49976. hand: {
  49977. height: math.unit(1.3 * 0.86, "feet"),
  49978. name: "Hand",
  49979. image: {
  49980. source: "./media/characters/keltre/hand.svg"
  49981. }
  49982. },
  49983. foot: {
  49984. height: math.unit(1.8 * 0.86, "feet"),
  49985. name: "Foot",
  49986. image: {
  49987. source: "./media/characters/keltre/foot.svg"
  49988. }
  49989. },
  49990. },
  49991. [
  49992. {
  49993. name: "Fine",
  49994. height: math.unit(1, "inch")
  49995. },
  49996. {
  49997. name: "Dimnutive",
  49998. height: math.unit(4, "inches")
  49999. },
  50000. {
  50001. name: "Tiny",
  50002. height: math.unit(1, "foot")
  50003. },
  50004. {
  50005. name: "Small",
  50006. height: math.unit(3, "feet")
  50007. },
  50008. {
  50009. name: "Normal",
  50010. height: math.unit(5 + 2/12, "feet"),
  50011. default: true
  50012. },
  50013. ]
  50014. ))
  50015. characterMakers.push(() => makeCharacter(
  50016. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50017. {
  50018. front: {
  50019. height: math.unit(6 + 2/12, "feet"),
  50020. name: "Front",
  50021. image: {
  50022. source: "./media/characters/nox/front.svg",
  50023. extra: 1917/1830,
  50024. bottom: 74/1991
  50025. }
  50026. },
  50027. back: {
  50028. height: math.unit(6 + 2/12, "feet"),
  50029. name: "Back",
  50030. image: {
  50031. source: "./media/characters/nox/back.svg",
  50032. extra: 1896/1815,
  50033. bottom: 21/1917
  50034. }
  50035. },
  50036. head: {
  50037. height: math.unit(1.1, "feet"),
  50038. name: "Head",
  50039. image: {
  50040. source: "./media/characters/nox/head.svg",
  50041. extra: 874/704,
  50042. bottom: 0/874
  50043. }
  50044. },
  50045. tattoo: {
  50046. height: math.unit(0.729, "feet"),
  50047. name: "Tattoo",
  50048. image: {
  50049. source: "./media/characters/nox/tattoo.svg"
  50050. }
  50051. },
  50052. },
  50053. [
  50054. {
  50055. name: "Normal",
  50056. height: math.unit(6 + 2/12, "feet")
  50057. },
  50058. {
  50059. name: "Gigamacro",
  50060. height: math.unit(2, "earths"),
  50061. default: true
  50062. },
  50063. {
  50064. name: "Cosmic",
  50065. height: math.unit(867, "yottameters")
  50066. },
  50067. ]
  50068. ))
  50069. characterMakers.push(() => makeCharacter(
  50070. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50071. {
  50072. front: {
  50073. height: math.unit(6, "feet"),
  50074. weight: math.unit(150, "lb"),
  50075. name: "Front",
  50076. image: {
  50077. source: "./media/characters/caspian/front.svg",
  50078. extra: 1443/1359,
  50079. bottom: 0/1443
  50080. }
  50081. },
  50082. back: {
  50083. height: math.unit(6, "feet"),
  50084. weight: math.unit(150, "lb"),
  50085. name: "Back",
  50086. image: {
  50087. source: "./media/characters/caspian/back.svg",
  50088. extra: 1379/1309,
  50089. bottom: 0/1379
  50090. }
  50091. },
  50092. head: {
  50093. height: math.unit(0.9, "feet"),
  50094. name: "Head",
  50095. image: {
  50096. source: "./media/characters/caspian/head.svg",
  50097. extra: 692/492,
  50098. bottom: 0/692
  50099. }
  50100. },
  50101. headAlt: {
  50102. height: math.unit(0.95, "feet"),
  50103. name: "Head (Alt)",
  50104. image: {
  50105. source: "./media/characters/caspian/head-alt.svg",
  50106. extra: 668/508,
  50107. bottom: 0/668
  50108. }
  50109. },
  50110. hand: {
  50111. height: math.unit(0.8, "feet"),
  50112. name: "Hand",
  50113. image: {
  50114. source: "./media/characters/caspian/hand.svg"
  50115. }
  50116. },
  50117. paw: {
  50118. height: math.unit(0.95, "feet"),
  50119. name: "Paw",
  50120. image: {
  50121. source: "./media/characters/caspian/paw.svg"
  50122. }
  50123. },
  50124. },
  50125. [
  50126. {
  50127. name: "Normal",
  50128. height: math.unit(162, "feet"),
  50129. default: true
  50130. },
  50131. ]
  50132. ))
  50133. characterMakers.push(() => makeCharacter(
  50134. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50135. {
  50136. front: {
  50137. height: math.unit(6, "feet"),
  50138. name: "Front",
  50139. image: {
  50140. source: "./media/characters/myra-aisling/front.svg",
  50141. extra: 1268/1166,
  50142. bottom: 73/1341
  50143. }
  50144. },
  50145. back: {
  50146. height: math.unit(6, "feet"),
  50147. name: "Back",
  50148. image: {
  50149. source: "./media/characters/myra-aisling/back.svg",
  50150. extra: 1249/1149,
  50151. bottom: 79/1328
  50152. }
  50153. },
  50154. dressed: {
  50155. height: math.unit(6, "feet"),
  50156. name: "Dressed",
  50157. image: {
  50158. source: "./media/characters/myra-aisling/dressed.svg",
  50159. extra: 1290/1189,
  50160. bottom: 47/1337
  50161. }
  50162. },
  50163. hand: {
  50164. height: math.unit(1.1, "feet"),
  50165. name: "Hand",
  50166. image: {
  50167. source: "./media/characters/myra-aisling/hand.svg"
  50168. }
  50169. },
  50170. paw: {
  50171. height: math.unit(1.23, "feet"),
  50172. name: "Paw",
  50173. image: {
  50174. source: "./media/characters/myra-aisling/paw.svg"
  50175. }
  50176. },
  50177. },
  50178. [
  50179. {
  50180. name: "Normal",
  50181. height: math.unit(160, "feet"),
  50182. default: true
  50183. },
  50184. ]
  50185. ))
  50186. characterMakers.push(() => makeCharacter(
  50187. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50188. {
  50189. front: {
  50190. height: math.unit(6, "feet"),
  50191. name: "Front",
  50192. image: {
  50193. source: "./media/characters/tenley-sidero/front.svg",
  50194. extra: 1365/1276,
  50195. bottom: 47/1412
  50196. }
  50197. },
  50198. back: {
  50199. height: math.unit(6, "feet"),
  50200. name: "Back",
  50201. image: {
  50202. source: "./media/characters/tenley-sidero/back.svg",
  50203. extra: 1383/1283,
  50204. bottom: 35/1418
  50205. }
  50206. },
  50207. dressed: {
  50208. height: math.unit(6, "feet"),
  50209. name: "Dressed",
  50210. image: {
  50211. source: "./media/characters/tenley-sidero/dressed.svg",
  50212. extra: 1364/1275,
  50213. bottom: 42/1406
  50214. }
  50215. },
  50216. head: {
  50217. height: math.unit(1.47, "feet"),
  50218. name: "Head",
  50219. image: {
  50220. source: "./media/characters/tenley-sidero/head.svg",
  50221. extra: 610/490,
  50222. bottom: 0/610
  50223. }
  50224. },
  50225. },
  50226. [
  50227. {
  50228. name: "Normal",
  50229. height: math.unit(154, "feet"),
  50230. default: true
  50231. },
  50232. ]
  50233. ))
  50234. characterMakers.push(() => makeCharacter(
  50235. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50236. {
  50237. front: {
  50238. height: math.unit(5, "inches"),
  50239. name: "Front",
  50240. image: {
  50241. source: "./media/characters/mallory/front.svg",
  50242. extra: 1919/1678,
  50243. bottom: 29/1948
  50244. }
  50245. },
  50246. hand: {
  50247. height: math.unit(0.73, "inches"),
  50248. name: "Hand",
  50249. image: {
  50250. source: "./media/characters/mallory/hand.svg"
  50251. }
  50252. },
  50253. paw: {
  50254. height: math.unit(0.68, "inches"),
  50255. name: "Paw",
  50256. image: {
  50257. source: "./media/characters/mallory/paw.svg"
  50258. }
  50259. },
  50260. },
  50261. [
  50262. {
  50263. name: "Small",
  50264. height: math.unit(5, "inches"),
  50265. default: true
  50266. },
  50267. ]
  50268. ))
  50269. characterMakers.push(() => makeCharacter(
  50270. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50271. {
  50272. naked: {
  50273. height: math.unit(6, "feet"),
  50274. name: "Naked",
  50275. image: {
  50276. source: "./media/characters/mab/naked.svg",
  50277. extra: 1855/1757,
  50278. bottom: 208/2063
  50279. }
  50280. },
  50281. outside: {
  50282. height: math.unit(6, "feet"),
  50283. name: "Outside",
  50284. image: {
  50285. source: "./media/characters/mab/outside.svg",
  50286. extra: 1855/1757,
  50287. bottom: 208/2063
  50288. }
  50289. },
  50290. party: {
  50291. height: math.unit(6, "feet"),
  50292. name: "Party",
  50293. image: {
  50294. source: "./media/characters/mab/party.svg",
  50295. extra: 1855/1757,
  50296. bottom: 208/2063
  50297. }
  50298. },
  50299. },
  50300. [
  50301. {
  50302. name: "Normal",
  50303. height: math.unit(165, "feet"),
  50304. default: true
  50305. },
  50306. ]
  50307. ))
  50308. characterMakers.push(() => makeCharacter(
  50309. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50310. {
  50311. feral: {
  50312. height: math.unit(12, "feet"),
  50313. weight: math.unit(20000, "lb"),
  50314. name: "Side",
  50315. image: {
  50316. source: "./media/characters/winter/feral.svg",
  50317. extra: 1286/943,
  50318. bottom: 112/1398
  50319. },
  50320. form: "feral",
  50321. default: true
  50322. },
  50323. feralNsfw: {
  50324. height: math.unit(12, "feet"),
  50325. weight: math.unit(20000, "lb"),
  50326. name: "Side (NSFW)",
  50327. image: {
  50328. source: "./media/characters/winter/feral-nsfw.svg",
  50329. extra: 1286/943,
  50330. bottom: 112/1398
  50331. },
  50332. form: "feral"
  50333. },
  50334. dick: {
  50335. height: math.unit(3.79, "feet"),
  50336. name: "Dick",
  50337. image: {
  50338. source: "./media/characters/winter/dick.svg"
  50339. },
  50340. form: "feral"
  50341. },
  50342. anthro: {
  50343. height: math.unit(12, "feet"),
  50344. weight: math.unit(10, "tons"),
  50345. name: "Anthro",
  50346. image: {
  50347. source: "./media/characters/winter/anthro.svg",
  50348. extra: 1701/1553,
  50349. bottom: 64/1765
  50350. },
  50351. form: "anthro",
  50352. default: true
  50353. },
  50354. },
  50355. [
  50356. {
  50357. name: "Big",
  50358. height: math.unit(12, "feet"),
  50359. default: true,
  50360. form: "feral"
  50361. },
  50362. {
  50363. name: "Big",
  50364. height: math.unit(12, "feet"),
  50365. default: true,
  50366. form: "anthro"
  50367. },
  50368. ],
  50369. {
  50370. "feral": {
  50371. name: "Feral",
  50372. default: true
  50373. },
  50374. "anthro": {
  50375. name: "Anthro"
  50376. }
  50377. }
  50378. ))
  50379. characterMakers.push(() => makeCharacter(
  50380. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50381. {
  50382. front: {
  50383. height: math.unit(4.1, "inches"),
  50384. name: "Front",
  50385. image: {
  50386. source: "./media/characters/alto/front.svg",
  50387. extra: 736/627,
  50388. bottom: 90/826
  50389. }
  50390. },
  50391. },
  50392. [
  50393. {
  50394. name: "Normal",
  50395. height: math.unit(4.1, "inches"),
  50396. default: true
  50397. },
  50398. ]
  50399. ))
  50400. characterMakers.push(() => makeCharacter(
  50401. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50402. {
  50403. sitting: {
  50404. height: math.unit(3, "feet"),
  50405. name: "Sitting",
  50406. image: {
  50407. source: "./media/characters/ratstrid-v/sitting.svg",
  50408. extra: 355/310,
  50409. bottom: 136/491
  50410. }
  50411. },
  50412. },
  50413. [
  50414. {
  50415. name: "Normal",
  50416. height: math.unit(3, "feet"),
  50417. default: true
  50418. },
  50419. ]
  50420. ))
  50421. characterMakers.push(() => makeCharacter(
  50422. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50423. {
  50424. back: {
  50425. height: math.unit(6, "feet"),
  50426. weight: math.unit(450, "lb"),
  50427. name: "Back",
  50428. image: {
  50429. source: "./media/characters/siz/back.svg",
  50430. extra: 1449/1274,
  50431. bottom: 13/1462
  50432. }
  50433. },
  50434. },
  50435. [
  50436. {
  50437. name: "Smallest",
  50438. height: math.unit(18 + 3/12, "feet")
  50439. },
  50440. {
  50441. name: "Modest",
  50442. height: math.unit(56 + 8/12, "feet"),
  50443. default: true
  50444. },
  50445. {
  50446. name: "Largest",
  50447. height: math.unit(3590, "feet")
  50448. },
  50449. ]
  50450. ))
  50451. characterMakers.push(() => makeCharacter(
  50452. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50453. {
  50454. front: {
  50455. height: math.unit(5 + 9/12, "feet"),
  50456. weight: math.unit(150, "lb"),
  50457. name: "Front",
  50458. image: {
  50459. source: "./media/characters/ven/front.svg",
  50460. extra: 1372/1320,
  50461. bottom: 73/1445
  50462. }
  50463. },
  50464. side: {
  50465. height: math.unit(5 + 9/12, "feet"),
  50466. weight: math.unit(1150, "lb"),
  50467. name: "Side",
  50468. image: {
  50469. source: "./media/characters/ven/side.svg",
  50470. extra: 1119/1070,
  50471. bottom: 42/1161
  50472. },
  50473. default: true
  50474. },
  50475. },
  50476. [
  50477. {
  50478. name: "Normal",
  50479. height: math.unit(5 + 9/12, "feet"),
  50480. default: true
  50481. },
  50482. ]
  50483. ))
  50484. characterMakers.push(() => makeCharacter(
  50485. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50486. {
  50487. front: {
  50488. height: math.unit(12, "feet"),
  50489. weight: math.unit(1000, "kg"),
  50490. name: "Front",
  50491. image: {
  50492. source: "./media/characters/maple/front.svg",
  50493. extra: 1193/1081,
  50494. bottom: 22/1215
  50495. }
  50496. },
  50497. },
  50498. [
  50499. {
  50500. name: "Compressed",
  50501. height: math.unit(7, "feet")
  50502. },
  50503. {
  50504. name: "Normal",
  50505. height: math.unit(12, "feet"),
  50506. default: true
  50507. },
  50508. ]
  50509. ))
  50510. characterMakers.push(() => makeCharacter(
  50511. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50512. {
  50513. front: {
  50514. height: math.unit(9, "feet"),
  50515. weight: math.unit(1500, "lb"),
  50516. name: "Front",
  50517. image: {
  50518. source: "./media/characters/nora/front.svg",
  50519. extra: 1348/1286,
  50520. bottom: 218/1566
  50521. }
  50522. },
  50523. erect: {
  50524. height: math.unit(9, "feet"),
  50525. weight: math.unit(11500, "lb"),
  50526. name: "Erect",
  50527. image: {
  50528. source: "./media/characters/nora/erect.svg",
  50529. extra: 1488/1433,
  50530. bottom: 133/1621
  50531. }
  50532. },
  50533. },
  50534. [
  50535. {
  50536. name: "Normal",
  50537. height: math.unit(9, "feet"),
  50538. default: true
  50539. },
  50540. ]
  50541. ))
  50542. characterMakers.push(() => makeCharacter(
  50543. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50544. {
  50545. front: {
  50546. height: math.unit(25, "feet"),
  50547. weight: math.unit(27500, "lb"),
  50548. name: "Front",
  50549. image: {
  50550. source: "./media/characters/north-caudin/front.svg",
  50551. extra: 1184/1082,
  50552. bottom: 23/1207
  50553. }
  50554. },
  50555. },
  50556. [
  50557. {
  50558. name: "Compressed",
  50559. height: math.unit(10, "feet")
  50560. },
  50561. {
  50562. name: "Normal",
  50563. height: math.unit(25, "feet"),
  50564. default: true
  50565. },
  50566. ]
  50567. ))
  50568. characterMakers.push(() => makeCharacter(
  50569. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50570. {
  50571. front: {
  50572. height: math.unit(9, "feet"),
  50573. weight: math.unit(1250, "lb"),
  50574. name: "Front",
  50575. image: {
  50576. source: "./media/characters/merrian/front.svg",
  50577. extra: 2393/2304,
  50578. bottom: 40/2433
  50579. }
  50580. },
  50581. },
  50582. [
  50583. {
  50584. name: "Normal",
  50585. height: math.unit(9, "feet"),
  50586. default: true
  50587. },
  50588. ]
  50589. ))
  50590. characterMakers.push(() => makeCharacter(
  50591. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50592. {
  50593. front: {
  50594. height: math.unit(9, "feet"),
  50595. weight: math.unit(1000, "lb"),
  50596. name: "Front",
  50597. image: {
  50598. source: "./media/characters/hazel/front.svg",
  50599. extra: 2351/2298,
  50600. bottom: 38/2389
  50601. }
  50602. },
  50603. },
  50604. [
  50605. {
  50606. name: "Normal",
  50607. height: math.unit(9, "feet"),
  50608. default: true
  50609. },
  50610. ]
  50611. ))
  50612. characterMakers.push(() => makeCharacter(
  50613. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50614. {
  50615. front: {
  50616. height: math.unit(13, "feet"),
  50617. weight: math.unit(3200, "lb"),
  50618. name: "Front",
  50619. image: {
  50620. source: "./media/characters/emma/front.svg",
  50621. extra: 2263/2029,
  50622. bottom: 68/2331
  50623. }
  50624. },
  50625. },
  50626. [
  50627. {
  50628. name: "Normal",
  50629. height: math.unit(13, "feet"),
  50630. default: true
  50631. },
  50632. ]
  50633. ))
  50634. characterMakers.push(() => makeCharacter(
  50635. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50636. {
  50637. front: {
  50638. height: math.unit(11 + 9/12, "feet"),
  50639. weight: math.unit(2500, "lb"),
  50640. name: "Front",
  50641. image: {
  50642. source: "./media/characters/ilumina/front.svg",
  50643. extra: 2248/2209,
  50644. bottom: 164/2412
  50645. }
  50646. },
  50647. },
  50648. [
  50649. {
  50650. name: "Normal",
  50651. height: math.unit(11 + 9/12, "feet"),
  50652. default: true
  50653. },
  50654. ]
  50655. ))
  50656. characterMakers.push(() => makeCharacter(
  50657. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50658. {
  50659. front: {
  50660. height: math.unit(8 + 10/12, "feet"),
  50661. weight: math.unit(1350, "lb"),
  50662. name: "Front",
  50663. image: {
  50664. source: "./media/characters/moonshine/front.svg",
  50665. extra: 2395/2288,
  50666. bottom: 40/2435
  50667. }
  50668. },
  50669. },
  50670. [
  50671. {
  50672. name: "Normal",
  50673. height: math.unit(8 + 10/12, "feet"),
  50674. default: true
  50675. },
  50676. ]
  50677. ))
  50678. characterMakers.push(() => makeCharacter(
  50679. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50680. {
  50681. front: {
  50682. height: math.unit(14, "feet"),
  50683. weight: math.unit(3400, "lb"),
  50684. name: "Front",
  50685. image: {
  50686. source: "./media/characters/aletia/front.svg",
  50687. extra: 1185/1052,
  50688. bottom: 21/1206
  50689. }
  50690. },
  50691. },
  50692. [
  50693. {
  50694. name: "Compressed",
  50695. height: math.unit(8, "feet")
  50696. },
  50697. {
  50698. name: "Normal",
  50699. height: math.unit(14, "feet"),
  50700. default: true
  50701. },
  50702. ]
  50703. ))
  50704. characterMakers.push(() => makeCharacter(
  50705. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50706. {
  50707. front: {
  50708. height: math.unit(17, "feet"),
  50709. weight: math.unit(6500, "lb"),
  50710. name: "Front",
  50711. image: {
  50712. source: "./media/characters/deidra/front.svg",
  50713. extra: 1201/1081,
  50714. bottom: 16/1217
  50715. }
  50716. },
  50717. },
  50718. [
  50719. {
  50720. name: "Compressed",
  50721. height: math.unit(9 + 6/12, "feet")
  50722. },
  50723. {
  50724. name: "Normal",
  50725. height: math.unit(17, "feet"),
  50726. default: true
  50727. },
  50728. ]
  50729. ))
  50730. characterMakers.push(() => makeCharacter(
  50731. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50732. {
  50733. front: {
  50734. height: math.unit(7 + 4/12, "feet"),
  50735. weight: math.unit(280, "lb"),
  50736. name: "Front",
  50737. image: {
  50738. source: "./media/characters/freki-yrmori/front.svg",
  50739. extra: 1286/1182,
  50740. bottom: 29/1315
  50741. }
  50742. },
  50743. maw: {
  50744. height: math.unit(0.9, "feet"),
  50745. name: "Maw",
  50746. image: {
  50747. source: "./media/characters/freki-yrmori/maw.svg"
  50748. }
  50749. },
  50750. },
  50751. [
  50752. {
  50753. name: "Normal",
  50754. height: math.unit(7 + 4/12, "feet"),
  50755. default: true
  50756. },
  50757. {
  50758. name: "Macro",
  50759. height: math.unit(38.5, "meters")
  50760. },
  50761. ]
  50762. ))
  50763. characterMakers.push(() => makeCharacter(
  50764. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50765. {
  50766. side: {
  50767. height: math.unit(47.2, "meters"),
  50768. weight: math.unit(10000, "tons"),
  50769. name: "Side",
  50770. image: {
  50771. source: "./media/characters/aetherios/side.svg",
  50772. extra: 2363/642,
  50773. bottom: 221/2584
  50774. }
  50775. },
  50776. top: {
  50777. height: math.unit(240, "meters"),
  50778. weight: math.unit(10000, "tons"),
  50779. name: "Top",
  50780. image: {
  50781. source: "./media/characters/aetherios/top.svg"
  50782. }
  50783. },
  50784. bottom: {
  50785. height: math.unit(240, "meters"),
  50786. weight: math.unit(10000, "tons"),
  50787. name: "Bottom",
  50788. image: {
  50789. source: "./media/characters/aetherios/bottom.svg"
  50790. }
  50791. },
  50792. head: {
  50793. height: math.unit(38.6, "meters"),
  50794. name: "Head",
  50795. image: {
  50796. source: "./media/characters/aetherios/head.svg",
  50797. extra: 1335/1112,
  50798. bottom: 0/1335
  50799. }
  50800. },
  50801. front: {
  50802. height: math.unit(29, "meters"),
  50803. name: "Front",
  50804. image: {
  50805. source: "./media/characters/aetherios/front.svg",
  50806. extra: 1266/953,
  50807. bottom: 158/1424
  50808. }
  50809. },
  50810. maw: {
  50811. height: math.unit(16.37, "meters"),
  50812. name: "Maw",
  50813. image: {
  50814. source: "./media/characters/aetherios/maw.svg",
  50815. extra: 748/637,
  50816. bottom: 0/748
  50817. },
  50818. extraAttributes: {
  50819. preyCapacity: {
  50820. name: "Capacity",
  50821. power: 3,
  50822. type: "volume",
  50823. base: math.unit(1000, "people")
  50824. },
  50825. tongueSize: {
  50826. name: "Tongue Size",
  50827. power: 2,
  50828. type: "area",
  50829. base: math.unit(21, "m^2")
  50830. }
  50831. }
  50832. },
  50833. forepaw: {
  50834. height: math.unit(18, "meters"),
  50835. name: "Forepaw",
  50836. image: {
  50837. source: "./media/characters/aetherios/forepaw.svg"
  50838. }
  50839. },
  50840. hindpaw: {
  50841. height: math.unit(23, "meters"),
  50842. name: "Hindpaw",
  50843. image: {
  50844. source: "./media/characters/aetherios/hindpaw.svg"
  50845. }
  50846. },
  50847. genitals: {
  50848. height: math.unit(42, "meters"),
  50849. name: "Genitals",
  50850. image: {
  50851. source: "./media/characters/aetherios/genitals.svg"
  50852. }
  50853. },
  50854. },
  50855. [
  50856. {
  50857. name: "Normal",
  50858. height: math.unit(47.2, "meters"),
  50859. default: true
  50860. },
  50861. {
  50862. name: "Macro",
  50863. height: math.unit(160, "meters")
  50864. },
  50865. {
  50866. name: "Mega",
  50867. height: math.unit(1.87, "km")
  50868. },
  50869. {
  50870. name: "Giga",
  50871. height: math.unit(40000, "km")
  50872. },
  50873. {
  50874. name: "Stellar",
  50875. height: math.unit(158000000, "km")
  50876. },
  50877. {
  50878. name: "Cosmic",
  50879. height: math.unit(9.46e12, "km")
  50880. },
  50881. ]
  50882. ))
  50883. characterMakers.push(() => makeCharacter(
  50884. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50885. {
  50886. front: {
  50887. height: math.unit(5 + 4/12, "feet"),
  50888. weight: math.unit(80, "lb"),
  50889. name: "Front",
  50890. image: {
  50891. source: "./media/characters/mizu-gieeg/front.svg",
  50892. extra: 850/709,
  50893. bottom: 52/902
  50894. }
  50895. },
  50896. back: {
  50897. height: math.unit(5 + 4/12, "feet"),
  50898. weight: math.unit(80, "lb"),
  50899. name: "Back",
  50900. image: {
  50901. source: "./media/characters/mizu-gieeg/back.svg",
  50902. extra: 882/745,
  50903. bottom: 25/907
  50904. }
  50905. },
  50906. },
  50907. [
  50908. {
  50909. name: "Normal",
  50910. height: math.unit(5 + 4/12, "feet"),
  50911. default: true
  50912. },
  50913. ]
  50914. ))
  50915. characterMakers.push(() => makeCharacter(
  50916. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50917. {
  50918. front: {
  50919. height: math.unit(6, "feet"),
  50920. name: "Front",
  50921. image: {
  50922. source: "./media/characters/roselle-st-papier/front.svg",
  50923. extra: 1430/1280,
  50924. bottom: 37/1467
  50925. }
  50926. },
  50927. back: {
  50928. height: math.unit(6, "feet"),
  50929. name: "Back",
  50930. image: {
  50931. source: "./media/characters/roselle-st-papier/back.svg",
  50932. extra: 1491/1296,
  50933. bottom: 23/1514
  50934. }
  50935. },
  50936. ear: {
  50937. height: math.unit(1.26, "feet"),
  50938. name: "Ear",
  50939. image: {
  50940. source: "./media/characters/roselle-st-papier/ear.svg"
  50941. }
  50942. },
  50943. },
  50944. [
  50945. {
  50946. name: "Normal",
  50947. height: math.unit(150, "feet"),
  50948. default: true
  50949. },
  50950. ]
  50951. ))
  50952. characterMakers.push(() => makeCharacter(
  50953. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50954. {
  50955. front: {
  50956. height: math.unit(1, "inches"),
  50957. name: "Front",
  50958. image: {
  50959. source: "./media/characters/valargent/front.svg",
  50960. extra: 1825/1694,
  50961. bottom: 62/1887
  50962. }
  50963. },
  50964. back: {
  50965. height: math.unit(1, "inches"),
  50966. name: "Back",
  50967. image: {
  50968. source: "./media/characters/valargent/back.svg",
  50969. extra: 1775/1682,
  50970. bottom: 88/1863
  50971. }
  50972. },
  50973. },
  50974. [
  50975. {
  50976. name: "Micro",
  50977. height: math.unit(1, "inch"),
  50978. default: true
  50979. },
  50980. ]
  50981. ))
  50982. characterMakers.push(() => makeCharacter(
  50983. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50984. {
  50985. front: {
  50986. height: math.unit(3.4, "meters"),
  50987. name: "Front",
  50988. image: {
  50989. source: "./media/characters/zarina/front.svg",
  50990. extra: 1733/1425,
  50991. bottom: 93/1826
  50992. }
  50993. },
  50994. squatting: {
  50995. height: math.unit(2.14, "meters"),
  50996. name: "Squatting",
  50997. image: {
  50998. source: "./media/characters/zarina/squatting.svg",
  50999. extra: 1073/788,
  51000. bottom: 63/1136
  51001. }
  51002. },
  51003. back: {
  51004. height: math.unit(2.14, "meters"),
  51005. name: "Back",
  51006. image: {
  51007. source: "./media/characters/zarina/back.svg",
  51008. extra: 1128/885,
  51009. bottom: 0/1128
  51010. }
  51011. },
  51012. },
  51013. [
  51014. {
  51015. name: "Normal",
  51016. height: math.unit(3.4, "meters"),
  51017. default: true
  51018. },
  51019. {
  51020. name: "Big",
  51021. height: math.unit(5, "meters")
  51022. },
  51023. {
  51024. name: "Macro",
  51025. height: math.unit(110, "meters")
  51026. },
  51027. ]
  51028. ))
  51029. characterMakers.push(() => makeCharacter(
  51030. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51031. {
  51032. front: {
  51033. height: math.unit(7, "feet"),
  51034. name: "Front",
  51035. image: {
  51036. source: "./media/characters/ventus-astro-fox/front.svg",
  51037. extra: 1792/1623,
  51038. bottom: 28/1820
  51039. }
  51040. },
  51041. back: {
  51042. height: math.unit(7, "feet"),
  51043. name: "Back",
  51044. image: {
  51045. source: "./media/characters/ventus-astro-fox/back.svg",
  51046. extra: 1789/1620,
  51047. bottom: 31/1820
  51048. }
  51049. },
  51050. outfit: {
  51051. height: math.unit(7, "feet"),
  51052. name: "Outfit",
  51053. image: {
  51054. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51055. extra: 1054/925,
  51056. bottom: 15/1069
  51057. }
  51058. },
  51059. head: {
  51060. height: math.unit(1.12, "feet"),
  51061. name: "Head",
  51062. image: {
  51063. source: "./media/characters/ventus-astro-fox/head.svg",
  51064. extra: 866/504,
  51065. bottom: 0/866
  51066. }
  51067. },
  51068. hand: {
  51069. height: math.unit(1, "feet"),
  51070. name: "Hand",
  51071. image: {
  51072. source: "./media/characters/ventus-astro-fox/hand.svg"
  51073. }
  51074. },
  51075. paw: {
  51076. height: math.unit(1.5, "feet"),
  51077. name: "Paw",
  51078. image: {
  51079. source: "./media/characters/ventus-astro-fox/paw.svg"
  51080. }
  51081. },
  51082. },
  51083. [
  51084. {
  51085. name: "Normal",
  51086. height: math.unit(7, "feet"),
  51087. default: true
  51088. },
  51089. {
  51090. name: "Macro",
  51091. height: math.unit(200, "feet")
  51092. },
  51093. {
  51094. name: "Cosmic",
  51095. height: math.unit(3, "universes")
  51096. },
  51097. ]
  51098. ))
  51099. characterMakers.push(() => makeCharacter(
  51100. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51101. {
  51102. front: {
  51103. height: math.unit(3, "meters"),
  51104. weight: math.unit(7000, "lb"),
  51105. name: "Front",
  51106. image: {
  51107. source: "./media/characters/core-t/front.svg",
  51108. extra: 5729/4941,
  51109. bottom: 1129/6858
  51110. }
  51111. },
  51112. },
  51113. [
  51114. {
  51115. name: "Big",
  51116. height: math.unit(3, "meters"),
  51117. default: true
  51118. },
  51119. ]
  51120. ))
  51121. characterMakers.push(() => makeCharacter(
  51122. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51123. {
  51124. normal: {
  51125. height: math.unit(6 + 6/12, "feet"),
  51126. weight: math.unit(275, "lb"),
  51127. name: "Front",
  51128. image: {
  51129. source: "./media/characters/cadbunny/normal.svg",
  51130. extra: 1129/947,
  51131. bottom: 93/1222
  51132. },
  51133. default: true,
  51134. form: "normal"
  51135. },
  51136. gigantamax: {
  51137. height: math.unit(26, "feet"),
  51138. weight: math.unit(16000, "lb"),
  51139. name: "Front",
  51140. image: {
  51141. source: "./media/characters/cadbunny/gigantamax.svg",
  51142. extra: 1133/944,
  51143. bottom: 90/1223
  51144. },
  51145. default: true,
  51146. form: "gigantamax"
  51147. },
  51148. },
  51149. [
  51150. {
  51151. name: "Normal",
  51152. height: math.unit(6 + 6/12, "feet"),
  51153. default: true,
  51154. form: "normal"
  51155. },
  51156. {
  51157. name: "Small",
  51158. height: math.unit(26, "feet"),
  51159. default: true,
  51160. form: "gigantamax"
  51161. },
  51162. {
  51163. name: "Large",
  51164. height: math.unit(78, "feet"),
  51165. form: "gigantamax"
  51166. },
  51167. ],
  51168. {
  51169. "normal": {
  51170. name: "Normal",
  51171. default: true
  51172. },
  51173. "gigantamax": {
  51174. name: "Gigantamax"
  51175. }
  51176. }
  51177. ))
  51178. characterMakers.push(() => makeCharacter(
  51179. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51180. {
  51181. anthroFront: {
  51182. height: math.unit(8, "feet"),
  51183. weight: math.unit(300, "lb"),
  51184. name: "Front",
  51185. image: {
  51186. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51187. extra: 1272/1176,
  51188. bottom: 53/1325
  51189. },
  51190. form: "anthro",
  51191. default: true
  51192. },
  51193. feralSide: {
  51194. height: math.unit(4, "feet"),
  51195. weight: math.unit(250, "lb"),
  51196. name: "Side",
  51197. image: {
  51198. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51199. extra: 731/621,
  51200. bottom: 0/731
  51201. },
  51202. form: "feral",
  51203. default: true
  51204. },
  51205. },
  51206. [
  51207. {
  51208. name: "Regular",
  51209. height: math.unit(8, "feet"),
  51210. form: "anthro"
  51211. },
  51212. {
  51213. name: "Macro",
  51214. height: math.unit(250, "feet"),
  51215. form: "anthro",
  51216. default: true
  51217. },
  51218. {
  51219. name: "Regular",
  51220. height: math.unit(4, "feet"),
  51221. form: "feral"
  51222. },
  51223. {
  51224. name: "Macro",
  51225. height: math.unit(125, "feet"),
  51226. form: "feral",
  51227. default: true
  51228. },
  51229. ],
  51230. {
  51231. "anthro": {
  51232. name: "Anthro",
  51233. default: true
  51234. },
  51235. "feral": {
  51236. name: "Feral",
  51237. },
  51238. }
  51239. ))
  51240. characterMakers.push(() => makeCharacter(
  51241. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51242. {
  51243. front: {
  51244. height: math.unit(11 + 10/12, "feet"),
  51245. weight: math.unit(1587, "kg"),
  51246. name: "Front",
  51247. image: {
  51248. source: "./media/characters/maple-javira-dragon/front.svg",
  51249. extra: 1136/744,
  51250. bottom: 73/1209
  51251. }
  51252. },
  51253. side: {
  51254. height: math.unit(11 + 10/12, "feet"),
  51255. weight: math.unit(1587, "kg"),
  51256. name: "Side",
  51257. image: {
  51258. source: "./media/characters/maple-javira-dragon/side.svg",
  51259. extra: 712/505,
  51260. bottom: 17/729
  51261. }
  51262. },
  51263. head: {
  51264. height: math.unit(8.05, "feet"),
  51265. name: "Head",
  51266. image: {
  51267. source: "./media/characters/maple-javira-dragon/head.svg",
  51268. extra: 1420/1344,
  51269. bottom: 0/1420
  51270. }
  51271. },
  51272. },
  51273. [
  51274. {
  51275. name: "Normal",
  51276. height: math.unit(11 + 10/12, "feet"),
  51277. default: true
  51278. },
  51279. ]
  51280. ))
  51281. characterMakers.push(() => makeCharacter(
  51282. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51283. {
  51284. front: {
  51285. height: math.unit(117, "cm"),
  51286. weight: math.unit(50, "kg"),
  51287. name: "Front",
  51288. image: {
  51289. source: "./media/characters/sonia-wyverntail/front.svg",
  51290. extra: 708/592,
  51291. bottom: 25/733
  51292. }
  51293. },
  51294. },
  51295. [
  51296. {
  51297. name: "Normal",
  51298. height: math.unit(117, "cm"),
  51299. default: true
  51300. },
  51301. ]
  51302. ))
  51303. characterMakers.push(() => makeCharacter(
  51304. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51305. {
  51306. front: {
  51307. height: math.unit(6 + 5/12, "feet"),
  51308. name: "Front",
  51309. image: {
  51310. source: "./media/characters/micah/front.svg",
  51311. extra: 1758/1546,
  51312. bottom: 214/1972
  51313. }
  51314. },
  51315. },
  51316. [
  51317. {
  51318. name: "Normal",
  51319. height: math.unit(6 + 5/12, "feet"),
  51320. default: true
  51321. },
  51322. ]
  51323. ))
  51324. characterMakers.push(() => makeCharacter(
  51325. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51326. {
  51327. front: {
  51328. height: math.unit(1.75, "meters"),
  51329. weight: math.unit(100, "kg"),
  51330. name: "Front",
  51331. image: {
  51332. source: "./media/characters/zarya/front.svg",
  51333. extra: 741/735,
  51334. bottom: 44/785
  51335. },
  51336. extraAttributes: {
  51337. "tailLength": {
  51338. name: "Tail Length",
  51339. power: 1,
  51340. type: "length",
  51341. base: math.unit(180, "cm")
  51342. },
  51343. "pawLength": {
  51344. name: "Paw Length",
  51345. power: 1,
  51346. type: "length",
  51347. base: math.unit(31, "cm")
  51348. },
  51349. }
  51350. },
  51351. side: {
  51352. height: math.unit(1.75, "meters"),
  51353. weight: math.unit(100, "kg"),
  51354. name: "Side",
  51355. image: {
  51356. source: "./media/characters/zarya/side.svg",
  51357. extra: 776/770,
  51358. bottom: 17/793
  51359. },
  51360. extraAttributes: {
  51361. "tailLength": {
  51362. name: "Tail Length",
  51363. power: 1,
  51364. type: "length",
  51365. base: math.unit(180, "cm")
  51366. },
  51367. "pawLength": {
  51368. name: "Paw Length",
  51369. power: 1,
  51370. type: "length",
  51371. base: math.unit(31, "cm")
  51372. },
  51373. }
  51374. },
  51375. back: {
  51376. height: math.unit(1.75, "meters"),
  51377. weight: math.unit(100, "kg"),
  51378. name: "Back",
  51379. image: {
  51380. source: "./media/characters/zarya/back.svg",
  51381. extra: 741/735,
  51382. bottom: 44/785
  51383. },
  51384. extraAttributes: {
  51385. "tailLength": {
  51386. name: "Tail Length",
  51387. power: 1,
  51388. type: "length",
  51389. base: math.unit(180, "cm")
  51390. },
  51391. "pawLength": {
  51392. name: "Paw Length",
  51393. power: 1,
  51394. type: "length",
  51395. base: math.unit(31, "cm")
  51396. },
  51397. }
  51398. },
  51399. frontNoTail: {
  51400. height: math.unit(1.75, "meters"),
  51401. weight: math.unit(100, "kg"),
  51402. name: "Front (No Tail)",
  51403. image: {
  51404. source: "./media/characters/zarya/front-no-tail.svg",
  51405. extra: 741/735,
  51406. bottom: 44/785
  51407. },
  51408. extraAttributes: {
  51409. "tailLength": {
  51410. name: "Tail Length",
  51411. power: 1,
  51412. type: "length",
  51413. base: math.unit(180, "cm")
  51414. },
  51415. "pawLength": {
  51416. name: "Paw Length",
  51417. power: 1,
  51418. type: "length",
  51419. base: math.unit(31, "cm")
  51420. },
  51421. }
  51422. },
  51423. dressed: {
  51424. height: math.unit(1.75, "meters"),
  51425. weight: math.unit(100, "kg"),
  51426. name: "Dressed",
  51427. image: {
  51428. source: "./media/characters/zarya/dressed.svg",
  51429. extra: 683/672,
  51430. bottom: 79/762
  51431. },
  51432. extraAttributes: {
  51433. "tailLength": {
  51434. name: "Tail Length",
  51435. power: 1,
  51436. type: "length",
  51437. base: math.unit(180, "cm")
  51438. },
  51439. "pawLength": {
  51440. name: "Paw Length",
  51441. power: 1,
  51442. type: "length",
  51443. base: math.unit(31, "cm")
  51444. },
  51445. }
  51446. },
  51447. },
  51448. [
  51449. {
  51450. name: "Micro",
  51451. height: math.unit(5, "cm")
  51452. },
  51453. {
  51454. name: "Normal",
  51455. height: math.unit(1.75, "meters"),
  51456. default: true
  51457. },
  51458. {
  51459. name: "Macro",
  51460. height: math.unit(122, "meters")
  51461. },
  51462. ]
  51463. ))
  51464. characterMakers.push(() => makeCharacter(
  51465. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51466. {
  51467. front: {
  51468. height: math.unit(7.5, "feet"),
  51469. name: "Front",
  51470. image: {
  51471. source: "./media/characters/sven-hatisson/front.svg",
  51472. extra: 917/857,
  51473. bottom: 42/959
  51474. }
  51475. },
  51476. back: {
  51477. height: math.unit(7.5, "feet"),
  51478. name: "Back",
  51479. image: {
  51480. source: "./media/characters/sven-hatisson/back.svg",
  51481. extra: 903/856,
  51482. bottom: 15/918
  51483. }
  51484. },
  51485. },
  51486. [
  51487. {
  51488. name: "Base Height",
  51489. height: math.unit(7.5, "feet")
  51490. },
  51491. {
  51492. name: "Usual Height",
  51493. height: math.unit(13.5, "feet"),
  51494. default: true
  51495. },
  51496. {
  51497. name: "Smaller Macro",
  51498. height: math.unit(85, "feet")
  51499. },
  51500. {
  51501. name: "Moderate Macro",
  51502. height: math.unit(320, "feet")
  51503. },
  51504. {
  51505. name: "Large Macro",
  51506. height: math.unit(1000, "feet")
  51507. },
  51508. {
  51509. name: "Largest Size",
  51510. height: math.unit(2, "miles")
  51511. },
  51512. ]
  51513. ))
  51514. characterMakers.push(() => makeCharacter(
  51515. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51516. {
  51517. side: {
  51518. height: math.unit(1.8, "meters"),
  51519. weight: math.unit(275, "kg"),
  51520. name: "Side",
  51521. image: {
  51522. source: "./media/characters/terra/side.svg",
  51523. extra: 1273/1147,
  51524. bottom: 0/1273
  51525. }
  51526. },
  51527. },
  51528. [
  51529. {
  51530. name: "Normal",
  51531. height: math.unit(16.2, "meters"),
  51532. default: true
  51533. },
  51534. ]
  51535. ))
  51536. characterMakers.push(() => makeCharacter(
  51537. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51538. {
  51539. borzoiFront: {
  51540. height: math.unit(6 + 9/12, "feet"),
  51541. name: "Front",
  51542. image: {
  51543. source: "./media/characters/rae/borzoi-front.svg",
  51544. extra: 1161/1098,
  51545. bottom: 31/1192
  51546. },
  51547. form: "borzoi",
  51548. default: true
  51549. },
  51550. werewolfFront: {
  51551. height: math.unit(8 + 7/12, "feet"),
  51552. name: "Front",
  51553. image: {
  51554. source: "./media/characters/rae/werewolf-front.svg",
  51555. extra: 1411/1334,
  51556. bottom: 127/1538
  51557. },
  51558. form: "werewolf",
  51559. default: true
  51560. },
  51561. },
  51562. [
  51563. {
  51564. name: "Normal",
  51565. height: math.unit(6 + 9/12, "feet"),
  51566. default: true,
  51567. form: "borzoi"
  51568. },
  51569. {
  51570. name: "Normal",
  51571. height: math.unit(8 + 7/12, "feet"),
  51572. default: true,
  51573. form: "werewolf"
  51574. },
  51575. ],
  51576. {
  51577. "borzoi": {
  51578. name: "Borzoi",
  51579. default: true
  51580. },
  51581. "werewolf": {
  51582. name: "Werewolf",
  51583. },
  51584. }
  51585. ))
  51586. characterMakers.push(() => makeCharacter(
  51587. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51588. {
  51589. front: {
  51590. height: math.unit(8 + 7/12, "feet"),
  51591. weight: math.unit(482, "lb"),
  51592. name: "Front",
  51593. image: {
  51594. source: "./media/characters/kit/front.svg",
  51595. extra: 1247/1103,
  51596. bottom: 41/1288
  51597. }
  51598. },
  51599. back: {
  51600. height: math.unit(8 + 7/12, "feet"),
  51601. weight: math.unit(482, "lb"),
  51602. name: "Back",
  51603. image: {
  51604. source: "./media/characters/kit/back.svg",
  51605. extra: 1252/1123,
  51606. bottom: 21/1273
  51607. }
  51608. },
  51609. paw: {
  51610. height: math.unit(1.46, "feet"),
  51611. name: "Paw",
  51612. image: {
  51613. source: "./media/characters/kit/paw.svg"
  51614. }
  51615. },
  51616. },
  51617. [
  51618. {
  51619. name: "Normal",
  51620. height: math.unit(2.61, "meters"),
  51621. default: true
  51622. },
  51623. {
  51624. name: "\"Tall\"",
  51625. height: math.unit(8.21, "meters")
  51626. },
  51627. {
  51628. name: "Tall",
  51629. height: math.unit(19.6, "meters")
  51630. },
  51631. {
  51632. name: "Very Tall",
  51633. height: math.unit(57.91, "meters")
  51634. },
  51635. {
  51636. name: "Semi-Macro",
  51637. height: math.unit(138.64, "meters")
  51638. },
  51639. {
  51640. name: "Macro",
  51641. height: math.unit(831.99, "meters")
  51642. },
  51643. {
  51644. name: "EX-Macro",
  51645. height: math.unit(96451121, "meters")
  51646. },
  51647. {
  51648. name: "S1-Omnipotent",
  51649. height: math.unit(4.42074e+9, "meters")
  51650. },
  51651. {
  51652. name: "S2-Omnipotent",
  51653. height: math.unit(9.42074e+17, "meters")
  51654. },
  51655. {
  51656. name: "Omnipotent",
  51657. height: math.unit(4.23112e+24, "meters")
  51658. },
  51659. {
  51660. name: "Hypergod",
  51661. height: math.unit(5.05176e+27, "meters")
  51662. },
  51663. {
  51664. name: "Hypergod-EX",
  51665. height: math.unit(9.45532e+49, "meters")
  51666. },
  51667. {
  51668. name: "Hypergod-SP",
  51669. height: math.unit(9.45532e+195, "meters")
  51670. },
  51671. ]
  51672. ))
  51673. characterMakers.push(() => makeCharacter(
  51674. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51675. {
  51676. side: {
  51677. height: math.unit(0.6, "meters"),
  51678. weight: math.unit(24, "kg"),
  51679. name: "Side",
  51680. image: {
  51681. source: "./media/characters/celeste/side.svg",
  51682. extra: 810/517,
  51683. bottom: 53/863
  51684. }
  51685. },
  51686. },
  51687. [
  51688. {
  51689. name: "Velociraptor",
  51690. height: math.unit(0.6, "meters"),
  51691. default: true
  51692. },
  51693. {
  51694. name: "Utahraptor",
  51695. height: math.unit(1.8, "meters")
  51696. },
  51697. {
  51698. name: "Gallimimus",
  51699. height: math.unit(4.0, "meters")
  51700. },
  51701. {
  51702. name: "Large",
  51703. height: math.unit(20, "meters")
  51704. },
  51705. {
  51706. name: "Planetary",
  51707. height: math.unit(50, "megameters")
  51708. },
  51709. {
  51710. name: "Stellar",
  51711. height: math.unit(1.5, "gigameters")
  51712. },
  51713. {
  51714. name: "Galactic",
  51715. height: math.unit(100, "exameters")
  51716. },
  51717. ]
  51718. ))
  51719. characterMakers.push(() => makeCharacter(
  51720. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51721. {
  51722. front: {
  51723. height: math.unit(6, "feet"),
  51724. weight: math.unit(210, "lb"),
  51725. name: "Front",
  51726. image: {
  51727. source: "./media/characters/glacia/front.svg",
  51728. extra: 958/901,
  51729. bottom: 45/1003
  51730. }
  51731. },
  51732. },
  51733. [
  51734. {
  51735. name: "Macro",
  51736. height: math.unit(1000, "meters"),
  51737. default: true
  51738. },
  51739. ]
  51740. ))
  51741. characterMakers.push(() => makeCharacter(
  51742. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51743. {
  51744. front: {
  51745. height: math.unit(4, "meters"),
  51746. name: "Front",
  51747. image: {
  51748. source: "./media/characters/giri/front.svg",
  51749. extra: 966/894,
  51750. bottom: 21/987
  51751. }
  51752. },
  51753. },
  51754. [
  51755. {
  51756. name: "Normal",
  51757. height: math.unit(4, "meters"),
  51758. default: true
  51759. },
  51760. ]
  51761. ))
  51762. characterMakers.push(() => makeCharacter(
  51763. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51764. {
  51765. back: {
  51766. height: math.unit(4, "feet"),
  51767. weight: math.unit(37, "lb"),
  51768. name: "Back",
  51769. image: {
  51770. source: "./media/characters/tin/back.svg",
  51771. extra: 845/780,
  51772. bottom: 28/873
  51773. }
  51774. },
  51775. },
  51776. [
  51777. {
  51778. name: "Normal",
  51779. height: math.unit(4, "feet"),
  51780. default: true
  51781. },
  51782. ]
  51783. ))
  51784. characterMakers.push(() => makeCharacter(
  51785. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51786. {
  51787. front: {
  51788. height: math.unit(25, "feet"),
  51789. name: "Front",
  51790. image: {
  51791. source: "./media/characters/cadenza-vivace/front.svg",
  51792. extra: 1842/1578,
  51793. bottom: 30/1872
  51794. }
  51795. },
  51796. },
  51797. [
  51798. {
  51799. name: "Macro",
  51800. height: math.unit(25, "feet"),
  51801. default: true
  51802. },
  51803. ]
  51804. ))
  51805. characterMakers.push(() => makeCharacter(
  51806. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51807. {
  51808. front: {
  51809. height: math.unit(10, "feet"),
  51810. weight: math.unit(625, "kg"),
  51811. name: "Front",
  51812. image: {
  51813. source: "./media/characters/zain/front.svg",
  51814. extra: 1682/1498,
  51815. bottom: 223/1905
  51816. }
  51817. },
  51818. back: {
  51819. height: math.unit(10, "feet"),
  51820. weight: math.unit(625, "kg"),
  51821. name: "Back",
  51822. image: {
  51823. source: "./media/characters/zain/back.svg",
  51824. extra: 1814/1657,
  51825. bottom: 152/1966
  51826. }
  51827. },
  51828. head: {
  51829. height: math.unit(10, "feet"),
  51830. weight: math.unit(625, "kg"),
  51831. name: "Head",
  51832. image: {
  51833. source: "./media/characters/zain/head.svg",
  51834. extra: 1059/762,
  51835. bottom: 0/1059
  51836. }
  51837. },
  51838. },
  51839. [
  51840. {
  51841. name: "Normal",
  51842. height: math.unit(10, "feet"),
  51843. default: true
  51844. },
  51845. ]
  51846. ))
  51847. characterMakers.push(() => makeCharacter(
  51848. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51849. {
  51850. front: {
  51851. height: math.unit(6 + 5/12, "feet"),
  51852. weight: math.unit(750, "lb"),
  51853. name: "Front",
  51854. image: {
  51855. source: "./media/characters/ruchex/front.svg",
  51856. extra: 877/820,
  51857. bottom: 17/894
  51858. },
  51859. extraAttributes: {
  51860. "width": {
  51861. name: "Width",
  51862. power: 1,
  51863. type: "length",
  51864. base: math.unit(4.757, "feet")
  51865. },
  51866. }
  51867. },
  51868. },
  51869. [
  51870. {
  51871. name: "Normal",
  51872. height: math.unit(6 + 5/12, "feet"),
  51873. default: true
  51874. },
  51875. ]
  51876. ))
  51877. characterMakers.push(() => makeCharacter(
  51878. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51879. {
  51880. dressedFront: {
  51881. height: math.unit(191, "cm"),
  51882. weight: math.unit(80, "kg"),
  51883. name: "Front",
  51884. image: {
  51885. source: "./media/characters/buster/dressed-front.svg",
  51886. extra: 1022/973,
  51887. bottom: 69/1091
  51888. }
  51889. },
  51890. dressedBack: {
  51891. height: math.unit(191, "cm"),
  51892. weight: math.unit(80, "kg"),
  51893. name: "Back",
  51894. image: {
  51895. source: "./media/characters/buster/dressed-back.svg",
  51896. extra: 1018/970,
  51897. bottom: 55/1073
  51898. }
  51899. },
  51900. nudeFront: {
  51901. height: math.unit(191, "cm"),
  51902. weight: math.unit(80, "kg"),
  51903. name: "Front (Nude)",
  51904. image: {
  51905. source: "./media/characters/buster/nude-front.svg",
  51906. extra: 1022/973,
  51907. bottom: 69/1091
  51908. }
  51909. },
  51910. nudeBack: {
  51911. height: math.unit(191, "cm"),
  51912. weight: math.unit(80, "kg"),
  51913. name: "Back (Nude)",
  51914. image: {
  51915. source: "./media/characters/buster/nude-back.svg",
  51916. extra: 1018/970,
  51917. bottom: 55/1073
  51918. }
  51919. },
  51920. dick: {
  51921. height: math.unit(2.59, "feet"),
  51922. name: "Dick",
  51923. image: {
  51924. source: "./media/characters/buster/dick.svg"
  51925. }
  51926. },
  51927. ass: {
  51928. height: math.unit(1.2, "feet"),
  51929. name: "Ass",
  51930. image: {
  51931. source: "./media/characters/buster/ass.svg"
  51932. }
  51933. },
  51934. },
  51935. [
  51936. {
  51937. name: "Normal",
  51938. height: math.unit(191, "cm"),
  51939. default: true
  51940. },
  51941. ]
  51942. ))
  51943. characterMakers.push(() => makeCharacter(
  51944. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51945. {
  51946. side: {
  51947. height: math.unit(8.1, "feet"),
  51948. weight: math.unit(3500, "lb"),
  51949. name: "Side",
  51950. image: {
  51951. source: "./media/characters/sonya/side.svg",
  51952. extra: 1730/1317,
  51953. bottom: 86/1816
  51954. }
  51955. },
  51956. },
  51957. [
  51958. {
  51959. name: "Normal",
  51960. height: math.unit(8.1, "feet"),
  51961. default: true
  51962. },
  51963. ]
  51964. ))
  51965. characterMakers.push(() => makeCharacter(
  51966. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51967. {
  51968. front: {
  51969. height: math.unit(6, "feet"),
  51970. weight: math.unit(150, "lb"),
  51971. name: "Front",
  51972. image: {
  51973. source: "./media/characters/cadence-andrysiak/front.svg",
  51974. extra: 1164/1121,
  51975. bottom: 60/1224
  51976. }
  51977. },
  51978. back: {
  51979. height: math.unit(6, "feet"),
  51980. weight: math.unit(150, "lb"),
  51981. name: "Back",
  51982. image: {
  51983. source: "./media/characters/cadence-andrysiak/back.svg",
  51984. extra: 1200/1165,
  51985. bottom: 9/1209
  51986. }
  51987. },
  51988. dressed: {
  51989. height: math.unit(6, "feet"),
  51990. weight: math.unit(150, "lb"),
  51991. name: "Dressed",
  51992. image: {
  51993. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51994. extra: 1164/1121,
  51995. bottom: 60/1224
  51996. }
  51997. },
  51998. },
  51999. [
  52000. {
  52001. name: "Micro",
  52002. height: math.unit(1, "mm")
  52003. },
  52004. {
  52005. name: "Normal",
  52006. height: math.unit(6, "feet"),
  52007. default: true
  52008. },
  52009. ]
  52010. ))
  52011. characterMakers.push(() => makeCharacter(
  52012. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52013. {
  52014. front: {
  52015. height: math.unit(60, "inches"),
  52016. weight: math.unit(16, "lb"),
  52017. preyCapacity: math.unit(80, "liters"),
  52018. name: "Front",
  52019. image: {
  52020. source: "./media/characters/penny-lynx/front.svg",
  52021. extra: 1959/1769,
  52022. bottom: 49/2008
  52023. }
  52024. },
  52025. },
  52026. [
  52027. {
  52028. name: "Nokia",
  52029. height: math.unit(2, "inches")
  52030. },
  52031. {
  52032. name: "Desktop",
  52033. height: math.unit(24, "inches")
  52034. },
  52035. {
  52036. name: "TV",
  52037. height: math.unit(60, "inches")
  52038. },
  52039. {
  52040. name: "Jumbotron",
  52041. height: math.unit(12, "feet")
  52042. },
  52043. {
  52044. name: "Billboard",
  52045. height: math.unit(48, "feet"),
  52046. default: true
  52047. },
  52048. {
  52049. name: "IMAX",
  52050. height: math.unit(96, "feet")
  52051. },
  52052. {
  52053. name: "SINGULARITY",
  52054. height: math.unit(864938, "miles")
  52055. },
  52056. ]
  52057. ))
  52058. characterMakers.push(() => makeCharacter(
  52059. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52060. {
  52061. front: {
  52062. height: math.unit(5 + 4/12, "feet"),
  52063. weight: math.unit(230, "lb"),
  52064. name: "Front",
  52065. image: {
  52066. source: "./media/characters/sukebe/front.svg",
  52067. extra: 2130/2038,
  52068. bottom: 90/2220
  52069. }
  52070. },
  52071. back: {
  52072. height: math.unit(3.48, "feet"),
  52073. weight: math.unit(230, "lb"),
  52074. name: "Back",
  52075. image: {
  52076. source: "./media/characters/sukebe/back.svg",
  52077. extra: 1670/1604,
  52078. bottom: 0/1670
  52079. }
  52080. },
  52081. },
  52082. [
  52083. {
  52084. name: "Normal",
  52085. height: math.unit(5 + 4/12, "feet"),
  52086. default: true
  52087. },
  52088. ]
  52089. ))
  52090. characterMakers.push(() => makeCharacter(
  52091. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52092. {
  52093. front: {
  52094. height: math.unit(6, "feet"),
  52095. name: "Front",
  52096. image: {
  52097. source: "./media/characters/nylla/front.svg",
  52098. extra: 1868/1699,
  52099. bottom: 97/1965
  52100. }
  52101. },
  52102. back: {
  52103. height: math.unit(6, "feet"),
  52104. name: "Back",
  52105. image: {
  52106. source: "./media/characters/nylla/back.svg",
  52107. extra: 1889/1712,
  52108. bottom: 93/1982
  52109. }
  52110. },
  52111. frontNsfw: {
  52112. height: math.unit(6, "feet"),
  52113. name: "Front (NSFW)",
  52114. image: {
  52115. source: "./media/characters/nylla/front-nsfw.svg",
  52116. extra: 1868/1699,
  52117. bottom: 97/1965
  52118. },
  52119. extraAttributes: {
  52120. "dickLength": {
  52121. name: "Dick Length",
  52122. power: 1,
  52123. type: "length",
  52124. base: math.unit(1.4, "feet")
  52125. },
  52126. "cumVolume": {
  52127. name: "Cum Volume",
  52128. power: 3,
  52129. type: "volume",
  52130. base: math.unit(100, "mL")
  52131. },
  52132. }
  52133. },
  52134. backNsfw: {
  52135. height: math.unit(6, "feet"),
  52136. name: "Back (NSFW)",
  52137. image: {
  52138. source: "./media/characters/nylla/back-nsfw.svg",
  52139. extra: 1889/1712,
  52140. bottom: 93/1982
  52141. }
  52142. },
  52143. maw: {
  52144. height: math.unit(2.10, "feet"),
  52145. name: "Maw",
  52146. image: {
  52147. source: "./media/characters/nylla/maw.svg"
  52148. }
  52149. },
  52150. paws: {
  52151. height: math.unit(2.06, "feet"),
  52152. name: "Paws",
  52153. image: {
  52154. source: "./media/characters/nylla/paws.svg"
  52155. }
  52156. },
  52157. muzzle: {
  52158. height: math.unit(0.61, "feet"),
  52159. name: "Muzzle",
  52160. image: {
  52161. source: "./media/characters/nylla/muzzle.svg"
  52162. }
  52163. },
  52164. sheath: {
  52165. height: math.unit(1.305, "feet"),
  52166. name: "Sheath",
  52167. image: {
  52168. source: "./media/characters/nylla/sheath.svg"
  52169. }
  52170. },
  52171. },
  52172. [
  52173. {
  52174. name: "Micro",
  52175. height: math.unit(7.5, "inches")
  52176. },
  52177. {
  52178. name: "Normal",
  52179. height: math.unit(7, "feet"),
  52180. default: true
  52181. },
  52182. {
  52183. name: "Macro",
  52184. height: math.unit(60, "feet")
  52185. },
  52186. {
  52187. name: "Mega",
  52188. height: math.unit(200, "feet")
  52189. },
  52190. ]
  52191. ))
  52192. characterMakers.push(() => makeCharacter(
  52193. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52194. {
  52195. front: {
  52196. height: math.unit(10, "feet"),
  52197. weight: math.unit(2300, "lb"),
  52198. name: "Front",
  52199. image: {
  52200. source: "./media/characters/hunt3r/front.svg",
  52201. extra: 1909/1742,
  52202. bottom: 46/1955
  52203. }
  52204. },
  52205. },
  52206. [
  52207. {
  52208. name: "Normal",
  52209. height: math.unit(10, "feet"),
  52210. default: true
  52211. },
  52212. ]
  52213. ))
  52214. characterMakers.push(() => makeCharacter(
  52215. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52216. {
  52217. dressed: {
  52218. height: math.unit(11, "feet"),
  52219. weight: math.unit(18500, "lb"),
  52220. preyCapacity: math.unit(9, "people"),
  52221. name: "Dressed",
  52222. image: {
  52223. source: "./media/characters/cylphis/dressed.svg",
  52224. extra: 1028/1003,
  52225. bottom: 75/1103
  52226. },
  52227. },
  52228. undressed: {
  52229. height: math.unit(11, "feet"),
  52230. weight: math.unit(18500, "lb"),
  52231. preyCapacity: math.unit(9, "people"),
  52232. name: "Undressed",
  52233. image: {
  52234. source: "./media/characters/cylphis/undressed.svg",
  52235. extra: 1028/1003,
  52236. bottom: 75/1103
  52237. }
  52238. },
  52239. full: {
  52240. height: math.unit(11, "feet"),
  52241. weight: math.unit(18500 + 150*9, "lb"),
  52242. preyCapacity: math.unit(9, "people"),
  52243. name: "Full",
  52244. image: {
  52245. source: "./media/characters/cylphis/full.svg",
  52246. extra: 1028/1003,
  52247. bottom: 75/1103
  52248. }
  52249. },
  52250. },
  52251. [
  52252. {
  52253. name: "Small",
  52254. height: math.unit(8, "feet")
  52255. },
  52256. {
  52257. name: "Normal",
  52258. height: math.unit(11, "feet"),
  52259. default: true
  52260. },
  52261. ]
  52262. ))
  52263. characterMakers.push(() => makeCharacter(
  52264. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52265. {
  52266. front: {
  52267. height: math.unit(2 + 7/12, "feet"),
  52268. name: "Front",
  52269. image: {
  52270. source: "./media/characters/orishan/front.svg",
  52271. extra: 1058/1023,
  52272. bottom: 23/1081
  52273. }
  52274. },
  52275. back: {
  52276. height: math.unit(2 + 7/12, "feet"),
  52277. name: "Back",
  52278. image: {
  52279. source: "./media/characters/orishan/back.svg",
  52280. extra: 1058/1023,
  52281. bottom: 23/1081
  52282. }
  52283. },
  52284. },
  52285. [
  52286. {
  52287. name: "Micro",
  52288. height: math.unit(2, "cm")
  52289. },
  52290. {
  52291. name: "Normal",
  52292. height: math.unit(2 + 7/12, "feet"),
  52293. default: true
  52294. },
  52295. ]
  52296. ))
  52297. characterMakers.push(() => makeCharacter(
  52298. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52299. {
  52300. front: {
  52301. height: math.unit(3, "meters"),
  52302. weight: math.unit(508, "kg"),
  52303. name: "Front",
  52304. image: {
  52305. source: "./media/characters/seranis/front.svg",
  52306. extra: 1478/1454,
  52307. bottom: 41/1519
  52308. }
  52309. },
  52310. },
  52311. [
  52312. {
  52313. name: "Normal",
  52314. height: math.unit(3, "meters"),
  52315. default: true
  52316. },
  52317. {
  52318. name: "Macro",
  52319. height: math.unit(108, "meters")
  52320. },
  52321. {
  52322. name: "Megamacro",
  52323. height: math.unit(1250, "meters")
  52324. },
  52325. ]
  52326. ))
  52327. characterMakers.push(() => makeCharacter(
  52328. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52329. {
  52330. undressed: {
  52331. height: math.unit(5 + 3/12, "feet"),
  52332. name: "Undressed",
  52333. image: {
  52334. source: "./media/characters/ankou/undressed.svg",
  52335. extra: 1301/1213,
  52336. bottom: 87/1388
  52337. }
  52338. },
  52339. dressed: {
  52340. height: math.unit(5 + 3/12, "feet"),
  52341. name: "Dressed",
  52342. image: {
  52343. source: "./media/characters/ankou/dressed.svg",
  52344. extra: 1301/1213,
  52345. bottom: 87/1388
  52346. }
  52347. },
  52348. head: {
  52349. height: math.unit(1.61, "feet"),
  52350. name: "Head",
  52351. image: {
  52352. source: "./media/characters/ankou/head.svg"
  52353. }
  52354. },
  52355. },
  52356. [
  52357. {
  52358. name: "Normal",
  52359. height: math.unit(5 + 3/12, "feet"),
  52360. default: true
  52361. },
  52362. ]
  52363. ))
  52364. characterMakers.push(() => makeCharacter(
  52365. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52366. {
  52367. side: {
  52368. height: math.unit(6 + 3/12, "feet"),
  52369. weight: math.unit(200, "kg"),
  52370. name: "Side",
  52371. image: {
  52372. source: "./media/characters/juniper-skunktaur/side.svg",
  52373. extra: 1574/1229,
  52374. bottom: 38/1612
  52375. }
  52376. },
  52377. front: {
  52378. height: math.unit(6 + 3/12, "feet"),
  52379. weight: math.unit(200, "kg"),
  52380. name: "Front",
  52381. image: {
  52382. source: "./media/characters/juniper-skunktaur/front.svg",
  52383. extra: 1337/1278,
  52384. bottom: 22/1359
  52385. }
  52386. },
  52387. back: {
  52388. height: math.unit(6 + 3/12, "feet"),
  52389. weight: math.unit(200, "kg"),
  52390. name: "Back",
  52391. image: {
  52392. source: "./media/characters/juniper-skunktaur/back.svg",
  52393. extra: 1618/1273,
  52394. bottom: 13/1631
  52395. }
  52396. },
  52397. top: {
  52398. height: math.unit(2.62, "feet"),
  52399. weight: math.unit(200, "kg"),
  52400. name: "Top",
  52401. image: {
  52402. source: "./media/characters/juniper-skunktaur/top.svg"
  52403. }
  52404. },
  52405. },
  52406. [
  52407. {
  52408. name: "Normal",
  52409. height: math.unit(6 + 3/12, "feet"),
  52410. default: true
  52411. },
  52412. ]
  52413. ))
  52414. characterMakers.push(() => makeCharacter(
  52415. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52416. {
  52417. front: {
  52418. height: math.unit(20.5, "feet"),
  52419. name: "Front",
  52420. image: {
  52421. source: "./media/characters/rei/front.svg",
  52422. extra: 1349/1195,
  52423. bottom: 31/1380
  52424. }
  52425. },
  52426. back: {
  52427. height: math.unit(20.5, "feet"),
  52428. name: "Back",
  52429. image: {
  52430. source: "./media/characters/rei/back.svg",
  52431. extra: 1358/1204,
  52432. bottom: 22/1380
  52433. }
  52434. },
  52435. pawsDigi: {
  52436. height: math.unit(3.45, "feet"),
  52437. name: "Paws (Digi)",
  52438. image: {
  52439. source: "./media/characters/rei/paws-digi.svg"
  52440. }
  52441. },
  52442. pawsPlanti: {
  52443. height: math.unit(3.45, "feet"),
  52444. name: "Paws (Planti)",
  52445. image: {
  52446. source: "./media/characters/rei/paws-planti.svg"
  52447. }
  52448. },
  52449. },
  52450. [
  52451. {
  52452. name: "Normal",
  52453. height: math.unit(20.5, "feet"),
  52454. default: true
  52455. },
  52456. ]
  52457. ))
  52458. characterMakers.push(() => makeCharacter(
  52459. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52460. {
  52461. front: {
  52462. height: math.unit(5 + 11/12, "feet"),
  52463. name: "Front",
  52464. image: {
  52465. source: "./media/characters/carina/front.svg",
  52466. extra: 1720/1449,
  52467. bottom: 14/1734
  52468. }
  52469. },
  52470. back: {
  52471. height: math.unit(5 + 11/12, "feet"),
  52472. name: "Back",
  52473. image: {
  52474. source: "./media/characters/carina/back.svg",
  52475. extra: 1493/1445,
  52476. bottom: 17/1510
  52477. }
  52478. },
  52479. paw: {
  52480. height: math.unit(0.92, "feet"),
  52481. name: "Paw",
  52482. image: {
  52483. source: "./media/characters/carina/paw.svg"
  52484. }
  52485. },
  52486. },
  52487. [
  52488. {
  52489. name: "Normal",
  52490. height: math.unit(5 + 11/12, "feet"),
  52491. default: true
  52492. },
  52493. ]
  52494. ))
  52495. characterMakers.push(() => makeCharacter(
  52496. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52497. {
  52498. front: {
  52499. height: math.unit(4.88, "meters"),
  52500. name: "Front",
  52501. image: {
  52502. source: "./media/characters/maya/front.svg",
  52503. extra: 1222/1145,
  52504. bottom: 57/1279
  52505. }
  52506. },
  52507. },
  52508. [
  52509. {
  52510. name: "Normal",
  52511. height: math.unit(4.88, "meters"),
  52512. default: true
  52513. },
  52514. {
  52515. name: "Macro",
  52516. height: math.unit(38.1, "meters")
  52517. },
  52518. {
  52519. name: "Macro+",
  52520. height: math.unit(152.4, "meters")
  52521. },
  52522. {
  52523. name: "Macro++",
  52524. height: math.unit(16.09, "km")
  52525. },
  52526. {
  52527. name: "Mega-macro",
  52528. height: math.unit(700, "megameters")
  52529. },
  52530. ]
  52531. ))
  52532. characterMakers.push(() => makeCharacter(
  52533. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52534. {
  52535. front: {
  52536. height: math.unit(6 + 2/12, "feet"),
  52537. weight: math.unit(500, "lb"),
  52538. preyCapacity: math.unit(4, "people"),
  52539. name: "Front",
  52540. image: {
  52541. source: "./media/characters/yepir/front.svg"
  52542. }
  52543. },
  52544. side: {
  52545. height: math.unit(6 + 2/12, "feet"),
  52546. weight: math.unit(500, "lb"),
  52547. preyCapacity: math.unit(4, "people"),
  52548. name: "Side",
  52549. image: {
  52550. source: "./media/characters/yepir/side.svg"
  52551. }
  52552. },
  52553. paw: {
  52554. height: math.unit(1.05, "feet"),
  52555. name: "Paw",
  52556. image: {
  52557. source: "./media/characters/yepir/paw.svg"
  52558. }
  52559. },
  52560. },
  52561. [
  52562. {
  52563. name: "Normal",
  52564. height: math.unit(6 + 2/12, "feet"),
  52565. default: true
  52566. },
  52567. ]
  52568. ))
  52569. characterMakers.push(() => makeCharacter(
  52570. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52571. {
  52572. front: {
  52573. height: math.unit(5 + 4/12, "feet"),
  52574. name: "Front",
  52575. image: {
  52576. source: "./media/characters/russec/front.svg",
  52577. extra: 1926/1626,
  52578. bottom: 72/1998
  52579. }
  52580. },
  52581. back: {
  52582. height: math.unit(5 + 4/12, "feet"),
  52583. name: "Back",
  52584. image: {
  52585. source: "./media/characters/russec/back.svg",
  52586. extra: 1910/1591,
  52587. bottom: 48/1958
  52588. }
  52589. },
  52590. },
  52591. [
  52592. {
  52593. name: "Small",
  52594. height: math.unit(5 + 4/12, "feet")
  52595. },
  52596. {
  52597. name: "Normal",
  52598. height: math.unit(72, "feet"),
  52599. default: true
  52600. },
  52601. ]
  52602. ))
  52603. characterMakers.push(() => makeCharacter(
  52604. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52605. {
  52606. side: {
  52607. height: math.unit(12, "feet"),
  52608. name: "Side",
  52609. image: {
  52610. source: "./media/characters/cianus/side.svg",
  52611. extra: 808/526,
  52612. bottom: 61/869
  52613. }
  52614. },
  52615. },
  52616. [
  52617. {
  52618. name: "Normal",
  52619. height: math.unit(12, "feet"),
  52620. default: true
  52621. },
  52622. ]
  52623. ))
  52624. characterMakers.push(() => makeCharacter(
  52625. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52626. {
  52627. front: {
  52628. height: math.unit(9 + 6/12, "feet"),
  52629. weight: math.unit(300, "lb"),
  52630. name: "Front",
  52631. image: {
  52632. source: "./media/characters/ahab/front.svg",
  52633. extra: 1897/1868,
  52634. bottom: 121/2018
  52635. }
  52636. },
  52637. frontNsfw: {
  52638. height: math.unit(9 + 6/12, "feet"),
  52639. weight: math.unit(300, "lb"),
  52640. name: "Front-nsfw",
  52641. image: {
  52642. source: "./media/characters/ahab/front-nsfw.svg",
  52643. extra: 1897/1868,
  52644. bottom: 121/2018
  52645. }
  52646. },
  52647. },
  52648. [
  52649. {
  52650. name: "Normal",
  52651. height: math.unit(9 + 6/12, "feet")
  52652. },
  52653. {
  52654. name: "Macro",
  52655. height: math.unit(657, "feet"),
  52656. default: true
  52657. },
  52658. ]
  52659. ))
  52660. characterMakers.push(() => makeCharacter(
  52661. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52662. {
  52663. front: {
  52664. height: math.unit(2.69, "meters"),
  52665. weight: math.unit(132, "kg"),
  52666. name: "Front",
  52667. image: {
  52668. source: "./media/characters/aarkus/front.svg",
  52669. extra: 1400/1231,
  52670. bottom: 34/1434
  52671. }
  52672. },
  52673. back: {
  52674. height: math.unit(2.69, "meters"),
  52675. weight: math.unit(132, "kg"),
  52676. name: "Back",
  52677. image: {
  52678. source: "./media/characters/aarkus/back.svg",
  52679. extra: 1381/1218,
  52680. bottom: 30/1411
  52681. }
  52682. },
  52683. frontNsfw: {
  52684. height: math.unit(2.69, "meters"),
  52685. weight: math.unit(132, "kg"),
  52686. name: "Front (NSFW)",
  52687. image: {
  52688. source: "./media/characters/aarkus/front-nsfw.svg",
  52689. extra: 1400/1231,
  52690. bottom: 34/1434
  52691. }
  52692. },
  52693. foot: {
  52694. height: math.unit(1.45, "feet"),
  52695. name: "Foot",
  52696. image: {
  52697. source: "./media/characters/aarkus/foot.svg"
  52698. }
  52699. },
  52700. head: {
  52701. height: math.unit(2.85, "feet"),
  52702. name: "Head",
  52703. image: {
  52704. source: "./media/characters/aarkus/head.svg"
  52705. }
  52706. },
  52707. headAlt: {
  52708. height: math.unit(3.07, "feet"),
  52709. name: "Head (Alt)",
  52710. image: {
  52711. source: "./media/characters/aarkus/head-alt.svg"
  52712. }
  52713. },
  52714. mouth: {
  52715. height: math.unit(1.25, "feet"),
  52716. name: "Mouth",
  52717. image: {
  52718. source: "./media/characters/aarkus/mouth.svg"
  52719. }
  52720. },
  52721. dick: {
  52722. height: math.unit(1.77, "feet"),
  52723. name: "Dick",
  52724. image: {
  52725. source: "./media/characters/aarkus/dick.svg"
  52726. }
  52727. },
  52728. },
  52729. [
  52730. {
  52731. name: "Normal",
  52732. height: math.unit(2.69, "meters"),
  52733. default: true
  52734. },
  52735. {
  52736. name: "Macro",
  52737. height: math.unit(269, "meters")
  52738. },
  52739. {
  52740. name: "Macro+",
  52741. height: math.unit(672.5, "meters")
  52742. },
  52743. {
  52744. name: "Megamacro",
  52745. height: math.unit(2.017, "km")
  52746. },
  52747. ]
  52748. ))
  52749. characterMakers.push(() => makeCharacter(
  52750. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52751. {
  52752. front: {
  52753. height: math.unit(23.47, "cm"),
  52754. weight: math.unit(600, "grams"),
  52755. name: "Front",
  52756. image: {
  52757. source: "./media/characters/diode/front.svg",
  52758. extra: 1778/1396,
  52759. bottom: 95/1873
  52760. }
  52761. },
  52762. side: {
  52763. height: math.unit(23.47, "cm"),
  52764. weight: math.unit(600, "grams"),
  52765. name: "Side",
  52766. image: {
  52767. source: "./media/characters/diode/side.svg",
  52768. extra: 1831/1404,
  52769. bottom: 86/1917
  52770. }
  52771. },
  52772. wings: {
  52773. height: math.unit(0.683, "feet"),
  52774. name: "Wings",
  52775. image: {
  52776. source: "./media/characters/diode/wings.svg"
  52777. }
  52778. },
  52779. },
  52780. [
  52781. {
  52782. name: "Normal",
  52783. height: math.unit(23.47, "cm"),
  52784. default: true
  52785. },
  52786. ]
  52787. ))
  52788. characterMakers.push(() => makeCharacter(
  52789. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52790. {
  52791. front: {
  52792. height: math.unit(6 + 3/12, "feet"),
  52793. weight: math.unit(250, "lb"),
  52794. name: "Front",
  52795. image: {
  52796. source: "./media/characters/reika/front.svg",
  52797. extra: 1120/1078,
  52798. bottom: 86/1206
  52799. }
  52800. },
  52801. },
  52802. [
  52803. {
  52804. name: "Normal",
  52805. height: math.unit(6 + 3/12, "feet"),
  52806. default: true
  52807. },
  52808. ]
  52809. ))
  52810. characterMakers.push(() => makeCharacter(
  52811. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52812. {
  52813. front: {
  52814. height: math.unit(16 + 8/12, "feet"),
  52815. weight: math.unit(9000, "lb"),
  52816. name: "Front",
  52817. image: {
  52818. source: "./media/characters/lokuto-takama/front.svg",
  52819. extra: 1774/1632,
  52820. bottom: 147/1921
  52821. },
  52822. extraAttributes: {
  52823. "bustWidth": {
  52824. name: "Bust Width",
  52825. power: 1,
  52826. type: "length",
  52827. base: math.unit(2.4, "meters")
  52828. },
  52829. "breastWeight": {
  52830. name: "Breast Weight",
  52831. power: 3,
  52832. type: "mass",
  52833. base: math.unit(1000, "kg")
  52834. },
  52835. }
  52836. },
  52837. },
  52838. [
  52839. {
  52840. name: "Normal",
  52841. height: math.unit(16 + 8/12, "feet"),
  52842. default: true
  52843. },
  52844. ]
  52845. ))
  52846. characterMakers.push(() => makeCharacter(
  52847. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52848. {
  52849. front: {
  52850. height: math.unit(10, "cm"),
  52851. weight: math.unit(850, "grams"),
  52852. name: "Front",
  52853. image: {
  52854. source: "./media/characters/owak-bone/front.svg",
  52855. extra: 1965/1801,
  52856. bottom: 31/1996
  52857. }
  52858. },
  52859. },
  52860. [
  52861. {
  52862. name: "Normal",
  52863. height: math.unit(10, "cm"),
  52864. default: true
  52865. },
  52866. ]
  52867. ))
  52868. characterMakers.push(() => makeCharacter(
  52869. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52870. {
  52871. front: {
  52872. height: math.unit(2 + 6/12, "feet"),
  52873. weight: math.unit(9, "lb"),
  52874. name: "Front",
  52875. image: {
  52876. source: "./media/characters/muffin/front.svg",
  52877. extra: 1220/1195,
  52878. bottom: 84/1304
  52879. }
  52880. },
  52881. },
  52882. [
  52883. {
  52884. name: "Normal",
  52885. height: math.unit(2 + 6/12, "feet"),
  52886. default: true
  52887. },
  52888. ]
  52889. ))
  52890. characterMakers.push(() => makeCharacter(
  52891. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52892. {
  52893. front: {
  52894. height: math.unit(7, "feet"),
  52895. name: "Front",
  52896. image: {
  52897. source: "./media/characters/chimera/front.svg",
  52898. extra: 1752/1614,
  52899. bottom: 68/1820
  52900. }
  52901. },
  52902. },
  52903. [
  52904. {
  52905. name: "Normal",
  52906. height: math.unit(7, "feet")
  52907. },
  52908. {
  52909. name: "Gigamacro",
  52910. height: math.unit(2.9, "gigameters"),
  52911. default: true
  52912. },
  52913. {
  52914. name: "Universal",
  52915. height: math.unit(1.56e26, "yottameters")
  52916. },
  52917. ]
  52918. ))
  52919. characterMakers.push(() => makeCharacter(
  52920. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52921. {
  52922. front: {
  52923. height: math.unit(3, "feet"),
  52924. weight: math.unit(20, "lb"),
  52925. name: "Front",
  52926. image: {
  52927. source: "./media/characters/kit-fennec-fox/front.svg",
  52928. extra: 1027/932,
  52929. bottom: 16/1043
  52930. }
  52931. },
  52932. back: {
  52933. height: math.unit(3, "feet"),
  52934. weight: math.unit(20, "lb"),
  52935. name: "Back",
  52936. image: {
  52937. source: "./media/characters/kit-fennec-fox/back.svg",
  52938. extra: 1027/932,
  52939. bottom: 16/1043
  52940. }
  52941. },
  52942. },
  52943. [
  52944. {
  52945. name: "Normal",
  52946. height: math.unit(3, "feet"),
  52947. default: true
  52948. },
  52949. ]
  52950. ))
  52951. characterMakers.push(() => makeCharacter(
  52952. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52953. {
  52954. front: {
  52955. height: math.unit(167, "cm"),
  52956. name: "Front",
  52957. image: {
  52958. source: "./media/characters/blue-otter/front.svg",
  52959. extra: 1951/1920,
  52960. bottom: 31/1982
  52961. }
  52962. },
  52963. },
  52964. [
  52965. {
  52966. name: "Otter-Sized",
  52967. height: math.unit(100, "cm")
  52968. },
  52969. {
  52970. name: "Normal",
  52971. height: math.unit(167, "cm"),
  52972. default: true
  52973. },
  52974. ]
  52975. ))
  52976. characterMakers.push(() => makeCharacter(
  52977. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52978. {
  52979. front: {
  52980. height: math.unit(4 + 4/12, "feet"),
  52981. name: "Front",
  52982. image: {
  52983. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52984. extra: 1072/1067,
  52985. bottom: 117/1189
  52986. }
  52987. },
  52988. back: {
  52989. height: math.unit(4 + 4/12, "feet"),
  52990. name: "Back",
  52991. image: {
  52992. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52993. extra: 1135/1129,
  52994. bottom: 57/1192
  52995. }
  52996. },
  52997. head: {
  52998. height: math.unit(1.77, "feet"),
  52999. name: "Head",
  53000. image: {
  53001. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53002. }
  53003. },
  53004. },
  53005. [
  53006. {
  53007. name: "Normal",
  53008. height: math.unit(4 + 4/12, "feet"),
  53009. default: true
  53010. },
  53011. ]
  53012. ))
  53013. characterMakers.push(() => makeCharacter(
  53014. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53015. {
  53016. front: {
  53017. height: math.unit(2, "inches"),
  53018. name: "Front",
  53019. image: {
  53020. source: "./media/characters/carley-hartford/front.svg",
  53021. extra: 1035/988,
  53022. bottom: 23/1058
  53023. }
  53024. },
  53025. back: {
  53026. height: math.unit(2, "inches"),
  53027. name: "Back",
  53028. image: {
  53029. source: "./media/characters/carley-hartford/back.svg",
  53030. extra: 1035/988,
  53031. bottom: 23/1058
  53032. }
  53033. },
  53034. dressed: {
  53035. height: math.unit(2, "inches"),
  53036. name: "Dressed",
  53037. image: {
  53038. source: "./media/characters/carley-hartford/dressed.svg",
  53039. extra: 651/620,
  53040. bottom: 0/651
  53041. }
  53042. },
  53043. },
  53044. [
  53045. {
  53046. name: "Micro",
  53047. height: math.unit(2, "inches"),
  53048. default: true
  53049. },
  53050. {
  53051. name: "Macro",
  53052. height: math.unit(6 + 3/12, "feet")
  53053. },
  53054. ]
  53055. ))
  53056. characterMakers.push(() => makeCharacter(
  53057. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53058. {
  53059. front: {
  53060. height: math.unit(2 + 3/12, "feet"),
  53061. weight: math.unit(15 + 7/16, "lb"),
  53062. name: "Front",
  53063. image: {
  53064. source: "./media/characters/duke/front.svg",
  53065. extra: 910/815,
  53066. bottom: 30/940
  53067. }
  53068. },
  53069. },
  53070. [
  53071. {
  53072. name: "Normal",
  53073. height: math.unit(2 + 3/12, "feet"),
  53074. default: true
  53075. },
  53076. ]
  53077. ))
  53078. characterMakers.push(() => makeCharacter(
  53079. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53080. {
  53081. front: {
  53082. height: math.unit(5 + 4/12, "feet"),
  53083. weight: math.unit(156, "lb"),
  53084. name: "Front",
  53085. image: {
  53086. source: "./media/characters/dein/front.svg",
  53087. extra: 855/815,
  53088. bottom: 48/903
  53089. }
  53090. },
  53091. side: {
  53092. height: math.unit(5 + 4/12, "feet"),
  53093. weight: math.unit(156, "lb"),
  53094. name: "side",
  53095. image: {
  53096. source: "./media/characters/dein/side.svg",
  53097. extra: 846/803,
  53098. bottom: 25/871
  53099. }
  53100. },
  53101. maw: {
  53102. height: math.unit(1.45, "feet"),
  53103. name: "Maw",
  53104. image: {
  53105. source: "./media/characters/dein/maw.svg"
  53106. }
  53107. },
  53108. },
  53109. [
  53110. {
  53111. name: "Ferret Sized",
  53112. height: math.unit(2 + 5/12, "feet")
  53113. },
  53114. {
  53115. name: "Normal",
  53116. height: math.unit(5 + 4/12, "feet"),
  53117. default: true
  53118. },
  53119. ]
  53120. ))
  53121. characterMakers.push(() => makeCharacter(
  53122. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53123. {
  53124. front: {
  53125. height: math.unit(84 + 8/12, "feet"),
  53126. weight: math.unit(942180, "lb"),
  53127. name: "Front",
  53128. image: {
  53129. source: "./media/characters/daurine-arima/front.svg",
  53130. extra: 1989/1782,
  53131. bottom: 37/2026
  53132. }
  53133. },
  53134. side: {
  53135. height: math.unit(84 + 8/12, "feet"),
  53136. weight: math.unit(942180, "lb"),
  53137. name: "Side",
  53138. image: {
  53139. source: "./media/characters/daurine-arima/side.svg",
  53140. extra: 1997/1790,
  53141. bottom: 21/2018
  53142. }
  53143. },
  53144. back: {
  53145. height: math.unit(84 + 8/12, "feet"),
  53146. weight: math.unit(942180, "lb"),
  53147. name: "Back",
  53148. image: {
  53149. source: "./media/characters/daurine-arima/back.svg",
  53150. extra: 1992/1800,
  53151. bottom: 12/2004
  53152. }
  53153. },
  53154. head: {
  53155. height: math.unit(15.5, "feet"),
  53156. name: "Head",
  53157. image: {
  53158. source: "./media/characters/daurine-arima/head.svg"
  53159. }
  53160. },
  53161. headAlt: {
  53162. height: math.unit(19.19, "feet"),
  53163. name: "Head (Alt)",
  53164. image: {
  53165. source: "./media/characters/daurine-arima/head-alt.svg"
  53166. }
  53167. },
  53168. },
  53169. [
  53170. {
  53171. name: "Minimum height",
  53172. height: math.unit(8 + 10/12, "feet")
  53173. },
  53174. {
  53175. name: "Comfort height",
  53176. height: math.unit(19 + 6 /12, "feet")
  53177. },
  53178. {
  53179. name: "\"Normal\" height",
  53180. height: math.unit(28 + 10/12, "feet")
  53181. },
  53182. {
  53183. name: "Base height",
  53184. height: math.unit(84 + 8/12, "feet"),
  53185. default: true
  53186. },
  53187. {
  53188. name: "Mini-macro",
  53189. height: math.unit(2360, "feet")
  53190. },
  53191. {
  53192. name: "Macro",
  53193. height: math.unit(10, "miles")
  53194. },
  53195. {
  53196. name: "Goddess",
  53197. height: math.unit(9.99e40, "yottameters")
  53198. },
  53199. ]
  53200. ))
  53201. characterMakers.push(() => makeCharacter(
  53202. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53203. {
  53204. front: {
  53205. height: math.unit(2.3, "meters"),
  53206. name: "Front",
  53207. image: {
  53208. source: "./media/characters/cilenomon/front.svg",
  53209. extra: 1963/1778,
  53210. bottom: 54/2017
  53211. }
  53212. },
  53213. },
  53214. [
  53215. {
  53216. name: "Normal",
  53217. height: math.unit(2.3, "meters"),
  53218. default: true
  53219. },
  53220. {
  53221. name: "Big",
  53222. height: math.unit(5, "meters")
  53223. },
  53224. {
  53225. name: "Macro",
  53226. height: math.unit(30, "meters")
  53227. },
  53228. {
  53229. name: "True",
  53230. height: math.unit(1, "universe")
  53231. },
  53232. ]
  53233. ))
  53234. characterMakers.push(() => makeCharacter(
  53235. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53236. {
  53237. front: {
  53238. height: math.unit(5, "feet"),
  53239. name: "Front",
  53240. image: {
  53241. source: "./media/characters/sen-mink/front.svg",
  53242. extra: 1727/1675,
  53243. bottom: 35/1762
  53244. }
  53245. },
  53246. },
  53247. [
  53248. {
  53249. name: "Normal",
  53250. height: math.unit(5, "feet"),
  53251. default: true
  53252. },
  53253. ]
  53254. ))
  53255. characterMakers.push(() => makeCharacter(
  53256. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53257. {
  53258. front: {
  53259. height: math.unit(5.42999, "feet"),
  53260. weight: math.unit(100, "lb"),
  53261. name: "Front",
  53262. image: {
  53263. source: "./media/characters/ophois/front.svg",
  53264. extra: 1429/1286,
  53265. bottom: 60/1489
  53266. }
  53267. },
  53268. },
  53269. [
  53270. {
  53271. name: "Normal",
  53272. height: math.unit(5.42999, "feet"),
  53273. default: true
  53274. },
  53275. ]
  53276. ))
  53277. characterMakers.push(() => makeCharacter(
  53278. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53279. {
  53280. front: {
  53281. height: math.unit(2, "meters"),
  53282. name: "Front",
  53283. image: {
  53284. source: "./media/characters/riley/front.svg",
  53285. extra: 1779/1754,
  53286. bottom: 139/1918
  53287. }
  53288. },
  53289. },
  53290. [
  53291. {
  53292. name: "Normal",
  53293. height: math.unit(2, "meters"),
  53294. default: true
  53295. },
  53296. ]
  53297. ))
  53298. characterMakers.push(() => makeCharacter(
  53299. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53300. {
  53301. front: {
  53302. height: math.unit(6 + 2/12, "feet"),
  53303. weight: math.unit(195, "lb"),
  53304. preyCapacity: math.unit(6, "people"),
  53305. name: "Front",
  53306. image: {
  53307. source: "./media/characters/shuken-flash/front.svg",
  53308. extra: 1905/1739,
  53309. bottom: 65/1970
  53310. }
  53311. },
  53312. back: {
  53313. height: math.unit(6 + 2/12, "feet"),
  53314. weight: math.unit(195, "lb"),
  53315. preyCapacity: math.unit(6, "people"),
  53316. name: "Back",
  53317. image: {
  53318. source: "./media/characters/shuken-flash/back.svg",
  53319. extra: 1912/1751,
  53320. bottom: 13/1925
  53321. }
  53322. },
  53323. },
  53324. [
  53325. {
  53326. name: "Normal",
  53327. height: math.unit(6 + 2/12, "feet"),
  53328. default: true
  53329. },
  53330. ]
  53331. ))
  53332. characterMakers.push(() => makeCharacter(
  53333. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53334. {
  53335. front: {
  53336. height: math.unit(5 + 9/12, "feet"),
  53337. weight: math.unit(150, "lb"),
  53338. name: "Front",
  53339. image: {
  53340. source: "./media/characters/plat/front.svg",
  53341. extra: 1816/1703,
  53342. bottom: 43/1859
  53343. }
  53344. },
  53345. side: {
  53346. height: math.unit(5 + 9/12, "feet"),
  53347. weight: math.unit(300, "lb"),
  53348. name: "Side",
  53349. image: {
  53350. source: "./media/characters/plat/side.svg",
  53351. extra: 1824/1699,
  53352. bottom: 18/1842
  53353. }
  53354. },
  53355. },
  53356. [
  53357. {
  53358. name: "Normal",
  53359. height: math.unit(5 + 9/12, "feet"),
  53360. default: true
  53361. },
  53362. ]
  53363. ))
  53364. characterMakers.push(() => makeCharacter(
  53365. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53366. {
  53367. front: {
  53368. height: math.unit(9, "feet"),
  53369. weight: math.unit(1800, "lb"),
  53370. name: "Front",
  53371. image: {
  53372. source: "./media/characters/elaine/front.svg",
  53373. extra: 1833/1354,
  53374. bottom: 25/1858
  53375. }
  53376. },
  53377. back: {
  53378. height: math.unit(8.8, "feet"),
  53379. weight: math.unit(1800, "lb"),
  53380. name: "Back",
  53381. image: {
  53382. source: "./media/characters/elaine/back.svg",
  53383. extra: 1641/1233,
  53384. bottom: 53/1694
  53385. }
  53386. },
  53387. },
  53388. [
  53389. {
  53390. name: "Normal",
  53391. height: math.unit(9, "feet"),
  53392. default: true
  53393. },
  53394. ]
  53395. ))
  53396. characterMakers.push(() => makeCharacter(
  53397. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53398. {
  53399. front: {
  53400. height: math.unit(17 + 9/12, "feet"),
  53401. weight: math.unit(8000, "lb"),
  53402. name: "Front",
  53403. image: {
  53404. source: "./media/characters/vera-raven/front.svg",
  53405. extra: 1457/1412,
  53406. bottom: 121/1578
  53407. }
  53408. },
  53409. side: {
  53410. height: math.unit(17 + 9/12, "feet"),
  53411. weight: math.unit(8000, "lb"),
  53412. name: "Side",
  53413. image: {
  53414. source: "./media/characters/vera-raven/side.svg",
  53415. extra: 1510/1464,
  53416. bottom: 54/1564
  53417. }
  53418. },
  53419. },
  53420. [
  53421. {
  53422. name: "Normal",
  53423. height: math.unit(17 + 9/12, "feet"),
  53424. default: true
  53425. },
  53426. ]
  53427. ))
  53428. characterMakers.push(() => makeCharacter(
  53429. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53430. {
  53431. dressed: {
  53432. height: math.unit(6 + 9/12, "feet"),
  53433. name: "Dressed",
  53434. image: {
  53435. source: "./media/characters/nakisha/dressed.svg",
  53436. extra: 1909/1757,
  53437. bottom: 48/1957
  53438. }
  53439. },
  53440. nude: {
  53441. height: math.unit(6 + 9/12, "feet"),
  53442. name: "Nude",
  53443. image: {
  53444. source: "./media/characters/nakisha/nude.svg",
  53445. extra: 1917/1765,
  53446. bottom: 34/1951
  53447. }
  53448. },
  53449. },
  53450. [
  53451. {
  53452. name: "Normal",
  53453. height: math.unit(6 + 9/12, "feet"),
  53454. default: true
  53455. },
  53456. ]
  53457. ))
  53458. characterMakers.push(() => makeCharacter(
  53459. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53460. {
  53461. front: {
  53462. height: math.unit(87, "meters"),
  53463. name: "Front",
  53464. image: {
  53465. source: "./media/characters/serafin/front.svg",
  53466. extra: 1919/1776,
  53467. bottom: 65/1984
  53468. }
  53469. },
  53470. },
  53471. [
  53472. {
  53473. name: "Normal",
  53474. height: math.unit(87, "meters"),
  53475. default: true
  53476. },
  53477. ]
  53478. ))
  53479. characterMakers.push(() => makeCharacter(
  53480. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53481. {
  53482. front: {
  53483. height: math.unit(6, "feet"),
  53484. weight: math.unit(200, "lb"),
  53485. name: "Front",
  53486. image: {
  53487. source: "./media/characters/poptart/front.svg",
  53488. extra: 615/583,
  53489. bottom: 23/638
  53490. }
  53491. },
  53492. back: {
  53493. height: math.unit(6, "feet"),
  53494. weight: math.unit(200, "lb"),
  53495. name: "Back",
  53496. image: {
  53497. source: "./media/characters/poptart/back.svg",
  53498. extra: 617/584,
  53499. bottom: 22/639
  53500. }
  53501. },
  53502. frontNsfw: {
  53503. height: math.unit(6, "feet"),
  53504. weight: math.unit(200, "lb"),
  53505. name: "Front (NSFW)",
  53506. image: {
  53507. source: "./media/characters/poptart/front-nsfw.svg",
  53508. extra: 615/583,
  53509. bottom: 23/638
  53510. }
  53511. },
  53512. backNsfw: {
  53513. height: math.unit(6, "feet"),
  53514. weight: math.unit(200, "lb"),
  53515. name: "Back (NSFW)",
  53516. image: {
  53517. source: "./media/characters/poptart/back-nsfw.svg",
  53518. extra: 617/584,
  53519. bottom: 22/639
  53520. }
  53521. },
  53522. hand: {
  53523. height: math.unit(1.14, "feet"),
  53524. name: "Hand",
  53525. image: {
  53526. source: "./media/characters/poptart/hand.svg"
  53527. }
  53528. },
  53529. foot: {
  53530. height: math.unit(1.5, "feet"),
  53531. name: "Foot",
  53532. image: {
  53533. source: "./media/characters/poptart/foot.svg"
  53534. }
  53535. },
  53536. },
  53537. [
  53538. {
  53539. name: "Normal",
  53540. height: math.unit(6, "feet"),
  53541. default: true
  53542. },
  53543. {
  53544. name: "Grande",
  53545. height: math.unit(350, "feet")
  53546. },
  53547. {
  53548. name: "Massif",
  53549. height: math.unit(967, "feet")
  53550. },
  53551. ]
  53552. ))
  53553. characterMakers.push(() => makeCharacter(
  53554. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53555. {
  53556. hyenaSide: {
  53557. height: math.unit(120, "cm"),
  53558. weight: math.unit(120, "lb"),
  53559. name: "Side",
  53560. image: {
  53561. source: "./media/characters/trance/hyena-side.svg",
  53562. extra: 998/904,
  53563. bottom: 76/1074
  53564. }
  53565. },
  53566. },
  53567. [
  53568. {
  53569. name: "Normal",
  53570. height: math.unit(120, "cm"),
  53571. default: true
  53572. },
  53573. {
  53574. name: "Dire",
  53575. height: math.unit(230, "cm")
  53576. },
  53577. {
  53578. name: "Macro",
  53579. height: math.unit(37, "feet")
  53580. },
  53581. ]
  53582. ))
  53583. characterMakers.push(() => makeCharacter(
  53584. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53585. {
  53586. front: {
  53587. height: math.unit(6 + 3/12, "feet"),
  53588. name: "Front",
  53589. image: {
  53590. source: "./media/characters/michael-berretta/front.svg",
  53591. extra: 515/494,
  53592. bottom: 20/535
  53593. }
  53594. },
  53595. back: {
  53596. height: math.unit(6 + 3/12, "feet"),
  53597. name: "Back",
  53598. image: {
  53599. source: "./media/characters/michael-berretta/back.svg",
  53600. extra: 520/497,
  53601. bottom: 21/541
  53602. }
  53603. },
  53604. frontNsfw: {
  53605. height: math.unit(6 + 3/12, "feet"),
  53606. name: "Front (NSFW)",
  53607. image: {
  53608. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53609. extra: 515/494,
  53610. bottom: 20/535
  53611. }
  53612. },
  53613. dick: {
  53614. height: math.unit(1, "feet"),
  53615. name: "Dick",
  53616. image: {
  53617. source: "./media/characters/michael-berretta/dick.svg"
  53618. }
  53619. },
  53620. },
  53621. [
  53622. {
  53623. name: "Normal",
  53624. height: math.unit(6 + 3/12, "feet"),
  53625. default: true
  53626. },
  53627. {
  53628. name: "Big",
  53629. height: math.unit(12, "feet")
  53630. },
  53631. {
  53632. name: "Macro",
  53633. height: math.unit(187.5, "feet")
  53634. },
  53635. ]
  53636. ))
  53637. characterMakers.push(() => makeCharacter(
  53638. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53639. {
  53640. front: {
  53641. height: math.unit(9 + 9/12, "feet"),
  53642. weight: math.unit(1244, "lb"),
  53643. name: "Front",
  53644. image: {
  53645. source: "./media/characters/stella-edgecomb/front.svg",
  53646. extra: 1835/1706,
  53647. bottom: 49/1884
  53648. }
  53649. },
  53650. pen: {
  53651. height: math.unit(0.95, "feet"),
  53652. name: "Pen",
  53653. image: {
  53654. source: "./media/characters/stella-edgecomb/pen.svg"
  53655. }
  53656. },
  53657. },
  53658. [
  53659. {
  53660. name: "Cozy Bear",
  53661. height: math.unit(0.5, "inches")
  53662. },
  53663. {
  53664. name: "Normal",
  53665. height: math.unit(9 + 9/12, "feet"),
  53666. default: true
  53667. },
  53668. {
  53669. name: "Giga Bear",
  53670. height: math.unit(1, "mile")
  53671. },
  53672. {
  53673. name: "Great Bear",
  53674. height: math.unit(53, "miles")
  53675. },
  53676. {
  53677. name: "Goddess Bear",
  53678. height: math.unit(40000, "miles")
  53679. },
  53680. {
  53681. name: "Sun Bear",
  53682. height: math.unit(900000, "miles")
  53683. },
  53684. ]
  53685. ))
  53686. characterMakers.push(() => makeCharacter(
  53687. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53688. {
  53689. anthroFront: {
  53690. height: math.unit(556, "cm"),
  53691. weight: math.unit(2650, "kg"),
  53692. preyCapacity: math.unit(3, "people"),
  53693. name: "Front",
  53694. image: {
  53695. source: "./media/characters/ash´iika/front.svg",
  53696. extra: 710/673,
  53697. bottom: 15/725
  53698. },
  53699. form: "anthro",
  53700. default: true
  53701. },
  53702. anthroSide: {
  53703. height: math.unit(556, "cm"),
  53704. weight: math.unit(2650, "kg"),
  53705. preyCapacity: math.unit(3, "people"),
  53706. name: "Side",
  53707. image: {
  53708. source: "./media/characters/ash´iika/side.svg",
  53709. extra: 696/676,
  53710. bottom: 13/709
  53711. },
  53712. form: "anthro"
  53713. },
  53714. anthroDressed: {
  53715. height: math.unit(556, "cm"),
  53716. weight: math.unit(2650, "kg"),
  53717. preyCapacity: math.unit(3, "people"),
  53718. name: "Dressed",
  53719. image: {
  53720. source: "./media/characters/ash´iika/dressed.svg",
  53721. extra: 710/673,
  53722. bottom: 15/725
  53723. },
  53724. form: "anthro"
  53725. },
  53726. anthroHead: {
  53727. height: math.unit(3.5, "feet"),
  53728. name: "Head",
  53729. image: {
  53730. source: "./media/characters/ash´iika/head.svg",
  53731. extra: 348/291,
  53732. bottom: 45/393
  53733. },
  53734. form: "anthro"
  53735. },
  53736. feralSide: {
  53737. height: math.unit(870, "cm"),
  53738. weight: math.unit(17500, "kg"),
  53739. preyCapacity: math.unit(15, "people"),
  53740. name: "Side",
  53741. image: {
  53742. source: "./media/characters/ash´iika/feral.svg",
  53743. extra: 595/199,
  53744. bottom: 7/602
  53745. },
  53746. form: "feral",
  53747. default: true,
  53748. },
  53749. },
  53750. [
  53751. {
  53752. name: "Normal",
  53753. height: math.unit(556, "cm"),
  53754. default: true,
  53755. form: "anthro"
  53756. },
  53757. {
  53758. name: "Macro",
  53759. height: math.unit(88, "meters"),
  53760. form: "anthro"
  53761. },
  53762. {
  53763. name: "Normal",
  53764. height: math.unit(870, "cm"),
  53765. default: true,
  53766. form: "feral"
  53767. },
  53768. {
  53769. name: "Large",
  53770. height: math.unit(25, "meters"),
  53771. form: "feral"
  53772. },
  53773. ],
  53774. {
  53775. "anthro": {
  53776. name: "Anthro",
  53777. default: true
  53778. },
  53779. "feral": {
  53780. name: "Feral",
  53781. },
  53782. }
  53783. ))
  53784. characterMakers.push(() => makeCharacter(
  53785. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53786. {
  53787. front: {
  53788. height: math.unit(10, "feet"),
  53789. weight: math.unit(800, "lb"),
  53790. name: "Front",
  53791. image: {
  53792. source: "./media/characters/yen/front.svg",
  53793. extra: 443/411,
  53794. bottom: 6/449
  53795. }
  53796. },
  53797. sleeping: {
  53798. height: math.unit(10, "feet"),
  53799. weight: math.unit(800, "lb"),
  53800. name: "Sleeping",
  53801. image: {
  53802. source: "./media/characters/yen/sleeping.svg",
  53803. extra: 470/422,
  53804. bottom: 0/470
  53805. }
  53806. },
  53807. head: {
  53808. height: math.unit(2.2, "feet"),
  53809. name: "Head",
  53810. image: {
  53811. source: "./media/characters/yen/head.svg"
  53812. }
  53813. },
  53814. headAlt: {
  53815. height: math.unit(2.1, "feet"),
  53816. name: "Head (Alt)",
  53817. image: {
  53818. source: "./media/characters/yen/head-alt.svg"
  53819. }
  53820. },
  53821. },
  53822. [
  53823. {
  53824. name: "Normal",
  53825. height: math.unit(10, "feet"),
  53826. default: true
  53827. },
  53828. ]
  53829. ))
  53830. characterMakers.push(() => makeCharacter(
  53831. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53832. {
  53833. front: {
  53834. height: math.unit(12, "feet"),
  53835. name: "Front",
  53836. image: {
  53837. source: "./media/characters/citra/front.svg",
  53838. extra: 1950/1710,
  53839. bottom: 47/1997
  53840. }
  53841. },
  53842. },
  53843. [
  53844. {
  53845. name: "Normal",
  53846. height: math.unit(12, "feet"),
  53847. default: true
  53848. },
  53849. ]
  53850. ))
  53851. characterMakers.push(() => makeCharacter(
  53852. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53853. {
  53854. side: {
  53855. height: math.unit(7 + 10/12, "feet"),
  53856. name: "Side",
  53857. image: {
  53858. source: "./media/characters/sholstim/side.svg",
  53859. extra: 786/682,
  53860. bottom: 40/826
  53861. }
  53862. },
  53863. },
  53864. [
  53865. {
  53866. name: "Normal",
  53867. height: math.unit(7 + 10/12, "feet"),
  53868. default: true
  53869. },
  53870. ]
  53871. ))
  53872. characterMakers.push(() => makeCharacter(
  53873. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53874. {
  53875. front: {
  53876. height: math.unit(3.10, "meters"),
  53877. name: "Front",
  53878. image: {
  53879. source: "./media/characters/aggyn/front.svg",
  53880. extra: 1188/963,
  53881. bottom: 24/1212
  53882. }
  53883. },
  53884. },
  53885. [
  53886. {
  53887. name: "Normal",
  53888. height: math.unit(3.10, "meters"),
  53889. default: true
  53890. },
  53891. ]
  53892. ))
  53893. characterMakers.push(() => makeCharacter(
  53894. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53895. {
  53896. front: {
  53897. height: math.unit(7 + 5/12, "feet"),
  53898. weight: math.unit(687, "lb"),
  53899. name: "Front",
  53900. image: {
  53901. source: "./media/characters/alsandair-hergenroether/front.svg",
  53902. extra: 1251/1186,
  53903. bottom: 75/1326
  53904. }
  53905. },
  53906. back: {
  53907. height: math.unit(7 + 5/12, "feet"),
  53908. weight: math.unit(687, "lb"),
  53909. name: "Back",
  53910. image: {
  53911. source: "./media/characters/alsandair-hergenroether/back.svg",
  53912. extra: 1290/1229,
  53913. bottom: 17/1307
  53914. }
  53915. },
  53916. },
  53917. [
  53918. {
  53919. name: "Max Compression",
  53920. height: math.unit(7 + 5/12, "feet"),
  53921. default: true
  53922. },
  53923. {
  53924. name: "\"Normal\"",
  53925. height: math.unit(2, "universes")
  53926. },
  53927. ]
  53928. ))
  53929. characterMakers.push(() => makeCharacter(
  53930. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53931. {
  53932. front: {
  53933. height: math.unit(4 + 1/12, "feet"),
  53934. weight: math.unit(92, "lb"),
  53935. name: "Front",
  53936. image: {
  53937. source: "./media/characters/ie/front.svg",
  53938. extra: 1585/1352,
  53939. bottom: 91/1676
  53940. }
  53941. },
  53942. },
  53943. [
  53944. {
  53945. name: "Normal",
  53946. height: math.unit(4 + 1/12, "feet"),
  53947. default: true
  53948. },
  53949. ]
  53950. ))
  53951. characterMakers.push(() => makeCharacter(
  53952. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53953. {
  53954. anthro: {
  53955. height: math.unit(6, "feet"),
  53956. weight: math.unit(150, "lb"),
  53957. name: "Front",
  53958. image: {
  53959. source: "./media/characters/willow/anthro.svg",
  53960. extra: 1073/986,
  53961. bottom: 34/1107
  53962. },
  53963. form: "anthro",
  53964. default: true
  53965. },
  53966. taur: {
  53967. height: math.unit(6, "feet"),
  53968. weight: math.unit(150, "lb"),
  53969. name: "Side",
  53970. image: {
  53971. source: "./media/characters/willow/taur.svg",
  53972. extra: 647/512,
  53973. bottom: 136/783
  53974. },
  53975. form: "taur",
  53976. default: true
  53977. },
  53978. },
  53979. [
  53980. {
  53981. name: "Humanoid",
  53982. height: math.unit(2.7, "meters"),
  53983. form: "anthro"
  53984. },
  53985. {
  53986. name: "Normal",
  53987. height: math.unit(9, "meters"),
  53988. form: "anthro",
  53989. default: true
  53990. },
  53991. {
  53992. name: "Humanoid",
  53993. height: math.unit(2.1, "meters"),
  53994. form: "taur"
  53995. },
  53996. {
  53997. name: "Normal",
  53998. height: math.unit(7, "meters"),
  53999. form: "taur",
  54000. default: true
  54001. },
  54002. ],
  54003. {
  54004. "anthro": {
  54005. name: "Anthro",
  54006. default: true
  54007. },
  54008. "taur": {
  54009. name: "Taur",
  54010. },
  54011. }
  54012. ))
  54013. characterMakers.push(() => makeCharacter(
  54014. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54015. {
  54016. front: {
  54017. height: math.unit(2 + 5/12, "feet"),
  54018. name: "Front",
  54019. image: {
  54020. source: "./media/characters/kyan/front.svg",
  54021. extra: 460/334,
  54022. bottom: 23/483
  54023. },
  54024. extraAttributes: {
  54025. "toeLength": {
  54026. name: "Toe Length",
  54027. power: 1,
  54028. type: "length",
  54029. base: math.unit(7, "cm")
  54030. },
  54031. "toeclawLength": {
  54032. name: "Toeclaw Length",
  54033. power: 1,
  54034. type: "length",
  54035. base: math.unit(4.7, "cm")
  54036. },
  54037. "earHeight": {
  54038. name: "Ear Height",
  54039. power: 1,
  54040. type: "length",
  54041. base: math.unit(14.1, "cm")
  54042. },
  54043. }
  54044. },
  54045. paws: {
  54046. height: math.unit(0.45, "feet"),
  54047. name: "Paws",
  54048. image: {
  54049. source: "./media/characters/kyan/paws.svg",
  54050. extra: 581/581,
  54051. bottom: 114/695
  54052. }
  54053. },
  54054. },
  54055. [
  54056. {
  54057. name: "Normal",
  54058. height: math.unit(2 + 5/12, "feet"),
  54059. default: true
  54060. },
  54061. ]
  54062. ))
  54063. characterMakers.push(() => makeCharacter(
  54064. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54065. {
  54066. front: {
  54067. height: math.unit(2 + 2/3, "feet"),
  54068. name: "Front",
  54069. image: {
  54070. source: "./media/characters/xazzon/front.svg",
  54071. extra: 1109/984,
  54072. bottom: 42/1151
  54073. }
  54074. },
  54075. back: {
  54076. height: math.unit(2 + 2/3, "feet"),
  54077. name: "Back",
  54078. image: {
  54079. source: "./media/characters/xazzon/back.svg",
  54080. extra: 1095/971,
  54081. bottom: 23/1118
  54082. }
  54083. },
  54084. },
  54085. [
  54086. {
  54087. name: "Normal",
  54088. height: math.unit(2 + 2/3, "feet"),
  54089. default: true
  54090. },
  54091. ]
  54092. ))
  54093. characterMakers.push(() => makeCharacter(
  54094. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54095. {
  54096. dressed: {
  54097. height: math.unit(5 + 7/12, "feet"),
  54098. weight: math.unit(173, "lb"),
  54099. name: "Dressed",
  54100. image: {
  54101. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54102. extra: 3262/2862,
  54103. bottom: 188/3450
  54104. }
  54105. },
  54106. undressed: {
  54107. height: math.unit(5 + 7/12, "feet"),
  54108. weight: math.unit(173, "lb"),
  54109. name: "Undressed",
  54110. image: {
  54111. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54112. extra: 3262/2862,
  54113. bottom: 188/3450
  54114. }
  54115. },
  54116. },
  54117. [
  54118. {
  54119. name: "The void",
  54120. height: math.unit(7.29193e-34, "angstroms")
  54121. },
  54122. {
  54123. name: "Uh-Oh.",
  54124. height: math.unit(5.734e-7, "angstroms")
  54125. },
  54126. {
  54127. name: "Pico",
  54128. height: math.unit(0.876, "angstroms")
  54129. },
  54130. {
  54131. name: "Nano",
  54132. height: math.unit(0.000134200, "mm")
  54133. },
  54134. {
  54135. name: "Micro",
  54136. height: math.unit(0.0673020, "mm")
  54137. },
  54138. {
  54139. name: "Tiny",
  54140. height: math.unit(2.4, "mm")
  54141. },
  54142. {
  54143. name: "Actual Normal",
  54144. height: math.unit(3, "inches"),
  54145. default: true
  54146. },
  54147. {
  54148. name: "Normal",
  54149. height: math.unit(5 + 8/12, "feet")
  54150. },
  54151. {
  54152. name: "Giant",
  54153. height: math.unit(12, "feet")
  54154. },
  54155. {
  54156. name: "City Ruler",
  54157. height: math.unit(270, "meters")
  54158. },
  54159. {
  54160. name: "Giga",
  54161. height: math.unit(1117.6, "km")
  54162. },
  54163. {
  54164. name: "All-Powerful Queen",
  54165. height: math.unit(70.8, "gigameters")
  54166. },
  54167. {
  54168. name: "'Goddess'",
  54169. height: math.unit(600, "yottameters")
  54170. },
  54171. {
  54172. name: "Biggest!",
  54173. height: math.unit(4.23e5, "yottameters")
  54174. },
  54175. ]
  54176. ))
  54177. characterMakers.push(() => makeCharacter(
  54178. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54179. {
  54180. front: {
  54181. height: math.unit(8, "feet"),
  54182. weight: math.unit(300, "lb"),
  54183. name: "Front",
  54184. image: {
  54185. source: "./media/characters/khyla-shadowsong/front.svg",
  54186. extra: 861/798,
  54187. bottom: 32/893
  54188. }
  54189. },
  54190. side: {
  54191. height: math.unit(8, "feet"),
  54192. weight: math.unit(300, "lb"),
  54193. name: "Side",
  54194. image: {
  54195. source: "./media/characters/khyla-shadowsong/side.svg",
  54196. extra: 790/750,
  54197. bottom: 87/877
  54198. }
  54199. },
  54200. back: {
  54201. height: math.unit(8, "feet"),
  54202. weight: math.unit(300, "lb"),
  54203. name: "Back",
  54204. image: {
  54205. source: "./media/characters/khyla-shadowsong/back.svg",
  54206. extra: 855/808,
  54207. bottom: 14/869
  54208. }
  54209. },
  54210. head: {
  54211. height: math.unit(2.7, "feet"),
  54212. name: "Head",
  54213. image: {
  54214. source: "./media/characters/khyla-shadowsong/head.svg"
  54215. }
  54216. },
  54217. },
  54218. [
  54219. {
  54220. name: "Micro",
  54221. height: math.unit(6, "inches")
  54222. },
  54223. {
  54224. name: "Normal",
  54225. height: math.unit(8, "feet"),
  54226. default: true
  54227. },
  54228. ]
  54229. ))
  54230. characterMakers.push(() => makeCharacter(
  54231. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54232. {
  54233. hyperFront: {
  54234. height: math.unit(9 + 4/12, "feet"),
  54235. weight: math.unit(2000, "lb"),
  54236. name: "Front",
  54237. image: {
  54238. source: "./media/characters/tiden/hyper-front.svg",
  54239. extra: 400/382,
  54240. bottom: 6/406
  54241. },
  54242. form: "hyper",
  54243. },
  54244. regularFront: {
  54245. height: math.unit(7 + 10/12, "feet"),
  54246. weight: math.unit(470, "lb"),
  54247. name: "Front",
  54248. image: {
  54249. source: "./media/characters/tiden/regular-front.svg",
  54250. extra: 468/442,
  54251. bottom: 6/474
  54252. },
  54253. form: "regular",
  54254. },
  54255. },
  54256. [
  54257. {
  54258. name: "Normal",
  54259. height: math.unit(9 + 4/12, "feet"),
  54260. default: true,
  54261. form: "hyper"
  54262. },
  54263. {
  54264. name: "Normal",
  54265. height: math.unit(7 + 10/12, "feet"),
  54266. default: true,
  54267. form: "regular"
  54268. },
  54269. ],
  54270. {
  54271. "hyper": {
  54272. name: "Hyper",
  54273. default: true
  54274. },
  54275. "regular": {
  54276. name: "Regular",
  54277. },
  54278. }
  54279. ))
  54280. characterMakers.push(() => makeCharacter(
  54281. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54282. {
  54283. side: {
  54284. height: math.unit(6, "feet"),
  54285. weight: math.unit(150, "lb"),
  54286. name: "Side",
  54287. image: {
  54288. source: "./media/characters/jason-crowe/side.svg",
  54289. extra: 1771/766,
  54290. bottom: 219/1990
  54291. }
  54292. },
  54293. },
  54294. [
  54295. {
  54296. name: "Pocket Gryphon",
  54297. height: math.unit(6, "cm")
  54298. },
  54299. {
  54300. name: "Raven",
  54301. height: math.unit(60, "cm")
  54302. },
  54303. {
  54304. name: "Normal",
  54305. height: math.unit(1, "meter"),
  54306. default: true
  54307. },
  54308. ]
  54309. ))
  54310. characterMakers.push(() => makeCharacter(
  54311. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54312. {
  54313. front: {
  54314. height: math.unit(9 + 6/12, "feet"),
  54315. weight: math.unit(1100, "lb"),
  54316. name: "Front",
  54317. image: {
  54318. source: "./media/characters/django/front.svg",
  54319. extra: 1231/1136,
  54320. bottom: 34/1265
  54321. }
  54322. },
  54323. side: {
  54324. height: math.unit(9 + 6/12, "feet"),
  54325. weight: math.unit(1100, "lb"),
  54326. name: "Side",
  54327. image: {
  54328. source: "./media/characters/django/side.svg",
  54329. extra: 1267/1174,
  54330. bottom: 9/1276
  54331. }
  54332. },
  54333. },
  54334. [
  54335. {
  54336. name: "Normal",
  54337. height: math.unit(9 + 6/12, "feet"),
  54338. default: true
  54339. },
  54340. {
  54341. name: "Macro 1",
  54342. height: math.unit(50, "feet")
  54343. },
  54344. {
  54345. name: "Macro 2",
  54346. height: math.unit(500, "feet")
  54347. },
  54348. {
  54349. name: "Mega Macro",
  54350. height: math.unit(5300, "feet")
  54351. },
  54352. ]
  54353. ))
  54354. characterMakers.push(() => makeCharacter(
  54355. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54356. {
  54357. frontSfw: {
  54358. height: math.unit(120, "cm"),
  54359. weight: math.unit(15, "kg"),
  54360. name: "Front (SFW)",
  54361. image: {
  54362. source: "./media/characters/eri/front-sfw.svg",
  54363. extra: 1014/939,
  54364. bottom: 37/1051
  54365. },
  54366. form: "moth",
  54367. },
  54368. frontNsfw: {
  54369. height: math.unit(120, "cm"),
  54370. weight: math.unit(15, "kg"),
  54371. name: "Front (NSFW)",
  54372. image: {
  54373. source: "./media/characters/eri/front-nsfw.svg",
  54374. extra: 1014/939,
  54375. bottom: 37/1051
  54376. },
  54377. form: "moth",
  54378. default: true
  54379. },
  54380. egg: {
  54381. height: math.unit(10, "cm"),
  54382. name: "Egg",
  54383. image: {
  54384. source: "./media/characters/eri/egg.svg"
  54385. },
  54386. form: "egg",
  54387. default: true
  54388. },
  54389. },
  54390. [
  54391. {
  54392. name: "Normal",
  54393. height: math.unit(120, "cm"),
  54394. default: true,
  54395. form: "moth"
  54396. },
  54397. {
  54398. name: "Normal",
  54399. height: math.unit(10, "cm"),
  54400. default: true,
  54401. form: "egg"
  54402. },
  54403. ],
  54404. {
  54405. "moth": {
  54406. name: "Moth",
  54407. default: true
  54408. },
  54409. "egg": {
  54410. name: "Egg",
  54411. },
  54412. }
  54413. ))
  54414. characterMakers.push(() => makeCharacter(
  54415. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54416. {
  54417. front: {
  54418. height: math.unit(200, "feet"),
  54419. name: "Front",
  54420. image: {
  54421. source: "./media/characters/bishop-dowser/front.svg",
  54422. extra: 933/868,
  54423. bottom: 106/1039
  54424. }
  54425. },
  54426. },
  54427. [
  54428. {
  54429. name: "Giant",
  54430. height: math.unit(200, "feet"),
  54431. default: true
  54432. },
  54433. ]
  54434. ))
  54435. characterMakers.push(() => makeCharacter(
  54436. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54437. {
  54438. front: {
  54439. height: math.unit(2, "meters"),
  54440. preyCapacity: math.unit(3, "people"),
  54441. name: "Front",
  54442. image: {
  54443. source: "./media/characters/fryra/front.svg",
  54444. extra: 1025/948,
  54445. bottom: 30/1055
  54446. },
  54447. extraAttributes: {
  54448. "breastVolume": {
  54449. name: "Breast Volume",
  54450. power: 3,
  54451. type: "volume",
  54452. base: math.unit(8, "liters")
  54453. },
  54454. }
  54455. },
  54456. back: {
  54457. height: math.unit(2, "meters"),
  54458. preyCapacity: math.unit(3, "people"),
  54459. name: "Back",
  54460. image: {
  54461. source: "./media/characters/fryra/back.svg",
  54462. extra: 993/938,
  54463. bottom: 38/1031
  54464. },
  54465. extraAttributes: {
  54466. "breastVolume": {
  54467. name: "Breast Volume",
  54468. power: 3,
  54469. type: "volume",
  54470. base: math.unit(8, "liters")
  54471. },
  54472. }
  54473. },
  54474. head: {
  54475. height: math.unit(1.33, "feet"),
  54476. name: "Head",
  54477. image: {
  54478. source: "./media/characters/fryra/head.svg"
  54479. }
  54480. },
  54481. maw: {
  54482. height: math.unit(0.56, "feet"),
  54483. name: "Maw",
  54484. image: {
  54485. source: "./media/characters/fryra/maw.svg"
  54486. }
  54487. },
  54488. },
  54489. [
  54490. {
  54491. name: "Micro",
  54492. height: math.unit(5, "cm")
  54493. },
  54494. {
  54495. name: "Normal",
  54496. height: math.unit(2, "meters"),
  54497. default: true
  54498. },
  54499. {
  54500. name: "Small Macro",
  54501. height: math.unit(8, "meters")
  54502. },
  54503. {
  54504. name: "Macro",
  54505. height: math.unit(50, "meters")
  54506. },
  54507. {
  54508. name: "Megamacro",
  54509. height: math.unit(1, "km")
  54510. },
  54511. {
  54512. name: "Planetary",
  54513. height: math.unit(300000, "km")
  54514. },
  54515. {
  54516. name: "Universal",
  54517. height: math.unit(250, "lightyears")
  54518. },
  54519. {
  54520. name: "Fabric of Reality",
  54521. height: math.unit(1000, "multiverses")
  54522. },
  54523. ]
  54524. ))
  54525. characterMakers.push(() => makeCharacter(
  54526. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54527. {
  54528. frontDressed: {
  54529. height: math.unit(6 + 2/12, "feet"),
  54530. name: "Front (Dressed)",
  54531. image: {
  54532. source: "./media/characters/fiera/front-dressed.svg",
  54533. extra: 1883/1793,
  54534. bottom: 70/1953
  54535. }
  54536. },
  54537. backDressed: {
  54538. height: math.unit(6 + 2/12, "feet"),
  54539. name: "Back (Dressed)",
  54540. image: {
  54541. source: "./media/characters/fiera/back-dressed.svg",
  54542. extra: 1847/1780,
  54543. bottom: 70/1917
  54544. }
  54545. },
  54546. frontNude: {
  54547. height: math.unit(6 + 2/12, "feet"),
  54548. name: "Front (Nude)",
  54549. image: {
  54550. source: "./media/characters/fiera/front-nude.svg",
  54551. extra: 1875/1785,
  54552. bottom: 66/1941
  54553. }
  54554. },
  54555. backNude: {
  54556. height: math.unit(6 + 2/12, "feet"),
  54557. name: "Back (Nude)",
  54558. image: {
  54559. source: "./media/characters/fiera/back-nude.svg",
  54560. extra: 1855/1788,
  54561. bottom: 44/1899
  54562. }
  54563. },
  54564. maw: {
  54565. height: math.unit(1.3, "feet"),
  54566. name: "Maw",
  54567. image: {
  54568. source: "./media/characters/fiera/maw.svg"
  54569. }
  54570. },
  54571. paw: {
  54572. height: math.unit(1, "feet"),
  54573. name: "Paw",
  54574. image: {
  54575. source: "./media/characters/fiera/paw.svg"
  54576. }
  54577. },
  54578. shoe: {
  54579. height: math.unit(1.05, "feet"),
  54580. name: "Shoe",
  54581. image: {
  54582. source: "./media/characters/fiera/shoe.svg"
  54583. }
  54584. },
  54585. },
  54586. [
  54587. {
  54588. name: "Normal",
  54589. height: math.unit(6 + 2/12, "feet"),
  54590. default: true
  54591. },
  54592. {
  54593. name: "Size Difference",
  54594. height: math.unit(13, "feet")
  54595. },
  54596. {
  54597. name: "Macro",
  54598. height: math.unit(60, "feet")
  54599. },
  54600. {
  54601. name: "Mega Macro",
  54602. height: math.unit(200, "feet")
  54603. },
  54604. ]
  54605. ))
  54606. characterMakers.push(() => makeCharacter(
  54607. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54608. {
  54609. back: {
  54610. height: math.unit(6, "feet"),
  54611. name: "Back",
  54612. image: {
  54613. source: "./media/characters/flare/back.svg",
  54614. extra: 1883/1765,
  54615. bottom: 32/1915
  54616. }
  54617. },
  54618. },
  54619. [
  54620. {
  54621. name: "Normal",
  54622. height: math.unit(6 + 2/12, "feet"),
  54623. default: true
  54624. },
  54625. {
  54626. name: "Size Difference",
  54627. height: math.unit(13, "feet")
  54628. },
  54629. {
  54630. name: "Macro",
  54631. height: math.unit(60, "feet")
  54632. },
  54633. {
  54634. name: "Macro 2",
  54635. height: math.unit(100, "feet")
  54636. },
  54637. {
  54638. name: "Mega Macro",
  54639. height: math.unit(200, "feet")
  54640. },
  54641. ]
  54642. ))
  54643. characterMakers.push(() => makeCharacter(
  54644. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54645. {
  54646. front: {
  54647. height: math.unit(2.2, "m"),
  54648. weight: math.unit(300, "kg"),
  54649. name: "Front",
  54650. image: {
  54651. source: "./media/characters/hanna/front.svg",
  54652. extra: 1696/1502,
  54653. bottom: 206/1902
  54654. }
  54655. },
  54656. },
  54657. [
  54658. {
  54659. name: "Humanoid",
  54660. height: math.unit(2.2, "meters")
  54661. },
  54662. {
  54663. name: "Normal",
  54664. height: math.unit(4.8, "meters"),
  54665. default: true
  54666. },
  54667. ]
  54668. ))
  54669. characterMakers.push(() => makeCharacter(
  54670. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54671. {
  54672. front: {
  54673. height: math.unit(2.8, "meters"),
  54674. name: "Front",
  54675. image: {
  54676. source: "./media/characters/argo/front.svg",
  54677. extra: 731/518,
  54678. bottom: 84/815
  54679. }
  54680. },
  54681. },
  54682. [
  54683. {
  54684. name: "Normal",
  54685. height: math.unit(3, "meters"),
  54686. default: true
  54687. },
  54688. ]
  54689. ))
  54690. characterMakers.push(() => makeCharacter(
  54691. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54692. {
  54693. side: {
  54694. height: math.unit(3.8, "meters"),
  54695. name: "Side",
  54696. image: {
  54697. source: "./media/characters/sybil/side.svg",
  54698. extra: 382/361,
  54699. bottom: 25/407
  54700. }
  54701. },
  54702. },
  54703. [
  54704. {
  54705. name: "Normal",
  54706. height: math.unit(3.8, "meters"),
  54707. default: true
  54708. },
  54709. ]
  54710. ))
  54711. characterMakers.push(() => makeCharacter(
  54712. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54713. {
  54714. side: {
  54715. height: math.unit(6, "meters"),
  54716. name: "Side",
  54717. image: {
  54718. source: "./media/characters/plum/side.svg",
  54719. extra: 858/755,
  54720. bottom: 45/903
  54721. },
  54722. form: "taur",
  54723. default: true
  54724. },
  54725. back: {
  54726. height: math.unit(6.3, "meters"),
  54727. name: "Back",
  54728. image: {
  54729. source: "./media/characters/plum/back.svg",
  54730. extra: 887/813,
  54731. bottom: 32/919
  54732. },
  54733. form: "taur",
  54734. },
  54735. feral: {
  54736. height: math.unit(5.5, "meter"),
  54737. name: "Front",
  54738. image: {
  54739. source: "./media/characters/plum/feral.svg",
  54740. extra: 568/403,
  54741. bottom: 51/619
  54742. },
  54743. form: "feral",
  54744. default: true
  54745. },
  54746. head: {
  54747. height: math.unit(1.46, "meter"),
  54748. name: "Head",
  54749. image: {
  54750. source: "./media/characters/plum/head.svg"
  54751. },
  54752. form: "taur"
  54753. },
  54754. tailTop: {
  54755. height: math.unit(5.6, "meter"),
  54756. name: "Tail (Top)",
  54757. image: {
  54758. source: "./media/characters/plum/tail-top.svg"
  54759. },
  54760. form: "taur",
  54761. },
  54762. tailBottom: {
  54763. height: math.unit(5.6, "meter"),
  54764. name: "Tail (Bottom)",
  54765. image: {
  54766. source: "./media/characters/plum/tail-bottom.svg"
  54767. },
  54768. form: "taur",
  54769. },
  54770. feralHead: {
  54771. height: math.unit(2.56549521, "meter"),
  54772. name: "Head",
  54773. image: {
  54774. source: "./media/characters/plum/head.svg"
  54775. },
  54776. form: "feral"
  54777. },
  54778. feralTailTop: {
  54779. height: math.unit(5.44728435, "meter"),
  54780. name: "Tail (Top)",
  54781. image: {
  54782. source: "./media/characters/plum/tail-top.svg"
  54783. },
  54784. form: "feral",
  54785. },
  54786. feralTailBottom: {
  54787. height: math.unit(5.44728435, "meter"),
  54788. name: "Tail (Bottom)",
  54789. image: {
  54790. source: "./media/characters/plum/tail-bottom.svg"
  54791. },
  54792. form: "feral",
  54793. },
  54794. },
  54795. [
  54796. {
  54797. name: "Normal",
  54798. height: math.unit(6, "meters"),
  54799. default: true,
  54800. form: "taur"
  54801. },
  54802. {
  54803. name: "Normal",
  54804. height: math.unit(5.5, "meters"),
  54805. default: true,
  54806. form: "feral"
  54807. },
  54808. ],
  54809. {
  54810. "taur": {
  54811. name: "Taur",
  54812. default: true
  54813. },
  54814. "feral": {
  54815. name: "Feral",
  54816. },
  54817. }
  54818. ))
  54819. characterMakers.push(() => makeCharacter(
  54820. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54821. {
  54822. front: {
  54823. height: math.unit(6, "feet"),
  54824. weight: math.unit(115, "lb"),
  54825. name: "Front",
  54826. image: {
  54827. source: "./media/characters/celeste-kitsune/front.svg",
  54828. extra: 393/366,
  54829. bottom: 7/400
  54830. }
  54831. },
  54832. side: {
  54833. height: math.unit(6, "feet"),
  54834. weight: math.unit(115, "lb"),
  54835. name: "Side",
  54836. image: {
  54837. source: "./media/characters/celeste-kitsune/side.svg",
  54838. extra: 818/765,
  54839. bottom: 40/858
  54840. }
  54841. },
  54842. },
  54843. [
  54844. {
  54845. name: "Megamacro",
  54846. height: math.unit(1500, "miles"),
  54847. default: true
  54848. },
  54849. ]
  54850. ))
  54851. characterMakers.push(() => makeCharacter(
  54852. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54853. {
  54854. front: {
  54855. height: math.unit(8, "meters"),
  54856. name: "Front",
  54857. image: {
  54858. source: "./media/characters/io/front.svg",
  54859. extra: 865/722,
  54860. bottom: 58/923
  54861. }
  54862. },
  54863. back: {
  54864. height: math.unit(8, "meters"),
  54865. name: "Back",
  54866. image: {
  54867. source: "./media/characters/io/back.svg",
  54868. extra: 920/776,
  54869. bottom: 42/962
  54870. }
  54871. },
  54872. head: {
  54873. height: math.unit(5.09, "meters"),
  54874. name: "Head",
  54875. image: {
  54876. source: "./media/characters/io/head.svg"
  54877. }
  54878. },
  54879. hand: {
  54880. height: math.unit(1.6, "meters"),
  54881. name: "Hand",
  54882. image: {
  54883. source: "./media/characters/io/hand.svg"
  54884. }
  54885. },
  54886. foot: {
  54887. height: math.unit(2.4, "meters"),
  54888. name: "Foot",
  54889. image: {
  54890. source: "./media/characters/io/foot.svg"
  54891. }
  54892. },
  54893. },
  54894. [
  54895. {
  54896. name: "Normal",
  54897. height: math.unit(8, "meters"),
  54898. default: true
  54899. },
  54900. ]
  54901. ))
  54902. characterMakers.push(() => makeCharacter(
  54903. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54904. {
  54905. side: {
  54906. height: math.unit(6 + 3/12, "feet"),
  54907. weight: math.unit(225, "lb"),
  54908. name: "Side",
  54909. image: {
  54910. source: "./media/characters/silas/side.svg",
  54911. extra: 703/653,
  54912. bottom: 23/726
  54913. },
  54914. extraAttributes: {
  54915. "pawLength": {
  54916. name: "Paw Length",
  54917. power: 1,
  54918. type: "length",
  54919. base: math.unit(12, "inches")
  54920. },
  54921. "pawWidth": {
  54922. name: "Paw Width",
  54923. power: 1,
  54924. type: "length",
  54925. base: math.unit(4.5, "inches")
  54926. },
  54927. "pawArea": {
  54928. name: "Paw Area",
  54929. power: 2,
  54930. type: "area",
  54931. base: math.unit(12 * 4.5, "inches^2")
  54932. },
  54933. }
  54934. },
  54935. },
  54936. [
  54937. {
  54938. name: "Normal",
  54939. height: math.unit(6 + 3/12, "feet"),
  54940. default: true
  54941. },
  54942. ]
  54943. ))
  54944. characterMakers.push(() => makeCharacter(
  54945. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54946. {
  54947. back: {
  54948. height: math.unit(1.6, "meters"),
  54949. weight: math.unit(150, "lb"),
  54950. name: "Back",
  54951. image: {
  54952. source: "./media/characters/zari/back.svg",
  54953. extra: 424/411,
  54954. bottom: 32/456
  54955. },
  54956. extraAttributes: {
  54957. "bladderCapacity": {
  54958. name: "Bladder Size",
  54959. power: 3,
  54960. type: "volume",
  54961. base: math.unit(500, "mL")
  54962. },
  54963. "bladderFlow": {
  54964. name: "Flow Rate",
  54965. power: 3,
  54966. type: "volume",
  54967. base: math.unit(25, "mL")
  54968. },
  54969. }
  54970. },
  54971. },
  54972. [
  54973. {
  54974. name: "Normal",
  54975. height: math.unit(1.6, "meters"),
  54976. default: true
  54977. },
  54978. ]
  54979. ))
  54980. characterMakers.push(() => makeCharacter(
  54981. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54982. {
  54983. front: {
  54984. height: math.unit(25, "feet"),
  54985. weight: math.unit(5, "tons"),
  54986. name: "Front",
  54987. image: {
  54988. source: "./media/characters/charlie-human/front.svg",
  54989. extra: 1870/1740,
  54990. bottom: 102/1972
  54991. },
  54992. extraAttributes: {
  54993. "dickLength": {
  54994. name: "Dick Length",
  54995. power: 1,
  54996. type: "length",
  54997. base: math.unit(9, "feet")
  54998. },
  54999. }
  55000. },
  55001. back: {
  55002. height: math.unit(25, "feet"),
  55003. weight: math.unit(5, "tons"),
  55004. name: "Back",
  55005. image: {
  55006. source: "./media/characters/charlie-human/back.svg",
  55007. extra: 1858/1733,
  55008. bottom: 105/1963
  55009. },
  55010. extraAttributes: {
  55011. "dickLength": {
  55012. name: "Dick Length",
  55013. power: 1,
  55014. type: "length",
  55015. base: math.unit(9, "feet")
  55016. },
  55017. }
  55018. },
  55019. },
  55020. [
  55021. {
  55022. name: "\"Normal\"",
  55023. height: math.unit(6 + 4/12, "feet")
  55024. },
  55025. {
  55026. name: "Big",
  55027. height: math.unit(25, "feet"),
  55028. default: true
  55029. },
  55030. ]
  55031. ))
  55032. characterMakers.push(() => makeCharacter(
  55033. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55034. {
  55035. front: {
  55036. height: math.unit(6 + 4/12, "feet"),
  55037. weight: math.unit(320, "lb"),
  55038. name: "Front",
  55039. image: {
  55040. source: "./media/characters/ookitsu/front.svg",
  55041. extra: 1160/976,
  55042. bottom: 38/1198
  55043. }
  55044. },
  55045. frontNsfw: {
  55046. height: math.unit(6 + 4/12, "feet"),
  55047. weight: math.unit(320, "lb"),
  55048. name: "Front (NSFW)",
  55049. image: {
  55050. source: "./media/characters/ookitsu/front-nsfw.svg",
  55051. extra: 1160/976,
  55052. bottom: 38/1198
  55053. }
  55054. },
  55055. back: {
  55056. height: math.unit(6 + 4/12, "feet"),
  55057. weight: math.unit(320, "lb"),
  55058. name: "Back",
  55059. image: {
  55060. source: "./media/characters/ookitsu/back.svg",
  55061. extra: 1030/975,
  55062. bottom: 70/1100
  55063. }
  55064. },
  55065. head: {
  55066. height: math.unit(1.79, "feet"),
  55067. name: "Head",
  55068. image: {
  55069. source: "./media/characters/ookitsu/head.svg"
  55070. }
  55071. },
  55072. hand: {
  55073. height: math.unit(0.92, "feet"),
  55074. name: "Hand",
  55075. image: {
  55076. source: "./media/characters/ookitsu/hand.svg"
  55077. }
  55078. },
  55079. tails: {
  55080. height: math.unit(3.3, "feet"),
  55081. name: "Tails",
  55082. image: {
  55083. source: "./media/characters/ookitsu/tails.svg"
  55084. }
  55085. },
  55086. dick: {
  55087. height: math.unit(1.10833, "feet"),
  55088. name: "Dick",
  55089. image: {
  55090. source: "./media/characters/ookitsu/dick.svg"
  55091. }
  55092. },
  55093. },
  55094. [
  55095. {
  55096. name: "Normal",
  55097. height: math.unit(6 + 4/12, "feet"),
  55098. default: true
  55099. },
  55100. {
  55101. name: "Macro",
  55102. height: math.unit(30, "feet")
  55103. },
  55104. ]
  55105. ))
  55106. characterMakers.push(() => makeCharacter(
  55107. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55108. {
  55109. anthroFront: {
  55110. height: math.unit(6, "feet"),
  55111. weight: math.unit(250, "lb"),
  55112. name: "Front",
  55113. image: {
  55114. source: "./media/characters/jhusky/anthro-front.svg",
  55115. extra: 474/439,
  55116. bottom: 7/481
  55117. },
  55118. form: "anthro",
  55119. default: true
  55120. },
  55121. taurSideSfw: {
  55122. height: math.unit(6 + 4/12, "feet"),
  55123. weight: math.unit(500, "lb"),
  55124. name: "Side (SFW)",
  55125. image: {
  55126. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55127. extra: 1741/1629,
  55128. bottom: 196/1937
  55129. },
  55130. form: "taur",
  55131. default: true
  55132. },
  55133. taurSideNsfw: {
  55134. height: math.unit(6 + 4/12, "feet"),
  55135. weight: math.unit(500, "lb"),
  55136. name: "Taur (NSFW)",
  55137. image: {
  55138. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55139. extra: 1741/1629,
  55140. bottom: 196/1937
  55141. },
  55142. form: "taur",
  55143. },
  55144. },
  55145. [
  55146. {
  55147. name: "Huge",
  55148. height: math.unit(500, "feet"),
  55149. form: "anthro"
  55150. },
  55151. {
  55152. name: "Macro",
  55153. height: math.unit(1000, "feet"),
  55154. default: true,
  55155. form: "anthro"
  55156. },
  55157. {
  55158. name: "Megamacro",
  55159. height: math.unit(10000, "feet"),
  55160. form: "anthro"
  55161. },
  55162. {
  55163. name: "Huge",
  55164. height: math.unit(528, "feet"),
  55165. form: "taur"
  55166. },
  55167. {
  55168. name: "Macro",
  55169. height: math.unit(1056, "feet"),
  55170. default: true,
  55171. form: "taur"
  55172. },
  55173. {
  55174. name: "Megamacro",
  55175. height: math.unit(10556, "feet"),
  55176. form: "taur"
  55177. },
  55178. ],
  55179. {
  55180. "anthro": {
  55181. name: "Anthro",
  55182. default: true
  55183. },
  55184. "taur": {
  55185. name: "Taur",
  55186. },
  55187. }
  55188. ))
  55189. characterMakers.push(() => makeCharacter(
  55190. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55191. {
  55192. front: {
  55193. height: math.unit(8, "feet"),
  55194. weight: math.unit(500, "lb"),
  55195. name: "Front",
  55196. image: {
  55197. source: "./media/characters/armail/front.svg",
  55198. extra: 1753/1669,
  55199. bottom: 155/1908
  55200. }
  55201. },
  55202. back: {
  55203. height: math.unit(8, "feet"),
  55204. weight: math.unit(500, "lb"),
  55205. name: "Back",
  55206. image: {
  55207. source: "./media/characters/armail/back.svg",
  55208. extra: 1872/1803,
  55209. bottom: 63/1935
  55210. }
  55211. },
  55212. },
  55213. [
  55214. {
  55215. name: "Micro",
  55216. height: math.unit(0.25, "feet")
  55217. },
  55218. {
  55219. name: "Normal",
  55220. height: math.unit(8, "feet"),
  55221. default: true
  55222. },
  55223. {
  55224. name: "Mini-macro",
  55225. height: math.unit(30, "feet")
  55226. },
  55227. {
  55228. name: "Macro",
  55229. height: math.unit(400, "feet")
  55230. },
  55231. {
  55232. name: "Mega-macro",
  55233. height: math.unit(6000, "feet")
  55234. },
  55235. ]
  55236. ))
  55237. characterMakers.push(() => makeCharacter(
  55238. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55239. {
  55240. front: {
  55241. height: math.unit(6 + 7/12, "feet"),
  55242. weight: math.unit(210, "lb"),
  55243. name: "Front",
  55244. image: {
  55245. source: "./media/characters/wilfred-t-buxton/front.svg",
  55246. extra: 1068/882,
  55247. bottom: 28/1096
  55248. }
  55249. },
  55250. },
  55251. [
  55252. {
  55253. name: "Normal",
  55254. height: math.unit(6 + 7/12, "feet"),
  55255. default: true
  55256. },
  55257. ]
  55258. ))
  55259. characterMakers.push(() => makeCharacter(
  55260. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55261. {
  55262. front: {
  55263. height: math.unit(5 + 2/12, "feet"),
  55264. weight: math.unit(120, "lb"),
  55265. name: "Front",
  55266. image: {
  55267. source: "./media/characters/leighton-marrow/front.svg",
  55268. extra: 441/409,
  55269. bottom: 37/478
  55270. }
  55271. },
  55272. },
  55273. [
  55274. {
  55275. name: "Normal",
  55276. height: math.unit(5 + 2/12, "feet"),
  55277. default: true
  55278. },
  55279. ]
  55280. ))
  55281. characterMakers.push(() => makeCharacter(
  55282. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55283. {
  55284. front: {
  55285. height: math.unit(4, "meters"),
  55286. weight: math.unit(1200, "kg"),
  55287. name: "Front",
  55288. image: {
  55289. source: "./media/characters/licos/front.svg",
  55290. extra: 1727/1604,
  55291. bottom: 101/1828
  55292. },
  55293. form: "anthro",
  55294. default: true
  55295. },
  55296. taur_side: {
  55297. height: math.unit(20, "meters"),
  55298. weight: math.unit(1100000, "kg"),
  55299. name: "Side",
  55300. image: {
  55301. source: "./media/characters/licos/taur.svg",
  55302. extra: 1158/1091,
  55303. bottom: 80/1238
  55304. },
  55305. form: "taur",
  55306. default: true
  55307. },
  55308. },
  55309. [
  55310. {
  55311. name: "Normal",
  55312. height: math.unit(4, "meters"),
  55313. default: true,
  55314. form: "anthro"
  55315. },
  55316. {
  55317. name: "Normal",
  55318. height: math.unit(20, "meters"),
  55319. default: true,
  55320. form: "taur"
  55321. },
  55322. ],
  55323. {
  55324. "anthro": {
  55325. name: "Anthro",
  55326. default: true
  55327. },
  55328. "taur": {
  55329. name: "Taur",
  55330. },
  55331. }
  55332. ))
  55333. characterMakers.push(() => makeCharacter(
  55334. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55335. {
  55336. front: {
  55337. height: math.unit(10 + 3/12, "feet"),
  55338. name: "Front",
  55339. image: {
  55340. source: "./media/characters/theo-monkey/front.svg",
  55341. extra: 1735/1658,
  55342. bottom: 73/1808
  55343. }
  55344. },
  55345. back: {
  55346. height: math.unit(10 + 3/12, "feet"),
  55347. name: "Back",
  55348. image: {
  55349. source: "./media/characters/theo-monkey/back.svg",
  55350. extra: 1742/1664,
  55351. bottom: 33/1775
  55352. }
  55353. },
  55354. head: {
  55355. height: math.unit(2.29, "feet"),
  55356. name: "Head",
  55357. image: {
  55358. source: "./media/characters/theo-monkey/head.svg"
  55359. }
  55360. },
  55361. handPalm: {
  55362. height: math.unit(1.73, "feet"),
  55363. name: "Hand (Palm)",
  55364. image: {
  55365. source: "./media/characters/theo-monkey/hand-palm.svg"
  55366. }
  55367. },
  55368. handBack: {
  55369. height: math.unit(1.63, "feet"),
  55370. name: "Hand (Back)",
  55371. image: {
  55372. source: "./media/characters/theo-monkey/hand-back.svg"
  55373. }
  55374. },
  55375. footSole: {
  55376. height: math.unit(2.15, "feet"),
  55377. name: "Foot (Sole)",
  55378. image: {
  55379. source: "./media/characters/theo-monkey/foot-sole.svg"
  55380. }
  55381. },
  55382. footSide: {
  55383. height: math.unit(1.6, "feet"),
  55384. name: "Foot (Side)",
  55385. image: {
  55386. source: "./media/characters/theo-monkey/foot-side.svg"
  55387. }
  55388. },
  55389. },
  55390. [
  55391. {
  55392. name: "Normal",
  55393. height: math.unit(10 + 3/12, "feet"),
  55394. default: true
  55395. },
  55396. ]
  55397. ))
  55398. characterMakers.push(() => makeCharacter(
  55399. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55400. {
  55401. front: {
  55402. height: math.unit(11, "feet"),
  55403. weight: math.unit(3000, "lb"),
  55404. preyCapacity: math.unit(10, "people"),
  55405. name: "Front",
  55406. image: {
  55407. source: "./media/characters/brook/front.svg",
  55408. extra: 909/835,
  55409. bottom: 108/1017
  55410. }
  55411. },
  55412. back: {
  55413. height: math.unit(11, "feet"),
  55414. weight: math.unit(3000, "lb"),
  55415. preyCapacity: math.unit(10, "people"),
  55416. name: "Back",
  55417. image: {
  55418. source: "./media/characters/brook/back.svg",
  55419. extra: 976/916,
  55420. bottom: 34/1010
  55421. }
  55422. },
  55423. backAlt: {
  55424. height: math.unit(11, "feet"),
  55425. weight: math.unit(3000, "lb"),
  55426. preyCapacity: math.unit(10, "people"),
  55427. name: "Back (Alt)",
  55428. image: {
  55429. source: "./media/characters/brook/back-alt.svg",
  55430. extra: 1283/1213,
  55431. bottom: 35/1318
  55432. }
  55433. },
  55434. bust: {
  55435. height: math.unit(9.0859030837, "feet"),
  55436. weight: math.unit(3000, "lb"),
  55437. preyCapacity: math.unit(10, "people"),
  55438. name: "Bust",
  55439. image: {
  55440. source: "./media/characters/brook/bust.svg",
  55441. extra: 2043/1923,
  55442. bottom: 0/2043
  55443. }
  55444. },
  55445. },
  55446. [
  55447. {
  55448. name: "Small",
  55449. height: math.unit(11, "feet"),
  55450. default: true
  55451. },
  55452. {
  55453. name: "Towering",
  55454. height: math.unit(5, "km")
  55455. },
  55456. {
  55457. name: "Enormous",
  55458. height: math.unit(25, "earths")
  55459. },
  55460. ]
  55461. ))
  55462. characterMakers.push(() => makeCharacter(
  55463. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55464. {
  55465. front: {
  55466. height: math.unit(4, "feet"),
  55467. weight: math.unit(150, "lb"),
  55468. name: "Front",
  55469. image: {
  55470. source: "./media/characters/squishi/front.svg",
  55471. extra: 1428/1271,
  55472. bottom: 30/1458
  55473. },
  55474. extraAttributes: {
  55475. "pawSize": {
  55476. name: "Paw Size",
  55477. power: 1,
  55478. type: "length",
  55479. base: math.unit(14, "ShoeSizeMensUS"),
  55480. defaultUnit: "ShoeSizeMensUS"
  55481. },
  55482. }
  55483. },
  55484. side: {
  55485. height: math.unit(4, "feet"),
  55486. weight: math.unit(150, "lb"),
  55487. name: "Side",
  55488. image: {
  55489. source: "./media/characters/squishi/side.svg",
  55490. extra: 1428/1271,
  55491. bottom: 30/1458
  55492. },
  55493. extraAttributes: {
  55494. "pawSize": {
  55495. name: "Paw Size",
  55496. power: 1,
  55497. type: "length",
  55498. base: math.unit(14, "ShoeSizeMensUS"),
  55499. defaultUnit: "ShoeSizeMensUS"
  55500. },
  55501. }
  55502. },
  55503. back: {
  55504. height: math.unit(4, "feet"),
  55505. weight: math.unit(150, "lb"),
  55506. name: "Back",
  55507. image: {
  55508. source: "./media/characters/squishi/back.svg",
  55509. extra: 1428/1271,
  55510. bottom: 30/1458
  55511. },
  55512. extraAttributes: {
  55513. "pawSize": {
  55514. name: "Paw Size",
  55515. power: 1,
  55516. type: "length",
  55517. base: math.unit(14, "ShoeSizeMensUS"),
  55518. defaultUnit: "ShoeSizeMensUS"
  55519. },
  55520. }
  55521. },
  55522. },
  55523. [
  55524. {
  55525. name: "Normal",
  55526. height: math.unit(4, "feet"),
  55527. default: true
  55528. },
  55529. ]
  55530. ))
  55531. characterMakers.push(() => makeCharacter(
  55532. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55533. {
  55534. front: {
  55535. height: math.unit(7 + 8/12, "feet"),
  55536. weight: math.unit(333, "lb"),
  55537. name: "Front",
  55538. image: {
  55539. source: "./media/characters/vincent-vasroc/front.svg",
  55540. extra: 1962/1860,
  55541. bottom: 41/2003
  55542. }
  55543. },
  55544. back: {
  55545. height: math.unit(7 + 8/12, "feet"),
  55546. weight: math.unit(333, "lb"),
  55547. name: "Back",
  55548. image: {
  55549. source: "./media/characters/vincent-vasroc/back.svg",
  55550. extra: 1952/1815,
  55551. bottom: 33/1985
  55552. }
  55553. },
  55554. paw: {
  55555. height: math.unit(1.24, "feet"),
  55556. name: "Paw",
  55557. image: {
  55558. source: "./media/characters/vincent-vasroc/paw.svg"
  55559. }
  55560. },
  55561. ear: {
  55562. height: math.unit(0.75, "feet"),
  55563. name: "Ear",
  55564. image: {
  55565. source: "./media/characters/vincent-vasroc/ear.svg"
  55566. }
  55567. },
  55568. },
  55569. [
  55570. {
  55571. name: "Nano",
  55572. height: math.unit(92, "micrometers")
  55573. },
  55574. {
  55575. name: "Normal",
  55576. height: math.unit(7 + 8/12, "feet"),
  55577. default: true
  55578. },
  55579. ]
  55580. ))
  55581. characterMakers.push(() => makeCharacter(
  55582. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55583. {
  55584. frontNsfw: {
  55585. height: math.unit(40, "feet"),
  55586. weight: math.unit(58, "tons"),
  55587. name: "Front (NSFW)",
  55588. image: {
  55589. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55590. extra: 1265/965,
  55591. bottom: 155/1420
  55592. }
  55593. },
  55594. frontSfw: {
  55595. height: math.unit(40, "feet"),
  55596. weight: math.unit(58, "tons"),
  55597. name: "Front (SFW)",
  55598. image: {
  55599. source: "./media/characters/ru-kahn/front-sfw.svg",
  55600. extra: 1265/965,
  55601. bottom: 80/1345
  55602. }
  55603. },
  55604. },
  55605. [
  55606. {
  55607. name: "Small",
  55608. height: math.unit(4, "feet")
  55609. },
  55610. {
  55611. name: "Normal",
  55612. height: math.unit(40, "feet"),
  55613. default: true
  55614. },
  55615. {
  55616. name: "Macro",
  55617. height: math.unit(400, "feet")
  55618. },
  55619. ]
  55620. ))
  55621. characterMakers.push(() => makeCharacter(
  55622. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55623. {
  55624. frontNude: {
  55625. height: math.unit(6 + 5/12, "feet"),
  55626. name: "Front (Nude)",
  55627. image: {
  55628. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55629. extra: 1369/1366,
  55630. bottom: 68/1437
  55631. }
  55632. },
  55633. frontDressed: {
  55634. height: math.unit(6 + 5/12, "feet"),
  55635. name: "Front (Dressed)",
  55636. image: {
  55637. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55638. extra: 1369/1366,
  55639. bottom: 68/1437
  55640. }
  55641. },
  55642. },
  55643. [
  55644. {
  55645. name: "Normal",
  55646. height: math.unit(6 + 5/12, "feet"),
  55647. default: true
  55648. },
  55649. {
  55650. name: "Maximum",
  55651. height: math.unit(1930, "feet")
  55652. },
  55653. ]
  55654. ))
  55655. characterMakers.push(() => makeCharacter(
  55656. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55657. {
  55658. front: {
  55659. height: math.unit(5 + 6/12, "feet"),
  55660. name: "Front",
  55661. image: {
  55662. source: "./media/characters/kaja/front.svg",
  55663. extra: 1874/1514,
  55664. bottom: 117/1991
  55665. }
  55666. },
  55667. },
  55668. [
  55669. {
  55670. name: "Normal",
  55671. height: math.unit(5 + 6/12, "feet"),
  55672. default: true
  55673. },
  55674. ]
  55675. ))
  55676. characterMakers.push(() => makeCharacter(
  55677. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55678. {
  55679. front: {
  55680. height: math.unit(5 + 9/12, "feet"),
  55681. weight: math.unit(200, "lb"),
  55682. name: "Front",
  55683. image: {
  55684. source: "./media/characters/mark-smith/front.svg",
  55685. extra: 1004/943,
  55686. bottom: 58/1062
  55687. }
  55688. },
  55689. back: {
  55690. height: math.unit(5 + 9/12, "feet"),
  55691. weight: math.unit(200, "lb"),
  55692. name: "Back",
  55693. image: {
  55694. source: "./media/characters/mark-smith/back.svg",
  55695. extra: 1023/953,
  55696. bottom: 24/1047
  55697. }
  55698. },
  55699. head: {
  55700. height: math.unit(1.82, "feet"),
  55701. name: "Head",
  55702. image: {
  55703. source: "./media/characters/mark-smith/head.svg"
  55704. }
  55705. },
  55706. hand: {
  55707. height: math.unit(1.4, "feet"),
  55708. name: "Hand",
  55709. image: {
  55710. source: "./media/characters/mark-smith/hand.svg"
  55711. }
  55712. },
  55713. paw: {
  55714. height: math.unit(1.69, "feet"),
  55715. name: "Paw",
  55716. image: {
  55717. source: "./media/characters/mark-smith/paw.svg"
  55718. }
  55719. },
  55720. },
  55721. [
  55722. {
  55723. name: "Micro",
  55724. height: math.unit(0.25, "inches")
  55725. },
  55726. {
  55727. name: "Normal",
  55728. height: math.unit(5 + 9/12, "feet"),
  55729. default: true
  55730. },
  55731. {
  55732. name: "Macro",
  55733. height: math.unit(500, "feet")
  55734. },
  55735. ]
  55736. ))
  55737. characterMakers.push(() => makeCharacter(
  55738. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55739. {
  55740. frontNude: {
  55741. height: math.unit(6, "feet"),
  55742. name: "Front (Nude)",
  55743. image: {
  55744. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55745. extra: 1384/1321,
  55746. bottom: 57/1441
  55747. }
  55748. },
  55749. frontDressed: {
  55750. height: math.unit(6, "feet"),
  55751. name: "Front (Dressed)",
  55752. image: {
  55753. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55754. extra: 1384/1321,
  55755. bottom: 57/1441
  55756. }
  55757. },
  55758. },
  55759. [
  55760. {
  55761. name: "Normal",
  55762. height: math.unit(6, "feet"),
  55763. default: true
  55764. },
  55765. {
  55766. name: "Maximum",
  55767. height: math.unit(1776, "feet")
  55768. },
  55769. ]
  55770. ))
  55771. characterMakers.push(() => makeCharacter(
  55772. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55773. {
  55774. front: {
  55775. height: math.unit(2 + 4/12, "feet"),
  55776. weight: math.unit(350, "lb"),
  55777. name: "Front",
  55778. image: {
  55779. source: "./media/characters/devos/front.svg",
  55780. extra: 958/852,
  55781. bottom: 143/1101
  55782. }
  55783. },
  55784. },
  55785. [
  55786. {
  55787. name: "Base",
  55788. height: math.unit(2 + 4/12, "feet"),
  55789. default: true
  55790. },
  55791. ]
  55792. ))
  55793. characterMakers.push(() => makeCharacter(
  55794. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55795. {
  55796. front: {
  55797. height: math.unit(9 + 2/12, "feet"),
  55798. name: "Front",
  55799. image: {
  55800. source: "./media/characters/hiveheart/front.svg",
  55801. extra: 394/364,
  55802. bottom: 65/459
  55803. }
  55804. },
  55805. back: {
  55806. height: math.unit(9 + 2/12, "feet"),
  55807. name: "Back",
  55808. image: {
  55809. source: "./media/characters/hiveheart/back.svg",
  55810. extra: 374/357,
  55811. bottom: 63/437
  55812. }
  55813. },
  55814. },
  55815. [
  55816. {
  55817. name: "Base",
  55818. height: math.unit(9 + 2/12, "feet"),
  55819. default: true
  55820. },
  55821. ]
  55822. ))
  55823. characterMakers.push(() => makeCharacter(
  55824. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55825. {
  55826. front: {
  55827. height: math.unit(2.5, "inches"),
  55828. weight: math.unit(0.6, "oz"),
  55829. name: "Front",
  55830. image: {
  55831. source: "./media/characters/bryn/front.svg",
  55832. extra: 1480/1205,
  55833. bottom: 27/1507
  55834. }
  55835. },
  55836. back: {
  55837. height: math.unit(2.5, "inches"),
  55838. weight: math.unit(0.6, "oz"),
  55839. name: "Back",
  55840. image: {
  55841. source: "./media/characters/bryn/back.svg",
  55842. extra: 1475/1201,
  55843. bottom: 39/1514
  55844. }
  55845. },
  55846. foot: {
  55847. height: math.unit(0.4, "inches"),
  55848. name: "Foot",
  55849. image: {
  55850. source: "./media/characters/bryn/foot.svg"
  55851. }
  55852. },
  55853. },
  55854. [
  55855. {
  55856. name: "Normal",
  55857. height: math.unit(2.5, "inches"),
  55858. default: true
  55859. },
  55860. ]
  55861. ))
  55862. characterMakers.push(() => makeCharacter(
  55863. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55864. {
  55865. side: {
  55866. height: math.unit(7, "feet"),
  55867. weight: math.unit(657, "kg"),
  55868. name: "Side",
  55869. image: {
  55870. source: "./media/characters/delta/side.svg",
  55871. extra: 781/212,
  55872. bottom: 7/788
  55873. },
  55874. extraAttributes: {
  55875. "wingspan": {
  55876. name: "Wingspan",
  55877. power: 1,
  55878. type: "length",
  55879. base: math.unit(48, "feet")
  55880. },
  55881. "length": {
  55882. name: "Length",
  55883. power: 1,
  55884. type: "length",
  55885. base: math.unit(21, "feet")
  55886. },
  55887. "pawSize": {
  55888. name: "Paw Size",
  55889. power: 2,
  55890. type: "area",
  55891. base: math.unit(1.5*1.4, "feet^2")
  55892. },
  55893. }
  55894. },
  55895. },
  55896. [
  55897. {
  55898. name: "Normal",
  55899. height: math.unit(6, "feet"),
  55900. default: true
  55901. },
  55902. ]
  55903. ))
  55904. characterMakers.push(() => makeCharacter(
  55905. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55906. {
  55907. front: {
  55908. height: math.unit(6, "feet"),
  55909. name: "Front",
  55910. image: {
  55911. source: "./media/characters/pyrow/front.svg",
  55912. extra: 513/486,
  55913. bottom: 14/527
  55914. }
  55915. },
  55916. frontWing: {
  55917. height: math.unit(6, "feet"),
  55918. name: "Front (Wing)",
  55919. image: {
  55920. source: "./media/characters/pyrow/front-wing.svg",
  55921. extra: 539/383,
  55922. bottom: 20/559
  55923. }
  55924. },
  55925. back: {
  55926. height: math.unit(6, "feet"),
  55927. name: "Back",
  55928. image: {
  55929. source: "./media/characters/pyrow/back.svg",
  55930. extra: 500/473,
  55931. bottom: 9/509
  55932. }
  55933. },
  55934. },
  55935. [
  55936. {
  55937. name: "Normal",
  55938. height: math.unit(6, "feet"),
  55939. default: true
  55940. },
  55941. ]
  55942. ))
  55943. characterMakers.push(() => makeCharacter(
  55944. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55945. {
  55946. front: {
  55947. height: math.unit(5, "meters"),
  55948. weight: math.unit(3, "tonnes"),
  55949. name: "Front",
  55950. image: {
  55951. source: "./media/characters/velikan/front.svg",
  55952. extra: 867/744,
  55953. bottom: 71/938
  55954. },
  55955. extraAttributes: {
  55956. "shoeSize": {
  55957. name: "Shoe Size",
  55958. power: 1,
  55959. type: "length",
  55960. base: math.unit(135, "ShoeSizeUK"),
  55961. defaultUnit: "ShoeSizeUK"
  55962. },
  55963. }
  55964. },
  55965. },
  55966. [
  55967. {
  55968. name: "Normal",
  55969. height: math.unit(5, "meters"),
  55970. default: true
  55971. },
  55972. {
  55973. name: "Macro",
  55974. height: math.unit(1, "km")
  55975. },
  55976. {
  55977. name: "Mega Macro",
  55978. height: math.unit(100, "km")
  55979. },
  55980. {
  55981. name: "Giga Macro",
  55982. height: math.unit(2, "megameters")
  55983. },
  55984. {
  55985. name: "Planetary",
  55986. height: math.unit(22, "megameters")
  55987. },
  55988. {
  55989. name: "Solar",
  55990. height: math.unit(8, "gigameters")
  55991. },
  55992. {
  55993. name: "Cosmic",
  55994. height: math.unit(10, "zettameters")
  55995. },
  55996. {
  55997. name: "Omni",
  55998. height: math.unit(9e260, "multiverses")
  55999. },
  56000. ]
  56001. ))
  56002. characterMakers.push(() => makeCharacter(
  56003. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56004. {
  56005. front: {
  56006. height: math.unit(4 + 3/12, "feet"),
  56007. weight: math.unit(90, "lb"),
  56008. name: "Front",
  56009. image: {
  56010. source: "./media/characters/sabiki/front.svg",
  56011. extra: 1662/1423,
  56012. bottom: 65/1727
  56013. }
  56014. },
  56015. },
  56016. [
  56017. {
  56018. name: "Normal",
  56019. height: math.unit(4 + 3/12, "feet"),
  56020. default: true
  56021. },
  56022. ]
  56023. ))
  56024. characterMakers.push(() => makeCharacter(
  56025. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56026. {
  56027. frontSfw: {
  56028. height: math.unit(2, "mm"),
  56029. name: "Front (SFW)",
  56030. image: {
  56031. source: "./media/characters/carmel/front-sfw.svg",
  56032. extra: 1131/1006,
  56033. bottom: 66/1197
  56034. }
  56035. },
  56036. frontNsfw: {
  56037. height: math.unit(2, "mm"),
  56038. name: "Front (NSFW)",
  56039. image: {
  56040. source: "./media/characters/carmel/front-nsfw.svg",
  56041. extra: 1131/1006,
  56042. bottom: 66/1197
  56043. }
  56044. },
  56045. foot: {
  56046. height: math.unit(0.3, "mm"),
  56047. name: "Foot",
  56048. image: {
  56049. source: "./media/characters/carmel/foot.svg"
  56050. }
  56051. },
  56052. tongue: {
  56053. height: math.unit(0.71, "mm"),
  56054. name: "Tongue",
  56055. image: {
  56056. source: "./media/characters/carmel/tongue.svg"
  56057. }
  56058. },
  56059. dick: {
  56060. height: math.unit(0.085, "mm"),
  56061. name: "Dick",
  56062. image: {
  56063. source: "./media/characters/carmel/dick.svg"
  56064. }
  56065. },
  56066. },
  56067. [
  56068. {
  56069. name: "Micro",
  56070. height: math.unit(2, "mm"),
  56071. default: true
  56072. },
  56073. {
  56074. name: "Normal",
  56075. height: math.unit(4 + 8/12, "feet")
  56076. },
  56077. {
  56078. name: "Mega Macro",
  56079. height: math.unit(250, "feet")
  56080. },
  56081. {
  56082. name: "BIGGER",
  56083. height: math.unit(1000, "feet")
  56084. },
  56085. {
  56086. name: "BIGGEST",
  56087. height: math.unit(2, "miles")
  56088. },
  56089. ]
  56090. ))
  56091. characterMakers.push(() => makeCharacter(
  56092. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56093. {
  56094. front: {
  56095. height: math.unit(6.5, "feet"),
  56096. weight: math.unit(198, "lb"),
  56097. name: "Front",
  56098. image: {
  56099. source: "./media/characters/tamani/anthro.svg",
  56100. extra: 930/890,
  56101. bottom: 34/964
  56102. },
  56103. form: "anthro",
  56104. default: true
  56105. },
  56106. side: {
  56107. height: math.unit(6, "feet"),
  56108. weight: math.unit(198*2, "lb"),
  56109. name: "Side",
  56110. image: {
  56111. source: "./media/characters/tamani/feral.svg",
  56112. extra: 559/519,
  56113. bottom: 43/602
  56114. },
  56115. form: "feral"
  56116. },
  56117. },
  56118. [
  56119. {
  56120. name: "Normal",
  56121. height: math.unit(6.5, "feet"),
  56122. default: true,
  56123. form: "anthro"
  56124. },
  56125. {
  56126. name: "Normal",
  56127. height: math.unit(6, "feet"),
  56128. default: true,
  56129. form: "feral"
  56130. },
  56131. ],
  56132. {
  56133. "anthro": {
  56134. name: "Anthro",
  56135. default: true
  56136. },
  56137. "feral": {
  56138. name: "Feral",
  56139. },
  56140. }
  56141. ))
  56142. characterMakers.push(() => makeCharacter(
  56143. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56144. {
  56145. front: {
  56146. height: math.unit(4 + 1/12, "feet"),
  56147. weight: math.unit(114, "lb"),
  56148. name: "Front",
  56149. image: {
  56150. source: "./media/characters/dex/front.svg",
  56151. extra: 787/680,
  56152. bottom: 18/805
  56153. }
  56154. },
  56155. side: {
  56156. height: math.unit(4 + 1/12, "feet"),
  56157. weight: math.unit(114, "lb"),
  56158. name: "Side",
  56159. image: {
  56160. source: "./media/characters/dex/side.svg",
  56161. extra: 785/680,
  56162. bottom: 12/797
  56163. }
  56164. },
  56165. back: {
  56166. height: math.unit(4 + 1/12, "feet"),
  56167. weight: math.unit(114, "lb"),
  56168. name: "Back",
  56169. image: {
  56170. source: "./media/characters/dex/back.svg",
  56171. extra: 785/681,
  56172. bottom: 17/802
  56173. }
  56174. },
  56175. loungewear: {
  56176. height: math.unit(4 + 1/12, "feet"),
  56177. weight: math.unit(114, "lb"),
  56178. name: "Loungewear",
  56179. image: {
  56180. source: "./media/characters/dex/loungewear.svg",
  56181. extra: 787/680,
  56182. bottom: 18/805
  56183. }
  56184. },
  56185. workout: {
  56186. height: math.unit(4 + 1/12, "feet"),
  56187. weight: math.unit(114, "lb"),
  56188. name: "Workout",
  56189. image: {
  56190. source: "./media/characters/dex/workout.svg",
  56191. extra: 787/680,
  56192. bottom: 18/805
  56193. }
  56194. },
  56195. schoolUniform: {
  56196. height: math.unit(4 + 1/12, "feet"),
  56197. weight: math.unit(114, "lb"),
  56198. name: "School-uniform",
  56199. image: {
  56200. source: "./media/characters/dex/school-uniform.svg",
  56201. extra: 787/680,
  56202. bottom: 18/805
  56203. }
  56204. },
  56205. maw: {
  56206. height: math.unit(0.55, "feet"),
  56207. name: "Maw",
  56208. image: {
  56209. source: "./media/characters/dex/maw.svg"
  56210. }
  56211. },
  56212. paw: {
  56213. height: math.unit(0.87, "feet"),
  56214. name: "Paw",
  56215. image: {
  56216. source: "./media/characters/dex/paw.svg"
  56217. }
  56218. },
  56219. bust: {
  56220. height: math.unit(1.67, "feet"),
  56221. name: "Bust",
  56222. image: {
  56223. source: "./media/characters/dex/bust.svg"
  56224. }
  56225. },
  56226. },
  56227. [
  56228. {
  56229. name: "Normal",
  56230. height: math.unit(4 + 1/12, "feet"),
  56231. default: true
  56232. },
  56233. ]
  56234. ))
  56235. characterMakers.push(() => makeCharacter(
  56236. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56237. {
  56238. front: {
  56239. height: math.unit(4 + 3/12, "feet"),
  56240. weight: math.unit(60, "lb"),
  56241. name: "Front",
  56242. image: {
  56243. source: "./media/characters/silke/front.svg",
  56244. extra: 1334/1122,
  56245. bottom: 21/1355
  56246. }
  56247. },
  56248. back: {
  56249. height: math.unit(4 + 3/12, "feet"),
  56250. weight: math.unit(60, "lb"),
  56251. name: "Back",
  56252. image: {
  56253. source: "./media/characters/silke/back.svg",
  56254. extra: 1328/1092,
  56255. bottom: 16/1344
  56256. }
  56257. },
  56258. dressed: {
  56259. height: math.unit(4 + 3/12, "feet"),
  56260. weight: math.unit(60, "lb"),
  56261. name: "Dressed",
  56262. image: {
  56263. source: "./media/characters/silke/dressed.svg",
  56264. extra: 1334/1122,
  56265. bottom: 43/1377
  56266. }
  56267. },
  56268. },
  56269. [
  56270. {
  56271. name: "Normal",
  56272. height: math.unit(4 + 3/12, "feet"),
  56273. default: true
  56274. },
  56275. ]
  56276. ))
  56277. characterMakers.push(() => makeCharacter(
  56278. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56279. {
  56280. front: {
  56281. height: math.unit(1.58, "meters"),
  56282. weight: math.unit(47, "kg"),
  56283. name: "Front",
  56284. image: {
  56285. source: "./media/characters/wireshark/front.svg",
  56286. extra: 883/838,
  56287. bottom: 66/949
  56288. }
  56289. },
  56290. },
  56291. [
  56292. {
  56293. name: "Normal",
  56294. height: math.unit(1.58, "meters"),
  56295. default: true
  56296. },
  56297. ]
  56298. ))
  56299. characterMakers.push(() => makeCharacter(
  56300. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56301. {
  56302. front: {
  56303. height: math.unit(6, "meters"),
  56304. weight: math.unit(15000, "kg"),
  56305. name: "Front",
  56306. image: {
  56307. source: "./media/characters/gallagher/front.svg",
  56308. extra: 532/493,
  56309. bottom: 0/532
  56310. }
  56311. },
  56312. },
  56313. [
  56314. {
  56315. name: "Normal",
  56316. height: math.unit(6, "meters"),
  56317. default: true
  56318. },
  56319. ]
  56320. ))
  56321. characterMakers.push(() => makeCharacter(
  56322. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56323. {
  56324. front: {
  56325. height: math.unit(2.4, "meters"),
  56326. weight: math.unit(270, "kg"),
  56327. name: "Front",
  56328. image: {
  56329. source: "./media/characters/alice/front.svg",
  56330. extra: 950/900,
  56331. bottom: 36/986
  56332. }
  56333. },
  56334. side: {
  56335. height: math.unit(2.4, "meters"),
  56336. weight: math.unit(270, "kg"),
  56337. name: "Side",
  56338. image: {
  56339. source: "./media/characters/alice/side.svg",
  56340. extra: 921/876,
  56341. bottom: 19/940
  56342. }
  56343. },
  56344. dressed: {
  56345. height: math.unit(2.4, "meters"),
  56346. weight: math.unit(270, "kg"),
  56347. name: "Dressed",
  56348. image: {
  56349. source: "./media/characters/alice/dressed.svg",
  56350. extra: 905/850,
  56351. bottom: 81/986
  56352. }
  56353. },
  56354. fishnet: {
  56355. height: math.unit(2.4, "meters"),
  56356. weight: math.unit(270, "kg"),
  56357. name: "Fishnet",
  56358. image: {
  56359. source: "./media/characters/alice/fishnet.svg",
  56360. extra: 905/850,
  56361. bottom: 81/986
  56362. }
  56363. },
  56364. },
  56365. [
  56366. {
  56367. name: "Normal",
  56368. height: math.unit(2.4, "meters"),
  56369. default: true
  56370. },
  56371. ]
  56372. ))
  56373. characterMakers.push(() => makeCharacter(
  56374. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56375. {
  56376. front: {
  56377. height: math.unit(175.25, "feet"),
  56378. name: "Front",
  56379. image: {
  56380. source: "./media/characters/fio/front.svg",
  56381. extra: 1883/1591,
  56382. bottom: 34/1917
  56383. }
  56384. },
  56385. },
  56386. [
  56387. {
  56388. name: "Normal",
  56389. height: math.unit(175.25, "cm"),
  56390. default: true
  56391. },
  56392. ]
  56393. ))
  56394. characterMakers.push(() => makeCharacter(
  56395. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56396. {
  56397. side: {
  56398. height: math.unit(6, "meters"),
  56399. weight: math.unit(3400, "kg"),
  56400. preyCapacity: math.unit(1700, "liters"),
  56401. name: "Side",
  56402. image: {
  56403. source: "./media/characters/hass/side.svg",
  56404. extra: 1058/997,
  56405. bottom: 177/1235
  56406. }
  56407. },
  56408. feeding: {
  56409. height: math.unit(6*0.63, "meters"),
  56410. weight: math.unit(3400, "kg"),
  56411. preyCapacity: math.unit(1700, "liters"),
  56412. name: "Feeding",
  56413. image: {
  56414. source: "./media/characters/hass/feeding.svg",
  56415. extra: 689/579,
  56416. bottom: 146/835
  56417. }
  56418. },
  56419. guts: {
  56420. height: math.unit(6, "meters"),
  56421. weight: math.unit(3400, "kg"),
  56422. name: "Guts",
  56423. image: {
  56424. source: "./media/characters/hass/guts.svg",
  56425. extra: 1223/1198,
  56426. bottom: 182/1405
  56427. }
  56428. },
  56429. dickFront: {
  56430. height: math.unit(1.4, "meters"),
  56431. name: "Dick (Front)",
  56432. image: {
  56433. source: "./media/characters/hass/dick-front.svg"
  56434. }
  56435. },
  56436. dickSide: {
  56437. height: math.unit(1.3, "meters"),
  56438. name: "Dick (Side)",
  56439. image: {
  56440. source: "./media/characters/hass/dick-side.svg"
  56441. }
  56442. },
  56443. dickBack: {
  56444. height: math.unit(1.4, "meters"),
  56445. name: "Dick (Back)",
  56446. image: {
  56447. source: "./media/characters/hass/dick-back.svg"
  56448. }
  56449. },
  56450. },
  56451. [
  56452. {
  56453. name: "Normal",
  56454. height: math.unit(6, "meters"),
  56455. default: true
  56456. },
  56457. ]
  56458. ))
  56459. characterMakers.push(() => makeCharacter(
  56460. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56461. {
  56462. front: {
  56463. height: math.unit(4, "feet"),
  56464. weight: math.unit(60, "lb"),
  56465. name: "Front",
  56466. image: {
  56467. source: "./media/characters/hickory-finnegan/front.svg",
  56468. extra: 444/411,
  56469. bottom: 10/454
  56470. }
  56471. },
  56472. side: {
  56473. height: math.unit(4, "feet"),
  56474. weight: math.unit(60, "lb"),
  56475. name: "Side",
  56476. image: {
  56477. source: "./media/characters/hickory-finnegan/side.svg",
  56478. extra: 444/411,
  56479. bottom: 10/454
  56480. }
  56481. },
  56482. back: {
  56483. height: math.unit(4, "feet"),
  56484. weight: math.unit(60, "lb"),
  56485. name: "Back",
  56486. image: {
  56487. source: "./media/characters/hickory-finnegan/back.svg",
  56488. extra: 444/411,
  56489. bottom: 10/454
  56490. }
  56491. },
  56492. },
  56493. [
  56494. {
  56495. name: "Normal",
  56496. height: math.unit(4, "feet"),
  56497. default: true
  56498. },
  56499. ]
  56500. ))
  56501. characterMakers.push(() => makeCharacter(
  56502. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56503. {
  56504. snivy_front: {
  56505. height: math.unit(2, "feet"),
  56506. weight: math.unit(17.9, "lb"),
  56507. name: "Front",
  56508. image: {
  56509. source: "./media/characters/robin-phox/snivy-front.svg",
  56510. extra: 569/504,
  56511. bottom: 33/602
  56512. },
  56513. form: "snivy",
  56514. default: true
  56515. },
  56516. snivy_frontNsfw: {
  56517. height: math.unit(2, "feet"),
  56518. weight: math.unit(17.9, "lb"),
  56519. name: "Front (NSFW)",
  56520. image: {
  56521. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56522. extra: 569/504,
  56523. bottom: 33/602
  56524. },
  56525. form: "snivy",
  56526. },
  56527. snivy_back: {
  56528. height: math.unit(2, "feet"),
  56529. weight: math.unit(17.9, "lb"),
  56530. name: "Back",
  56531. image: {
  56532. source: "./media/characters/robin-phox/snivy-back.svg",
  56533. extra: 577/508,
  56534. bottom: 21/598
  56535. },
  56536. form: "snivy",
  56537. },
  56538. snivy_foot: {
  56539. height: math.unit(0.68, "feet"),
  56540. name: "Foot",
  56541. image: {
  56542. source: "./media/characters/robin-phox/snivy-foot.svg"
  56543. },
  56544. form: "snivy",
  56545. },
  56546. snivy_sole: {
  56547. height: math.unit(0.68, "feet"),
  56548. name: "Sole",
  56549. image: {
  56550. source: "./media/characters/robin-phox/snivy-sole.svg"
  56551. },
  56552. form: "snivy",
  56553. },
  56554. yoshi_front: {
  56555. height: math.unit(6, "feet"),
  56556. weight: math.unit(150, "lb"),
  56557. name: "Front",
  56558. image: {
  56559. source: "./media/characters/robin-phox/yoshi-front.svg",
  56560. extra: 890/792,
  56561. bottom: 29/919
  56562. },
  56563. form: "yoshi",
  56564. default: true
  56565. },
  56566. yoshi_frontNsfw: {
  56567. height: math.unit(6, "feet"),
  56568. weight: math.unit(150, "lb"),
  56569. name: "Front (NSFW)",
  56570. image: {
  56571. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56572. extra: 890/792,
  56573. bottom: 29/919
  56574. },
  56575. form: "yoshi",
  56576. },
  56577. yoshi_back: {
  56578. height: math.unit(6, "feet"),
  56579. weight: math.unit(150, "lb"),
  56580. name: "Back",
  56581. image: {
  56582. source: "./media/characters/robin-phox/yoshi-back.svg",
  56583. extra: 890/792,
  56584. bottom: 29/919
  56585. },
  56586. form: "yoshi",
  56587. },
  56588. yoshi_foot: {
  56589. height: math.unit(1.5, "feet"),
  56590. name: "Foot",
  56591. image: {
  56592. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56593. },
  56594. form: "yoshi",
  56595. },
  56596. delphox_front: {
  56597. height: math.unit(4 + 11/12, "feet"),
  56598. weight: math.unit(86, "lb"),
  56599. name: "Front",
  56600. image: {
  56601. source: "./media/characters/robin-phox/delphox-front.svg",
  56602. extra: 1266/1069,
  56603. bottom: 32/1298
  56604. },
  56605. form: "delphox",
  56606. default: true
  56607. },
  56608. delphox_frontNsfw: {
  56609. height: math.unit(4 + 11/12, "feet"),
  56610. weight: math.unit(86, "lb"),
  56611. name: "Front (NSFW)",
  56612. image: {
  56613. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56614. extra: 1266/1069,
  56615. bottom: 32/1298
  56616. },
  56617. form: "delphox",
  56618. },
  56619. delphox_back: {
  56620. height: math.unit(4 + 11/12, "feet"),
  56621. weight: math.unit(86, "lb"),
  56622. name: "Back",
  56623. image: {
  56624. source: "./media/characters/robin-phox/delphox-back.svg",
  56625. extra: 1269/1083,
  56626. bottom: 15/1284
  56627. },
  56628. form: "delphox",
  56629. },
  56630. mienshao_front: {
  56631. height: math.unit(4 + 7/12, "feet"),
  56632. weight: math.unit(78.3, "lb"),
  56633. name: "Front",
  56634. image: {
  56635. source: "./media/characters/robin-phox/mienshao-front.svg",
  56636. extra: 1052/970,
  56637. bottom: 108/1160
  56638. },
  56639. form: "mienshao",
  56640. default: true
  56641. },
  56642. mienshao_frontNsfw: {
  56643. height: math.unit(4 + 7/12, "feet"),
  56644. weight: math.unit(78.3, "lb"),
  56645. name: "Front (NSFW)",
  56646. image: {
  56647. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56648. extra: 1052/970,
  56649. bottom: 108/1160
  56650. },
  56651. form: "mienshao",
  56652. },
  56653. mienshao_back: {
  56654. height: math.unit(4 + 7/12, "feet"),
  56655. weight: math.unit(78.3, "lb"),
  56656. name: "Back",
  56657. image: {
  56658. source: "./media/characters/robin-phox/mienshao-back.svg",
  56659. extra: 1102/982,
  56660. bottom: 32/1134
  56661. },
  56662. form: "mienshao",
  56663. },
  56664. inteleon_front: {
  56665. height: math.unit(6 + 3/12, "feet"),
  56666. weight: math.unit(99.6, "lb"),
  56667. name: "Front",
  56668. image: {
  56669. source: "./media/characters/robin-phox/inteleon-front.svg",
  56670. extra: 910/799,
  56671. bottom: 76/986
  56672. },
  56673. form: "inteleon",
  56674. default: true
  56675. },
  56676. inteleon_frontNsfw: {
  56677. height: math.unit(6 + 3/12, "feet"),
  56678. weight: math.unit(99.6, "lb"),
  56679. name: "Front (NSFW)",
  56680. image: {
  56681. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56682. extra: 910/799,
  56683. bottom: 76/986
  56684. },
  56685. form: "inteleon",
  56686. },
  56687. inteleon_back: {
  56688. height: math.unit(6 + 3/12, "feet"),
  56689. weight: math.unit(99.6, "lb"),
  56690. name: "Back",
  56691. image: {
  56692. source: "./media/characters/robin-phox/inteleon-back.svg",
  56693. extra: 907/796,
  56694. bottom: 25/932
  56695. },
  56696. form: "inteleon",
  56697. },
  56698. reshiram_front: {
  56699. height: math.unit(10 + 6/12, "feet"),
  56700. weight: math.unit(727.5, "lb"),
  56701. name: "Front",
  56702. image: {
  56703. source: "./media/characters/robin-phox/reshiram-front.svg",
  56704. extra: 1198/940,
  56705. bottom: 123/1321
  56706. },
  56707. form: "reshiram",
  56708. },
  56709. reshiram_frontNsfw: {
  56710. height: math.unit(10 + 6/12, "feet"),
  56711. weight: math.unit(727.5, "lb"),
  56712. name: "Front-nsfw",
  56713. image: {
  56714. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56715. extra: 1198/940,
  56716. bottom: 123/1321
  56717. },
  56718. form: "reshiram",
  56719. },
  56720. reshiram_back: {
  56721. height: math.unit(10 + 6/12, "feet"),
  56722. weight: math.unit(727.5, "lb"),
  56723. name: "Back",
  56724. image: {
  56725. source: "./media/characters/robin-phox/reshiram-back.svg",
  56726. extra: 1024/904,
  56727. bottom: 85/1109
  56728. },
  56729. form: "reshiram",
  56730. },
  56731. samurott_front: {
  56732. height: math.unit(8, "feet"),
  56733. weight: math.unit(208.6, "lb"),
  56734. name: "Front",
  56735. image: {
  56736. source: "./media/characters/robin-phox/samurott-front.svg",
  56737. extra: 1048/984,
  56738. bottom: 100/1148
  56739. },
  56740. form: "samurott",
  56741. },
  56742. samurott_frontNsfw: {
  56743. height: math.unit(8, "feet"),
  56744. weight: math.unit(208.6, "lb"),
  56745. name: "Front-nsfw",
  56746. image: {
  56747. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56748. extra: 1048/984,
  56749. bottom: 100/1148
  56750. },
  56751. form: "samurott",
  56752. },
  56753. samurott_back: {
  56754. height: math.unit(8, "feet"),
  56755. weight: math.unit(208.6, "lb"),
  56756. name: "Back",
  56757. image: {
  56758. source: "./media/characters/robin-phox/samurott-back.svg",
  56759. extra: 1110/1042,
  56760. bottom: 12/1122
  56761. },
  56762. form: "samurott",
  56763. },
  56764. samurott_feral: {
  56765. height: math.unit(4 + 11/12, "feet"),
  56766. weight: math.unit(208.6, "lb"),
  56767. name: "Feral",
  56768. image: {
  56769. source: "./media/characters/robin-phox/samurott-feral.svg",
  56770. extra: 766/681,
  56771. bottom: 108/874
  56772. },
  56773. form: "samurott",
  56774. },
  56775. },
  56776. [
  56777. {
  56778. name: "Normal",
  56779. height: math.unit(2, "feet"),
  56780. default: true,
  56781. form: "snivy"
  56782. },
  56783. {
  56784. name: "Normal",
  56785. height: math.unit(6, "feet"),
  56786. default: true,
  56787. form: "yoshi"
  56788. },
  56789. {
  56790. name: "Normal",
  56791. height: math.unit(4 + 11/12, "feet"),
  56792. default: true,
  56793. form: "delphox"
  56794. },
  56795. {
  56796. name: "Normal",
  56797. height: math.unit(4 + 7/12, "feet"),
  56798. default: true,
  56799. form: "mienshao"
  56800. },
  56801. {
  56802. name: "Normal",
  56803. height: math.unit(6 + 3/12, "feet"),
  56804. default: true,
  56805. form: "inteleon"
  56806. },
  56807. {
  56808. name: "Normal",
  56809. height: math.unit(10 + 6/12, "feet"),
  56810. default: true,
  56811. form: "reshiram"
  56812. },
  56813. {
  56814. name: "Normal",
  56815. height: math.unit(8, "feet"),
  56816. default: true,
  56817. form: "samurott"
  56818. },
  56819. {
  56820. name: "Macro",
  56821. height: math.unit(500, "feet"),
  56822. allForms: true
  56823. },
  56824. {
  56825. name: "Mega Macro",
  56826. height: math.unit(10, "earths"),
  56827. allForms: true
  56828. },
  56829. {
  56830. name: "Giga Macro",
  56831. height: math.unit(1, "galaxy"),
  56832. allForms: true
  56833. },
  56834. {
  56835. name: "Godly Macro",
  56836. height: math.unit(1e10, "multiverses"),
  56837. allForms: true
  56838. },
  56839. ],
  56840. {
  56841. "snivy": {
  56842. name: "Snivy",
  56843. default: true
  56844. },
  56845. "yoshi": {
  56846. name: "Yoshi",
  56847. },
  56848. "delphox": {
  56849. name: "Delphox",
  56850. },
  56851. "mienshao": {
  56852. name: "Mienshao",
  56853. },
  56854. "inteleon": {
  56855. name: "Inteleon",
  56856. },
  56857. "reshiram": {
  56858. name: "Reshiram",
  56859. },
  56860. "samurott": {
  56861. name: "Samurott",
  56862. },
  56863. }
  56864. ))
  56865. characterMakers.push(() => makeCharacter(
  56866. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  56867. {
  56868. front: {
  56869. height: math.unit(4, "feet"),
  56870. name: "Front",
  56871. image: {
  56872. source: "./media/characters/ash-leung/front.svg",
  56873. extra: 1916/1792,
  56874. bottom: 50/1966
  56875. }
  56876. },
  56877. },
  56878. [
  56879. {
  56880. name: "Atomic",
  56881. height: math.unit(1, "angstrom")
  56882. },
  56883. {
  56884. name: "Microscopic",
  56885. height: math.unit(4000, "angstroms")
  56886. },
  56887. {
  56888. name: "Speck",
  56889. height: math.unit(1, "mm")
  56890. },
  56891. {
  56892. name: "Small",
  56893. height: math.unit(1, "inch")
  56894. },
  56895. {
  56896. name: "Normal",
  56897. height: math.unit(4, "feet"),
  56898. default: true
  56899. },
  56900. ]
  56901. ))
  56902. characterMakers.push(() => makeCharacter(
  56903. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  56904. {
  56905. frontDressed: {
  56906. height: math.unit(2.08, "meters"),
  56907. weight: math.unit(175, "lb"),
  56908. name: "Front (Dressed)",
  56909. image: {
  56910. source: "./media/characters/carie/front-dressed.svg",
  56911. extra: 456/417,
  56912. bottom: 7/463
  56913. }
  56914. },
  56915. backDressed: {
  56916. height: math.unit(2.08, "meters"),
  56917. weight: math.unit(175, "lb"),
  56918. name: "Back (Dressed)",
  56919. image: {
  56920. source: "./media/characters/carie/back-dressed.svg",
  56921. extra: 455/414,
  56922. bottom: 11/466
  56923. }
  56924. },
  56925. front: {
  56926. height: math.unit(2, "meters"),
  56927. weight: math.unit(175, "lb"),
  56928. name: "Front",
  56929. image: {
  56930. source: "./media/characters/carie/front.svg",
  56931. extra: 438/399,
  56932. bottom: 12/450
  56933. }
  56934. },
  56935. back: {
  56936. height: math.unit(2, "meters"),
  56937. weight: math.unit(175, "lb"),
  56938. name: "Back",
  56939. image: {
  56940. source: "./media/characters/carie/back.svg",
  56941. extra: 438/397,
  56942. bottom: 7/445
  56943. }
  56944. },
  56945. },
  56946. [
  56947. {
  56948. name: "Normal",
  56949. height: math.unit(2.08, "meters"),
  56950. default: true
  56951. },
  56952. {
  56953. name: "Macro",
  56954. height: math.unit(2.08e3, "meters")
  56955. },
  56956. {
  56957. name: "Mega Macro",
  56958. height: math.unit(2.08e6, "meters")
  56959. },
  56960. {
  56961. name: "Giga Macro",
  56962. height: math.unit(2.08e9, "meters")
  56963. },
  56964. {
  56965. name: "Tera Macro",
  56966. height: math.unit(2.08e12, "meters")
  56967. },
  56968. {
  56969. name: "Peta Macro",
  56970. height: math.unit(2.08e15, "meters")
  56971. },
  56972. {
  56973. name: "Exa Macro",
  56974. height: math.unit(2.08e18, "meters")
  56975. },
  56976. {
  56977. name: "Zetta Macro",
  56978. height: math.unit(2.08e21, "meters")
  56979. },
  56980. {
  56981. name: "Yotta Macro",
  56982. height: math.unit(2.08e24, "meters")
  56983. },
  56984. ]
  56985. ))
  56986. characterMakers.push(() => makeCharacter(
  56987. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  56988. {
  56989. front: {
  56990. height: math.unit(5 + 2/12, "feet"),
  56991. weight: math.unit(120, "lb"),
  56992. name: "Front",
  56993. image: {
  56994. source: "./media/characters/sai-bree/front.svg",
  56995. extra: 1843/1702,
  56996. bottom: 91/1934
  56997. }
  56998. },
  56999. back: {
  57000. height: math.unit(5 + 2/12, "feet"),
  57001. weight: math.unit(120, "lb"),
  57002. name: "Back",
  57003. image: {
  57004. source: "./media/characters/sai-bree/back.svg",
  57005. extra: 1809/1637,
  57006. bottom: 56/1865
  57007. }
  57008. },
  57009. },
  57010. [
  57011. {
  57012. name: "Normal",
  57013. height: math.unit(5 + 2/12, "feet"),
  57014. default: true
  57015. },
  57016. {
  57017. name: "Macro",
  57018. height: math.unit(500, "feet")
  57019. },
  57020. ]
  57021. ))
  57022. characterMakers.push(() => makeCharacter(
  57023. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57024. {
  57025. side: {
  57026. height: math.unit(0.77, "meters"),
  57027. weight: math.unit(120, "lb"),
  57028. name: "Side",
  57029. image: {
  57030. source: "./media/characters/davwyn/side.svg",
  57031. extra: 1557/1225,
  57032. bottom: 131/1688
  57033. }
  57034. },
  57035. front: {
  57036. height: math.unit(0.835410, "meters"),
  57037. weight: math.unit(120, "lb"),
  57038. name: "Front",
  57039. image: {
  57040. source: "./media/characters/davwyn/front.svg",
  57041. extra: 870/843,
  57042. bottom: 175/1045
  57043. }
  57044. },
  57045. },
  57046. [
  57047. {
  57048. name: "Minidrake",
  57049. height: math.unit(0.77/4, "meters")
  57050. },
  57051. {
  57052. name: "Normal",
  57053. height: math.unit(0.77, "meters"),
  57054. default: true
  57055. },
  57056. ]
  57057. ))
  57058. characterMakers.push(() => makeCharacter(
  57059. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57060. {
  57061. front: {
  57062. height: math.unit(10 + 3/12, "feet"),
  57063. weight: math.unit(2857, "lb"),
  57064. name: "Front",
  57065. image: {
  57066. source: "./media/characters/balans/front.svg",
  57067. extra: 427/402,
  57068. bottom: 26/453
  57069. }
  57070. },
  57071. side: {
  57072. height: math.unit(10 + 3/12, "feet"),
  57073. weight: math.unit(2857, "lb"),
  57074. name: "Side",
  57075. image: {
  57076. source: "./media/characters/balans/side.svg",
  57077. extra: 397/371,
  57078. bottom: 17/414
  57079. }
  57080. },
  57081. back: {
  57082. height: math.unit(10 + 3/12, "feet"),
  57083. weight: math.unit(2857, "lb"),
  57084. name: "Back",
  57085. image: {
  57086. source: "./media/characters/balans/back.svg",
  57087. extra: 408/381,
  57088. bottom: 14/422
  57089. }
  57090. },
  57091. hand: {
  57092. height: math.unit(1.15, "feet"),
  57093. name: "Hand",
  57094. image: {
  57095. source: "./media/characters/balans/hand.svg"
  57096. }
  57097. },
  57098. footRest: {
  57099. height: math.unit(3.1, "feet"),
  57100. name: "Foot (Rest)",
  57101. image: {
  57102. source: "./media/characters/balans/foot-rest.svg"
  57103. }
  57104. },
  57105. footActive: {
  57106. height: math.unit(3.5, "feet"),
  57107. name: "Foot (Active)",
  57108. image: {
  57109. source: "./media/characters/balans/foot-active.svg"
  57110. }
  57111. },
  57112. },
  57113. [
  57114. {
  57115. name: "Normal",
  57116. height: math.unit(10 + 3/12, "feet"),
  57117. default: true
  57118. },
  57119. ]
  57120. ))
  57121. characterMakers.push(() => makeCharacter(
  57122. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57123. {
  57124. side: {
  57125. height: math.unit(9, "meters"),
  57126. weight: math.unit(114, "tonnes"),
  57127. name: "Side",
  57128. image: {
  57129. source: "./media/characters/eldkveikir/side.svg",
  57130. extra: 1927/338,
  57131. bottom: 42/1969
  57132. }
  57133. },
  57134. sitting: {
  57135. height: math.unit(13.4, "meters"),
  57136. weight: math.unit(114, "tonnes"),
  57137. name: "Sitting",
  57138. image: {
  57139. source: "./media/characters/eldkveikir/sitting.svg",
  57140. extra: 1108/963,
  57141. bottom: 610/1718
  57142. }
  57143. },
  57144. maw: {
  57145. height: math.unit(8.36, "meters"),
  57146. name: "Maw",
  57147. image: {
  57148. source: "./media/characters/eldkveikir/maw.svg"
  57149. }
  57150. },
  57151. hand: {
  57152. height: math.unit(4.84, "meters"),
  57153. name: "Hand",
  57154. image: {
  57155. source: "./media/characters/eldkveikir/hand.svg"
  57156. }
  57157. },
  57158. foot: {
  57159. height: math.unit(6.9, "meters"),
  57160. name: "Foot",
  57161. image: {
  57162. source: "./media/characters/eldkveikir/foot.svg"
  57163. }
  57164. },
  57165. genitals: {
  57166. height: math.unit(9.6, "meters"),
  57167. name: "Genitals",
  57168. image: {
  57169. source: "./media/characters/eldkveikir/genitals.svg"
  57170. }
  57171. },
  57172. },
  57173. [
  57174. {
  57175. name: "Normal",
  57176. height: math.unit(9, "meters"),
  57177. default: true
  57178. },
  57179. ]
  57180. ))
  57181. characterMakers.push(() => makeCharacter(
  57182. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57183. {
  57184. front: {
  57185. height: math.unit(14, "feet"),
  57186. weight: math.unit(4100, "lb"),
  57187. name: "Front",
  57188. image: {
  57189. source: "./media/characters/arrow/front.svg",
  57190. extra: 330/318,
  57191. bottom: 56/386
  57192. }
  57193. },
  57194. },
  57195. [
  57196. {
  57197. name: "Normal",
  57198. height: math.unit(14, "feet"),
  57199. default: true
  57200. },
  57201. {
  57202. name: "Minimacro",
  57203. height: math.unit(63, "feet")
  57204. },
  57205. {
  57206. name: "Macro",
  57207. height: math.unit(630, "feet")
  57208. },
  57209. {
  57210. name: "Megamacro",
  57211. height: math.unit(12600, "feet")
  57212. },
  57213. {
  57214. name: "Gigamacro",
  57215. height: math.unit(18000, "miles")
  57216. },
  57217. ]
  57218. ))
  57219. characterMakers.push(() => makeCharacter(
  57220. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57221. {
  57222. front: {
  57223. height: math.unit(10, "feet"),
  57224. weight: math.unit(2.4, "tons"),
  57225. name: "Front",
  57226. image: {
  57227. source: "./media/characters/3yk-k0-unit/front.svg",
  57228. extra: 573/561,
  57229. bottom: 33/606
  57230. }
  57231. },
  57232. back: {
  57233. height: math.unit(10, "feet"),
  57234. weight: math.unit(2.4, "tons"),
  57235. name: "Back",
  57236. image: {
  57237. source: "./media/characters/3yk-k0-unit/back.svg",
  57238. extra: 614/573,
  57239. bottom: 32/646
  57240. }
  57241. },
  57242. maw: {
  57243. height: math.unit(2.15, "feet"),
  57244. name: "Maw",
  57245. image: {
  57246. source: "./media/characters/3yk-k0-unit/maw.svg"
  57247. }
  57248. },
  57249. },
  57250. [
  57251. {
  57252. name: "Normal",
  57253. height: math.unit(10, "feet"),
  57254. default: true
  57255. },
  57256. ]
  57257. ))
  57258. characterMakers.push(() => makeCharacter(
  57259. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57260. {
  57261. front: {
  57262. height: math.unit(8 + 8/12, "feet"),
  57263. name: "Front",
  57264. image: {
  57265. source: "./media/characters/nemo/front.svg",
  57266. extra: 1308/1217,
  57267. bottom: 57/1365
  57268. }
  57269. },
  57270. },
  57271. [
  57272. {
  57273. name: "Normal",
  57274. height: math.unit(8 + 8/12, "feet"),
  57275. default: true
  57276. },
  57277. ]
  57278. ))
  57279. characterMakers.push(() => makeCharacter(
  57280. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57281. {
  57282. front: {
  57283. height: math.unit(8, "feet"),
  57284. weight: math.unit(760, "lb"),
  57285. name: "Front",
  57286. image: {
  57287. source: "./media/characters/rexx/front.svg",
  57288. extra: 786/750,
  57289. bottom: 17/803
  57290. },
  57291. extraAttributes: {
  57292. "pawLength": {
  57293. name: "Paw Length",
  57294. power: 1,
  57295. type: "length",
  57296. base: math.unit(27, "inches")
  57297. },
  57298. }
  57299. },
  57300. },
  57301. [
  57302. {
  57303. name: "Micro",
  57304. height: math.unit(2, "inches")
  57305. },
  57306. {
  57307. name: "Normal",
  57308. height: math.unit(8, "feet"),
  57309. default: true
  57310. },
  57311. {
  57312. name: "Macro",
  57313. height: math.unit(150, "feet")
  57314. },
  57315. ]
  57316. ))
  57317. characterMakers.push(() => makeCharacter(
  57318. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57319. {
  57320. front: {
  57321. height: math.unit(18, "feet"),
  57322. weight: math.unit(1975, "lb"),
  57323. name: "Front",
  57324. image: {
  57325. source: "./media/characters/draco/front.svg",
  57326. extra: 1325/1241,
  57327. bottom: 83/1408
  57328. }
  57329. },
  57330. back: {
  57331. height: math.unit(18, "feet"),
  57332. weight: math.unit(1975, "lb"),
  57333. name: "Back",
  57334. image: {
  57335. source: "./media/characters/draco/back.svg",
  57336. extra: 1332/1250,
  57337. bottom: 43/1375
  57338. }
  57339. },
  57340. dick: {
  57341. height: math.unit(7.5, "feet"),
  57342. name: "Dick",
  57343. image: {
  57344. source: "./media/characters/draco/dick.svg"
  57345. }
  57346. },
  57347. },
  57348. [
  57349. {
  57350. name: "Normal",
  57351. height: math.unit(18, "feet"),
  57352. default: true
  57353. },
  57354. ]
  57355. ))
  57356. characterMakers.push(() => makeCharacter(
  57357. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57358. {
  57359. front: {
  57360. height: math.unit(3.2, "meters"),
  57361. name: "Front",
  57362. image: {
  57363. source: "./media/characters/harriett/front.svg",
  57364. extra: 1966/1915,
  57365. bottom: 9/1975
  57366. }
  57367. },
  57368. },
  57369. [
  57370. {
  57371. name: "Normal",
  57372. height: math.unit(3.2, "meters"),
  57373. default: true
  57374. },
  57375. ]
  57376. ))
  57377. characterMakers.push(() => makeCharacter(
  57378. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57379. {
  57380. sitting: {
  57381. height: math.unit(0.8, "meter"),
  57382. name: "Sitting",
  57383. image: {
  57384. source: "./media/characters/serpentus/sitting.svg",
  57385. extra: 293/290,
  57386. bottom: 140/433
  57387. }
  57388. },
  57389. },
  57390. [
  57391. {
  57392. name: "Normal",
  57393. height: math.unit(0.8, "meter"),
  57394. default: true
  57395. },
  57396. ]
  57397. ))
  57398. characterMakers.push(() => makeCharacter(
  57399. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57400. {
  57401. front: {
  57402. height: math.unit(5.7174385736, "feet"),
  57403. name: "Front",
  57404. image: {
  57405. source: "./media/characters/nova-polecat/front.svg",
  57406. extra: 1317/1216,
  57407. bottom: 92/1409
  57408. }
  57409. },
  57410. },
  57411. [
  57412. {
  57413. name: "Normal",
  57414. height: math.unit(5.7174385736, "feet"),
  57415. default: true
  57416. },
  57417. ]
  57418. ))
  57419. characterMakers.push(() => makeCharacter(
  57420. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57421. {
  57422. front: {
  57423. height: math.unit(5 + 4/12, "feet"),
  57424. weight: math.unit(250, "lb"),
  57425. name: "Front",
  57426. image: {
  57427. source: "./media/characters/mook/front.svg",
  57428. extra: 1088/1037,
  57429. bottom: 132/1220
  57430. }
  57431. },
  57432. back: {
  57433. height: math.unit(5 + 1/12, "feet"),
  57434. weight: math.unit(250, "lb"),
  57435. name: "Back",
  57436. image: {
  57437. source: "./media/characters/mook/back.svg",
  57438. extra: 1184/905,
  57439. bottom: 96/1280
  57440. }
  57441. },
  57442. head: {
  57443. height: math.unit(1.85, "feet"),
  57444. name: "Head",
  57445. image: {
  57446. source: "./media/characters/mook/head.svg"
  57447. }
  57448. },
  57449. hand: {
  57450. height: math.unit(1.9, "feet"),
  57451. name: "Hand",
  57452. image: {
  57453. source: "./media/characters/mook/hand.svg"
  57454. }
  57455. },
  57456. palm: {
  57457. height: math.unit(1.84, "feet"),
  57458. name: "Palm",
  57459. image: {
  57460. source: "./media/characters/mook/palm.svg"
  57461. }
  57462. },
  57463. foot: {
  57464. height: math.unit(1.44, "feet"),
  57465. name: "Foot",
  57466. image: {
  57467. source: "./media/characters/mook/foot.svg"
  57468. }
  57469. },
  57470. sole: {
  57471. height: math.unit(1.44, "feet"),
  57472. name: "Sole",
  57473. image: {
  57474. source: "./media/characters/mook/sole.svg"
  57475. }
  57476. },
  57477. },
  57478. [
  57479. {
  57480. name: "Normal",
  57481. height: math.unit(5 + 4/12, "feet"),
  57482. default: true
  57483. },
  57484. {
  57485. name: "Big",
  57486. height: math.unit(12, "feet")
  57487. },
  57488. ]
  57489. ))
  57490. characterMakers.push(() => makeCharacter(
  57491. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57492. {
  57493. front: {
  57494. height: math.unit(6 + 10/12, "feet"),
  57495. weight: math.unit(233, "lb"),
  57496. name: "Front",
  57497. image: {
  57498. source: "./media/characters/kayla/front.svg",
  57499. extra: 1850/1775,
  57500. bottom: 65/1915
  57501. }
  57502. },
  57503. },
  57504. [
  57505. {
  57506. name: "Normal",
  57507. height: math.unit(6 + 10/12, "feet"),
  57508. default: true
  57509. },
  57510. {
  57511. name: "Amazonian",
  57512. height: math.unit(12 + 5/12, "feet")
  57513. },
  57514. {
  57515. name: "Mini Giantess",
  57516. height: math.unit(26, "feet")
  57517. },
  57518. {
  57519. name: "Giantess",
  57520. height: math.unit(200, "feet")
  57521. },
  57522. {
  57523. name: "Mega Giantess",
  57524. height: math.unit(2500, "feet")
  57525. },
  57526. {
  57527. name: "City Sized",
  57528. height: math.unit(50, "miles")
  57529. },
  57530. {
  57531. name: "Country Sized",
  57532. height: math.unit(500, "miles")
  57533. },
  57534. {
  57535. name: "Continent Sized",
  57536. height: math.unit(2500, "miles")
  57537. },
  57538. {
  57539. name: "Planet Sized",
  57540. height: math.unit(10000, "miles")
  57541. },
  57542. {
  57543. name: "Star Sized",
  57544. height: math.unit(5e6, "miles")
  57545. },
  57546. {
  57547. name: "Solar System Sized",
  57548. height: math.unit(125, "AU")
  57549. },
  57550. {
  57551. name: "Galaxy Sized",
  57552. height: math.unit(300e3, "lightyears")
  57553. },
  57554. {
  57555. name: "Universe Sized",
  57556. height: math.unit(200e9, "lightyears")
  57557. },
  57558. {
  57559. name: "Multiverse Sized",
  57560. height: math.unit(20, "exauniverses")
  57561. },
  57562. {
  57563. name: "Mother of Existence",
  57564. height: math.unit(1e6, "yottauniverses")
  57565. },
  57566. ]
  57567. ))
  57568. characterMakers.push(() => makeCharacter(
  57569. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57570. {
  57571. side: {
  57572. height: math.unit(9.5, "meters"),
  57573. name: "Side",
  57574. image: {
  57575. source: "./media/characters/kulve-ragnarok/side.svg",
  57576. extra: 364/326,
  57577. bottom: 50/414
  57578. }
  57579. },
  57580. },
  57581. [
  57582. {
  57583. name: "Normal",
  57584. height: math.unit(9.5, "meters"),
  57585. default: true
  57586. },
  57587. ]
  57588. ))
  57589. characterMakers.push(() => makeCharacter(
  57590. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57591. {
  57592. front: {
  57593. height: math.unit(8 + 9/12, "feet"),
  57594. name: "Front",
  57595. image: {
  57596. source: "./media/characters/atlas-goat/front.svg",
  57597. extra: 1462/1323,
  57598. bottom: 12/1474
  57599. }
  57600. },
  57601. },
  57602. [
  57603. {
  57604. name: "Normal",
  57605. height: math.unit(8 + 9/12, "feet"),
  57606. default: true
  57607. },
  57608. {
  57609. name: "Skyline",
  57610. height: math.unit(845, "feet")
  57611. },
  57612. {
  57613. name: "Orbital",
  57614. height: math.unit(93000, "miles")
  57615. },
  57616. {
  57617. name: "Constellation",
  57618. height: math.unit(27000, "lightyears")
  57619. },
  57620. ]
  57621. ))
  57622. characterMakers.push(() => makeCharacter(
  57623. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57624. {
  57625. side: {
  57626. height: math.unit(1.8, "meters"),
  57627. weight: math.unit(120, "kg"),
  57628. name: "Side",
  57629. image: {
  57630. source: "./media/characters/xie-ling/side.svg",
  57631. extra: 646/574,
  57632. bottom: 44/690
  57633. }
  57634. },
  57635. },
  57636. [
  57637. {
  57638. name: "Tiny",
  57639. height: math.unit(1.80, "meters")
  57640. },
  57641. {
  57642. name: "Small",
  57643. height: math.unit(6, "meters")
  57644. },
  57645. {
  57646. name: "Medium",
  57647. height: math.unit(15, "meters")
  57648. },
  57649. {
  57650. name: "Normal",
  57651. height: math.unit(30, "meters"),
  57652. default: true
  57653. },
  57654. {
  57655. name: "Above Normal",
  57656. height: math.unit(60, "meters")
  57657. },
  57658. {
  57659. name: "Big",
  57660. height: math.unit(220, "meters")
  57661. },
  57662. {
  57663. name: "Giant",
  57664. height: math.unit(2.2, "km")
  57665. },
  57666. {
  57667. name: "Macro",
  57668. height: math.unit(25, "km")
  57669. },
  57670. {
  57671. name: "Mega Macro",
  57672. height: math.unit(350, "km")
  57673. },
  57674. {
  57675. name: "Mega Macro+",
  57676. height: math.unit(5000, "km")
  57677. },
  57678. {
  57679. name: "Goddess",
  57680. height: math.unit(3, "multiverses")
  57681. },
  57682. ]
  57683. ))
  57684. characterMakers.push(() => makeCharacter(
  57685. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  57686. {
  57687. frontSfw: {
  57688. height: math.unit(5 + 11/12, "feet"),
  57689. weight: math.unit(210, "lb"),
  57690. name: "Front",
  57691. image: {
  57692. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  57693. extra: 1928/1821,
  57694. bottom: 45/1973
  57695. }
  57696. },
  57697. backSfw: {
  57698. height: math.unit(5 + 11/12, "feet"),
  57699. weight: math.unit(210, "lb"),
  57700. name: "Back",
  57701. image: {
  57702. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  57703. extra: 1920/1813,
  57704. bottom: 34/1954
  57705. }
  57706. },
  57707. frontNsfw: {
  57708. height: math.unit(5 + 11/12, "feet"),
  57709. weight: math.unit(210, "lb"),
  57710. name: "Front (NSFW)",
  57711. image: {
  57712. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  57713. extra: 1928/1821,
  57714. bottom: 45/1973
  57715. }
  57716. },
  57717. backNsfw: {
  57718. height: math.unit(5 + 11/12, "feet"),
  57719. weight: math.unit(210, "lb"),
  57720. name: "Back (NSFW)",
  57721. image: {
  57722. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  57723. extra: 1920/1813,
  57724. bottom: 34/1954
  57725. }
  57726. },
  57727. },
  57728. [
  57729. {
  57730. name: "Normal",
  57731. height: math.unit(5 + 11/12, "feet"),
  57732. default: true
  57733. },
  57734. {
  57735. name: "Goddess",
  57736. height: math.unit(20 + 3/12, "feet")
  57737. },
  57738. {
  57739. name: "Breaker of Man",
  57740. height: math.unit(329 + 9/12, "feet")
  57741. },
  57742. {
  57743. name: "Solar Justice",
  57744. height: math.unit(0.6, "solarradii")
  57745. },
  57746. {
  57747. name: "She Who Judges",
  57748. height: math.unit(1, "universe")
  57749. },
  57750. ]
  57751. ))
  57752. characterMakers.push(() => makeCharacter(
  57753. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  57754. {
  57755. casual_front: {
  57756. height: math.unit(6 + 1/12, "feet"),
  57757. weight: math.unit(190, "lb"),
  57758. preyCapacity: math.unit(1, "people"),
  57759. name: "Front",
  57760. image: {
  57761. source: "./media/characters/managarmr/casual-front.svg",
  57762. extra: 411/381,
  57763. bottom: 15/426
  57764. },
  57765. form: "casual",
  57766. },
  57767. casual_back: {
  57768. height: math.unit(6 + 1/12, "feet"),
  57769. weight: math.unit(190, "lb"),
  57770. preyCapacity: math.unit(1, "people"),
  57771. name: "Back",
  57772. image: {
  57773. source: "./media/characters/managarmr/casual-back.svg",
  57774. extra: 413/383,
  57775. bottom: 13/426
  57776. },
  57777. form: "casual",
  57778. },
  57779. base_front: {
  57780. height: math.unit(7, "feet"),
  57781. weight: math.unit(210, "lb"),
  57782. preyCapacity: math.unit(2, "people"),
  57783. name: "Front",
  57784. image: {
  57785. source: "./media/characters/managarmr/base-front.svg",
  57786. extra: 580/485,
  57787. bottom: 32/612
  57788. },
  57789. extraAttributes: {
  57790. "wingspan": {
  57791. name: "Wingspan",
  57792. power: 1,
  57793. type: "length",
  57794. base: math.unit(4, "meters")
  57795. },
  57796. },
  57797. form: "base",
  57798. },
  57799. "true-divine_front": {
  57800. height: math.unit(40, "feet"),
  57801. weight: math.unit(39000, "lb"),
  57802. preyCapacity: math.unit(375, "people"),
  57803. name: "Front",
  57804. image: {
  57805. source: "./media/characters/managarmr/true-divine-front.svg",
  57806. extra: 725/573,
  57807. bottom: 120/845
  57808. },
  57809. extraAttributes: {
  57810. "wingspan": {
  57811. name: "Wingspan",
  57812. power: 1,
  57813. type: "length",
  57814. base: math.unit(20, "meters")
  57815. },
  57816. },
  57817. form: "true-divine",
  57818. },
  57819. },
  57820. [
  57821. {
  57822. name: "Normal",
  57823. height: math.unit(6 + 1/12, "feet"),
  57824. form: "casual",
  57825. default: true
  57826. },
  57827. {
  57828. name: "Normal",
  57829. height: math.unit(7, "feet"),
  57830. form: "base",
  57831. default: true
  57832. },
  57833. ],
  57834. {
  57835. "casual": {
  57836. name: "Casual",
  57837. default: true
  57838. },
  57839. "base": {
  57840. name: "Base",
  57841. },
  57842. "true-divine": {
  57843. name: "True Divine",
  57844. },
  57845. }
  57846. ))
  57847. //characters
  57848. function makeCharacters() {
  57849. const results = [];
  57850. characterMakers.forEach(character => {
  57851. results.push(character());
  57852. });
  57853. return results;
  57854. }