less copy protection, more size visualization
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 

61027 рядки
1.5 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["dinosaur"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["theropod"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["primate"]
  2132. },
  2133. "serval": {
  2134. name: "Serval",
  2135. parents: ["cat"]
  2136. },
  2137. "swampert": {
  2138. name: "Swampert",
  2139. parents: ["pokemon"]
  2140. },
  2141. "red-fox": {
  2142. name: "Red Fox",
  2143. parents: ["fox"]
  2144. },
  2145. "sliver": {
  2146. name: "Sliver",
  2147. parents: ["alien"]
  2148. },
  2149. "sergix": {
  2150. name: "Sergix",
  2151. parents: ["demon", "sergal", "phoenix"]
  2152. },
  2153. "behemoth": {
  2154. name: "Behemoth",
  2155. parents: ["monster", "dragon", "final-fantasy"]
  2156. },
  2157. "final-fantasy": {
  2158. name: "Final Fantasy",
  2159. parents: ["video-games"]
  2160. },
  2161. "video-games": {
  2162. name: "Video Games",
  2163. parents: []
  2164. },
  2165. "eastern-cottontail-rabbit": {
  2166. name: "Eastern Cottontail Rabbit",
  2167. parents: ["rabbit"]
  2168. },
  2169. "thresher-shark": {
  2170. name: "Thresher Shark",
  2171. parents: ["shark"]
  2172. },
  2173. "ai": {
  2174. name: "AI",
  2175. parents: []
  2176. },
  2177. "black-tip-reef-shark": {
  2178. name: "Black Tip Reef Shark",
  2179. parents: ["shark"]
  2180. },
  2181. "quetzalcoatlus-northropi": {
  2182. name: "Quetzalcoatlus Northropi",
  2183. parents: ["dinosaur"]
  2184. },
  2185. "snivy": {
  2186. name: "Snivy",
  2187. parents: ["pokemon", "snake"]
  2188. },
  2189. "nedynvor": {
  2190. name: "Nedynvor",
  2191. parents: ["avian"]
  2192. },
  2193. "marbled-polecat": {
  2194. name: "Marbled Polecat",
  2195. parents: ["polecat"]
  2196. },
  2197. "ape": {
  2198. name: "Ape",
  2199. parents: ["primate"]
  2200. },
  2201. "primate": {
  2202. name: "Primate",
  2203. parents: ["mammal"]
  2204. },
  2205. "kulve-taroth": {
  2206. name: "Kulve Taroth",
  2207. parents: ["monster-hunter", "dragon"]
  2208. },
  2209. "irthos": {
  2210. name: "Irthos",
  2211. parents: ["dragon"]
  2212. },
  2213. "furred-dragon": {
  2214. name: "Furred Dragon",
  2215. parents: ["dragon"]
  2216. },
  2217. "hippogriff": {
  2218. name: "Hippogriff",
  2219. parents: ["gryphon", "horse"]
  2220. },
  2221. "peregrine-falcon": {
  2222. name: "Peregrine Falcon",
  2223. parents: ["falcon"]
  2224. },
  2225. "deinonychus": {
  2226. name: "Deinonychus",
  2227. parents: ["theropod"]
  2228. },
  2229. "theropod": {
  2230. name: "Theropod",
  2231. parents: ["dinosaur"]
  2232. },
  2233. "chocobo": {
  2234. name: "Chocobo",
  2235. parents: ["avian"]
  2236. },
  2237. "stilio": {
  2238. name: "Stilio",
  2239. parents: ["snake"]
  2240. },
  2241. "kardox": {
  2242. name: "Kardox",
  2243. parents: ["wolf", "dragon", "horse"]
  2244. },
  2245. }
  2246. //species
  2247. function getSpeciesInfo(speciesList) {
  2248. let result = new Set();
  2249. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2250. result.add(entry)
  2251. });
  2252. return Array.from(result);
  2253. };
  2254. function getSpeciesInfoHelper(species) {
  2255. if (!speciesData[species]) {
  2256. console.warn(species + " doesn't exist");
  2257. return [];
  2258. }
  2259. if (speciesData[species].parents) {
  2260. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2261. } else {
  2262. return [species];
  2263. }
  2264. }
  2265. characterMakers.push(() => makeCharacter(
  2266. {
  2267. name: "Fen",
  2268. species: ["crux"],
  2269. description: {
  2270. title: "Bio",
  2271. text: "Very furry. Sheds on everything."
  2272. },
  2273. tags: [
  2274. "anthro",
  2275. "goo"
  2276. ]
  2277. },
  2278. {
  2279. front: {
  2280. height: math.unit(12, "feet"),
  2281. weight: math.unit(2400, "lb"),
  2282. preyCapacity: math.unit(1, "people"),
  2283. name: "Front",
  2284. image: {
  2285. source: "./media/characters/fen/front.svg",
  2286. extra: 1804/1562,
  2287. bottom: 205/2009
  2288. },
  2289. extraAttributes: {
  2290. pawSize: {
  2291. name: "Paw Size",
  2292. power: 2,
  2293. type: "area",
  2294. base: math.unit(0.35, "m^2")
  2295. }
  2296. }
  2297. },
  2298. diving: {
  2299. height: math.unit(4.9, "meters"),
  2300. weight: math.unit(2400, "lb"),
  2301. name: "Diving",
  2302. image: {
  2303. source: "./media/characters/fen/diving.svg"
  2304. }
  2305. },
  2306. sleeby: {
  2307. height: math.unit(3.45, "meters"),
  2308. weight: math.unit(2400, "lb"),
  2309. name: "Sleeby",
  2310. image: {
  2311. source: "./media/characters/fen/sleeby.svg"
  2312. }
  2313. },
  2314. goo: {
  2315. height: math.unit(12, "feet"),
  2316. weight: math.unit(3600, "lb"),
  2317. volume: math.unit(1000, "liters"),
  2318. preyCapacity: math.unit(6, "people"),
  2319. name: "Goo",
  2320. image: {
  2321. source: "./media/characters/fen/goo.svg",
  2322. extra: 1307/1071,
  2323. bottom: 134/1441
  2324. }
  2325. },
  2326. horror: {
  2327. height: math.unit(13.6, "feet"),
  2328. weight: math.unit(2400, "lb"),
  2329. preyCapacity: math.unit(1, "people"),
  2330. name: "Horror",
  2331. image: {
  2332. source: "./media/characters/fen/horror.svg",
  2333. extra: 893/797,
  2334. bottom: 0/893
  2335. }
  2336. },
  2337. gooNsfw: {
  2338. height: math.unit(12, "feet"),
  2339. weight: math.unit(3750, "lb"),
  2340. volume: math.unit(1000, "liters"),
  2341. preyCapacity: math.unit(6, "people"),
  2342. name: "Goo (NSFW)",
  2343. image: {
  2344. source: "./media/characters/fen/goo-nsfw.svg",
  2345. extra: 1875/1734,
  2346. bottom: 122/1997
  2347. }
  2348. },
  2349. maw: {
  2350. height: math.unit(5.03, "feet"),
  2351. name: "Maw",
  2352. image: {
  2353. source: "./media/characters/fen/maw.svg"
  2354. }
  2355. },
  2356. gooCeiling: {
  2357. height: math.unit(6.6, "feet"),
  2358. weight: math.unit(3000, "lb"),
  2359. volume: math.unit(1000, "liters"),
  2360. preyCapacity: math.unit(6, "people"),
  2361. name: "Maw (Goo)",
  2362. image: {
  2363. source: "./media/characters/fen/goo-maw.svg"
  2364. }
  2365. },
  2366. paw: {
  2367. height: math.unit(3.77, "feet"),
  2368. name: "Paw",
  2369. image: {
  2370. source: "./media/characters/fen/paw.svg"
  2371. },
  2372. extraAttributes: {
  2373. "toeSize": {
  2374. name: "Toe Size",
  2375. power: 2,
  2376. type: "area",
  2377. base: math.unit(0.02875, "m^2")
  2378. },
  2379. "pawSize": {
  2380. name: "Paw Size",
  2381. power: 2,
  2382. type: "area",
  2383. base: math.unit(0.378, "m^2")
  2384. },
  2385. }
  2386. },
  2387. tail: {
  2388. height: math.unit(12.1, "feet"),
  2389. name: "Tail",
  2390. image: {
  2391. source: "./media/characters/fen/tail.svg"
  2392. }
  2393. },
  2394. tailFull: {
  2395. height: math.unit(12.1, "feet"),
  2396. name: "Full Tail",
  2397. image: {
  2398. source: "./media/characters/fen/tail-full.svg"
  2399. }
  2400. },
  2401. back: {
  2402. height: math.unit(12, "feet"),
  2403. weight: math.unit(2400, "lb"),
  2404. name: "Back",
  2405. image: {
  2406. source: "./media/characters/fen/back.svg",
  2407. },
  2408. info: {
  2409. description: {
  2410. mode: "append",
  2411. text: "\n\nHe is not currently looking at you."
  2412. }
  2413. }
  2414. },
  2415. full: {
  2416. height: math.unit(1.85, "meter"),
  2417. weight: math.unit(3200, "lb"),
  2418. name: "Full",
  2419. image: {
  2420. source: "./media/characters/fen/full.svg",
  2421. extra: 1133/859,
  2422. bottom: 145/1278
  2423. },
  2424. info: {
  2425. description: {
  2426. mode: "append",
  2427. text: "\n\nMunch."
  2428. }
  2429. }
  2430. },
  2431. gooLounging: {
  2432. height: math.unit(4.53, "feet"),
  2433. weight: math.unit(3000, "lb"),
  2434. preyCapacity: math.unit(6, "people"),
  2435. name: "Goo (Lounging)",
  2436. image: {
  2437. source: "./media/characters/fen/goo-lounging.svg",
  2438. bottom: 116 / 613
  2439. }
  2440. },
  2441. lounging: {
  2442. height: math.unit(10.52, "feet"),
  2443. weight: math.unit(2400, "lb"),
  2444. name: "Lounging",
  2445. image: {
  2446. source: "./media/characters/fen/lounging.svg"
  2447. }
  2448. },
  2449. },
  2450. [
  2451. {
  2452. name: "Small",
  2453. height: math.unit(2.2428, "meter")
  2454. },
  2455. {
  2456. name: "Normal",
  2457. height: math.unit(12, "feet"),
  2458. default: true,
  2459. },
  2460. {
  2461. name: "Big",
  2462. height: math.unit(20, "feet")
  2463. },
  2464. {
  2465. name: "Minimacro",
  2466. height: math.unit(40, "feet"),
  2467. info: {
  2468. description: {
  2469. mode: "append",
  2470. text: "\n\nTOO DAMN BIG"
  2471. }
  2472. }
  2473. },
  2474. {
  2475. name: "Macro",
  2476. height: math.unit(100, "feet"),
  2477. info: {
  2478. description: {
  2479. mode: "append",
  2480. text: "\n\nTOO DAMN BIG"
  2481. }
  2482. }
  2483. },
  2484. {
  2485. name: "Megamacro",
  2486. height: math.unit(2, "miles")
  2487. },
  2488. {
  2489. name: "Gigamacro",
  2490. height: math.unit(10, "earths")
  2491. },
  2492. ]
  2493. ))
  2494. characterMakers.push(() => makeCharacter(
  2495. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2496. {
  2497. front: {
  2498. height: math.unit(183, "cm"),
  2499. weight: math.unit(80, "kg"),
  2500. name: "Front",
  2501. image: {
  2502. source: "./media/characters/sofia-fluttertail/front.svg",
  2503. bottom: 0.01,
  2504. extra: 2154 / 2081
  2505. }
  2506. },
  2507. frontAlt: {
  2508. height: math.unit(183, "cm"),
  2509. weight: math.unit(80, "kg"),
  2510. name: "Front (alt)",
  2511. image: {
  2512. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2513. }
  2514. },
  2515. back: {
  2516. height: math.unit(183, "cm"),
  2517. weight: math.unit(80, "kg"),
  2518. name: "Back",
  2519. image: {
  2520. source: "./media/characters/sofia-fluttertail/back.svg"
  2521. }
  2522. },
  2523. kneeling: {
  2524. height: math.unit(125, "cm"),
  2525. weight: math.unit(80, "kg"),
  2526. name: "Kneeling",
  2527. image: {
  2528. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2529. extra: 1033 / 977,
  2530. bottom: 23.7 / 1057
  2531. }
  2532. },
  2533. maw: {
  2534. height: math.unit(183 / 5, "cm"),
  2535. name: "Maw",
  2536. image: {
  2537. source: "./media/characters/sofia-fluttertail/maw.svg"
  2538. }
  2539. },
  2540. mawcloseup: {
  2541. height: math.unit(183 / 5 * 0.41, "cm"),
  2542. name: "Maw (Closeup)",
  2543. image: {
  2544. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2545. }
  2546. },
  2547. paws: {
  2548. height: math.unit(1.17, "feet"),
  2549. name: "Paws",
  2550. image: {
  2551. source: "./media/characters/sofia-fluttertail/paws.svg",
  2552. extra: 851 / 851,
  2553. bottom: 17 / 868
  2554. }
  2555. },
  2556. },
  2557. [
  2558. {
  2559. name: "Normal",
  2560. height: math.unit(1.83, "meter")
  2561. },
  2562. {
  2563. name: "Size Thief",
  2564. height: math.unit(18, "feet")
  2565. },
  2566. {
  2567. name: "50 Foot Collie",
  2568. height: math.unit(50, "feet")
  2569. },
  2570. {
  2571. name: "Macro",
  2572. height: math.unit(96, "feet"),
  2573. default: true
  2574. },
  2575. {
  2576. name: "Megamerger",
  2577. height: math.unit(650, "feet")
  2578. },
  2579. ]
  2580. ))
  2581. characterMakers.push(() => makeCharacter(
  2582. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2583. {
  2584. front: {
  2585. height: math.unit(7, "feet"),
  2586. weight: math.unit(100, "kg"),
  2587. name: "Front",
  2588. image: {
  2589. source: "./media/characters/march/front.svg",
  2590. extra: 1992/1851,
  2591. bottom: 39/2031
  2592. }
  2593. },
  2594. foot: {
  2595. height: math.unit(0.9, "feet"),
  2596. name: "Foot",
  2597. image: {
  2598. source: "./media/characters/march/foot.svg"
  2599. }
  2600. },
  2601. },
  2602. [
  2603. {
  2604. name: "Normal",
  2605. height: math.unit(7.9, "feet")
  2606. },
  2607. {
  2608. name: "Macro",
  2609. height: math.unit(220, "meters")
  2610. },
  2611. {
  2612. name: "Megamacro",
  2613. height: math.unit(2.98, "km"),
  2614. default: true
  2615. },
  2616. {
  2617. name: "Gigamacro",
  2618. height: math.unit(15963, "km")
  2619. },
  2620. {
  2621. name: "Teramacro",
  2622. height: math.unit(2980000000, "km")
  2623. },
  2624. {
  2625. name: "Examacro",
  2626. height: math.unit(250, "parsecs")
  2627. },
  2628. ]
  2629. ))
  2630. characterMakers.push(() => makeCharacter(
  2631. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2632. {
  2633. front: {
  2634. height: math.unit(6, "feet"),
  2635. weight: math.unit(60, "kg"),
  2636. name: "Front",
  2637. image: {
  2638. source: "./media/characters/noir/front.svg",
  2639. extra: 1,
  2640. bottom: 0.032
  2641. }
  2642. },
  2643. },
  2644. [
  2645. {
  2646. name: "Normal",
  2647. height: math.unit(6.6, "feet")
  2648. },
  2649. {
  2650. name: "Macro",
  2651. height: math.unit(500, "feet")
  2652. },
  2653. {
  2654. name: "Megamacro",
  2655. height: math.unit(2.5, "km"),
  2656. default: true
  2657. },
  2658. {
  2659. name: "Gigamacro",
  2660. height: math.unit(22500, "km")
  2661. },
  2662. {
  2663. name: "Teramacro",
  2664. height: math.unit(2500000000, "km")
  2665. },
  2666. {
  2667. name: "Examacro",
  2668. height: math.unit(200, "parsecs")
  2669. },
  2670. ]
  2671. ))
  2672. characterMakers.push(() => makeCharacter(
  2673. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2674. {
  2675. front: {
  2676. height: math.unit(7, "feet"),
  2677. weight: math.unit(100, "kg"),
  2678. name: "Front",
  2679. image: {
  2680. source: "./media/characters/okuri/front.svg",
  2681. extra: 739/665,
  2682. bottom: 39/778
  2683. }
  2684. },
  2685. back: {
  2686. height: math.unit(7, "feet"),
  2687. weight: math.unit(100, "kg"),
  2688. name: "Back",
  2689. image: {
  2690. source: "./media/characters/okuri/back.svg",
  2691. extra: 734/653,
  2692. bottom: 13/747
  2693. }
  2694. },
  2695. sitting: {
  2696. height: math.unit(2.95, "feet"),
  2697. weight: math.unit(100, "kg"),
  2698. name: "Sitting",
  2699. image: {
  2700. source: "./media/characters/okuri/sitting.svg",
  2701. extra: 370/318,
  2702. bottom: 99/469
  2703. }
  2704. },
  2705. },
  2706. [
  2707. {
  2708. name: "Smallest",
  2709. height: math.unit(5 + 2/12, "feet")
  2710. },
  2711. {
  2712. name: "Smaller",
  2713. height: math.unit(300, "feet")
  2714. },
  2715. {
  2716. name: "Small",
  2717. height: math.unit(1000, "feet")
  2718. },
  2719. {
  2720. name: "Macro",
  2721. height: math.unit(1, "mile")
  2722. },
  2723. {
  2724. name: "Mega Macro (Small)",
  2725. height: math.unit(20, "km")
  2726. },
  2727. {
  2728. name: "Mega Macro (Large)",
  2729. height: math.unit(600, "km")
  2730. },
  2731. {
  2732. name: "Giga Macro",
  2733. height: math.unit(10000, "km")
  2734. },
  2735. {
  2736. name: "Normal",
  2737. height: math.unit(577560, "km"),
  2738. default: true
  2739. },
  2740. {
  2741. name: "Large",
  2742. height: math.unit(4, "galaxies")
  2743. },
  2744. {
  2745. name: "Largest",
  2746. height: math.unit(15, "multiverses")
  2747. },
  2748. ]
  2749. ))
  2750. characterMakers.push(() => makeCharacter(
  2751. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2752. {
  2753. front: {
  2754. height: math.unit(7, "feet"),
  2755. weight: math.unit(100, "kg"),
  2756. name: "Front",
  2757. image: {
  2758. source: "./media/characters/manny/front.svg",
  2759. extra: 1,
  2760. bottom: 0.06
  2761. }
  2762. },
  2763. back: {
  2764. height: math.unit(7, "feet"),
  2765. weight: math.unit(100, "kg"),
  2766. name: "Back",
  2767. image: {
  2768. source: "./media/characters/manny/back.svg",
  2769. extra: 1,
  2770. bottom: 0.014
  2771. }
  2772. },
  2773. },
  2774. [
  2775. {
  2776. name: "Normal",
  2777. height: math.unit(7, "feet"),
  2778. },
  2779. {
  2780. name: "Macro",
  2781. height: math.unit(78, "feet"),
  2782. default: true
  2783. },
  2784. {
  2785. name: "Macro+",
  2786. height: math.unit(300, "meters")
  2787. },
  2788. {
  2789. name: "Macro++",
  2790. height: math.unit(2400, "meters")
  2791. },
  2792. {
  2793. name: "Megamacro",
  2794. height: math.unit(5167, "meters")
  2795. },
  2796. {
  2797. name: "Gigamacro",
  2798. height: math.unit(41769, "miles")
  2799. },
  2800. ]
  2801. ))
  2802. characterMakers.push(() => makeCharacter(
  2803. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2804. {
  2805. front: {
  2806. height: math.unit(7, "feet"),
  2807. weight: math.unit(100, "kg"),
  2808. name: "Front",
  2809. image: {
  2810. source: "./media/characters/adake/front-1.svg"
  2811. }
  2812. },
  2813. frontAlt: {
  2814. height: math.unit(7, "feet"),
  2815. weight: math.unit(100, "kg"),
  2816. name: "Front (Alt)",
  2817. image: {
  2818. source: "./media/characters/adake/front-2.svg",
  2819. extra: 1,
  2820. bottom: 0.01
  2821. }
  2822. },
  2823. back: {
  2824. height: math.unit(7, "feet"),
  2825. weight: math.unit(100, "kg"),
  2826. name: "Back",
  2827. image: {
  2828. source: "./media/characters/adake/back.svg",
  2829. }
  2830. },
  2831. kneel: {
  2832. height: math.unit(5.385, "feet"),
  2833. weight: math.unit(100, "kg"),
  2834. name: "Kneeling",
  2835. image: {
  2836. source: "./media/characters/adake/kneel.svg",
  2837. bottom: 0.052
  2838. }
  2839. },
  2840. },
  2841. [
  2842. {
  2843. name: "Normal",
  2844. height: math.unit(7, "feet"),
  2845. },
  2846. {
  2847. name: "Macro",
  2848. height: math.unit(78, "feet"),
  2849. default: true
  2850. },
  2851. {
  2852. name: "Macro+",
  2853. height: math.unit(300, "meters")
  2854. },
  2855. {
  2856. name: "Macro++",
  2857. height: math.unit(2400, "meters")
  2858. },
  2859. {
  2860. name: "Megamacro",
  2861. height: math.unit(5167, "meters")
  2862. },
  2863. {
  2864. name: "Gigamacro",
  2865. height: math.unit(41769, "miles")
  2866. },
  2867. ]
  2868. ))
  2869. characterMakers.push(() => makeCharacter(
  2870. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2871. {
  2872. front: {
  2873. height: math.unit(1.65, "meters"),
  2874. weight: math.unit(50, "kg"),
  2875. name: "Front",
  2876. image: {
  2877. source: "./media/characters/elijah/front.svg",
  2878. extra: 858 / 830,
  2879. bottom: 95.5 / 953.8559
  2880. }
  2881. },
  2882. back: {
  2883. height: math.unit(1.65, "meters"),
  2884. weight: math.unit(50, "kg"),
  2885. name: "Back",
  2886. image: {
  2887. source: "./media/characters/elijah/back.svg",
  2888. extra: 895 / 850,
  2889. bottom: 5.3 / 897.956
  2890. }
  2891. },
  2892. frontNsfw: {
  2893. height: math.unit(1.65, "meters"),
  2894. weight: math.unit(50, "kg"),
  2895. name: "Front (NSFW)",
  2896. image: {
  2897. source: "./media/characters/elijah/front-nsfw.svg",
  2898. extra: 858 / 830,
  2899. bottom: 95.5 / 953.8559
  2900. }
  2901. },
  2902. backNsfw: {
  2903. height: math.unit(1.65, "meters"),
  2904. weight: math.unit(50, "kg"),
  2905. name: "Back (NSFW)",
  2906. image: {
  2907. source: "./media/characters/elijah/back-nsfw.svg",
  2908. extra: 895 / 850,
  2909. bottom: 5.3 / 897.956
  2910. }
  2911. },
  2912. dick: {
  2913. height: math.unit(1, "feet"),
  2914. name: "Dick",
  2915. image: {
  2916. source: "./media/characters/elijah/dick.svg"
  2917. }
  2918. },
  2919. beakOpen: {
  2920. height: math.unit(1.25, "feet"),
  2921. name: "Beak (Open)",
  2922. image: {
  2923. source: "./media/characters/elijah/beak-open.svg"
  2924. }
  2925. },
  2926. beakShut: {
  2927. height: math.unit(1.25, "feet"),
  2928. name: "Beak (Shut)",
  2929. image: {
  2930. source: "./media/characters/elijah/beak-shut.svg"
  2931. }
  2932. },
  2933. footFlexing: {
  2934. height: math.unit(1.61, "feet"),
  2935. name: "Foot (Flexing)",
  2936. image: {
  2937. source: "./media/characters/elijah/foot-flexing.svg"
  2938. }
  2939. },
  2940. footStepping: {
  2941. height: math.unit(1.44, "feet"),
  2942. name: "Foot (Stepping)",
  2943. image: {
  2944. source: "./media/characters/elijah/foot-stepping.svg"
  2945. }
  2946. },
  2947. plantigradeLeg: {
  2948. height: math.unit(2.34, "feet"),
  2949. name: "Plantigrade Leg",
  2950. image: {
  2951. source: "./media/characters/elijah/plantigrade-leg.svg"
  2952. }
  2953. },
  2954. plantigradeFootLeft: {
  2955. height: math.unit(0.9, "feet"),
  2956. name: "Plantigrade Foot (Left)",
  2957. image: {
  2958. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2959. }
  2960. },
  2961. plantigradeFootRight: {
  2962. height: math.unit(0.9, "feet"),
  2963. name: "Plantigrade Foot (Right)",
  2964. image: {
  2965. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2966. }
  2967. },
  2968. },
  2969. [
  2970. {
  2971. name: "Normal",
  2972. height: math.unit(1.65, "meters")
  2973. },
  2974. {
  2975. name: "Macro",
  2976. height: math.unit(55, "meters"),
  2977. default: true
  2978. },
  2979. {
  2980. name: "Macro+",
  2981. height: math.unit(105, "meters")
  2982. },
  2983. ]
  2984. ))
  2985. characterMakers.push(() => makeCharacter(
  2986. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2987. {
  2988. front: {
  2989. height: math.unit(7 + 2/12, "feet"),
  2990. weight: math.unit(320, "kg"),
  2991. preyCapacity: math.unit(0.276549935, "people"),
  2992. name: "Front",
  2993. image: {
  2994. source: "./media/characters/rai/front.svg",
  2995. extra: 1802/1696,
  2996. bottom: 68/1870
  2997. },
  2998. form: "anthro",
  2999. default: true
  3000. },
  3001. frontDressed: {
  3002. height: math.unit(7 + 2/12, "feet"),
  3003. weight: math.unit(320, "kg"),
  3004. preyCapacity: math.unit(0.276549935, "people"),
  3005. name: "Front (Dressed)",
  3006. image: {
  3007. source: "./media/characters/rai/front-dressed.svg",
  3008. extra: 1802/1696,
  3009. bottom: 68/1870
  3010. },
  3011. form: "anthro"
  3012. },
  3013. side: {
  3014. height: math.unit(7 + 2/12, "feet"),
  3015. weight: math.unit(320, "kg"),
  3016. preyCapacity: math.unit(0.276549935, "people"),
  3017. name: "Side",
  3018. image: {
  3019. source: "./media/characters/rai/side.svg",
  3020. extra: 1789/1710,
  3021. bottom: 115/1904
  3022. },
  3023. form: "anthro"
  3024. },
  3025. back: {
  3026. height: math.unit(7 + 2/12, "feet"),
  3027. weight: math.unit(320, "kg"),
  3028. preyCapacity: math.unit(0.276549935, "people"),
  3029. name: "Back",
  3030. image: {
  3031. source: "./media/characters/rai/back.svg",
  3032. extra: 1770/1707,
  3033. bottom: 28/1798
  3034. },
  3035. form: "anthro"
  3036. },
  3037. feral: {
  3038. height: math.unit(9.5, "feet"),
  3039. weight: math.unit(640, "kg"),
  3040. preyCapacity: math.unit(4, "people"),
  3041. name: "Feral",
  3042. image: {
  3043. source: "./media/characters/rai/feral.svg",
  3044. extra: 945/553,
  3045. bottom: 176/1121
  3046. },
  3047. form: "feral",
  3048. default: true
  3049. },
  3050. dragon: {
  3051. height: math.unit(23, "feet"),
  3052. weight: math.unit(50000, "lb"),
  3053. name: "Dragon",
  3054. image: {
  3055. source: "./media/characters/rai/dragon.svg",
  3056. extra: 2498 / 2030,
  3057. bottom: 85.2 / 2584
  3058. },
  3059. form: "dragon",
  3060. default: true
  3061. },
  3062. maw: {
  3063. height: math.unit(1.69, "feet"),
  3064. name: "Maw",
  3065. image: {
  3066. source: "./media/characters/rai/maw.svg"
  3067. },
  3068. form: "anthro"
  3069. },
  3070. },
  3071. [
  3072. {
  3073. name: "Normal",
  3074. height: math.unit(7 + 2/12, "feet"),
  3075. form: "anthro"
  3076. },
  3077. {
  3078. name: "Big",
  3079. height: math.unit(11, "feet"),
  3080. form: "anthro"
  3081. },
  3082. {
  3083. name: "Minimacro",
  3084. height: math.unit(77, "feet"),
  3085. form: "anthro"
  3086. },
  3087. {
  3088. name: "Macro",
  3089. height: math.unit(302, "feet"),
  3090. default: true,
  3091. form: "anthro"
  3092. },
  3093. {
  3094. name: "Normal",
  3095. height: math.unit(9.5, "feet"),
  3096. form: "feral",
  3097. default: true
  3098. },
  3099. {
  3100. name: "Normal",
  3101. height: math.unit(23, "feet"),
  3102. form: "dragon",
  3103. default: true
  3104. }
  3105. ],
  3106. {
  3107. "anthro": {
  3108. name: "Anthro",
  3109. default: true
  3110. },
  3111. "feral": {
  3112. name: "Feral",
  3113. },
  3114. "dragon": {
  3115. name: "Dragon",
  3116. },
  3117. }
  3118. ))
  3119. characterMakers.push(() => makeCharacter(
  3120. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3121. {
  3122. frontDressed: {
  3123. height: math.unit(216, "feet"),
  3124. weight: math.unit(7000000, "lb"),
  3125. preyCapacity: math.unit(1321, "people"),
  3126. name: "Front (Dressed)",
  3127. image: {
  3128. source: "./media/characters/jazzy/front-dressed.svg",
  3129. extra: 2738 / 2651,
  3130. bottom: 41.8 / 2786
  3131. }
  3132. },
  3133. backDressed: {
  3134. height: math.unit(216, "feet"),
  3135. weight: math.unit(7000000, "lb"),
  3136. preyCapacity: math.unit(1321, "people"),
  3137. name: "Back (Dressed)",
  3138. image: {
  3139. source: "./media/characters/jazzy/back-dressed.svg",
  3140. extra: 2775 / 2673,
  3141. bottom: 36.8 / 2817
  3142. }
  3143. },
  3144. front: {
  3145. height: math.unit(216, "feet"),
  3146. weight: math.unit(7000000, "lb"),
  3147. preyCapacity: math.unit(1321, "people"),
  3148. name: "Front",
  3149. image: {
  3150. source: "./media/characters/jazzy/front.svg",
  3151. extra: 2738 / 2651,
  3152. bottom: 41.8 / 2786
  3153. }
  3154. },
  3155. back: {
  3156. height: math.unit(216, "feet"),
  3157. weight: math.unit(7000000, "lb"),
  3158. preyCapacity: math.unit(1321, "people"),
  3159. name: "Back",
  3160. image: {
  3161. source: "./media/characters/jazzy/back.svg",
  3162. extra: 2775 / 2673,
  3163. bottom: 36.8 / 2817
  3164. }
  3165. },
  3166. maw: {
  3167. height: math.unit(20, "feet"),
  3168. name: "Maw",
  3169. image: {
  3170. source: "./media/characters/jazzy/maw.svg"
  3171. }
  3172. },
  3173. paws: {
  3174. height: math.unit(27.5, "feet"),
  3175. name: "Paws",
  3176. image: {
  3177. source: "./media/characters/jazzy/paws.svg"
  3178. }
  3179. },
  3180. eye: {
  3181. height: math.unit(4.4, "feet"),
  3182. name: "Eye",
  3183. image: {
  3184. source: "./media/characters/jazzy/eye.svg"
  3185. }
  3186. },
  3187. droneOffense: {
  3188. height: math.unit(9.5, "inches"),
  3189. name: "Drone (Offense)",
  3190. image: {
  3191. source: "./media/characters/jazzy/drone-offense.svg"
  3192. }
  3193. },
  3194. droneRecon: {
  3195. height: math.unit(9.5, "inches"),
  3196. name: "Drone (Recon)",
  3197. image: {
  3198. source: "./media/characters/jazzy/drone-recon.svg"
  3199. }
  3200. },
  3201. droneDefense: {
  3202. height: math.unit(9.5, "inches"),
  3203. name: "Drone (Defense)",
  3204. image: {
  3205. source: "./media/characters/jazzy/drone-defense.svg"
  3206. }
  3207. },
  3208. },
  3209. [
  3210. {
  3211. name: "Macro",
  3212. height: math.unit(216, "feet"),
  3213. default: true
  3214. },
  3215. ]
  3216. ))
  3217. characterMakers.push(() => makeCharacter(
  3218. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3219. {
  3220. front: {
  3221. height: math.unit(9 + 6/12, "feet"),
  3222. weight: math.unit(700, "lb"),
  3223. name: "Front",
  3224. image: {
  3225. source: "./media/characters/flamm/front.svg",
  3226. extra: 1736/1596,
  3227. bottom: 93/1829
  3228. }
  3229. },
  3230. buff: {
  3231. height: math.unit(9 + 6/12, "feet"),
  3232. weight: math.unit(950, "lb"),
  3233. name: "Buff",
  3234. image: {
  3235. source: "./media/characters/flamm/buff.svg",
  3236. extra: 3018/2874,
  3237. bottom: 221/3239
  3238. }
  3239. },
  3240. },
  3241. [
  3242. {
  3243. name: "Normal",
  3244. height: math.unit(9.5, "feet")
  3245. },
  3246. {
  3247. name: "Macro",
  3248. height: math.unit(200, "feet"),
  3249. default: true
  3250. },
  3251. ]
  3252. ))
  3253. characterMakers.push(() => makeCharacter(
  3254. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3255. {
  3256. front: {
  3257. height: math.unit(5 + 3/12, "feet"),
  3258. weight: math.unit(60, "kg"),
  3259. name: "Front",
  3260. image: {
  3261. source: "./media/characters/zephiro/front.svg",
  3262. extra: 1873/1761,
  3263. bottom: 147/2020
  3264. }
  3265. },
  3266. side: {
  3267. height: math.unit(5 + 3/12, "feet"),
  3268. weight: math.unit(60, "kg"),
  3269. name: "Side",
  3270. image: {
  3271. source: "./media/characters/zephiro/side.svg",
  3272. extra: 1929/1827,
  3273. bottom: 65/1994
  3274. }
  3275. },
  3276. back: {
  3277. height: math.unit(5 + 3/12, "feet"),
  3278. weight: math.unit(60, "kg"),
  3279. name: "Back",
  3280. image: {
  3281. source: "./media/characters/zephiro/back.svg",
  3282. extra: 1926/1816,
  3283. bottom: 41/1967
  3284. }
  3285. },
  3286. hand: {
  3287. height: math.unit(0.68, "feet"),
  3288. name: "Hand",
  3289. image: {
  3290. source: "./media/characters/zephiro/hand.svg"
  3291. }
  3292. },
  3293. paw: {
  3294. height: math.unit(1, "feet"),
  3295. name: "Paw",
  3296. image: {
  3297. source: "./media/characters/zephiro/paw.svg"
  3298. }
  3299. },
  3300. beans: {
  3301. height: math.unit(0.93, "feet"),
  3302. name: "Beans",
  3303. image: {
  3304. source: "./media/characters/zephiro/beans.svg"
  3305. }
  3306. },
  3307. },
  3308. [
  3309. {
  3310. name: "Micro",
  3311. height: math.unit(3, "inches")
  3312. },
  3313. {
  3314. name: "Normal",
  3315. height: math.unit(5 + 3 / 12, "feet"),
  3316. default: true
  3317. },
  3318. {
  3319. name: "Macro",
  3320. height: math.unit(118, "feet")
  3321. },
  3322. ]
  3323. ))
  3324. characterMakers.push(() => makeCharacter(
  3325. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3326. {
  3327. front: {
  3328. height: math.unit(5, "feet"),
  3329. weight: math.unit(90, "kg"),
  3330. preyCapacity: math.unit(14, "people"),
  3331. name: "Front",
  3332. image: {
  3333. source: "./media/characters/fory/front.svg",
  3334. extra: 2862 / 2674,
  3335. bottom: 180 / 3043.8
  3336. },
  3337. form: "weaselbun",
  3338. default: true,
  3339. extraAttributes: {
  3340. "pawSize": {
  3341. name: "Paw Size",
  3342. power: 2,
  3343. type: "area",
  3344. base: math.unit(0.1596, "m^2")
  3345. },
  3346. "pawLength": {
  3347. name: "Paw Length",
  3348. power: 1,
  3349. type: "length",
  3350. base: math.unit(0.7, "m")
  3351. }
  3352. }
  3353. },
  3354. back: {
  3355. height: math.unit(5, "feet"),
  3356. weight: math.unit(90, "kg"),
  3357. preyCapacity: math.unit(14, "people"),
  3358. name: "Back",
  3359. image: {
  3360. source: "./media/characters/fory/back.svg",
  3361. extra: 1790/1672,
  3362. bottom: 84/1874
  3363. },
  3364. form: "weaselbun",
  3365. extraAttributes: {
  3366. "pawSize": {
  3367. name: "Paw Size",
  3368. power: 2,
  3369. type: "area",
  3370. base: math.unit(0.1596, "m^2")
  3371. },
  3372. "pawLength": {
  3373. name: "Paw Length",
  3374. power: 1,
  3375. type: "length",
  3376. base: math.unit(0.7, "m")
  3377. }
  3378. }
  3379. },
  3380. paw: {
  3381. height: math.unit(2.14, "feet"),
  3382. name: "Paw",
  3383. image: {
  3384. source: "./media/characters/fory/paw.svg"
  3385. },
  3386. form: "weaselbun",
  3387. extraAttributes: {
  3388. "pawSize": {
  3389. name: "Paw Size",
  3390. power: 2,
  3391. type: "area",
  3392. base: math.unit(0.1596, "m^2")
  3393. },
  3394. "pawLength": {
  3395. name: "Paw Length",
  3396. power: 1,
  3397. type: "length",
  3398. base: math.unit(0.48, "m")
  3399. }
  3400. }
  3401. },
  3402. bunBack: {
  3403. height: math.unit(3, "feet"),
  3404. weight: math.unit(20, "kg"),
  3405. preyCapacity: math.unit(3, "people"),
  3406. name: "Back",
  3407. image: {
  3408. source: "./media/characters/fory/bun-back.svg",
  3409. extra: 1749/1564,
  3410. bottom: 246/1995
  3411. },
  3412. form: "bun",
  3413. default: true,
  3414. extraAttributes: {
  3415. "pawSize": {
  3416. name: "Paw Size",
  3417. power: 2,
  3418. type: "area",
  3419. base: math.unit(0.072, "m^2")
  3420. },
  3421. "pawLength": {
  3422. name: "Paw Length",
  3423. power: 1,
  3424. type: "length",
  3425. base: math.unit(0.45, "m")
  3426. }
  3427. }
  3428. },
  3429. },
  3430. [
  3431. {
  3432. name: "Normal",
  3433. height: math.unit(5, "feet"),
  3434. form: "weaselbun"
  3435. },
  3436. {
  3437. name: "Macro",
  3438. height: math.unit(50, "feet"),
  3439. default: true,
  3440. form: "weaselbun"
  3441. },
  3442. {
  3443. name: "Megamacro",
  3444. height: math.unit(10, "miles"),
  3445. form: "weaselbun"
  3446. },
  3447. {
  3448. name: "Gigamacro",
  3449. height: math.unit(5, "earths"),
  3450. form: "weaselbun"
  3451. },
  3452. {
  3453. name: "Normal",
  3454. height: math.unit(3, "feet"),
  3455. default: true,
  3456. form: "bun"
  3457. },
  3458. {
  3459. name: "Fun-Size",
  3460. height: math.unit(12, "feet"),
  3461. form: "bun"
  3462. },
  3463. {
  3464. name: "Macro",
  3465. height: math.unit(100, "feet"),
  3466. form: "bun"
  3467. },
  3468. {
  3469. name: "Planetary",
  3470. height: math.unit(3, "earths"),
  3471. form: "bun"
  3472. },
  3473. ],
  3474. {
  3475. "weaselbun": {
  3476. name: "Weaselbun",
  3477. default: true
  3478. },
  3479. "bun": {
  3480. name: "Bun",
  3481. },
  3482. }
  3483. ))
  3484. characterMakers.push(() => makeCharacter(
  3485. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3486. {
  3487. front: {
  3488. height: math.unit(7, "feet"),
  3489. weight: math.unit(90, "kg"),
  3490. name: "Front",
  3491. image: {
  3492. source: "./media/characters/kurrikage/front.svg",
  3493. extra: 1845/1733,
  3494. bottom: 119/1964
  3495. }
  3496. },
  3497. back: {
  3498. height: math.unit(7, "feet"),
  3499. weight: math.unit(90, "kg"),
  3500. name: "Back",
  3501. image: {
  3502. source: "./media/characters/kurrikage/back.svg",
  3503. extra: 1790/1677,
  3504. bottom: 61/1851
  3505. }
  3506. },
  3507. dressed: {
  3508. height: math.unit(7, "feet"),
  3509. weight: math.unit(90, "kg"),
  3510. name: "Dressed",
  3511. image: {
  3512. source: "./media/characters/kurrikage/dressed.svg",
  3513. extra: 1845/1733,
  3514. bottom: 119/1964
  3515. }
  3516. },
  3517. foot: {
  3518. height: math.unit(1.5, "feet"),
  3519. name: "Foot",
  3520. image: {
  3521. source: "./media/characters/kurrikage/foot.svg"
  3522. }
  3523. },
  3524. staff: {
  3525. height: math.unit(6.7, "feet"),
  3526. name: "Staff",
  3527. image: {
  3528. source: "./media/characters/kurrikage/staff.svg"
  3529. }
  3530. },
  3531. peek: {
  3532. height: math.unit(1.05, "feet"),
  3533. name: "Peeking",
  3534. image: {
  3535. source: "./media/characters/kurrikage/peek.svg",
  3536. bottom: 0.08
  3537. }
  3538. },
  3539. },
  3540. [
  3541. {
  3542. name: "Normal",
  3543. height: math.unit(12, "feet"),
  3544. default: true
  3545. },
  3546. {
  3547. name: "Big",
  3548. height: math.unit(20, "feet")
  3549. },
  3550. {
  3551. name: "Macro",
  3552. height: math.unit(500, "feet")
  3553. },
  3554. {
  3555. name: "Megamacro",
  3556. height: math.unit(20, "miles")
  3557. },
  3558. ]
  3559. ))
  3560. characterMakers.push(() => makeCharacter(
  3561. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3562. {
  3563. front: {
  3564. height: math.unit(6, "feet"),
  3565. weight: math.unit(75, "kg"),
  3566. name: "Front",
  3567. image: {
  3568. source: "./media/characters/shingo/front.svg",
  3569. extra: 1900/1825,
  3570. bottom: 82/1982
  3571. }
  3572. },
  3573. side: {
  3574. height: math.unit(6, "feet"),
  3575. weight: math.unit(75, "kg"),
  3576. name: "Side",
  3577. image: {
  3578. source: "./media/characters/shingo/side.svg",
  3579. extra: 1930/1865,
  3580. bottom: 16/1946
  3581. }
  3582. },
  3583. back: {
  3584. height: math.unit(6, "feet"),
  3585. weight: math.unit(75, "kg"),
  3586. name: "Back",
  3587. image: {
  3588. source: "./media/characters/shingo/back.svg",
  3589. extra: 1922/1852,
  3590. bottom: 16/1938
  3591. }
  3592. },
  3593. frontDressed: {
  3594. height: math.unit(6, "feet"),
  3595. weight: math.unit(150, "lb"),
  3596. name: "Front-dressed",
  3597. image: {
  3598. source: "./media/characters/shingo/front-dressed.svg",
  3599. extra: 1900/1825,
  3600. bottom: 82/1982
  3601. }
  3602. },
  3603. paw: {
  3604. height: math.unit(1.29, "feet"),
  3605. name: "Paw",
  3606. image: {
  3607. source: "./media/characters/shingo/paw.svg"
  3608. }
  3609. },
  3610. hand: {
  3611. height: math.unit(1.07, "feet"),
  3612. name: "Hand",
  3613. image: {
  3614. source: "./media/characters/shingo/hand.svg"
  3615. }
  3616. },
  3617. frontAlt: {
  3618. height: math.unit(6, "feet"),
  3619. weight: math.unit(75, "kg"),
  3620. name: "Front (Alt)",
  3621. image: {
  3622. source: "./media/characters/shingo/front-alt.svg",
  3623. extra: 3511 / 3338,
  3624. bottom: 0.005
  3625. }
  3626. },
  3627. frontAlt2: {
  3628. height: math.unit(6, "feet"),
  3629. weight: math.unit(75, "kg"),
  3630. name: "Front (Alt 2)",
  3631. image: {
  3632. source: "./media/characters/shingo/front-alt-2.svg",
  3633. extra: 706/681,
  3634. bottom: 11/717
  3635. }
  3636. },
  3637. pawAlt: {
  3638. height: math.unit(1, "feet"),
  3639. name: "Paw (Alt)",
  3640. image: {
  3641. source: "./media/characters/shingo/paw-alt.svg"
  3642. }
  3643. },
  3644. },
  3645. [
  3646. {
  3647. name: "Micro",
  3648. height: math.unit(4, "inches")
  3649. },
  3650. {
  3651. name: "Normal",
  3652. height: math.unit(6, "feet"),
  3653. default: true
  3654. },
  3655. {
  3656. name: "Macro",
  3657. height: math.unit(108, "feet")
  3658. },
  3659. {
  3660. name: "Macro+",
  3661. height: math.unit(1500, "feet")
  3662. },
  3663. ]
  3664. ))
  3665. characterMakers.push(() => makeCharacter(
  3666. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3667. {
  3668. side: {
  3669. height: math.unit(6, "feet"),
  3670. weight: math.unit(75, "kg"),
  3671. name: "Side",
  3672. image: {
  3673. source: "./media/characters/aigey/side.svg"
  3674. }
  3675. },
  3676. },
  3677. [
  3678. {
  3679. name: "Macro",
  3680. height: math.unit(200, "feet"),
  3681. default: true
  3682. },
  3683. {
  3684. name: "Megamacro",
  3685. height: math.unit(100, "miles")
  3686. },
  3687. ]
  3688. )
  3689. )
  3690. characterMakers.push(() => makeCharacter(
  3691. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3692. {
  3693. front: {
  3694. height: math.unit(5 + 5 / 12, "feet"),
  3695. weight: math.unit(75, "kg"),
  3696. name: "Front",
  3697. image: {
  3698. source: "./media/characters/natasha/front.svg",
  3699. extra: 859 / 824,
  3700. bottom: 23 / 879.6
  3701. }
  3702. },
  3703. frontNsfw: {
  3704. height: math.unit(5 + 5 / 12, "feet"),
  3705. weight: math.unit(75, "kg"),
  3706. name: "Front (NSFW)",
  3707. image: {
  3708. source: "./media/characters/natasha/front-nsfw.svg",
  3709. extra: 859 / 824,
  3710. bottom: 23 / 879.6
  3711. }
  3712. },
  3713. frontErect: {
  3714. height: math.unit(5 + 5 / 12, "feet"),
  3715. weight: math.unit(75, "kg"),
  3716. name: "Front (Erect)",
  3717. image: {
  3718. source: "./media/characters/natasha/front-erect.svg",
  3719. extra: 859 / 824,
  3720. bottom: 23 / 879.6
  3721. }
  3722. },
  3723. back: {
  3724. height: math.unit(5 + 5 / 12, "feet"),
  3725. weight: math.unit(75, "kg"),
  3726. name: "Back",
  3727. image: {
  3728. source: "./media/characters/natasha/back.svg",
  3729. extra: 887.9 / 852.6,
  3730. bottom: 9.7 / 896.4
  3731. }
  3732. },
  3733. backAlt: {
  3734. height: math.unit(5 + 5 / 12, "feet"),
  3735. weight: math.unit(75, "kg"),
  3736. name: "Back (Alt)",
  3737. image: {
  3738. source: "./media/characters/natasha/back-alt.svg",
  3739. extra: 1236.7 / 1192,
  3740. bottom: 22.3 / 1258.2
  3741. }
  3742. },
  3743. dick: {
  3744. height: math.unit(1.772, "feet"),
  3745. name: "Dick",
  3746. image: {
  3747. source: "./media/characters/natasha/dick.svg"
  3748. }
  3749. },
  3750. paw: {
  3751. height: math.unit(0.250, "meters"),
  3752. name: "Paw",
  3753. image: {
  3754. source: "./media/characters/natasha/paw.svg"
  3755. },
  3756. extraAttributes: {
  3757. "toeSize": {
  3758. name: "Toe Size",
  3759. power: 2,
  3760. type: "area",
  3761. base: math.unit(0.0024, "m^2")
  3762. },
  3763. "padSize": {
  3764. name: "Pad Size",
  3765. power: 2,
  3766. type: "area",
  3767. base: math.unit(0.00889, "m^2")
  3768. },
  3769. "pawSize": {
  3770. name: "Paw Size",
  3771. power: 2,
  3772. type: "area",
  3773. base: math.unit(0.023667, "m^2")
  3774. },
  3775. }
  3776. },
  3777. },
  3778. [
  3779. {
  3780. name: "Shortstack",
  3781. height: math.unit(3, "feet"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "Normal",
  3786. height: math.unit(5 + 5 / 12, "feet")
  3787. },
  3788. {
  3789. name: "Large",
  3790. height: math.unit(12, "feet")
  3791. },
  3792. {
  3793. name: "Macro",
  3794. height: math.unit(100, "feet")
  3795. },
  3796. {
  3797. name: "Macro+",
  3798. height: math.unit(260, "feet")
  3799. },
  3800. {
  3801. name: "Macro++",
  3802. height: math.unit(1, "mile")
  3803. },
  3804. ]
  3805. ))
  3806. characterMakers.push(() => makeCharacter(
  3807. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3808. {
  3809. front: {
  3810. height: math.unit(6, "feet"),
  3811. weight: math.unit(75, "kg"),
  3812. name: "Front",
  3813. image: {
  3814. source: "./media/characters/malik/front.svg",
  3815. extra: 1750/1561,
  3816. bottom: 80/1830
  3817. },
  3818. extraAttributes: {
  3819. "toeSize": {
  3820. name: "Toe Size",
  3821. power: 2,
  3822. type: "area",
  3823. base: math.unit(0.0159, "m^2")
  3824. },
  3825. "pawSize": {
  3826. name: "Paw Size",
  3827. power: 2,
  3828. type: "area",
  3829. base: math.unit(0.09834, "m^2")
  3830. },
  3831. }
  3832. },
  3833. side: {
  3834. height: math.unit(6, "feet"),
  3835. weight: math.unit(75, "kg"),
  3836. name: "Side",
  3837. image: {
  3838. source: "./media/characters/malik/side.svg",
  3839. extra: 1802/1685,
  3840. bottom: 42/1844
  3841. },
  3842. extraAttributes: {
  3843. "toeSize": {
  3844. name: "Toe Size",
  3845. power: 2,
  3846. type: "area",
  3847. base: math.unit(0.0159, "m^2")
  3848. },
  3849. "pawSize": {
  3850. name: "Paw Size",
  3851. power: 2,
  3852. type: "area",
  3853. base: math.unit(0.09834, "m^2")
  3854. },
  3855. }
  3856. },
  3857. back: {
  3858. height: math.unit(6, "feet"),
  3859. weight: math.unit(75, "kg"),
  3860. name: "Back",
  3861. image: {
  3862. source: "./media/characters/malik/back.svg",
  3863. extra: 1803/1607,
  3864. bottom: 33/1836
  3865. },
  3866. extraAttributes: {
  3867. "toeSize": {
  3868. name: "Toe Size",
  3869. power: 2,
  3870. type: "area",
  3871. base: math.unit(0.0159, "m^2")
  3872. },
  3873. "pawSize": {
  3874. name: "Paw Size",
  3875. power: 2,
  3876. type: "area",
  3877. base: math.unit(0.09834, "m^2")
  3878. },
  3879. }
  3880. },
  3881. },
  3882. [
  3883. {
  3884. name: "Macro",
  3885. height: math.unit(156, "feet"),
  3886. default: true
  3887. },
  3888. {
  3889. name: "Macro+",
  3890. height: math.unit(1188, "feet")
  3891. },
  3892. ]
  3893. ))
  3894. characterMakers.push(() => makeCharacter(
  3895. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3896. {
  3897. front: {
  3898. height: math.unit(6, "feet"),
  3899. weight: math.unit(75, "kg"),
  3900. name: "Front",
  3901. image: {
  3902. source: "./media/characters/sefer/front.svg",
  3903. extra: 848 / 659,
  3904. bottom: 28.3 / 876.442
  3905. }
  3906. },
  3907. back: {
  3908. height: math.unit(6, "feet"),
  3909. weight: math.unit(75, "kg"),
  3910. name: "Back",
  3911. image: {
  3912. source: "./media/characters/sefer/back.svg",
  3913. extra: 864 / 695,
  3914. bottom: 10 / 871
  3915. }
  3916. },
  3917. frontDressed: {
  3918. height: math.unit(6, "feet"),
  3919. weight: math.unit(75, "kg"),
  3920. name: "Dressed",
  3921. image: {
  3922. source: "./media/characters/sefer/dressed.svg",
  3923. extra: 839 / 653,
  3924. bottom: 37.6 / 878
  3925. }
  3926. },
  3927. },
  3928. [
  3929. {
  3930. name: "Normal",
  3931. height: math.unit(6, "feet"),
  3932. default: true
  3933. },
  3934. {
  3935. name: "Big",
  3936. height: math.unit(8, "meters")
  3937. },
  3938. ]
  3939. ))
  3940. characterMakers.push(() => makeCharacter(
  3941. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3942. {
  3943. body: {
  3944. height: math.unit(2.2428, "meter"),
  3945. weight: math.unit(124.738, "kg"),
  3946. name: "Body",
  3947. image: {
  3948. extra: 1225 / 1050,
  3949. source: "./media/characters/north/front.svg"
  3950. }
  3951. }
  3952. },
  3953. [
  3954. {
  3955. name: "Micro",
  3956. height: math.unit(4, "inches")
  3957. },
  3958. {
  3959. name: "Macro",
  3960. height: math.unit(63, "meters")
  3961. },
  3962. {
  3963. name: "Megamacro",
  3964. height: math.unit(101, "miles"),
  3965. default: true
  3966. }
  3967. ]
  3968. ))
  3969. characterMakers.push(() => makeCharacter(
  3970. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3971. {
  3972. angled: {
  3973. height: math.unit(4, "meter"),
  3974. weight: math.unit(150, "kg"),
  3975. name: "Angled",
  3976. image: {
  3977. source: "./media/characters/talan/angled-sfw.svg",
  3978. bottom: 29 / 3734
  3979. }
  3980. },
  3981. angledNsfw: {
  3982. height: math.unit(4, "meter"),
  3983. weight: math.unit(150, "kg"),
  3984. name: "Angled (NSFW)",
  3985. image: {
  3986. source: "./media/characters/talan/angled-nsfw.svg",
  3987. bottom: 29 / 3734
  3988. }
  3989. },
  3990. frontNsfw: {
  3991. height: math.unit(4, "meter"),
  3992. weight: math.unit(150, "kg"),
  3993. name: "Front (NSFW)",
  3994. image: {
  3995. source: "./media/characters/talan/front-nsfw.svg",
  3996. bottom: 29 / 3734
  3997. }
  3998. },
  3999. sideNsfw: {
  4000. height: math.unit(4, "meter"),
  4001. weight: math.unit(150, "kg"),
  4002. name: "Side (NSFW)",
  4003. image: {
  4004. source: "./media/characters/talan/side-nsfw.svg",
  4005. bottom: 29 / 3734
  4006. }
  4007. },
  4008. back: {
  4009. height: math.unit(4, "meter"),
  4010. weight: math.unit(150, "kg"),
  4011. name: "Back",
  4012. image: {
  4013. source: "./media/characters/talan/back.svg"
  4014. }
  4015. },
  4016. dickBottom: {
  4017. height: math.unit(0.621, "meter"),
  4018. name: "Dick (Bottom)",
  4019. image: {
  4020. source: "./media/characters/talan/dick-bottom.svg"
  4021. }
  4022. },
  4023. dickTop: {
  4024. height: math.unit(0.621, "meter"),
  4025. name: "Dick (Top)",
  4026. image: {
  4027. source: "./media/characters/talan/dick-top.svg"
  4028. }
  4029. },
  4030. dickSide: {
  4031. height: math.unit(0.305, "meter"),
  4032. name: "Dick (Side)",
  4033. image: {
  4034. source: "./media/characters/talan/dick-side.svg"
  4035. }
  4036. },
  4037. dickFront: {
  4038. height: math.unit(0.305, "meter"),
  4039. name: "Dick (Front)",
  4040. image: {
  4041. source: "./media/characters/talan/dick-front.svg"
  4042. }
  4043. },
  4044. },
  4045. [
  4046. {
  4047. name: "Normal",
  4048. height: math.unit(4, "meters")
  4049. },
  4050. {
  4051. name: "Macro",
  4052. height: math.unit(100, "meters")
  4053. },
  4054. {
  4055. name: "Megamacro",
  4056. height: math.unit(2, "miles"),
  4057. default: true
  4058. },
  4059. {
  4060. name: "Gigamacro",
  4061. height: math.unit(5000, "miles")
  4062. },
  4063. {
  4064. name: "Teramacro",
  4065. height: math.unit(100, "parsecs")
  4066. }
  4067. ]
  4068. ))
  4069. characterMakers.push(() => makeCharacter(
  4070. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4071. {
  4072. front: {
  4073. height: math.unit(2, "meter"),
  4074. weight: math.unit(90, "kg"),
  4075. name: "Front",
  4076. image: {
  4077. source: "./media/characters/gael'rathus/front.svg"
  4078. }
  4079. },
  4080. frontAlt: {
  4081. height: math.unit(2, "meter"),
  4082. weight: math.unit(90, "kg"),
  4083. name: "Front (alt)",
  4084. image: {
  4085. source: "./media/characters/gael'rathus/front-alt.svg"
  4086. }
  4087. },
  4088. frontAlt2: {
  4089. height: math.unit(2, "meter"),
  4090. weight: math.unit(90, "kg"),
  4091. name: "Front (alt 2)",
  4092. image: {
  4093. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4094. }
  4095. }
  4096. },
  4097. [
  4098. {
  4099. name: "Normal",
  4100. height: math.unit(9, "feet"),
  4101. default: true
  4102. },
  4103. {
  4104. name: "Large",
  4105. height: math.unit(25, "feet")
  4106. },
  4107. {
  4108. name: "Macro",
  4109. height: math.unit(0.25, "miles")
  4110. },
  4111. {
  4112. name: "Megamacro",
  4113. height: math.unit(10, "miles")
  4114. }
  4115. ]
  4116. ))
  4117. characterMakers.push(() => makeCharacter(
  4118. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4119. {
  4120. side: {
  4121. height: math.unit(2, "meter"),
  4122. weight: math.unit(140, "kg"),
  4123. name: "Side",
  4124. image: {
  4125. source: "./media/characters/sosha/side.svg",
  4126. extra: 1170/1006,
  4127. bottom: 94/1264
  4128. }
  4129. },
  4130. maw: {
  4131. height: math.unit(2.87, "feet"),
  4132. name: "Maw",
  4133. image: {
  4134. source: "./media/characters/sosha/maw.svg",
  4135. extra: 966/865,
  4136. bottom: 0/966
  4137. }
  4138. },
  4139. cooch: {
  4140. height: math.unit(5.6, "feet"),
  4141. name: "Cooch",
  4142. image: {
  4143. source: "./media/characters/sosha/cooch.svg"
  4144. }
  4145. },
  4146. },
  4147. [
  4148. {
  4149. name: "Normal",
  4150. height: math.unit(12, "feet"),
  4151. default: true
  4152. }
  4153. ]
  4154. ))
  4155. characterMakers.push(() => makeCharacter(
  4156. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4157. {
  4158. side: {
  4159. height: math.unit(5 + 5 / 12, "feet"),
  4160. weight: math.unit(170, "kg"),
  4161. name: "Side",
  4162. image: {
  4163. source: "./media/characters/runnola/side.svg",
  4164. extra: 741 / 448,
  4165. bottom: 0.05
  4166. }
  4167. },
  4168. },
  4169. [
  4170. {
  4171. name: "Small",
  4172. height: math.unit(3, "feet")
  4173. },
  4174. {
  4175. name: "Normal",
  4176. height: math.unit(5 + 5 / 12, "feet"),
  4177. default: true
  4178. },
  4179. {
  4180. name: "Big",
  4181. height: math.unit(10, "feet")
  4182. },
  4183. ]
  4184. ))
  4185. characterMakers.push(() => makeCharacter(
  4186. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4187. {
  4188. front: {
  4189. height: math.unit(2, "meter"),
  4190. weight: math.unit(50, "kg"),
  4191. name: "Front",
  4192. image: {
  4193. source: "./media/characters/kurribird/front.svg",
  4194. bottom: 0.015
  4195. }
  4196. },
  4197. frontAlt: {
  4198. height: math.unit(1.5, "meter"),
  4199. weight: math.unit(50, "kg"),
  4200. name: "Front (Alt)",
  4201. image: {
  4202. source: "./media/characters/kurribird/front-alt.svg",
  4203. extra: 1.45
  4204. }
  4205. },
  4206. },
  4207. [
  4208. {
  4209. name: "Normal",
  4210. height: math.unit(7, "feet")
  4211. },
  4212. {
  4213. name: "Big",
  4214. height: math.unit(12, "feet"),
  4215. default: true
  4216. },
  4217. {
  4218. name: "Macro",
  4219. height: math.unit(1500, "feet")
  4220. },
  4221. {
  4222. name: "Megamacro",
  4223. height: math.unit(2, "miles")
  4224. }
  4225. ]
  4226. ))
  4227. characterMakers.push(() => makeCharacter(
  4228. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4229. {
  4230. front: {
  4231. height: math.unit(2, "meter"),
  4232. weight: math.unit(80, "kg"),
  4233. name: "Front",
  4234. image: {
  4235. source: "./media/characters/elbial/front.svg",
  4236. extra: 1643 / 1556,
  4237. bottom: 60.2 / 1696
  4238. }
  4239. },
  4240. side: {
  4241. height: math.unit(2, "meter"),
  4242. weight: math.unit(80, "kg"),
  4243. name: "Side",
  4244. image: {
  4245. source: "./media/characters/elbial/side.svg",
  4246. extra: 1601/1528,
  4247. bottom: 97/1698
  4248. }
  4249. },
  4250. back: {
  4251. height: math.unit(2, "meter"),
  4252. weight: math.unit(80, "kg"),
  4253. name: "Back",
  4254. image: {
  4255. source: "./media/characters/elbial/back.svg",
  4256. extra: 1653/1569,
  4257. bottom: 20/1673
  4258. }
  4259. },
  4260. frontDressed: {
  4261. height: math.unit(2, "meter"),
  4262. weight: math.unit(80, "kg"),
  4263. name: "Front (Dressed)",
  4264. image: {
  4265. source: "./media/characters/elbial/front-dressed.svg",
  4266. extra: 1638/1569,
  4267. bottom: 70/1708
  4268. }
  4269. },
  4270. genitals: {
  4271. height: math.unit(2 / 3.367, "meter"),
  4272. name: "Genitals",
  4273. image: {
  4274. source: "./media/characters/elbial/genitals.svg"
  4275. }
  4276. },
  4277. },
  4278. [
  4279. {
  4280. name: "Large",
  4281. height: math.unit(100, "feet")
  4282. },
  4283. {
  4284. name: "Macro",
  4285. height: math.unit(500, "feet"),
  4286. default: true
  4287. },
  4288. {
  4289. name: "Megamacro",
  4290. height: math.unit(10, "miles")
  4291. },
  4292. {
  4293. name: "Gigamacro",
  4294. height: math.unit(25000, "miles")
  4295. },
  4296. {
  4297. name: "Full-Size",
  4298. height: math.unit(8000000, "gigaparsecs")
  4299. }
  4300. ]
  4301. ))
  4302. characterMakers.push(() => makeCharacter(
  4303. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4304. {
  4305. front: {
  4306. height: math.unit(2, "meter"),
  4307. weight: math.unit(60, "kg"),
  4308. name: "Front",
  4309. image: {
  4310. source: "./media/characters/noah/front.svg"
  4311. }
  4312. },
  4313. talons: {
  4314. height: math.unit(0.315, "meter"),
  4315. name: "Talons",
  4316. image: {
  4317. source: "./media/characters/noah/talons.svg"
  4318. }
  4319. }
  4320. },
  4321. [
  4322. {
  4323. name: "Large",
  4324. height: math.unit(50, "feet")
  4325. },
  4326. {
  4327. name: "Macro",
  4328. height: math.unit(750, "feet"),
  4329. default: true
  4330. },
  4331. {
  4332. name: "Megamacro",
  4333. height: math.unit(50, "miles")
  4334. },
  4335. {
  4336. name: "Gigamacro",
  4337. height: math.unit(100000, "miles")
  4338. },
  4339. {
  4340. name: "Full-Size",
  4341. height: math.unit(3000000000, "miles")
  4342. }
  4343. ]
  4344. ))
  4345. characterMakers.push(() => makeCharacter(
  4346. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4347. {
  4348. front: {
  4349. height: math.unit(2, "meter"),
  4350. weight: math.unit(80, "kg"),
  4351. name: "Front",
  4352. image: {
  4353. source: "./media/characters/natalya/front.svg"
  4354. }
  4355. },
  4356. back: {
  4357. height: math.unit(2, "meter"),
  4358. weight: math.unit(80, "kg"),
  4359. name: "Back",
  4360. image: {
  4361. source: "./media/characters/natalya/back.svg"
  4362. }
  4363. }
  4364. },
  4365. [
  4366. {
  4367. name: "Normal",
  4368. height: math.unit(150, "feet"),
  4369. default: true
  4370. },
  4371. {
  4372. name: "Megamacro",
  4373. height: math.unit(5, "miles")
  4374. },
  4375. {
  4376. name: "Full-Size",
  4377. height: math.unit(600, "kiloparsecs")
  4378. }
  4379. ]
  4380. ))
  4381. characterMakers.push(() => makeCharacter(
  4382. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4383. {
  4384. front: {
  4385. height: math.unit(2, "meter"),
  4386. weight: math.unit(50, "kg"),
  4387. name: "Front",
  4388. image: {
  4389. source: "./media/characters/erestrebah/front.svg",
  4390. extra: 1262/1162,
  4391. bottom: 96/1358
  4392. }
  4393. },
  4394. back: {
  4395. height: math.unit(2, "meter"),
  4396. weight: math.unit(50, "kg"),
  4397. name: "Back",
  4398. image: {
  4399. source: "./media/characters/erestrebah/back.svg",
  4400. extra: 1257/1139,
  4401. bottom: 13/1270
  4402. }
  4403. },
  4404. wing: {
  4405. height: math.unit(2, "meter"),
  4406. weight: math.unit(50, "kg"),
  4407. name: "Wing",
  4408. image: {
  4409. source: "./media/characters/erestrebah/wing.svg",
  4410. extra: 1262/1162,
  4411. bottom: 96/1358
  4412. }
  4413. },
  4414. mouth: {
  4415. height: math.unit(0.39, "feet"),
  4416. name: "Mouth",
  4417. image: {
  4418. source: "./media/characters/erestrebah/mouth.svg"
  4419. }
  4420. }
  4421. },
  4422. [
  4423. {
  4424. name: "Normal",
  4425. height: math.unit(10, "feet")
  4426. },
  4427. {
  4428. name: "Large",
  4429. height: math.unit(50, "feet"),
  4430. default: true
  4431. },
  4432. {
  4433. name: "Macro",
  4434. height: math.unit(300, "feet")
  4435. },
  4436. {
  4437. name: "Macro+",
  4438. height: math.unit(750, "feet")
  4439. },
  4440. {
  4441. name: "Megamacro",
  4442. height: math.unit(3, "miles")
  4443. }
  4444. ]
  4445. ))
  4446. characterMakers.push(() => makeCharacter(
  4447. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4448. {
  4449. front: {
  4450. height: math.unit(2, "meter"),
  4451. weight: math.unit(80, "kg"),
  4452. name: "Front",
  4453. image: {
  4454. source: "./media/characters/jennifer/front.svg",
  4455. bottom: 0.11,
  4456. extra: 1.16
  4457. }
  4458. },
  4459. frontAlt: {
  4460. height: math.unit(2, "meter"),
  4461. weight: math.unit(80, "kg"),
  4462. name: "Front (Alt)",
  4463. image: {
  4464. source: "./media/characters/jennifer/front-alt.svg"
  4465. }
  4466. }
  4467. },
  4468. [
  4469. {
  4470. name: "Canon Height",
  4471. height: math.unit(120, "feet"),
  4472. default: true
  4473. },
  4474. {
  4475. name: "Macro+",
  4476. height: math.unit(300, "feet")
  4477. },
  4478. {
  4479. name: "Megamacro",
  4480. height: math.unit(20000, "feet")
  4481. }
  4482. ]
  4483. ))
  4484. characterMakers.push(() => makeCharacter(
  4485. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4486. {
  4487. front: {
  4488. height: math.unit(2, "meter"),
  4489. weight: math.unit(50, "kg"),
  4490. name: "Front",
  4491. image: {
  4492. source: "./media/characters/kalista/front.svg",
  4493. extra: 1314/1145,
  4494. bottom: 101/1415
  4495. }
  4496. },
  4497. back: {
  4498. height: math.unit(2, "meter"),
  4499. weight: math.unit(50, "kg"),
  4500. name: "Back",
  4501. image: {
  4502. source: "./media/characters/kalista/back.svg",
  4503. extra: 1366 / 1156,
  4504. bottom: 33.9 / 1362.78
  4505. }
  4506. }
  4507. },
  4508. [
  4509. {
  4510. name: "Uncomfortably Small",
  4511. height: math.unit(10, "feet")
  4512. },
  4513. {
  4514. name: "Small",
  4515. height: math.unit(30, "feet")
  4516. },
  4517. {
  4518. name: "Macro",
  4519. height: math.unit(100, "feet"),
  4520. default: true
  4521. },
  4522. {
  4523. name: "Macro+",
  4524. height: math.unit(2000, "feet")
  4525. },
  4526. {
  4527. name: "True Form",
  4528. height: math.unit(8924, "miles")
  4529. }
  4530. ]
  4531. ))
  4532. characterMakers.push(() => makeCharacter(
  4533. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4534. {
  4535. front: {
  4536. height: math.unit(2, "meter"),
  4537. weight: math.unit(120, "kg"),
  4538. name: "Front",
  4539. image: {
  4540. source: "./media/characters/ggv/front.svg"
  4541. }
  4542. },
  4543. side: {
  4544. height: math.unit(2, "meter"),
  4545. weight: math.unit(120, "kg"),
  4546. name: "Side",
  4547. image: {
  4548. source: "./media/characters/ggv/side.svg"
  4549. }
  4550. }
  4551. },
  4552. [
  4553. {
  4554. name: "Extremely Puny",
  4555. height: math.unit(9 + 5 / 12, "feet")
  4556. },
  4557. {
  4558. name: "Horribly Small",
  4559. height: math.unit(47.7, "miles"),
  4560. default: true
  4561. },
  4562. {
  4563. name: "Reasonably Sized",
  4564. height: math.unit(25000, "parsecs")
  4565. },
  4566. {
  4567. name: "Slightly Uncompressed",
  4568. height: math.unit(7.77e31, "parsecs")
  4569. },
  4570. {
  4571. name: "Omniversal",
  4572. height: math.unit(1e300, "meters")
  4573. },
  4574. ]
  4575. ))
  4576. characterMakers.push(() => makeCharacter(
  4577. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4578. {
  4579. front: {
  4580. height: math.unit(2, "meter"),
  4581. weight: math.unit(75, "lb"),
  4582. name: "Front",
  4583. image: {
  4584. source: "./media/characters/napalm/front.svg"
  4585. }
  4586. },
  4587. back: {
  4588. height: math.unit(2, "meter"),
  4589. weight: math.unit(75, "lb"),
  4590. name: "Back",
  4591. image: {
  4592. source: "./media/characters/napalm/back.svg"
  4593. }
  4594. }
  4595. },
  4596. [
  4597. {
  4598. name: "Standard",
  4599. height: math.unit(55, "feet"),
  4600. default: true
  4601. }
  4602. ]
  4603. ))
  4604. characterMakers.push(() => makeCharacter(
  4605. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4606. {
  4607. front: {
  4608. height: math.unit(7 + 5 / 6, "feet"),
  4609. weight: math.unit(325, "lb"),
  4610. name: "Front",
  4611. image: {
  4612. source: "./media/characters/asana/front.svg",
  4613. extra: 1133 / 1060,
  4614. bottom: 15.2 / 1148.6
  4615. }
  4616. },
  4617. back: {
  4618. height: math.unit(7 + 5 / 6, "feet"),
  4619. weight: math.unit(325, "lb"),
  4620. name: "Back",
  4621. image: {
  4622. source: "./media/characters/asana/back.svg",
  4623. extra: 1114 / 1043,
  4624. bottom: 5 / 1120
  4625. }
  4626. },
  4627. dressedDark: {
  4628. height: math.unit(7 + 5 / 6, "feet"),
  4629. weight: math.unit(325, "lb"),
  4630. name: "Dressed (Dark)",
  4631. image: {
  4632. source: "./media/characters/asana/dressed-dark.svg",
  4633. extra: 1133 / 1060,
  4634. bottom: 15.2 / 1148.6
  4635. }
  4636. },
  4637. dressedLight: {
  4638. height: math.unit(7 + 5 / 6, "feet"),
  4639. weight: math.unit(325, "lb"),
  4640. name: "Dressed (Light)",
  4641. image: {
  4642. source: "./media/characters/asana/dressed-light.svg",
  4643. extra: 1133 / 1060,
  4644. bottom: 15.2 / 1148.6
  4645. }
  4646. },
  4647. },
  4648. [
  4649. {
  4650. name: "Standard",
  4651. height: math.unit(7 + 5 / 6, "feet"),
  4652. default: true
  4653. },
  4654. {
  4655. name: "Large",
  4656. height: math.unit(10, "meters")
  4657. },
  4658. {
  4659. name: "Macro",
  4660. height: math.unit(2500, "meters")
  4661. },
  4662. {
  4663. name: "Megamacro",
  4664. height: math.unit(5e6, "meters")
  4665. },
  4666. {
  4667. name: "Examacro",
  4668. height: math.unit(5e12, "lightyears")
  4669. },
  4670. {
  4671. name: "Max Size",
  4672. height: math.unit(1e31, "lightyears")
  4673. }
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4678. {
  4679. front: {
  4680. height: math.unit(2, "meter"),
  4681. weight: math.unit(60, "kg"),
  4682. name: "Front",
  4683. image: {
  4684. source: "./media/characters/ebony/front.svg",
  4685. bottom: 0.03,
  4686. extra: 1045 / 810 + 0.03
  4687. }
  4688. },
  4689. side: {
  4690. height: math.unit(2, "meter"),
  4691. weight: math.unit(60, "kg"),
  4692. name: "Side",
  4693. image: {
  4694. source: "./media/characters/ebony/side.svg",
  4695. bottom: 0.03,
  4696. extra: 1045 / 810 + 0.03
  4697. }
  4698. },
  4699. back: {
  4700. height: math.unit(2, "meter"),
  4701. weight: math.unit(60, "kg"),
  4702. name: "Back",
  4703. image: {
  4704. source: "./media/characters/ebony/back.svg",
  4705. bottom: 0.01,
  4706. extra: 1045 / 810 + 0.01
  4707. }
  4708. },
  4709. },
  4710. [
  4711. // TODO check why I did this lol
  4712. {
  4713. name: "Standard",
  4714. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4715. default: true
  4716. },
  4717. {
  4718. name: "Macro",
  4719. height: math.unit(200, "feet")
  4720. },
  4721. {
  4722. name: "Gigamacro",
  4723. height: math.unit(13000, "km")
  4724. }
  4725. ]
  4726. ))
  4727. characterMakers.push(() => makeCharacter(
  4728. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4729. {
  4730. front: {
  4731. height: math.unit(6, "feet"),
  4732. weight: math.unit(175, "lb"),
  4733. name: "Front",
  4734. image: {
  4735. source: "./media/characters/mountain/front.svg",
  4736. extra: 972 / 955,
  4737. bottom: 64 / 1036.6
  4738. }
  4739. },
  4740. back: {
  4741. height: math.unit(6, "feet"),
  4742. weight: math.unit(175, "lb"),
  4743. name: "Back",
  4744. image: {
  4745. source: "./media/characters/mountain/back.svg",
  4746. extra: 970 / 950,
  4747. bottom: 28.25 / 999
  4748. }
  4749. },
  4750. },
  4751. [
  4752. {
  4753. name: "Large",
  4754. height: math.unit(20, "meters")
  4755. },
  4756. {
  4757. name: "Macro",
  4758. height: math.unit(300, "meters")
  4759. },
  4760. {
  4761. name: "Gigamacro",
  4762. height: math.unit(10000, "km"),
  4763. default: true
  4764. },
  4765. {
  4766. name: "Examacro",
  4767. height: math.unit(10e9, "lightyears")
  4768. }
  4769. ]
  4770. ))
  4771. characterMakers.push(() => makeCharacter(
  4772. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4773. {
  4774. front: {
  4775. height: math.unit(8, "feet"),
  4776. weight: math.unit(500, "lb"),
  4777. name: "Front",
  4778. image: {
  4779. source: "./media/characters/rick/front.svg"
  4780. }
  4781. }
  4782. },
  4783. [
  4784. {
  4785. name: "Normal",
  4786. height: math.unit(8, "feet"),
  4787. default: true
  4788. },
  4789. {
  4790. name: "Macro",
  4791. height: math.unit(5, "km")
  4792. }
  4793. ]
  4794. ))
  4795. characterMakers.push(() => makeCharacter(
  4796. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4797. {
  4798. front: {
  4799. height: math.unit(8, "feet"),
  4800. weight: math.unit(120, "lb"),
  4801. name: "Front",
  4802. image: {
  4803. source: "./media/characters/ona/front.svg"
  4804. }
  4805. },
  4806. frontAlt: {
  4807. height: math.unit(8, "feet"),
  4808. weight: math.unit(120, "lb"),
  4809. name: "Front (Alt)",
  4810. image: {
  4811. source: "./media/characters/ona/front-alt.svg"
  4812. }
  4813. },
  4814. back: {
  4815. height: math.unit(8, "feet"),
  4816. weight: math.unit(120, "lb"),
  4817. name: "Back",
  4818. image: {
  4819. source: "./media/characters/ona/back.svg"
  4820. }
  4821. },
  4822. foot: {
  4823. height: math.unit(1.1, "feet"),
  4824. name: "Foot",
  4825. image: {
  4826. source: "./media/characters/ona/foot.svg"
  4827. }
  4828. }
  4829. },
  4830. [
  4831. {
  4832. name: "Megamacro",
  4833. height: math.unit(70, "km"),
  4834. default: true
  4835. },
  4836. {
  4837. name: "Gigamacro",
  4838. height: math.unit(681818, "miles")
  4839. },
  4840. {
  4841. name: "Examacro",
  4842. height: math.unit(3800000, "lightyears")
  4843. },
  4844. ]
  4845. ))
  4846. characterMakers.push(() => makeCharacter(
  4847. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4848. {
  4849. front: {
  4850. height: math.unit(12, "feet"),
  4851. weight: math.unit(3000, "lb"),
  4852. name: "Front",
  4853. image: {
  4854. source: "./media/characters/mech/front.svg",
  4855. extra: 2900 / 2770,
  4856. bottom: 110 / 3010
  4857. }
  4858. },
  4859. back: {
  4860. height: math.unit(12, "feet"),
  4861. weight: math.unit(3000, "lb"),
  4862. name: "Back",
  4863. image: {
  4864. source: "./media/characters/mech/back.svg",
  4865. extra: 3011 / 2890,
  4866. bottom: 94 / 3105
  4867. }
  4868. },
  4869. maw: {
  4870. height: math.unit(3.07, "feet"),
  4871. name: "Maw",
  4872. image: {
  4873. source: "./media/characters/mech/maw.svg"
  4874. }
  4875. },
  4876. head: {
  4877. height: math.unit(3.07, "feet"),
  4878. name: "Head",
  4879. image: {
  4880. source: "./media/characters/mech/head.svg"
  4881. }
  4882. },
  4883. dick: {
  4884. height: math.unit(1.43, "feet"),
  4885. name: "Dick",
  4886. image: {
  4887. source: "./media/characters/mech/dick.svg"
  4888. }
  4889. },
  4890. },
  4891. [
  4892. {
  4893. name: "Normal",
  4894. height: math.unit(12, "feet")
  4895. },
  4896. {
  4897. name: "Macro",
  4898. height: math.unit(300, "feet"),
  4899. default: true
  4900. },
  4901. {
  4902. name: "Macro+",
  4903. height: math.unit(1500, "feet")
  4904. },
  4905. ]
  4906. ))
  4907. characterMakers.push(() => makeCharacter(
  4908. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4909. {
  4910. front: {
  4911. height: math.unit(1.3, "meter"),
  4912. weight: math.unit(30, "kg"),
  4913. name: "Front",
  4914. image: {
  4915. source: "./media/characters/gregory/front.svg",
  4916. }
  4917. }
  4918. },
  4919. [
  4920. {
  4921. name: "Normal",
  4922. height: math.unit(1.3, "meter"),
  4923. default: true
  4924. },
  4925. {
  4926. name: "Macro",
  4927. height: math.unit(20, "meter")
  4928. }
  4929. ]
  4930. ))
  4931. characterMakers.push(() => makeCharacter(
  4932. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4933. {
  4934. front: {
  4935. height: math.unit(2.8, "meter"),
  4936. weight: math.unit(200, "kg"),
  4937. name: "Front",
  4938. image: {
  4939. source: "./media/characters/elory/front.svg",
  4940. }
  4941. }
  4942. },
  4943. [
  4944. {
  4945. name: "Normal",
  4946. height: math.unit(2.8, "meter"),
  4947. default: true
  4948. },
  4949. {
  4950. name: "Macro",
  4951. height: math.unit(38, "meter")
  4952. }
  4953. ]
  4954. ))
  4955. characterMakers.push(() => makeCharacter(
  4956. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4957. {
  4958. front: {
  4959. height: math.unit(470, "feet"),
  4960. weight: math.unit(924, "tons"),
  4961. name: "Front",
  4962. image: {
  4963. source: "./media/characters/angelpatamon/front.svg",
  4964. }
  4965. }
  4966. },
  4967. [
  4968. {
  4969. name: "Normal",
  4970. height: math.unit(470, "feet"),
  4971. default: true
  4972. },
  4973. {
  4974. name: "Deity Size I",
  4975. height: math.unit(28651.2, "km")
  4976. },
  4977. {
  4978. name: "Deity Size II",
  4979. height: math.unit(171907.2, "km")
  4980. }
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4985. {
  4986. side: {
  4987. height: math.unit(7.2, "meter"),
  4988. weight: math.unit(8.2, "tons"),
  4989. name: "Side",
  4990. image: {
  4991. source: "./media/characters/cryae/side.svg",
  4992. extra: 3500 / 1500
  4993. }
  4994. }
  4995. },
  4996. [
  4997. {
  4998. name: "Normal",
  4999. height: math.unit(7.2, "meter"),
  5000. default: true
  5001. }
  5002. ]
  5003. ))
  5004. characterMakers.push(() => makeCharacter(
  5005. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5006. {
  5007. front: {
  5008. height: math.unit(6, "feet"),
  5009. weight: math.unit(175, "lb"),
  5010. name: "Front",
  5011. image: {
  5012. source: "./media/characters/xera/front.svg",
  5013. extra: 2377 / 1972,
  5014. bottom: 75.5 / 2452
  5015. }
  5016. },
  5017. side: {
  5018. height: math.unit(6, "feet"),
  5019. weight: math.unit(175, "lb"),
  5020. name: "Side",
  5021. image: {
  5022. source: "./media/characters/xera/side.svg",
  5023. extra: 2345 / 2019,
  5024. bottom: 39.7 / 2384
  5025. }
  5026. },
  5027. back: {
  5028. height: math.unit(6, "feet"),
  5029. weight: math.unit(175, "lb"),
  5030. name: "Back",
  5031. image: {
  5032. source: "./media/characters/xera/back.svg",
  5033. extra: 2095 / 1984,
  5034. bottom: 67 / 2166
  5035. }
  5036. },
  5037. },
  5038. [
  5039. {
  5040. name: "Small",
  5041. height: math.unit(10, "feet")
  5042. },
  5043. {
  5044. name: "Macro",
  5045. height: math.unit(500, "meters"),
  5046. default: true
  5047. },
  5048. {
  5049. name: "Macro+",
  5050. height: math.unit(10, "km")
  5051. },
  5052. {
  5053. name: "Gigamacro",
  5054. height: math.unit(25000, "km")
  5055. },
  5056. {
  5057. name: "Teramacro",
  5058. height: math.unit(3e6, "km")
  5059. }
  5060. ]
  5061. ))
  5062. characterMakers.push(() => makeCharacter(
  5063. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5064. {
  5065. front: {
  5066. height: math.unit(6, "feet"),
  5067. weight: math.unit(175, "lb"),
  5068. name: "Front",
  5069. image: {
  5070. source: "./media/characters/nebula/front.svg",
  5071. extra: 2566 / 2362,
  5072. bottom: 81 / 2644
  5073. }
  5074. }
  5075. },
  5076. [
  5077. {
  5078. name: "Small",
  5079. height: math.unit(4.5, "meters")
  5080. },
  5081. {
  5082. name: "Macro",
  5083. height: math.unit(1500, "meters"),
  5084. default: true
  5085. },
  5086. {
  5087. name: "Megamacro",
  5088. height: math.unit(150, "km")
  5089. },
  5090. {
  5091. name: "Gigamacro",
  5092. height: math.unit(27000, "km")
  5093. }
  5094. ]
  5095. ))
  5096. characterMakers.push(() => makeCharacter(
  5097. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5098. {
  5099. front: {
  5100. height: math.unit(6, "feet"),
  5101. weight: math.unit(225, "lb"),
  5102. name: "Front",
  5103. image: {
  5104. source: "./media/characters/abysgar/front.svg",
  5105. extra: 1739/1614,
  5106. bottom: 71/1810
  5107. }
  5108. },
  5109. frontNsfw: {
  5110. height: math.unit(6, "feet"),
  5111. weight: math.unit(225, "lb"),
  5112. name: "Front (NSFW)",
  5113. image: {
  5114. source: "./media/characters/abysgar/front-nsfw.svg",
  5115. extra: 1739/1614,
  5116. bottom: 71/1810
  5117. }
  5118. },
  5119. back: {
  5120. height: math.unit(4.6, "feet"),
  5121. weight: math.unit(225, "lb"),
  5122. name: "Back",
  5123. image: {
  5124. source: "./media/characters/abysgar/back.svg",
  5125. extra: 1384/1327,
  5126. bottom: 0/1384
  5127. }
  5128. },
  5129. head: {
  5130. height: math.unit(1.25, "feet"),
  5131. name: "Head",
  5132. image: {
  5133. source: "./media/characters/abysgar/head.svg",
  5134. extra: 669/569,
  5135. bottom: 0/669
  5136. }
  5137. },
  5138. },
  5139. [
  5140. {
  5141. name: "Small",
  5142. height: math.unit(4.5, "meters")
  5143. },
  5144. {
  5145. name: "Macro",
  5146. height: math.unit(1250, "meters"),
  5147. default: true
  5148. },
  5149. {
  5150. name: "Megamacro",
  5151. height: math.unit(125, "km")
  5152. },
  5153. {
  5154. name: "Gigamacro",
  5155. height: math.unit(26000, "km")
  5156. }
  5157. ]
  5158. ))
  5159. characterMakers.push(() => makeCharacter(
  5160. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5161. {
  5162. front: {
  5163. height: math.unit(6, "feet"),
  5164. weight: math.unit(180, "lb"),
  5165. name: "Front",
  5166. image: {
  5167. source: "./media/characters/yakuz/front.svg"
  5168. }
  5169. }
  5170. },
  5171. [
  5172. {
  5173. name: "Small",
  5174. height: math.unit(5, "meters")
  5175. },
  5176. {
  5177. name: "Macro",
  5178. height: math.unit(1500, "meters"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Megamacro",
  5183. height: math.unit(200, "km")
  5184. },
  5185. {
  5186. name: "Gigamacro",
  5187. height: math.unit(100000, "km")
  5188. }
  5189. ]
  5190. ))
  5191. characterMakers.push(() => makeCharacter(
  5192. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5193. {
  5194. front: {
  5195. height: math.unit(6, "feet"),
  5196. weight: math.unit(175, "lb"),
  5197. name: "Front",
  5198. image: {
  5199. source: "./media/characters/mirova/front.svg",
  5200. extra: 3334 / 3071,
  5201. bottom: 42 / 3375.6
  5202. }
  5203. }
  5204. },
  5205. [
  5206. {
  5207. name: "Small",
  5208. height: math.unit(5, "meters")
  5209. },
  5210. {
  5211. name: "Macro",
  5212. height: math.unit(900, "meters"),
  5213. default: true
  5214. },
  5215. {
  5216. name: "Megamacro",
  5217. height: math.unit(135, "km")
  5218. },
  5219. {
  5220. name: "Gigamacro",
  5221. height: math.unit(20000, "km")
  5222. }
  5223. ]
  5224. ))
  5225. characterMakers.push(() => makeCharacter(
  5226. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5227. {
  5228. side: {
  5229. height: math.unit(28.35, "feet"),
  5230. weight: math.unit(99.75, "tons"),
  5231. name: "Side",
  5232. image: {
  5233. source: "./media/characters/asana-mech/side.svg",
  5234. extra: 923 / 699,
  5235. bottom: 50 / 975
  5236. }
  5237. },
  5238. chaingun: {
  5239. height: math.unit(7, "feet"),
  5240. weight: math.unit(2400, "lb"),
  5241. name: "Chaingun",
  5242. image: {
  5243. source: "./media/characters/asana-mech/chaingun.svg"
  5244. }
  5245. },
  5246. laser: {
  5247. height: math.unit(7.12, "feet"),
  5248. weight: math.unit(2000, "lb"),
  5249. name: "Laser",
  5250. image: {
  5251. source: "./media/characters/asana-mech/laser.svg"
  5252. }
  5253. },
  5254. },
  5255. [
  5256. {
  5257. name: "Normal",
  5258. height: math.unit(28.35, "feet"),
  5259. default: true
  5260. },
  5261. {
  5262. name: "Macro",
  5263. height: math.unit(2500, "feet")
  5264. },
  5265. {
  5266. name: "Megamacro",
  5267. height: math.unit(25, "miles")
  5268. },
  5269. {
  5270. name: "Examacro",
  5271. height: math.unit(6e8, "lightyears")
  5272. },
  5273. ]
  5274. ))
  5275. characterMakers.push(() => makeCharacter(
  5276. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5277. {
  5278. front: {
  5279. height: math.unit(5, "meters"),
  5280. weight: math.unit(1000, "kg"),
  5281. name: "Front",
  5282. image: {
  5283. source: "./media/characters/asche/front.svg",
  5284. extra: 1258 / 1190,
  5285. bottom: 47 / 1305
  5286. }
  5287. },
  5288. frontUnderwear: {
  5289. height: math.unit(5, "meters"),
  5290. weight: math.unit(1000, "kg"),
  5291. name: "Front (Underwear)",
  5292. image: {
  5293. source: "./media/characters/asche/front-underwear.svg",
  5294. extra: 1258 / 1190,
  5295. bottom: 47 / 1305
  5296. }
  5297. },
  5298. frontDressed: {
  5299. height: math.unit(5, "meters"),
  5300. weight: math.unit(1000, "kg"),
  5301. name: "Front (Dressed)",
  5302. image: {
  5303. source: "./media/characters/asche/front-dressed.svg",
  5304. extra: 1258 / 1190,
  5305. bottom: 47 / 1305
  5306. }
  5307. },
  5308. frontArmor: {
  5309. height: math.unit(5, "meters"),
  5310. weight: math.unit(1000, "kg"),
  5311. name: "Front (Armored)",
  5312. image: {
  5313. source: "./media/characters/asche/front-armored.svg",
  5314. extra: 1374 / 1308,
  5315. bottom: 23 / 1397
  5316. }
  5317. },
  5318. mp724: {
  5319. height: math.unit(0.96, "meters"),
  5320. weight: math.unit(38, "kg"),
  5321. name: "H&K MP724",
  5322. image: {
  5323. source: "./media/characters/asche/h&k-mp724.svg"
  5324. }
  5325. },
  5326. side: {
  5327. height: math.unit(5, "meters"),
  5328. weight: math.unit(1000, "kg"),
  5329. name: "Side",
  5330. image: {
  5331. source: "./media/characters/asche/side.svg",
  5332. extra: 1717 / 1609,
  5333. bottom: 0.005
  5334. }
  5335. },
  5336. back: {
  5337. height: math.unit(5, "meters"),
  5338. weight: math.unit(1000, "kg"),
  5339. name: "Back",
  5340. image: {
  5341. source: "./media/characters/asche/back.svg",
  5342. extra: 1570 / 1501
  5343. }
  5344. },
  5345. },
  5346. [
  5347. {
  5348. name: "DEFCON 5",
  5349. height: math.unit(5, "meters")
  5350. },
  5351. {
  5352. name: "DEFCON 4",
  5353. height: math.unit(500, "meters"),
  5354. default: true
  5355. },
  5356. {
  5357. name: "DEFCON 3",
  5358. height: math.unit(5, "km")
  5359. },
  5360. {
  5361. name: "DEFCON 2",
  5362. height: math.unit(500, "km")
  5363. },
  5364. {
  5365. name: "DEFCON 1",
  5366. height: math.unit(500000, "km")
  5367. },
  5368. {
  5369. name: "DEFCON 0",
  5370. height: math.unit(3, "gigaparsecs")
  5371. },
  5372. ]
  5373. ))
  5374. characterMakers.push(() => makeCharacter(
  5375. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5376. {
  5377. front: {
  5378. height: math.unit(7, "feet"),
  5379. weight: math.unit(92.7, "kg"),
  5380. name: "Front",
  5381. image: {
  5382. source: "./media/characters/gale/front.svg",
  5383. extra: 977/919,
  5384. bottom: 105/1082
  5385. }
  5386. },
  5387. side: {
  5388. height: math.unit(6.7, "feet"),
  5389. weight: math.unit(92.7, "kg"),
  5390. name: "Side",
  5391. image: {
  5392. source: "./media/characters/gale/side.svg",
  5393. extra: 978/922,
  5394. bottom: 140/1118
  5395. }
  5396. },
  5397. back: {
  5398. height: math.unit(7, "feet"),
  5399. weight: math.unit(92.7, "kg"),
  5400. name: "Back",
  5401. image: {
  5402. source: "./media/characters/gale/back.svg",
  5403. extra: 966/920,
  5404. bottom: 61/1027
  5405. }
  5406. },
  5407. maw: {
  5408. height: math.unit(2.23, "feet"),
  5409. name: "Maw",
  5410. image: {
  5411. source: "./media/characters/gale/maw.svg"
  5412. }
  5413. },
  5414. foot: {
  5415. height: math.unit(2.1, "feet"),
  5416. name: "Foot",
  5417. image: {
  5418. source: "./media/characters/gale/foot.svg"
  5419. }
  5420. },
  5421. },
  5422. [
  5423. {
  5424. name: "Normal",
  5425. height: math.unit(7, "feet")
  5426. },
  5427. {
  5428. name: "Macro",
  5429. height: math.unit(150, "feet"),
  5430. default: true
  5431. },
  5432. {
  5433. name: "Macro+",
  5434. height: math.unit(300, "feet")
  5435. },
  5436. ]
  5437. ))
  5438. characterMakers.push(() => makeCharacter(
  5439. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5440. {
  5441. front: {
  5442. height: math.unit(5 + 10/12, "feet"),
  5443. weight: math.unit(67, "kg"),
  5444. name: "Front",
  5445. image: {
  5446. source: "./media/characters/draylen/front.svg",
  5447. extra: 832/777,
  5448. bottom: 85/917
  5449. }
  5450. }
  5451. },
  5452. [
  5453. {
  5454. name: "Normal",
  5455. height: math.unit(5 + 10/12, "feet")
  5456. },
  5457. {
  5458. name: "Macro",
  5459. height: math.unit(150, "feet"),
  5460. default: true
  5461. }
  5462. ]
  5463. ))
  5464. characterMakers.push(() => makeCharacter(
  5465. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5466. {
  5467. front: {
  5468. height: math.unit(7 + 9 / 12, "feet"),
  5469. weight: math.unit(379, "lbs"),
  5470. name: "Front",
  5471. image: {
  5472. source: "./media/characters/chez/front.svg"
  5473. }
  5474. },
  5475. side: {
  5476. height: math.unit(7 + 9 / 12, "feet"),
  5477. weight: math.unit(379, "lbs"),
  5478. name: "Side",
  5479. image: {
  5480. source: "./media/characters/chez/side.svg"
  5481. }
  5482. }
  5483. },
  5484. [
  5485. {
  5486. name: "Normal",
  5487. height: math.unit(7 + 9 / 12, "feet"),
  5488. default: true
  5489. },
  5490. {
  5491. name: "God King",
  5492. height: math.unit(9750000, "meters")
  5493. }
  5494. ]
  5495. ))
  5496. characterMakers.push(() => makeCharacter(
  5497. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5498. {
  5499. front: {
  5500. height: math.unit(6, "feet"),
  5501. weight: math.unit(275, "lbs"),
  5502. name: "Front",
  5503. image: {
  5504. source: "./media/characters/kaylum/front.svg",
  5505. bottom: 0.01,
  5506. extra: 1166 / 1031
  5507. }
  5508. },
  5509. frontWingless: {
  5510. height: math.unit(6, "feet"),
  5511. weight: math.unit(275, "lbs"),
  5512. name: "Front (Wingless)",
  5513. image: {
  5514. source: "./media/characters/kaylum/front-wingless.svg",
  5515. bottom: 0.01,
  5516. extra: 1117 / 1031
  5517. }
  5518. }
  5519. },
  5520. [
  5521. {
  5522. name: "Normal",
  5523. height: math.unit(3.05, "meters")
  5524. },
  5525. {
  5526. name: "Master",
  5527. height: math.unit(5.5, "meters")
  5528. },
  5529. {
  5530. name: "Rampage",
  5531. height: math.unit(19, "meters")
  5532. },
  5533. {
  5534. name: "Macro Lite",
  5535. height: math.unit(37, "meters")
  5536. },
  5537. {
  5538. name: "Hyper Predator",
  5539. height: math.unit(61, "meters")
  5540. },
  5541. {
  5542. name: "Macro",
  5543. height: math.unit(138, "meters"),
  5544. default: true
  5545. }
  5546. ]
  5547. ))
  5548. characterMakers.push(() => makeCharacter(
  5549. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5550. {
  5551. front: {
  5552. height: math.unit(5 + 5 / 12, "feet"),
  5553. weight: math.unit(120, "lbs"),
  5554. name: "Front",
  5555. image: {
  5556. source: "./media/characters/geta/front.svg",
  5557. extra: 1003/933,
  5558. bottom: 21/1024
  5559. }
  5560. },
  5561. paw: {
  5562. height: math.unit(0.35, "feet"),
  5563. name: "Paw",
  5564. image: {
  5565. source: "./media/characters/geta/paw.svg"
  5566. }
  5567. },
  5568. },
  5569. [
  5570. {
  5571. name: "Micro",
  5572. height: math.unit(3, "inches"),
  5573. default: true
  5574. },
  5575. {
  5576. name: "Normal",
  5577. height: math.unit(5 + 5 / 12, "feet")
  5578. }
  5579. ]
  5580. ))
  5581. characterMakers.push(() => makeCharacter(
  5582. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5583. {
  5584. front: {
  5585. height: math.unit(6, "feet"),
  5586. weight: math.unit(300, "lbs"),
  5587. name: "Front",
  5588. image: {
  5589. source: "./media/characters/tyrnn/front.svg"
  5590. }
  5591. }
  5592. },
  5593. [
  5594. {
  5595. name: "Main Height",
  5596. height: math.unit(355, "feet"),
  5597. default: true
  5598. },
  5599. {
  5600. name: "Fave. Height",
  5601. height: math.unit(2400, "feet")
  5602. }
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5607. {
  5608. front: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(300, "lbs"),
  5611. name: "Front",
  5612. image: {
  5613. source: "./media/characters/appledectomy/front.svg"
  5614. }
  5615. }
  5616. },
  5617. [
  5618. {
  5619. name: "Macro",
  5620. height: math.unit(2500, "feet")
  5621. },
  5622. {
  5623. name: "Megamacro",
  5624. height: math.unit(50, "miles"),
  5625. default: true
  5626. },
  5627. {
  5628. name: "Gigamacro",
  5629. height: math.unit(5000, "miles")
  5630. },
  5631. {
  5632. name: "Teramacro",
  5633. height: math.unit(250000, "miles")
  5634. },
  5635. ]
  5636. ))
  5637. characterMakers.push(() => makeCharacter(
  5638. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5639. {
  5640. front: {
  5641. height: math.unit(6, "feet"),
  5642. weight: math.unit(200, "lbs"),
  5643. name: "Front",
  5644. image: {
  5645. source: "./media/characters/vulpes/front.svg",
  5646. extra: 573 / 543,
  5647. bottom: 0.033
  5648. }
  5649. },
  5650. side: {
  5651. height: math.unit(6, "feet"),
  5652. weight: math.unit(200, "lbs"),
  5653. name: "Side",
  5654. image: {
  5655. source: "./media/characters/vulpes/side.svg",
  5656. extra: 577 / 549,
  5657. bottom: 11 / 588
  5658. }
  5659. },
  5660. back: {
  5661. height: math.unit(6, "feet"),
  5662. weight: math.unit(200, "lbs"),
  5663. name: "Back",
  5664. image: {
  5665. source: "./media/characters/vulpes/back.svg",
  5666. extra: 573 / 549,
  5667. bottom: 20 / 593
  5668. }
  5669. },
  5670. feet: {
  5671. height: math.unit(1.276, "feet"),
  5672. name: "Feet",
  5673. image: {
  5674. source: "./media/characters/vulpes/feet.svg"
  5675. }
  5676. },
  5677. maw: {
  5678. height: math.unit(1.18, "feet"),
  5679. name: "Maw",
  5680. image: {
  5681. source: "./media/characters/vulpes/maw.svg"
  5682. }
  5683. },
  5684. },
  5685. [
  5686. {
  5687. name: "Micro",
  5688. height: math.unit(2, "inches")
  5689. },
  5690. {
  5691. name: "Normal",
  5692. height: math.unit(6.3, "feet")
  5693. },
  5694. {
  5695. name: "Macro",
  5696. height: math.unit(850, "feet")
  5697. },
  5698. {
  5699. name: "Megamacro",
  5700. height: math.unit(7500, "feet"),
  5701. default: true
  5702. },
  5703. {
  5704. name: "Gigamacro",
  5705. height: math.unit(570000, "miles")
  5706. }
  5707. ]
  5708. ))
  5709. characterMakers.push(() => makeCharacter(
  5710. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5711. {
  5712. front: {
  5713. height: math.unit(6, "feet"),
  5714. weight: math.unit(210, "lbs"),
  5715. name: "Front",
  5716. image: {
  5717. source: "./media/characters/rain-fallen/front.svg"
  5718. }
  5719. },
  5720. side: {
  5721. height: math.unit(6, "feet"),
  5722. weight: math.unit(210, "lbs"),
  5723. name: "Side",
  5724. image: {
  5725. source: "./media/characters/rain-fallen/side.svg"
  5726. }
  5727. },
  5728. back: {
  5729. height: math.unit(6, "feet"),
  5730. weight: math.unit(210, "lbs"),
  5731. name: "Back",
  5732. image: {
  5733. source: "./media/characters/rain-fallen/back.svg"
  5734. }
  5735. },
  5736. feral: {
  5737. height: math.unit(9, "feet"),
  5738. weight: math.unit(700, "lbs"),
  5739. name: "Feral",
  5740. image: {
  5741. source: "./media/characters/rain-fallen/feral.svg"
  5742. }
  5743. },
  5744. },
  5745. [
  5746. {
  5747. name: "Meddling with Mortals",
  5748. height: math.unit(8 + 8/12, "feet")
  5749. },
  5750. {
  5751. name: "Normal",
  5752. height: math.unit(5, "meter")
  5753. },
  5754. {
  5755. name: "Macro",
  5756. height: math.unit(150, "meter"),
  5757. default: true
  5758. },
  5759. {
  5760. name: "Megamacro",
  5761. height: math.unit(278e6, "meter")
  5762. },
  5763. {
  5764. name: "Gigamacro",
  5765. height: math.unit(2e9, "meter")
  5766. },
  5767. {
  5768. name: "Teramacro",
  5769. height: math.unit(8e12, "meter")
  5770. },
  5771. {
  5772. name: "Devourer",
  5773. height: math.unit(14, "zettameters")
  5774. },
  5775. {
  5776. name: "Scarlet King",
  5777. height: math.unit(18, "yottameters")
  5778. },
  5779. {
  5780. name: "Void",
  5781. height: math.unit(1e88, "yottameters")
  5782. }
  5783. ]
  5784. ))
  5785. characterMakers.push(() => makeCharacter(
  5786. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5787. {
  5788. standing: {
  5789. height: math.unit(6, "feet"),
  5790. weight: math.unit(180, "lbs"),
  5791. name: "Standing",
  5792. image: {
  5793. source: "./media/characters/zaakira/standing.svg",
  5794. extra: 1599/1504,
  5795. bottom: 39/1638
  5796. }
  5797. },
  5798. laying: {
  5799. height: math.unit(3.3, "feet"),
  5800. weight: math.unit(180, "lbs"),
  5801. name: "Laying",
  5802. image: {
  5803. source: "./media/characters/zaakira/laying.svg"
  5804. }
  5805. },
  5806. },
  5807. [
  5808. {
  5809. name: "Normal",
  5810. height: math.unit(12, "feet")
  5811. },
  5812. {
  5813. name: "Macro",
  5814. height: math.unit(279, "feet"),
  5815. default: true
  5816. }
  5817. ]
  5818. ))
  5819. characterMakers.push(() => makeCharacter(
  5820. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5821. {
  5822. femSfw: {
  5823. height: math.unit(8, "feet"),
  5824. weight: math.unit(350, "lb"),
  5825. name: "Fem",
  5826. image: {
  5827. source: "./media/characters/sigvald/fem-sfw.svg",
  5828. extra: 182 / 164,
  5829. bottom: 8.7 / 190.5
  5830. }
  5831. },
  5832. femNsfw: {
  5833. height: math.unit(8, "feet"),
  5834. weight: math.unit(350, "lb"),
  5835. name: "Fem (NSFW)",
  5836. image: {
  5837. source: "./media/characters/sigvald/fem-nsfw.svg",
  5838. extra: 182 / 164,
  5839. bottom: 8.7 / 190.5
  5840. }
  5841. },
  5842. maleNsfw: {
  5843. height: math.unit(8, "feet"),
  5844. weight: math.unit(350, "lb"),
  5845. name: "Male (NSFW)",
  5846. image: {
  5847. source: "./media/characters/sigvald/male-nsfw.svg",
  5848. extra: 182 / 164,
  5849. bottom: 8.7 / 190.5
  5850. }
  5851. },
  5852. hermNsfw: {
  5853. height: math.unit(8, "feet"),
  5854. weight: math.unit(350, "lb"),
  5855. name: "Herm (NSFW)",
  5856. image: {
  5857. source: "./media/characters/sigvald/herm-nsfw.svg",
  5858. extra: 182 / 164,
  5859. bottom: 8.7 / 190.5
  5860. }
  5861. },
  5862. dick: {
  5863. height: math.unit(2.36, "feet"),
  5864. name: "Dick",
  5865. image: {
  5866. source: "./media/characters/sigvald/dick.svg"
  5867. }
  5868. },
  5869. eye: {
  5870. height: math.unit(0.31, "feet"),
  5871. name: "Eye",
  5872. image: {
  5873. source: "./media/characters/sigvald/eye.svg"
  5874. }
  5875. },
  5876. mouth: {
  5877. height: math.unit(0.92, "feet"),
  5878. name: "Mouth",
  5879. image: {
  5880. source: "./media/characters/sigvald/mouth.svg"
  5881. }
  5882. },
  5883. paws: {
  5884. height: math.unit(2.2, "feet"),
  5885. name: "Paws",
  5886. image: {
  5887. source: "./media/characters/sigvald/paws.svg"
  5888. }
  5889. }
  5890. },
  5891. [
  5892. {
  5893. name: "Normal",
  5894. height: math.unit(8, "feet")
  5895. },
  5896. {
  5897. name: "Large",
  5898. height: math.unit(12, "feet")
  5899. },
  5900. {
  5901. name: "Larger",
  5902. height: math.unit(20, "feet")
  5903. },
  5904. {
  5905. name: "Macro",
  5906. height: math.unit(150, "feet")
  5907. },
  5908. {
  5909. name: "Macro+",
  5910. height: math.unit(200, "feet"),
  5911. default: true
  5912. },
  5913. ]
  5914. ))
  5915. characterMakers.push(() => makeCharacter(
  5916. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5917. {
  5918. side: {
  5919. height: math.unit(12, "feet"),
  5920. weight: math.unit(2000, "kg"),
  5921. name: "Side",
  5922. image: {
  5923. source: "./media/characters/scott/side.svg",
  5924. extra: 754 / 724,
  5925. bottom: 0.069
  5926. }
  5927. },
  5928. upright: {
  5929. height: math.unit(12, "feet"),
  5930. weight: math.unit(2000, "kg"),
  5931. name: "Upright",
  5932. image: {
  5933. source: "./media/characters/scott/upright.svg",
  5934. extra: 3881 / 3722,
  5935. bottom: 0.05
  5936. }
  5937. },
  5938. },
  5939. [
  5940. {
  5941. name: "Normal",
  5942. height: math.unit(12, "feet"),
  5943. default: true
  5944. },
  5945. ]
  5946. ))
  5947. characterMakers.push(() => makeCharacter(
  5948. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5949. {
  5950. side: {
  5951. height: math.unit(8, "meters"),
  5952. weight: math.unit(84755, "lbs"),
  5953. name: "Side",
  5954. image: {
  5955. source: "./media/characters/tobias/side.svg",
  5956. extra: 1474 / 1096,
  5957. bottom: 38.9 / 1513.1235
  5958. }
  5959. },
  5960. },
  5961. [
  5962. {
  5963. name: "Normal",
  5964. height: math.unit(8, "meters"),
  5965. default: true
  5966. },
  5967. ]
  5968. ))
  5969. characterMakers.push(() => makeCharacter(
  5970. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5971. {
  5972. front: {
  5973. height: math.unit(5.5, "feet"),
  5974. weight: math.unit(400, "lbs"),
  5975. name: "Front",
  5976. image: {
  5977. source: "./media/characters/kieran/front.svg",
  5978. extra: 2694 / 2364,
  5979. bottom: 217 / 2908
  5980. }
  5981. },
  5982. side: {
  5983. height: math.unit(5.5, "feet"),
  5984. weight: math.unit(400, "lbs"),
  5985. name: "Side",
  5986. image: {
  5987. source: "./media/characters/kieran/side.svg",
  5988. extra: 875 / 777,
  5989. bottom: 84.6 / 959
  5990. }
  5991. },
  5992. },
  5993. [
  5994. {
  5995. name: "Normal",
  5996. height: math.unit(5.5, "feet"),
  5997. default: true
  5998. },
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6003. {
  6004. side: {
  6005. height: math.unit(2, "meters"),
  6006. weight: math.unit(70, "kg"),
  6007. name: "Side",
  6008. image: {
  6009. source: "./media/characters/sanya/side.svg",
  6010. bottom: 0.02,
  6011. extra: 1.02
  6012. }
  6013. },
  6014. },
  6015. [
  6016. {
  6017. name: "Small",
  6018. height: math.unit(2, "meters")
  6019. },
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(3, "meters")
  6023. },
  6024. {
  6025. name: "Macro",
  6026. height: math.unit(16, "meters"),
  6027. default: true
  6028. },
  6029. ]
  6030. ))
  6031. characterMakers.push(() => makeCharacter(
  6032. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6033. {
  6034. front: {
  6035. height: math.unit(2, "meters"),
  6036. weight: math.unit(120, "kg"),
  6037. name: "Front",
  6038. image: {
  6039. source: "./media/characters/miranda/front.svg",
  6040. extra: 195 / 185,
  6041. bottom: 10.9 / 206.5
  6042. }
  6043. },
  6044. back: {
  6045. height: math.unit(2, "meters"),
  6046. weight: math.unit(120, "kg"),
  6047. name: "Back",
  6048. image: {
  6049. source: "./media/characters/miranda/back.svg",
  6050. extra: 201 / 193,
  6051. bottom: 2.3 / 203.7
  6052. }
  6053. },
  6054. },
  6055. [
  6056. {
  6057. name: "Normal",
  6058. height: math.unit(10, "feet"),
  6059. default: true
  6060. }
  6061. ]
  6062. ))
  6063. characterMakers.push(() => makeCharacter(
  6064. { name: "James", species: ["deer"], tags: ["anthro"] },
  6065. {
  6066. side: {
  6067. height: math.unit(2, "meters"),
  6068. weight: math.unit(100, "kg"),
  6069. name: "Front",
  6070. image: {
  6071. source: "./media/characters/james/front.svg",
  6072. extra: 10 / 8.5
  6073. }
  6074. },
  6075. },
  6076. [
  6077. {
  6078. name: "Normal",
  6079. height: math.unit(8.5, "feet"),
  6080. default: true
  6081. }
  6082. ]
  6083. ))
  6084. characterMakers.push(() => makeCharacter(
  6085. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6086. {
  6087. side: {
  6088. height: math.unit(9.5, "feet"),
  6089. weight: math.unit(2500, "lbs"),
  6090. name: "Side",
  6091. image: {
  6092. source: "./media/characters/heather/side.svg"
  6093. }
  6094. },
  6095. },
  6096. [
  6097. {
  6098. name: "Normal",
  6099. height: math.unit(9.5, "feet"),
  6100. default: true
  6101. }
  6102. ]
  6103. ))
  6104. characterMakers.push(() => makeCharacter(
  6105. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6106. {
  6107. side: {
  6108. height: math.unit(6.5, "feet"),
  6109. weight: math.unit(400, "lbs"),
  6110. name: "Side",
  6111. image: {
  6112. source: "./media/characters/lukas/side.svg",
  6113. extra: 7.25 / 6.5
  6114. }
  6115. },
  6116. },
  6117. [
  6118. {
  6119. name: "Normal",
  6120. height: math.unit(6.5, "feet"),
  6121. default: true
  6122. }
  6123. ]
  6124. ))
  6125. characterMakers.push(() => makeCharacter(
  6126. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6127. {
  6128. side: {
  6129. height: math.unit(5, "feet"),
  6130. weight: math.unit(3000, "lbs"),
  6131. name: "Side",
  6132. image: {
  6133. source: "./media/characters/louise/side.svg"
  6134. }
  6135. },
  6136. },
  6137. [
  6138. {
  6139. name: "Normal",
  6140. height: math.unit(5, "feet"),
  6141. default: true
  6142. }
  6143. ]
  6144. ))
  6145. characterMakers.push(() => makeCharacter(
  6146. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6147. {
  6148. side: {
  6149. height: math.unit(6, "feet"),
  6150. weight: math.unit(150, "lbs"),
  6151. name: "Side",
  6152. image: {
  6153. source: "./media/characters/ramona/side.svg",
  6154. extra: 871/854,
  6155. bottom: 41/912
  6156. }
  6157. },
  6158. },
  6159. [
  6160. {
  6161. name: "Normal",
  6162. height: math.unit(6 + 4/12, "feet")
  6163. },
  6164. {
  6165. name: "Minimacro",
  6166. height: math.unit(5.3, "meters"),
  6167. default: true
  6168. },
  6169. {
  6170. name: "Macro",
  6171. height: math.unit(20, "stories")
  6172. },
  6173. {
  6174. name: "Macro+",
  6175. height: math.unit(50, "stories")
  6176. },
  6177. ]
  6178. ))
  6179. characterMakers.push(() => makeCharacter(
  6180. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6181. {
  6182. standing: {
  6183. height: math.unit(5.75, "feet"),
  6184. weight: math.unit(160, "lbs"),
  6185. name: "Standing",
  6186. image: {
  6187. source: "./media/characters/deerpuff/standing.svg",
  6188. extra: 682 / 624
  6189. }
  6190. },
  6191. sitting: {
  6192. height: math.unit(5.75 / 1.79, "feet"),
  6193. weight: math.unit(160, "lbs"),
  6194. name: "Sitting",
  6195. image: {
  6196. source: "./media/characters/deerpuff/sitting.svg",
  6197. bottom: 44 / 400,
  6198. extra: 1
  6199. }
  6200. },
  6201. taurLaying: {
  6202. height: math.unit(6, "feet"),
  6203. weight: math.unit(400, "lbs"),
  6204. name: "Taur (Laying)",
  6205. image: {
  6206. source: "./media/characters/deerpuff/taur-laying.svg"
  6207. }
  6208. },
  6209. },
  6210. [
  6211. {
  6212. name: "Puffball",
  6213. height: math.unit(6, "inches")
  6214. },
  6215. {
  6216. name: "Normalpuff",
  6217. height: math.unit(5.75, "feet")
  6218. },
  6219. {
  6220. name: "Macropuff",
  6221. height: math.unit(1500, "feet"),
  6222. default: true
  6223. },
  6224. {
  6225. name: "Megapuff",
  6226. height: math.unit(500, "miles")
  6227. },
  6228. {
  6229. name: "Gigapuff",
  6230. height: math.unit(250000, "miles")
  6231. },
  6232. {
  6233. name: "Omegapuff",
  6234. height: math.unit(1000, "lightyears")
  6235. },
  6236. ]
  6237. ))
  6238. characterMakers.push(() => makeCharacter(
  6239. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6240. {
  6241. stomping: {
  6242. height: math.unit(6, "feet"),
  6243. weight: math.unit(170, "lbs"),
  6244. name: "Stomping",
  6245. image: {
  6246. source: "./media/characters/vivian/stomping.svg"
  6247. }
  6248. },
  6249. sitting: {
  6250. height: math.unit(6 / 1.75, "feet"),
  6251. weight: math.unit(170, "lbs"),
  6252. name: "Sitting",
  6253. image: {
  6254. source: "./media/characters/vivian/sitting.svg",
  6255. bottom: 1 / 6.4,
  6256. extra: 1,
  6257. }
  6258. },
  6259. },
  6260. [
  6261. {
  6262. name: "Normal",
  6263. height: math.unit(7, "feet"),
  6264. default: true
  6265. },
  6266. {
  6267. name: "Macro",
  6268. height: math.unit(10, "stories")
  6269. },
  6270. {
  6271. name: "Macro+",
  6272. height: math.unit(30, "stories")
  6273. },
  6274. {
  6275. name: "Megamacro",
  6276. height: math.unit(10, "miles")
  6277. },
  6278. {
  6279. name: "Megamacro+",
  6280. height: math.unit(2750000, "meters")
  6281. },
  6282. ]
  6283. ))
  6284. characterMakers.push(() => makeCharacter(
  6285. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6286. {
  6287. front: {
  6288. height: math.unit(6, "feet"),
  6289. weight: math.unit(160, "lbs"),
  6290. name: "Front",
  6291. image: {
  6292. source: "./media/characters/prince/front.svg",
  6293. extra: 1938/1682,
  6294. bottom: 45/1983
  6295. }
  6296. },
  6297. back: {
  6298. height: math.unit(6, "feet"),
  6299. weight: math.unit(160, "lbs"),
  6300. name: "Back",
  6301. image: {
  6302. source: "./media/characters/prince/back.svg",
  6303. extra: 1955/1726,
  6304. bottom: 6/1961
  6305. }
  6306. },
  6307. },
  6308. [
  6309. {
  6310. name: "Normal",
  6311. height: math.unit(7.75, "feet"),
  6312. default: true
  6313. },
  6314. {
  6315. name: "Not cute",
  6316. height: math.unit(17, "feet")
  6317. },
  6318. {
  6319. name: "I said NOT",
  6320. height: math.unit(91, "feet")
  6321. },
  6322. {
  6323. name: "Please stop",
  6324. height: math.unit(560, "feet")
  6325. },
  6326. {
  6327. name: "What have you done",
  6328. height: math.unit(2200, "feet")
  6329. },
  6330. {
  6331. name: "Deer God",
  6332. height: math.unit(3.6, "miles")
  6333. },
  6334. ]
  6335. ))
  6336. characterMakers.push(() => makeCharacter(
  6337. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6338. {
  6339. standing: {
  6340. height: math.unit(6, "feet"),
  6341. weight: math.unit(300, "lbs"),
  6342. name: "Standing",
  6343. image: {
  6344. source: "./media/characters/psymon/standing.svg",
  6345. extra: 1888 / 1810,
  6346. bottom: 0.05
  6347. }
  6348. },
  6349. slithering: {
  6350. height: math.unit(6, "feet"),
  6351. weight: math.unit(300, "lbs"),
  6352. name: "Slithering",
  6353. image: {
  6354. source: "./media/characters/psymon/slithering.svg",
  6355. extra: 1330 / 1224
  6356. }
  6357. },
  6358. slitheringAlt: {
  6359. height: math.unit(6, "feet"),
  6360. weight: math.unit(300, "lbs"),
  6361. name: "Slithering (Alt)",
  6362. image: {
  6363. source: "./media/characters/psymon/slithering-alt.svg",
  6364. extra: 1330 / 1224
  6365. }
  6366. },
  6367. },
  6368. [
  6369. {
  6370. name: "Normal",
  6371. height: math.unit(11.25, "feet"),
  6372. default: true
  6373. },
  6374. {
  6375. name: "Large",
  6376. height: math.unit(27, "feet")
  6377. },
  6378. {
  6379. name: "Giant",
  6380. height: math.unit(87, "feet")
  6381. },
  6382. {
  6383. name: "Macro",
  6384. height: math.unit(365, "feet")
  6385. },
  6386. {
  6387. name: "Megamacro",
  6388. height: math.unit(3, "miles")
  6389. },
  6390. {
  6391. name: "World Serpent",
  6392. height: math.unit(8000, "miles")
  6393. },
  6394. ]
  6395. ))
  6396. characterMakers.push(() => makeCharacter(
  6397. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6398. {
  6399. front: {
  6400. height: math.unit(6, "feet"),
  6401. weight: math.unit(180, "lbs"),
  6402. name: "Front",
  6403. image: {
  6404. source: "./media/characters/daimos/front.svg",
  6405. extra: 4160 / 3897,
  6406. bottom: 0.021
  6407. }
  6408. }
  6409. },
  6410. [
  6411. {
  6412. name: "Normal",
  6413. height: math.unit(8, "feet"),
  6414. default: true
  6415. },
  6416. {
  6417. name: "Big Dog",
  6418. height: math.unit(22, "feet")
  6419. },
  6420. {
  6421. name: "Macro",
  6422. height: math.unit(127, "feet")
  6423. },
  6424. {
  6425. name: "Megamacro",
  6426. height: math.unit(3600, "feet")
  6427. },
  6428. ]
  6429. ))
  6430. characterMakers.push(() => makeCharacter(
  6431. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6432. {
  6433. side: {
  6434. height: math.unit(6, "feet"),
  6435. weight: math.unit(180, "lbs"),
  6436. name: "Side",
  6437. image: {
  6438. source: "./media/characters/blake/side.svg",
  6439. extra: 1212 / 1120,
  6440. bottom: 0.05
  6441. }
  6442. },
  6443. crouched: {
  6444. height: math.unit(6 * 0.57, "feet"),
  6445. weight: math.unit(180, "lbs"),
  6446. name: "Crouched",
  6447. image: {
  6448. source: "./media/characters/blake/crouched.svg",
  6449. extra: 840 / 587,
  6450. bottom: 0.04
  6451. }
  6452. },
  6453. bent: {
  6454. height: math.unit(6 * 0.75, "feet"),
  6455. weight: math.unit(180, "lbs"),
  6456. name: "Bent",
  6457. image: {
  6458. source: "./media/characters/blake/bent.svg",
  6459. extra: 592 / 544,
  6460. bottom: 0.035
  6461. }
  6462. },
  6463. },
  6464. [
  6465. {
  6466. name: "Normal",
  6467. height: math.unit(8 + 1 / 6, "feet"),
  6468. default: true
  6469. },
  6470. {
  6471. name: "Big Backside",
  6472. height: math.unit(37, "feet")
  6473. },
  6474. {
  6475. name: "Subway Shredder",
  6476. height: math.unit(72, "feet")
  6477. },
  6478. {
  6479. name: "City Carver",
  6480. height: math.unit(1675, "feet")
  6481. },
  6482. {
  6483. name: "Tectonic Tweaker",
  6484. height: math.unit(2300, "miles")
  6485. },
  6486. ]
  6487. ))
  6488. characterMakers.push(() => makeCharacter(
  6489. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6490. {
  6491. front: {
  6492. height: math.unit(6, "feet"),
  6493. weight: math.unit(180, "lbs"),
  6494. name: "Front",
  6495. image: {
  6496. source: "./media/characters/guisetto/front.svg",
  6497. extra: 856 / 817,
  6498. bottom: 0.06
  6499. }
  6500. },
  6501. airborne: {
  6502. height: math.unit(6, "feet"),
  6503. weight: math.unit(180, "lbs"),
  6504. name: "Airborne",
  6505. image: {
  6506. source: "./media/characters/guisetto/airborne.svg",
  6507. extra: 584 / 525
  6508. }
  6509. },
  6510. },
  6511. [
  6512. {
  6513. name: "Normal",
  6514. height: math.unit(10 + 11 / 12, "feet"),
  6515. default: true
  6516. },
  6517. {
  6518. name: "Large",
  6519. height: math.unit(35, "feet")
  6520. },
  6521. {
  6522. name: "Macro",
  6523. height: math.unit(475, "feet")
  6524. },
  6525. ]
  6526. ))
  6527. characterMakers.push(() => makeCharacter(
  6528. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6529. {
  6530. front: {
  6531. height: math.unit(6, "feet"),
  6532. weight: math.unit(180, "lbs"),
  6533. name: "Front",
  6534. image: {
  6535. source: "./media/characters/luxor/front.svg",
  6536. extra: 2940 / 2152
  6537. }
  6538. },
  6539. back: {
  6540. height: math.unit(6, "feet"),
  6541. weight: math.unit(180, "lbs"),
  6542. name: "Back",
  6543. image: {
  6544. source: "./media/characters/luxor/back.svg",
  6545. extra: 1083 / 960
  6546. }
  6547. },
  6548. },
  6549. [
  6550. {
  6551. name: "Normal",
  6552. height: math.unit(5 + 5 / 6, "feet"),
  6553. default: true
  6554. },
  6555. {
  6556. name: "Lamp",
  6557. height: math.unit(50, "feet")
  6558. },
  6559. {
  6560. name: "Lämp",
  6561. height: math.unit(300, "feet")
  6562. },
  6563. {
  6564. name: "The sun is a lamp",
  6565. height: math.unit(250000, "miles")
  6566. },
  6567. ]
  6568. ))
  6569. characterMakers.push(() => makeCharacter(
  6570. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6571. {
  6572. front: {
  6573. height: math.unit(6, "feet"),
  6574. weight: math.unit(50, "lbs"),
  6575. name: "Front",
  6576. image: {
  6577. source: "./media/characters/huoyan/front.svg"
  6578. }
  6579. },
  6580. side: {
  6581. height: math.unit(6, "feet"),
  6582. weight: math.unit(180, "lbs"),
  6583. name: "Side",
  6584. image: {
  6585. source: "./media/characters/huoyan/side.svg"
  6586. }
  6587. },
  6588. },
  6589. [
  6590. {
  6591. name: "Chef",
  6592. height: math.unit(9, "feet")
  6593. },
  6594. {
  6595. name: "Normal",
  6596. height: math.unit(65, "feet"),
  6597. default: true
  6598. },
  6599. {
  6600. name: "Macro",
  6601. height: math.unit(780, "feet")
  6602. },
  6603. {
  6604. name: "Flaming Mountain",
  6605. height: math.unit(4.8, "miles")
  6606. },
  6607. {
  6608. name: "Celestial",
  6609. height: math.unit(765000, "miles")
  6610. },
  6611. ]
  6612. ))
  6613. characterMakers.push(() => makeCharacter(
  6614. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6615. {
  6616. front: {
  6617. height: math.unit(5 + 3 / 4, "feet"),
  6618. weight: math.unit(120, "lbs"),
  6619. name: "Front",
  6620. image: {
  6621. source: "./media/characters/tails/front.svg"
  6622. }
  6623. }
  6624. },
  6625. [
  6626. {
  6627. name: "Normal",
  6628. height: math.unit(5 + 3 / 4, "feet"),
  6629. default: true
  6630. }
  6631. ]
  6632. ))
  6633. characterMakers.push(() => makeCharacter(
  6634. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6635. {
  6636. front: {
  6637. height: math.unit(4, "feet"),
  6638. weight: math.unit(50, "lbs"),
  6639. name: "Front",
  6640. image: {
  6641. source: "./media/characters/rainy/front.svg"
  6642. }
  6643. }
  6644. },
  6645. [
  6646. {
  6647. name: "Macro",
  6648. height: math.unit(800, "feet"),
  6649. default: true
  6650. }
  6651. ]
  6652. ))
  6653. characterMakers.push(() => makeCharacter(
  6654. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6655. {
  6656. front: {
  6657. height: math.unit(6, "feet"),
  6658. weight: math.unit(150, "lbs"),
  6659. name: "Front",
  6660. image: {
  6661. source: "./media/characters/rainier/front.svg"
  6662. }
  6663. }
  6664. },
  6665. [
  6666. {
  6667. name: "Micro",
  6668. height: math.unit(2, "mm"),
  6669. default: true
  6670. }
  6671. ]
  6672. ))
  6673. characterMakers.push(() => makeCharacter(
  6674. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6675. {
  6676. front: {
  6677. height: math.unit(8 + 4/12, "feet"),
  6678. weight: math.unit(450, "kilograms"),
  6679. volume: math.unit(5, "cups"),
  6680. name: "Front",
  6681. image: {
  6682. source: "./media/characters/andy-renard/front.svg",
  6683. extra: 1839/1726,
  6684. bottom: 134/1973
  6685. }
  6686. },
  6687. back: {
  6688. height: math.unit(8 + 4/12, "feet"),
  6689. weight: math.unit(450, "kilograms"),
  6690. volume: math.unit(5, "cups"),
  6691. name: "Back",
  6692. image: {
  6693. source: "./media/characters/andy-renard/back.svg",
  6694. extra: 1838/1710,
  6695. bottom: 105/1943
  6696. }
  6697. },
  6698. },
  6699. [
  6700. {
  6701. name: "Tall",
  6702. height: math.unit(8 + 4/12, "feet")
  6703. },
  6704. {
  6705. name: "Mini Macro",
  6706. height: math.unit(15, "feet"),
  6707. default: true
  6708. },
  6709. {
  6710. name: "Macro",
  6711. height: math.unit(100, "feet")
  6712. },
  6713. {
  6714. name: "Mega Macro",
  6715. height: math.unit(1000, "feet")
  6716. },
  6717. {
  6718. name: "Giga Macro",
  6719. height: math.unit(10, "miles")
  6720. },
  6721. {
  6722. name: "God Macro",
  6723. height: math.unit(1, "multiverse")
  6724. },
  6725. ]
  6726. ))
  6727. characterMakers.push(() => makeCharacter(
  6728. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6729. {
  6730. front: {
  6731. height: math.unit(6, "feet"),
  6732. weight: math.unit(210, "lbs"),
  6733. name: "Front",
  6734. image: {
  6735. source: "./media/characters/cimmaron/front-sfw.svg",
  6736. extra: 701 / 676,
  6737. bottom: 0.046
  6738. }
  6739. },
  6740. back: {
  6741. height: math.unit(6, "feet"),
  6742. weight: math.unit(210, "lbs"),
  6743. name: "Back",
  6744. image: {
  6745. source: "./media/characters/cimmaron/back-sfw.svg",
  6746. extra: 701 / 676,
  6747. bottom: 0.046
  6748. }
  6749. },
  6750. frontNsfw: {
  6751. height: math.unit(6, "feet"),
  6752. weight: math.unit(210, "lbs"),
  6753. name: "Front (NSFW)",
  6754. image: {
  6755. source: "./media/characters/cimmaron/front-nsfw.svg",
  6756. extra: 701 / 676,
  6757. bottom: 0.046
  6758. }
  6759. },
  6760. backNsfw: {
  6761. height: math.unit(6, "feet"),
  6762. weight: math.unit(210, "lbs"),
  6763. name: "Back (NSFW)",
  6764. image: {
  6765. source: "./media/characters/cimmaron/back-nsfw.svg",
  6766. extra: 701 / 676,
  6767. bottom: 0.046
  6768. }
  6769. },
  6770. dick: {
  6771. height: math.unit(1.714, "feet"),
  6772. name: "Dick",
  6773. image: {
  6774. source: "./media/characters/cimmaron/dick.svg"
  6775. }
  6776. },
  6777. },
  6778. [
  6779. {
  6780. name: "Normal",
  6781. height: math.unit(6, "feet"),
  6782. default: true
  6783. },
  6784. {
  6785. name: "Macro Mayor",
  6786. height: math.unit(350, "meters")
  6787. },
  6788. ]
  6789. ))
  6790. characterMakers.push(() => makeCharacter(
  6791. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6792. {
  6793. front: {
  6794. height: math.unit(6, "feet"),
  6795. weight: math.unit(200, "lbs"),
  6796. name: "Front",
  6797. image: {
  6798. source: "./media/characters/akari/front.svg",
  6799. extra: 962 / 901,
  6800. bottom: 0.04
  6801. }
  6802. }
  6803. },
  6804. [
  6805. {
  6806. name: "Micro",
  6807. height: math.unit(5, "inches"),
  6808. default: true
  6809. },
  6810. {
  6811. name: "Normal",
  6812. height: math.unit(7, "feet")
  6813. },
  6814. ]
  6815. ))
  6816. characterMakers.push(() => makeCharacter(
  6817. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6818. {
  6819. front: {
  6820. height: math.unit(6, "feet"),
  6821. weight: math.unit(140, "lbs"),
  6822. name: "Front",
  6823. image: {
  6824. source: "./media/characters/cynosura/front.svg",
  6825. extra: 437/410,
  6826. bottom: 9/446
  6827. }
  6828. },
  6829. back: {
  6830. height: math.unit(6, "feet"),
  6831. weight: math.unit(140, "lbs"),
  6832. name: "Back",
  6833. image: {
  6834. source: "./media/characters/cynosura/back.svg",
  6835. extra: 1304/1160,
  6836. bottom: 71/1375
  6837. }
  6838. },
  6839. },
  6840. [
  6841. {
  6842. name: "Micro",
  6843. height: math.unit(4, "inches")
  6844. },
  6845. {
  6846. name: "Normal",
  6847. height: math.unit(5.75, "feet"),
  6848. default: true
  6849. },
  6850. {
  6851. name: "Tall",
  6852. height: math.unit(10, "feet")
  6853. },
  6854. {
  6855. name: "Big",
  6856. height: math.unit(20, "feet")
  6857. },
  6858. {
  6859. name: "Macro",
  6860. height: math.unit(50, "feet")
  6861. },
  6862. ]
  6863. ))
  6864. characterMakers.push(() => makeCharacter(
  6865. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6866. {
  6867. front: {
  6868. height: math.unit(13 + 2/12, "feet"),
  6869. weight: math.unit(800, "kg"),
  6870. name: "Front",
  6871. image: {
  6872. source: "./media/characters/gin/front.svg",
  6873. extra: 1312/1191,
  6874. bottom: 45/1357
  6875. }
  6876. },
  6877. mouth: {
  6878. height: math.unit(2.39 * 1.8, "feet"),
  6879. name: "Mouth",
  6880. image: {
  6881. source: "./media/characters/gin/mouth.svg"
  6882. }
  6883. },
  6884. hand: {
  6885. height: math.unit(1.57 * 2.19, "feet"),
  6886. name: "Hand",
  6887. image: {
  6888. source: "./media/characters/gin/hand.svg"
  6889. }
  6890. },
  6891. foot: {
  6892. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6893. name: "Foot",
  6894. image: {
  6895. source: "./media/characters/gin/foot.svg"
  6896. }
  6897. },
  6898. sole: {
  6899. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6900. name: "Sole",
  6901. image: {
  6902. source: "./media/characters/gin/sole.svg"
  6903. }
  6904. },
  6905. },
  6906. [
  6907. {
  6908. name: "Very Small",
  6909. height: math.unit(13 + 2 / 12, "feet")
  6910. },
  6911. {
  6912. name: "Micro",
  6913. height: math.unit(600, "miles")
  6914. },
  6915. {
  6916. name: "Regular",
  6917. height: math.unit(20, "earths"),
  6918. default: true
  6919. },
  6920. {
  6921. name: "Macro",
  6922. height: math.unit(2.2, "solarradii")
  6923. },
  6924. {
  6925. name: "Teramacro",
  6926. height: math.unit(1.2, "galaxies")
  6927. },
  6928. {
  6929. name: "Omegamacro",
  6930. height: math.unit(200, "universes")
  6931. },
  6932. ]
  6933. ))
  6934. characterMakers.push(() => makeCharacter(
  6935. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6936. {
  6937. front: {
  6938. height: math.unit(6 + 1 / 6, "feet"),
  6939. weight: math.unit(178, "lbs"),
  6940. name: "Front",
  6941. image: {
  6942. source: "./media/characters/guy/front.svg"
  6943. }
  6944. }
  6945. },
  6946. [
  6947. {
  6948. name: "Normal",
  6949. height: math.unit(6 + 1 / 6, "feet"),
  6950. default: true
  6951. },
  6952. {
  6953. name: "Large",
  6954. height: math.unit(25 + 7 / 12, "feet")
  6955. },
  6956. {
  6957. name: "Macro",
  6958. height: math.unit(60 + 9 / 12, "feet")
  6959. },
  6960. {
  6961. name: "Macro+",
  6962. height: math.unit(246, "feet")
  6963. },
  6964. {
  6965. name: "Macro++",
  6966. height: math.unit(878, "feet")
  6967. }
  6968. ]
  6969. ))
  6970. characterMakers.push(() => makeCharacter(
  6971. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6972. {
  6973. front: {
  6974. height: math.unit(9, "feet"),
  6975. weight: math.unit(800, "lbs"),
  6976. name: "Front",
  6977. image: {
  6978. source: "./media/characters/tiberius/front.svg",
  6979. extra: 2295 / 2071
  6980. }
  6981. },
  6982. back: {
  6983. height: math.unit(9, "feet"),
  6984. weight: math.unit(800, "lbs"),
  6985. name: "Back",
  6986. image: {
  6987. source: "./media/characters/tiberius/back.svg",
  6988. extra: 2373 / 2160
  6989. }
  6990. },
  6991. },
  6992. [
  6993. {
  6994. name: "Normal",
  6995. height: math.unit(9, "feet"),
  6996. default: true
  6997. }
  6998. ]
  6999. ))
  7000. characterMakers.push(() => makeCharacter(
  7001. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7002. {
  7003. front: {
  7004. height: math.unit(6, "feet"),
  7005. weight: math.unit(600, "lbs"),
  7006. name: "Front",
  7007. image: {
  7008. source: "./media/characters/surgo/front.svg",
  7009. extra: 3591 / 2227
  7010. }
  7011. },
  7012. back: {
  7013. height: math.unit(6, "feet"),
  7014. weight: math.unit(600, "lbs"),
  7015. name: "Back",
  7016. image: {
  7017. source: "./media/characters/surgo/back.svg",
  7018. extra: 3557 / 2228
  7019. }
  7020. },
  7021. laying: {
  7022. height: math.unit(6 * 0.85, "feet"),
  7023. weight: math.unit(600, "lbs"),
  7024. name: "Laying",
  7025. image: {
  7026. source: "./media/characters/surgo/laying.svg"
  7027. }
  7028. },
  7029. },
  7030. [
  7031. {
  7032. name: "Normal",
  7033. height: math.unit(6, "feet"),
  7034. default: true
  7035. }
  7036. ]
  7037. ))
  7038. characterMakers.push(() => makeCharacter(
  7039. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7040. {
  7041. side: {
  7042. height: math.unit(6, "feet"),
  7043. weight: math.unit(150, "lbs"),
  7044. name: "Side",
  7045. image: {
  7046. source: "./media/characters/cibus/side.svg",
  7047. extra: 800 / 400
  7048. }
  7049. },
  7050. },
  7051. [
  7052. {
  7053. name: "Normal",
  7054. height: math.unit(6, "feet"),
  7055. default: true
  7056. }
  7057. ]
  7058. ))
  7059. characterMakers.push(() => makeCharacter(
  7060. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7061. {
  7062. front: {
  7063. height: math.unit(6, "feet"),
  7064. weight: math.unit(240, "lbs"),
  7065. name: "Front",
  7066. image: {
  7067. source: "./media/characters/nibbles/front.svg"
  7068. }
  7069. },
  7070. side: {
  7071. height: math.unit(6, "feet"),
  7072. weight: math.unit(240, "lbs"),
  7073. name: "Side",
  7074. image: {
  7075. source: "./media/characters/nibbles/side.svg"
  7076. }
  7077. },
  7078. },
  7079. [
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(9, "feet"),
  7083. default: true
  7084. }
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7089. {
  7090. side: {
  7091. height: math.unit(5 + 1 / 6, "feet"),
  7092. weight: math.unit(130, "lbs"),
  7093. name: "Side",
  7094. image: {
  7095. source: "./media/characters/rikky/side.svg",
  7096. extra: 851 / 801
  7097. }
  7098. },
  7099. },
  7100. [
  7101. {
  7102. name: "Normal",
  7103. height: math.unit(5 + 1 / 6, "feet")
  7104. },
  7105. {
  7106. name: "Macro",
  7107. height: math.unit(152, "feet"),
  7108. default: true
  7109. },
  7110. {
  7111. name: "Megamacro",
  7112. height: math.unit(7, "miles")
  7113. }
  7114. ]
  7115. ))
  7116. characterMakers.push(() => makeCharacter(
  7117. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7118. {
  7119. side: {
  7120. height: math.unit(370, "cm"),
  7121. weight: math.unit(350, "lbs"),
  7122. name: "Side",
  7123. image: {
  7124. source: "./media/characters/malfressa/side.svg"
  7125. }
  7126. },
  7127. walking: {
  7128. height: math.unit(370, "cm"),
  7129. weight: math.unit(350, "lbs"),
  7130. name: "Walking",
  7131. image: {
  7132. source: "./media/characters/malfressa/walking.svg"
  7133. }
  7134. },
  7135. feral: {
  7136. height: math.unit(2500, "cm"),
  7137. weight: math.unit(100000, "lbs"),
  7138. name: "Feral",
  7139. image: {
  7140. source: "./media/characters/malfressa/feral.svg",
  7141. extra: 2108 / 837,
  7142. bottom: 0.02
  7143. }
  7144. },
  7145. },
  7146. [
  7147. {
  7148. name: "Normal",
  7149. height: math.unit(370, "cm")
  7150. },
  7151. {
  7152. name: "Macro",
  7153. height: math.unit(300, "meters"),
  7154. default: true
  7155. }
  7156. ]
  7157. ))
  7158. characterMakers.push(() => makeCharacter(
  7159. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7160. {
  7161. front: {
  7162. height: math.unit(6, "feet"),
  7163. weight: math.unit(60, "kg"),
  7164. name: "Front",
  7165. image: {
  7166. source: "./media/characters/jaro/front.svg",
  7167. extra: 845/817,
  7168. bottom: 45/890
  7169. }
  7170. },
  7171. back: {
  7172. height: math.unit(6, "feet"),
  7173. weight: math.unit(60, "kg"),
  7174. name: "Back",
  7175. image: {
  7176. source: "./media/characters/jaro/back.svg",
  7177. extra: 847/817,
  7178. bottom: 34/881
  7179. }
  7180. },
  7181. },
  7182. [
  7183. {
  7184. name: "Micro",
  7185. height: math.unit(7, "inches")
  7186. },
  7187. {
  7188. name: "Normal",
  7189. height: math.unit(5.5, "feet"),
  7190. default: true
  7191. },
  7192. {
  7193. name: "Minimacro",
  7194. height: math.unit(20, "feet")
  7195. },
  7196. {
  7197. name: "Macro",
  7198. height: math.unit(200, "meters")
  7199. }
  7200. ]
  7201. ))
  7202. characterMakers.push(() => makeCharacter(
  7203. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7204. {
  7205. front: {
  7206. height: math.unit(6, "feet"),
  7207. weight: math.unit(195, "lb"),
  7208. name: "Front",
  7209. image: {
  7210. source: "./media/characters/rogue/front.svg"
  7211. }
  7212. },
  7213. },
  7214. [
  7215. {
  7216. name: "Macro",
  7217. height: math.unit(90, "feet"),
  7218. default: true
  7219. },
  7220. ]
  7221. ))
  7222. characterMakers.push(() => makeCharacter(
  7223. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7224. {
  7225. standing: {
  7226. height: math.unit(5 + 8 / 12, "feet"),
  7227. weight: math.unit(140, "lb"),
  7228. name: "Standing",
  7229. image: {
  7230. source: "./media/characters/piper/standing.svg",
  7231. extra: 1440/1284,
  7232. bottom: 66/1506
  7233. }
  7234. },
  7235. running: {
  7236. height: math.unit(5 + 8 / 12, "feet"),
  7237. weight: math.unit(140, "lb"),
  7238. name: "Running",
  7239. image: {
  7240. source: "./media/characters/piper/running.svg",
  7241. extra: 3948/3655,
  7242. bottom: 0/3948
  7243. }
  7244. },
  7245. sole: {
  7246. height: math.unit(0.81, "feet"),
  7247. weight: math.unit(2, "kg"),
  7248. name: "Sole",
  7249. image: {
  7250. source: "./media/characters/piper/sole.svg"
  7251. }
  7252. },
  7253. nipple: {
  7254. height: math.unit(0.25, "feet"),
  7255. weight: math.unit(1.5, "lb"),
  7256. name: "Nipple",
  7257. image: {
  7258. source: "./media/characters/piper/nipple.svg"
  7259. }
  7260. },
  7261. head: {
  7262. height: math.unit(1.1, "feet"),
  7263. name: "Head",
  7264. image: {
  7265. source: "./media/characters/piper/head.svg"
  7266. }
  7267. },
  7268. },
  7269. [
  7270. {
  7271. name: "Micro",
  7272. height: math.unit(2, "inches")
  7273. },
  7274. {
  7275. name: "Normal",
  7276. height: math.unit(5 + 8 / 12, "feet")
  7277. },
  7278. {
  7279. name: "Macro",
  7280. height: math.unit(250, "feet"),
  7281. default: true
  7282. },
  7283. {
  7284. name: "Megamacro",
  7285. height: math.unit(7, "miles")
  7286. },
  7287. ]
  7288. ))
  7289. characterMakers.push(() => makeCharacter(
  7290. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7291. {
  7292. front: {
  7293. height: math.unit(6, "feet"),
  7294. weight: math.unit(220, "lb"),
  7295. name: "Front",
  7296. image: {
  7297. source: "./media/characters/gemini/front.svg"
  7298. }
  7299. },
  7300. back: {
  7301. height: math.unit(6, "feet"),
  7302. weight: math.unit(220, "lb"),
  7303. name: "Back",
  7304. image: {
  7305. source: "./media/characters/gemini/back.svg"
  7306. }
  7307. },
  7308. kneeling: {
  7309. height: math.unit(6 / 1.5, "feet"),
  7310. weight: math.unit(220, "lb"),
  7311. name: "Kneeling",
  7312. image: {
  7313. source: "./media/characters/gemini/kneeling.svg",
  7314. bottom: 0.02
  7315. }
  7316. },
  7317. },
  7318. [
  7319. {
  7320. name: "Macro",
  7321. height: math.unit(300, "meters"),
  7322. default: true
  7323. },
  7324. {
  7325. name: "Megamacro",
  7326. height: math.unit(6900, "meters")
  7327. },
  7328. ]
  7329. ))
  7330. characterMakers.push(() => makeCharacter(
  7331. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7332. {
  7333. anthro: {
  7334. height: math.unit(2.35, "meters"),
  7335. weight: math.unit(73, "kg"),
  7336. name: "Anthro",
  7337. image: {
  7338. source: "./media/characters/alicia/anthro.svg",
  7339. extra: 2571 / 2385,
  7340. bottom: 75 / 2648
  7341. }
  7342. },
  7343. paw: {
  7344. height: math.unit(1.32, "feet"),
  7345. name: "Paw",
  7346. image: {
  7347. source: "./media/characters/alicia/paw.svg"
  7348. }
  7349. },
  7350. feral: {
  7351. height: math.unit(1.69, "meters"),
  7352. weight: math.unit(73, "kg"),
  7353. name: "Feral",
  7354. image: {
  7355. source: "./media/characters/alicia/feral.svg",
  7356. extra: 2123 / 1715,
  7357. bottom: 222 / 2349
  7358. }
  7359. },
  7360. },
  7361. [
  7362. {
  7363. name: "Normal",
  7364. height: math.unit(2.35, "meters")
  7365. },
  7366. {
  7367. name: "Macro",
  7368. height: math.unit(60, "meters"),
  7369. default: true
  7370. },
  7371. {
  7372. name: "Megamacro",
  7373. height: math.unit(10000, "kilometers")
  7374. },
  7375. ]
  7376. ))
  7377. characterMakers.push(() => makeCharacter(
  7378. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7379. {
  7380. front: {
  7381. height: math.unit(7, "feet"),
  7382. weight: math.unit(250, "lbs"),
  7383. name: "Front",
  7384. image: {
  7385. source: "./media/characters/archy/front.svg"
  7386. }
  7387. }
  7388. },
  7389. [
  7390. {
  7391. name: "Micro",
  7392. height: math.unit(1, "inch")
  7393. },
  7394. {
  7395. name: "Shorty",
  7396. height: math.unit(5, "feet")
  7397. },
  7398. {
  7399. name: "Normal",
  7400. height: math.unit(7, "feet")
  7401. },
  7402. {
  7403. name: "Macro",
  7404. height: math.unit(600, "meters"),
  7405. default: true
  7406. },
  7407. {
  7408. name: "Megamacro",
  7409. height: math.unit(1, "mile")
  7410. },
  7411. ]
  7412. ))
  7413. characterMakers.push(() => makeCharacter(
  7414. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7415. {
  7416. front: {
  7417. height: math.unit(1.65, "meters"),
  7418. weight: math.unit(74, "kg"),
  7419. name: "Front",
  7420. image: {
  7421. source: "./media/characters/berri/front.svg",
  7422. extra: 857 / 837,
  7423. bottom: 18 / 877
  7424. }
  7425. },
  7426. bum: {
  7427. height: math.unit(1.46, "feet"),
  7428. name: "Bum",
  7429. image: {
  7430. source: "./media/characters/berri/bum.svg"
  7431. }
  7432. },
  7433. mouth: {
  7434. height: math.unit(0.44, "feet"),
  7435. name: "Mouth",
  7436. image: {
  7437. source: "./media/characters/berri/mouth.svg"
  7438. }
  7439. },
  7440. paw: {
  7441. height: math.unit(0.826, "feet"),
  7442. name: "Paw",
  7443. image: {
  7444. source: "./media/characters/berri/paw.svg"
  7445. }
  7446. },
  7447. },
  7448. [
  7449. {
  7450. name: "Normal",
  7451. height: math.unit(1.65, "meters")
  7452. },
  7453. {
  7454. name: "Macro",
  7455. height: math.unit(60, "m"),
  7456. default: true
  7457. },
  7458. {
  7459. name: "Megamacro",
  7460. height: math.unit(9.213, "km")
  7461. },
  7462. {
  7463. name: "Planet Eater",
  7464. height: math.unit(489, "megameters")
  7465. },
  7466. {
  7467. name: "Teramacro",
  7468. height: math.unit(2471635000000, "meters")
  7469. },
  7470. {
  7471. name: "Examacro",
  7472. height: math.unit(8.0624e+26, "meters")
  7473. }
  7474. ]
  7475. ))
  7476. characterMakers.push(() => makeCharacter(
  7477. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7478. {
  7479. front: {
  7480. height: math.unit(1.72, "meters"),
  7481. weight: math.unit(68, "kg"),
  7482. name: "Front",
  7483. image: {
  7484. source: "./media/characters/lexi/front.svg"
  7485. }
  7486. }
  7487. },
  7488. [
  7489. {
  7490. name: "Very Smol",
  7491. height: math.unit(10, "mm")
  7492. },
  7493. {
  7494. name: "Micro",
  7495. height: math.unit(6.8, "cm"),
  7496. default: true
  7497. },
  7498. {
  7499. name: "Normal",
  7500. height: math.unit(1.72, "m")
  7501. }
  7502. ]
  7503. ))
  7504. characterMakers.push(() => makeCharacter(
  7505. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7506. {
  7507. front: {
  7508. height: math.unit(1.69, "meters"),
  7509. weight: math.unit(68, "kg"),
  7510. name: "Front",
  7511. image: {
  7512. source: "./media/characters/martin/front.svg",
  7513. extra: 596 / 581
  7514. }
  7515. }
  7516. },
  7517. [
  7518. {
  7519. name: "Micro",
  7520. height: math.unit(6.85, "cm"),
  7521. default: true
  7522. },
  7523. {
  7524. name: "Normal",
  7525. height: math.unit(1.69, "m")
  7526. }
  7527. ]
  7528. ))
  7529. characterMakers.push(() => makeCharacter(
  7530. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7531. {
  7532. front: {
  7533. height: math.unit(1.69, "meters"),
  7534. weight: math.unit(68, "kg"),
  7535. name: "Front",
  7536. image: {
  7537. source: "./media/characters/juno/front.svg"
  7538. }
  7539. }
  7540. },
  7541. [
  7542. {
  7543. name: "Micro",
  7544. height: math.unit(7, "cm")
  7545. },
  7546. {
  7547. name: "Normal",
  7548. height: math.unit(1.89, "m")
  7549. },
  7550. {
  7551. name: "Macro",
  7552. height: math.unit(353, "meters"),
  7553. default: true
  7554. }
  7555. ]
  7556. ))
  7557. characterMakers.push(() => makeCharacter(
  7558. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7559. {
  7560. front: {
  7561. height: math.unit(1.93, "meters"),
  7562. weight: math.unit(83, "kg"),
  7563. name: "Front",
  7564. image: {
  7565. source: "./media/characters/samantha/front.svg"
  7566. }
  7567. },
  7568. frontClothed: {
  7569. height: math.unit(1.93, "meters"),
  7570. weight: math.unit(83, "kg"),
  7571. name: "Front (Clothed)",
  7572. image: {
  7573. source: "./media/characters/samantha/front-clothed.svg"
  7574. }
  7575. },
  7576. back: {
  7577. height: math.unit(1.93, "meters"),
  7578. weight: math.unit(83, "kg"),
  7579. name: "Back",
  7580. image: {
  7581. source: "./media/characters/samantha/back.svg"
  7582. }
  7583. },
  7584. },
  7585. [
  7586. {
  7587. name: "Normal",
  7588. height: math.unit(1.93, "m")
  7589. },
  7590. {
  7591. name: "Macro",
  7592. height: math.unit(74, "meters"),
  7593. default: true
  7594. },
  7595. {
  7596. name: "Macro+",
  7597. height: math.unit(223, "meters"),
  7598. },
  7599. {
  7600. name: "Megamacro",
  7601. height: math.unit(8381, "meters"),
  7602. },
  7603. {
  7604. name: "Megamacro+",
  7605. height: math.unit(12000, "kilometers")
  7606. },
  7607. ]
  7608. ))
  7609. characterMakers.push(() => makeCharacter(
  7610. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7611. {
  7612. front: {
  7613. height: math.unit(1.92, "meters"),
  7614. weight: math.unit(80, "kg"),
  7615. name: "Front",
  7616. image: {
  7617. source: "./media/characters/dr-clay/front.svg"
  7618. }
  7619. },
  7620. frontClothed: {
  7621. height: math.unit(1.92, "meters"),
  7622. weight: math.unit(80, "kg"),
  7623. name: "Front (Clothed)",
  7624. image: {
  7625. source: "./media/characters/dr-clay/front-clothed.svg"
  7626. }
  7627. }
  7628. },
  7629. [
  7630. {
  7631. name: "Normal",
  7632. height: math.unit(1.92, "m")
  7633. },
  7634. {
  7635. name: "Macro",
  7636. height: math.unit(214, "meters"),
  7637. default: true
  7638. },
  7639. {
  7640. name: "Macro+",
  7641. height: math.unit(12.237, "meters"),
  7642. },
  7643. {
  7644. name: "Megamacro",
  7645. height: math.unit(557, "megameters"),
  7646. },
  7647. {
  7648. name: "Unimaginable",
  7649. height: math.unit(120e9, "lightyears")
  7650. },
  7651. ]
  7652. ))
  7653. characterMakers.push(() => makeCharacter(
  7654. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7655. {
  7656. front: {
  7657. height: math.unit(2, "meters"),
  7658. weight: math.unit(80, "kg"),
  7659. name: "Front",
  7660. image: {
  7661. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7662. }
  7663. }
  7664. },
  7665. [
  7666. {
  7667. name: "Teramacro",
  7668. height: math.unit(500000, "lightyears"),
  7669. default: true
  7670. },
  7671. ]
  7672. ))
  7673. characterMakers.push(() => makeCharacter(
  7674. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7675. {
  7676. crux: {
  7677. height: math.unit(2, "meters"),
  7678. weight: math.unit(150, "kg"),
  7679. name: "Crux",
  7680. image: {
  7681. source: "./media/characters/vemus/crux.svg",
  7682. extra: 1074/936,
  7683. bottom: 23/1097
  7684. }
  7685. },
  7686. skunkTanuki: {
  7687. height: math.unit(2, "meters"),
  7688. weight: math.unit(150, "kg"),
  7689. name: "Skunk-Tanuki",
  7690. image: {
  7691. source: "./media/characters/vemus/skunk-tanuki.svg",
  7692. extra: 926/893,
  7693. bottom: 20/946
  7694. }
  7695. },
  7696. },
  7697. [
  7698. {
  7699. name: "Normal",
  7700. height: math.unit(4, "meters"),
  7701. default: true
  7702. },
  7703. {
  7704. name: "Big",
  7705. height: math.unit(8, "meters")
  7706. },
  7707. {
  7708. name: "Macro",
  7709. height: math.unit(100, "meters")
  7710. },
  7711. {
  7712. name: "Macro+",
  7713. height: math.unit(1500, "meters")
  7714. },
  7715. {
  7716. name: "Stellar",
  7717. height: math.unit(14e8, "meters")
  7718. },
  7719. ]
  7720. ))
  7721. characterMakers.push(() => makeCharacter(
  7722. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7723. {
  7724. front: {
  7725. height: math.unit(2, "meters"),
  7726. weight: math.unit(70, "kg"),
  7727. name: "Front",
  7728. image: {
  7729. source: "./media/characters/beherit/front.svg",
  7730. extra: 1234/1109,
  7731. bottom: 55/1289
  7732. }
  7733. }
  7734. },
  7735. [
  7736. {
  7737. name: "Normal",
  7738. height: math.unit(6, "feet")
  7739. },
  7740. {
  7741. name: "Lorg",
  7742. height: math.unit(25, "feet"),
  7743. default: true
  7744. },
  7745. {
  7746. name: "Lorger",
  7747. height: math.unit(75, "feet")
  7748. },
  7749. {
  7750. name: "Macro",
  7751. height: math.unit(200, "meters")
  7752. },
  7753. ]
  7754. ))
  7755. characterMakers.push(() => makeCharacter(
  7756. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7757. {
  7758. front: {
  7759. height: math.unit(2, "meters"),
  7760. weight: math.unit(150, "kg"),
  7761. name: "Front",
  7762. image: {
  7763. source: "./media/characters/everett/front.svg",
  7764. extra: 1017/866,
  7765. bottom: 86/1103
  7766. }
  7767. },
  7768. paw: {
  7769. height: math.unit(2 / 3.6, "meters"),
  7770. name: "Paw",
  7771. image: {
  7772. source: "./media/characters/everett/paw.svg"
  7773. }
  7774. },
  7775. },
  7776. [
  7777. {
  7778. name: "Normal",
  7779. height: math.unit(15, "feet"),
  7780. default: true
  7781. },
  7782. {
  7783. name: "Lorg",
  7784. height: math.unit(70, "feet"),
  7785. default: true
  7786. },
  7787. {
  7788. name: "Lorger",
  7789. height: math.unit(250, "feet")
  7790. },
  7791. {
  7792. name: "Macro",
  7793. height: math.unit(500, "meters")
  7794. },
  7795. ]
  7796. ))
  7797. characterMakers.push(() => makeCharacter(
  7798. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7799. {
  7800. front: {
  7801. height: math.unit(2, "meters"),
  7802. weight: math.unit(86, "kg"),
  7803. name: "Front",
  7804. image: {
  7805. source: "./media/characters/rose/front.svg",
  7806. extra: 1785/1636,
  7807. bottom: 30/1815
  7808. },
  7809. form: "liom",
  7810. default: true
  7811. },
  7812. frontSporty: {
  7813. height: math.unit(2, "meters"),
  7814. weight: math.unit(86, "kg"),
  7815. name: "Front (Sporty)",
  7816. image: {
  7817. source: "./media/characters/rose/front-sporty.svg",
  7818. extra: 350/335,
  7819. bottom: 10/360
  7820. },
  7821. form: "liom"
  7822. },
  7823. frontAlt: {
  7824. height: math.unit(1.6, "meters"),
  7825. weight: math.unit(86, "kg"),
  7826. name: "Front (Alt)",
  7827. image: {
  7828. source: "./media/characters/rose/front-alt.svg",
  7829. extra: 299/283,
  7830. bottom: 3/302
  7831. },
  7832. form: "liom"
  7833. },
  7834. plush: {
  7835. height: math.unit(2, "meters"),
  7836. weight: math.unit(86/3, "kg"),
  7837. name: "Plush",
  7838. image: {
  7839. source: "./media/characters/rose/plush.svg",
  7840. extra: 361/337,
  7841. bottom: 11/372
  7842. },
  7843. form: "plush",
  7844. default: true
  7845. },
  7846. faeStanding: {
  7847. height: math.unit(10, "cm"),
  7848. weight: math.unit(10, "grams"),
  7849. name: "Standing",
  7850. image: {
  7851. source: "./media/characters/rose/fae-standing.svg",
  7852. extra: 1189/1060,
  7853. bottom: 27/1216
  7854. },
  7855. form: "fae",
  7856. default: true
  7857. },
  7858. faeSitting: {
  7859. height: math.unit(5, "cm"),
  7860. weight: math.unit(10, "grams"),
  7861. name: "Sitting",
  7862. image: {
  7863. source: "./media/characters/rose/fae-sitting.svg",
  7864. extra: 737/577,
  7865. bottom: 356/1093
  7866. },
  7867. form: "fae"
  7868. },
  7869. faePaw: {
  7870. height: math.unit(1.35, "cm"),
  7871. name: "Paw",
  7872. image: {
  7873. source: "./media/characters/rose/fae-paw.svg"
  7874. },
  7875. form: "fae"
  7876. },
  7877. },
  7878. [
  7879. {
  7880. name: "True Micro",
  7881. height: math.unit(9, "cm"),
  7882. form: "liom"
  7883. },
  7884. {
  7885. name: "Micro",
  7886. height: math.unit(16, "cm"),
  7887. form: "liom"
  7888. },
  7889. {
  7890. name: "Normal",
  7891. height: math.unit(1.85, "meters"),
  7892. default: true,
  7893. form: "liom"
  7894. },
  7895. {
  7896. name: "Mini-Macro",
  7897. height: math.unit(5, "meters"),
  7898. form: "liom"
  7899. },
  7900. {
  7901. name: "Macro",
  7902. height: math.unit(15, "meters"),
  7903. form: "liom"
  7904. },
  7905. {
  7906. name: "True Macro",
  7907. height: math.unit(40, "meters"),
  7908. form: "liom"
  7909. },
  7910. {
  7911. name: "City Scale",
  7912. height: math.unit(1, "km"),
  7913. form: "liom"
  7914. },
  7915. {
  7916. name: "Plushie",
  7917. height: math.unit(9, "cm"),
  7918. form: "plush",
  7919. default: true
  7920. },
  7921. {
  7922. name: "Fae",
  7923. height: math.unit(10, "cm"),
  7924. form: "fae",
  7925. default: true
  7926. },
  7927. ],
  7928. {
  7929. "liom": {
  7930. name: "Liom"
  7931. },
  7932. "plush": {
  7933. name: "Plush"
  7934. },
  7935. "fae": {
  7936. name: "Fae Fox",
  7937. default: true
  7938. }
  7939. }
  7940. ))
  7941. characterMakers.push(() => makeCharacter(
  7942. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7943. {
  7944. front: {
  7945. height: math.unit(2, "meters"),
  7946. weight: math.unit(350, "lbs"),
  7947. name: "Front",
  7948. image: {
  7949. source: "./media/characters/regal/front.svg"
  7950. }
  7951. },
  7952. back: {
  7953. height: math.unit(2, "meters"),
  7954. weight: math.unit(350, "lbs"),
  7955. name: "Back",
  7956. image: {
  7957. source: "./media/characters/regal/back.svg"
  7958. }
  7959. },
  7960. },
  7961. [
  7962. {
  7963. name: "Macro",
  7964. height: math.unit(350, "feet"),
  7965. default: true
  7966. }
  7967. ]
  7968. ))
  7969. characterMakers.push(() => makeCharacter(
  7970. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7971. {
  7972. front: {
  7973. height: math.unit(4 + 11 / 12, "feet"),
  7974. weight: math.unit(100, "lbs"),
  7975. name: "Front",
  7976. image: {
  7977. source: "./media/characters/opal/front.svg"
  7978. }
  7979. },
  7980. frontAlt: {
  7981. height: math.unit(4 + 11 / 12, "feet"),
  7982. weight: math.unit(100, "lbs"),
  7983. name: "Front (Alt)",
  7984. image: {
  7985. source: "./media/characters/opal/front-alt.svg"
  7986. }
  7987. },
  7988. },
  7989. [
  7990. {
  7991. name: "Small",
  7992. height: math.unit(4 + 11 / 12, "feet")
  7993. },
  7994. {
  7995. name: "Normal",
  7996. height: math.unit(20, "feet"),
  7997. default: true
  7998. },
  7999. {
  8000. name: "Macro",
  8001. height: math.unit(120, "feet")
  8002. },
  8003. {
  8004. name: "Megamacro",
  8005. height: math.unit(80, "miles")
  8006. },
  8007. {
  8008. name: "True Size",
  8009. height: math.unit(100000, "lightyears")
  8010. },
  8011. ]
  8012. ))
  8013. characterMakers.push(() => makeCharacter(
  8014. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8015. {
  8016. front: {
  8017. height: math.unit(6, "feet"),
  8018. weight: math.unit(200, "lbs"),
  8019. name: "Front",
  8020. image: {
  8021. source: "./media/characters/vector-wuff/front.svg"
  8022. }
  8023. }
  8024. },
  8025. [
  8026. {
  8027. name: "Normal",
  8028. height: math.unit(2.8, "meters")
  8029. },
  8030. {
  8031. name: "Macro",
  8032. height: math.unit(450, "meters"),
  8033. default: true
  8034. },
  8035. {
  8036. name: "Megamacro",
  8037. height: math.unit(15, "kilometers")
  8038. }
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8043. {
  8044. front: {
  8045. height: math.unit(6, "feet"),
  8046. weight: math.unit(256, "lbs"),
  8047. name: "Front",
  8048. image: {
  8049. source: "./media/characters/dannik/front.svg"
  8050. }
  8051. }
  8052. },
  8053. [
  8054. {
  8055. name: "Macro",
  8056. height: math.unit(69.57, "meters"),
  8057. default: true
  8058. },
  8059. ]
  8060. ))
  8061. characterMakers.push(() => makeCharacter(
  8062. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8063. {
  8064. front: {
  8065. height: math.unit(6, "feet"),
  8066. weight: math.unit(120, "lbs"),
  8067. name: "Front",
  8068. image: {
  8069. source: "./media/characters/azura-saharah/front.svg"
  8070. }
  8071. },
  8072. back: {
  8073. height: math.unit(6, "feet"),
  8074. weight: math.unit(120, "lbs"),
  8075. name: "Back",
  8076. image: {
  8077. source: "./media/characters/azura-saharah/back.svg"
  8078. }
  8079. },
  8080. },
  8081. [
  8082. {
  8083. name: "Macro",
  8084. height: math.unit(100, "feet"),
  8085. default: true
  8086. },
  8087. ]
  8088. ))
  8089. characterMakers.push(() => makeCharacter(
  8090. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8091. {
  8092. side: {
  8093. height: math.unit(5 + 4 / 12, "feet"),
  8094. weight: math.unit(163, "lbs"),
  8095. name: "Side",
  8096. image: {
  8097. source: "./media/characters/kennedy/side.svg"
  8098. }
  8099. }
  8100. },
  8101. [
  8102. {
  8103. name: "Standard Doggo",
  8104. height: math.unit(5 + 4 / 12, "feet")
  8105. },
  8106. {
  8107. name: "Big Doggo",
  8108. height: math.unit(25 + 3 / 12, "feet"),
  8109. default: true
  8110. },
  8111. ]
  8112. ))
  8113. characterMakers.push(() => makeCharacter(
  8114. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8115. {
  8116. front: {
  8117. height: math.unit(5 + 5/12, "feet"),
  8118. weight: math.unit(100, "lbs"),
  8119. name: "Front",
  8120. image: {
  8121. source: "./media/characters/odios-de-lunar/front.svg",
  8122. extra: 1468/1323,
  8123. bottom: 22/1490
  8124. }
  8125. }
  8126. },
  8127. [
  8128. {
  8129. name: "Micro",
  8130. height: math.unit(3, "inches")
  8131. },
  8132. {
  8133. name: "Normal",
  8134. height: math.unit(5.5, "feet"),
  8135. default: true
  8136. },
  8137. {
  8138. name: "Macro",
  8139. height: math.unit(100, "feet")
  8140. },
  8141. ]
  8142. ))
  8143. characterMakers.push(() => makeCharacter(
  8144. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8145. {
  8146. back: {
  8147. height: math.unit(6, "feet"),
  8148. weight: math.unit(220, "lbs"),
  8149. name: "Back",
  8150. image: {
  8151. source: "./media/characters/mandake/back.svg"
  8152. }
  8153. }
  8154. },
  8155. [
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(7, "feet"),
  8159. default: true
  8160. },
  8161. {
  8162. name: "Macro",
  8163. height: math.unit(78, "feet")
  8164. },
  8165. {
  8166. name: "Macro+",
  8167. height: math.unit(300, "meters")
  8168. },
  8169. {
  8170. name: "Macro++",
  8171. height: math.unit(2400, "feet")
  8172. },
  8173. {
  8174. name: "Megamacro",
  8175. height: math.unit(5167, "meters")
  8176. },
  8177. {
  8178. name: "Gigamacro",
  8179. height: math.unit(41769, "miles")
  8180. },
  8181. ]
  8182. ))
  8183. characterMakers.push(() => makeCharacter(
  8184. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8185. {
  8186. front: {
  8187. height: math.unit(6, "feet"),
  8188. weight: math.unit(120, "lbs"),
  8189. name: "Front",
  8190. image: {
  8191. source: "./media/characters/yozey/front.svg"
  8192. }
  8193. },
  8194. frontAlt: {
  8195. height: math.unit(6, "feet"),
  8196. weight: math.unit(120, "lbs"),
  8197. name: "Front (Alt)",
  8198. image: {
  8199. source: "./media/characters/yozey/front-alt.svg"
  8200. }
  8201. },
  8202. side: {
  8203. height: math.unit(6, "feet"),
  8204. weight: math.unit(120, "lbs"),
  8205. name: "Side",
  8206. image: {
  8207. source: "./media/characters/yozey/side.svg"
  8208. }
  8209. },
  8210. },
  8211. [
  8212. {
  8213. name: "Micro",
  8214. height: math.unit(3, "inches"),
  8215. default: true
  8216. },
  8217. {
  8218. name: "Normal",
  8219. height: math.unit(6, "feet")
  8220. }
  8221. ]
  8222. ))
  8223. characterMakers.push(() => makeCharacter(
  8224. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8225. {
  8226. front: {
  8227. height: math.unit(6, "feet"),
  8228. weight: math.unit(103, "lbs"),
  8229. name: "Front",
  8230. image: {
  8231. source: "./media/characters/valeska-voss/front.svg"
  8232. }
  8233. }
  8234. },
  8235. [
  8236. {
  8237. name: "Mini-Sized Sub",
  8238. height: math.unit(3.1, "inches")
  8239. },
  8240. {
  8241. name: "Mid-Sized Sub",
  8242. height: math.unit(6.2, "inches")
  8243. },
  8244. {
  8245. name: "Full-Sized Sub",
  8246. height: math.unit(9.3, "inches")
  8247. },
  8248. {
  8249. name: "Normal",
  8250. height: math.unit(5 + 2 / 12, "foot"),
  8251. default: true
  8252. },
  8253. ]
  8254. ))
  8255. characterMakers.push(() => makeCharacter(
  8256. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8257. {
  8258. front: {
  8259. height: math.unit(6, "feet"),
  8260. weight: math.unit(160, "lbs"),
  8261. name: "Front",
  8262. image: {
  8263. source: "./media/characters/gene-zeta/front.svg",
  8264. extra: 3006 / 2826,
  8265. bottom: 182 / 3188
  8266. }
  8267. }
  8268. },
  8269. [
  8270. {
  8271. name: "Micro",
  8272. height: math.unit(6, "inches")
  8273. },
  8274. {
  8275. name: "Normal",
  8276. height: math.unit(5 + 11 / 12, "foot"),
  8277. default: true
  8278. },
  8279. {
  8280. name: "Macro",
  8281. height: math.unit(140, "feet")
  8282. },
  8283. {
  8284. name: "Supercharged",
  8285. height: math.unit(2500, "feet")
  8286. },
  8287. ]
  8288. ))
  8289. characterMakers.push(() => makeCharacter(
  8290. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8291. {
  8292. front: {
  8293. height: math.unit(6, "feet"),
  8294. weight: math.unit(350, "lbs"),
  8295. name: "Front",
  8296. image: {
  8297. source: "./media/characters/razinox/front.svg",
  8298. extra: 1686 / 1548,
  8299. bottom: 28.2 / 1868
  8300. }
  8301. },
  8302. back: {
  8303. height: math.unit(6, "feet"),
  8304. weight: math.unit(350, "lbs"),
  8305. name: "Back",
  8306. image: {
  8307. source: "./media/characters/razinox/back.svg",
  8308. extra: 1660 / 1590,
  8309. bottom: 15 / 1665
  8310. }
  8311. },
  8312. },
  8313. [
  8314. {
  8315. name: "Normal",
  8316. height: math.unit(10 + 8 / 12, "foot")
  8317. },
  8318. {
  8319. name: "Minimacro",
  8320. height: math.unit(15, "foot")
  8321. },
  8322. {
  8323. name: "Macro",
  8324. height: math.unit(60, "foot"),
  8325. default: true
  8326. },
  8327. {
  8328. name: "Megamacro",
  8329. height: math.unit(5, "miles")
  8330. },
  8331. {
  8332. name: "Gigamacro",
  8333. height: math.unit(6000, "miles")
  8334. },
  8335. ]
  8336. ))
  8337. characterMakers.push(() => makeCharacter(
  8338. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8339. {
  8340. front: {
  8341. height: math.unit(6, "feet"),
  8342. weight: math.unit(150, "lbs"),
  8343. name: "Front",
  8344. image: {
  8345. source: "./media/characters/cobalt/front.svg"
  8346. }
  8347. }
  8348. },
  8349. [
  8350. {
  8351. name: "Normal",
  8352. height: math.unit(8 + 1 / 12, "foot")
  8353. },
  8354. {
  8355. name: "Macro",
  8356. height: math.unit(111, "foot"),
  8357. default: true
  8358. },
  8359. {
  8360. name: "Supracosmic",
  8361. height: math.unit(1e42, "feet")
  8362. },
  8363. ]
  8364. ))
  8365. characterMakers.push(() => makeCharacter(
  8366. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8367. {
  8368. front: {
  8369. height: math.unit(5, "inches"),
  8370. name: "Front",
  8371. image: {
  8372. source: "./media/characters/amanda/front.svg",
  8373. extra: 926/791,
  8374. bottom: 38/964
  8375. }
  8376. },
  8377. back: {
  8378. height: math.unit(5, "inches"),
  8379. name: "Back",
  8380. image: {
  8381. source: "./media/characters/amanda/back.svg",
  8382. extra: 909/805,
  8383. bottom: 43/952
  8384. }
  8385. },
  8386. },
  8387. [
  8388. {
  8389. name: "Micro",
  8390. height: math.unit(5, "inches"),
  8391. default: true
  8392. },
  8393. ]
  8394. ))
  8395. characterMakers.push(() => makeCharacter(
  8396. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8397. {
  8398. front: {
  8399. height: math.unit(2.75, "meters"),
  8400. weight: math.unit(1200, "lb"),
  8401. name: "Front",
  8402. image: {
  8403. source: "./media/characters/teal/front.svg",
  8404. extra: 2463 / 2320,
  8405. bottom: 166 / 2629
  8406. }
  8407. },
  8408. back: {
  8409. height: math.unit(2.75, "meters"),
  8410. weight: math.unit(1200, "lb"),
  8411. name: "Back",
  8412. image: {
  8413. source: "./media/characters/teal/back.svg",
  8414. extra: 2580 / 2489,
  8415. bottom: 151 / 2731
  8416. }
  8417. },
  8418. sitting: {
  8419. height: math.unit(1.9, "meters"),
  8420. weight: math.unit(1200, "lb"),
  8421. name: "Sitting",
  8422. image: {
  8423. source: "./media/characters/teal/sitting.svg",
  8424. extra: 623 / 590,
  8425. bottom: 121 / 744
  8426. }
  8427. },
  8428. standing: {
  8429. height: math.unit(2.75, "meters"),
  8430. weight: math.unit(1200, "lb"),
  8431. name: "Standing",
  8432. image: {
  8433. source: "./media/characters/teal/standing.svg",
  8434. extra: 923 / 893,
  8435. bottom: 60 / 983
  8436. }
  8437. },
  8438. stretching: {
  8439. height: math.unit(3.65, "meters"),
  8440. weight: math.unit(1200, "lb"),
  8441. name: "Stretching",
  8442. image: {
  8443. source: "./media/characters/teal/stretching.svg",
  8444. extra: 1276 / 1244,
  8445. bottom: 0 / 1276
  8446. }
  8447. },
  8448. legged: {
  8449. height: math.unit(1.3, "meters"),
  8450. weight: math.unit(100, "lb"),
  8451. name: "Legged",
  8452. image: {
  8453. source: "./media/characters/teal/legged.svg",
  8454. extra: 462 / 437,
  8455. bottom: 24 / 486
  8456. }
  8457. },
  8458. naga: {
  8459. height: math.unit(5.4, "meters"),
  8460. weight: math.unit(4000, "lb"),
  8461. name: "Naga",
  8462. image: {
  8463. source: "./media/characters/teal/naga.svg",
  8464. extra: 1902 / 1858,
  8465. bottom: 0 / 1902
  8466. }
  8467. },
  8468. hand: {
  8469. height: math.unit(0.52, "meters"),
  8470. name: "Hand",
  8471. image: {
  8472. source: "./media/characters/teal/hand.svg"
  8473. }
  8474. },
  8475. maw: {
  8476. height: math.unit(0.43, "meters"),
  8477. name: "Maw",
  8478. image: {
  8479. source: "./media/characters/teal/maw.svg"
  8480. }
  8481. },
  8482. slit: {
  8483. height: math.unit(0.25, "meters"),
  8484. name: "Slit",
  8485. image: {
  8486. source: "./media/characters/teal/slit.svg"
  8487. }
  8488. },
  8489. },
  8490. [
  8491. {
  8492. name: "Normal",
  8493. height: math.unit(2.75, "meters"),
  8494. default: true
  8495. },
  8496. {
  8497. name: "Macro",
  8498. height: math.unit(300, "feet")
  8499. },
  8500. {
  8501. name: "Macro+",
  8502. height: math.unit(2000, "feet")
  8503. },
  8504. ]
  8505. ))
  8506. characterMakers.push(() => makeCharacter(
  8507. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8508. {
  8509. frontCat: {
  8510. height: math.unit(6, "feet"),
  8511. weight: math.unit(180, "lbs"),
  8512. name: "Front (Cat)",
  8513. image: {
  8514. source: "./media/characters/ravin-amulet/front-cat.svg"
  8515. }
  8516. },
  8517. frontCatAlt: {
  8518. height: math.unit(6, "feet"),
  8519. weight: math.unit(180, "lbs"),
  8520. name: "Front (Alt, Cat)",
  8521. image: {
  8522. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8523. }
  8524. },
  8525. frontWerewolf: {
  8526. height: math.unit(6 * 1.2, "feet"),
  8527. weight: math.unit(225, "lbs"),
  8528. name: "Front (Werewolf)",
  8529. image: {
  8530. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8531. }
  8532. },
  8533. backWerewolf: {
  8534. height: math.unit(6 * 1.2, "feet"),
  8535. weight: math.unit(225, "lbs"),
  8536. name: "Back (Werewolf)",
  8537. image: {
  8538. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8539. }
  8540. },
  8541. },
  8542. [
  8543. {
  8544. name: "Nano",
  8545. height: math.unit(1, "micrometer")
  8546. },
  8547. {
  8548. name: "Micro",
  8549. height: math.unit(1, "inch")
  8550. },
  8551. {
  8552. name: "Normal",
  8553. height: math.unit(6, "feet"),
  8554. default: true
  8555. },
  8556. {
  8557. name: "Macro",
  8558. height: math.unit(60, "feet")
  8559. }
  8560. ]
  8561. ))
  8562. characterMakers.push(() => makeCharacter(
  8563. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8564. {
  8565. front: {
  8566. height: math.unit(6, "feet"),
  8567. weight: math.unit(165, "lbs"),
  8568. name: "Front",
  8569. image: {
  8570. source: "./media/characters/fluoresce/front.svg"
  8571. }
  8572. }
  8573. },
  8574. [
  8575. {
  8576. name: "Micro",
  8577. height: math.unit(6, "cm")
  8578. },
  8579. {
  8580. name: "Normal",
  8581. height: math.unit(5 + 7 / 12, "feet"),
  8582. default: true
  8583. },
  8584. {
  8585. name: "Macro",
  8586. height: math.unit(56, "feet")
  8587. },
  8588. {
  8589. name: "Megamacro",
  8590. height: math.unit(1.9, "miles")
  8591. },
  8592. ]
  8593. ))
  8594. characterMakers.push(() => makeCharacter(
  8595. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8596. {
  8597. front: {
  8598. height: math.unit(9 + 6 / 12, "feet"),
  8599. weight: math.unit(523, "lbs"),
  8600. name: "Side",
  8601. image: {
  8602. source: "./media/characters/aurora/side.svg",
  8603. extra: 474/393,
  8604. bottom: 5/479
  8605. }
  8606. }
  8607. },
  8608. [
  8609. {
  8610. name: "Normal",
  8611. height: math.unit(9 + 6 / 12, "feet")
  8612. },
  8613. {
  8614. name: "Macro",
  8615. height: math.unit(96, "feet"),
  8616. default: true
  8617. },
  8618. {
  8619. name: "Macro+",
  8620. height: math.unit(243, "feet")
  8621. },
  8622. ]
  8623. ))
  8624. characterMakers.push(() => makeCharacter(
  8625. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8626. {
  8627. front: {
  8628. height: math.unit(194, "cm"),
  8629. weight: math.unit(90, "kg"),
  8630. name: "Front",
  8631. image: {
  8632. source: "./media/characters/ranek/front.svg",
  8633. extra: 1862/1791,
  8634. bottom: 80/1942
  8635. }
  8636. },
  8637. back: {
  8638. height: math.unit(194, "cm"),
  8639. weight: math.unit(90, "kg"),
  8640. name: "Back",
  8641. image: {
  8642. source: "./media/characters/ranek/back.svg",
  8643. extra: 1853/1787,
  8644. bottom: 74/1927
  8645. }
  8646. },
  8647. feral: {
  8648. height: math.unit(30, "cm"),
  8649. weight: math.unit(1.6, "lbs"),
  8650. name: "Feral",
  8651. image: {
  8652. source: "./media/characters/ranek/feral.svg",
  8653. extra: 990/631,
  8654. bottom: 29/1019
  8655. }
  8656. },
  8657. },
  8658. [
  8659. {
  8660. name: "Normal",
  8661. height: math.unit(194, "cm"),
  8662. default: true
  8663. },
  8664. {
  8665. name: "Macro",
  8666. height: math.unit(100, "meters")
  8667. },
  8668. ]
  8669. ))
  8670. characterMakers.push(() => makeCharacter(
  8671. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8672. {
  8673. front: {
  8674. height: math.unit(5 + 6 / 12, "feet"),
  8675. weight: math.unit(153, "lbs"),
  8676. name: "Front",
  8677. image: {
  8678. source: "./media/characters/andrew-cooper/front.svg"
  8679. }
  8680. },
  8681. },
  8682. [
  8683. {
  8684. name: "Nano",
  8685. height: math.unit(1, "mm")
  8686. },
  8687. {
  8688. name: "Micro",
  8689. height: math.unit(2, "inches")
  8690. },
  8691. {
  8692. name: "Normal",
  8693. height: math.unit(5 + 6 / 12, "feet"),
  8694. default: true
  8695. }
  8696. ]
  8697. ))
  8698. characterMakers.push(() => makeCharacter(
  8699. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8700. {
  8701. front: {
  8702. height: math.unit(6, "feet"),
  8703. weight: math.unit(180, "lbs"),
  8704. name: "Front",
  8705. image: {
  8706. source: "./media/characters/akane-sato/front.svg",
  8707. extra: 1219 / 1140
  8708. }
  8709. },
  8710. back: {
  8711. height: math.unit(6, "feet"),
  8712. weight: math.unit(180, "lbs"),
  8713. name: "Back",
  8714. image: {
  8715. source: "./media/characters/akane-sato/back.svg",
  8716. extra: 1219 / 1170
  8717. }
  8718. },
  8719. },
  8720. [
  8721. {
  8722. name: "Normal",
  8723. height: math.unit(2.5, "meters")
  8724. },
  8725. {
  8726. name: "Macro",
  8727. height: math.unit(250, "meters"),
  8728. default: true
  8729. },
  8730. {
  8731. name: "Megamacro",
  8732. height: math.unit(25, "km")
  8733. },
  8734. ]
  8735. ))
  8736. characterMakers.push(() => makeCharacter(
  8737. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8738. {
  8739. front: {
  8740. height: math.unit(6, "feet"),
  8741. weight: math.unit(65, "kg"),
  8742. name: "Front",
  8743. image: {
  8744. source: "./media/characters/rook/front.svg",
  8745. extra: 960 / 950
  8746. }
  8747. }
  8748. },
  8749. [
  8750. {
  8751. name: "Normal",
  8752. height: math.unit(8.8, "feet")
  8753. },
  8754. {
  8755. name: "Macro",
  8756. height: math.unit(88, "feet"),
  8757. default: true
  8758. },
  8759. {
  8760. name: "Megamacro",
  8761. height: math.unit(8, "miles")
  8762. },
  8763. ]
  8764. ))
  8765. characterMakers.push(() => makeCharacter(
  8766. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8767. {
  8768. front: {
  8769. height: math.unit(12 + 2 / 12, "feet"),
  8770. weight: math.unit(808, "lbs"),
  8771. name: "Front",
  8772. image: {
  8773. source: "./media/characters/prodigy/front.svg"
  8774. }
  8775. }
  8776. },
  8777. [
  8778. {
  8779. name: "Normal",
  8780. height: math.unit(12 + 2 / 12, "feet"),
  8781. default: true
  8782. },
  8783. {
  8784. name: "Macro",
  8785. height: math.unit(143, "feet")
  8786. },
  8787. {
  8788. name: "Macro+",
  8789. height: math.unit(400, "feet")
  8790. },
  8791. ]
  8792. ))
  8793. characterMakers.push(() => makeCharacter(
  8794. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8795. {
  8796. front: {
  8797. height: math.unit(6, "feet"),
  8798. weight: math.unit(225, "lbs"),
  8799. name: "Front",
  8800. image: {
  8801. source: "./media/characters/daniel/front.svg"
  8802. }
  8803. },
  8804. leaning: {
  8805. height: math.unit(6, "feet"),
  8806. weight: math.unit(225, "lbs"),
  8807. name: "Leaning",
  8808. image: {
  8809. source: "./media/characters/daniel/leaning.svg"
  8810. }
  8811. },
  8812. },
  8813. [
  8814. {
  8815. name: "Macro",
  8816. height: math.unit(1000, "feet"),
  8817. default: true
  8818. },
  8819. ]
  8820. ))
  8821. characterMakers.push(() => makeCharacter(
  8822. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8823. {
  8824. front: {
  8825. height: math.unit(6, "feet"),
  8826. weight: math.unit(88, "lbs"),
  8827. name: "Front",
  8828. image: {
  8829. source: "./media/characters/chiros/front.svg",
  8830. extra: 306 / 226
  8831. }
  8832. },
  8833. side: {
  8834. height: math.unit(6, "feet"),
  8835. weight: math.unit(88, "lbs"),
  8836. name: "Side",
  8837. image: {
  8838. source: "./media/characters/chiros/side.svg",
  8839. extra: 306 / 226
  8840. }
  8841. },
  8842. },
  8843. [
  8844. {
  8845. name: "Normal",
  8846. height: math.unit(6, "cm"),
  8847. default: true
  8848. },
  8849. ]
  8850. ))
  8851. characterMakers.push(() => makeCharacter(
  8852. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8853. {
  8854. front: {
  8855. height: math.unit(6, "feet"),
  8856. weight: math.unit(100, "lbs"),
  8857. name: "Front",
  8858. image: {
  8859. source: "./media/characters/selka/front.svg",
  8860. extra: 947 / 887
  8861. }
  8862. }
  8863. },
  8864. [
  8865. {
  8866. name: "Normal",
  8867. height: math.unit(5, "cm"),
  8868. default: true
  8869. },
  8870. ]
  8871. ))
  8872. characterMakers.push(() => makeCharacter(
  8873. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8874. {
  8875. front: {
  8876. height: math.unit(8 + 3 / 12, "feet"),
  8877. weight: math.unit(424, "lbs"),
  8878. name: "Front",
  8879. image: {
  8880. source: "./media/characters/verin/front.svg",
  8881. extra: 1845 / 1550
  8882. }
  8883. },
  8884. frontArmored: {
  8885. height: math.unit(8 + 3 / 12, "feet"),
  8886. weight: math.unit(424, "lbs"),
  8887. name: "Front (Armored)",
  8888. image: {
  8889. source: "./media/characters/verin/front-armor.svg",
  8890. extra: 1845 / 1550,
  8891. bottom: 0.01
  8892. }
  8893. },
  8894. back: {
  8895. height: math.unit(8 + 3 / 12, "feet"),
  8896. weight: math.unit(424, "lbs"),
  8897. name: "Back",
  8898. image: {
  8899. source: "./media/characters/verin/back.svg",
  8900. bottom: 0.1,
  8901. extra: 1
  8902. }
  8903. },
  8904. foot: {
  8905. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8906. name: "Foot",
  8907. image: {
  8908. source: "./media/characters/verin/foot.svg"
  8909. }
  8910. },
  8911. },
  8912. [
  8913. {
  8914. name: "Normal",
  8915. height: math.unit(8 + 3 / 12, "feet")
  8916. },
  8917. {
  8918. name: "Minimacro",
  8919. height: math.unit(21, "feet"),
  8920. default: true
  8921. },
  8922. {
  8923. name: "Macro",
  8924. height: math.unit(626, "feet")
  8925. },
  8926. ]
  8927. ))
  8928. characterMakers.push(() => makeCharacter(
  8929. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8930. {
  8931. front: {
  8932. height: math.unit(2.718, "meters"),
  8933. weight: math.unit(150, "lbs"),
  8934. name: "Front",
  8935. image: {
  8936. source: "./media/characters/sovrim-terraquian/front.svg",
  8937. extra: 1752/1689,
  8938. bottom: 36/1788
  8939. }
  8940. },
  8941. back: {
  8942. height: math.unit(2.718, "meters"),
  8943. weight: math.unit(150, "lbs"),
  8944. name: "Back",
  8945. image: {
  8946. source: "./media/characters/sovrim-terraquian/back.svg",
  8947. extra: 1698/1657,
  8948. bottom: 58/1756
  8949. }
  8950. },
  8951. tongue: {
  8952. height: math.unit(2.865, "feet"),
  8953. name: "Tongue",
  8954. image: {
  8955. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8956. }
  8957. },
  8958. hand: {
  8959. height: math.unit(1.61, "feet"),
  8960. name: "Hand",
  8961. image: {
  8962. source: "./media/characters/sovrim-terraquian/hand.svg"
  8963. }
  8964. },
  8965. foot: {
  8966. height: math.unit(1.05, "feet"),
  8967. name: "Foot",
  8968. image: {
  8969. source: "./media/characters/sovrim-terraquian/foot.svg"
  8970. }
  8971. },
  8972. footAlt: {
  8973. height: math.unit(0.88, "feet"),
  8974. name: "Foot (Alt)",
  8975. image: {
  8976. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8977. }
  8978. },
  8979. },
  8980. [
  8981. {
  8982. name: "Micro",
  8983. height: math.unit(2, "inches")
  8984. },
  8985. {
  8986. name: "Small",
  8987. height: math.unit(1, "meter")
  8988. },
  8989. {
  8990. name: "Normal",
  8991. height: math.unit(Math.E, "meters"),
  8992. default: true
  8993. },
  8994. {
  8995. name: "Macro",
  8996. height: math.unit(20, "meters")
  8997. },
  8998. {
  8999. name: "Macro+",
  9000. height: math.unit(400, "meters")
  9001. },
  9002. ]
  9003. ))
  9004. characterMakers.push(() => makeCharacter(
  9005. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9006. {
  9007. front: {
  9008. height: math.unit(7, "feet"),
  9009. weight: math.unit(489, "lbs"),
  9010. name: "Front",
  9011. image: {
  9012. source: "./media/characters/reece-silvermane/front.svg",
  9013. bottom: 0.02,
  9014. extra: 1
  9015. }
  9016. },
  9017. },
  9018. [
  9019. {
  9020. name: "Macro",
  9021. height: math.unit(1.5, "miles"),
  9022. default: true
  9023. },
  9024. ]
  9025. ))
  9026. characterMakers.push(() => makeCharacter(
  9027. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9028. {
  9029. front: {
  9030. height: math.unit(6, "feet"),
  9031. weight: math.unit(78, "kg"),
  9032. name: "Front",
  9033. image: {
  9034. source: "./media/characters/kane/front.svg",
  9035. extra: 978 / 899
  9036. }
  9037. },
  9038. },
  9039. [
  9040. {
  9041. name: "Normal",
  9042. height: math.unit(2.1, "m"),
  9043. },
  9044. {
  9045. name: "Macro",
  9046. height: math.unit(1, "km"),
  9047. default: true
  9048. },
  9049. ]
  9050. ))
  9051. characterMakers.push(() => makeCharacter(
  9052. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9053. {
  9054. front: {
  9055. height: math.unit(6, "feet"),
  9056. weight: math.unit(200, "kg"),
  9057. name: "Front",
  9058. image: {
  9059. source: "./media/characters/tegon/front.svg",
  9060. bottom: 0.01,
  9061. extra: 1
  9062. }
  9063. },
  9064. },
  9065. [
  9066. {
  9067. name: "Micro",
  9068. height: math.unit(1, "inch")
  9069. },
  9070. {
  9071. name: "Normal",
  9072. height: math.unit(6 + 3 / 12, "feet"),
  9073. default: true
  9074. },
  9075. {
  9076. name: "Macro",
  9077. height: math.unit(300, "feet")
  9078. },
  9079. {
  9080. name: "Megamacro",
  9081. height: math.unit(69, "miles")
  9082. },
  9083. ]
  9084. ))
  9085. characterMakers.push(() => makeCharacter(
  9086. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9087. {
  9088. side: {
  9089. height: math.unit(6, "feet"),
  9090. weight: math.unit(2304, "lbs"),
  9091. name: "Side",
  9092. image: {
  9093. source: "./media/characters/arcturax/side.svg",
  9094. extra: 790 / 376,
  9095. bottom: 0.01
  9096. }
  9097. },
  9098. },
  9099. [
  9100. {
  9101. name: "Micro",
  9102. height: math.unit(2, "inch")
  9103. },
  9104. {
  9105. name: "Normal",
  9106. height: math.unit(6, "feet")
  9107. },
  9108. {
  9109. name: "Macro",
  9110. height: math.unit(39, "feet"),
  9111. default: true
  9112. },
  9113. {
  9114. name: "Megamacro",
  9115. height: math.unit(7, "miles")
  9116. },
  9117. ]
  9118. ))
  9119. characterMakers.push(() => makeCharacter(
  9120. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9121. {
  9122. front: {
  9123. height: math.unit(6, "feet"),
  9124. weight: math.unit(50, "lbs"),
  9125. name: "Front",
  9126. image: {
  9127. source: "./media/characters/sentri/front.svg",
  9128. extra: 1750 / 1570,
  9129. bottom: 0.025
  9130. }
  9131. },
  9132. frontAlt: {
  9133. height: math.unit(6, "feet"),
  9134. weight: math.unit(50, "lbs"),
  9135. name: "Front (Alt)",
  9136. image: {
  9137. source: "./media/characters/sentri/front-alt.svg",
  9138. extra: 1750 / 1570,
  9139. bottom: 0.025
  9140. }
  9141. },
  9142. },
  9143. [
  9144. {
  9145. name: "Normal",
  9146. height: math.unit(15, "feet"),
  9147. default: true
  9148. },
  9149. {
  9150. name: "Macro",
  9151. height: math.unit(2500, "feet")
  9152. }
  9153. ]
  9154. ))
  9155. characterMakers.push(() => makeCharacter(
  9156. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9157. {
  9158. front: {
  9159. height: math.unit(5 + 8 / 12, "feet"),
  9160. weight: math.unit(130, "lbs"),
  9161. name: "Front",
  9162. image: {
  9163. source: "./media/characters/corvin/front.svg",
  9164. extra: 1803 / 1629
  9165. }
  9166. },
  9167. frontShirt: {
  9168. height: math.unit(5 + 8 / 12, "feet"),
  9169. weight: math.unit(130, "lbs"),
  9170. name: "Front (Shirt)",
  9171. image: {
  9172. source: "./media/characters/corvin/front-shirt.svg",
  9173. extra: 1803 / 1629
  9174. }
  9175. },
  9176. frontPoncho: {
  9177. height: math.unit(5 + 8 / 12, "feet"),
  9178. weight: math.unit(130, "lbs"),
  9179. name: "Front (Poncho)",
  9180. image: {
  9181. source: "./media/characters/corvin/front-poncho.svg",
  9182. extra: 1803 / 1629
  9183. }
  9184. },
  9185. side: {
  9186. height: math.unit(5 + 8 / 12, "feet"),
  9187. weight: math.unit(130, "lbs"),
  9188. name: "Side",
  9189. image: {
  9190. source: "./media/characters/corvin/side.svg",
  9191. extra: 1012 / 945
  9192. }
  9193. },
  9194. back: {
  9195. height: math.unit(5 + 8 / 12, "feet"),
  9196. weight: math.unit(130, "lbs"),
  9197. name: "Back",
  9198. image: {
  9199. source: "./media/characters/corvin/back.svg",
  9200. extra: 1803 / 1629
  9201. }
  9202. },
  9203. },
  9204. [
  9205. {
  9206. name: "Micro",
  9207. height: math.unit(3, "inches")
  9208. },
  9209. {
  9210. name: "Normal",
  9211. height: math.unit(5 + 8 / 12, "feet")
  9212. },
  9213. {
  9214. name: "Macro",
  9215. height: math.unit(300, "feet"),
  9216. default: true
  9217. },
  9218. {
  9219. name: "Megamacro",
  9220. height: math.unit(500, "miles")
  9221. }
  9222. ]
  9223. ))
  9224. characterMakers.push(() => makeCharacter(
  9225. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9226. {
  9227. front: {
  9228. height: math.unit(6, "feet"),
  9229. weight: math.unit(135, "lbs"),
  9230. name: "Front",
  9231. image: {
  9232. source: "./media/characters/q/front.svg",
  9233. extra: 854 / 752,
  9234. bottom: 0.005
  9235. }
  9236. },
  9237. back: {
  9238. height: math.unit(6, "feet"),
  9239. weight: math.unit(130, "lbs"),
  9240. name: "Back",
  9241. image: {
  9242. source: "./media/characters/q/back.svg",
  9243. extra: 854 / 752
  9244. }
  9245. },
  9246. },
  9247. [
  9248. {
  9249. name: "Macro",
  9250. height: math.unit(90, "feet"),
  9251. default: true
  9252. },
  9253. {
  9254. name: "Extra Macro",
  9255. height: math.unit(300, "feet"),
  9256. },
  9257. {
  9258. name: "BIG WALF",
  9259. height: math.unit(750, "feet"),
  9260. },
  9261. ]
  9262. ))
  9263. characterMakers.push(() => makeCharacter(
  9264. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9265. {
  9266. front: {
  9267. height: math.unit(3, "feet"),
  9268. weight: math.unit(28, "lbs"),
  9269. name: "Front",
  9270. image: {
  9271. source: "./media/characters/citrine/front.svg"
  9272. }
  9273. }
  9274. },
  9275. [
  9276. {
  9277. name: "Normal",
  9278. height: math.unit(3, "feet"),
  9279. default: true
  9280. }
  9281. ]
  9282. ))
  9283. characterMakers.push(() => makeCharacter(
  9284. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9285. {
  9286. front: {
  9287. height: math.unit(14, "feet"),
  9288. weight: math.unit(1450, "kg"),
  9289. preyCapacity: math.unit(15, "people"),
  9290. name: "Front",
  9291. image: {
  9292. source: "./media/characters/aura-starwind/front.svg",
  9293. extra: 1440/1327,
  9294. bottom: 11/1451
  9295. }
  9296. },
  9297. side: {
  9298. height: math.unit(14, "feet"),
  9299. weight: math.unit(1450, "kg"),
  9300. preyCapacity: math.unit(15, "people"),
  9301. name: "Side",
  9302. image: {
  9303. source: "./media/characters/aura-starwind/side.svg",
  9304. extra: 1654 / 1497
  9305. }
  9306. },
  9307. taur: {
  9308. height: math.unit(18, "feet"),
  9309. weight: math.unit(5500, "kg"),
  9310. preyCapacity: math.unit(50, "people"),
  9311. name: "Taur",
  9312. image: {
  9313. source: "./media/characters/aura-starwind/taur.svg",
  9314. extra: 1760 / 1650
  9315. }
  9316. },
  9317. feral: {
  9318. height: math.unit(46, "feet"),
  9319. weight: math.unit(25000, "kg"),
  9320. preyCapacity: math.unit(120, "people"),
  9321. name: "Feral",
  9322. image: {
  9323. source: "./media/characters/aura-starwind/feral.svg"
  9324. }
  9325. },
  9326. },
  9327. [
  9328. {
  9329. name: "Normal",
  9330. height: math.unit(14, "feet"),
  9331. default: true
  9332. },
  9333. {
  9334. name: "Macro",
  9335. height: math.unit(50, "meters")
  9336. },
  9337. {
  9338. name: "Megamacro",
  9339. height: math.unit(5000, "meters")
  9340. },
  9341. {
  9342. name: "Gigamacro",
  9343. height: math.unit(100000, "kilometers")
  9344. },
  9345. ]
  9346. ))
  9347. characterMakers.push(() => makeCharacter(
  9348. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9349. {
  9350. front: {
  9351. height: math.unit(2 + 7 / 12, "feet"),
  9352. weight: math.unit(32, "lbs"),
  9353. name: "Front",
  9354. image: {
  9355. source: "./media/characters/rivet/front.svg",
  9356. extra: 1716 / 1658,
  9357. bottom: 0.03
  9358. }
  9359. },
  9360. foot: {
  9361. height: math.unit(0.551, "feet"),
  9362. name: "Rivet's Foot",
  9363. image: {
  9364. source: "./media/characters/rivet/foot.svg"
  9365. },
  9366. rename: true
  9367. }
  9368. },
  9369. [
  9370. {
  9371. name: "Micro",
  9372. height: math.unit(1.5, "inches"),
  9373. },
  9374. {
  9375. name: "Normal",
  9376. height: math.unit(2 + 7 / 12, "feet"),
  9377. default: true
  9378. },
  9379. {
  9380. name: "Macro",
  9381. height: math.unit(85, "feet")
  9382. },
  9383. {
  9384. name: "Megamacro",
  9385. height: math.unit(2.2, "km")
  9386. }
  9387. ]
  9388. ))
  9389. characterMakers.push(() => makeCharacter(
  9390. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9391. {
  9392. front: {
  9393. height: math.unit(5 + 9 / 12, "feet"),
  9394. weight: math.unit(150, "lbs"),
  9395. name: "Front",
  9396. image: {
  9397. source: "./media/characters/coffee/front.svg",
  9398. extra: 946/880,
  9399. bottom: 66/1012
  9400. }
  9401. },
  9402. foot: {
  9403. height: math.unit(1.29, "feet"),
  9404. name: "Foot",
  9405. image: {
  9406. source: "./media/characters/coffee/foot.svg"
  9407. }
  9408. },
  9409. },
  9410. [
  9411. {
  9412. name: "Micro",
  9413. height: math.unit(2, "inches"),
  9414. },
  9415. {
  9416. name: "Normal",
  9417. height: math.unit(5 + 9 / 12, "feet"),
  9418. default: true
  9419. },
  9420. {
  9421. name: "Macro",
  9422. height: math.unit(800, "feet")
  9423. },
  9424. {
  9425. name: "Megamacro",
  9426. height: math.unit(25, "miles")
  9427. }
  9428. ]
  9429. ))
  9430. characterMakers.push(() => makeCharacter(
  9431. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9432. {
  9433. front: {
  9434. height: math.unit(6, "feet"),
  9435. weight: math.unit(200, "lbs"),
  9436. name: "Front",
  9437. image: {
  9438. source: "./media/characters/chari-gal/front.svg",
  9439. extra: 735/649,
  9440. bottom: 55/790
  9441. },
  9442. form: "normal",
  9443. default: true
  9444. },
  9445. back: {
  9446. height: math.unit(6, "feet"),
  9447. weight: math.unit(200, "lb"),
  9448. name: "Back",
  9449. image: {
  9450. source: "./media/characters/chari-gal/back.svg",
  9451. extra: 762/666,
  9452. bottom: 31/793
  9453. },
  9454. form: "normal"
  9455. },
  9456. mouth: {
  9457. height: math.unit(1.35, "feet"),
  9458. name: "Mouth",
  9459. image: {
  9460. source: "./media/characters/chari-gal/mouth.svg"
  9461. },
  9462. form: "normal"
  9463. },
  9464. gigantamax: {
  9465. height: math.unit(6 * 16, "feet"),
  9466. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9467. name: "Gigantamax",
  9468. image: {
  9469. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9470. extra: 1507/1149,
  9471. bottom: 254/1761
  9472. },
  9473. form: "gigantamax",
  9474. default: true
  9475. },
  9476. },
  9477. [
  9478. {
  9479. name: "Normal",
  9480. height: math.unit(5 + 7 / 12, "feet"),
  9481. form: "normal",
  9482. },
  9483. {
  9484. name: "Macro",
  9485. height: math.unit(200, "feet"),
  9486. default: true,
  9487. form: "normal"
  9488. },
  9489. {
  9490. name: "Normal",
  9491. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9492. form: "gigantamax",
  9493. },
  9494. {
  9495. name: "Macro",
  9496. height: math.unit(16 * 200, "feet"),
  9497. default: true,
  9498. form: "gigantamax"
  9499. },
  9500. ],
  9501. {
  9502. "normal": {
  9503. name: "Normal",
  9504. default: true
  9505. },
  9506. "gigantamax": {
  9507. name: "Gigantamax",
  9508. },
  9509. }
  9510. ))
  9511. characterMakers.push(() => makeCharacter(
  9512. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9513. {
  9514. front: {
  9515. height: math.unit(6, "feet"),
  9516. weight: math.unit(150, "lbs"),
  9517. name: "Front",
  9518. image: {
  9519. source: "./media/characters/nova/front.svg",
  9520. extra: 5000 / 4722,
  9521. bottom: 0.02
  9522. }
  9523. }
  9524. },
  9525. [
  9526. {
  9527. name: "Micro-",
  9528. height: math.unit(0.8, "inches")
  9529. },
  9530. {
  9531. name: "Micro",
  9532. height: math.unit(2, "inches"),
  9533. default: true
  9534. },
  9535. ]
  9536. ))
  9537. characterMakers.push(() => makeCharacter(
  9538. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9539. {
  9540. koboldFront: {
  9541. height: math.unit(3 + 1 / 12, "feet"),
  9542. weight: math.unit(21.7, "lbs"),
  9543. name: "Front",
  9544. image: {
  9545. source: "./media/characters/argent/kobold-front.svg",
  9546. extra: 1471 / 1331,
  9547. bottom: 100.8 / 1575.5
  9548. },
  9549. form: "kobold",
  9550. default: true
  9551. },
  9552. dragonFront: {
  9553. height: math.unit(75, "inches"),
  9554. name: "Front",
  9555. image: {
  9556. source: "./media/characters/argent/dragon-front.svg",
  9557. extra: 1389/1248,
  9558. bottom: 54/1443
  9559. },
  9560. form: "dragon",
  9561. },
  9562. dragonBack: {
  9563. height: math.unit(75, "inches"),
  9564. name: "Back",
  9565. image: {
  9566. source: "./media/characters/argent/dragon-back.svg",
  9567. extra: 1399/1271,
  9568. bottom: 23/1422
  9569. },
  9570. form: "dragon",
  9571. },
  9572. dragonDressed: {
  9573. height: math.unit(75, "inches"),
  9574. name: "Dressed",
  9575. image: {
  9576. source: "./media/characters/argent/dragon-dressed.svg",
  9577. extra: 1350/1215,
  9578. bottom: 26/1376
  9579. },
  9580. form: "dragon"
  9581. },
  9582. dragonHead: {
  9583. height: math.unit(23.5, "inches"),
  9584. name: "Head",
  9585. image: {
  9586. source: "./media/characters/argent/dragon-head.svg"
  9587. },
  9588. form: "dragon",
  9589. },
  9590. },
  9591. [
  9592. {
  9593. name: "Micro",
  9594. height: math.unit(2, "inches"),
  9595. form: "kobold",
  9596. },
  9597. {
  9598. name: "Normal",
  9599. height: math.unit(3 + 1 / 12, "feet"),
  9600. form: "kobold",
  9601. default: true
  9602. },
  9603. {
  9604. name: "Macro",
  9605. height: math.unit(120, "feet"),
  9606. form: "kobold",
  9607. },
  9608. {
  9609. name: "Speck",
  9610. height: math.unit(1, "mm"),
  9611. form: "dragon",
  9612. },
  9613. {
  9614. name: "Tiny",
  9615. height: math.unit(1, "cm"),
  9616. form: "dragon",
  9617. },
  9618. {
  9619. name: "Micro",
  9620. height: math.unit(5, "cm"),
  9621. form: "dragon",
  9622. },
  9623. {
  9624. name: "Normal",
  9625. height: math.unit(75, "inches"),
  9626. form: "dragon",
  9627. default: true
  9628. },
  9629. {
  9630. name: "Extra Tall",
  9631. height: math.unit(9, "feet"),
  9632. form: "dragon",
  9633. },
  9634. {
  9635. name: "Inconvenient",
  9636. height: math.unit(5, "meters"),
  9637. form: "dragon",
  9638. },
  9639. {
  9640. name: "Macro",
  9641. height: math.unit(70, "meters"),
  9642. form: "dragon",
  9643. },
  9644. {
  9645. name: "Macro+",
  9646. height: math.unit(250, "meters"),
  9647. form: "dragon",
  9648. },
  9649. {
  9650. name: "Megamacro",
  9651. height: math.unit(20, "km"),
  9652. form: "dragon",
  9653. },
  9654. {
  9655. name: "Mountainous",
  9656. height: math.unit(100, "km"),
  9657. form: "dragon",
  9658. },
  9659. {
  9660. name: "Continental",
  9661. height: math.unit(2, "megameters"),
  9662. form: "dragon",
  9663. },
  9664. {
  9665. name: "Too Big",
  9666. height: math.unit(900, "megameters"),
  9667. form: "dragon",
  9668. },
  9669. ],
  9670. {
  9671. "kobold": {
  9672. name: "Kobold",
  9673. default: true
  9674. },
  9675. "dragon": {
  9676. name: "Dragon",
  9677. },
  9678. }
  9679. ))
  9680. characterMakers.push(() => makeCharacter(
  9681. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9682. {
  9683. lamp: {
  9684. height: math.unit(7 * 1559 / 989, "feet"),
  9685. name: "Magic Lamp",
  9686. image: {
  9687. source: "./media/characters/mira-al-cul/lamp.svg",
  9688. extra: 1617 / 1559
  9689. }
  9690. },
  9691. front: {
  9692. height: math.unit(7, "feet"),
  9693. name: "Front",
  9694. image: {
  9695. source: "./media/characters/mira-al-cul/front.svg",
  9696. extra: 1044 / 990
  9697. }
  9698. },
  9699. },
  9700. [
  9701. {
  9702. name: "Heavily Restricted",
  9703. height: math.unit(7 * 1559 / 989, "feet")
  9704. },
  9705. {
  9706. name: "Freshly Freed",
  9707. height: math.unit(50 * 1559 / 989, "feet")
  9708. },
  9709. {
  9710. name: "World Encompassing",
  9711. height: math.unit(10000 * 1559 / 989, "miles")
  9712. },
  9713. {
  9714. name: "Galactic",
  9715. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9716. },
  9717. {
  9718. name: "Palmed Universe",
  9719. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9720. default: true
  9721. },
  9722. {
  9723. name: "Multiversal Matriarch",
  9724. height: math.unit(8.87e10, "yottameters")
  9725. },
  9726. {
  9727. name: "Void Mother",
  9728. height: math.unit(3.14e110, "yottaparsecs")
  9729. },
  9730. {
  9731. name: "Toying with Transcendence",
  9732. height: math.unit(1e307, "meters")
  9733. },
  9734. ]
  9735. ))
  9736. characterMakers.push(() => makeCharacter(
  9737. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9738. {
  9739. front: {
  9740. height: math.unit(17 + 1 / 12, "feet"),
  9741. weight: math.unit(476.2 * 5, "lbs"),
  9742. name: "Front",
  9743. image: {
  9744. source: "./media/characters/kuro-shi-uchū/front.svg",
  9745. extra: 2329 / 1835,
  9746. bottom: 0.02
  9747. }
  9748. },
  9749. },
  9750. [
  9751. {
  9752. name: "Micro",
  9753. height: math.unit(2, "inches")
  9754. },
  9755. {
  9756. name: "Normal",
  9757. height: math.unit(12, "meters")
  9758. },
  9759. {
  9760. name: "Planetary",
  9761. height: math.unit(0.00929, "AU"),
  9762. default: true
  9763. },
  9764. {
  9765. name: "Universal",
  9766. height: math.unit(20, "gigaparsecs")
  9767. },
  9768. ]
  9769. ))
  9770. characterMakers.push(() => makeCharacter(
  9771. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9772. {
  9773. front: {
  9774. height: math.unit(5 + 2 / 12, "feet"),
  9775. weight: math.unit(120, "lbs"),
  9776. name: "Front",
  9777. image: {
  9778. source: "./media/characters/katherine/front.svg",
  9779. extra: 2075 / 1969
  9780. }
  9781. },
  9782. dress: {
  9783. height: math.unit(5 + 2 / 12, "feet"),
  9784. weight: math.unit(120, "lbs"),
  9785. name: "Dress",
  9786. image: {
  9787. source: "./media/characters/katherine/dress.svg",
  9788. extra: 2258 / 2064
  9789. }
  9790. },
  9791. },
  9792. [
  9793. {
  9794. name: "Micro",
  9795. height: math.unit(1, "inches"),
  9796. default: true
  9797. },
  9798. {
  9799. name: "Normal",
  9800. height: math.unit(5 + 2 / 12, "feet")
  9801. },
  9802. {
  9803. name: "Macro",
  9804. height: math.unit(100, "meters")
  9805. },
  9806. {
  9807. name: "Megamacro",
  9808. height: math.unit(80, "miles")
  9809. },
  9810. ]
  9811. ))
  9812. characterMakers.push(() => makeCharacter(
  9813. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9814. {
  9815. front: {
  9816. height: math.unit(7 + 8 / 12, "feet"),
  9817. weight: math.unit(250, "lbs"),
  9818. name: "Front",
  9819. image: {
  9820. source: "./media/characters/yevis/front.svg",
  9821. extra: 1938 / 1755
  9822. }
  9823. }
  9824. },
  9825. [
  9826. {
  9827. name: "Mortal",
  9828. height: math.unit(7 + 8 / 12, "feet")
  9829. },
  9830. {
  9831. name: "Battle",
  9832. height: math.unit(25 + 11 / 12, "feet")
  9833. },
  9834. {
  9835. name: "Wrath",
  9836. height: math.unit(1654 + 11 / 12, "feet")
  9837. },
  9838. {
  9839. name: "Planet Destroyer",
  9840. height: math.unit(12000, "miles")
  9841. },
  9842. {
  9843. name: "Galaxy Conqueror",
  9844. height: math.unit(1.45, "zettameters"),
  9845. default: true
  9846. },
  9847. {
  9848. name: "Universal War",
  9849. height: math.unit(184, "gigaparsecs")
  9850. },
  9851. {
  9852. name: "Eternity War",
  9853. height: math.unit(1.98e55, "yottaparsecs")
  9854. },
  9855. ]
  9856. ))
  9857. characterMakers.push(() => makeCharacter(
  9858. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9859. {
  9860. front: {
  9861. height: math.unit(5 + 8 / 12, "feet"),
  9862. weight: math.unit(63, "kg"),
  9863. name: "Front",
  9864. image: {
  9865. source: "./media/characters/xavier/front.svg",
  9866. extra: 944 / 883
  9867. }
  9868. },
  9869. frontStretch: {
  9870. height: math.unit(5 + 8 / 12, "feet"),
  9871. weight: math.unit(63, "kg"),
  9872. name: "Stretching",
  9873. image: {
  9874. source: "./media/characters/xavier/front-stretch.svg",
  9875. extra: 962 / 820
  9876. }
  9877. },
  9878. },
  9879. [
  9880. {
  9881. name: "Normal",
  9882. height: math.unit(5 + 8 / 12, "feet")
  9883. },
  9884. {
  9885. name: "Macro",
  9886. height: math.unit(100, "meters"),
  9887. default: true
  9888. },
  9889. {
  9890. name: "McLargeHuge",
  9891. height: math.unit(10, "miles")
  9892. },
  9893. ]
  9894. ))
  9895. characterMakers.push(() => makeCharacter(
  9896. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9897. {
  9898. front: {
  9899. height: math.unit(5 + 5 / 12, "feet"),
  9900. weight: math.unit(150, "lb"),
  9901. name: "Front",
  9902. image: {
  9903. source: "./media/characters/joshii/front.svg",
  9904. extra: 765 / 653,
  9905. bottom: 51 / 816
  9906. }
  9907. },
  9908. foot: {
  9909. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9910. name: "Foot",
  9911. image: {
  9912. source: "./media/characters/joshii/foot.svg"
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Micro",
  9919. height: math.unit(2, "inches")
  9920. },
  9921. {
  9922. name: "Normal",
  9923. height: math.unit(5 + 5 / 12, "feet")
  9924. },
  9925. {
  9926. name: "Macro",
  9927. height: math.unit(785, "feet"),
  9928. default: true
  9929. },
  9930. {
  9931. name: "Megamacro",
  9932. height: math.unit(24.5, "miles")
  9933. },
  9934. ]
  9935. ))
  9936. characterMakers.push(() => makeCharacter(
  9937. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9938. {
  9939. front: {
  9940. height: math.unit(6, "feet"),
  9941. weight: math.unit(150, "lb"),
  9942. name: "Front",
  9943. image: {
  9944. source: "./media/characters/goddess-elizabeth/front.svg",
  9945. extra: 1800 / 1525,
  9946. bottom: 0.005
  9947. }
  9948. },
  9949. foot: {
  9950. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9951. name: "Foot",
  9952. image: {
  9953. source: "./media/characters/goddess-elizabeth/foot.svg"
  9954. }
  9955. },
  9956. mouth: {
  9957. height: math.unit(6, "feet"),
  9958. name: "Mouth",
  9959. image: {
  9960. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9961. }
  9962. },
  9963. },
  9964. [
  9965. {
  9966. name: "Micro",
  9967. height: math.unit(12, "feet")
  9968. },
  9969. {
  9970. name: "Normal",
  9971. height: math.unit(80, "miles"),
  9972. default: true
  9973. },
  9974. {
  9975. name: "Macro",
  9976. height: math.unit(15000, "parsecs")
  9977. },
  9978. ]
  9979. ))
  9980. characterMakers.push(() => makeCharacter(
  9981. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9982. {
  9983. front: {
  9984. height: math.unit(5 + 9 / 12, "feet"),
  9985. weight: math.unit(144, "lb"),
  9986. name: "Front",
  9987. image: {
  9988. source: "./media/characters/kara/front.svg"
  9989. }
  9990. },
  9991. feet: {
  9992. height: math.unit(6 / 6.765, "feet"),
  9993. name: "Kara's Feet",
  9994. rename: true,
  9995. image: {
  9996. source: "./media/characters/kara/feet.svg"
  9997. }
  9998. },
  9999. },
  10000. [
  10001. {
  10002. name: "Normal",
  10003. height: math.unit(5 + 9 / 12, "feet")
  10004. },
  10005. {
  10006. name: "Macro",
  10007. height: math.unit(174, "feet"),
  10008. default: true
  10009. },
  10010. ]
  10011. ))
  10012. characterMakers.push(() => makeCharacter(
  10013. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10014. {
  10015. front: {
  10016. height: math.unit(18, "feet"),
  10017. weight: math.unit(4050, "lb"),
  10018. name: "Front",
  10019. image: {
  10020. source: "./media/characters/tyrone/front.svg",
  10021. extra: 2405 / 2270,
  10022. bottom: 182 / 2587
  10023. }
  10024. },
  10025. },
  10026. [
  10027. {
  10028. name: "Normal",
  10029. height: math.unit(18, "feet"),
  10030. default: true
  10031. },
  10032. {
  10033. name: "Macro",
  10034. height: math.unit(300, "feet")
  10035. },
  10036. {
  10037. name: "Megamacro",
  10038. height: math.unit(15, "km")
  10039. },
  10040. {
  10041. name: "Gigamacro",
  10042. height: math.unit(500, "km")
  10043. },
  10044. {
  10045. name: "Teramacro",
  10046. height: math.unit(0.5, "gigameters")
  10047. },
  10048. {
  10049. name: "Omnimacro",
  10050. height: math.unit(1e252, "yottauniverse")
  10051. },
  10052. ]
  10053. ))
  10054. characterMakers.push(() => makeCharacter(
  10055. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10056. {
  10057. front: {
  10058. height: math.unit(7 + 8 / 12, "feet"),
  10059. weight: math.unit(120, "lb"),
  10060. name: "Front",
  10061. image: {
  10062. source: "./media/characters/danny/front.svg",
  10063. extra: 1490 / 1350
  10064. }
  10065. },
  10066. back: {
  10067. height: math.unit(7 + 8 / 12, "feet"),
  10068. weight: math.unit(120, "lb"),
  10069. name: "Back",
  10070. image: {
  10071. source: "./media/characters/danny/back.svg",
  10072. extra: 1490 / 1350
  10073. }
  10074. },
  10075. },
  10076. [
  10077. {
  10078. name: "Normal",
  10079. height: math.unit(7 + 8 / 12, "feet"),
  10080. default: true
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10086. {
  10087. front: {
  10088. height: math.unit(3.5, "inches"),
  10089. weight: math.unit(19, "grams"),
  10090. name: "Front",
  10091. image: {
  10092. source: "./media/characters/mallow/front.svg",
  10093. extra: 471 / 431
  10094. }
  10095. },
  10096. back: {
  10097. height: math.unit(3.5, "inches"),
  10098. weight: math.unit(19, "grams"),
  10099. name: "Back",
  10100. image: {
  10101. source: "./media/characters/mallow/back.svg",
  10102. extra: 471 / 431
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Normal",
  10109. height: math.unit(3.5, "inches"),
  10110. default: true
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10116. {
  10117. front: {
  10118. height: math.unit(9, "feet"),
  10119. weight: math.unit(230, "kg"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/starry-aqua/front.svg"
  10123. }
  10124. },
  10125. back: {
  10126. height: math.unit(9, "feet"),
  10127. weight: math.unit(230, "kg"),
  10128. name: "Back",
  10129. image: {
  10130. source: "./media/characters/starry-aqua/back.svg"
  10131. }
  10132. },
  10133. hand: {
  10134. height: math.unit(9 * 0.1168, "feet"),
  10135. name: "Hand",
  10136. image: {
  10137. source: "./media/characters/starry-aqua/hand.svg"
  10138. }
  10139. },
  10140. foot: {
  10141. height: math.unit(9 * 0.18, "feet"),
  10142. name: "Foot",
  10143. image: {
  10144. source: "./media/characters/starry-aqua/foot.svg"
  10145. }
  10146. }
  10147. },
  10148. [
  10149. {
  10150. name: "Micro",
  10151. height: math.unit(3, "inches")
  10152. },
  10153. {
  10154. name: "Normal",
  10155. height: math.unit(9, "feet")
  10156. },
  10157. {
  10158. name: "Macro",
  10159. height: math.unit(300, "feet"),
  10160. default: true
  10161. },
  10162. {
  10163. name: "Megamacro",
  10164. height: math.unit(3200, "feet")
  10165. }
  10166. ]
  10167. ))
  10168. characterMakers.push(() => makeCharacter(
  10169. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10170. {
  10171. front: {
  10172. height: math.unit(15, "feet"),
  10173. weight: math.unit(5026, "lb"),
  10174. name: "Front",
  10175. image: {
  10176. source: "./media/characters/luka-towers/front.svg",
  10177. extra: 1269/1133,
  10178. bottom: 51/1320
  10179. }
  10180. },
  10181. },
  10182. [
  10183. {
  10184. name: "Normal",
  10185. height: math.unit(15, "feet"),
  10186. default: true
  10187. },
  10188. {
  10189. name: "Minimacro",
  10190. height: math.unit(25, "feet")
  10191. },
  10192. {
  10193. name: "Macro",
  10194. height: math.unit(320, "feet")
  10195. },
  10196. {
  10197. name: "Megamacro",
  10198. height: math.unit(35000, "feet")
  10199. },
  10200. {
  10201. name: "Gigamacro",
  10202. height: math.unit(4000, "miles")
  10203. },
  10204. {
  10205. name: "Teramacro",
  10206. height: math.unit(15000, "miles")
  10207. },
  10208. ]
  10209. ))
  10210. characterMakers.push(() => makeCharacter(
  10211. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10212. {
  10213. front: {
  10214. height: math.unit(6, "feet"),
  10215. weight: math.unit(150, "lb"),
  10216. name: "Front",
  10217. image: {
  10218. source: "./media/characters/natalie-nightring/front.svg",
  10219. extra: 1,
  10220. bottom: 0.06
  10221. }
  10222. },
  10223. },
  10224. [
  10225. {
  10226. name: "Uh Oh",
  10227. height: math.unit(0.1, "mm")
  10228. },
  10229. {
  10230. name: "Small",
  10231. height: math.unit(3, "inches")
  10232. },
  10233. {
  10234. name: "Human Scale",
  10235. height: math.unit(6, "feet")
  10236. },
  10237. {
  10238. name: "Librarian",
  10239. height: math.unit(50, "feet"),
  10240. default: true
  10241. },
  10242. {
  10243. name: "Immense",
  10244. height: math.unit(200, "miles")
  10245. },
  10246. ]
  10247. ))
  10248. characterMakers.push(() => makeCharacter(
  10249. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10250. {
  10251. front: {
  10252. height: math.unit(6, "feet"),
  10253. weight: math.unit(180, "lbs"),
  10254. name: "Front",
  10255. image: {
  10256. source: "./media/characters/danni-rosie/front.svg",
  10257. extra: 1260 / 1128,
  10258. bottom: 0.022
  10259. }
  10260. },
  10261. },
  10262. [
  10263. {
  10264. name: "Micro",
  10265. height: math.unit(2, "inches"),
  10266. default: true
  10267. },
  10268. ]
  10269. ))
  10270. characterMakers.push(() => makeCharacter(
  10271. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10272. {
  10273. front: {
  10274. height: math.unit(5 + 9 / 12, "feet"),
  10275. weight: math.unit(220, "lb"),
  10276. name: "Front",
  10277. image: {
  10278. source: "./media/characters/samantha-kruse/front.svg",
  10279. extra: (985 / 935),
  10280. bottom: 0.03
  10281. }
  10282. },
  10283. frontUndressed: {
  10284. height: math.unit(5 + 9 / 12, "feet"),
  10285. weight: math.unit(220, "lb"),
  10286. name: "Front (Undressed)",
  10287. image: {
  10288. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10289. extra: (973 / 923),
  10290. bottom: 0.025
  10291. }
  10292. },
  10293. fat: {
  10294. height: math.unit(5 + 9 / 12, "feet"),
  10295. weight: math.unit(900, "lb"),
  10296. name: "Front (Fat)",
  10297. image: {
  10298. source: "./media/characters/samantha-kruse/fat.svg",
  10299. extra: 2688 / 2561
  10300. }
  10301. },
  10302. },
  10303. [
  10304. {
  10305. name: "Normal",
  10306. height: math.unit(5 + 9 / 12, "feet"),
  10307. default: true
  10308. }
  10309. ]
  10310. ))
  10311. characterMakers.push(() => makeCharacter(
  10312. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10313. {
  10314. back: {
  10315. height: math.unit(5 + 4 / 12, "feet"),
  10316. weight: math.unit(4963, "lb"),
  10317. name: "Back",
  10318. image: {
  10319. source: "./media/characters/amelia-rosie/back.svg",
  10320. extra: 1113 / 963,
  10321. bottom: 0.01
  10322. }
  10323. },
  10324. },
  10325. [
  10326. {
  10327. name: "Level 0",
  10328. height: math.unit(5 + 4 / 12, "feet")
  10329. },
  10330. {
  10331. name: "Level 1",
  10332. height: math.unit(164597, "feet"),
  10333. default: true
  10334. },
  10335. {
  10336. name: "Level 2",
  10337. height: math.unit(956243, "miles")
  10338. },
  10339. {
  10340. name: "Level 3",
  10341. height: math.unit(29421709423, "miles")
  10342. },
  10343. {
  10344. name: "Level 4",
  10345. height: math.unit(154, "lightyears")
  10346. },
  10347. {
  10348. name: "Level 5",
  10349. height: math.unit(4738272, "lightyears")
  10350. },
  10351. {
  10352. name: "Level 6",
  10353. height: math.unit(145787152896, "lightyears")
  10354. },
  10355. ]
  10356. ))
  10357. characterMakers.push(() => makeCharacter(
  10358. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10359. {
  10360. front: {
  10361. height: math.unit(5 + 11 / 12, "feet"),
  10362. weight: math.unit(65, "kg"),
  10363. name: "Front",
  10364. image: {
  10365. source: "./media/characters/rook-kitara/front.svg",
  10366. extra: 1347 / 1274,
  10367. bottom: 0.005
  10368. }
  10369. },
  10370. },
  10371. [
  10372. {
  10373. name: "Totally Unfair",
  10374. height: math.unit(1.8, "mm")
  10375. },
  10376. {
  10377. name: "Lap Rookie",
  10378. height: math.unit(1.4, "feet")
  10379. },
  10380. {
  10381. name: "Normal",
  10382. height: math.unit(5 + 11 / 12, "feet"),
  10383. default: true
  10384. },
  10385. {
  10386. name: "How Did This Happen",
  10387. height: math.unit(80, "miles")
  10388. }
  10389. ]
  10390. ))
  10391. characterMakers.push(() => makeCharacter(
  10392. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10393. {
  10394. front: {
  10395. height: math.unit(7, "feet"),
  10396. weight: math.unit(300, "lb"),
  10397. name: "Front",
  10398. image: {
  10399. source: "./media/characters/pisces/front.svg",
  10400. extra: 2255 / 2115,
  10401. bottom: 0.03
  10402. }
  10403. },
  10404. back: {
  10405. height: math.unit(7, "feet"),
  10406. weight: math.unit(300, "lb"),
  10407. name: "Back",
  10408. image: {
  10409. source: "./media/characters/pisces/back.svg",
  10410. extra: 2146 / 2055,
  10411. bottom: 0.04
  10412. }
  10413. },
  10414. },
  10415. [
  10416. {
  10417. name: "Normal",
  10418. height: math.unit(7, "feet"),
  10419. default: true
  10420. },
  10421. {
  10422. name: "Swimming Pool",
  10423. height: math.unit(12.2, "meters")
  10424. },
  10425. {
  10426. name: "Olympic Swimming Pool",
  10427. height: math.unit(56.3, "meters")
  10428. },
  10429. {
  10430. name: "Lake Superior",
  10431. height: math.unit(93900, "meters")
  10432. },
  10433. {
  10434. name: "Mediterranean Sea",
  10435. height: math.unit(644457, "meters")
  10436. },
  10437. {
  10438. name: "World's Oceans",
  10439. height: math.unit(4567491, "meters")
  10440. },
  10441. ]
  10442. ))
  10443. characterMakers.push(() => makeCharacter(
  10444. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10445. {
  10446. front: {
  10447. height: math.unit(2.3, "meters"),
  10448. weight: math.unit(120, "kg"),
  10449. name: "Front",
  10450. image: {
  10451. source: "./media/characters/zelas/front.svg"
  10452. }
  10453. },
  10454. side: {
  10455. height: math.unit(2.3, "meters"),
  10456. weight: math.unit(120, "kg"),
  10457. name: "Side",
  10458. image: {
  10459. source: "./media/characters/zelas/side.svg"
  10460. }
  10461. },
  10462. back: {
  10463. height: math.unit(2.3, "meters"),
  10464. weight: math.unit(120, "kg"),
  10465. name: "Back",
  10466. image: {
  10467. source: "./media/characters/zelas/back.svg"
  10468. }
  10469. },
  10470. foot: {
  10471. height: math.unit(1.116, "feet"),
  10472. name: "Foot",
  10473. image: {
  10474. source: "./media/characters/zelas/foot.svg"
  10475. }
  10476. },
  10477. },
  10478. [
  10479. {
  10480. name: "Normal",
  10481. height: math.unit(2.3, "meters")
  10482. },
  10483. {
  10484. name: "Macro",
  10485. height: math.unit(30, "meters"),
  10486. default: true
  10487. },
  10488. ]
  10489. ))
  10490. characterMakers.push(() => makeCharacter(
  10491. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10492. {
  10493. front: {
  10494. height: math.unit(1, "inch"),
  10495. weight: math.unit(0.21, "grams"),
  10496. name: "Front",
  10497. image: {
  10498. source: "./media/characters/talbot/front.svg",
  10499. extra: 594 / 544
  10500. }
  10501. },
  10502. },
  10503. [
  10504. {
  10505. name: "Micro",
  10506. height: math.unit(1, "inch"),
  10507. default: true
  10508. },
  10509. ]
  10510. ))
  10511. characterMakers.push(() => makeCharacter(
  10512. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10513. {
  10514. front: {
  10515. height: math.unit(3 + 3 / 12, "feet"),
  10516. weight: math.unit(51.8, "lb"),
  10517. name: "Front",
  10518. image: {
  10519. source: "./media/characters/fliss/front.svg",
  10520. extra: 840 / 640
  10521. }
  10522. },
  10523. },
  10524. [
  10525. {
  10526. name: "Teeny Tiny",
  10527. height: math.unit(1, "mm")
  10528. },
  10529. {
  10530. name: "Small",
  10531. height: math.unit(1, "inch"),
  10532. default: true
  10533. },
  10534. {
  10535. name: "Standard Sylveon",
  10536. height: math.unit(3 + 3 / 12, "feet")
  10537. },
  10538. {
  10539. name: "Large Nuisance",
  10540. height: math.unit(33, "feet")
  10541. },
  10542. {
  10543. name: "City Filler",
  10544. height: math.unit(3000, "feet")
  10545. },
  10546. {
  10547. name: "New Horizon",
  10548. height: math.unit(6000, "miles")
  10549. },
  10550. ]
  10551. ))
  10552. characterMakers.push(() => makeCharacter(
  10553. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10554. {
  10555. front: {
  10556. height: math.unit(5, "cm"),
  10557. weight: math.unit(1.94, "g"),
  10558. name: "Front",
  10559. image: {
  10560. source: "./media/characters/fleta/front.svg",
  10561. extra: 835 / 803
  10562. }
  10563. },
  10564. back: {
  10565. height: math.unit(5, "cm"),
  10566. weight: math.unit(1.94, "g"),
  10567. name: "Back",
  10568. image: {
  10569. source: "./media/characters/fleta/back.svg",
  10570. extra: 835 / 803
  10571. }
  10572. },
  10573. },
  10574. [
  10575. {
  10576. name: "Micro",
  10577. height: math.unit(5, "cm"),
  10578. default: true
  10579. },
  10580. ]
  10581. ))
  10582. characterMakers.push(() => makeCharacter(
  10583. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10584. {
  10585. front: {
  10586. height: math.unit(6, "feet"),
  10587. weight: math.unit(225, "lb"),
  10588. name: "Front",
  10589. image: {
  10590. source: "./media/characters/dominic/front.svg",
  10591. extra: 1770 / 1620,
  10592. bottom: 0.025
  10593. }
  10594. },
  10595. back: {
  10596. height: math.unit(6, "feet"),
  10597. weight: math.unit(225, "lb"),
  10598. name: "Back",
  10599. image: {
  10600. source: "./media/characters/dominic/back.svg",
  10601. extra: 1745 / 1620,
  10602. bottom: 0.065
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Nano",
  10609. height: math.unit(0.1, "mm")
  10610. },
  10611. {
  10612. name: "Micro-",
  10613. height: math.unit(1, "mm")
  10614. },
  10615. {
  10616. name: "Micro",
  10617. height: math.unit(4, "inches")
  10618. },
  10619. {
  10620. name: "Normal",
  10621. height: math.unit(6 + 4 / 12, "feet"),
  10622. default: true
  10623. },
  10624. {
  10625. name: "Macro",
  10626. height: math.unit(115, "feet")
  10627. },
  10628. {
  10629. name: "Macro+",
  10630. height: math.unit(955, "feet")
  10631. },
  10632. {
  10633. name: "Megamacro",
  10634. height: math.unit(8990, "feet")
  10635. },
  10636. {
  10637. name: "Gigmacro",
  10638. height: math.unit(9310, "miles")
  10639. },
  10640. {
  10641. name: "Teramacro",
  10642. height: math.unit(1567005010, "miles")
  10643. },
  10644. {
  10645. name: "Examacro",
  10646. height: math.unit(1425, "parsecs")
  10647. },
  10648. ]
  10649. ))
  10650. characterMakers.push(() => makeCharacter(
  10651. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10652. {
  10653. front: {
  10654. height: math.unit(400, "feet"),
  10655. weight: math.unit(44444444, "lb"),
  10656. name: "Front",
  10657. image: {
  10658. source: "./media/characters/major-colonel/front.svg"
  10659. }
  10660. },
  10661. back: {
  10662. height: math.unit(400, "feet"),
  10663. weight: math.unit(44444444, "lb"),
  10664. name: "Back",
  10665. image: {
  10666. source: "./media/characters/major-colonel/back.svg"
  10667. }
  10668. },
  10669. },
  10670. [
  10671. {
  10672. name: "Macro",
  10673. height: math.unit(400, "feet"),
  10674. default: true
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10680. {
  10681. catFront: {
  10682. height: math.unit(6, "feet"),
  10683. weight: math.unit(120, "lb"),
  10684. name: "Front (Cat Side)",
  10685. image: {
  10686. source: "./media/characters/axel-lycan/cat-front.svg",
  10687. extra: 430 / 402,
  10688. bottom: 43 / 472.35
  10689. }
  10690. },
  10691. catBack: {
  10692. height: math.unit(6, "feet"),
  10693. weight: math.unit(120, "lb"),
  10694. name: "Back (Cat Side)",
  10695. image: {
  10696. source: "./media/characters/axel-lycan/cat-back.svg",
  10697. extra: 447 / 419,
  10698. bottom: 23.3 / 469
  10699. }
  10700. },
  10701. wolfFront: {
  10702. height: math.unit(6, "feet"),
  10703. weight: math.unit(120, "lb"),
  10704. name: "Front (Wolf Side)",
  10705. image: {
  10706. source: "./media/characters/axel-lycan/wolf-front.svg",
  10707. extra: 485 / 456,
  10708. bottom: 19 / 504
  10709. }
  10710. },
  10711. wolfBack: {
  10712. height: math.unit(6, "feet"),
  10713. weight: math.unit(120, "lb"),
  10714. name: "Back (Wolf Side)",
  10715. image: {
  10716. source: "./media/characters/axel-lycan/wolf-back.svg",
  10717. extra: 475 / 438,
  10718. bottom: 39.2 / 514
  10719. }
  10720. },
  10721. },
  10722. [
  10723. {
  10724. name: "Macro",
  10725. height: math.unit(1, "km"),
  10726. default: true
  10727. },
  10728. ]
  10729. ))
  10730. characterMakers.push(() => makeCharacter(
  10731. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10732. {
  10733. front: {
  10734. height: math.unit(5 + 9 / 12, "feet"),
  10735. weight: math.unit(175, "lb"),
  10736. name: "Front",
  10737. image: {
  10738. source: "./media/characters/vanrel-hyena/front.svg",
  10739. extra: 1086 / 1010,
  10740. bottom: 0.04
  10741. }
  10742. },
  10743. },
  10744. [
  10745. {
  10746. name: "Normal",
  10747. height: math.unit(5 + 9 / 12, "feet"),
  10748. default: true
  10749. },
  10750. ]
  10751. ))
  10752. characterMakers.push(() => makeCharacter(
  10753. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10754. {
  10755. front: {
  10756. height: math.unit(6, "feet"),
  10757. weight: math.unit(103, "lb"),
  10758. name: "Front",
  10759. image: {
  10760. source: "./media/characters/abbott-absol/front.svg",
  10761. extra: 2010 / 1842
  10762. }
  10763. },
  10764. },
  10765. [
  10766. {
  10767. name: "Megamicro",
  10768. height: math.unit(0.1, "mm")
  10769. },
  10770. {
  10771. name: "Micro",
  10772. height: math.unit(1, "inch")
  10773. },
  10774. {
  10775. name: "Normal",
  10776. height: math.unit(6, "feet"),
  10777. default: true
  10778. },
  10779. ]
  10780. ))
  10781. characterMakers.push(() => makeCharacter(
  10782. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10783. {
  10784. front: {
  10785. height: math.unit(6, "feet"),
  10786. weight: math.unit(264, "lb"),
  10787. name: "Front",
  10788. image: {
  10789. source: "./media/characters/hector/front.svg",
  10790. extra: 2280 / 2130,
  10791. bottom: 0.07
  10792. }
  10793. },
  10794. },
  10795. [
  10796. {
  10797. name: "Normal",
  10798. height: math.unit(12.25, "foot"),
  10799. default: true
  10800. },
  10801. {
  10802. name: "Macro",
  10803. height: math.unit(160, "feet")
  10804. },
  10805. ]
  10806. ))
  10807. characterMakers.push(() => makeCharacter(
  10808. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10809. {
  10810. front: {
  10811. height: math.unit(6, "feet"),
  10812. weight: math.unit(150, "lb"),
  10813. name: "Front",
  10814. image: {
  10815. source: "./media/characters/sal/front.svg",
  10816. extra: 1846 / 1699,
  10817. bottom: 0.04
  10818. }
  10819. },
  10820. },
  10821. [
  10822. {
  10823. name: "Megamacro",
  10824. height: math.unit(10, "miles"),
  10825. default: true
  10826. },
  10827. ]
  10828. ))
  10829. characterMakers.push(() => makeCharacter(
  10830. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10831. {
  10832. front: {
  10833. height: math.unit(3, "meters"),
  10834. weight: math.unit(450, "kg"),
  10835. name: "front",
  10836. image: {
  10837. source: "./media/characters/ranger/front.svg",
  10838. extra: 2401 / 2243,
  10839. bottom: 0.05
  10840. }
  10841. },
  10842. },
  10843. [
  10844. {
  10845. name: "Normal",
  10846. height: math.unit(3, "meters"),
  10847. default: true
  10848. },
  10849. ]
  10850. ))
  10851. characterMakers.push(() => makeCharacter(
  10852. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10853. {
  10854. front: {
  10855. height: math.unit(14, "feet"),
  10856. weight: math.unit(800, "kg"),
  10857. name: "Front",
  10858. image: {
  10859. source: "./media/characters/theresa/front.svg",
  10860. extra: 3575 / 3346,
  10861. bottom: 0.03
  10862. }
  10863. },
  10864. },
  10865. [
  10866. {
  10867. name: "Normal",
  10868. height: math.unit(14, "feet"),
  10869. default: true
  10870. },
  10871. ]
  10872. ))
  10873. characterMakers.push(() => makeCharacter(
  10874. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10875. {
  10876. front: {
  10877. height: math.unit(6, "feet"),
  10878. weight: math.unit(3, "kg"),
  10879. name: "Front",
  10880. image: {
  10881. source: "./media/characters/ine/front.svg",
  10882. extra: 678 / 539,
  10883. bottom: 0.023
  10884. }
  10885. },
  10886. },
  10887. [
  10888. {
  10889. name: "Normal",
  10890. height: math.unit(2.265, "feet"),
  10891. default: true
  10892. },
  10893. ]
  10894. ))
  10895. characterMakers.push(() => makeCharacter(
  10896. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10897. {
  10898. front: {
  10899. height: math.unit(5, "feet"),
  10900. weight: math.unit(30, "kg"),
  10901. name: "Front",
  10902. image: {
  10903. source: "./media/characters/vial/front.svg",
  10904. extra: 1365 / 1277,
  10905. bottom: 0.04
  10906. }
  10907. },
  10908. },
  10909. [
  10910. {
  10911. name: "Normal",
  10912. height: math.unit(5, "feet"),
  10913. default: true
  10914. },
  10915. ]
  10916. ))
  10917. characterMakers.push(() => makeCharacter(
  10918. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10919. {
  10920. side: {
  10921. height: math.unit(3.4, "meters"),
  10922. weight: math.unit(1000, "lb"),
  10923. name: "Side",
  10924. image: {
  10925. source: "./media/characters/rovoska/side.svg",
  10926. extra: 4403 / 1515
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Normal",
  10933. height: math.unit(3.4, "meters"),
  10934. default: true
  10935. },
  10936. ]
  10937. ))
  10938. characterMakers.push(() => makeCharacter(
  10939. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10940. {
  10941. front: {
  10942. height: math.unit(8, "feet"),
  10943. weight: math.unit(315, "lb"),
  10944. name: "Front",
  10945. image: {
  10946. source: "./media/characters/gunner-rotthbauer/front.svg"
  10947. }
  10948. },
  10949. back: {
  10950. height: math.unit(8, "feet"),
  10951. weight: math.unit(315, "lb"),
  10952. name: "Back",
  10953. image: {
  10954. source: "./media/characters/gunner-rotthbauer/back.svg"
  10955. }
  10956. },
  10957. },
  10958. [
  10959. {
  10960. name: "Micro",
  10961. height: math.unit(3.5, "inches")
  10962. },
  10963. {
  10964. name: "Normal",
  10965. height: math.unit(8, "feet"),
  10966. default: true
  10967. },
  10968. {
  10969. name: "Macro",
  10970. height: math.unit(250, "feet")
  10971. },
  10972. {
  10973. name: "Megamacro",
  10974. height: math.unit(1, "AU")
  10975. },
  10976. ]
  10977. ))
  10978. characterMakers.push(() => makeCharacter(
  10979. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10980. {
  10981. front: {
  10982. height: math.unit(5 + 5 / 12, "feet"),
  10983. weight: math.unit(140, "lb"),
  10984. name: "Front",
  10985. image: {
  10986. source: "./media/characters/allatia/front.svg",
  10987. extra: 1227 / 1180,
  10988. bottom: 0.027
  10989. }
  10990. },
  10991. },
  10992. [
  10993. {
  10994. name: "Normal",
  10995. height: math.unit(5 + 5 / 12, "feet")
  10996. },
  10997. {
  10998. name: "Macro",
  10999. height: math.unit(250, "feet"),
  11000. default: true
  11001. },
  11002. {
  11003. name: "Megamacro",
  11004. height: math.unit(8, "miles")
  11005. }
  11006. ]
  11007. ))
  11008. characterMakers.push(() => makeCharacter(
  11009. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11010. {
  11011. front: {
  11012. height: math.unit(6, "feet"),
  11013. weight: math.unit(120, "lb"),
  11014. name: "Front",
  11015. image: {
  11016. source: "./media/characters/tene/front.svg",
  11017. extra: 814/750,
  11018. bottom: 36/850
  11019. }
  11020. },
  11021. stomping: {
  11022. height: math.unit(2.025, "meters"),
  11023. weight: math.unit(120, "lb"),
  11024. name: "Stomping",
  11025. image: {
  11026. source: "./media/characters/tene/stomping.svg",
  11027. extra: 885/821,
  11028. bottom: 15/900
  11029. }
  11030. },
  11031. sitting: {
  11032. height: math.unit(1, "meter"),
  11033. weight: math.unit(120, "lb"),
  11034. name: "Sitting",
  11035. image: {
  11036. source: "./media/characters/tene/sitting.svg",
  11037. extra: 396/366,
  11038. bottom: 79/475
  11039. }
  11040. },
  11041. smiling: {
  11042. height: math.unit(1.2, "feet"),
  11043. name: "Smiling",
  11044. image: {
  11045. source: "./media/characters/tene/smiling.svg",
  11046. extra: 1364/1071,
  11047. bottom: 0/1364
  11048. }
  11049. },
  11050. smug: {
  11051. height: math.unit(1.3, "feet"),
  11052. name: "Smug",
  11053. image: {
  11054. source: "./media/characters/tene/smug.svg",
  11055. extra: 1323/1082,
  11056. bottom: 0/1323
  11057. }
  11058. },
  11059. feral: {
  11060. height: math.unit(3.9, "feet"),
  11061. weight: math.unit(250, "lb"),
  11062. name: "Feral",
  11063. image: {
  11064. source: "./media/characters/tene/feral.svg",
  11065. extra: 717 / 458,
  11066. bottom: 0.179
  11067. }
  11068. },
  11069. },
  11070. [
  11071. {
  11072. name: "Normal",
  11073. height: math.unit(6, "feet")
  11074. },
  11075. {
  11076. name: "Macro",
  11077. height: math.unit(300, "feet"),
  11078. default: true
  11079. },
  11080. {
  11081. name: "Megamacro",
  11082. height: math.unit(5, "miles")
  11083. },
  11084. ]
  11085. ))
  11086. characterMakers.push(() => makeCharacter(
  11087. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11088. {
  11089. side: {
  11090. height: math.unit(6, "feet"),
  11091. name: "Side",
  11092. image: {
  11093. source: "./media/characters/evander/side.svg",
  11094. extra: 877 / 477
  11095. }
  11096. },
  11097. },
  11098. [
  11099. {
  11100. name: "Normal",
  11101. height: math.unit(0.83, "meters"),
  11102. default: true
  11103. },
  11104. ]
  11105. ))
  11106. characterMakers.push(() => makeCharacter(
  11107. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11108. {
  11109. front: {
  11110. height: math.unit(12, "feet"),
  11111. weight: math.unit(1000, "lb"),
  11112. name: "Front",
  11113. image: {
  11114. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11115. extra: 1762 / 1611
  11116. }
  11117. },
  11118. back: {
  11119. height: math.unit(12, "feet"),
  11120. weight: math.unit(1000, "lb"),
  11121. name: "Back",
  11122. image: {
  11123. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11124. extra: 1762 / 1611
  11125. }
  11126. },
  11127. },
  11128. [
  11129. {
  11130. name: "Normal",
  11131. height: math.unit(12, "feet"),
  11132. default: true
  11133. },
  11134. {
  11135. name: "Kaiju",
  11136. height: math.unit(150, "feet")
  11137. },
  11138. ]
  11139. ))
  11140. characterMakers.push(() => makeCharacter(
  11141. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11142. {
  11143. front: {
  11144. height: math.unit(6, "feet"),
  11145. weight: math.unit(150, "lb"),
  11146. name: "Front",
  11147. image: {
  11148. source: "./media/characters/zero-alurus/front.svg"
  11149. }
  11150. },
  11151. back: {
  11152. height: math.unit(6, "feet"),
  11153. weight: math.unit(150, "lb"),
  11154. name: "Back",
  11155. image: {
  11156. source: "./media/characters/zero-alurus/back.svg"
  11157. }
  11158. },
  11159. },
  11160. [
  11161. {
  11162. name: "Normal",
  11163. height: math.unit(5 + 10 / 12, "feet")
  11164. },
  11165. {
  11166. name: "Macro",
  11167. height: math.unit(60, "feet"),
  11168. default: true
  11169. },
  11170. {
  11171. name: "Macro+",
  11172. height: math.unit(450, "feet")
  11173. },
  11174. ]
  11175. ))
  11176. characterMakers.push(() => makeCharacter(
  11177. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11178. {
  11179. front: {
  11180. height: math.unit(6, "feet"),
  11181. weight: math.unit(200, "lb"),
  11182. name: "Front",
  11183. image: {
  11184. source: "./media/characters/mega-shi/front.svg",
  11185. extra: 1279 / 1250,
  11186. bottom: 0.02
  11187. }
  11188. },
  11189. back: {
  11190. height: math.unit(6, "feet"),
  11191. weight: math.unit(200, "lb"),
  11192. name: "Back",
  11193. image: {
  11194. source: "./media/characters/mega-shi/back.svg",
  11195. extra: 1279 / 1250,
  11196. bottom: 0.02
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Micro",
  11203. height: math.unit(16 + 6 / 12, "feet")
  11204. },
  11205. {
  11206. name: "Third Dimension",
  11207. height: math.unit(40, "meters")
  11208. },
  11209. {
  11210. name: "Normal",
  11211. height: math.unit(660, "feet"),
  11212. default: true
  11213. },
  11214. {
  11215. name: "Megamacro",
  11216. height: math.unit(10, "miles")
  11217. },
  11218. {
  11219. name: "Planetary Launch",
  11220. height: math.unit(500, "miles")
  11221. },
  11222. {
  11223. name: "Interstellar",
  11224. height: math.unit(1e9, "miles")
  11225. },
  11226. {
  11227. name: "Leaving the Universe",
  11228. height: math.unit(1, "gigaparsec")
  11229. },
  11230. {
  11231. name: "Travelling Universes",
  11232. height: math.unit(30e15, "parsecs")
  11233. },
  11234. ]
  11235. ))
  11236. characterMakers.push(() => makeCharacter(
  11237. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11238. {
  11239. front: {
  11240. height: math.unit(5 + 4/12, "feet"),
  11241. weight: math.unit(120, "lb"),
  11242. name: "Front",
  11243. image: {
  11244. source: "./media/characters/odyssey/front.svg",
  11245. extra: 1747/1571,
  11246. bottom: 47/1794
  11247. }
  11248. },
  11249. side: {
  11250. height: math.unit(5.1, "feet"),
  11251. weight: math.unit(120, "lb"),
  11252. name: "Side",
  11253. image: {
  11254. source: "./media/characters/odyssey/side.svg",
  11255. extra: 1847/1619,
  11256. bottom: 47/1894
  11257. }
  11258. },
  11259. lounging: {
  11260. height: math.unit(1.464, "feet"),
  11261. weight: math.unit(120, "lb"),
  11262. name: "Lounging",
  11263. image: {
  11264. source: "./media/characters/odyssey/lounging.svg",
  11265. extra: 1235/837,
  11266. bottom: 551/1786
  11267. }
  11268. },
  11269. },
  11270. [
  11271. {
  11272. name: "Normal",
  11273. height: math.unit(5 + 4 / 12, "feet")
  11274. },
  11275. {
  11276. name: "Macro",
  11277. height: math.unit(1, "km")
  11278. },
  11279. {
  11280. name: "Megamacro",
  11281. height: math.unit(3000, "km")
  11282. },
  11283. {
  11284. name: "Gigamacro",
  11285. height: math.unit(1, "AU"),
  11286. default: true
  11287. },
  11288. {
  11289. name: "Omniversal",
  11290. height: math.unit(100e14, "lightyears")
  11291. },
  11292. ]
  11293. ))
  11294. characterMakers.push(() => makeCharacter(
  11295. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11296. {
  11297. front: {
  11298. height: math.unit(5 + 10/12, "feet"),
  11299. name: "Front",
  11300. image: {
  11301. source: "./media/characters/mekuto/front.svg",
  11302. extra: 875/835,
  11303. bottom: 46/921
  11304. }
  11305. },
  11306. },
  11307. [
  11308. {
  11309. name: "Minimicro",
  11310. height: math.unit(0.2, "inches")
  11311. },
  11312. {
  11313. name: "Micro",
  11314. height: math.unit(1.5, "inches")
  11315. },
  11316. {
  11317. name: "Normal",
  11318. height: math.unit(5 + 10 / 12, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Minimacro",
  11323. height: math.unit(17 + 9 / 12, "feet")
  11324. },
  11325. {
  11326. name: "Macro",
  11327. height: math.unit(177.5, "feet")
  11328. },
  11329. {
  11330. name: "Megamacro",
  11331. height: math.unit(152, "miles")
  11332. },
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11337. {
  11338. front: {
  11339. height: math.unit(6.5, "inches"),
  11340. weight: math.unit(13, "oz"),
  11341. name: "Front",
  11342. image: {
  11343. source: "./media/characters/dafydd-tomos/front.svg",
  11344. extra: 2990 / 2603,
  11345. bottom: 0.03
  11346. }
  11347. },
  11348. },
  11349. [
  11350. {
  11351. name: "Micro",
  11352. height: math.unit(6.5, "inches"),
  11353. default: true
  11354. },
  11355. ]
  11356. ))
  11357. characterMakers.push(() => makeCharacter(
  11358. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11359. {
  11360. front: {
  11361. height: math.unit(6, "feet"),
  11362. weight: math.unit(150, "lb"),
  11363. name: "Front",
  11364. image: {
  11365. source: "./media/characters/splinter/front.svg",
  11366. extra: 2990 / 2882,
  11367. bottom: 0.04
  11368. }
  11369. },
  11370. back: {
  11371. height: math.unit(6, "feet"),
  11372. weight: math.unit(150, "lb"),
  11373. name: "Back",
  11374. image: {
  11375. source: "./media/characters/splinter/back.svg",
  11376. extra: 2990 / 2882,
  11377. bottom: 0.04
  11378. }
  11379. },
  11380. },
  11381. [
  11382. {
  11383. name: "Normal",
  11384. height: math.unit(6, "feet")
  11385. },
  11386. {
  11387. name: "Macro",
  11388. height: math.unit(230, "meters"),
  11389. default: true
  11390. },
  11391. ]
  11392. ))
  11393. characterMakers.push(() => makeCharacter(
  11394. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11395. {
  11396. front: {
  11397. height: math.unit(4 + 10 / 12, "feet"),
  11398. weight: math.unit(480, "lb"),
  11399. name: "Front",
  11400. image: {
  11401. source: "./media/characters/snow-gabumon/front.svg",
  11402. extra: 1140 / 963,
  11403. bottom: 0.058
  11404. }
  11405. },
  11406. back: {
  11407. height: math.unit(4 + 10 / 12, "feet"),
  11408. weight: math.unit(480, "lb"),
  11409. name: "Back",
  11410. image: {
  11411. source: "./media/characters/snow-gabumon/back.svg",
  11412. extra: 1115 / 962,
  11413. bottom: 0.041
  11414. }
  11415. },
  11416. frontUndresed: {
  11417. height: math.unit(4 + 10 / 12, "feet"),
  11418. weight: math.unit(480, "lb"),
  11419. name: "Front (Undressed)",
  11420. image: {
  11421. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11422. extra: 1061 / 960,
  11423. bottom: 0.045
  11424. }
  11425. },
  11426. },
  11427. [
  11428. {
  11429. name: "Micro",
  11430. height: math.unit(1, "inch")
  11431. },
  11432. {
  11433. name: "Normal",
  11434. height: math.unit(4 + 10 / 12, "feet"),
  11435. default: true
  11436. },
  11437. {
  11438. name: "Macro",
  11439. height: math.unit(200, "feet")
  11440. },
  11441. {
  11442. name: "Megamacro",
  11443. height: math.unit(120, "miles")
  11444. },
  11445. {
  11446. name: "Gigamacro",
  11447. height: math.unit(9800, "miles")
  11448. },
  11449. ]
  11450. ))
  11451. characterMakers.push(() => makeCharacter(
  11452. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11453. {
  11454. front: {
  11455. height: math.unit(1.7, "meters"),
  11456. weight: math.unit(140, "lb"),
  11457. name: "Front",
  11458. image: {
  11459. source: "./media/characters/moody/front.svg",
  11460. extra: 3226 / 3007,
  11461. bottom: 0.087
  11462. }
  11463. },
  11464. },
  11465. [
  11466. {
  11467. name: "Micro",
  11468. height: math.unit(1, "mm")
  11469. },
  11470. {
  11471. name: "Normal",
  11472. height: math.unit(1.7, "meters"),
  11473. default: true
  11474. },
  11475. {
  11476. name: "Macro",
  11477. height: math.unit(80, "meters")
  11478. },
  11479. {
  11480. name: "Macro+",
  11481. height: math.unit(500, "meters")
  11482. },
  11483. ]
  11484. ))
  11485. characterMakers.push(() => makeCharacter(
  11486. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11487. {
  11488. front: {
  11489. height: math.unit(6, "feet"),
  11490. weight: math.unit(150, "lb"),
  11491. name: "Front",
  11492. image: {
  11493. source: "./media/characters/zyas/front.svg",
  11494. extra: 1180 / 1120,
  11495. bottom: 0.045
  11496. }
  11497. },
  11498. },
  11499. [
  11500. {
  11501. name: "Normal",
  11502. height: math.unit(10, "feet"),
  11503. default: true
  11504. },
  11505. {
  11506. name: "Macro",
  11507. height: math.unit(500, "feet")
  11508. },
  11509. {
  11510. name: "Megamacro",
  11511. height: math.unit(5, "miles")
  11512. },
  11513. {
  11514. name: "Teramacro",
  11515. height: math.unit(150000, "miles")
  11516. },
  11517. ]
  11518. ))
  11519. characterMakers.push(() => makeCharacter(
  11520. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11521. {
  11522. front: {
  11523. height: math.unit(6, "feet"),
  11524. weight: math.unit(150, "lb"),
  11525. name: "Front",
  11526. image: {
  11527. source: "./media/characters/cuon/front.svg",
  11528. extra: 1390 / 1320,
  11529. bottom: 0.008
  11530. }
  11531. },
  11532. },
  11533. [
  11534. {
  11535. name: "Micro",
  11536. height: math.unit(3, "inches")
  11537. },
  11538. {
  11539. name: "Normal",
  11540. height: math.unit(18 + 9 / 12, "feet"),
  11541. default: true
  11542. },
  11543. {
  11544. name: "Macro",
  11545. height: math.unit(360, "feet")
  11546. },
  11547. {
  11548. name: "Megamacro",
  11549. height: math.unit(360, "miles")
  11550. },
  11551. ]
  11552. ))
  11553. characterMakers.push(() => makeCharacter(
  11554. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11555. {
  11556. front: {
  11557. height: math.unit(2.4, "meters"),
  11558. weight: math.unit(70, "kg"),
  11559. name: "Front",
  11560. image: {
  11561. source: "./media/characters/nyanuxk/front.svg",
  11562. extra: 1172 / 1084,
  11563. bottom: 0.065
  11564. }
  11565. },
  11566. side: {
  11567. height: math.unit(2.4, "meters"),
  11568. weight: math.unit(70, "kg"),
  11569. name: "Side",
  11570. image: {
  11571. source: "./media/characters/nyanuxk/side.svg",
  11572. extra: 1190 / 1132,
  11573. bottom: 0.007
  11574. }
  11575. },
  11576. back: {
  11577. height: math.unit(2.4, "meters"),
  11578. weight: math.unit(70, "kg"),
  11579. name: "Back",
  11580. image: {
  11581. source: "./media/characters/nyanuxk/back.svg",
  11582. extra: 1200 / 1141,
  11583. bottom: 0.015
  11584. }
  11585. },
  11586. foot: {
  11587. height: math.unit(0.52, "meters"),
  11588. name: "Foot",
  11589. image: {
  11590. source: "./media/characters/nyanuxk/foot.svg"
  11591. }
  11592. },
  11593. },
  11594. [
  11595. {
  11596. name: "Micro",
  11597. height: math.unit(2, "cm")
  11598. },
  11599. {
  11600. name: "Normal",
  11601. height: math.unit(2.4, "meters"),
  11602. default: true
  11603. },
  11604. {
  11605. name: "Smaller Macro",
  11606. height: math.unit(120, "meters")
  11607. },
  11608. {
  11609. name: "Bigger Macro",
  11610. height: math.unit(1.2, "km")
  11611. },
  11612. {
  11613. name: "Megamacro",
  11614. height: math.unit(15, "kilometers")
  11615. },
  11616. {
  11617. name: "Gigamacro",
  11618. height: math.unit(2000, "km")
  11619. },
  11620. {
  11621. name: "Teramacro",
  11622. height: math.unit(500000, "km")
  11623. },
  11624. ]
  11625. ))
  11626. characterMakers.push(() => makeCharacter(
  11627. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11628. {
  11629. side: {
  11630. height: math.unit(6, "feet"),
  11631. name: "Side",
  11632. image: {
  11633. source: "./media/characters/ailbhe/side.svg",
  11634. extra: 757 / 464,
  11635. bottom: 0.041
  11636. }
  11637. },
  11638. },
  11639. [
  11640. {
  11641. name: "Normal",
  11642. height: math.unit(1.07, "meters"),
  11643. default: true
  11644. },
  11645. ]
  11646. ))
  11647. characterMakers.push(() => makeCharacter(
  11648. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11649. {
  11650. front: {
  11651. height: math.unit(6, "feet"),
  11652. weight: math.unit(120, "kg"),
  11653. name: "Front",
  11654. image: {
  11655. source: "./media/characters/zevulfius/front.svg",
  11656. extra: 965 / 903
  11657. }
  11658. },
  11659. side: {
  11660. height: math.unit(6, "feet"),
  11661. weight: math.unit(120, "kg"),
  11662. name: "Side",
  11663. image: {
  11664. source: "./media/characters/zevulfius/side.svg",
  11665. extra: 939 / 900
  11666. }
  11667. },
  11668. back: {
  11669. height: math.unit(6, "feet"),
  11670. weight: math.unit(120, "kg"),
  11671. name: "Back",
  11672. image: {
  11673. source: "./media/characters/zevulfius/back.svg",
  11674. extra: 918 / 854,
  11675. bottom: 0.005
  11676. }
  11677. },
  11678. foot: {
  11679. height: math.unit(6 / 3.72, "feet"),
  11680. name: "Foot",
  11681. image: {
  11682. source: "./media/characters/zevulfius/foot.svg"
  11683. }
  11684. },
  11685. },
  11686. [
  11687. {
  11688. name: "Macro",
  11689. height: math.unit(750, "meters")
  11690. },
  11691. {
  11692. name: "Megamacro",
  11693. height: math.unit(20, "km"),
  11694. default: true
  11695. },
  11696. {
  11697. name: "Gigamacro",
  11698. height: math.unit(2000, "km")
  11699. },
  11700. {
  11701. name: "Teramacro",
  11702. height: math.unit(250000, "km")
  11703. },
  11704. ]
  11705. ))
  11706. characterMakers.push(() => makeCharacter(
  11707. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11708. {
  11709. front: {
  11710. height: math.unit(100, "feet"),
  11711. weight: math.unit(350, "kg"),
  11712. name: "Front",
  11713. image: {
  11714. source: "./media/characters/rikes/front.svg",
  11715. extra: 1565 / 1483,
  11716. bottom: 0.017
  11717. }
  11718. },
  11719. },
  11720. [
  11721. {
  11722. name: "Macro",
  11723. height: math.unit(100, "feet"),
  11724. default: true
  11725. },
  11726. ]
  11727. ))
  11728. characterMakers.push(() => makeCharacter(
  11729. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11730. {
  11731. front: {
  11732. height: math.unit(8, "feet"),
  11733. weight: math.unit(356, "lb"),
  11734. name: "Front",
  11735. image: {
  11736. source: "./media/characters/adam-silver-mane/front.svg",
  11737. extra: 1036/937,
  11738. bottom: 63/1099
  11739. }
  11740. },
  11741. side: {
  11742. height: math.unit(8, "feet"),
  11743. weight: math.unit(356, "lb"),
  11744. name: "Side",
  11745. image: {
  11746. source: "./media/characters/adam-silver-mane/side.svg",
  11747. extra: 997/901,
  11748. bottom: 59/1056
  11749. }
  11750. },
  11751. frontNsfw: {
  11752. height: math.unit(8, "feet"),
  11753. weight: math.unit(356, "lb"),
  11754. name: "Front (NSFW)",
  11755. image: {
  11756. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11757. extra: 1036/937,
  11758. bottom: 63/1099
  11759. }
  11760. },
  11761. sideNsfw: {
  11762. height: math.unit(8, "feet"),
  11763. weight: math.unit(356, "lb"),
  11764. name: "Side (NSFW)",
  11765. image: {
  11766. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11767. extra: 997/901,
  11768. bottom: 59/1056
  11769. }
  11770. },
  11771. dick: {
  11772. height: math.unit(2.1, "feet"),
  11773. name: "Dick",
  11774. image: {
  11775. source: "./media/characters/adam-silver-mane/dick.svg"
  11776. }
  11777. },
  11778. taur: {
  11779. height: math.unit(16, "feet"),
  11780. weight: math.unit(1500, "kg"),
  11781. name: "Taur",
  11782. image: {
  11783. source: "./media/characters/adam-silver-mane/taur.svg",
  11784. extra: 1713 / 1571,
  11785. bottom: 0.01
  11786. }
  11787. },
  11788. },
  11789. [
  11790. {
  11791. name: "Normal",
  11792. height: math.unit(8, "feet")
  11793. },
  11794. {
  11795. name: "Minimacro",
  11796. height: math.unit(80, "feet")
  11797. },
  11798. {
  11799. name: "MDA",
  11800. height: math.unit(80, "meters")
  11801. },
  11802. {
  11803. name: "Macro",
  11804. height: math.unit(800, "feet"),
  11805. default: true
  11806. },
  11807. {
  11808. name: "Megamacro",
  11809. height: math.unit(8000, "feet")
  11810. },
  11811. {
  11812. name: "Gigamacro",
  11813. height: math.unit(800, "miles")
  11814. },
  11815. {
  11816. name: "Teramacro",
  11817. height: math.unit(80000, "miles")
  11818. },
  11819. {
  11820. name: "Celestial",
  11821. height: math.unit(8e6, "miles")
  11822. },
  11823. {
  11824. name: "Star Dragon",
  11825. height: math.unit(800000, "parsecs")
  11826. },
  11827. {
  11828. name: "Godly",
  11829. height: math.unit(800, "teraparsecs")
  11830. },
  11831. ]
  11832. ))
  11833. characterMakers.push(() => makeCharacter(
  11834. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11835. {
  11836. front: {
  11837. height: math.unit(6, "feet"),
  11838. weight: math.unit(150, "lb"),
  11839. name: "Front",
  11840. image: {
  11841. source: "./media/characters/ky'owin/front.svg",
  11842. extra: 3862/3053,
  11843. bottom: 74/3936
  11844. }
  11845. },
  11846. },
  11847. [
  11848. {
  11849. name: "Normal",
  11850. height: math.unit(6 + 8 / 12, "feet")
  11851. },
  11852. {
  11853. name: "Large",
  11854. height: math.unit(68, "feet")
  11855. },
  11856. {
  11857. name: "Macro",
  11858. height: math.unit(132, "feet")
  11859. },
  11860. {
  11861. name: "Macro+",
  11862. height: math.unit(340, "feet")
  11863. },
  11864. {
  11865. name: "Macro++",
  11866. height: math.unit(680, "feet"),
  11867. default: true
  11868. },
  11869. {
  11870. name: "Megamacro",
  11871. height: math.unit(1, "mile")
  11872. },
  11873. {
  11874. name: "Megamacro+",
  11875. height: math.unit(10, "miles")
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11881. {
  11882. front: {
  11883. height: math.unit(4, "feet"),
  11884. weight: math.unit(50, "lb"),
  11885. name: "Front",
  11886. image: {
  11887. source: "./media/characters/mal/front.svg",
  11888. extra: 785 / 724,
  11889. bottom: 0.07
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Micro",
  11896. height: math.unit(4, "inches")
  11897. },
  11898. {
  11899. name: "Normal",
  11900. height: math.unit(4, "feet"),
  11901. default: true
  11902. },
  11903. {
  11904. name: "Macro",
  11905. height: math.unit(200, "feet")
  11906. },
  11907. ]
  11908. ))
  11909. characterMakers.push(() => makeCharacter(
  11910. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11911. {
  11912. front: {
  11913. height: math.unit(6, "feet"),
  11914. weight: math.unit(150, "lb"),
  11915. name: "Front",
  11916. image: {
  11917. source: "./media/characters/jordan-deware/front.svg",
  11918. extra: 1191 / 1012
  11919. }
  11920. },
  11921. },
  11922. [
  11923. {
  11924. name: "Nano",
  11925. height: math.unit(0.01, "mm")
  11926. },
  11927. {
  11928. name: "Minimicro",
  11929. height: math.unit(1, "mm")
  11930. },
  11931. {
  11932. name: "Micro",
  11933. height: math.unit(0.5, "inches")
  11934. },
  11935. {
  11936. name: "Normal",
  11937. height: math.unit(4, "feet"),
  11938. default: true
  11939. },
  11940. {
  11941. name: "Minimacro",
  11942. height: math.unit(40, "meters")
  11943. },
  11944. {
  11945. name: "Small Macro",
  11946. height: math.unit(400, "meters")
  11947. },
  11948. {
  11949. name: "Macro",
  11950. height: math.unit(4, "miles")
  11951. },
  11952. {
  11953. name: "Megamacro",
  11954. height: math.unit(40, "miles")
  11955. },
  11956. {
  11957. name: "Megamacro+",
  11958. height: math.unit(400, "miles")
  11959. },
  11960. {
  11961. name: "Gigamacro",
  11962. height: math.unit(400000, "miles")
  11963. },
  11964. ]
  11965. ))
  11966. characterMakers.push(() => makeCharacter(
  11967. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11968. {
  11969. side: {
  11970. height: math.unit(6, "feet"),
  11971. weight: math.unit(150, "lb"),
  11972. name: "Side",
  11973. image: {
  11974. source: "./media/characters/kimiko/side.svg",
  11975. extra: 600 / 358
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Normal",
  11982. height: math.unit(15, "feet"),
  11983. default: true
  11984. },
  11985. {
  11986. name: "Macro",
  11987. height: math.unit(220, "feet")
  11988. },
  11989. {
  11990. name: "Macro+",
  11991. height: math.unit(1450, "feet")
  11992. },
  11993. {
  11994. name: "Megamacro",
  11995. height: math.unit(11500, "feet")
  11996. },
  11997. {
  11998. name: "Gigamacro",
  11999. height: math.unit(9500, "miles")
  12000. },
  12001. {
  12002. name: "Teramacro",
  12003. height: math.unit(2208005005, "miles")
  12004. },
  12005. {
  12006. name: "Examacro",
  12007. height: math.unit(2750, "parsecs")
  12008. },
  12009. {
  12010. name: "Zettamacro",
  12011. height: math.unit(101500, "parsecs")
  12012. },
  12013. ]
  12014. ))
  12015. characterMakers.push(() => makeCharacter(
  12016. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12017. {
  12018. front: {
  12019. height: math.unit(6, "feet"),
  12020. weight: math.unit(70, "kg"),
  12021. name: "Front",
  12022. image: {
  12023. source: "./media/characters/andrew-sleepy/front.svg"
  12024. }
  12025. },
  12026. side: {
  12027. height: math.unit(6, "feet"),
  12028. weight: math.unit(70, "kg"),
  12029. name: "Side",
  12030. image: {
  12031. source: "./media/characters/andrew-sleepy/side.svg"
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Micro",
  12038. height: math.unit(1, "mm"),
  12039. default: true
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12045. {
  12046. front: {
  12047. height: math.unit(6, "feet"),
  12048. weight: math.unit(150, "lb"),
  12049. name: "Front",
  12050. image: {
  12051. source: "./media/characters/judio/front.svg",
  12052. extra: 1258 / 1110
  12053. }
  12054. },
  12055. },
  12056. [
  12057. {
  12058. name: "Normal",
  12059. height: math.unit(5 + 6 / 12, "feet")
  12060. },
  12061. {
  12062. name: "Macro",
  12063. height: math.unit(1000, "feet"),
  12064. default: true
  12065. },
  12066. {
  12067. name: "Megamacro",
  12068. height: math.unit(10, "miles")
  12069. },
  12070. ]
  12071. ))
  12072. characterMakers.push(() => makeCharacter(
  12073. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12074. {
  12075. frontDressed: {
  12076. height: math.unit(6, "feet"),
  12077. weight: math.unit(68, "kg"),
  12078. name: "Front (Dressed)",
  12079. image: {
  12080. source: "./media/characters/nomaxice/front-dressed.svg",
  12081. extra: 1137/824,
  12082. bottom: 74/1211
  12083. }
  12084. },
  12085. frontShorts: {
  12086. height: math.unit(6, "feet"),
  12087. weight: math.unit(68, "kg"),
  12088. name: "Front (Shorts)",
  12089. image: {
  12090. source: "./media/characters/nomaxice/front-shorts.svg",
  12091. extra: 1137/824,
  12092. bottom: 74/1211
  12093. }
  12094. },
  12095. back: {
  12096. height: math.unit(6, "feet"),
  12097. weight: math.unit(68, "kg"),
  12098. name: "Back",
  12099. image: {
  12100. source: "./media/characters/nomaxice/back.svg",
  12101. extra: 822/786,
  12102. bottom: 39/861
  12103. }
  12104. },
  12105. hand: {
  12106. height: math.unit(0.565, "feet"),
  12107. name: "Hand",
  12108. image: {
  12109. source: "./media/characters/nomaxice/hand.svg"
  12110. }
  12111. },
  12112. foot: {
  12113. height: math.unit(1, "feet"),
  12114. name: "Foot",
  12115. image: {
  12116. source: "./media/characters/nomaxice/foot.svg"
  12117. }
  12118. },
  12119. },
  12120. [
  12121. {
  12122. name: "Micro",
  12123. height: math.unit(8, "cm")
  12124. },
  12125. {
  12126. name: "Norm",
  12127. height: math.unit(1.82, "m")
  12128. },
  12129. {
  12130. name: "Norm+",
  12131. height: math.unit(8.8, "feet"),
  12132. default: true
  12133. },
  12134. {
  12135. name: "Big",
  12136. height: math.unit(8, "meters")
  12137. },
  12138. {
  12139. name: "Macro",
  12140. height: math.unit(18, "meters")
  12141. },
  12142. {
  12143. name: "Macro+",
  12144. height: math.unit(88, "meters")
  12145. },
  12146. ]
  12147. ))
  12148. characterMakers.push(() => makeCharacter(
  12149. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12150. {
  12151. front: {
  12152. height: math.unit(12, "feet"),
  12153. weight: math.unit(1.5, "tons"),
  12154. name: "Front",
  12155. image: {
  12156. source: "./media/characters/dydros/front.svg",
  12157. extra: 863 / 800,
  12158. bottom: 0.015
  12159. }
  12160. },
  12161. back: {
  12162. height: math.unit(12, "feet"),
  12163. weight: math.unit(1.5, "tons"),
  12164. name: "Back",
  12165. image: {
  12166. source: "./media/characters/dydros/back.svg",
  12167. extra: 900 / 843,
  12168. bottom: 0.005
  12169. }
  12170. },
  12171. },
  12172. [
  12173. {
  12174. name: "Normal",
  12175. height: math.unit(12, "feet"),
  12176. default: true
  12177. },
  12178. ]
  12179. ))
  12180. characterMakers.push(() => makeCharacter(
  12181. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12182. {
  12183. front: {
  12184. height: math.unit(6, "feet"),
  12185. weight: math.unit(100, "kg"),
  12186. name: "Front",
  12187. image: {
  12188. source: "./media/characters/riggi/front.svg",
  12189. extra: 5787 / 5303
  12190. }
  12191. },
  12192. hyper: {
  12193. height: math.unit(6 * 5 / 3, "feet"),
  12194. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12195. name: "Hyper",
  12196. image: {
  12197. source: "./media/characters/riggi/hyper.svg",
  12198. extra: 3595 / 3485
  12199. }
  12200. },
  12201. },
  12202. [
  12203. {
  12204. name: "Small Macro",
  12205. height: math.unit(50, "feet")
  12206. },
  12207. {
  12208. name: "Default",
  12209. height: math.unit(200, "feet"),
  12210. default: true
  12211. },
  12212. {
  12213. name: "Loom",
  12214. height: math.unit(10000, "feet")
  12215. },
  12216. {
  12217. name: "Cruising Altitude",
  12218. height: math.unit(30000, "feet")
  12219. },
  12220. {
  12221. name: "Megamacro",
  12222. height: math.unit(100, "miles")
  12223. },
  12224. {
  12225. name: "Continent Sized",
  12226. height: math.unit(2800, "miles")
  12227. },
  12228. {
  12229. name: "Earth Sized",
  12230. height: math.unit(8000, "miles")
  12231. },
  12232. ]
  12233. ))
  12234. characterMakers.push(() => makeCharacter(
  12235. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12236. {
  12237. front: {
  12238. height: math.unit(6, "feet"),
  12239. weight: math.unit(250, "lb"),
  12240. name: "Front",
  12241. image: {
  12242. source: "./media/characters/alexi/front.svg",
  12243. extra: 3483 / 3291,
  12244. bottom: 0.04
  12245. }
  12246. },
  12247. back: {
  12248. height: math.unit(6, "feet"),
  12249. weight: math.unit(250, "lb"),
  12250. name: "Back",
  12251. image: {
  12252. source: "./media/characters/alexi/back.svg",
  12253. extra: 3533 / 3356,
  12254. bottom: 0.021
  12255. }
  12256. },
  12257. frontTransforming: {
  12258. height: math.unit(8.58, "feet"),
  12259. weight: math.unit(1300, "lb"),
  12260. name: "Transforming",
  12261. image: {
  12262. source: "./media/characters/alexi/front-transforming.svg",
  12263. extra: 437 / 409,
  12264. bottom: 19 / 458.66
  12265. }
  12266. },
  12267. frontTransformed: {
  12268. height: math.unit(12.5, "feet"),
  12269. weight: math.unit(4000, "lb"),
  12270. name: "Transformed",
  12271. image: {
  12272. source: "./media/characters/alexi/front-transformed.svg",
  12273. extra: 639 / 614,
  12274. bottom: 30.55 / 671
  12275. }
  12276. },
  12277. },
  12278. [
  12279. {
  12280. name: "Normal",
  12281. height: math.unit(14, "feet"),
  12282. default: true
  12283. },
  12284. {
  12285. name: "Minimacro",
  12286. height: math.unit(30, "meters")
  12287. },
  12288. {
  12289. name: "Macro",
  12290. height: math.unit(500, "meters")
  12291. },
  12292. {
  12293. name: "Megamacro",
  12294. height: math.unit(9000, "km")
  12295. },
  12296. {
  12297. name: "Teramacro",
  12298. height: math.unit(384000, "km")
  12299. },
  12300. ]
  12301. ))
  12302. characterMakers.push(() => makeCharacter(
  12303. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12304. {
  12305. front: {
  12306. height: math.unit(6, "feet"),
  12307. weight: math.unit(150, "lb"),
  12308. name: "Front",
  12309. image: {
  12310. source: "./media/characters/kayroo/front.svg",
  12311. extra: 1153 / 1038,
  12312. bottom: 0.06
  12313. }
  12314. },
  12315. foot: {
  12316. height: math.unit(6, "feet"),
  12317. weight: math.unit(150, "lb"),
  12318. name: "Foot",
  12319. image: {
  12320. source: "./media/characters/kayroo/foot.svg"
  12321. }
  12322. },
  12323. },
  12324. [
  12325. {
  12326. name: "Normal",
  12327. height: math.unit(8, "feet"),
  12328. default: true
  12329. },
  12330. {
  12331. name: "Minimacro",
  12332. height: math.unit(250, "feet")
  12333. },
  12334. {
  12335. name: "Macro",
  12336. height: math.unit(2800, "feet")
  12337. },
  12338. {
  12339. name: "Megamacro",
  12340. height: math.unit(5200, "feet")
  12341. },
  12342. {
  12343. name: "Gigamacro",
  12344. height: math.unit(27000, "feet")
  12345. },
  12346. {
  12347. name: "Omega",
  12348. height: math.unit(45000, "feet")
  12349. },
  12350. ]
  12351. ))
  12352. characterMakers.push(() => makeCharacter(
  12353. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12354. {
  12355. front: {
  12356. height: math.unit(18, "feet"),
  12357. weight: math.unit(5800, "lb"),
  12358. name: "Front",
  12359. image: {
  12360. source: "./media/characters/rhys/front.svg",
  12361. extra: 3386 / 3090,
  12362. bottom: 0.07
  12363. }
  12364. },
  12365. },
  12366. [
  12367. {
  12368. name: "Normal",
  12369. height: math.unit(18, "feet"),
  12370. default: true
  12371. },
  12372. {
  12373. name: "Working Size",
  12374. height: math.unit(200, "feet")
  12375. },
  12376. {
  12377. name: "Demolition Size",
  12378. height: math.unit(2000, "feet")
  12379. },
  12380. {
  12381. name: "Maximum Licensed Size",
  12382. height: math.unit(5, "miles")
  12383. },
  12384. {
  12385. name: "Maximum Observed Size",
  12386. height: math.unit(10, "yottameters")
  12387. },
  12388. ]
  12389. ))
  12390. characterMakers.push(() => makeCharacter(
  12391. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12392. {
  12393. front: {
  12394. height: math.unit(6, "feet"),
  12395. weight: math.unit(250, "lb"),
  12396. name: "Front",
  12397. image: {
  12398. source: "./media/characters/toto/front.svg",
  12399. extra: 527 / 479,
  12400. bottom: 0.05
  12401. }
  12402. },
  12403. },
  12404. [
  12405. {
  12406. name: "Micro",
  12407. height: math.unit(3, "feet")
  12408. },
  12409. {
  12410. name: "Normal",
  12411. height: math.unit(10, "feet")
  12412. },
  12413. {
  12414. name: "Macro",
  12415. height: math.unit(150, "feet"),
  12416. default: true
  12417. },
  12418. {
  12419. name: "Megamacro",
  12420. height: math.unit(1200, "feet")
  12421. },
  12422. ]
  12423. ))
  12424. characterMakers.push(() => makeCharacter(
  12425. { name: "King", species: ["lion"], tags: ["anthro"] },
  12426. {
  12427. back: {
  12428. height: math.unit(6, "feet"),
  12429. weight: math.unit(150, "lb"),
  12430. name: "Back",
  12431. image: {
  12432. source: "./media/characters/king/back.svg"
  12433. }
  12434. },
  12435. },
  12436. [
  12437. {
  12438. name: "Micro",
  12439. height: math.unit(2, "inches")
  12440. },
  12441. {
  12442. name: "Normal",
  12443. height: math.unit(8, "feet")
  12444. },
  12445. {
  12446. name: "Macro",
  12447. height: math.unit(200, "feet"),
  12448. default: true
  12449. },
  12450. {
  12451. name: "Megamacro",
  12452. height: math.unit(50, "miles")
  12453. },
  12454. ]
  12455. ))
  12456. characterMakers.push(() => makeCharacter(
  12457. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12458. {
  12459. front: {
  12460. height: math.unit(11, "feet"),
  12461. weight: math.unit(1400, "lb"),
  12462. name: "Front",
  12463. image: {
  12464. source: "./media/characters/cordite/front.svg",
  12465. extra: 1919/1827,
  12466. bottom: 40/1959
  12467. }
  12468. },
  12469. side: {
  12470. height: math.unit(11, "feet"),
  12471. weight: math.unit(1400, "lb"),
  12472. name: "Side",
  12473. image: {
  12474. source: "./media/characters/cordite/side.svg",
  12475. extra: 1908/1793,
  12476. bottom: 38/1946
  12477. }
  12478. },
  12479. back: {
  12480. height: math.unit(11, "feet"),
  12481. weight: math.unit(1400, "lb"),
  12482. name: "Back",
  12483. image: {
  12484. source: "./media/characters/cordite/back.svg",
  12485. extra: 1938/1837,
  12486. bottom: 10/1948
  12487. }
  12488. },
  12489. feral: {
  12490. height: math.unit(2, "feet"),
  12491. weight: math.unit(90, "lb"),
  12492. name: "Feral",
  12493. image: {
  12494. source: "./media/characters/cordite/feral.svg",
  12495. extra: 1260 / 755,
  12496. bottom: 0.05
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Normal",
  12503. height: math.unit(11, "feet"),
  12504. default: true
  12505. },
  12506. ]
  12507. ))
  12508. characterMakers.push(() => makeCharacter(
  12509. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12510. {
  12511. front: {
  12512. height: math.unit(6, "feet"),
  12513. weight: math.unit(150, "lb"),
  12514. name: "Front",
  12515. image: {
  12516. source: "./media/characters/pianostrong/front.svg",
  12517. extra: 6577 / 6254,
  12518. bottom: 0.02
  12519. }
  12520. },
  12521. side: {
  12522. height: math.unit(6, "feet"),
  12523. weight: math.unit(150, "lb"),
  12524. name: "Side",
  12525. image: {
  12526. source: "./media/characters/pianostrong/side.svg",
  12527. extra: 6106 / 5730
  12528. }
  12529. },
  12530. back: {
  12531. height: math.unit(6, "feet"),
  12532. weight: math.unit(150, "lb"),
  12533. name: "Back",
  12534. image: {
  12535. source: "./media/characters/pianostrong/back.svg",
  12536. extra: 6085 / 5733,
  12537. bottom: 0.01
  12538. }
  12539. },
  12540. },
  12541. [
  12542. {
  12543. name: "Macro",
  12544. height: math.unit(100, "feet")
  12545. },
  12546. {
  12547. name: "Macro+",
  12548. height: math.unit(300, "feet"),
  12549. default: true
  12550. },
  12551. {
  12552. name: "Macro++",
  12553. height: math.unit(1000, "feet")
  12554. },
  12555. ]
  12556. ))
  12557. characterMakers.push(() => makeCharacter(
  12558. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12559. {
  12560. front: {
  12561. height: math.unit(6, "feet"),
  12562. weight: math.unit(150, "lb"),
  12563. name: "Front",
  12564. image: {
  12565. source: "./media/characters/kona/front.svg",
  12566. extra: 2960 / 2629,
  12567. bottom: 0.005
  12568. }
  12569. },
  12570. },
  12571. [
  12572. {
  12573. name: "Normal",
  12574. height: math.unit(11 + 8 / 12, "feet")
  12575. },
  12576. {
  12577. name: "Macro",
  12578. height: math.unit(850, "feet"),
  12579. default: true
  12580. },
  12581. {
  12582. name: "Macro+",
  12583. height: math.unit(1.5, "km"),
  12584. default: true
  12585. },
  12586. {
  12587. name: "Megamacro",
  12588. height: math.unit(80, "miles")
  12589. },
  12590. {
  12591. name: "Gigamacro",
  12592. height: math.unit(3500, "miles")
  12593. },
  12594. ]
  12595. ))
  12596. characterMakers.push(() => makeCharacter(
  12597. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12598. {
  12599. side: {
  12600. height: math.unit(1.9, "meters"),
  12601. weight: math.unit(326, "kg"),
  12602. name: "Side",
  12603. image: {
  12604. source: "./media/characters/levi/side.svg",
  12605. extra: 1704 / 1334,
  12606. bottom: 0.02
  12607. }
  12608. },
  12609. },
  12610. [
  12611. {
  12612. name: "Normal",
  12613. height: math.unit(1.9, "meters"),
  12614. default: true
  12615. },
  12616. {
  12617. name: "Macro",
  12618. height: math.unit(20, "meters")
  12619. },
  12620. {
  12621. name: "Macro+",
  12622. height: math.unit(200, "meters")
  12623. },
  12624. {
  12625. name: "Megamacro",
  12626. height: math.unit(2, "km")
  12627. },
  12628. {
  12629. name: "Megamacro+",
  12630. height: math.unit(20, "km")
  12631. },
  12632. {
  12633. name: "Gigamacro",
  12634. height: math.unit(2500, "km")
  12635. },
  12636. {
  12637. name: "Gigamacro+",
  12638. height: math.unit(120000, "km")
  12639. },
  12640. {
  12641. name: "Teramacro",
  12642. height: math.unit(7.77e6, "km")
  12643. },
  12644. ]
  12645. ))
  12646. characterMakers.push(() => makeCharacter(
  12647. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12648. {
  12649. front: {
  12650. height: math.unit(6 + 4/12, "feet"),
  12651. weight: math.unit(190, "lb"),
  12652. name: "Front",
  12653. image: {
  12654. source: "./media/characters/bmc/front.svg",
  12655. extra: 1626/1472,
  12656. bottom: 79/1705
  12657. }
  12658. },
  12659. back: {
  12660. height: math.unit(6 + 4/12, "feet"),
  12661. weight: math.unit(190, "lb"),
  12662. name: "Back",
  12663. image: {
  12664. source: "./media/characters/bmc/back.svg",
  12665. extra: 1640/1479,
  12666. bottom: 45/1685
  12667. }
  12668. },
  12669. frontArmor: {
  12670. height: math.unit(6 + 4/12, "feet"),
  12671. weight: math.unit(190, "lb"),
  12672. name: "Front-armor",
  12673. image: {
  12674. source: "./media/characters/bmc/front-armor.svg",
  12675. extra: 1538/1468,
  12676. bottom: 79/1617
  12677. }
  12678. },
  12679. },
  12680. [
  12681. {
  12682. name: "Human-sized",
  12683. height: math.unit(6 + 4 / 12, "feet")
  12684. },
  12685. {
  12686. name: "Interactive Size",
  12687. height: math.unit(25, "feet")
  12688. },
  12689. {
  12690. name: "Small",
  12691. height: math.unit(250, "feet")
  12692. },
  12693. {
  12694. name: "Normal",
  12695. height: math.unit(1250, "feet"),
  12696. default: true
  12697. },
  12698. {
  12699. name: "Good Day",
  12700. height: math.unit(88, "miles")
  12701. },
  12702. {
  12703. name: "Largest Measured Size",
  12704. height: math.unit(105.960, "galaxies")
  12705. },
  12706. ]
  12707. ))
  12708. characterMakers.push(() => makeCharacter(
  12709. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12710. {
  12711. front: {
  12712. height: math.unit(20, "feet"),
  12713. weight: math.unit(2016, "kg"),
  12714. name: "Front",
  12715. image: {
  12716. source: "./media/characters/sven-the-kaiju/front.svg",
  12717. extra: 1277/1250,
  12718. bottom: 35/1312
  12719. }
  12720. },
  12721. mouth: {
  12722. height: math.unit(1.85, "feet"),
  12723. name: "Mouth",
  12724. image: {
  12725. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12726. }
  12727. },
  12728. },
  12729. [
  12730. {
  12731. name: "Fairy",
  12732. height: math.unit(6, "inches")
  12733. },
  12734. {
  12735. name: "Normal",
  12736. height: math.unit(20, "feet"),
  12737. default: true
  12738. },
  12739. {
  12740. name: "Rampage",
  12741. height: math.unit(200, "feet")
  12742. },
  12743. {
  12744. name: "Archfey Forest Guardian",
  12745. height: math.unit(1, "mile")
  12746. },
  12747. ]
  12748. ))
  12749. characterMakers.push(() => makeCharacter(
  12750. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12751. {
  12752. front: {
  12753. height: math.unit(4, "meters"),
  12754. weight: math.unit(2, "tons"),
  12755. name: "Front",
  12756. image: {
  12757. source: "./media/characters/marik/front.svg",
  12758. extra: 1057 / 1003,
  12759. bottom: 0.08
  12760. }
  12761. },
  12762. },
  12763. [
  12764. {
  12765. name: "Normal",
  12766. height: math.unit(4, "meters"),
  12767. default: true
  12768. },
  12769. {
  12770. name: "Macro",
  12771. height: math.unit(20, "meters")
  12772. },
  12773. {
  12774. name: "Megamacro",
  12775. height: math.unit(50, "km")
  12776. },
  12777. {
  12778. name: "Gigamacro",
  12779. height: math.unit(100, "km")
  12780. },
  12781. {
  12782. name: "Alpha Macro",
  12783. height: math.unit(7.88e7, "yottameters")
  12784. },
  12785. ]
  12786. ))
  12787. characterMakers.push(() => makeCharacter(
  12788. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12789. {
  12790. front: {
  12791. height: math.unit(6, "feet"),
  12792. weight: math.unit(110, "lb"),
  12793. name: "Front",
  12794. image: {
  12795. source: "./media/characters/mel/front.svg",
  12796. extra: 736 / 617,
  12797. bottom: 0.017
  12798. }
  12799. },
  12800. },
  12801. [
  12802. {
  12803. name: "Pico",
  12804. height: math.unit(3, "pm")
  12805. },
  12806. {
  12807. name: "Nano",
  12808. height: math.unit(3, "nm")
  12809. },
  12810. {
  12811. name: "Micro",
  12812. height: math.unit(0.3, "mm"),
  12813. default: true
  12814. },
  12815. {
  12816. name: "Micro+",
  12817. height: math.unit(3, "mm")
  12818. },
  12819. {
  12820. name: "Normal",
  12821. height: math.unit(5 + 10.5 / 12, "feet")
  12822. },
  12823. ]
  12824. ))
  12825. characterMakers.push(() => makeCharacter(
  12826. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12827. {
  12828. kaiju: {
  12829. height: math.unit(1.75, "meters"),
  12830. weight: math.unit(55, "kg"),
  12831. name: "Kaiju",
  12832. image: {
  12833. source: "./media/characters/lykonous/kaiju.svg",
  12834. extra: 1055 / 946,
  12835. bottom: 0.135
  12836. }
  12837. },
  12838. },
  12839. [
  12840. {
  12841. name: "Normal",
  12842. height: math.unit(2.5, "meters"),
  12843. default: true
  12844. },
  12845. {
  12846. name: "Kaiju Dragon",
  12847. height: math.unit(60, "meters")
  12848. },
  12849. {
  12850. name: "Mega Kaiju",
  12851. height: math.unit(120, "km")
  12852. },
  12853. {
  12854. name: "Giga Kaiju",
  12855. height: math.unit(200, "megameters")
  12856. },
  12857. {
  12858. name: "Terra Kaiju",
  12859. height: math.unit(400, "gigameters")
  12860. },
  12861. {
  12862. name: "Kaiju Dragon God",
  12863. height: math.unit(13000, "exaparsecs")
  12864. },
  12865. ]
  12866. ))
  12867. characterMakers.push(() => makeCharacter(
  12868. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12869. {
  12870. front: {
  12871. height: math.unit(6, "feet"),
  12872. weight: math.unit(150, "lb"),
  12873. name: "Front",
  12874. image: {
  12875. source: "./media/characters/blü/front.svg",
  12876. extra: 1883 / 1564,
  12877. bottom: 0.031
  12878. }
  12879. },
  12880. },
  12881. [
  12882. {
  12883. name: "Normal",
  12884. height: math.unit(13, "feet"),
  12885. default: true
  12886. },
  12887. {
  12888. name: "Big Boi",
  12889. height: math.unit(150, "meters")
  12890. },
  12891. {
  12892. name: "Mini Stomper",
  12893. height: math.unit(300, "meters")
  12894. },
  12895. {
  12896. name: "Macro",
  12897. height: math.unit(1000, "meters")
  12898. },
  12899. {
  12900. name: "Megamacro",
  12901. height: math.unit(11000, "meters")
  12902. },
  12903. {
  12904. name: "Gigamacro",
  12905. height: math.unit(11000, "km")
  12906. },
  12907. {
  12908. name: "Teramacro",
  12909. height: math.unit(420000, "km")
  12910. },
  12911. {
  12912. name: "Examacro",
  12913. height: math.unit(120, "parsecs")
  12914. },
  12915. {
  12916. name: "God Tho",
  12917. height: math.unit(98000000000, "parsecs")
  12918. },
  12919. ]
  12920. ))
  12921. characterMakers.push(() => makeCharacter(
  12922. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12923. {
  12924. taurFront: {
  12925. height: math.unit(6, "feet"),
  12926. weight: math.unit(200, "lb"),
  12927. name: "Taur (Front)",
  12928. image: {
  12929. source: "./media/characters/scales/taur-front.svg",
  12930. extra: 1,
  12931. bottom: 0.05
  12932. }
  12933. },
  12934. taurBack: {
  12935. height: math.unit(6, "feet"),
  12936. weight: math.unit(200, "lb"),
  12937. name: "Taur (Back)",
  12938. image: {
  12939. source: "./media/characters/scales/taur-back.svg",
  12940. extra: 1,
  12941. bottom: 0.08
  12942. }
  12943. },
  12944. anthro: {
  12945. height: math.unit(6 * 7 / 12, "feet"),
  12946. weight: math.unit(100, "lb"),
  12947. name: "Anthro",
  12948. image: {
  12949. source: "./media/characters/scales/anthro.svg",
  12950. extra: 1,
  12951. bottom: 0.06
  12952. }
  12953. },
  12954. },
  12955. [
  12956. {
  12957. name: "Normal",
  12958. height: math.unit(12, "feet"),
  12959. default: true
  12960. },
  12961. ]
  12962. ))
  12963. characterMakers.push(() => makeCharacter(
  12964. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12965. {
  12966. front: {
  12967. height: math.unit(6, "feet"),
  12968. weight: math.unit(150, "lb"),
  12969. name: "Front",
  12970. image: {
  12971. source: "./media/characters/koragos/front.svg",
  12972. extra: 841 / 794,
  12973. bottom: 0.035
  12974. }
  12975. },
  12976. back: {
  12977. height: math.unit(6, "feet"),
  12978. weight: math.unit(150, "lb"),
  12979. name: "Back",
  12980. image: {
  12981. source: "./media/characters/koragos/back.svg",
  12982. extra: 841 / 810,
  12983. bottom: 0.022
  12984. }
  12985. },
  12986. },
  12987. [
  12988. {
  12989. name: "Normal",
  12990. height: math.unit(6 + 11 / 12, "feet"),
  12991. default: true
  12992. },
  12993. {
  12994. name: "Macro",
  12995. height: math.unit(490, "feet")
  12996. },
  12997. {
  12998. name: "Megamacro",
  12999. height: math.unit(10, "miles")
  13000. },
  13001. {
  13002. name: "Gigamacro",
  13003. height: math.unit(50, "miles")
  13004. },
  13005. ]
  13006. ))
  13007. characterMakers.push(() => makeCharacter(
  13008. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13009. {
  13010. front: {
  13011. height: math.unit(6, "feet"),
  13012. weight: math.unit(250, "lb"),
  13013. name: "Front",
  13014. image: {
  13015. source: "./media/characters/xylrem/front.svg",
  13016. extra: 3323 / 3050,
  13017. bottom: 0.065
  13018. }
  13019. },
  13020. },
  13021. [
  13022. {
  13023. name: "Micro",
  13024. height: math.unit(4, "feet")
  13025. },
  13026. {
  13027. name: "Normal",
  13028. height: math.unit(16, "feet"),
  13029. default: true
  13030. },
  13031. {
  13032. name: "Macro",
  13033. height: math.unit(2720, "feet")
  13034. },
  13035. {
  13036. name: "Megamacro",
  13037. height: math.unit(25000, "miles")
  13038. },
  13039. ]
  13040. ))
  13041. characterMakers.push(() => makeCharacter(
  13042. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13043. {
  13044. front: {
  13045. height: math.unit(8, "feet"),
  13046. weight: math.unit(250, "kg"),
  13047. name: "Front",
  13048. image: {
  13049. source: "./media/characters/ikideru/front.svg",
  13050. extra: 930 / 870,
  13051. bottom: 0.087
  13052. }
  13053. },
  13054. back: {
  13055. height: math.unit(8, "feet"),
  13056. weight: math.unit(250, "kg"),
  13057. name: "Back",
  13058. image: {
  13059. source: "./media/characters/ikideru/back.svg",
  13060. extra: 919 / 852,
  13061. bottom: 0.055
  13062. }
  13063. },
  13064. },
  13065. [
  13066. {
  13067. name: "Rare",
  13068. height: math.unit(8, "feet"),
  13069. default: true
  13070. },
  13071. {
  13072. name: "Playful Loom",
  13073. height: math.unit(80, "feet")
  13074. },
  13075. {
  13076. name: "City Leaner",
  13077. height: math.unit(230, "feet")
  13078. },
  13079. {
  13080. name: "Megamacro",
  13081. height: math.unit(2500, "feet")
  13082. },
  13083. {
  13084. name: "Gigamacro",
  13085. height: math.unit(26400, "feet")
  13086. },
  13087. {
  13088. name: "Tectonic Shifter",
  13089. height: math.unit(1.7, "megameters")
  13090. },
  13091. {
  13092. name: "Planet Carer",
  13093. height: math.unit(21, "megameters")
  13094. },
  13095. {
  13096. name: "God",
  13097. height: math.unit(11157.22, "parsecs")
  13098. },
  13099. ]
  13100. ))
  13101. characterMakers.push(() => makeCharacter(
  13102. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13103. {
  13104. front: {
  13105. height: math.unit(6, "feet"),
  13106. weight: math.unit(120, "lb"),
  13107. name: "Front",
  13108. image: {
  13109. source: "./media/characters/neo/front.svg"
  13110. }
  13111. },
  13112. },
  13113. [
  13114. {
  13115. name: "Micro",
  13116. height: math.unit(2, "inches"),
  13117. default: true
  13118. },
  13119. {
  13120. name: "Human Size",
  13121. height: math.unit(5 + 8 / 12, "feet")
  13122. },
  13123. ]
  13124. ))
  13125. characterMakers.push(() => makeCharacter(
  13126. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13127. {
  13128. front: {
  13129. height: math.unit(13 + 10 / 12, "feet"),
  13130. weight: math.unit(5320, "lb"),
  13131. name: "Front",
  13132. image: {
  13133. source: "./media/characters/chauncey-chantz/front.svg",
  13134. extra: 1587 / 1435,
  13135. bottom: 0.02
  13136. }
  13137. },
  13138. },
  13139. [
  13140. {
  13141. name: "Normal",
  13142. height: math.unit(13 + 10 / 12, "feet"),
  13143. default: true
  13144. },
  13145. {
  13146. name: "Macro",
  13147. height: math.unit(45, "feet")
  13148. },
  13149. {
  13150. name: "Megamacro",
  13151. height: math.unit(250, "miles")
  13152. },
  13153. {
  13154. name: "Planetary",
  13155. height: math.unit(10000, "miles")
  13156. },
  13157. {
  13158. name: "Galactic",
  13159. height: math.unit(40000, "parsecs")
  13160. },
  13161. {
  13162. name: "Universal",
  13163. height: math.unit(1, "yottameter")
  13164. },
  13165. ]
  13166. ))
  13167. characterMakers.push(() => makeCharacter(
  13168. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13169. {
  13170. front: {
  13171. height: math.unit(6, "feet"),
  13172. weight: math.unit(150, "lb"),
  13173. name: "Front",
  13174. image: {
  13175. source: "./media/characters/epifox/front.svg",
  13176. extra: 1,
  13177. bottom: 0.075
  13178. }
  13179. },
  13180. },
  13181. [
  13182. {
  13183. name: "Micro",
  13184. height: math.unit(6, "inches")
  13185. },
  13186. {
  13187. name: "Normal",
  13188. height: math.unit(12, "feet"),
  13189. default: true
  13190. },
  13191. {
  13192. name: "Macro",
  13193. height: math.unit(3810, "feet")
  13194. },
  13195. {
  13196. name: "Megamacro",
  13197. height: math.unit(500, "miles")
  13198. },
  13199. ]
  13200. ))
  13201. characterMakers.push(() => makeCharacter(
  13202. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13203. {
  13204. front: {
  13205. height: math.unit(1.8796, "m"),
  13206. weight: math.unit(230, "lb"),
  13207. name: "Front",
  13208. image: {
  13209. source: "./media/characters/colin-t/front.svg",
  13210. extra: 1272 / 1193,
  13211. bottom: 0.07
  13212. }
  13213. },
  13214. },
  13215. [
  13216. {
  13217. name: "Micro",
  13218. height: math.unit(0.571, "meters")
  13219. },
  13220. {
  13221. name: "Normal",
  13222. height: math.unit(1.8796, "meters"),
  13223. default: true
  13224. },
  13225. {
  13226. name: "Tall",
  13227. height: math.unit(4, "meters")
  13228. },
  13229. {
  13230. name: "Macro",
  13231. height: math.unit(67.241, "meters")
  13232. },
  13233. {
  13234. name: "Megamacro",
  13235. height: math.unit(371.856, "meters")
  13236. },
  13237. {
  13238. name: "Planetary",
  13239. height: math.unit(12631.5689, "km")
  13240. },
  13241. ]
  13242. ))
  13243. characterMakers.push(() => makeCharacter(
  13244. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13245. {
  13246. front: {
  13247. height: math.unit(1.85, "meters"),
  13248. weight: math.unit(80, "kg"),
  13249. name: "Front",
  13250. image: {
  13251. source: "./media/characters/matvei/front.svg",
  13252. extra: 456/447,
  13253. bottom: 8/464
  13254. }
  13255. },
  13256. back: {
  13257. height: math.unit(1.85, "meters"),
  13258. weight: math.unit(80, "kg"),
  13259. name: "Back",
  13260. image: {
  13261. source: "./media/characters/matvei/back.svg",
  13262. extra: 434/427,
  13263. bottom: 11/445
  13264. }
  13265. },
  13266. },
  13267. [
  13268. {
  13269. name: "Normal",
  13270. height: math.unit(1.85, "meters"),
  13271. default: true
  13272. },
  13273. ]
  13274. ))
  13275. characterMakers.push(() => makeCharacter(
  13276. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13277. {
  13278. front: {
  13279. height: math.unit(5 + 9 / 12, "feet"),
  13280. weight: math.unit(70, "lb"),
  13281. name: "Front",
  13282. image: {
  13283. source: "./media/characters/quincy/front.svg",
  13284. extra: 3041 / 2751
  13285. }
  13286. },
  13287. back: {
  13288. height: math.unit(5 + 9 / 12, "feet"),
  13289. weight: math.unit(70, "lb"),
  13290. name: "Back",
  13291. image: {
  13292. source: "./media/characters/quincy/back.svg",
  13293. extra: 3041 / 2751
  13294. }
  13295. },
  13296. flying: {
  13297. height: math.unit(5 + 4 / 12, "feet"),
  13298. weight: math.unit(70, "lb"),
  13299. name: "Flying",
  13300. image: {
  13301. source: "./media/characters/quincy/flying.svg",
  13302. extra: 1044 / 930
  13303. }
  13304. },
  13305. },
  13306. [
  13307. {
  13308. name: "Micro",
  13309. height: math.unit(3, "cm")
  13310. },
  13311. {
  13312. name: "Normal",
  13313. height: math.unit(5 + 9 / 12, "feet")
  13314. },
  13315. {
  13316. name: "Macro",
  13317. height: math.unit(200, "meters"),
  13318. default: true
  13319. },
  13320. {
  13321. name: "Megamacro",
  13322. height: math.unit(1000, "meters")
  13323. },
  13324. ]
  13325. ))
  13326. characterMakers.push(() => makeCharacter(
  13327. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13328. {
  13329. front: {
  13330. height: math.unit(3 + 11/12, "feet"),
  13331. weight: math.unit(50, "lb"),
  13332. name: "Front",
  13333. image: {
  13334. source: "./media/characters/vanrel/front.svg",
  13335. extra: 1104/949,
  13336. bottom: 52/1156
  13337. }
  13338. },
  13339. back: {
  13340. height: math.unit(3 + 11/12, "feet"),
  13341. weight: math.unit(50, "lb"),
  13342. name: "Back",
  13343. image: {
  13344. source: "./media/characters/vanrel/back.svg",
  13345. extra: 1119/976,
  13346. bottom: 37/1156
  13347. }
  13348. },
  13349. tome: {
  13350. height: math.unit(1.35, "feet"),
  13351. weight: math.unit(10, "lb"),
  13352. name: "Vanrel's Tome",
  13353. rename: true,
  13354. image: {
  13355. source: "./media/characters/vanrel/tome.svg"
  13356. }
  13357. },
  13358. beans: {
  13359. height: math.unit(0.89, "feet"),
  13360. name: "Beans",
  13361. image: {
  13362. source: "./media/characters/vanrel/beans.svg"
  13363. }
  13364. },
  13365. },
  13366. [
  13367. {
  13368. name: "Normal",
  13369. height: math.unit(3 + 11/12, "feet"),
  13370. default: true
  13371. },
  13372. ]
  13373. ))
  13374. characterMakers.push(() => makeCharacter(
  13375. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13376. {
  13377. front: {
  13378. height: math.unit(7 + 5 / 12, "feet"),
  13379. name: "Front",
  13380. image: {
  13381. source: "./media/characters/kuiper-vanrel/front.svg",
  13382. extra: 1219/1169,
  13383. bottom: 69/1288
  13384. }
  13385. },
  13386. back: {
  13387. height: math.unit(7 + 5 / 12, "feet"),
  13388. name: "Back",
  13389. image: {
  13390. source: "./media/characters/kuiper-vanrel/back.svg",
  13391. extra: 1236/1193,
  13392. bottom: 27/1263
  13393. }
  13394. },
  13395. foot: {
  13396. height: math.unit(0.55, "meters"),
  13397. name: "Foot",
  13398. image: {
  13399. source: "./media/characters/kuiper-vanrel/foot.svg",
  13400. }
  13401. },
  13402. battle: {
  13403. height: math.unit(6.824, "feet"),
  13404. name: "Battle",
  13405. image: {
  13406. source: "./media/characters/kuiper-vanrel/battle.svg",
  13407. extra: 1466 / 1327,
  13408. bottom: 29 / 1492.5
  13409. }
  13410. },
  13411. meerkui: {
  13412. height: math.unit(18, "inches"),
  13413. name: "Meerkui",
  13414. image: {
  13415. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13416. extra: 1354/1289,
  13417. bottom: 69/1423
  13418. }
  13419. },
  13420. },
  13421. [
  13422. {
  13423. name: "Normal",
  13424. height: math.unit(7 + 5 / 12, "feet"),
  13425. default: true
  13426. },
  13427. ]
  13428. ))
  13429. characterMakers.push(() => makeCharacter(
  13430. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13431. {
  13432. front: {
  13433. height: math.unit(8 + 5 / 12, "feet"),
  13434. name: "Front",
  13435. image: {
  13436. source: "./media/characters/keset-vanrel/front.svg",
  13437. extra: 1231/1148,
  13438. bottom: 82/1313
  13439. }
  13440. },
  13441. back: {
  13442. height: math.unit(8 + 5 / 12, "feet"),
  13443. name: "Back",
  13444. image: {
  13445. source: "./media/characters/keset-vanrel/back.svg",
  13446. extra: 1240/1174,
  13447. bottom: 33/1273
  13448. }
  13449. },
  13450. hand: {
  13451. height: math.unit(0.6, "meters"),
  13452. name: "Hand",
  13453. image: {
  13454. source: "./media/characters/keset-vanrel/hand.svg"
  13455. }
  13456. },
  13457. foot: {
  13458. height: math.unit(0.94978, "meters"),
  13459. name: "Foot",
  13460. image: {
  13461. source: "./media/characters/keset-vanrel/foot.svg"
  13462. }
  13463. },
  13464. battle: {
  13465. height: math.unit(7.408, "feet"),
  13466. name: "Battle",
  13467. image: {
  13468. source: "./media/characters/keset-vanrel/battle.svg",
  13469. extra: 1890 / 1386,
  13470. bottom: 73.28 / 1970
  13471. }
  13472. },
  13473. },
  13474. [
  13475. {
  13476. name: "Normal",
  13477. height: math.unit(8 + 5 / 12, "feet"),
  13478. default: true
  13479. },
  13480. ]
  13481. ))
  13482. characterMakers.push(() => makeCharacter(
  13483. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13484. {
  13485. front: {
  13486. height: math.unit(6, "feet"),
  13487. weight: math.unit(150, "lb"),
  13488. name: "Front",
  13489. image: {
  13490. source: "./media/characters/neos/front.svg",
  13491. extra: 1696 / 992,
  13492. bottom: 0.14
  13493. }
  13494. },
  13495. },
  13496. [
  13497. {
  13498. name: "Normal",
  13499. height: math.unit(54, "cm"),
  13500. default: true
  13501. },
  13502. {
  13503. name: "Macro",
  13504. height: math.unit(100, "m")
  13505. },
  13506. {
  13507. name: "Megamacro",
  13508. height: math.unit(10, "km")
  13509. },
  13510. {
  13511. name: "Megamacro+",
  13512. height: math.unit(100, "km")
  13513. },
  13514. {
  13515. name: "Gigamacro",
  13516. height: math.unit(100, "Mm")
  13517. },
  13518. {
  13519. name: "Teramacro",
  13520. height: math.unit(100, "Gm")
  13521. },
  13522. {
  13523. name: "Examacro",
  13524. height: math.unit(100, "Em")
  13525. },
  13526. {
  13527. name: "Godly",
  13528. height: math.unit(10000, "Ym")
  13529. },
  13530. {
  13531. name: "Beyond Godly",
  13532. height: math.unit(25, "multiverses")
  13533. },
  13534. ]
  13535. ))
  13536. characterMakers.push(() => makeCharacter(
  13537. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13538. {
  13539. feminine: {
  13540. height: math.unit(5, "feet"),
  13541. weight: math.unit(100, "lb"),
  13542. name: "Feminine",
  13543. image: {
  13544. source: "./media/characters/sammy-mouse/feminine.svg",
  13545. extra: 2526 / 2425,
  13546. bottom: 0.123
  13547. }
  13548. },
  13549. masculine: {
  13550. height: math.unit(5, "feet"),
  13551. weight: math.unit(100, "lb"),
  13552. name: "Masculine",
  13553. image: {
  13554. source: "./media/characters/sammy-mouse/masculine.svg",
  13555. extra: 2526 / 2425,
  13556. bottom: 0.123
  13557. }
  13558. },
  13559. },
  13560. [
  13561. {
  13562. name: "Micro",
  13563. height: math.unit(5, "inches")
  13564. },
  13565. {
  13566. name: "Normal",
  13567. height: math.unit(5, "feet"),
  13568. default: true
  13569. },
  13570. {
  13571. name: "Macro",
  13572. height: math.unit(60, "feet")
  13573. },
  13574. ]
  13575. ))
  13576. characterMakers.push(() => makeCharacter(
  13577. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13578. {
  13579. front: {
  13580. height: math.unit(4, "feet"),
  13581. weight: math.unit(50, "lb"),
  13582. name: "Front",
  13583. image: {
  13584. source: "./media/characters/kole/front.svg",
  13585. extra: 1423 / 1303,
  13586. bottom: 0.025
  13587. }
  13588. },
  13589. back: {
  13590. height: math.unit(4, "feet"),
  13591. weight: math.unit(50, "lb"),
  13592. name: "Back",
  13593. image: {
  13594. source: "./media/characters/kole/back.svg",
  13595. extra: 1426 / 1280,
  13596. bottom: 0.02
  13597. }
  13598. },
  13599. },
  13600. [
  13601. {
  13602. name: "Normal",
  13603. height: math.unit(4, "feet"),
  13604. default: true
  13605. },
  13606. ]
  13607. ))
  13608. characterMakers.push(() => makeCharacter(
  13609. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13610. {
  13611. front: {
  13612. height: math.unit(2.5, "feet"),
  13613. weight: math.unit(32, "lb"),
  13614. name: "Front",
  13615. image: {
  13616. source: "./media/characters/rufran/front.svg",
  13617. extra: 1313/885,
  13618. bottom: 94/1407
  13619. }
  13620. },
  13621. side: {
  13622. height: math.unit(2.5, "feet"),
  13623. weight: math.unit(32, "lb"),
  13624. name: "Side",
  13625. image: {
  13626. source: "./media/characters/rufran/side.svg",
  13627. extra: 1109/852,
  13628. bottom: 118/1227
  13629. }
  13630. },
  13631. back: {
  13632. height: math.unit(2.5, "feet"),
  13633. weight: math.unit(32, "lb"),
  13634. name: "Back",
  13635. image: {
  13636. source: "./media/characters/rufran/back.svg",
  13637. extra: 1280/878,
  13638. bottom: 131/1411
  13639. }
  13640. },
  13641. mouth: {
  13642. height: math.unit(1.13, "feet"),
  13643. name: "Mouth",
  13644. image: {
  13645. source: "./media/characters/rufran/mouth.svg"
  13646. }
  13647. },
  13648. foot: {
  13649. height: math.unit(1.33, "feet"),
  13650. name: "Foot",
  13651. image: {
  13652. source: "./media/characters/rufran/foot.svg"
  13653. }
  13654. },
  13655. koboldFront: {
  13656. height: math.unit(2 + 6 / 12, "feet"),
  13657. weight: math.unit(20, "lb"),
  13658. name: "Front (Kobold)",
  13659. image: {
  13660. source: "./media/characters/rufran/kobold-front.svg",
  13661. extra: 2041 / 1839,
  13662. bottom: 0.055
  13663. }
  13664. },
  13665. koboldBack: {
  13666. height: math.unit(2 + 6 / 12, "feet"),
  13667. weight: math.unit(20, "lb"),
  13668. name: "Back (Kobold)",
  13669. image: {
  13670. source: "./media/characters/rufran/kobold-back.svg",
  13671. extra: 2054 / 1839,
  13672. bottom: 0.01
  13673. }
  13674. },
  13675. koboldHand: {
  13676. height: math.unit(0.2166, "meters"),
  13677. name: "Hand (Kobold)",
  13678. image: {
  13679. source: "./media/characters/rufran/kobold-hand.svg"
  13680. }
  13681. },
  13682. koboldFoot: {
  13683. height: math.unit(0.185, "meters"),
  13684. name: "Foot (Kobold)",
  13685. image: {
  13686. source: "./media/characters/rufran/kobold-foot.svg"
  13687. }
  13688. },
  13689. },
  13690. [
  13691. {
  13692. name: "Micro",
  13693. height: math.unit(1, "inch")
  13694. },
  13695. {
  13696. name: "Normal",
  13697. height: math.unit(2 + 6 / 12, "feet"),
  13698. default: true
  13699. },
  13700. {
  13701. name: "Big",
  13702. height: math.unit(60, "feet")
  13703. },
  13704. {
  13705. name: "Macro",
  13706. height: math.unit(325, "feet")
  13707. },
  13708. ]
  13709. ))
  13710. characterMakers.push(() => makeCharacter(
  13711. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13712. {
  13713. front: {
  13714. height: math.unit(0.3, "meters"),
  13715. weight: math.unit(3.5, "kg"),
  13716. name: "Front",
  13717. image: {
  13718. source: "./media/characters/chip/front.svg",
  13719. extra: 748 / 674
  13720. }
  13721. },
  13722. },
  13723. [
  13724. {
  13725. name: "Micro",
  13726. height: math.unit(1, "inch"),
  13727. default: true
  13728. },
  13729. ]
  13730. ))
  13731. characterMakers.push(() => makeCharacter(
  13732. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13733. {
  13734. side: {
  13735. height: math.unit(2.3, "meters"),
  13736. weight: math.unit(3500, "lb"),
  13737. name: "Side",
  13738. image: {
  13739. source: "./media/characters/torvid/side.svg",
  13740. extra: 1972 / 722,
  13741. bottom: 0.035
  13742. }
  13743. },
  13744. },
  13745. [
  13746. {
  13747. name: "Normal",
  13748. height: math.unit(2.3, "meters"),
  13749. default: true
  13750. },
  13751. ]
  13752. ))
  13753. characterMakers.push(() => makeCharacter(
  13754. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13755. {
  13756. front: {
  13757. height: math.unit(2, "meters"),
  13758. weight: math.unit(150.5, "kg"),
  13759. name: "Front",
  13760. image: {
  13761. source: "./media/characters/susan/front.svg",
  13762. extra: 693 / 635,
  13763. bottom: 0.05
  13764. }
  13765. },
  13766. },
  13767. [
  13768. {
  13769. name: "Megamacro",
  13770. height: math.unit(505, "miles"),
  13771. default: true
  13772. },
  13773. ]
  13774. ))
  13775. characterMakers.push(() => makeCharacter(
  13776. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13777. {
  13778. front: {
  13779. height: math.unit(6, "feet"),
  13780. weight: math.unit(150, "lb"),
  13781. name: "Front",
  13782. image: {
  13783. source: "./media/characters/raindrops/front.svg",
  13784. extra: 2655 / 2461,
  13785. bottom: 49 / 2705
  13786. }
  13787. },
  13788. back: {
  13789. height: math.unit(6, "feet"),
  13790. weight: math.unit(150, "lb"),
  13791. name: "Back",
  13792. image: {
  13793. source: "./media/characters/raindrops/back.svg",
  13794. extra: 2574 / 2400,
  13795. bottom: 65 / 2634
  13796. }
  13797. },
  13798. },
  13799. [
  13800. {
  13801. name: "Micro",
  13802. height: math.unit(6, "inches")
  13803. },
  13804. {
  13805. name: "Normal",
  13806. height: math.unit(6 + 2 / 12, "feet")
  13807. },
  13808. {
  13809. name: "Macro",
  13810. height: math.unit(131, "feet"),
  13811. default: true
  13812. },
  13813. {
  13814. name: "Megamacro",
  13815. height: math.unit(15, "miles")
  13816. },
  13817. {
  13818. name: "Gigamacro",
  13819. height: math.unit(4000, "miles")
  13820. },
  13821. {
  13822. name: "Teramacro",
  13823. height: math.unit(315000, "miles")
  13824. },
  13825. ]
  13826. ))
  13827. characterMakers.push(() => makeCharacter(
  13828. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13829. {
  13830. front: {
  13831. height: math.unit(2.794, "meters"),
  13832. weight: math.unit(325, "kg"),
  13833. name: "Front",
  13834. image: {
  13835. source: "./media/characters/tezwa/front.svg",
  13836. extra: 2083 / 1906,
  13837. bottom: 0.031
  13838. }
  13839. },
  13840. foot: {
  13841. height: math.unit(0.687, "meters"),
  13842. name: "Foot",
  13843. image: {
  13844. source: "./media/characters/tezwa/foot.svg"
  13845. }
  13846. },
  13847. },
  13848. [
  13849. {
  13850. name: "Normal",
  13851. height: math.unit(9 + 2 / 12, "feet"),
  13852. default: true
  13853. },
  13854. ]
  13855. ))
  13856. characterMakers.push(() => makeCharacter(
  13857. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13858. {
  13859. front: {
  13860. height: math.unit(58, "feet"),
  13861. weight: math.unit(89000, "lb"),
  13862. name: "Front",
  13863. image: {
  13864. source: "./media/characters/typhus/front.svg",
  13865. extra: 816 / 800,
  13866. bottom: 0.065
  13867. }
  13868. },
  13869. },
  13870. [
  13871. {
  13872. name: "Macro",
  13873. height: math.unit(58, "feet"),
  13874. default: true
  13875. },
  13876. ]
  13877. ))
  13878. characterMakers.push(() => makeCharacter(
  13879. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13880. {
  13881. front: {
  13882. height: math.unit(12, "feet"),
  13883. weight: math.unit(6, "tonnes"),
  13884. name: "Front",
  13885. image: {
  13886. source: "./media/characters/lyra-von-wulf/front.svg",
  13887. extra: 1,
  13888. bottom: 0.10
  13889. }
  13890. },
  13891. frontMecha: {
  13892. height: math.unit(12, "feet"),
  13893. weight: math.unit(12, "tonnes"),
  13894. name: "Front (Mecha)",
  13895. image: {
  13896. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13897. extra: 1,
  13898. bottom: 0.042
  13899. }
  13900. },
  13901. maw: {
  13902. height: math.unit(2.2, "feet"),
  13903. name: "Maw",
  13904. image: {
  13905. source: "./media/characters/lyra-von-wulf/maw.svg"
  13906. }
  13907. },
  13908. },
  13909. [
  13910. {
  13911. name: "Normal",
  13912. height: math.unit(12, "feet"),
  13913. default: true
  13914. },
  13915. {
  13916. name: "Classic",
  13917. height: math.unit(50, "feet")
  13918. },
  13919. {
  13920. name: "Macro",
  13921. height: math.unit(500, "feet")
  13922. },
  13923. {
  13924. name: "Megamacro",
  13925. height: math.unit(1, "mile")
  13926. },
  13927. {
  13928. name: "Gigamacro",
  13929. height: math.unit(400, "miles")
  13930. },
  13931. {
  13932. name: "Teramacro",
  13933. height: math.unit(22000, "miles")
  13934. },
  13935. {
  13936. name: "Solarmacro",
  13937. height: math.unit(8600000, "miles")
  13938. },
  13939. {
  13940. name: "Galactic",
  13941. height: math.unit(1057000, "lightyears")
  13942. },
  13943. ]
  13944. ))
  13945. characterMakers.push(() => makeCharacter(
  13946. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13947. {
  13948. front: {
  13949. height: math.unit(6 + 10 / 12, "feet"),
  13950. weight: math.unit(150, "lb"),
  13951. name: "Front",
  13952. image: {
  13953. source: "./media/characters/dixon/front.svg",
  13954. extra: 3361 / 3209,
  13955. bottom: 0.01
  13956. }
  13957. },
  13958. },
  13959. [
  13960. {
  13961. name: "Normal",
  13962. height: math.unit(6 + 10 / 12, "feet"),
  13963. default: true
  13964. },
  13965. {
  13966. name: "Big",
  13967. height: math.unit(12, "meters")
  13968. },
  13969. {
  13970. name: "Macro",
  13971. height: math.unit(500, "meters")
  13972. },
  13973. {
  13974. name: "Megamacro",
  13975. height: math.unit(2, "km")
  13976. },
  13977. ]
  13978. ))
  13979. characterMakers.push(() => makeCharacter(
  13980. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13981. {
  13982. front: {
  13983. height: math.unit(185, "cm"),
  13984. weight: math.unit(68, "kg"),
  13985. name: "Front",
  13986. image: {
  13987. source: "./media/characters/kauko/front.svg",
  13988. extra: 1455 / 1421,
  13989. bottom: 0.03
  13990. }
  13991. },
  13992. back: {
  13993. height: math.unit(185, "cm"),
  13994. weight: math.unit(68, "kg"),
  13995. name: "Back",
  13996. image: {
  13997. source: "./media/characters/kauko/back.svg",
  13998. extra: 1455 / 1421,
  13999. bottom: 0.004
  14000. }
  14001. },
  14002. },
  14003. [
  14004. {
  14005. name: "Normal",
  14006. height: math.unit(185, "cm"),
  14007. default: true
  14008. },
  14009. ]
  14010. ))
  14011. characterMakers.push(() => makeCharacter(
  14012. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14013. {
  14014. frontSfw: {
  14015. height: math.unit(5, "meters"),
  14016. weight: math.unit(4250, "lb"),
  14017. name: "Front",
  14018. image: {
  14019. source: "./media/characters/varg/front-sfw.svg",
  14020. extra: 1103/1010,
  14021. bottom: 50/1153
  14022. },
  14023. form: "anthro",
  14024. default: true
  14025. },
  14026. backSfw: {
  14027. height: math.unit(5, "meters"),
  14028. weight: math.unit(4250, "lb"),
  14029. name: "Back",
  14030. image: {
  14031. source: "./media/characters/varg/back-sfw.svg",
  14032. extra: 1038/1022,
  14033. bottom: 36/1074
  14034. },
  14035. form: "anthro"
  14036. },
  14037. frontNsfw: {
  14038. height: math.unit(5, "meters"),
  14039. weight: math.unit(4250, "lb"),
  14040. name: "Front (NSFW)",
  14041. image: {
  14042. source: "./media/characters/varg/front-nsfw.svg",
  14043. extra: 1103/1010,
  14044. bottom: 50/1153
  14045. },
  14046. form: "anthro"
  14047. },
  14048. sheath: {
  14049. height: math.unit(3.8, "feet"),
  14050. weight: math.unit(90, "kilograms"),
  14051. name: "Sheath",
  14052. image: {
  14053. source: "./media/characters/varg/sheath.svg"
  14054. },
  14055. form: "anthro"
  14056. },
  14057. dick: {
  14058. height: math.unit(4.6, "feet"),
  14059. weight: math.unit(451, "kilograms"),
  14060. name: "Dick",
  14061. image: {
  14062. source: "./media/characters/varg/dick.svg"
  14063. },
  14064. form: "anthro"
  14065. },
  14066. feralSfw: {
  14067. height: math.unit(5, "meters"),
  14068. weight: math.unit(100000, "lb"),
  14069. name: "Side",
  14070. image: {
  14071. source: "./media/characters/varg/feral-sfw.svg",
  14072. extra: 1065/511,
  14073. bottom: 211/1276
  14074. },
  14075. form: "feral",
  14076. default: true
  14077. },
  14078. feralNsfw: {
  14079. height: math.unit(5, "meters"),
  14080. weight: math.unit(100000, "lb"),
  14081. name: "Side (NSFW)",
  14082. image: {
  14083. source: "./media/characters/varg/feral-nsfw.svg",
  14084. extra: 1065/511,
  14085. bottom: 211/1276
  14086. },
  14087. form: "feral",
  14088. },
  14089. feralSheath: {
  14090. height: math.unit(9.8, "feet"),
  14091. weight: math.unit(2000, "kilograms"),
  14092. name: "Sheath",
  14093. image: {
  14094. source: "./media/characters/varg/sheath.svg"
  14095. },
  14096. form: "feral"
  14097. },
  14098. feralDick: {
  14099. height: math.unit(13.11, "feet"),
  14100. weight: math.unit(10440, "kilograms"),
  14101. name: "Dick",
  14102. image: {
  14103. source: "./media/characters/varg/dick.svg"
  14104. },
  14105. form: "feral"
  14106. },
  14107. },
  14108. [
  14109. {
  14110. name: "Normal",
  14111. height: math.unit(5, "meters"),
  14112. form: "anthro"
  14113. },
  14114. {
  14115. name: "Macro",
  14116. height: math.unit(200, "meters"),
  14117. form: "anthro"
  14118. },
  14119. {
  14120. name: "Megamacro",
  14121. height: math.unit(20, "kilometers"),
  14122. form: "anthro"
  14123. },
  14124. {
  14125. name: "True Size",
  14126. height: math.unit(211, "km"),
  14127. form: "anthro",
  14128. default: true
  14129. },
  14130. {
  14131. name: "Gigamacro",
  14132. height: math.unit(1000, "km"),
  14133. form: "anthro"
  14134. },
  14135. {
  14136. name: "Gigamacro+",
  14137. height: math.unit(8000, "km"),
  14138. form: "anthro"
  14139. },
  14140. {
  14141. name: "Teramacro",
  14142. height: math.unit(1000000, "km"),
  14143. form: "anthro"
  14144. },
  14145. {
  14146. name: "Normal",
  14147. height: math.unit(5, "meters"),
  14148. form: "feral"
  14149. },
  14150. {
  14151. name: "Macro",
  14152. height: math.unit(200, "meters"),
  14153. form: "feral"
  14154. },
  14155. {
  14156. name: "Megamacro",
  14157. height: math.unit(20, "kilometers"),
  14158. form: "feral"
  14159. },
  14160. {
  14161. name: "True Size",
  14162. height: math.unit(211, "km"),
  14163. form: "feral",
  14164. default: true
  14165. },
  14166. {
  14167. name: "Gigamacro",
  14168. height: math.unit(1000, "km"),
  14169. form: "feral"
  14170. },
  14171. {
  14172. name: "Gigamacro+",
  14173. height: math.unit(8000, "km"),
  14174. form: "feral"
  14175. },
  14176. {
  14177. name: "Teramacro",
  14178. height: math.unit(1000000, "km"),
  14179. form: "feral"
  14180. },
  14181. ],
  14182. {
  14183. "anthro": {
  14184. name: "Anthro",
  14185. default: true
  14186. },
  14187. "feral": {
  14188. name: "Feral",
  14189. },
  14190. }
  14191. ))
  14192. characterMakers.push(() => makeCharacter(
  14193. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14194. {
  14195. front: {
  14196. height: math.unit(7 + 7 / 12, "feet"),
  14197. weight: math.unit(267, "lb"),
  14198. name: "Front",
  14199. image: {
  14200. source: "./media/characters/dayza/front.svg",
  14201. extra: 1262 / 1200,
  14202. bottom: 0.035
  14203. }
  14204. },
  14205. side: {
  14206. height: math.unit(7 + 7 / 12, "feet"),
  14207. weight: math.unit(267, "lb"),
  14208. name: "Side",
  14209. image: {
  14210. source: "./media/characters/dayza/side.svg",
  14211. extra: 1295 / 1245,
  14212. bottom: 0.05
  14213. }
  14214. },
  14215. back: {
  14216. height: math.unit(7 + 7 / 12, "feet"),
  14217. weight: math.unit(267, "lb"),
  14218. name: "Back",
  14219. image: {
  14220. source: "./media/characters/dayza/back.svg",
  14221. extra: 1241 / 1170
  14222. }
  14223. },
  14224. },
  14225. [
  14226. {
  14227. name: "Normal",
  14228. height: math.unit(7 + 7 / 12, "feet"),
  14229. default: true
  14230. },
  14231. {
  14232. name: "Macro",
  14233. height: math.unit(155, "feet")
  14234. },
  14235. ]
  14236. ))
  14237. characterMakers.push(() => makeCharacter(
  14238. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14239. {
  14240. front: {
  14241. height: math.unit(6 + 5 / 12, "feet"),
  14242. weight: math.unit(160, "lb"),
  14243. name: "Front",
  14244. image: {
  14245. source: "./media/characters/xanthos/front.svg",
  14246. extra: 1,
  14247. bottom: 0.04
  14248. }
  14249. },
  14250. back: {
  14251. height: math.unit(6 + 5 / 12, "feet"),
  14252. weight: math.unit(160, "lb"),
  14253. name: "Back",
  14254. image: {
  14255. source: "./media/characters/xanthos/back.svg",
  14256. extra: 1,
  14257. bottom: 0.03
  14258. }
  14259. },
  14260. hand: {
  14261. height: math.unit(0.928, "feet"),
  14262. name: "Hand",
  14263. image: {
  14264. source: "./media/characters/xanthos/hand.svg"
  14265. }
  14266. },
  14267. foot: {
  14268. height: math.unit(1.286, "feet"),
  14269. name: "Foot",
  14270. image: {
  14271. source: "./media/characters/xanthos/foot.svg"
  14272. }
  14273. },
  14274. },
  14275. [
  14276. {
  14277. name: "Normal",
  14278. height: math.unit(6 + 5 / 12, "feet"),
  14279. default: true
  14280. },
  14281. {
  14282. name: "Normal+",
  14283. height: math.unit(6, "meters")
  14284. },
  14285. {
  14286. name: "Macro",
  14287. height: math.unit(40, "feet")
  14288. },
  14289. {
  14290. name: "Macro+",
  14291. height: math.unit(200, "meters")
  14292. },
  14293. {
  14294. name: "Megamacro",
  14295. height: math.unit(20, "km")
  14296. },
  14297. {
  14298. name: "Megamacro+",
  14299. height: math.unit(100, "km")
  14300. },
  14301. {
  14302. name: "Gigamacro",
  14303. height: math.unit(200, "megameters")
  14304. },
  14305. {
  14306. name: "Gigamacro+",
  14307. height: math.unit(1.5, "gigameters")
  14308. },
  14309. ]
  14310. ))
  14311. characterMakers.push(() => makeCharacter(
  14312. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14313. {
  14314. front: {
  14315. height: math.unit(6 + 3 / 12, "feet"),
  14316. weight: math.unit(215, "lb"),
  14317. name: "Front",
  14318. image: {
  14319. source: "./media/characters/grynn/front.svg",
  14320. extra: 4627 / 4209,
  14321. bottom: 0.047
  14322. }
  14323. },
  14324. },
  14325. [
  14326. {
  14327. name: "Micro",
  14328. height: math.unit(6, "inches")
  14329. },
  14330. {
  14331. name: "Normal",
  14332. height: math.unit(6 + 3 / 12, "feet"),
  14333. default: true
  14334. },
  14335. {
  14336. name: "Big",
  14337. height: math.unit(104, "feet")
  14338. },
  14339. {
  14340. name: "Macro",
  14341. height: math.unit(944, "feet")
  14342. },
  14343. {
  14344. name: "Macro+",
  14345. height: math.unit(9480, "feet")
  14346. },
  14347. {
  14348. name: "Megamacro",
  14349. height: math.unit(78752, "feet")
  14350. },
  14351. {
  14352. name: "Megamacro+",
  14353. height: math.unit(630128, "feet")
  14354. },
  14355. {
  14356. name: "Megamacro++",
  14357. height: math.unit(3150695, "feet")
  14358. },
  14359. ]
  14360. ))
  14361. characterMakers.push(() => makeCharacter(
  14362. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14363. {
  14364. front: {
  14365. height: math.unit(7 + 5 / 12, "feet"),
  14366. weight: math.unit(450, "lb"),
  14367. name: "Front",
  14368. image: {
  14369. source: "./media/characters/mocha-aura/front.svg",
  14370. extra: 1907 / 1817,
  14371. bottom: 0.04
  14372. }
  14373. },
  14374. back: {
  14375. height: math.unit(7 + 5 / 12, "feet"),
  14376. weight: math.unit(450, "lb"),
  14377. name: "Back",
  14378. image: {
  14379. source: "./media/characters/mocha-aura/back.svg",
  14380. extra: 1900 / 1825,
  14381. bottom: 0.045
  14382. }
  14383. },
  14384. },
  14385. [
  14386. {
  14387. name: "Nano",
  14388. height: math.unit(1, "nm")
  14389. },
  14390. {
  14391. name: "Megamicro",
  14392. height: math.unit(1, "mm")
  14393. },
  14394. {
  14395. name: "Micro",
  14396. height: math.unit(3, "inches")
  14397. },
  14398. {
  14399. name: "Normal",
  14400. height: math.unit(7 + 5 / 12, "feet"),
  14401. default: true
  14402. },
  14403. {
  14404. name: "Macro",
  14405. height: math.unit(30, "feet")
  14406. },
  14407. {
  14408. name: "Megamacro",
  14409. height: math.unit(3500, "feet")
  14410. },
  14411. {
  14412. name: "Teramacro",
  14413. height: math.unit(500000, "miles")
  14414. },
  14415. {
  14416. name: "Petamacro",
  14417. height: math.unit(50000000000000000, "parsecs")
  14418. },
  14419. ]
  14420. ))
  14421. characterMakers.push(() => makeCharacter(
  14422. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14423. {
  14424. front: {
  14425. height: math.unit(6, "feet"),
  14426. weight: math.unit(150, "lb"),
  14427. name: "Front",
  14428. image: {
  14429. source: "./media/characters/ilisha-devya/front.svg",
  14430. extra: 1053/1049,
  14431. bottom: 270/1323
  14432. }
  14433. },
  14434. back: {
  14435. height: math.unit(6, "feet"),
  14436. weight: math.unit(150, "lb"),
  14437. name: "Back",
  14438. image: {
  14439. source: "./media/characters/ilisha-devya/back.svg",
  14440. extra: 1131/1128,
  14441. bottom: 39/1170
  14442. }
  14443. },
  14444. },
  14445. [
  14446. {
  14447. name: "Macro",
  14448. height: math.unit(500, "feet"),
  14449. default: true
  14450. },
  14451. {
  14452. name: "Megamacro",
  14453. height: math.unit(10, "miles")
  14454. },
  14455. {
  14456. name: "Gigamacro",
  14457. height: math.unit(100000, "miles")
  14458. },
  14459. {
  14460. name: "Examacro",
  14461. height: math.unit(1e9, "lightyears")
  14462. },
  14463. {
  14464. name: "Omniversal",
  14465. height: math.unit(1e33, "lightyears")
  14466. },
  14467. {
  14468. name: "Beyond Infinite",
  14469. height: math.unit(1e100, "lightyears")
  14470. },
  14471. ]
  14472. ))
  14473. characterMakers.push(() => makeCharacter(
  14474. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14475. {
  14476. Side: {
  14477. height: math.unit(6, "feet"),
  14478. weight: math.unit(150, "lb"),
  14479. name: "Side",
  14480. image: {
  14481. source: "./media/characters/mira/side.svg",
  14482. extra: 900 / 799,
  14483. bottom: 0.02
  14484. }
  14485. },
  14486. },
  14487. [
  14488. {
  14489. name: "Human Size",
  14490. height: math.unit(6, "feet")
  14491. },
  14492. {
  14493. name: "Macro",
  14494. height: math.unit(100, "feet"),
  14495. default: true
  14496. },
  14497. {
  14498. name: "Megamacro",
  14499. height: math.unit(10, "miles")
  14500. },
  14501. {
  14502. name: "Gigamacro",
  14503. height: math.unit(25000, "miles")
  14504. },
  14505. {
  14506. name: "Teramacro",
  14507. height: math.unit(300, "AU")
  14508. },
  14509. {
  14510. name: "Full Size",
  14511. height: math.unit(4.5e10, "lightyears")
  14512. },
  14513. ]
  14514. ))
  14515. characterMakers.push(() => makeCharacter(
  14516. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14517. {
  14518. front: {
  14519. height: math.unit(6, "feet"),
  14520. weight: math.unit(150, "lb"),
  14521. name: "Front",
  14522. image: {
  14523. source: "./media/characters/holly/front.svg",
  14524. extra: 639 / 606
  14525. }
  14526. },
  14527. back: {
  14528. height: math.unit(6, "feet"),
  14529. weight: math.unit(150, "lb"),
  14530. name: "Back",
  14531. image: {
  14532. source: "./media/characters/holly/back.svg",
  14533. extra: 623 / 598
  14534. }
  14535. },
  14536. frontWorking: {
  14537. height: math.unit(6, "feet"),
  14538. weight: math.unit(150, "lb"),
  14539. name: "Front (Working)",
  14540. image: {
  14541. source: "./media/characters/holly/front-working.svg",
  14542. extra: 607 / 577,
  14543. bottom: 0.048
  14544. }
  14545. },
  14546. },
  14547. [
  14548. {
  14549. name: "Normal",
  14550. height: math.unit(12 + 3 / 12, "feet"),
  14551. default: true
  14552. },
  14553. ]
  14554. ))
  14555. characterMakers.push(() => makeCharacter(
  14556. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14557. {
  14558. front: {
  14559. height: math.unit(6, "feet"),
  14560. weight: math.unit(150, "lb"),
  14561. name: "Front",
  14562. image: {
  14563. source: "./media/characters/porter/front.svg",
  14564. extra: 1,
  14565. bottom: 0.01
  14566. }
  14567. },
  14568. frontRobes: {
  14569. height: math.unit(6, "feet"),
  14570. weight: math.unit(150, "lb"),
  14571. name: "Front (Robes)",
  14572. image: {
  14573. source: "./media/characters/porter/front-robes.svg",
  14574. extra: 1.01,
  14575. bottom: 0.01
  14576. }
  14577. },
  14578. },
  14579. [
  14580. {
  14581. name: "Normal",
  14582. height: math.unit(11 + 9 / 12, "feet"),
  14583. default: true
  14584. },
  14585. ]
  14586. ))
  14587. characterMakers.push(() => makeCharacter(
  14588. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14589. {
  14590. legendary: {
  14591. height: math.unit(6, "feet"),
  14592. weight: math.unit(150, "lb"),
  14593. name: "Legendary",
  14594. image: {
  14595. source: "./media/characters/lucy/legendary.svg",
  14596. extra: 1355 / 1100,
  14597. bottom: 0.045
  14598. }
  14599. },
  14600. },
  14601. [
  14602. {
  14603. name: "Legendary",
  14604. height: math.unit(86882 * 2, "miles"),
  14605. default: true
  14606. },
  14607. ]
  14608. ))
  14609. characterMakers.push(() => makeCharacter(
  14610. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14611. {
  14612. front: {
  14613. height: math.unit(6, "feet"),
  14614. weight: math.unit(150, "lb"),
  14615. name: "Front",
  14616. image: {
  14617. source: "./media/characters/drusilla/front.svg",
  14618. extra: 678 / 635,
  14619. bottom: 0.03
  14620. }
  14621. },
  14622. back: {
  14623. height: math.unit(6, "feet"),
  14624. weight: math.unit(150, "lb"),
  14625. name: "Back",
  14626. image: {
  14627. source: "./media/characters/drusilla/back.svg",
  14628. extra: 678 / 635,
  14629. bottom: 0.005
  14630. }
  14631. },
  14632. },
  14633. [
  14634. {
  14635. name: "Macro",
  14636. height: math.unit(100, "feet")
  14637. },
  14638. {
  14639. name: "Canon Height",
  14640. height: math.unit(2000, "feet"),
  14641. default: true
  14642. },
  14643. ]
  14644. ))
  14645. characterMakers.push(() => makeCharacter(
  14646. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14647. {
  14648. front: {
  14649. height: math.unit(6, "feet"),
  14650. weight: math.unit(180, "lb"),
  14651. name: "Front",
  14652. image: {
  14653. source: "./media/characters/renard-thatch/front.svg",
  14654. extra: 2411 / 2275,
  14655. bottom: 0.01
  14656. }
  14657. },
  14658. frontPosing: {
  14659. height: math.unit(6, "feet"),
  14660. weight: math.unit(180, "lb"),
  14661. name: "Front (Posing)",
  14662. image: {
  14663. source: "./media/characters/renard-thatch/front-posing.svg",
  14664. extra: 2381 / 2261,
  14665. bottom: 0.01
  14666. }
  14667. },
  14668. back: {
  14669. height: math.unit(6, "feet"),
  14670. weight: math.unit(180, "lb"),
  14671. name: "Back",
  14672. image: {
  14673. source: "./media/characters/renard-thatch/back.svg",
  14674. extra: 2428 / 2288
  14675. }
  14676. },
  14677. },
  14678. [
  14679. {
  14680. name: "Micro",
  14681. height: math.unit(3, "inches")
  14682. },
  14683. {
  14684. name: "Default",
  14685. height: math.unit(6, "feet"),
  14686. default: true
  14687. },
  14688. {
  14689. name: "Macro",
  14690. height: math.unit(75, "feet")
  14691. },
  14692. ]
  14693. ))
  14694. characterMakers.push(() => makeCharacter(
  14695. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14696. {
  14697. front: {
  14698. height: math.unit(1450, "feet"),
  14699. weight: math.unit(1.21e6, "tons"),
  14700. name: "Front",
  14701. image: {
  14702. source: "./media/characters/sekvra/front.svg",
  14703. extra: 1193/1190,
  14704. bottom: 78/1271
  14705. }
  14706. },
  14707. side: {
  14708. height: math.unit(1450, "feet"),
  14709. weight: math.unit(1.21e6, "tons"),
  14710. name: "Side",
  14711. image: {
  14712. source: "./media/characters/sekvra/side.svg",
  14713. extra: 1193/1190,
  14714. bottom: 52/1245
  14715. }
  14716. },
  14717. back: {
  14718. height: math.unit(1450, "feet"),
  14719. weight: math.unit(1.21e6, "tons"),
  14720. name: "Back",
  14721. image: {
  14722. source: "./media/characters/sekvra/back.svg",
  14723. extra: 1219/1216,
  14724. bottom: 21/1240
  14725. }
  14726. },
  14727. frontClothed: {
  14728. height: math.unit(1450, "feet"),
  14729. weight: math.unit(1.21e6, "tons"),
  14730. name: "Front (Clothed)",
  14731. image: {
  14732. source: "./media/characters/sekvra/front-clothed.svg",
  14733. extra: 1192/1189,
  14734. bottom: 79/1271
  14735. }
  14736. },
  14737. },
  14738. [
  14739. {
  14740. name: "Macro",
  14741. height: math.unit(1450, "feet"),
  14742. default: true
  14743. },
  14744. {
  14745. name: "Megamacro",
  14746. height: math.unit(15000, "feet")
  14747. },
  14748. ]
  14749. ))
  14750. characterMakers.push(() => makeCharacter(
  14751. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14752. {
  14753. front: {
  14754. height: math.unit(6, "feet"),
  14755. weight: math.unit(150, "lb"),
  14756. name: "Front",
  14757. image: {
  14758. source: "./media/characters/carmine/front.svg",
  14759. extra: 1,
  14760. bottom: 0.035
  14761. }
  14762. },
  14763. frontArmor: {
  14764. height: math.unit(6, "feet"),
  14765. weight: math.unit(150, "lb"),
  14766. name: "Front (Armor)",
  14767. image: {
  14768. source: "./media/characters/carmine/front-armor.svg",
  14769. extra: 1,
  14770. bottom: 0.035
  14771. }
  14772. },
  14773. },
  14774. [
  14775. {
  14776. name: "Large",
  14777. height: math.unit(1, "mile")
  14778. },
  14779. {
  14780. name: "Huge",
  14781. height: math.unit(40, "miles"),
  14782. default: true
  14783. },
  14784. {
  14785. name: "Colossal",
  14786. height: math.unit(2500, "miles")
  14787. },
  14788. ]
  14789. ))
  14790. characterMakers.push(() => makeCharacter(
  14791. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14792. {
  14793. front: {
  14794. height: math.unit(6, "feet"),
  14795. weight: math.unit(150, "lb"),
  14796. name: "Front",
  14797. image: {
  14798. source: "./media/characters/elyssia/front.svg",
  14799. extra: 2201 / 2035,
  14800. bottom: 0.05
  14801. }
  14802. },
  14803. frontClothed: {
  14804. height: math.unit(6, "feet"),
  14805. weight: math.unit(150, "lb"),
  14806. name: "Front (Clothed)",
  14807. image: {
  14808. source: "./media/characters/elyssia/front-clothed.svg",
  14809. extra: 2201 / 2035,
  14810. bottom: 0.05
  14811. }
  14812. },
  14813. back: {
  14814. height: math.unit(6, "feet"),
  14815. weight: math.unit(150, "lb"),
  14816. name: "Back",
  14817. image: {
  14818. source: "./media/characters/elyssia/back.svg",
  14819. extra: 2201 / 2035,
  14820. bottom: 0.013
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Smaller",
  14827. height: math.unit(150, "feet")
  14828. },
  14829. {
  14830. name: "Standard",
  14831. height: math.unit(1400, "feet"),
  14832. default: true
  14833. },
  14834. {
  14835. name: "Distracted",
  14836. height: math.unit(15000, "feet")
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14842. {
  14843. front: {
  14844. height: math.unit(7 + 4/12, "feet"),
  14845. weight: math.unit(690, "lb"),
  14846. name: "Front",
  14847. image: {
  14848. source: "./media/characters/geno-maxwell/front.svg",
  14849. extra: 984/856,
  14850. bottom: 87/1071
  14851. }
  14852. },
  14853. back: {
  14854. height: math.unit(7 + 4/12, "feet"),
  14855. weight: math.unit(690, "lb"),
  14856. name: "Back",
  14857. image: {
  14858. source: "./media/characters/geno-maxwell/back.svg",
  14859. extra: 981/854,
  14860. bottom: 57/1038
  14861. }
  14862. },
  14863. frontCostume: {
  14864. height: math.unit(7 + 4/12, "feet"),
  14865. weight: math.unit(690, "lb"),
  14866. name: "Front (Costume)",
  14867. image: {
  14868. source: "./media/characters/geno-maxwell/front-costume.svg",
  14869. extra: 984/856,
  14870. bottom: 87/1071
  14871. }
  14872. },
  14873. backcostume: {
  14874. height: math.unit(7 + 4/12, "feet"),
  14875. weight: math.unit(690, "lb"),
  14876. name: "Back (Costume)",
  14877. image: {
  14878. source: "./media/characters/geno-maxwell/back-costume.svg",
  14879. extra: 981/854,
  14880. bottom: 57/1038
  14881. }
  14882. },
  14883. },
  14884. [
  14885. {
  14886. name: "Micro",
  14887. height: math.unit(3, "inches")
  14888. },
  14889. {
  14890. name: "Normal",
  14891. height: math.unit(7 + 4 / 12, "feet"),
  14892. default: true
  14893. },
  14894. {
  14895. name: "Macro",
  14896. height: math.unit(220, "feet")
  14897. },
  14898. {
  14899. name: "Megamacro",
  14900. height: math.unit(11, "miles")
  14901. },
  14902. ]
  14903. ))
  14904. characterMakers.push(() => makeCharacter(
  14905. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14906. {
  14907. front: {
  14908. height: math.unit(7 + 4/12, "feet"),
  14909. weight: math.unit(750, "lb"),
  14910. name: "Front",
  14911. image: {
  14912. source: "./media/characters/regena-maxwell/front.svg",
  14913. extra: 984/856,
  14914. bottom: 87/1071
  14915. }
  14916. },
  14917. back: {
  14918. height: math.unit(7 + 4/12, "feet"),
  14919. weight: math.unit(750, "lb"),
  14920. name: "Back",
  14921. image: {
  14922. source: "./media/characters/regena-maxwell/back.svg",
  14923. extra: 981/854,
  14924. bottom: 57/1038
  14925. }
  14926. },
  14927. frontCostume: {
  14928. height: math.unit(7 + 4/12, "feet"),
  14929. weight: math.unit(750, "lb"),
  14930. name: "Front (Costume)",
  14931. image: {
  14932. source: "./media/characters/regena-maxwell/front-costume.svg",
  14933. extra: 984/856,
  14934. bottom: 87/1071
  14935. }
  14936. },
  14937. backcostume: {
  14938. height: math.unit(7 + 4/12, "feet"),
  14939. weight: math.unit(750, "lb"),
  14940. name: "Back (Costume)",
  14941. image: {
  14942. source: "./media/characters/regena-maxwell/back-costume.svg",
  14943. extra: 981/854,
  14944. bottom: 57/1038
  14945. }
  14946. },
  14947. },
  14948. [
  14949. {
  14950. name: "Normal",
  14951. height: math.unit(7 + 4 / 12, "feet"),
  14952. default: true
  14953. },
  14954. {
  14955. name: "Macro",
  14956. height: math.unit(220, "feet")
  14957. },
  14958. {
  14959. name: "Megamacro",
  14960. height: math.unit(11, "miles")
  14961. },
  14962. ]
  14963. ))
  14964. characterMakers.push(() => makeCharacter(
  14965. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14966. {
  14967. front: {
  14968. height: math.unit(6, "feet"),
  14969. weight: math.unit(150, "lb"),
  14970. name: "Front",
  14971. image: {
  14972. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14973. extra: 860 / 690,
  14974. bottom: 0.03
  14975. }
  14976. },
  14977. },
  14978. [
  14979. {
  14980. name: "Normal",
  14981. height: math.unit(1.7, "meters"),
  14982. default: true
  14983. },
  14984. ]
  14985. ))
  14986. characterMakers.push(() => makeCharacter(
  14987. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14988. {
  14989. front: {
  14990. height: math.unit(6, "feet"),
  14991. weight: math.unit(150, "lb"),
  14992. name: "Front",
  14993. image: {
  14994. source: "./media/characters/quilly/front.svg",
  14995. extra: 890 / 776
  14996. }
  14997. },
  14998. },
  14999. [
  15000. {
  15001. name: "Gigamacro",
  15002. height: math.unit(404090, "miles"),
  15003. default: true
  15004. },
  15005. ]
  15006. ))
  15007. characterMakers.push(() => makeCharacter(
  15008. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15009. {
  15010. front: {
  15011. height: math.unit(7 + 8 / 12, "feet"),
  15012. weight: math.unit(350, "lb"),
  15013. name: "Front",
  15014. image: {
  15015. source: "./media/characters/tempest/front.svg",
  15016. extra: 1175 / 1086,
  15017. bottom: 0.02
  15018. }
  15019. },
  15020. },
  15021. [
  15022. {
  15023. name: "Normal",
  15024. height: math.unit(7 + 8 / 12, "feet"),
  15025. default: true
  15026. },
  15027. ]
  15028. ))
  15029. characterMakers.push(() => makeCharacter(
  15030. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15031. {
  15032. side: {
  15033. height: math.unit(4 + 5 / 12, "feet"),
  15034. weight: math.unit(80, "lb"),
  15035. name: "Side",
  15036. image: {
  15037. source: "./media/characters/rodger/side.svg",
  15038. extra: 1235 / 1118
  15039. }
  15040. },
  15041. },
  15042. [
  15043. {
  15044. name: "Micro",
  15045. height: math.unit(1, "inch")
  15046. },
  15047. {
  15048. name: "Normal",
  15049. height: math.unit(4 + 5 / 12, "feet"),
  15050. default: true
  15051. },
  15052. {
  15053. name: "Macro",
  15054. height: math.unit(120, "feet")
  15055. },
  15056. ]
  15057. ))
  15058. characterMakers.push(() => makeCharacter(
  15059. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15060. {
  15061. front: {
  15062. height: math.unit(6, "feet"),
  15063. weight: math.unit(150, "lb"),
  15064. name: "Front",
  15065. image: {
  15066. source: "./media/characters/danyel/front.svg",
  15067. extra: 1185 / 1123,
  15068. bottom: 0.05
  15069. }
  15070. },
  15071. },
  15072. [
  15073. {
  15074. name: "Shrunken",
  15075. height: math.unit(0.5, "mm")
  15076. },
  15077. {
  15078. name: "Micro",
  15079. height: math.unit(1, "mm"),
  15080. default: true
  15081. },
  15082. {
  15083. name: "Upsized",
  15084. height: math.unit(5 + 5 / 12, "feet")
  15085. },
  15086. ]
  15087. ))
  15088. characterMakers.push(() => makeCharacter(
  15089. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15090. {
  15091. front: {
  15092. height: math.unit(5 + 6 / 12, "feet"),
  15093. weight: math.unit(200, "lb"),
  15094. name: "Front",
  15095. image: {
  15096. source: "./media/characters/vivian-bijoux/front.svg",
  15097. extra: 1217/1209,
  15098. bottom: 76/1293
  15099. }
  15100. },
  15101. back: {
  15102. height: math.unit(5 + 6 / 12, "feet"),
  15103. weight: math.unit(200, "lb"),
  15104. name: "Back",
  15105. image: {
  15106. source: "./media/characters/vivian-bijoux/back.svg",
  15107. extra: 1214/1208,
  15108. bottom: 51/1265
  15109. }
  15110. },
  15111. dressed: {
  15112. height: math.unit(5 + 6 / 12, "feet"),
  15113. weight: math.unit(200, "lb"),
  15114. name: "Dressed",
  15115. image: {
  15116. source: "./media/characters/vivian-bijoux/dressed.svg",
  15117. extra: 1217/1209,
  15118. bottom: 76/1293
  15119. }
  15120. },
  15121. },
  15122. [
  15123. {
  15124. name: "Normal",
  15125. height: math.unit(5 + 6 / 12, "feet"),
  15126. default: true
  15127. },
  15128. {
  15129. name: "Bad Dream",
  15130. height: math.unit(500, "feet")
  15131. },
  15132. {
  15133. name: "Nightmare",
  15134. height: math.unit(500, "miles")
  15135. },
  15136. ]
  15137. ))
  15138. characterMakers.push(() => makeCharacter(
  15139. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15140. {
  15141. front: {
  15142. height: math.unit(6 + 1 / 12, "feet"),
  15143. weight: math.unit(260, "lb"),
  15144. name: "Front",
  15145. image: {
  15146. source: "./media/characters/zeta/front.svg",
  15147. extra: 1968 / 1889,
  15148. bottom: 0.06
  15149. }
  15150. },
  15151. back: {
  15152. height: math.unit(6 + 1 / 12, "feet"),
  15153. weight: math.unit(260, "lb"),
  15154. name: "Back",
  15155. image: {
  15156. source: "./media/characters/zeta/back.svg",
  15157. extra: 1944 / 1858,
  15158. bottom: 0.03
  15159. }
  15160. },
  15161. hand: {
  15162. height: math.unit(1.112, "feet"),
  15163. name: "Hand",
  15164. image: {
  15165. source: "./media/characters/zeta/hand.svg"
  15166. }
  15167. },
  15168. foot: {
  15169. height: math.unit(1.48, "feet"),
  15170. name: "Foot",
  15171. image: {
  15172. source: "./media/characters/zeta/foot.svg"
  15173. }
  15174. },
  15175. },
  15176. [
  15177. {
  15178. name: "Micro",
  15179. height: math.unit(6, "inches")
  15180. },
  15181. {
  15182. name: "Normal",
  15183. height: math.unit(6 + 1 / 12, "feet"),
  15184. default: true
  15185. },
  15186. {
  15187. name: "Macro",
  15188. height: math.unit(20, "feet")
  15189. },
  15190. ]
  15191. ))
  15192. characterMakers.push(() => makeCharacter(
  15193. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15194. {
  15195. front: {
  15196. height: math.unit(6, "feet"),
  15197. weight: math.unit(150, "lb"),
  15198. name: "Front",
  15199. image: {
  15200. source: "./media/characters/jamie-larsen/front.svg",
  15201. extra: 962 / 933,
  15202. bottom: 0.02
  15203. }
  15204. },
  15205. back: {
  15206. height: math.unit(6, "feet"),
  15207. weight: math.unit(150, "lb"),
  15208. name: "Back",
  15209. image: {
  15210. source: "./media/characters/jamie-larsen/back.svg",
  15211. extra: 997 / 946
  15212. }
  15213. },
  15214. },
  15215. [
  15216. {
  15217. name: "Macro",
  15218. height: math.unit(28 + 7 / 12, "feet"),
  15219. default: true
  15220. },
  15221. {
  15222. name: "Macro+",
  15223. height: math.unit(180, "feet")
  15224. },
  15225. {
  15226. name: "Megamacro",
  15227. height: math.unit(10, "miles")
  15228. },
  15229. {
  15230. name: "Gigamacro",
  15231. height: math.unit(200000, "miles")
  15232. },
  15233. ]
  15234. ))
  15235. characterMakers.push(() => makeCharacter(
  15236. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15237. {
  15238. front: {
  15239. height: math.unit(6, "feet"),
  15240. weight: math.unit(120, "lb"),
  15241. name: "Front",
  15242. image: {
  15243. source: "./media/characters/vance/front.svg",
  15244. extra: 1980 / 1890,
  15245. bottom: 0.09
  15246. }
  15247. },
  15248. back: {
  15249. height: math.unit(6, "feet"),
  15250. weight: math.unit(120, "lb"),
  15251. name: "Back",
  15252. image: {
  15253. source: "./media/characters/vance/back.svg",
  15254. extra: 2081 / 1994,
  15255. bottom: 0.014
  15256. }
  15257. },
  15258. hand: {
  15259. height: math.unit(0.88, "feet"),
  15260. name: "Hand",
  15261. image: {
  15262. source: "./media/characters/vance/hand.svg"
  15263. }
  15264. },
  15265. foot: {
  15266. height: math.unit(0.64, "feet"),
  15267. name: "Foot",
  15268. image: {
  15269. source: "./media/characters/vance/foot.svg"
  15270. }
  15271. },
  15272. },
  15273. [
  15274. {
  15275. name: "Small",
  15276. height: math.unit(90, "feet"),
  15277. default: true
  15278. },
  15279. {
  15280. name: "Macro",
  15281. height: math.unit(100, "meters")
  15282. },
  15283. {
  15284. name: "Megamacro",
  15285. height: math.unit(15, "miles")
  15286. },
  15287. ]
  15288. ))
  15289. characterMakers.push(() => makeCharacter(
  15290. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15291. {
  15292. front: {
  15293. height: math.unit(6, "feet"),
  15294. weight: math.unit(180, "lb"),
  15295. name: "Front",
  15296. image: {
  15297. source: "./media/characters/xochitl/front.svg",
  15298. extra: 2297 / 2261,
  15299. bottom: 0.065
  15300. }
  15301. },
  15302. back: {
  15303. height: math.unit(6, "feet"),
  15304. weight: math.unit(180, "lb"),
  15305. name: "Back",
  15306. image: {
  15307. source: "./media/characters/xochitl/back.svg",
  15308. extra: 2386 / 2354,
  15309. bottom: 0.01
  15310. }
  15311. },
  15312. foot: {
  15313. height: math.unit(6 / 5 * 1.15, "feet"),
  15314. weight: math.unit(150, "lb"),
  15315. name: "Foot",
  15316. image: {
  15317. source: "./media/characters/xochitl/foot.svg"
  15318. }
  15319. },
  15320. },
  15321. [
  15322. {
  15323. name: "Macro",
  15324. height: math.unit(80, "feet")
  15325. },
  15326. {
  15327. name: "Macro+",
  15328. height: math.unit(400, "feet"),
  15329. default: true
  15330. },
  15331. {
  15332. name: "Gigamacro",
  15333. height: math.unit(80000, "miles")
  15334. },
  15335. {
  15336. name: "Gigamacro+",
  15337. height: math.unit(400000, "miles")
  15338. },
  15339. {
  15340. name: "Teramacro",
  15341. height: math.unit(300, "AU")
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15347. {
  15348. front: {
  15349. height: math.unit(6, "feet"),
  15350. weight: math.unit(150, "lb"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/vincent/front.svg",
  15354. extra: 1130 / 1080,
  15355. bottom: 0.055
  15356. }
  15357. },
  15358. beak: {
  15359. height: math.unit(6 * 0.1, "feet"),
  15360. name: "Beak",
  15361. image: {
  15362. source: "./media/characters/vincent/beak.svg"
  15363. }
  15364. },
  15365. hand: {
  15366. height: math.unit(6 * 0.85, "feet"),
  15367. weight: math.unit(150, "lb"),
  15368. name: "Hand",
  15369. image: {
  15370. source: "./media/characters/vincent/hand.svg"
  15371. }
  15372. },
  15373. foot: {
  15374. height: math.unit(6 * 0.19, "feet"),
  15375. weight: math.unit(150, "lb"),
  15376. name: "Foot",
  15377. image: {
  15378. source: "./media/characters/vincent/foot.svg"
  15379. }
  15380. },
  15381. },
  15382. [
  15383. {
  15384. name: "Base",
  15385. height: math.unit(6 + 5 / 12, "feet"),
  15386. default: true
  15387. },
  15388. {
  15389. name: "Macro",
  15390. height: math.unit(300, "feet")
  15391. },
  15392. {
  15393. name: "Megamacro",
  15394. height: math.unit(2, "miles")
  15395. },
  15396. {
  15397. name: "Gigamacro",
  15398. height: math.unit(1000, "miles")
  15399. },
  15400. ]
  15401. ))
  15402. characterMakers.push(() => makeCharacter(
  15403. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15404. {
  15405. front: {
  15406. height: math.unit(2, "meters"),
  15407. weight: math.unit(500, "kg"),
  15408. name: "Front",
  15409. image: {
  15410. source: "./media/characters/coatl/front.svg",
  15411. extra: 3948 / 3500,
  15412. bottom: 0.082
  15413. }
  15414. },
  15415. },
  15416. [
  15417. {
  15418. name: "Normal",
  15419. height: math.unit(4, "meters")
  15420. },
  15421. {
  15422. name: "Macro",
  15423. height: math.unit(100, "meters"),
  15424. default: true
  15425. },
  15426. {
  15427. name: "Macro+",
  15428. height: math.unit(300, "meters")
  15429. },
  15430. {
  15431. name: "Megamacro",
  15432. height: math.unit(3, "gigameters")
  15433. },
  15434. {
  15435. name: "Megamacro+",
  15436. height: math.unit(300, "terameters")
  15437. },
  15438. {
  15439. name: "Megamacro++",
  15440. height: math.unit(3, "lightyears")
  15441. },
  15442. ]
  15443. ))
  15444. characterMakers.push(() => makeCharacter(
  15445. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15446. {
  15447. front: {
  15448. height: math.unit(6, "feet"),
  15449. weight: math.unit(50, "kg"),
  15450. name: "front",
  15451. image: {
  15452. source: "./media/characters/shiroryu/front.svg",
  15453. extra: 1990 / 1935
  15454. }
  15455. },
  15456. },
  15457. [
  15458. {
  15459. name: "Mortal Mingling",
  15460. height: math.unit(3, "meters")
  15461. },
  15462. {
  15463. name: "Kaiju-ish",
  15464. height: math.unit(250, "meters")
  15465. },
  15466. {
  15467. name: "Somewhat Godly",
  15468. height: math.unit(400, "km"),
  15469. default: true
  15470. },
  15471. {
  15472. name: "Planetary",
  15473. height: math.unit(300, "megameters")
  15474. },
  15475. {
  15476. name: "Galaxy-dwarfing",
  15477. height: math.unit(450, "kiloparsecs")
  15478. },
  15479. {
  15480. name: "Universe Eater",
  15481. height: math.unit(150, "gigaparsecs")
  15482. },
  15483. {
  15484. name: "Almost Immeasurable",
  15485. height: math.unit(1.3e266, "yottaparsecs")
  15486. },
  15487. ]
  15488. ))
  15489. characterMakers.push(() => makeCharacter(
  15490. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15491. {
  15492. front: {
  15493. height: math.unit(6, "feet"),
  15494. weight: math.unit(150, "lb"),
  15495. name: "Front",
  15496. image: {
  15497. source: "./media/characters/umeko/front.svg",
  15498. extra: 1,
  15499. bottom: 0.019
  15500. }
  15501. },
  15502. frontArmored: {
  15503. height: math.unit(6, "feet"),
  15504. weight: math.unit(150, "lb"),
  15505. name: "Front (Armored)",
  15506. image: {
  15507. source: "./media/characters/umeko/front-armored.svg",
  15508. extra: 1,
  15509. bottom: 0.021
  15510. }
  15511. },
  15512. },
  15513. [
  15514. {
  15515. name: "Macro",
  15516. height: math.unit(220, "feet"),
  15517. default: true
  15518. },
  15519. {
  15520. name: "Guardian Dragon",
  15521. height: math.unit(50, "miles")
  15522. },
  15523. {
  15524. name: "Cosmic",
  15525. height: math.unit(800000, "miles")
  15526. },
  15527. ]
  15528. ))
  15529. characterMakers.push(() => makeCharacter(
  15530. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15531. {
  15532. front: {
  15533. height: math.unit(6, "feet"),
  15534. weight: math.unit(150, "lb"),
  15535. name: "Front",
  15536. image: {
  15537. source: "./media/characters/cassidy/front.svg",
  15538. extra: 810/808,
  15539. bottom: 41/851
  15540. }
  15541. },
  15542. },
  15543. [
  15544. {
  15545. name: "Canon Height",
  15546. height: math.unit(120, "feet"),
  15547. default: true
  15548. },
  15549. {
  15550. name: "Macro+",
  15551. height: math.unit(400, "feet")
  15552. },
  15553. {
  15554. name: "Macro++",
  15555. height: math.unit(4000, "feet")
  15556. },
  15557. {
  15558. name: "Megamacro",
  15559. height: math.unit(3, "miles")
  15560. },
  15561. ]
  15562. ))
  15563. characterMakers.push(() => makeCharacter(
  15564. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15565. {
  15566. front: {
  15567. height: math.unit(6, "feet"),
  15568. weight: math.unit(150, "lb"),
  15569. name: "Front",
  15570. image: {
  15571. source: "./media/characters/isaac/front.svg",
  15572. extra: 896 / 815,
  15573. bottom: 0.11
  15574. }
  15575. },
  15576. },
  15577. [
  15578. {
  15579. name: "Human Size",
  15580. height: math.unit(8, "feet"),
  15581. default: true
  15582. },
  15583. {
  15584. name: "Macro",
  15585. height: math.unit(400, "feet")
  15586. },
  15587. {
  15588. name: "Megamacro",
  15589. height: math.unit(50, "miles")
  15590. },
  15591. {
  15592. name: "Canon Height",
  15593. height: math.unit(200, "AU")
  15594. },
  15595. ]
  15596. ))
  15597. characterMakers.push(() => makeCharacter(
  15598. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15599. {
  15600. front: {
  15601. height: math.unit(6, "feet"),
  15602. weight: math.unit(72, "kg"),
  15603. name: "Front",
  15604. image: {
  15605. source: "./media/characters/sleekit/front.svg",
  15606. extra: 4693 / 4487,
  15607. bottom: 0.012
  15608. }
  15609. },
  15610. },
  15611. [
  15612. {
  15613. name: "Minimum Height",
  15614. height: math.unit(10, "meters")
  15615. },
  15616. {
  15617. name: "Smaller",
  15618. height: math.unit(25, "meters")
  15619. },
  15620. {
  15621. name: "Larger",
  15622. height: math.unit(38, "meters"),
  15623. default: true
  15624. },
  15625. {
  15626. name: "Maximum height",
  15627. height: math.unit(100, "meters")
  15628. },
  15629. ]
  15630. ))
  15631. characterMakers.push(() => makeCharacter(
  15632. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15633. {
  15634. front: {
  15635. height: math.unit(6, "feet"),
  15636. weight: math.unit(150, "lb"),
  15637. name: "Front",
  15638. image: {
  15639. source: "./media/characters/nillia/front.svg",
  15640. extra: 2195 / 2037,
  15641. bottom: 0.005
  15642. }
  15643. },
  15644. back: {
  15645. height: math.unit(6, "feet"),
  15646. weight: math.unit(150, "lb"),
  15647. name: "Back",
  15648. image: {
  15649. source: "./media/characters/nillia/back.svg",
  15650. extra: 2195 / 2037,
  15651. bottom: 0.005
  15652. }
  15653. },
  15654. },
  15655. [
  15656. {
  15657. name: "Canon Height",
  15658. height: math.unit(489, "feet"),
  15659. default: true
  15660. }
  15661. ]
  15662. ))
  15663. characterMakers.push(() => makeCharacter(
  15664. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15665. {
  15666. front: {
  15667. height: math.unit(6, "feet"),
  15668. weight: math.unit(150, "lb"),
  15669. name: "Front",
  15670. image: {
  15671. source: "./media/characters/mesmyriza/front.svg",
  15672. extra: 2067 / 1784,
  15673. bottom: 0.035
  15674. }
  15675. },
  15676. foot: {
  15677. height: math.unit(6 / (250 / 35), "feet"),
  15678. name: "Foot",
  15679. image: {
  15680. source: "./media/characters/mesmyriza/foot.svg"
  15681. }
  15682. },
  15683. },
  15684. [
  15685. {
  15686. name: "Macro",
  15687. height: math.unit(457, "meters"),
  15688. default: true
  15689. },
  15690. {
  15691. name: "Megamacro",
  15692. height: math.unit(8, "megameters")
  15693. },
  15694. ]
  15695. ))
  15696. characterMakers.push(() => makeCharacter(
  15697. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15698. {
  15699. front: {
  15700. height: math.unit(6, "feet"),
  15701. weight: math.unit(250, "lb"),
  15702. name: "Front",
  15703. image: {
  15704. source: "./media/characters/saudade/front.svg",
  15705. extra: 1172 / 1139,
  15706. bottom: 0.035
  15707. }
  15708. },
  15709. },
  15710. [
  15711. {
  15712. name: "Micro",
  15713. height: math.unit(3, "inches")
  15714. },
  15715. {
  15716. name: "Normal",
  15717. height: math.unit(6, "feet"),
  15718. default: true
  15719. },
  15720. {
  15721. name: "Macro",
  15722. height: math.unit(50, "feet")
  15723. },
  15724. {
  15725. name: "Megamacro",
  15726. height: math.unit(2800, "feet")
  15727. },
  15728. ]
  15729. ))
  15730. characterMakers.push(() => makeCharacter(
  15731. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15732. {
  15733. front: {
  15734. height: math.unit(5 + 4 / 12, "feet"),
  15735. weight: math.unit(100, "lb"),
  15736. name: "Front",
  15737. image: {
  15738. source: "./media/characters/keireer/front.svg",
  15739. extra: 716 / 666,
  15740. bottom: 0.05
  15741. }
  15742. },
  15743. },
  15744. [
  15745. {
  15746. name: "Normal",
  15747. height: math.unit(5 + 4 / 12, "feet"),
  15748. default: true
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15754. {
  15755. front: {
  15756. height: math.unit(5.5, "feet"),
  15757. weight: math.unit(90, "kg"),
  15758. name: "Front",
  15759. image: {
  15760. source: "./media/characters/mirja/front.svg",
  15761. extra: 1452/1262,
  15762. bottom: 67/1519
  15763. }
  15764. },
  15765. frontDressed: {
  15766. height: math.unit(5.5, "feet"),
  15767. weight: math.unit(90, "lb"),
  15768. name: "Front (Dressed)",
  15769. image: {
  15770. source: "./media/characters/mirja/dressed.svg",
  15771. extra: 1452/1262,
  15772. bottom: 67/1519
  15773. }
  15774. },
  15775. back: {
  15776. height: math.unit(6, "feet"),
  15777. weight: math.unit(90, "lb"),
  15778. name: "Back",
  15779. image: {
  15780. source: "./media/characters/mirja/back.svg",
  15781. extra: 1892/1795,
  15782. bottom: 48/1940
  15783. }
  15784. },
  15785. maw: {
  15786. height: math.unit(1.312, "feet"),
  15787. name: "Maw",
  15788. image: {
  15789. source: "./media/characters/mirja/maw.svg"
  15790. }
  15791. },
  15792. paw: {
  15793. height: math.unit(1.15, "feet"),
  15794. name: "Paw",
  15795. image: {
  15796. source: "./media/characters/mirja/paw.svg"
  15797. }
  15798. },
  15799. },
  15800. [
  15801. {
  15802. name: "\"Incognito\"",
  15803. height: math.unit(3, "meters")
  15804. },
  15805. {
  15806. name: "Strolling Size",
  15807. height: math.unit(15, "km")
  15808. },
  15809. {
  15810. name: "Larger Strolling Size",
  15811. height: math.unit(400, "km")
  15812. },
  15813. {
  15814. name: "Preferred Size",
  15815. height: math.unit(5000, "km"),
  15816. default: true
  15817. },
  15818. {
  15819. name: "True Size",
  15820. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15821. },
  15822. ]
  15823. ))
  15824. characterMakers.push(() => makeCharacter(
  15825. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15826. {
  15827. front: {
  15828. height: math.unit(15, "feet"),
  15829. weight: math.unit(880, "kg"),
  15830. name: "Front",
  15831. image: {
  15832. source: "./media/characters/nightraver/front.svg",
  15833. extra: 2444 / 2160,
  15834. bottom: 0.027
  15835. }
  15836. },
  15837. back: {
  15838. height: math.unit(15, "feet"),
  15839. weight: math.unit(880, "kg"),
  15840. name: "Back",
  15841. image: {
  15842. source: "./media/characters/nightraver/back.svg",
  15843. extra: 2309 / 2180,
  15844. bottom: 0.005
  15845. }
  15846. },
  15847. sole: {
  15848. height: math.unit(2.878, "feet"),
  15849. name: "Sole",
  15850. image: {
  15851. source: "./media/characters/nightraver/sole.svg"
  15852. }
  15853. },
  15854. foot: {
  15855. height: math.unit(2.285, "feet"),
  15856. name: "Foot",
  15857. image: {
  15858. source: "./media/characters/nightraver/foot.svg"
  15859. }
  15860. },
  15861. maw: {
  15862. height: math.unit(2.67, "feet"),
  15863. name: "Maw",
  15864. image: {
  15865. source: "./media/characters/nightraver/maw.svg"
  15866. }
  15867. },
  15868. },
  15869. [
  15870. {
  15871. name: "Micro",
  15872. height: math.unit(1, "cm")
  15873. },
  15874. {
  15875. name: "Normal",
  15876. height: math.unit(15, "feet"),
  15877. default: true
  15878. },
  15879. {
  15880. name: "Macro",
  15881. height: math.unit(300, "feet")
  15882. },
  15883. {
  15884. name: "Megamacro",
  15885. height: math.unit(300, "miles")
  15886. },
  15887. {
  15888. name: "Gigamacro",
  15889. height: math.unit(10000, "miles")
  15890. },
  15891. ]
  15892. ))
  15893. characterMakers.push(() => makeCharacter(
  15894. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15895. {
  15896. side: {
  15897. height: math.unit(2, "inches"),
  15898. weight: math.unit(5, "grams"),
  15899. name: "Side",
  15900. image: {
  15901. source: "./media/characters/arc/side.svg"
  15902. }
  15903. },
  15904. },
  15905. [
  15906. {
  15907. name: "Micro",
  15908. height: math.unit(2, "inches"),
  15909. default: true
  15910. },
  15911. ]
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15915. {
  15916. front: {
  15917. height: math.unit(1.1938, "meters"),
  15918. weight: math.unit(54, "kg"),
  15919. name: "Front",
  15920. image: {
  15921. source: "./media/characters/nebula-shahar/front.svg",
  15922. extra: 1642 / 1436,
  15923. bottom: 0.06
  15924. }
  15925. },
  15926. },
  15927. [
  15928. {
  15929. name: "Megamicro",
  15930. height: math.unit(0.3, "mm")
  15931. },
  15932. {
  15933. name: "Micro",
  15934. height: math.unit(3, "cm")
  15935. },
  15936. {
  15937. name: "Normal",
  15938. height: math.unit(138, "cm"),
  15939. default: true
  15940. },
  15941. {
  15942. name: "Macro",
  15943. height: math.unit(30, "m")
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15949. {
  15950. front: {
  15951. height: math.unit(5.24, "feet"),
  15952. weight: math.unit(150, "lb"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/shayla/front.svg",
  15956. extra: 1512 / 1414,
  15957. bottom: 0.01
  15958. }
  15959. },
  15960. back: {
  15961. height: math.unit(5.24, "feet"),
  15962. weight: math.unit(150, "lb"),
  15963. name: "Back",
  15964. image: {
  15965. source: "./media/characters/shayla/back.svg",
  15966. extra: 1512 / 1414
  15967. }
  15968. },
  15969. hand: {
  15970. height: math.unit(0.7781496062992126, "feet"),
  15971. name: "Hand",
  15972. image: {
  15973. source: "./media/characters/shayla/hand.svg"
  15974. }
  15975. },
  15976. foot: {
  15977. height: math.unit(1.4206036745406823, "feet"),
  15978. name: "Foot",
  15979. image: {
  15980. source: "./media/characters/shayla/foot.svg"
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Micro",
  15987. height: math.unit(0.32, "feet")
  15988. },
  15989. {
  15990. name: "Normal",
  15991. height: math.unit(5.24, "feet"),
  15992. default: true
  15993. },
  15994. {
  15995. name: "Macro",
  15996. height: math.unit(492.12, "feet")
  15997. },
  15998. {
  15999. name: "Megamacro",
  16000. height: math.unit(186.41, "miles")
  16001. },
  16002. ]
  16003. ))
  16004. characterMakers.push(() => makeCharacter(
  16005. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16006. {
  16007. front: {
  16008. height: math.unit(2.2, "m"),
  16009. weight: math.unit(120, "kg"),
  16010. name: "Front",
  16011. image: {
  16012. source: "./media/characters/pia-jr/front.svg",
  16013. extra: 1000 / 970,
  16014. bottom: 0.035
  16015. }
  16016. },
  16017. hand: {
  16018. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16019. name: "Hand",
  16020. image: {
  16021. source: "./media/characters/pia-jr/hand.svg"
  16022. }
  16023. },
  16024. paw: {
  16025. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16026. name: "Paw",
  16027. image: {
  16028. source: "./media/characters/pia-jr/paw.svg"
  16029. }
  16030. },
  16031. },
  16032. [
  16033. {
  16034. name: "Micro",
  16035. height: math.unit(1.2, "cm")
  16036. },
  16037. {
  16038. name: "Normal",
  16039. height: math.unit(2.2, "m"),
  16040. default: true
  16041. },
  16042. {
  16043. name: "Macro",
  16044. height: math.unit(180, "m")
  16045. },
  16046. {
  16047. name: "Megamacro",
  16048. height: math.unit(420, "km")
  16049. },
  16050. ]
  16051. ))
  16052. characterMakers.push(() => makeCharacter(
  16053. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16054. {
  16055. front: {
  16056. height: math.unit(2, "m"),
  16057. weight: math.unit(115, "kg"),
  16058. name: "Front",
  16059. image: {
  16060. source: "./media/characters/pia-sr/front.svg",
  16061. extra: 760 / 730,
  16062. bottom: 0.015
  16063. }
  16064. },
  16065. back: {
  16066. height: math.unit(2, "m"),
  16067. weight: math.unit(115, "kg"),
  16068. name: "Back",
  16069. image: {
  16070. source: "./media/characters/pia-sr/back.svg",
  16071. extra: 760 / 730,
  16072. bottom: 0.01
  16073. }
  16074. },
  16075. hand: {
  16076. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16077. name: "Hand",
  16078. image: {
  16079. source: "./media/characters/pia-sr/hand.svg"
  16080. }
  16081. },
  16082. foot: {
  16083. height: math.unit(1.83, "feet"),
  16084. name: "Foot",
  16085. image: {
  16086. source: "./media/characters/pia-sr/foot.svg"
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Micro",
  16093. height: math.unit(88, "mm")
  16094. },
  16095. {
  16096. name: "Normal",
  16097. height: math.unit(2, "m"),
  16098. default: true
  16099. },
  16100. {
  16101. name: "Macro",
  16102. height: math.unit(200, "m")
  16103. },
  16104. {
  16105. name: "Megamacro",
  16106. height: math.unit(420, "km")
  16107. },
  16108. ]
  16109. ))
  16110. characterMakers.push(() => makeCharacter(
  16111. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16112. {
  16113. front: {
  16114. height: math.unit(8 + 2 / 12, "feet"),
  16115. weight: math.unit(300, "lb"),
  16116. name: "Front",
  16117. image: {
  16118. source: "./media/characters/kibibyte/front.svg",
  16119. extra: 2221 / 2098,
  16120. bottom: 0.04
  16121. }
  16122. },
  16123. },
  16124. [
  16125. {
  16126. name: "Normal",
  16127. height: math.unit(8 + 2 / 12, "feet"),
  16128. default: true
  16129. },
  16130. {
  16131. name: "Socialable Macro",
  16132. height: math.unit(50, "feet")
  16133. },
  16134. {
  16135. name: "Macro",
  16136. height: math.unit(300, "feet")
  16137. },
  16138. {
  16139. name: "Megamacro",
  16140. height: math.unit(500, "miles")
  16141. },
  16142. ]
  16143. ))
  16144. characterMakers.push(() => makeCharacter(
  16145. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16146. {
  16147. front: {
  16148. height: math.unit(6, "feet"),
  16149. weight: math.unit(150, "lb"),
  16150. name: "Front",
  16151. image: {
  16152. source: "./media/characters/felix/front.svg",
  16153. extra: 762 / 722,
  16154. bottom: 0.02
  16155. }
  16156. },
  16157. frontClothed: {
  16158. height: math.unit(6, "feet"),
  16159. weight: math.unit(150, "lb"),
  16160. name: "Front (Clothed)",
  16161. image: {
  16162. source: "./media/characters/felix/front-clothed.svg",
  16163. extra: 762 / 722,
  16164. bottom: 0.02
  16165. }
  16166. },
  16167. },
  16168. [
  16169. {
  16170. name: "Normal",
  16171. height: math.unit(6 + 8 / 12, "feet"),
  16172. default: true
  16173. },
  16174. {
  16175. name: "Macro",
  16176. height: math.unit(2600, "feet")
  16177. },
  16178. {
  16179. name: "Megamacro",
  16180. height: math.unit(450, "miles")
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16186. {
  16187. front: {
  16188. height: math.unit(6 + 1 / 12, "feet"),
  16189. weight: math.unit(250, "lb"),
  16190. name: "Front",
  16191. image: {
  16192. source: "./media/characters/tobo/front.svg",
  16193. extra: 608 / 586,
  16194. bottom: 0.023
  16195. }
  16196. },
  16197. back: {
  16198. height: math.unit(6 + 1 / 12, "feet"),
  16199. weight: math.unit(250, "lb"),
  16200. name: "Back",
  16201. image: {
  16202. source: "./media/characters/tobo/back.svg",
  16203. extra: 608 / 586
  16204. }
  16205. },
  16206. },
  16207. [
  16208. {
  16209. name: "Nano",
  16210. height: math.unit(2, "nm")
  16211. },
  16212. {
  16213. name: "Megamicro",
  16214. height: math.unit(0.1, "mm")
  16215. },
  16216. {
  16217. name: "Micro",
  16218. height: math.unit(1, "inch"),
  16219. default: true
  16220. },
  16221. {
  16222. name: "Human-sized",
  16223. height: math.unit(6 + 1 / 12, "feet")
  16224. },
  16225. {
  16226. name: "Macro",
  16227. height: math.unit(250, "feet")
  16228. },
  16229. {
  16230. name: "Megamacro",
  16231. height: math.unit(75, "miles")
  16232. },
  16233. {
  16234. name: "Texas-sized",
  16235. height: math.unit(750, "miles")
  16236. },
  16237. {
  16238. name: "Teramacro",
  16239. height: math.unit(50000, "miles")
  16240. },
  16241. ]
  16242. ))
  16243. characterMakers.push(() => makeCharacter(
  16244. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16245. {
  16246. front: {
  16247. height: math.unit(6, "feet"),
  16248. weight: math.unit(269, "lb"),
  16249. name: "Front",
  16250. image: {
  16251. source: "./media/characters/danny-kapowsky/front.svg",
  16252. extra: 766 / 736,
  16253. bottom: 0.044
  16254. }
  16255. },
  16256. back: {
  16257. height: math.unit(6, "feet"),
  16258. weight: math.unit(269, "lb"),
  16259. name: "Back",
  16260. image: {
  16261. source: "./media/characters/danny-kapowsky/back.svg",
  16262. extra: 797 / 760,
  16263. bottom: 0.025
  16264. }
  16265. },
  16266. },
  16267. [
  16268. {
  16269. name: "Macro",
  16270. height: math.unit(150, "feet"),
  16271. default: true
  16272. },
  16273. {
  16274. name: "Macro+",
  16275. height: math.unit(200, "feet")
  16276. },
  16277. {
  16278. name: "Macro++",
  16279. height: math.unit(300, "feet")
  16280. },
  16281. {
  16282. name: "Macro+++",
  16283. height: math.unit(400, "feet")
  16284. },
  16285. ]
  16286. ))
  16287. characterMakers.push(() => makeCharacter(
  16288. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16289. {
  16290. side: {
  16291. height: math.unit(6, "feet"),
  16292. weight: math.unit(170, "lb"),
  16293. name: "Side",
  16294. image: {
  16295. source: "./media/characters/finn/side.svg",
  16296. extra: 1953 / 1807,
  16297. bottom: 0.057
  16298. }
  16299. },
  16300. },
  16301. [
  16302. {
  16303. name: "Megamacro",
  16304. height: math.unit(14445, "feet"),
  16305. default: true
  16306. },
  16307. ]
  16308. ))
  16309. characterMakers.push(() => makeCharacter(
  16310. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16311. {
  16312. front: {
  16313. height: math.unit(5 + 6 / 12, "feet"),
  16314. weight: math.unit(125, "lb"),
  16315. name: "Front",
  16316. image: {
  16317. source: "./media/characters/roy/front.svg",
  16318. extra: 1,
  16319. bottom: 0.11
  16320. }
  16321. },
  16322. },
  16323. [
  16324. {
  16325. name: "Micro",
  16326. height: math.unit(3, "inches"),
  16327. default: true
  16328. },
  16329. {
  16330. name: "Normal",
  16331. height: math.unit(5 + 6 / 12, "feet")
  16332. },
  16333. {
  16334. name: "Lesser Macro",
  16335. height: math.unit(60, "feet")
  16336. },
  16337. {
  16338. name: "Greater Macro",
  16339. height: math.unit(120, "feet")
  16340. },
  16341. ]
  16342. ))
  16343. characterMakers.push(() => makeCharacter(
  16344. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16345. {
  16346. front: {
  16347. height: math.unit(6, "feet"),
  16348. weight: math.unit(100, "lb"),
  16349. name: "Front",
  16350. image: {
  16351. source: "./media/characters/aevsivs/front.svg",
  16352. extra: 1,
  16353. bottom: 0.03
  16354. }
  16355. },
  16356. back: {
  16357. height: math.unit(6, "feet"),
  16358. weight: math.unit(100, "lb"),
  16359. name: "Back",
  16360. image: {
  16361. source: "./media/characters/aevsivs/back.svg"
  16362. }
  16363. },
  16364. },
  16365. [
  16366. {
  16367. name: "Micro",
  16368. height: math.unit(2, "inches"),
  16369. default: true
  16370. },
  16371. {
  16372. name: "Normal",
  16373. height: math.unit(5, "feet")
  16374. },
  16375. ]
  16376. ))
  16377. characterMakers.push(() => makeCharacter(
  16378. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16379. {
  16380. front: {
  16381. height: math.unit(5 + 7 / 12, "feet"),
  16382. weight: math.unit(159, "lb"),
  16383. name: "Front",
  16384. image: {
  16385. source: "./media/characters/hildegard/front.svg",
  16386. extra: 289 / 269,
  16387. bottom: 7.63 / 297.8
  16388. }
  16389. },
  16390. back: {
  16391. height: math.unit(5 + 7 / 12, "feet"),
  16392. weight: math.unit(159, "lb"),
  16393. name: "Back",
  16394. image: {
  16395. source: "./media/characters/hildegard/back.svg",
  16396. extra: 280 / 260,
  16397. bottom: 2.3 / 282
  16398. }
  16399. },
  16400. },
  16401. [
  16402. {
  16403. name: "Normal",
  16404. height: math.unit(5 + 7 / 12, "feet"),
  16405. default: true
  16406. },
  16407. ]
  16408. ))
  16409. characterMakers.push(() => makeCharacter(
  16410. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16411. {
  16412. bernard: {
  16413. height: math.unit(2 + 7 / 12, "feet"),
  16414. weight: math.unit(66, "lb"),
  16415. name: "Bernard",
  16416. rename: true,
  16417. image: {
  16418. source: "./media/characters/bernard-wilder/bernard.svg",
  16419. extra: 192 / 128,
  16420. bottom: 0.05
  16421. }
  16422. },
  16423. wilder: {
  16424. height: math.unit(5 + 8 / 12, "feet"),
  16425. weight: math.unit(143, "lb"),
  16426. name: "Wilder",
  16427. rename: true,
  16428. image: {
  16429. source: "./media/characters/bernard-wilder/wilder.svg",
  16430. extra: 361 / 312,
  16431. bottom: 0.02
  16432. }
  16433. },
  16434. },
  16435. [
  16436. {
  16437. name: "Normal",
  16438. height: math.unit(2 + 7 / 12, "feet"),
  16439. default: true
  16440. },
  16441. ]
  16442. ))
  16443. characterMakers.push(() => makeCharacter(
  16444. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16445. {
  16446. anthro: {
  16447. height: math.unit(6 + 1 / 12, "feet"),
  16448. weight: math.unit(155, "lb"),
  16449. name: "Anthro",
  16450. image: {
  16451. source: "./media/characters/hearth/anthro.svg",
  16452. extra: 1178/1136,
  16453. bottom: 28/1206
  16454. }
  16455. },
  16456. feral: {
  16457. height: math.unit(3.78, "feet"),
  16458. weight: math.unit(35, "kg"),
  16459. name: "Feral",
  16460. image: {
  16461. source: "./media/characters/hearth/feral.svg",
  16462. extra: 153 / 135,
  16463. bottom: 0.03
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Normal",
  16470. height: math.unit(6 + 1 / 12, "feet"),
  16471. default: true
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16477. {
  16478. front: {
  16479. height: math.unit(6, "feet"),
  16480. weight: math.unit(182, "lb"),
  16481. name: "Front",
  16482. image: {
  16483. source: "./media/characters/ingrid/front.svg",
  16484. extra: 294 / 268,
  16485. bottom: 0.027
  16486. }
  16487. },
  16488. },
  16489. [
  16490. {
  16491. name: "Normal",
  16492. height: math.unit(6, "feet"),
  16493. default: true
  16494. },
  16495. ]
  16496. ))
  16497. characterMakers.push(() => makeCharacter(
  16498. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16499. {
  16500. eevee: {
  16501. height: math.unit(2 + 10 / 12, "feet"),
  16502. weight: math.unit(86, "lb"),
  16503. name: "Malgam",
  16504. image: {
  16505. source: "./media/characters/malgam/eevee.svg",
  16506. extra: 952/784,
  16507. bottom: 38/990
  16508. }
  16509. },
  16510. sylveon: {
  16511. height: math.unit(4, "feet"),
  16512. weight: math.unit(101, "lb"),
  16513. name: "Future Malgam",
  16514. rename: true,
  16515. image: {
  16516. source: "./media/characters/malgam/sylveon.svg",
  16517. extra: 371 / 325,
  16518. bottom: 0.015
  16519. }
  16520. },
  16521. gigantamax: {
  16522. height: math.unit(50, "feet"),
  16523. name: "Gigantamax Malgam",
  16524. rename: true,
  16525. image: {
  16526. source: "./media/characters/malgam/gigantamax.svg"
  16527. }
  16528. },
  16529. },
  16530. [
  16531. {
  16532. name: "Normal",
  16533. height: math.unit(2 + 10 / 12, "feet"),
  16534. default: true
  16535. },
  16536. ]
  16537. ))
  16538. characterMakers.push(() => makeCharacter(
  16539. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16540. {
  16541. front: {
  16542. height: math.unit(5 + 11 / 12, "feet"),
  16543. weight: math.unit(188, "lb"),
  16544. name: "Front",
  16545. image: {
  16546. source: "./media/characters/fleur/front.svg",
  16547. extra: 309 / 283,
  16548. bottom: 0.007
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Normal",
  16555. height: math.unit(5 + 11 / 12, "feet"),
  16556. default: true
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16562. {
  16563. front: {
  16564. height: math.unit(5 + 4 / 12, "feet"),
  16565. weight: math.unit(122, "lb"),
  16566. name: "Front",
  16567. image: {
  16568. source: "./media/characters/jude/front.svg",
  16569. extra: 288 / 273,
  16570. bottom: 0.03
  16571. }
  16572. },
  16573. },
  16574. [
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(5 + 4 / 12, "feet"),
  16578. default: true
  16579. },
  16580. ]
  16581. ))
  16582. characterMakers.push(() => makeCharacter(
  16583. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16584. {
  16585. front: {
  16586. height: math.unit(5 + 11 / 12, "feet"),
  16587. weight: math.unit(190, "lb"),
  16588. name: "Front",
  16589. image: {
  16590. source: "./media/characters/seara/front.svg",
  16591. extra: 1,
  16592. bottom: 0.05
  16593. }
  16594. },
  16595. },
  16596. [
  16597. {
  16598. name: "Normal",
  16599. height: math.unit(5 + 11 / 12, "feet"),
  16600. default: true
  16601. },
  16602. ]
  16603. ))
  16604. characterMakers.push(() => makeCharacter(
  16605. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16606. {
  16607. front: {
  16608. height: math.unit(16 + 5 / 12, "feet"),
  16609. weight: math.unit(524, "lb"),
  16610. name: "Front",
  16611. image: {
  16612. source: "./media/characters/caspian-lugia/front.svg",
  16613. extra: 1,
  16614. bottom: 0.04
  16615. }
  16616. },
  16617. },
  16618. [
  16619. {
  16620. name: "Normal",
  16621. height: math.unit(16 + 5 / 12, "feet"),
  16622. default: true
  16623. },
  16624. ]
  16625. ))
  16626. characterMakers.push(() => makeCharacter(
  16627. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16628. {
  16629. front: {
  16630. height: math.unit(5 + 7 / 12, "feet"),
  16631. weight: math.unit(170, "lb"),
  16632. name: "Front",
  16633. image: {
  16634. source: "./media/characters/mika/front.svg",
  16635. extra: 1,
  16636. bottom: 0.016
  16637. }
  16638. },
  16639. },
  16640. [
  16641. {
  16642. name: "Normal",
  16643. height: math.unit(5 + 7 / 12, "feet"),
  16644. default: true
  16645. },
  16646. ]
  16647. ))
  16648. characterMakers.push(() => makeCharacter(
  16649. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16650. {
  16651. front: {
  16652. height: math.unit(6 + 2 / 12, "feet"),
  16653. weight: math.unit(268, "lb"),
  16654. name: "Front",
  16655. image: {
  16656. source: "./media/characters/sol/front.svg",
  16657. extra: 247 / 231,
  16658. bottom: 0.05
  16659. }
  16660. },
  16661. },
  16662. [
  16663. {
  16664. name: "Normal",
  16665. height: math.unit(6 + 2 / 12, "feet"),
  16666. default: true
  16667. },
  16668. ]
  16669. ))
  16670. characterMakers.push(() => makeCharacter(
  16671. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16672. {
  16673. buizel: {
  16674. height: math.unit(2 + 5 / 12, "feet"),
  16675. weight: math.unit(87, "lb"),
  16676. name: "Front",
  16677. image: {
  16678. source: "./media/characters/umiko/buizel.svg",
  16679. extra: 172 / 157,
  16680. bottom: 0.01
  16681. },
  16682. form: "buizel",
  16683. default: true
  16684. },
  16685. floatzel: {
  16686. height: math.unit(5 + 9 / 12, "feet"),
  16687. weight: math.unit(250, "lb"),
  16688. name: "Front",
  16689. image: {
  16690. source: "./media/characters/umiko/floatzel.svg",
  16691. extra: 1076/1006,
  16692. bottom: 15/1091
  16693. },
  16694. form: "floatzel",
  16695. default: true
  16696. },
  16697. },
  16698. [
  16699. {
  16700. name: "Normal",
  16701. height: math.unit(2 + 5 / 12, "feet"),
  16702. form: "buizel",
  16703. default: true
  16704. },
  16705. {
  16706. name: "Normal",
  16707. height: math.unit(5 + 9 / 12, "feet"),
  16708. form: "floatzel",
  16709. default: true
  16710. },
  16711. ],
  16712. {
  16713. "buizel": {
  16714. name: "Buizel"
  16715. },
  16716. "floatzel": {
  16717. name: "Floatzel",
  16718. default: true
  16719. }
  16720. }
  16721. ))
  16722. characterMakers.push(() => makeCharacter(
  16723. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16724. {
  16725. front: {
  16726. height: math.unit(6 + 2 / 12, "feet"),
  16727. weight: math.unit(146, "lb"),
  16728. name: "Front",
  16729. image: {
  16730. source: "./media/characters/iliac/front.svg",
  16731. extra: 389 / 365,
  16732. bottom: 0.035
  16733. }
  16734. },
  16735. },
  16736. [
  16737. {
  16738. name: "Normal",
  16739. height: math.unit(6 + 2 / 12, "feet"),
  16740. default: true
  16741. },
  16742. ]
  16743. ))
  16744. characterMakers.push(() => makeCharacter(
  16745. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16746. {
  16747. front: {
  16748. height: math.unit(6, "feet"),
  16749. weight: math.unit(170, "lb"),
  16750. name: "Front",
  16751. image: {
  16752. source: "./media/characters/topaz/front.svg",
  16753. extra: 317 / 303,
  16754. bottom: 0.055
  16755. }
  16756. },
  16757. },
  16758. [
  16759. {
  16760. name: "Normal",
  16761. height: math.unit(6, "feet"),
  16762. default: true
  16763. },
  16764. ]
  16765. ))
  16766. characterMakers.push(() => makeCharacter(
  16767. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16768. {
  16769. front: {
  16770. height: math.unit(5 + 11 / 12, "feet"),
  16771. weight: math.unit(144, "lb"),
  16772. name: "Front",
  16773. image: {
  16774. source: "./media/characters/gabriel/front.svg",
  16775. extra: 285 / 262,
  16776. bottom: 0.004
  16777. }
  16778. },
  16779. },
  16780. [
  16781. {
  16782. name: "Normal",
  16783. height: math.unit(5 + 11 / 12, "feet"),
  16784. default: true
  16785. },
  16786. ]
  16787. ))
  16788. characterMakers.push(() => makeCharacter(
  16789. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16790. {
  16791. side: {
  16792. height: math.unit(6 + 5 / 12, "feet"),
  16793. weight: math.unit(300, "lb"),
  16794. name: "Side",
  16795. image: {
  16796. source: "./media/characters/tempest-suicune/side.svg",
  16797. extra: 195 / 154,
  16798. bottom: 0.04
  16799. }
  16800. },
  16801. },
  16802. [
  16803. {
  16804. name: "Normal",
  16805. height: math.unit(6 + 5 / 12, "feet"),
  16806. default: true
  16807. },
  16808. ]
  16809. ))
  16810. characterMakers.push(() => makeCharacter(
  16811. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16812. {
  16813. front: {
  16814. height: math.unit(7 + 2 / 12, "feet"),
  16815. weight: math.unit(322, "lb"),
  16816. name: "Front",
  16817. image: {
  16818. source: "./media/characters/vulcan/front.svg",
  16819. extra: 154 / 147,
  16820. bottom: 0.04
  16821. }
  16822. },
  16823. },
  16824. [
  16825. {
  16826. name: "Normal",
  16827. height: math.unit(7 + 2 / 12, "feet"),
  16828. default: true
  16829. },
  16830. ]
  16831. ))
  16832. characterMakers.push(() => makeCharacter(
  16833. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16834. {
  16835. front: {
  16836. height: math.unit(5 + 10 / 12, "feet"),
  16837. weight: math.unit(264, "lb"),
  16838. name: "Front",
  16839. image: {
  16840. source: "./media/characters/gault/front.svg",
  16841. extra: 161 / 140,
  16842. bottom: 0.028
  16843. }
  16844. },
  16845. },
  16846. [
  16847. {
  16848. name: "Normal",
  16849. height: math.unit(5 + 10 / 12, "feet"),
  16850. default: true
  16851. },
  16852. ]
  16853. ))
  16854. characterMakers.push(() => makeCharacter(
  16855. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16856. {
  16857. front: {
  16858. height: math.unit(6, "feet"),
  16859. weight: math.unit(150, "lb"),
  16860. name: "Front",
  16861. image: {
  16862. source: "./media/characters/shard/front.svg",
  16863. extra: 273 / 238,
  16864. bottom: 0.02
  16865. }
  16866. },
  16867. },
  16868. [
  16869. {
  16870. name: "Normal",
  16871. height: math.unit(3 + 6 / 12, "feet"),
  16872. default: true
  16873. },
  16874. ]
  16875. ))
  16876. characterMakers.push(() => makeCharacter(
  16877. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16878. {
  16879. front: {
  16880. height: math.unit(5 + 11 / 12, "feet"),
  16881. weight: math.unit(146, "lb"),
  16882. name: "Front",
  16883. image: {
  16884. source: "./media/characters/ashe/front.svg",
  16885. extra: 400 / 373,
  16886. bottom: 0.01
  16887. }
  16888. },
  16889. },
  16890. [
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(5 + 11 / 12, "feet"),
  16894. default: true
  16895. },
  16896. ]
  16897. ))
  16898. characterMakers.push(() => makeCharacter(
  16899. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16900. {
  16901. front: {
  16902. height: math.unit(5 + 5 / 12, "feet"),
  16903. weight: math.unit(135, "lb"),
  16904. name: "Front",
  16905. image: {
  16906. source: "./media/characters/beatrix/front.svg",
  16907. extra: 392 / 379,
  16908. bottom: 0.01
  16909. }
  16910. },
  16911. },
  16912. [
  16913. {
  16914. name: "Normal",
  16915. height: math.unit(6, "feet"),
  16916. default: true
  16917. },
  16918. ]
  16919. ))
  16920. characterMakers.push(() => makeCharacter(
  16921. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16922. {
  16923. front: {
  16924. height: math.unit(6 + 2/12, "feet"),
  16925. weight: math.unit(135, "lb"),
  16926. name: "Front",
  16927. image: {
  16928. source: "./media/characters/ignatius/front.svg",
  16929. extra: 1380/1259,
  16930. bottom: 27/1407
  16931. }
  16932. },
  16933. },
  16934. [
  16935. {
  16936. name: "Normal",
  16937. height: math.unit(6 + 2/12, "feet"),
  16938. default: true
  16939. },
  16940. ]
  16941. ))
  16942. characterMakers.push(() => makeCharacter(
  16943. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16944. {
  16945. front: {
  16946. height: math.unit(6 + 2 / 12, "feet"),
  16947. weight: math.unit(138, "lb"),
  16948. name: "Front",
  16949. image: {
  16950. source: "./media/characters/mei-li/front.svg",
  16951. extra: 237 / 229,
  16952. bottom: 0.03
  16953. }
  16954. },
  16955. },
  16956. [
  16957. {
  16958. name: "Normal",
  16959. height: math.unit(6 + 2 / 12, "feet"),
  16960. default: true
  16961. },
  16962. ]
  16963. ))
  16964. characterMakers.push(() => makeCharacter(
  16965. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16966. {
  16967. front: {
  16968. height: math.unit(2 + 4 / 12, "feet"),
  16969. weight: math.unit(62, "lb"),
  16970. name: "Front",
  16971. image: {
  16972. source: "./media/characters/puru/front.svg",
  16973. extra: 206 / 149,
  16974. bottom: 0.06
  16975. }
  16976. },
  16977. },
  16978. [
  16979. {
  16980. name: "Normal",
  16981. height: math.unit(2 + 4 / 12, "feet"),
  16982. default: true
  16983. },
  16984. ]
  16985. ))
  16986. characterMakers.push(() => makeCharacter(
  16987. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16988. {
  16989. anthro: {
  16990. height: math.unit(5 + 8/12, "feet"),
  16991. weight: math.unit(200, "lb"),
  16992. energyNeed: math.unit(2000, "kcal"),
  16993. name: "Anthro",
  16994. image: {
  16995. source: "./media/characters/kee/anthro.svg",
  16996. extra: 3251/3184,
  16997. bottom: 250/3501
  16998. }
  16999. },
  17000. taur: {
  17001. height: math.unit(11, "feet"),
  17002. weight: math.unit(500, "lb"),
  17003. energyNeed: math.unit(5000, "kcal"),
  17004. name: "Taur",
  17005. image: {
  17006. source: "./media/characters/kee/taur.svg",
  17007. extra: 1362/1320,
  17008. bottom: 83/1445
  17009. }
  17010. },
  17011. },
  17012. [
  17013. {
  17014. name: "Normal",
  17015. height: math.unit(5 + 8/12, "feet"),
  17016. default: true
  17017. },
  17018. {
  17019. name: "Macro",
  17020. height: math.unit(35, "feet")
  17021. },
  17022. ]
  17023. ))
  17024. characterMakers.push(() => makeCharacter(
  17025. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17026. {
  17027. anthro: {
  17028. height: math.unit(7, "feet"),
  17029. weight: math.unit(190, "lb"),
  17030. name: "Anthro",
  17031. image: {
  17032. source: "./media/characters/cobalt-dracha/anthro.svg",
  17033. extra: 231 / 225,
  17034. bottom: 0.04
  17035. }
  17036. },
  17037. feral: {
  17038. height: math.unit(9 + 7 / 12, "feet"),
  17039. weight: math.unit(294, "lb"),
  17040. name: "Feral",
  17041. image: {
  17042. source: "./media/characters/cobalt-dracha/feral.svg",
  17043. extra: 692 / 633,
  17044. bottom: 0.05
  17045. }
  17046. },
  17047. },
  17048. [
  17049. {
  17050. name: "Normal",
  17051. height: math.unit(7, "feet"),
  17052. default: true
  17053. },
  17054. ]
  17055. ))
  17056. characterMakers.push(() => makeCharacter(
  17057. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17058. {
  17059. fallen: {
  17060. height: math.unit(11 + 8 / 12, "feet"),
  17061. weight: math.unit(485, "lb"),
  17062. name: "Java (Fallen)",
  17063. rename: true,
  17064. image: {
  17065. source: "./media/characters/java/fallen.svg",
  17066. extra: 226 / 208,
  17067. bottom: 0.005
  17068. }
  17069. },
  17070. godkin: {
  17071. height: math.unit(10 + 6 / 12, "feet"),
  17072. weight: math.unit(328, "lb"),
  17073. name: "Java (Godkin)",
  17074. rename: true,
  17075. image: {
  17076. source: "./media/characters/java/godkin.svg",
  17077. extra: 1104/1068,
  17078. bottom: 36/1140
  17079. }
  17080. },
  17081. },
  17082. [
  17083. {
  17084. name: "Normal",
  17085. height: math.unit(11 + 8 / 12, "feet"),
  17086. default: true
  17087. },
  17088. ]
  17089. ))
  17090. characterMakers.push(() => makeCharacter(
  17091. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17092. {
  17093. front: {
  17094. height: math.unit(5 + 9 / 12, "feet"),
  17095. weight: math.unit(170, "lb"),
  17096. name: "Front",
  17097. image: {
  17098. source: "./media/characters/purna/front.svg",
  17099. extra: 239 / 229,
  17100. bottom: 0.01
  17101. }
  17102. },
  17103. },
  17104. [
  17105. {
  17106. name: "Normal",
  17107. height: math.unit(5 + 9 / 12, "feet"),
  17108. default: true
  17109. },
  17110. ]
  17111. ))
  17112. characterMakers.push(() => makeCharacter(
  17113. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17114. {
  17115. front: {
  17116. height: math.unit(5 + 9 / 12, "feet"),
  17117. weight: math.unit(142, "lb"),
  17118. name: "Front",
  17119. image: {
  17120. source: "./media/characters/kuva/front.svg",
  17121. extra: 281 / 271,
  17122. bottom: 0.006
  17123. }
  17124. },
  17125. },
  17126. [
  17127. {
  17128. name: "Normal",
  17129. height: math.unit(5 + 9 / 12, "feet"),
  17130. default: true
  17131. },
  17132. ]
  17133. ))
  17134. characterMakers.push(() => makeCharacter(
  17135. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17136. {
  17137. anthro: {
  17138. height: math.unit(9 + 2 / 12, "feet"),
  17139. weight: math.unit(270, "lb"),
  17140. name: "Anthro",
  17141. image: {
  17142. source: "./media/characters/embra/anthro.svg",
  17143. extra: 200 / 187,
  17144. bottom: 0.02
  17145. }
  17146. },
  17147. feral: {
  17148. height: math.unit(18 + 8 / 12, "feet"),
  17149. weight: math.unit(576, "lb"),
  17150. name: "Feral",
  17151. image: {
  17152. source: "./media/characters/embra/feral.svg",
  17153. extra: 152 / 137,
  17154. bottom: 0.037
  17155. }
  17156. },
  17157. },
  17158. [
  17159. {
  17160. name: "Normal",
  17161. height: math.unit(9 + 2 / 12, "feet"),
  17162. default: true
  17163. },
  17164. ]
  17165. ))
  17166. characterMakers.push(() => makeCharacter(
  17167. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17168. {
  17169. anthro: {
  17170. height: math.unit(10 + 9 / 12, "feet"),
  17171. weight: math.unit(224, "lb"),
  17172. name: "Anthro",
  17173. image: {
  17174. source: "./media/characters/grottos/anthro.svg",
  17175. extra: 350 / 332,
  17176. bottom: 0.045
  17177. }
  17178. },
  17179. feral: {
  17180. height: math.unit(20 + 7 / 12, "feet"),
  17181. weight: math.unit(629, "lb"),
  17182. name: "Feral",
  17183. image: {
  17184. source: "./media/characters/grottos/feral.svg",
  17185. extra: 207 / 190,
  17186. bottom: 0.05
  17187. }
  17188. },
  17189. },
  17190. [
  17191. {
  17192. name: "Normal",
  17193. height: math.unit(10 + 9 / 12, "feet"),
  17194. default: true
  17195. },
  17196. ]
  17197. ))
  17198. characterMakers.push(() => makeCharacter(
  17199. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17200. {
  17201. anthro: {
  17202. height: math.unit(9 + 6 / 12, "feet"),
  17203. weight: math.unit(298, "lb"),
  17204. name: "Anthro",
  17205. image: {
  17206. source: "./media/characters/frifna/anthro.svg",
  17207. extra: 282 / 269,
  17208. bottom: 0.015
  17209. }
  17210. },
  17211. feral: {
  17212. height: math.unit(16 + 2 / 12, "feet"),
  17213. weight: math.unit(624, "lb"),
  17214. name: "Feral",
  17215. image: {
  17216. source: "./media/characters/frifna/feral.svg"
  17217. }
  17218. },
  17219. },
  17220. [
  17221. {
  17222. name: "Normal",
  17223. height: math.unit(9 + 6 / 12, "feet"),
  17224. default: true
  17225. },
  17226. ]
  17227. ))
  17228. characterMakers.push(() => makeCharacter(
  17229. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17230. {
  17231. front: {
  17232. height: math.unit(6 + 2 / 12, "feet"),
  17233. weight: math.unit(168, "lb"),
  17234. name: "Front",
  17235. image: {
  17236. source: "./media/characters/elise/front.svg",
  17237. extra: 276 / 271
  17238. }
  17239. },
  17240. },
  17241. [
  17242. {
  17243. name: "Normal",
  17244. height: math.unit(6 + 2 / 12, "feet"),
  17245. default: true
  17246. },
  17247. ]
  17248. ))
  17249. characterMakers.push(() => makeCharacter(
  17250. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17251. {
  17252. front: {
  17253. height: math.unit(5 + 10 / 12, "feet"),
  17254. weight: math.unit(210, "lb"),
  17255. name: "Front",
  17256. image: {
  17257. source: "./media/characters/glade/front.svg",
  17258. extra: 258 / 247,
  17259. bottom: 0.008
  17260. }
  17261. },
  17262. },
  17263. [
  17264. {
  17265. name: "Normal",
  17266. height: math.unit(5 + 10 / 12, "feet"),
  17267. default: true
  17268. },
  17269. ]
  17270. ))
  17271. characterMakers.push(() => makeCharacter(
  17272. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17273. {
  17274. front: {
  17275. height: math.unit(5 + 10 / 12, "feet"),
  17276. weight: math.unit(129, "lb"),
  17277. name: "Front",
  17278. image: {
  17279. source: "./media/characters/rina/front.svg",
  17280. extra: 266 / 255,
  17281. bottom: 0.005
  17282. }
  17283. },
  17284. },
  17285. [
  17286. {
  17287. name: "Normal",
  17288. height: math.unit(5 + 10 / 12, "feet"),
  17289. default: true
  17290. },
  17291. ]
  17292. ))
  17293. characterMakers.push(() => makeCharacter(
  17294. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17295. {
  17296. front: {
  17297. height: math.unit(6 + 1 / 12, "feet"),
  17298. weight: math.unit(192, "lb"),
  17299. name: "Front",
  17300. image: {
  17301. source: "./media/characters/veronica/front.svg",
  17302. extra: 319 / 309,
  17303. bottom: 0.005
  17304. }
  17305. },
  17306. },
  17307. [
  17308. {
  17309. name: "Normal",
  17310. height: math.unit(6 + 1 / 12, "feet"),
  17311. default: true
  17312. },
  17313. ]
  17314. ))
  17315. characterMakers.push(() => makeCharacter(
  17316. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17317. {
  17318. front: {
  17319. height: math.unit(9 + 3 / 12, "feet"),
  17320. weight: math.unit(1100, "lb"),
  17321. name: "Front",
  17322. image: {
  17323. source: "./media/characters/braxton/front.svg",
  17324. extra: 1057 / 984,
  17325. bottom: 0.05
  17326. }
  17327. },
  17328. },
  17329. [
  17330. {
  17331. name: "Normal",
  17332. height: math.unit(9 + 3 / 12, "feet")
  17333. },
  17334. {
  17335. name: "Giant",
  17336. height: math.unit(300, "feet"),
  17337. default: true
  17338. },
  17339. {
  17340. name: "Macro",
  17341. height: math.unit(700, "feet")
  17342. },
  17343. {
  17344. name: "Megamacro",
  17345. height: math.unit(6000, "feet")
  17346. },
  17347. ]
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17351. {
  17352. front: {
  17353. height: math.unit(6 + 7 / 12, "feet"),
  17354. weight: math.unit(150, "lb"),
  17355. name: "Front",
  17356. image: {
  17357. source: "./media/characters/blue-feyonics/front.svg",
  17358. extra: 1403 / 1306,
  17359. bottom: 0.047
  17360. }
  17361. },
  17362. },
  17363. [
  17364. {
  17365. name: "Normal",
  17366. height: math.unit(6 + 7 / 12, "feet"),
  17367. default: true
  17368. },
  17369. ]
  17370. ))
  17371. characterMakers.push(() => makeCharacter(
  17372. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17373. {
  17374. front: {
  17375. height: math.unit(1.8, "meters"),
  17376. weight: math.unit(60, "kg"),
  17377. name: "Front",
  17378. image: {
  17379. source: "./media/characters/maxwell/front.svg",
  17380. extra: 2060 / 1873
  17381. }
  17382. },
  17383. },
  17384. [
  17385. {
  17386. name: "Micro",
  17387. height: math.unit(1, "mm")
  17388. },
  17389. {
  17390. name: "Normal",
  17391. height: math.unit(1.8, "meter"),
  17392. default: true
  17393. },
  17394. {
  17395. name: "Macro",
  17396. height: math.unit(30, "meters")
  17397. },
  17398. {
  17399. name: "Megamacro",
  17400. height: math.unit(10, "km")
  17401. },
  17402. ]
  17403. ))
  17404. characterMakers.push(() => makeCharacter(
  17405. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17406. {
  17407. front: {
  17408. height: math.unit(6, "feet"),
  17409. weight: math.unit(150, "lb"),
  17410. name: "Front",
  17411. image: {
  17412. source: "./media/characters/jack/front.svg",
  17413. extra: 1754 / 1640,
  17414. bottom: 0.01
  17415. }
  17416. },
  17417. },
  17418. [
  17419. {
  17420. name: "Normal",
  17421. height: math.unit(80000, "feet"),
  17422. default: true
  17423. },
  17424. {
  17425. name: "Max size",
  17426. height: math.unit(10, "lightyears")
  17427. },
  17428. ]
  17429. ))
  17430. characterMakers.push(() => makeCharacter(
  17431. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17432. {
  17433. urban: {
  17434. height: math.unit(5, "feet"),
  17435. weight: math.unit(240, "lb"),
  17436. name: "Urban",
  17437. image: {
  17438. source: "./media/characters/cafat/urban.svg",
  17439. extra: 1223/1126,
  17440. bottom: 205/1428
  17441. }
  17442. },
  17443. summer: {
  17444. height: math.unit(5, "feet"),
  17445. weight: math.unit(240, "lb"),
  17446. name: "Summer",
  17447. image: {
  17448. source: "./media/characters/cafat/summer.svg",
  17449. extra: 1223/1126,
  17450. bottom: 205/1428
  17451. }
  17452. },
  17453. winter: {
  17454. height: math.unit(5, "feet"),
  17455. weight: math.unit(240, "lb"),
  17456. name: "Winter",
  17457. image: {
  17458. source: "./media/characters/cafat/winter.svg",
  17459. extra: 1223/1126,
  17460. bottom: 205/1428
  17461. }
  17462. },
  17463. lingerie: {
  17464. height: math.unit(5, "feet"),
  17465. weight: math.unit(240, "lb"),
  17466. name: "Lingerie",
  17467. image: {
  17468. source: "./media/characters/cafat/lingerie.svg",
  17469. extra: 1223/1126,
  17470. bottom: 205/1428
  17471. }
  17472. },
  17473. upright: {
  17474. height: math.unit(6.3, "feet"),
  17475. weight: math.unit(240, "lb"),
  17476. name: "Upright",
  17477. image: {
  17478. source: "./media/characters/cafat/upright.svg",
  17479. bottom: 0.01
  17480. }
  17481. },
  17482. uprightFull: {
  17483. height: math.unit(6.3, "feet"),
  17484. weight: math.unit(240, "lb"),
  17485. name: "Upright (Full)",
  17486. image: {
  17487. source: "./media/characters/cafat/upright-full.svg",
  17488. bottom: 0.01
  17489. }
  17490. },
  17491. },
  17492. [
  17493. {
  17494. name: "Small",
  17495. height: math.unit(5, "feet"),
  17496. default: true
  17497. },
  17498. {
  17499. name: "Large",
  17500. height: math.unit(13, "feet")
  17501. },
  17502. ]
  17503. ))
  17504. characterMakers.push(() => makeCharacter(
  17505. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17506. {
  17507. front: {
  17508. height: math.unit(6, "feet"),
  17509. weight: math.unit(150, "lb"),
  17510. name: "Front",
  17511. image: {
  17512. source: "./media/characters/verin-raharra/front.svg",
  17513. extra: 5019 / 4835,
  17514. bottom: 0.023
  17515. }
  17516. },
  17517. },
  17518. [
  17519. {
  17520. name: "Normal",
  17521. height: math.unit(7 + 5 / 12, "feet"),
  17522. default: true
  17523. },
  17524. {
  17525. name: "Upsized",
  17526. height: math.unit(20, "feet")
  17527. },
  17528. ]
  17529. ))
  17530. characterMakers.push(() => makeCharacter(
  17531. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17532. {
  17533. front: {
  17534. height: math.unit(7, "feet"),
  17535. weight: math.unit(230, "lb"),
  17536. name: "Front",
  17537. image: {
  17538. source: "./media/characters/nakata/front.svg",
  17539. extra: 1.005,
  17540. bottom: 0.01
  17541. }
  17542. },
  17543. },
  17544. [
  17545. {
  17546. name: "Normal",
  17547. height: math.unit(7, "feet"),
  17548. default: true
  17549. },
  17550. {
  17551. name: "Big",
  17552. height: math.unit(14, "feet")
  17553. },
  17554. {
  17555. name: "Macro",
  17556. height: math.unit(400, "feet")
  17557. },
  17558. ]
  17559. ))
  17560. characterMakers.push(() => makeCharacter(
  17561. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17562. {
  17563. front: {
  17564. height: math.unit(4.91, "feet"),
  17565. weight: math.unit(100, "lb"),
  17566. name: "Front",
  17567. image: {
  17568. source: "./media/characters/lily/front.svg",
  17569. extra: 1585 / 1415,
  17570. bottom: 0.02
  17571. }
  17572. },
  17573. },
  17574. [
  17575. {
  17576. name: "Normal",
  17577. height: math.unit(4.91, "feet"),
  17578. default: true
  17579. },
  17580. ]
  17581. ))
  17582. characterMakers.push(() => makeCharacter(
  17583. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17584. {
  17585. laying: {
  17586. height: math.unit(4 + 4 / 12, "feet"),
  17587. weight: math.unit(600, "lb"),
  17588. name: "Laying",
  17589. image: {
  17590. source: "./media/characters/sheila/laying.svg",
  17591. extra: 1333 / 1265,
  17592. bottom: 0.16
  17593. }
  17594. },
  17595. },
  17596. [
  17597. {
  17598. name: "Normal",
  17599. height: math.unit(4 + 4 / 12, "feet"),
  17600. default: true
  17601. },
  17602. ]
  17603. ))
  17604. characterMakers.push(() => makeCharacter(
  17605. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17606. {
  17607. front: {
  17608. height: math.unit(6, "feet"),
  17609. weight: math.unit(190, "lb"),
  17610. name: "Front",
  17611. image: {
  17612. source: "./media/characters/sax/front.svg",
  17613. extra: 1187 / 973,
  17614. bottom: 0.042
  17615. }
  17616. },
  17617. },
  17618. [
  17619. {
  17620. name: "Micro",
  17621. height: math.unit(4, "inches"),
  17622. default: true
  17623. },
  17624. ]
  17625. ))
  17626. characterMakers.push(() => makeCharacter(
  17627. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17628. {
  17629. front: {
  17630. height: math.unit(6, "feet"),
  17631. weight: math.unit(150, "lb"),
  17632. name: "Front",
  17633. image: {
  17634. source: "./media/characters/pandora/front.svg",
  17635. extra: 2720 / 2556,
  17636. bottom: 0.015
  17637. }
  17638. },
  17639. back: {
  17640. height: math.unit(6, "feet"),
  17641. weight: math.unit(150, "lb"),
  17642. name: "Back",
  17643. image: {
  17644. source: "./media/characters/pandora/back.svg",
  17645. extra: 2720 / 2556,
  17646. bottom: 0.01
  17647. }
  17648. },
  17649. beans: {
  17650. height: math.unit(6 / 8, "feet"),
  17651. name: "Beans",
  17652. image: {
  17653. source: "./media/characters/pandora/beans.svg"
  17654. }
  17655. },
  17656. collar: {
  17657. height: math.unit(0.31, "feet"),
  17658. name: "Collar",
  17659. image: {
  17660. source: "./media/characters/pandora/collar.svg"
  17661. }
  17662. },
  17663. skirt: {
  17664. height: math.unit(6, "feet"),
  17665. weight: math.unit(150, "lb"),
  17666. name: "Skirt",
  17667. image: {
  17668. source: "./media/characters/pandora/skirt.svg",
  17669. extra: 1622 / 1525,
  17670. bottom: 0.015
  17671. }
  17672. },
  17673. hoodie: {
  17674. height: math.unit(6, "feet"),
  17675. weight: math.unit(150, "lb"),
  17676. name: "Hoodie",
  17677. image: {
  17678. source: "./media/characters/pandora/hoodie.svg",
  17679. extra: 1622 / 1525,
  17680. bottom: 0.015
  17681. }
  17682. },
  17683. casual: {
  17684. height: math.unit(6, "feet"),
  17685. weight: math.unit(150, "lb"),
  17686. name: "Casual",
  17687. image: {
  17688. source: "./media/characters/pandora/casual.svg",
  17689. extra: 1622 / 1525,
  17690. bottom: 0.015
  17691. }
  17692. },
  17693. },
  17694. [
  17695. {
  17696. name: "Normal",
  17697. height: math.unit(6, "feet")
  17698. },
  17699. {
  17700. name: "Big Steppy",
  17701. height: math.unit(1, "km"),
  17702. default: true
  17703. },
  17704. {
  17705. name: "Galactic Steppy",
  17706. height: math.unit(2, "gigameters")
  17707. },
  17708. ]
  17709. ))
  17710. characterMakers.push(() => makeCharacter(
  17711. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17712. {
  17713. side: {
  17714. height: math.unit(10, "feet"),
  17715. weight: math.unit(800, "kg"),
  17716. name: "Side",
  17717. image: {
  17718. source: "./media/characters/venio-darcony/side.svg",
  17719. extra: 1373 / 1003,
  17720. bottom: 0.037
  17721. }
  17722. },
  17723. front: {
  17724. height: math.unit(19, "feet"),
  17725. weight: math.unit(800, "kg"),
  17726. name: "Front",
  17727. image: {
  17728. source: "./media/characters/venio-darcony/front.svg"
  17729. }
  17730. },
  17731. back: {
  17732. height: math.unit(19, "feet"),
  17733. weight: math.unit(800, "kg"),
  17734. name: "Back",
  17735. image: {
  17736. source: "./media/characters/venio-darcony/back.svg"
  17737. }
  17738. },
  17739. sideNsfw: {
  17740. height: math.unit(10, "feet"),
  17741. weight: math.unit(800, "kg"),
  17742. name: "Side (NSFW)",
  17743. image: {
  17744. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17745. extra: 1373 / 1003,
  17746. bottom: 0.037
  17747. }
  17748. },
  17749. frontNsfw: {
  17750. height: math.unit(19, "feet"),
  17751. weight: math.unit(800, "kg"),
  17752. name: "Front (NSFW)",
  17753. image: {
  17754. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17755. }
  17756. },
  17757. backNsfw: {
  17758. height: math.unit(19, "feet"),
  17759. weight: math.unit(800, "kg"),
  17760. name: "Back (NSFW)",
  17761. image: {
  17762. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17763. }
  17764. },
  17765. sideArmored: {
  17766. height: math.unit(10, "feet"),
  17767. weight: math.unit(800, "kg"),
  17768. name: "Side (Armored)",
  17769. image: {
  17770. source: "./media/characters/venio-darcony/side-armored.svg",
  17771. extra: 1373 / 1003,
  17772. bottom: 0.037
  17773. }
  17774. },
  17775. frontArmored: {
  17776. height: math.unit(19, "feet"),
  17777. weight: math.unit(900, "kg"),
  17778. name: "Front (Armored)",
  17779. image: {
  17780. source: "./media/characters/venio-darcony/front-armored.svg"
  17781. }
  17782. },
  17783. backArmored: {
  17784. height: math.unit(19, "feet"),
  17785. weight: math.unit(900, "kg"),
  17786. name: "Back (Armored)",
  17787. image: {
  17788. source: "./media/characters/venio-darcony/back-armored.svg"
  17789. }
  17790. },
  17791. sword: {
  17792. height: math.unit(10, "feet"),
  17793. weight: math.unit(50, "lb"),
  17794. name: "Sword",
  17795. image: {
  17796. source: "./media/characters/venio-darcony/sword.svg"
  17797. }
  17798. },
  17799. },
  17800. [
  17801. {
  17802. name: "Normal",
  17803. height: math.unit(10, "feet")
  17804. },
  17805. {
  17806. name: "Macro",
  17807. height: math.unit(130, "feet"),
  17808. default: true
  17809. },
  17810. {
  17811. name: "Macro+",
  17812. height: math.unit(240, "feet")
  17813. },
  17814. ]
  17815. ))
  17816. characterMakers.push(() => makeCharacter(
  17817. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17818. {
  17819. front: {
  17820. height: math.unit(6, "feet"),
  17821. weight: math.unit(150, "lb"),
  17822. name: "Front",
  17823. image: {
  17824. source: "./media/characters/veski/front.svg",
  17825. extra: 1299 / 1225,
  17826. bottom: 0.04
  17827. }
  17828. },
  17829. back: {
  17830. height: math.unit(6, "feet"),
  17831. weight: math.unit(150, "lb"),
  17832. name: "Back",
  17833. image: {
  17834. source: "./media/characters/veski/back.svg",
  17835. extra: 1299 / 1225,
  17836. bottom: 0.008
  17837. }
  17838. },
  17839. maw: {
  17840. height: math.unit(1.5 * 1.21, "feet"),
  17841. name: "Maw",
  17842. image: {
  17843. source: "./media/characters/veski/maw.svg"
  17844. }
  17845. },
  17846. },
  17847. [
  17848. {
  17849. name: "Macro",
  17850. height: math.unit(2, "km"),
  17851. default: true
  17852. },
  17853. ]
  17854. ))
  17855. characterMakers.push(() => makeCharacter(
  17856. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17857. {
  17858. front: {
  17859. height: math.unit(5 + 7 / 12, "feet"),
  17860. name: "Front",
  17861. image: {
  17862. source: "./media/characters/isabelle/front.svg",
  17863. extra: 2130 / 1976,
  17864. bottom: 0.05
  17865. }
  17866. },
  17867. },
  17868. [
  17869. {
  17870. name: "Supermicro",
  17871. height: math.unit(10, "micrometers")
  17872. },
  17873. {
  17874. name: "Micro",
  17875. height: math.unit(1, "inch")
  17876. },
  17877. {
  17878. name: "Tiny",
  17879. height: math.unit(5, "inches")
  17880. },
  17881. {
  17882. name: "Standard",
  17883. height: math.unit(5 + 7 / 12, "inches")
  17884. },
  17885. {
  17886. name: "Macro",
  17887. height: math.unit(80, "meters"),
  17888. default: true
  17889. },
  17890. {
  17891. name: "Megamacro",
  17892. height: math.unit(250, "meters")
  17893. },
  17894. {
  17895. name: "Gigamacro",
  17896. height: math.unit(5, "km")
  17897. },
  17898. {
  17899. name: "Cosmic",
  17900. height: math.unit(2.5e6, "miles")
  17901. },
  17902. ]
  17903. ))
  17904. characterMakers.push(() => makeCharacter(
  17905. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17906. {
  17907. front: {
  17908. height: math.unit(6, "feet"),
  17909. weight: math.unit(150, "lb"),
  17910. name: "Front",
  17911. image: {
  17912. source: "./media/characters/hanzo/front.svg",
  17913. extra: 374 / 344,
  17914. bottom: 0.02
  17915. }
  17916. },
  17917. },
  17918. [
  17919. {
  17920. name: "Normal",
  17921. height: math.unit(8, "feet"),
  17922. default: true
  17923. },
  17924. ]
  17925. ))
  17926. characterMakers.push(() => makeCharacter(
  17927. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17928. {
  17929. front: {
  17930. height: math.unit(7, "feet"),
  17931. weight: math.unit(130, "lb"),
  17932. name: "Front",
  17933. image: {
  17934. source: "./media/characters/anna/front.svg",
  17935. extra: 169 / 145,
  17936. bottom: 0.06
  17937. }
  17938. },
  17939. full: {
  17940. height: math.unit(4.96, "feet"),
  17941. weight: math.unit(220, "lb"),
  17942. name: "Full",
  17943. image: {
  17944. source: "./media/characters/anna/full.svg",
  17945. extra: 138 / 114,
  17946. bottom: 0.15
  17947. }
  17948. },
  17949. tongue: {
  17950. height: math.unit(2.53, "feet"),
  17951. name: "Tongue",
  17952. image: {
  17953. source: "./media/characters/anna/tongue.svg"
  17954. }
  17955. },
  17956. },
  17957. [
  17958. {
  17959. name: "Normal",
  17960. height: math.unit(7, "feet"),
  17961. default: true
  17962. },
  17963. ]
  17964. ))
  17965. characterMakers.push(() => makeCharacter(
  17966. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17967. {
  17968. front: {
  17969. height: math.unit(7, "feet"),
  17970. weight: math.unit(150, "lb"),
  17971. name: "Front",
  17972. image: {
  17973. source: "./media/characters/ian-corvid/front.svg",
  17974. extra: 150 / 142,
  17975. bottom: 0.02
  17976. }
  17977. },
  17978. back: {
  17979. height: math.unit(7, "feet"),
  17980. weight: math.unit(150, "lb"),
  17981. name: "Back",
  17982. image: {
  17983. source: "./media/characters/ian-corvid/back.svg",
  17984. extra: 150 / 143,
  17985. bottom: 0.01
  17986. }
  17987. },
  17988. stomping: {
  17989. height: math.unit(7, "feet"),
  17990. weight: math.unit(150, "lb"),
  17991. name: "Stomping",
  17992. image: {
  17993. source: "./media/characters/ian-corvid/stomping.svg",
  17994. extra: 76 / 72
  17995. }
  17996. },
  17997. sitting: {
  17998. height: math.unit(7 / 1.8, "feet"),
  17999. weight: math.unit(150, "lb"),
  18000. name: "Sitting",
  18001. image: {
  18002. source: "./media/characters/ian-corvid/sitting.svg",
  18003. extra: 1400 / 1269,
  18004. bottom: 0.15
  18005. }
  18006. },
  18007. },
  18008. [
  18009. {
  18010. name: "Tiny Microw",
  18011. height: math.unit(1, "inch")
  18012. },
  18013. {
  18014. name: "Microw",
  18015. height: math.unit(6, "inches")
  18016. },
  18017. {
  18018. name: "Crow",
  18019. height: math.unit(7 + 1 / 12, "feet"),
  18020. default: true
  18021. },
  18022. {
  18023. name: "Macrow",
  18024. height: math.unit(176, "feet")
  18025. },
  18026. ]
  18027. ))
  18028. characterMakers.push(() => makeCharacter(
  18029. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18030. {
  18031. front: {
  18032. height: math.unit(5 + 7 / 12, "feet"),
  18033. weight: math.unit(147, "lb"),
  18034. name: "Front",
  18035. image: {
  18036. source: "./media/characters/natalie-kellon/front.svg",
  18037. extra: 1214 / 1141,
  18038. bottom: 0.02
  18039. }
  18040. },
  18041. },
  18042. [
  18043. {
  18044. name: "Micro",
  18045. height: math.unit(1 / 16, "inch")
  18046. },
  18047. {
  18048. name: "Tiny",
  18049. height: math.unit(4, "inches")
  18050. },
  18051. {
  18052. name: "Normal",
  18053. height: math.unit(5 + 7 / 12, "feet"),
  18054. default: true
  18055. },
  18056. {
  18057. name: "Amazon",
  18058. height: math.unit(12, "feet")
  18059. },
  18060. {
  18061. name: "Giantess",
  18062. height: math.unit(160, "meters")
  18063. },
  18064. {
  18065. name: "Titaness",
  18066. height: math.unit(800, "meters")
  18067. },
  18068. ]
  18069. ))
  18070. characterMakers.push(() => makeCharacter(
  18071. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18072. {
  18073. front: {
  18074. height: math.unit(6, "feet"),
  18075. weight: math.unit(150, "lb"),
  18076. name: "Front",
  18077. image: {
  18078. source: "./media/characters/alluria/front.svg",
  18079. extra: 806 / 738,
  18080. bottom: 0.01
  18081. }
  18082. },
  18083. side: {
  18084. height: math.unit(6, "feet"),
  18085. weight: math.unit(150, "lb"),
  18086. name: "Side",
  18087. image: {
  18088. source: "./media/characters/alluria/side.svg",
  18089. extra: 800 / 750,
  18090. }
  18091. },
  18092. back: {
  18093. height: math.unit(6, "feet"),
  18094. weight: math.unit(150, "lb"),
  18095. name: "Back",
  18096. image: {
  18097. source: "./media/characters/alluria/back.svg",
  18098. extra: 806 / 738,
  18099. }
  18100. },
  18101. frontMaid: {
  18102. height: math.unit(6, "feet"),
  18103. weight: math.unit(150, "lb"),
  18104. name: "Front (Maid)",
  18105. image: {
  18106. source: "./media/characters/alluria/front-maid.svg",
  18107. extra: 806 / 738,
  18108. bottom: 0.01
  18109. }
  18110. },
  18111. sideMaid: {
  18112. height: math.unit(6, "feet"),
  18113. weight: math.unit(150, "lb"),
  18114. name: "Side (Maid)",
  18115. image: {
  18116. source: "./media/characters/alluria/side-maid.svg",
  18117. extra: 800 / 750,
  18118. bottom: 0.005
  18119. }
  18120. },
  18121. backMaid: {
  18122. height: math.unit(6, "feet"),
  18123. weight: math.unit(150, "lb"),
  18124. name: "Back (Maid)",
  18125. image: {
  18126. source: "./media/characters/alluria/back-maid.svg",
  18127. extra: 806 / 738,
  18128. }
  18129. },
  18130. },
  18131. [
  18132. {
  18133. name: "Micro",
  18134. height: math.unit(6, "inches"),
  18135. default: true
  18136. },
  18137. ]
  18138. ))
  18139. characterMakers.push(() => makeCharacter(
  18140. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18141. {
  18142. front: {
  18143. height: math.unit(6, "feet"),
  18144. weight: math.unit(150, "lb"),
  18145. name: "Front",
  18146. image: {
  18147. source: "./media/characters/kyle/front.svg",
  18148. extra: 1069 / 962,
  18149. bottom: 77.228 / 1727.45
  18150. }
  18151. },
  18152. },
  18153. [
  18154. {
  18155. name: "Macro",
  18156. height: math.unit(150, "feet"),
  18157. default: true
  18158. },
  18159. ]
  18160. ))
  18161. characterMakers.push(() => makeCharacter(
  18162. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18163. {
  18164. front: {
  18165. height: math.unit(6, "feet"),
  18166. weight: math.unit(300, "lb"),
  18167. name: "Front",
  18168. image: {
  18169. source: "./media/characters/duncan/front.svg",
  18170. extra: 1650 / 1482,
  18171. bottom: 0.05
  18172. }
  18173. },
  18174. },
  18175. [
  18176. {
  18177. name: "Macro",
  18178. height: math.unit(100, "feet"),
  18179. default: true
  18180. },
  18181. ]
  18182. ))
  18183. characterMakers.push(() => makeCharacter(
  18184. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18185. {
  18186. front: {
  18187. height: math.unit(5 + 4 / 12, "feet"),
  18188. weight: math.unit(220, "lb"),
  18189. name: "Front",
  18190. image: {
  18191. source: "./media/characters/memory/front.svg",
  18192. extra: 3641 / 3545,
  18193. bottom: 0.03
  18194. }
  18195. },
  18196. back: {
  18197. height: math.unit(5 + 4 / 12, "feet"),
  18198. weight: math.unit(220, "lb"),
  18199. name: "Back",
  18200. image: {
  18201. source: "./media/characters/memory/back.svg",
  18202. extra: 3641 / 3545,
  18203. bottom: 0.025
  18204. }
  18205. },
  18206. frontSkirt: {
  18207. height: math.unit(5 + 4 / 12, "feet"),
  18208. weight: math.unit(220, "lb"),
  18209. name: "Front (Skirt)",
  18210. image: {
  18211. source: "./media/characters/memory/front-skirt.svg",
  18212. extra: 3641 / 3545,
  18213. bottom: 0.03
  18214. }
  18215. },
  18216. frontDress: {
  18217. height: math.unit(5 + 4 / 12, "feet"),
  18218. weight: math.unit(220, "lb"),
  18219. name: "Front (Dress)",
  18220. image: {
  18221. source: "./media/characters/memory/front-dress.svg",
  18222. extra: 3641 / 3545,
  18223. bottom: 0.03
  18224. }
  18225. },
  18226. },
  18227. [
  18228. {
  18229. name: "Micro",
  18230. height: math.unit(6, "inches"),
  18231. default: true
  18232. },
  18233. {
  18234. name: "Normal",
  18235. height: math.unit(5 + 4 / 12, "feet")
  18236. },
  18237. ]
  18238. ))
  18239. characterMakers.push(() => makeCharacter(
  18240. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18241. {
  18242. front: {
  18243. height: math.unit(4 + 11 / 12, "feet"),
  18244. weight: math.unit(100, "lb"),
  18245. name: "Front",
  18246. image: {
  18247. source: "./media/characters/luno/front.svg",
  18248. extra: 1535 / 1487,
  18249. bottom: 0.03
  18250. }
  18251. },
  18252. },
  18253. [
  18254. {
  18255. name: "Micro",
  18256. height: math.unit(3, "inches")
  18257. },
  18258. {
  18259. name: "Normal",
  18260. height: math.unit(4 + 11 / 12, "feet"),
  18261. default: true
  18262. },
  18263. {
  18264. name: "Macro",
  18265. height: math.unit(300, "feet")
  18266. },
  18267. {
  18268. name: "Megamacro",
  18269. height: math.unit(700, "miles")
  18270. },
  18271. ]
  18272. ))
  18273. characterMakers.push(() => makeCharacter(
  18274. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18275. {
  18276. front: {
  18277. height: math.unit(6 + 2 / 12, "feet"),
  18278. weight: math.unit(170, "lb"),
  18279. name: "Front",
  18280. image: {
  18281. source: "./media/characters/jamesy/front.svg",
  18282. extra: 440 / 382,
  18283. bottom: 0.005
  18284. }
  18285. },
  18286. },
  18287. [
  18288. {
  18289. name: "Micro",
  18290. height: math.unit(3, "inches")
  18291. },
  18292. {
  18293. name: "Normal",
  18294. height: math.unit(6 + 2 / 12, "feet"),
  18295. default: true
  18296. },
  18297. {
  18298. name: "Macro",
  18299. height: math.unit(300, "feet")
  18300. },
  18301. {
  18302. name: "Megamacro",
  18303. height: math.unit(700, "miles")
  18304. },
  18305. ]
  18306. ))
  18307. characterMakers.push(() => makeCharacter(
  18308. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18309. {
  18310. front: {
  18311. height: math.unit(6, "feet"),
  18312. weight: math.unit(160, "lb"),
  18313. name: "Front",
  18314. image: {
  18315. source: "./media/characters/mark/front.svg",
  18316. extra: 3300 / 3100,
  18317. bottom: 136.42 / 3440.47
  18318. }
  18319. },
  18320. },
  18321. [
  18322. {
  18323. name: "Macro",
  18324. height: math.unit(120, "meters")
  18325. },
  18326. {
  18327. name: "Bigger Macro",
  18328. height: math.unit(350, "meters")
  18329. },
  18330. {
  18331. name: "Megamacro",
  18332. height: math.unit(8, "km"),
  18333. default: true
  18334. },
  18335. {
  18336. name: "Continental",
  18337. height: math.unit(4550, "km")
  18338. },
  18339. {
  18340. name: "Planetary",
  18341. height: math.unit(65000, "km")
  18342. },
  18343. ]
  18344. ))
  18345. characterMakers.push(() => makeCharacter(
  18346. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18347. {
  18348. front: {
  18349. height: math.unit(6, "feet"),
  18350. weight: math.unit(400, "lb"),
  18351. name: "Front",
  18352. image: {
  18353. source: "./media/characters/mac/front.svg",
  18354. extra: 1048 / 987.7,
  18355. bottom: 60 / 1107.6,
  18356. }
  18357. },
  18358. },
  18359. [
  18360. {
  18361. name: "Macro",
  18362. height: math.unit(500, "feet"),
  18363. default: true
  18364. },
  18365. ]
  18366. ))
  18367. characterMakers.push(() => makeCharacter(
  18368. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18369. {
  18370. front: {
  18371. height: math.unit(5 + 2 / 12, "feet"),
  18372. weight: math.unit(190, "lb"),
  18373. name: "Front",
  18374. image: {
  18375. source: "./media/characters/bari/front.svg",
  18376. extra: 3156 / 2880,
  18377. bottom: 0.03
  18378. }
  18379. },
  18380. back: {
  18381. height: math.unit(5 + 2 / 12, "feet"),
  18382. weight: math.unit(190, "lb"),
  18383. name: "Back",
  18384. image: {
  18385. source: "./media/characters/bari/back.svg",
  18386. extra: 3260 / 2834,
  18387. bottom: 0.025
  18388. }
  18389. },
  18390. frontPlush: {
  18391. height: math.unit(5 + 2 / 12, "feet"),
  18392. weight: math.unit(190, "lb"),
  18393. name: "Front (Plush)",
  18394. image: {
  18395. source: "./media/characters/bari/front-plush.svg",
  18396. extra: 1112 / 1061,
  18397. bottom: 0.002
  18398. }
  18399. },
  18400. },
  18401. [
  18402. {
  18403. name: "Micro",
  18404. height: math.unit(3, "inches")
  18405. },
  18406. {
  18407. name: "Normal",
  18408. height: math.unit(5 + 2 / 12, "feet"),
  18409. default: true
  18410. },
  18411. {
  18412. name: "Macro",
  18413. height: math.unit(20, "feet")
  18414. },
  18415. ]
  18416. ))
  18417. characterMakers.push(() => makeCharacter(
  18418. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18419. {
  18420. front: {
  18421. height: math.unit(6 + 1 / 12, "feet"),
  18422. weight: math.unit(275, "lb"),
  18423. name: "Front",
  18424. image: {
  18425. source: "./media/characters/hunter-misha-raven/front.svg"
  18426. }
  18427. },
  18428. },
  18429. [
  18430. {
  18431. name: "Mortal",
  18432. height: math.unit(6 + 1 / 12, "feet")
  18433. },
  18434. {
  18435. name: "Divine",
  18436. height: math.unit(1.12134e34, "parsecs"),
  18437. default: true
  18438. },
  18439. ]
  18440. ))
  18441. characterMakers.push(() => makeCharacter(
  18442. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18443. {
  18444. front: {
  18445. height: math.unit(6 + 3 / 12, "feet"),
  18446. weight: math.unit(220, "lb"),
  18447. name: "Front",
  18448. image: {
  18449. source: "./media/characters/max-calore/front.svg",
  18450. extra: 1700 / 1648,
  18451. bottom: 0.01
  18452. }
  18453. },
  18454. back: {
  18455. height: math.unit(6 + 3 / 12, "feet"),
  18456. weight: math.unit(220, "lb"),
  18457. name: "Back",
  18458. image: {
  18459. source: "./media/characters/max-calore/back.svg",
  18460. extra: 1700 / 1648,
  18461. bottom: 0.01
  18462. }
  18463. },
  18464. },
  18465. [
  18466. {
  18467. name: "Normal",
  18468. height: math.unit(6 + 3 / 12, "feet"),
  18469. default: true
  18470. },
  18471. ]
  18472. ))
  18473. characterMakers.push(() => makeCharacter(
  18474. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18475. {
  18476. side: {
  18477. height: math.unit(2 + 8 / 12, "feet"),
  18478. weight: math.unit(99, "lb"),
  18479. name: "Side",
  18480. image: {
  18481. source: "./media/characters/aspen/side.svg",
  18482. extra: 152 / 138,
  18483. bottom: 0.032
  18484. }
  18485. },
  18486. },
  18487. [
  18488. {
  18489. name: "Normal",
  18490. height: math.unit(2 + 8 / 12, "feet"),
  18491. default: true
  18492. },
  18493. ]
  18494. ))
  18495. characterMakers.push(() => makeCharacter(
  18496. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18497. {
  18498. side: {
  18499. height: math.unit(3 + 2 / 12, "feet"),
  18500. weight: math.unit(224, "lb"),
  18501. name: "Side",
  18502. image: {
  18503. source: "./media/characters/sheila-feral-wolf/side.svg",
  18504. extra: 179 / 166,
  18505. bottom: 0.03
  18506. }
  18507. },
  18508. },
  18509. [
  18510. {
  18511. name: "Normal",
  18512. height: math.unit(3 + 2 / 12, "feet"),
  18513. default: true
  18514. },
  18515. ]
  18516. ))
  18517. characterMakers.push(() => makeCharacter(
  18518. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18519. {
  18520. side: {
  18521. height: math.unit(1 + 9 / 12, "feet"),
  18522. weight: math.unit(38, "lb"),
  18523. name: "Side",
  18524. image: {
  18525. source: "./media/characters/michelle/side.svg",
  18526. extra: 147 / 136.7,
  18527. bottom: 0.03
  18528. }
  18529. },
  18530. },
  18531. [
  18532. {
  18533. name: "Normal",
  18534. height: math.unit(1 + 9 / 12, "feet"),
  18535. default: true
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18541. {
  18542. front: {
  18543. height: math.unit(1.54, "feet"),
  18544. weight: math.unit(50, "lb"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/nino/front.svg"
  18548. }
  18549. },
  18550. },
  18551. [
  18552. {
  18553. name: "Normal",
  18554. height: math.unit(1.54, "feet"),
  18555. default: true
  18556. },
  18557. ]
  18558. ))
  18559. characterMakers.push(() => makeCharacter(
  18560. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18561. {
  18562. front: {
  18563. height: math.unit(1.49, "feet"),
  18564. weight: math.unit(45, "lb"),
  18565. name: "Front",
  18566. image: {
  18567. source: "./media/characters/viola/front.svg"
  18568. }
  18569. },
  18570. },
  18571. [
  18572. {
  18573. name: "Normal",
  18574. height: math.unit(1.49, "feet"),
  18575. default: true
  18576. },
  18577. ]
  18578. ))
  18579. characterMakers.push(() => makeCharacter(
  18580. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18581. {
  18582. front: {
  18583. height: math.unit(6 + 5 / 12, "feet"),
  18584. weight: math.unit(580, "lb"),
  18585. name: "Front",
  18586. image: {
  18587. source: "./media/characters/atlas/front.svg",
  18588. extra: 298.5 / 290,
  18589. bottom: 0.015
  18590. }
  18591. },
  18592. },
  18593. [
  18594. {
  18595. name: "Normal",
  18596. height: math.unit(6 + 5 / 12, "feet"),
  18597. default: true
  18598. },
  18599. ]
  18600. ))
  18601. characterMakers.push(() => makeCharacter(
  18602. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18603. {
  18604. side: {
  18605. height: math.unit(15.6, "inches"),
  18606. weight: math.unit(10, "lb"),
  18607. name: "Side",
  18608. image: {
  18609. source: "./media/characters/davy/side.svg",
  18610. extra: 200 / 170,
  18611. bottom: 0.01
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Normal",
  18618. height: math.unit(15.6, "inches"),
  18619. default: true
  18620. },
  18621. ]
  18622. ))
  18623. characterMakers.push(() => makeCharacter(
  18624. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18625. {
  18626. side: {
  18627. height: math.unit(4 + 8 / 12, "feet"),
  18628. weight: math.unit(166, "lb"),
  18629. name: "Side",
  18630. image: {
  18631. source: "./media/characters/fiona/side.svg",
  18632. extra: 232 / 220,
  18633. bottom: 0.03
  18634. }
  18635. },
  18636. },
  18637. [
  18638. {
  18639. name: "Normal",
  18640. height: math.unit(4 + 8 / 12, "feet"),
  18641. default: true
  18642. },
  18643. ]
  18644. ))
  18645. characterMakers.push(() => makeCharacter(
  18646. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18647. {
  18648. front: {
  18649. height: math.unit(26, "inches"),
  18650. weight: math.unit(35, "lb"),
  18651. name: "Front",
  18652. image: {
  18653. source: "./media/characters/lyla/front.svg",
  18654. bottom: 0.1
  18655. }
  18656. },
  18657. },
  18658. [
  18659. {
  18660. name: "Normal",
  18661. height: math.unit(3, "feet"),
  18662. default: true
  18663. },
  18664. ]
  18665. ))
  18666. characterMakers.push(() => makeCharacter(
  18667. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18668. {
  18669. side: {
  18670. height: math.unit(1.8, "feet"),
  18671. weight: math.unit(44, "lb"),
  18672. name: "Side",
  18673. image: {
  18674. source: "./media/characters/perseus/side.svg",
  18675. bottom: 0.21
  18676. }
  18677. },
  18678. },
  18679. [
  18680. {
  18681. name: "Normal",
  18682. height: math.unit(1.8, "feet"),
  18683. default: true
  18684. },
  18685. ]
  18686. ))
  18687. characterMakers.push(() => makeCharacter(
  18688. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18689. {
  18690. side: {
  18691. height: math.unit(4 + 2 / 12, "feet"),
  18692. weight: math.unit(20, "lb"),
  18693. name: "Side",
  18694. image: {
  18695. source: "./media/characters/remus/side.svg"
  18696. }
  18697. },
  18698. },
  18699. [
  18700. {
  18701. name: "Normal",
  18702. height: math.unit(4 + 2 / 12, "feet"),
  18703. default: true
  18704. },
  18705. ]
  18706. ))
  18707. characterMakers.push(() => makeCharacter(
  18708. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18709. {
  18710. front: {
  18711. height: math.unit(4 + 11 / 12, "feet"),
  18712. weight: math.unit(114, "lb"),
  18713. name: "Front",
  18714. image: {
  18715. source: "./media/characters/raf/front.svg",
  18716. extra: 1504/1339,
  18717. bottom: 26/1530
  18718. }
  18719. },
  18720. side: {
  18721. height: math.unit(4 + 11 / 12, "feet"),
  18722. weight: math.unit(114, "lb"),
  18723. name: "Side",
  18724. image: {
  18725. source: "./media/characters/raf/side.svg",
  18726. extra: 1466/1316,
  18727. bottom: 29/1495
  18728. }
  18729. },
  18730. paw: {
  18731. height: math.unit(1.45, "feet"),
  18732. name: "Paw",
  18733. image: {
  18734. source: "./media/characters/raf/paw.svg"
  18735. },
  18736. extraAttributes: {
  18737. "toeSize": {
  18738. name: "Toe Size",
  18739. power: 2,
  18740. type: "area",
  18741. base: math.unit(0.004, "m^2")
  18742. },
  18743. "padSize": {
  18744. name: "Pad Size",
  18745. power: 2,
  18746. type: "area",
  18747. base: math.unit(0.04, "m^2")
  18748. },
  18749. "footSize": {
  18750. name: "Foot Size",
  18751. power: 2,
  18752. type: "area",
  18753. base: math.unit(0.08, "m^2")
  18754. },
  18755. }
  18756. },
  18757. },
  18758. [
  18759. {
  18760. name: "Micro",
  18761. height: math.unit(2, "inches")
  18762. },
  18763. {
  18764. name: "Normal",
  18765. height: math.unit(4 + 11 / 12, "feet"),
  18766. default: true
  18767. },
  18768. {
  18769. name: "Macro",
  18770. height: math.unit(70, "feet")
  18771. },
  18772. ]
  18773. ))
  18774. characterMakers.push(() => makeCharacter(
  18775. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18776. {
  18777. front: {
  18778. height: math.unit(1.5, "meters"),
  18779. weight: math.unit(68, "kg"),
  18780. name: "Front",
  18781. image: {
  18782. source: "./media/characters/liam-einarr/front.svg",
  18783. extra: 2822 / 2666
  18784. }
  18785. },
  18786. back: {
  18787. height: math.unit(1.5, "meters"),
  18788. weight: math.unit(68, "kg"),
  18789. name: "Back",
  18790. image: {
  18791. source: "./media/characters/liam-einarr/back.svg",
  18792. extra: 2822 / 2666,
  18793. bottom: 0.015
  18794. }
  18795. },
  18796. },
  18797. [
  18798. {
  18799. name: "Normal",
  18800. height: math.unit(1.5, "meters"),
  18801. default: true
  18802. },
  18803. {
  18804. name: "Macro",
  18805. height: math.unit(150, "meters")
  18806. },
  18807. {
  18808. name: "Megamacro",
  18809. height: math.unit(35, "km")
  18810. },
  18811. ]
  18812. ))
  18813. characterMakers.push(() => makeCharacter(
  18814. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18815. {
  18816. front: {
  18817. height: math.unit(6, "feet"),
  18818. weight: math.unit(75, "kg"),
  18819. name: "Front",
  18820. image: {
  18821. source: "./media/characters/linda/front.svg",
  18822. extra: 930 / 874,
  18823. bottom: 0.004
  18824. }
  18825. },
  18826. },
  18827. [
  18828. {
  18829. name: "Normal",
  18830. height: math.unit(6, "feet"),
  18831. default: true
  18832. },
  18833. ]
  18834. ))
  18835. characterMakers.push(() => makeCharacter(
  18836. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18837. {
  18838. front: {
  18839. height: math.unit(6 + 8 / 12, "feet"),
  18840. weight: math.unit(220, "lb"),
  18841. name: "Front",
  18842. image: {
  18843. source: "./media/characters/caylex/front.svg",
  18844. extra: 821 / 772,
  18845. bottom: 0.07
  18846. }
  18847. },
  18848. back: {
  18849. height: math.unit(6 + 8 / 12, "feet"),
  18850. weight: math.unit(220, "lb"),
  18851. name: "Back",
  18852. image: {
  18853. source: "./media/characters/caylex/back.svg",
  18854. extra: 821 / 772,
  18855. bottom: 0.022
  18856. }
  18857. },
  18858. hand: {
  18859. height: math.unit(1.25, "feet"),
  18860. name: "Hand",
  18861. image: {
  18862. source: "./media/characters/caylex/hand.svg"
  18863. }
  18864. },
  18865. foot: {
  18866. height: math.unit(1.6, "feet"),
  18867. name: "Foot",
  18868. image: {
  18869. source: "./media/characters/caylex/foot.svg"
  18870. }
  18871. },
  18872. armored: {
  18873. height: math.unit(6 + 8 / 12, "feet"),
  18874. weight: math.unit(250, "lb"),
  18875. name: "Armored",
  18876. image: {
  18877. source: "./media/characters/caylex/armored.svg",
  18878. extra: 1420 / 1310,
  18879. bottom: 0.045
  18880. }
  18881. },
  18882. },
  18883. [
  18884. {
  18885. name: "Normal",
  18886. height: math.unit(6 + 8 / 12, "feet"),
  18887. default: true
  18888. },
  18889. {
  18890. name: "Normal+",
  18891. height: math.unit(12, "feet")
  18892. },
  18893. ]
  18894. ))
  18895. characterMakers.push(() => makeCharacter(
  18896. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18897. {
  18898. front: {
  18899. height: math.unit(7 + 6 / 12, "feet"),
  18900. weight: math.unit(288, "lb"),
  18901. name: "Front",
  18902. image: {
  18903. source: "./media/characters/alana/front.svg",
  18904. extra: 679 / 653,
  18905. bottom: 22.5 / 701
  18906. }
  18907. },
  18908. },
  18909. [
  18910. {
  18911. name: "Normal",
  18912. height: math.unit(7 + 6 / 12, "feet")
  18913. },
  18914. {
  18915. name: "Large",
  18916. height: math.unit(50, "feet")
  18917. },
  18918. {
  18919. name: "Macro",
  18920. height: math.unit(100, "feet"),
  18921. default: true
  18922. },
  18923. {
  18924. name: "Macro+",
  18925. height: math.unit(200, "feet")
  18926. },
  18927. ]
  18928. ))
  18929. characterMakers.push(() => makeCharacter(
  18930. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18931. {
  18932. front: {
  18933. height: math.unit(6 + 1 / 12, "feet"),
  18934. weight: math.unit(210, "lb"),
  18935. name: "Front",
  18936. image: {
  18937. source: "./media/characters/hasani/front.svg",
  18938. extra: 244 / 232,
  18939. bottom: 0.01
  18940. }
  18941. },
  18942. back: {
  18943. height: math.unit(6 + 1 / 12, "feet"),
  18944. weight: math.unit(210, "lb"),
  18945. name: "Back",
  18946. image: {
  18947. source: "./media/characters/hasani/back.svg",
  18948. extra: 244 / 232,
  18949. bottom: 0.01
  18950. }
  18951. },
  18952. },
  18953. [
  18954. {
  18955. name: "Normal",
  18956. height: math.unit(6 + 1 / 12, "feet")
  18957. },
  18958. {
  18959. name: "Macro",
  18960. height: math.unit(175, "feet"),
  18961. default: true
  18962. },
  18963. ]
  18964. ))
  18965. characterMakers.push(() => makeCharacter(
  18966. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18967. {
  18968. front: {
  18969. height: math.unit(1.82, "meters"),
  18970. weight: math.unit(140, "lb"),
  18971. name: "Front",
  18972. image: {
  18973. source: "./media/characters/nita/front.svg",
  18974. extra: 2473 / 2363,
  18975. bottom: 0.01
  18976. }
  18977. },
  18978. },
  18979. [
  18980. {
  18981. name: "Normal",
  18982. height: math.unit(1.82, "m")
  18983. },
  18984. {
  18985. name: "Macro",
  18986. height: math.unit(300, "m")
  18987. },
  18988. {
  18989. name: "Mistake Canon",
  18990. height: math.unit(0.5, "miles"),
  18991. default: true
  18992. },
  18993. {
  18994. name: "Big Mistake",
  18995. height: math.unit(13, "miles")
  18996. },
  18997. {
  18998. name: "Playing God",
  18999. height: math.unit(2450, "miles")
  19000. },
  19001. ]
  19002. ))
  19003. characterMakers.push(() => makeCharacter(
  19004. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19005. {
  19006. front: {
  19007. height: math.unit(4, "feet"),
  19008. weight: math.unit(120, "lb"),
  19009. name: "Front",
  19010. image: {
  19011. source: "./media/characters/shiriko/front.svg",
  19012. extra: 970/934,
  19013. bottom: 5/975
  19014. }
  19015. },
  19016. },
  19017. [
  19018. {
  19019. name: "Normal",
  19020. height: math.unit(4, "feet"),
  19021. default: true
  19022. },
  19023. ]
  19024. ))
  19025. characterMakers.push(() => makeCharacter(
  19026. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19027. {
  19028. front: {
  19029. height: math.unit(6, "feet"),
  19030. name: "front",
  19031. image: {
  19032. source: "./media/characters/deja/front.svg",
  19033. extra: 926 / 840,
  19034. bottom: 0.07
  19035. }
  19036. },
  19037. },
  19038. [
  19039. {
  19040. name: "Planck Length",
  19041. height: math.unit(1.6e-35, "meters")
  19042. },
  19043. {
  19044. name: "Normal",
  19045. height: math.unit(30.48, "meters"),
  19046. default: true
  19047. },
  19048. {
  19049. name: "Universal",
  19050. height: math.unit(8.8e26, "meters")
  19051. },
  19052. ]
  19053. ))
  19054. characterMakers.push(() => makeCharacter(
  19055. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19056. {
  19057. side: {
  19058. height: math.unit(8, "feet"),
  19059. weight: math.unit(6300, "lb"),
  19060. name: "Side",
  19061. image: {
  19062. source: "./media/characters/anima/side.svg",
  19063. bottom: 0.035
  19064. }
  19065. },
  19066. },
  19067. [
  19068. {
  19069. name: "Normal",
  19070. height: math.unit(8, "feet"),
  19071. default: true
  19072. },
  19073. ]
  19074. ))
  19075. characterMakers.push(() => makeCharacter(
  19076. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19077. {
  19078. front: {
  19079. height: math.unit(8, "feet"),
  19080. weight: math.unit(350, "lb"),
  19081. name: "Front",
  19082. image: {
  19083. source: "./media/characters/bianca/front.svg",
  19084. extra: 234 / 225,
  19085. bottom: 0.03
  19086. }
  19087. },
  19088. },
  19089. [
  19090. {
  19091. name: "Normal",
  19092. height: math.unit(8, "feet"),
  19093. default: true
  19094. },
  19095. ]
  19096. ))
  19097. characterMakers.push(() => makeCharacter(
  19098. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19099. {
  19100. front: {
  19101. height: math.unit(11 + 5/12, "feet"),
  19102. weight: math.unit(1200, "lb"),
  19103. name: "Front",
  19104. image: {
  19105. source: "./media/characters/adinia/front.svg",
  19106. extra: 1767/1641,
  19107. bottom: 44/1811
  19108. },
  19109. extraAttributes: {
  19110. "energyIntake": {
  19111. name: "Energy Intake",
  19112. power: 3,
  19113. type: "energy",
  19114. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19115. },
  19116. }
  19117. },
  19118. back: {
  19119. height: math.unit(11 + 5/12, "feet"),
  19120. weight: math.unit(1200, "lb"),
  19121. name: "Back",
  19122. image: {
  19123. source: "./media/characters/adinia/back.svg",
  19124. extra: 1834/1684,
  19125. bottom: 14/1848
  19126. },
  19127. extraAttributes: {
  19128. "energyIntake": {
  19129. name: "Energy Intake",
  19130. power: 3,
  19131. type: "energy",
  19132. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19133. },
  19134. }
  19135. },
  19136. maw: {
  19137. height: math.unit(3.79, "feet"),
  19138. name: "Maw",
  19139. image: {
  19140. source: "./media/characters/adinia/maw.svg"
  19141. }
  19142. },
  19143. rump: {
  19144. height: math.unit(4.6, "feet"),
  19145. name: "Rump",
  19146. image: {
  19147. source: "./media/characters/adinia/rump.svg"
  19148. }
  19149. },
  19150. },
  19151. [
  19152. {
  19153. name: "Normal",
  19154. height: math.unit(11 + 5 / 12, "feet"),
  19155. default: true
  19156. },
  19157. ]
  19158. ))
  19159. characterMakers.push(() => makeCharacter(
  19160. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19161. {
  19162. front: {
  19163. height: math.unit(3, "meters"),
  19164. weight: math.unit(200, "kg"),
  19165. name: "Front",
  19166. image: {
  19167. source: "./media/characters/lykasa/front.svg",
  19168. extra: 1076 / 976,
  19169. bottom: 0.06
  19170. }
  19171. },
  19172. },
  19173. [
  19174. {
  19175. name: "Normal",
  19176. height: math.unit(3, "meters")
  19177. },
  19178. {
  19179. name: "Kaiju",
  19180. height: math.unit(120, "meters"),
  19181. default: true
  19182. },
  19183. {
  19184. name: "Mega Kaiju",
  19185. height: math.unit(240, "km")
  19186. },
  19187. {
  19188. name: "Giga Kaiju",
  19189. height: math.unit(400, "megameters")
  19190. },
  19191. {
  19192. name: "Tera Kaiju",
  19193. height: math.unit(800, "gigameters")
  19194. },
  19195. {
  19196. name: "Kaiju Dragon Goddess",
  19197. height: math.unit(26, "zettaparsecs")
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19203. {
  19204. side: {
  19205. height: math.unit(283 / 124 * 6, "feet"),
  19206. weight: math.unit(35000, "lb"),
  19207. name: "Side",
  19208. image: {
  19209. source: "./media/characters/malfaren/side.svg",
  19210. extra: 1310/529,
  19211. bottom: 24/1334
  19212. }
  19213. },
  19214. front: {
  19215. height: math.unit(22.36, "feet"),
  19216. weight: math.unit(35000, "lb"),
  19217. name: "Front",
  19218. image: {
  19219. source: "./media/characters/malfaren/front.svg",
  19220. extra: 1237/1115,
  19221. bottom: 32/1269
  19222. }
  19223. },
  19224. maw: {
  19225. height: math.unit(6.9, "feet"),
  19226. name: "Maw",
  19227. image: {
  19228. source: "./media/characters/malfaren/maw.svg"
  19229. }
  19230. },
  19231. dick: {
  19232. height: math.unit(6.19, "feet"),
  19233. name: "Dick",
  19234. image: {
  19235. source: "./media/characters/malfaren/dick.svg"
  19236. }
  19237. },
  19238. eye: {
  19239. height: math.unit(0.69, "feet"),
  19240. name: "Eye",
  19241. image: {
  19242. source: "./media/characters/malfaren/eye.svg"
  19243. }
  19244. },
  19245. },
  19246. [
  19247. {
  19248. name: "Big",
  19249. height: math.unit(283 / 162 * 6, "feet"),
  19250. },
  19251. {
  19252. name: "Bigger",
  19253. height: math.unit(283 / 124 * 6, "feet")
  19254. },
  19255. {
  19256. name: "Massive",
  19257. height: math.unit(283 / 92 * 6, "feet"),
  19258. default: true
  19259. },
  19260. {
  19261. name: "👀💦",
  19262. height: math.unit(283 / 73 * 6, "feet"),
  19263. },
  19264. ]
  19265. ))
  19266. characterMakers.push(() => makeCharacter(
  19267. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19268. {
  19269. front: {
  19270. height: math.unit(1.7, "m"),
  19271. weight: math.unit(70, "kg"),
  19272. name: "Front",
  19273. image: {
  19274. source: "./media/characters/kernel/front.svg",
  19275. extra: 222 / 210,
  19276. bottom: 0.007
  19277. }
  19278. },
  19279. },
  19280. [
  19281. {
  19282. name: "Nano",
  19283. height: math.unit(17, "micrometers")
  19284. },
  19285. {
  19286. name: "Micro",
  19287. height: math.unit(1.7, "mm")
  19288. },
  19289. {
  19290. name: "Small",
  19291. height: math.unit(1.7, "cm")
  19292. },
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(1.7, "m"),
  19296. default: true
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19302. {
  19303. front: {
  19304. height: math.unit(1.75, "meters"),
  19305. weight: math.unit(65, "kg"),
  19306. name: "Front",
  19307. image: {
  19308. source: "./media/characters/jayne-folest/front.svg",
  19309. extra: 2115 / 2007,
  19310. bottom: 0.02
  19311. }
  19312. },
  19313. back: {
  19314. height: math.unit(1.75, "meters"),
  19315. weight: math.unit(65, "kg"),
  19316. name: "Back",
  19317. image: {
  19318. source: "./media/characters/jayne-folest/back.svg",
  19319. extra: 2115 / 2007,
  19320. bottom: 0.005
  19321. }
  19322. },
  19323. frontClothed: {
  19324. height: math.unit(1.75, "meters"),
  19325. weight: math.unit(65, "kg"),
  19326. name: "Front (Clothed)",
  19327. image: {
  19328. source: "./media/characters/jayne-folest/front-clothed.svg",
  19329. extra: 2115 / 2007,
  19330. bottom: 0.035
  19331. }
  19332. },
  19333. hand: {
  19334. height: math.unit(1 / 1.260, "feet"),
  19335. name: "Hand",
  19336. image: {
  19337. source: "./media/characters/jayne-folest/hand.svg"
  19338. }
  19339. },
  19340. foot: {
  19341. height: math.unit(1 / 0.918, "feet"),
  19342. name: "Foot",
  19343. image: {
  19344. source: "./media/characters/jayne-folest/foot.svg"
  19345. }
  19346. },
  19347. },
  19348. [
  19349. {
  19350. name: "Micro",
  19351. height: math.unit(4, "cm")
  19352. },
  19353. {
  19354. name: "Normal",
  19355. height: math.unit(1.75, "meters")
  19356. },
  19357. {
  19358. name: "Macro",
  19359. height: math.unit(47.5, "meters"),
  19360. default: true
  19361. },
  19362. ]
  19363. ))
  19364. characterMakers.push(() => makeCharacter(
  19365. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19366. {
  19367. front: {
  19368. height: math.unit(180, "cm"),
  19369. weight: math.unit(70, "kg"),
  19370. name: "Front",
  19371. image: {
  19372. source: "./media/characters/algier/front.svg",
  19373. extra: 596 / 572,
  19374. bottom: 0.04
  19375. }
  19376. },
  19377. back: {
  19378. height: math.unit(180, "cm"),
  19379. weight: math.unit(70, "kg"),
  19380. name: "Back",
  19381. image: {
  19382. source: "./media/characters/algier/back.svg",
  19383. extra: 596 / 572,
  19384. bottom: 0.025
  19385. }
  19386. },
  19387. frontdressed: {
  19388. height: math.unit(180, "cm"),
  19389. weight: math.unit(150, "kg"),
  19390. name: "Front-dressed",
  19391. image: {
  19392. source: "./media/characters/algier/front-dressed.svg",
  19393. extra: 596 / 572,
  19394. bottom: 0.038
  19395. }
  19396. },
  19397. },
  19398. [
  19399. {
  19400. name: "Micro",
  19401. height: math.unit(5, "cm")
  19402. },
  19403. {
  19404. name: "Normal",
  19405. height: math.unit(180, "cm"),
  19406. default: true
  19407. },
  19408. {
  19409. name: "Macro",
  19410. height: math.unit(64, "m")
  19411. },
  19412. ]
  19413. ))
  19414. characterMakers.push(() => makeCharacter(
  19415. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19416. {
  19417. upright: {
  19418. height: math.unit(7, "feet"),
  19419. weight: math.unit(300, "lb"),
  19420. name: "Upright",
  19421. image: {
  19422. source: "./media/characters/pretzel/upright.svg",
  19423. extra: 534 / 522,
  19424. bottom: 0.065
  19425. }
  19426. },
  19427. sprawling: {
  19428. height: math.unit(3.75, "feet"),
  19429. weight: math.unit(300, "lb"),
  19430. name: "Sprawling",
  19431. image: {
  19432. source: "./media/characters/pretzel/sprawling.svg",
  19433. extra: 314 / 281,
  19434. bottom: 0.1
  19435. }
  19436. },
  19437. tongue: {
  19438. height: math.unit(2, "feet"),
  19439. name: "Tongue",
  19440. image: {
  19441. source: "./media/characters/pretzel/tongue.svg"
  19442. }
  19443. },
  19444. },
  19445. [
  19446. {
  19447. name: "Normal",
  19448. height: math.unit(7, "feet"),
  19449. default: true
  19450. },
  19451. {
  19452. name: "Oversized",
  19453. height: math.unit(15, "feet")
  19454. },
  19455. {
  19456. name: "Huge",
  19457. height: math.unit(30, "feet")
  19458. },
  19459. {
  19460. name: "Macro",
  19461. height: math.unit(250, "feet")
  19462. },
  19463. ]
  19464. ))
  19465. characterMakers.push(() => makeCharacter(
  19466. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19467. {
  19468. sideFront: {
  19469. height: math.unit(5 + 2 / 12, "feet"),
  19470. weight: math.unit(120, "lb"),
  19471. name: "Front Side",
  19472. image: {
  19473. source: "./media/characters/roxi/side-front.svg",
  19474. extra: 2924 / 2717,
  19475. bottom: 0.08
  19476. }
  19477. },
  19478. sideBack: {
  19479. height: math.unit(5 + 2 / 12, "feet"),
  19480. weight: math.unit(120, "lb"),
  19481. name: "Back Side",
  19482. image: {
  19483. source: "./media/characters/roxi/side-back.svg",
  19484. extra: 2904 / 2693,
  19485. bottom: 0.06
  19486. }
  19487. },
  19488. front: {
  19489. height: math.unit(5 + 2 / 12, "feet"),
  19490. weight: math.unit(120, "lb"),
  19491. name: "Front",
  19492. image: {
  19493. source: "./media/characters/roxi/front.svg",
  19494. extra: 2028 / 1907,
  19495. bottom: 0.01
  19496. }
  19497. },
  19498. frontAlt: {
  19499. height: math.unit(5 + 2 / 12, "feet"),
  19500. weight: math.unit(120, "lb"),
  19501. name: "Front (Alt)",
  19502. image: {
  19503. source: "./media/characters/roxi/front-alt.svg",
  19504. extra: 1828 / 1798,
  19505. bottom: 0.01
  19506. }
  19507. },
  19508. sitting: {
  19509. height: math.unit(2.8, "feet"),
  19510. weight: math.unit(120, "lb"),
  19511. name: "Sitting",
  19512. image: {
  19513. source: "./media/characters/roxi/sitting.svg",
  19514. extra: 2660 / 2462,
  19515. bottom: 0.1
  19516. }
  19517. },
  19518. },
  19519. [
  19520. {
  19521. name: "Normal",
  19522. height: math.unit(5 + 2 / 12, "feet"),
  19523. default: true
  19524. },
  19525. ]
  19526. ))
  19527. characterMakers.push(() => makeCharacter(
  19528. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19529. {
  19530. side: {
  19531. height: math.unit(55, "feet"),
  19532. weight: math.unit(153, "tons"),
  19533. name: "Side",
  19534. image: {
  19535. source: "./media/characters/shadow/side.svg",
  19536. extra: 701 / 628,
  19537. bottom: 0.02
  19538. }
  19539. },
  19540. flying: {
  19541. height: math.unit(145, "feet"),
  19542. weight: math.unit(153, "tons"),
  19543. name: "Flying",
  19544. image: {
  19545. source: "./media/characters/shadow/flying.svg"
  19546. }
  19547. },
  19548. },
  19549. [
  19550. {
  19551. name: "Normal",
  19552. height: math.unit(55, "feet"),
  19553. default: true
  19554. },
  19555. ]
  19556. ))
  19557. characterMakers.push(() => makeCharacter(
  19558. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19559. {
  19560. front: {
  19561. height: math.unit(6, "feet"),
  19562. weight: math.unit(200, "lb"),
  19563. name: "Front",
  19564. image: {
  19565. source: "./media/characters/marcie/front.svg",
  19566. extra: 960 / 876,
  19567. bottom: 58 / 1017.87
  19568. }
  19569. },
  19570. },
  19571. [
  19572. {
  19573. name: "Macro",
  19574. height: math.unit(1, "mile"),
  19575. default: true
  19576. },
  19577. ]
  19578. ))
  19579. characterMakers.push(() => makeCharacter(
  19580. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19581. {
  19582. front: {
  19583. height: math.unit(7, "feet"),
  19584. weight: math.unit(200, "lb"),
  19585. name: "Front",
  19586. image: {
  19587. source: "./media/characters/kachina/front.svg",
  19588. extra: 1290.68 / 1119,
  19589. bottom: 36.5 / 1327.18
  19590. }
  19591. },
  19592. },
  19593. [
  19594. {
  19595. name: "Normal",
  19596. height: math.unit(7, "feet"),
  19597. default: true
  19598. },
  19599. ]
  19600. ))
  19601. characterMakers.push(() => makeCharacter(
  19602. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19603. {
  19604. looking: {
  19605. height: math.unit(2, "meters"),
  19606. weight: math.unit(300, "kg"),
  19607. name: "Looking",
  19608. image: {
  19609. source: "./media/characters/kash/looking.svg",
  19610. extra: 474 / 344,
  19611. bottom: 0.03
  19612. }
  19613. },
  19614. side: {
  19615. height: math.unit(2, "meters"),
  19616. weight: math.unit(300, "kg"),
  19617. name: "Side",
  19618. image: {
  19619. source: "./media/characters/kash/side.svg",
  19620. extra: 302 / 251,
  19621. bottom: 0.03
  19622. }
  19623. },
  19624. front: {
  19625. height: math.unit(2, "meters"),
  19626. weight: math.unit(300, "kg"),
  19627. name: "Front",
  19628. image: {
  19629. source: "./media/characters/kash/front.svg",
  19630. extra: 495 / 360,
  19631. bottom: 0.015
  19632. }
  19633. },
  19634. },
  19635. [
  19636. {
  19637. name: "Normal",
  19638. height: math.unit(2, "meters"),
  19639. default: true
  19640. },
  19641. {
  19642. name: "Big",
  19643. height: math.unit(3, "meters")
  19644. },
  19645. {
  19646. name: "Large",
  19647. height: math.unit(5, "meters")
  19648. },
  19649. ]
  19650. ))
  19651. characterMakers.push(() => makeCharacter(
  19652. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19653. {
  19654. feeding: {
  19655. height: math.unit(6.7, "feet"),
  19656. weight: math.unit(350, "lb"),
  19657. name: "Feeding",
  19658. image: {
  19659. source: "./media/characters/lalim/feeding.svg",
  19660. }
  19661. },
  19662. },
  19663. [
  19664. {
  19665. name: "Normal",
  19666. height: math.unit(6.7, "feet"),
  19667. default: true
  19668. },
  19669. ]
  19670. ))
  19671. characterMakers.push(() => makeCharacter(
  19672. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19673. {
  19674. front: {
  19675. height: math.unit(9.5, "feet"),
  19676. weight: math.unit(600, "lb"),
  19677. name: "Front",
  19678. image: {
  19679. source: "./media/characters/de'vout/front.svg",
  19680. extra: 1443 / 1328,
  19681. bottom: 0.025
  19682. }
  19683. },
  19684. back: {
  19685. height: math.unit(9.5, "feet"),
  19686. weight: math.unit(600, "lb"),
  19687. name: "Back",
  19688. image: {
  19689. source: "./media/characters/de'vout/back.svg",
  19690. extra: 1443 / 1328
  19691. }
  19692. },
  19693. frontDressed: {
  19694. height: math.unit(9.5, "feet"),
  19695. weight: math.unit(600, "lb"),
  19696. name: "Front (Dressed",
  19697. image: {
  19698. source: "./media/characters/de'vout/front-dressed.svg",
  19699. extra: 1443 / 1328,
  19700. bottom: 0.025
  19701. }
  19702. },
  19703. backDressed: {
  19704. height: math.unit(9.5, "feet"),
  19705. weight: math.unit(600, "lb"),
  19706. name: "Back (Dressed",
  19707. image: {
  19708. source: "./media/characters/de'vout/back-dressed.svg",
  19709. extra: 1443 / 1328
  19710. }
  19711. },
  19712. },
  19713. [
  19714. {
  19715. name: "Normal",
  19716. height: math.unit(9.5, "feet"),
  19717. default: true
  19718. },
  19719. ]
  19720. ))
  19721. characterMakers.push(() => makeCharacter(
  19722. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19723. {
  19724. front: {
  19725. height: math.unit(8, "feet"),
  19726. weight: math.unit(225, "lb"),
  19727. name: "Front",
  19728. image: {
  19729. source: "./media/characters/talana/front.svg",
  19730. extra: 1410 / 1300,
  19731. bottom: 0.015
  19732. }
  19733. },
  19734. frontDressed: {
  19735. height: math.unit(8, "feet"),
  19736. weight: math.unit(225, "lb"),
  19737. name: "Front (Dressed",
  19738. image: {
  19739. source: "./media/characters/talana/front-dressed.svg",
  19740. extra: 1410 / 1300,
  19741. bottom: 0.015
  19742. }
  19743. },
  19744. },
  19745. [
  19746. {
  19747. name: "Normal",
  19748. height: math.unit(8, "feet"),
  19749. default: true
  19750. },
  19751. ]
  19752. ))
  19753. characterMakers.push(() => makeCharacter(
  19754. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19755. {
  19756. side: {
  19757. height: math.unit(7.2, "feet"),
  19758. weight: math.unit(150, "lb"),
  19759. name: "Side",
  19760. image: {
  19761. source: "./media/characters/xeauvok/side.svg",
  19762. extra: 1975 / 1523,
  19763. bottom: 0.07
  19764. }
  19765. },
  19766. },
  19767. [
  19768. {
  19769. name: "Normal",
  19770. height: math.unit(7.2, "feet"),
  19771. default: true
  19772. },
  19773. ]
  19774. ))
  19775. characterMakers.push(() => makeCharacter(
  19776. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19777. {
  19778. side: {
  19779. height: math.unit(4, "meters"),
  19780. weight: math.unit(2200, "kg"),
  19781. name: "Side",
  19782. image: {
  19783. source: "./media/characters/zara/side.svg",
  19784. extra: 765/744,
  19785. bottom: 156/921
  19786. }
  19787. },
  19788. },
  19789. [
  19790. {
  19791. name: "Normal",
  19792. height: math.unit(4, "meters"),
  19793. default: true
  19794. },
  19795. ]
  19796. ))
  19797. characterMakers.push(() => makeCharacter(
  19798. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19799. {
  19800. side: {
  19801. height: math.unit(6, "feet"),
  19802. weight: math.unit(150, "lb"),
  19803. name: "Side",
  19804. image: {
  19805. source: "./media/characters/richard-dragon/side.svg",
  19806. extra: 845 / 340,
  19807. bottom: 0.017
  19808. }
  19809. },
  19810. maw: {
  19811. height: math.unit(2.97, "feet"),
  19812. name: "Maw",
  19813. image: {
  19814. source: "./media/characters/richard-dragon/maw.svg"
  19815. }
  19816. },
  19817. },
  19818. [
  19819. ]
  19820. ))
  19821. characterMakers.push(() => makeCharacter(
  19822. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19823. {
  19824. front: {
  19825. height: math.unit(4, "feet"),
  19826. weight: math.unit(100, "lb"),
  19827. name: "Front",
  19828. image: {
  19829. source: "./media/characters/richard-smeargle/front.svg",
  19830. extra: 2952 / 2820,
  19831. bottom: 0.028
  19832. }
  19833. },
  19834. },
  19835. [
  19836. {
  19837. name: "Normal",
  19838. height: math.unit(4, "feet"),
  19839. default: true
  19840. },
  19841. {
  19842. name: "Dynamax",
  19843. height: math.unit(20, "meters")
  19844. },
  19845. ]
  19846. ))
  19847. characterMakers.push(() => makeCharacter(
  19848. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19849. {
  19850. front: {
  19851. height: math.unit(6, "feet"),
  19852. weight: math.unit(110, "lb"),
  19853. name: "Front",
  19854. image: {
  19855. source: "./media/characters/klay/front.svg",
  19856. extra: 962 / 883,
  19857. bottom: 0.04
  19858. }
  19859. },
  19860. back: {
  19861. height: math.unit(6, "feet"),
  19862. weight: math.unit(110, "lb"),
  19863. name: "Back",
  19864. image: {
  19865. source: "./media/characters/klay/back.svg",
  19866. extra: 962 / 883
  19867. }
  19868. },
  19869. beans: {
  19870. height: math.unit(1.15, "feet"),
  19871. name: "Beans",
  19872. image: {
  19873. source: "./media/characters/klay/beans.svg"
  19874. }
  19875. },
  19876. },
  19877. [
  19878. {
  19879. name: "Micro",
  19880. height: math.unit(6, "inches")
  19881. },
  19882. {
  19883. name: "Mini",
  19884. height: math.unit(3, "feet")
  19885. },
  19886. {
  19887. name: "Normal",
  19888. height: math.unit(6, "feet"),
  19889. default: true
  19890. },
  19891. {
  19892. name: "Big",
  19893. height: math.unit(25, "feet")
  19894. },
  19895. {
  19896. name: "Macro",
  19897. height: math.unit(100, "feet")
  19898. },
  19899. {
  19900. name: "Megamacro",
  19901. height: math.unit(400, "feet")
  19902. },
  19903. ]
  19904. ))
  19905. characterMakers.push(() => makeCharacter(
  19906. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19907. {
  19908. front: {
  19909. height: math.unit(6, "feet"),
  19910. weight: math.unit(160, "lb"),
  19911. name: "Front",
  19912. image: {
  19913. source: "./media/characters/marcus/front.svg",
  19914. extra: 734 / 676,
  19915. bottom: 0.03
  19916. }
  19917. },
  19918. },
  19919. [
  19920. {
  19921. name: "Little",
  19922. height: math.unit(6, "feet")
  19923. },
  19924. {
  19925. name: "Normal",
  19926. height: math.unit(110, "feet"),
  19927. default: true
  19928. },
  19929. {
  19930. name: "Macro",
  19931. height: math.unit(250, "feet")
  19932. },
  19933. {
  19934. name: "Megamacro",
  19935. height: math.unit(1000, "feet")
  19936. },
  19937. ]
  19938. ))
  19939. characterMakers.push(() => makeCharacter(
  19940. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19941. {
  19942. front: {
  19943. height: math.unit(7, "feet"),
  19944. weight: math.unit(275, "lb"),
  19945. name: "Front",
  19946. image: {
  19947. source: "./media/characters/claude-delroute/front.svg",
  19948. extra: 902/827,
  19949. bottom: 26/928
  19950. }
  19951. },
  19952. side: {
  19953. height: math.unit(7, "feet"),
  19954. weight: math.unit(275, "lb"),
  19955. name: "Side",
  19956. image: {
  19957. source: "./media/characters/claude-delroute/side.svg",
  19958. extra: 908/853,
  19959. bottom: 16/924
  19960. }
  19961. },
  19962. back: {
  19963. height: math.unit(7, "feet"),
  19964. weight: math.unit(275, "lb"),
  19965. name: "Back",
  19966. image: {
  19967. source: "./media/characters/claude-delroute/back.svg",
  19968. extra: 911/829,
  19969. bottom: 18/929
  19970. }
  19971. },
  19972. maw: {
  19973. height: math.unit(0.6407, "meters"),
  19974. name: "Maw",
  19975. image: {
  19976. source: "./media/characters/claude-delroute/maw.svg"
  19977. }
  19978. },
  19979. },
  19980. [
  19981. {
  19982. name: "Normal",
  19983. height: math.unit(7, "feet"),
  19984. default: true
  19985. },
  19986. {
  19987. name: "Lorge",
  19988. height: math.unit(20, "feet")
  19989. },
  19990. ]
  19991. ))
  19992. characterMakers.push(() => makeCharacter(
  19993. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19994. {
  19995. front: {
  19996. height: math.unit(8 + 4 / 12, "feet"),
  19997. weight: math.unit(600, "lb"),
  19998. name: "Front",
  19999. image: {
  20000. source: "./media/characters/dragonien/front.svg",
  20001. extra: 100 / 94,
  20002. bottom: 3.3 / 103.3445
  20003. }
  20004. },
  20005. back: {
  20006. height: math.unit(8 + 4 / 12, "feet"),
  20007. weight: math.unit(600, "lb"),
  20008. name: "Back",
  20009. image: {
  20010. source: "./media/characters/dragonien/back.svg",
  20011. extra: 776 / 746,
  20012. bottom: 6.4 / 782.0616
  20013. }
  20014. },
  20015. foot: {
  20016. height: math.unit(1.54, "feet"),
  20017. name: "Foot",
  20018. image: {
  20019. source: "./media/characters/dragonien/foot.svg",
  20020. }
  20021. },
  20022. },
  20023. [
  20024. {
  20025. name: "Normal",
  20026. height: math.unit(8 + 4 / 12, "feet"),
  20027. default: true
  20028. },
  20029. {
  20030. name: "Macro",
  20031. height: math.unit(200, "feet")
  20032. },
  20033. {
  20034. name: "Megamacro",
  20035. height: math.unit(1, "mile")
  20036. },
  20037. {
  20038. name: "Gigamacro",
  20039. height: math.unit(1000, "miles")
  20040. },
  20041. ]
  20042. ))
  20043. characterMakers.push(() => makeCharacter(
  20044. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20045. {
  20046. front: {
  20047. height: math.unit(5 + 2 / 12, "feet"),
  20048. weight: math.unit(110, "lb"),
  20049. name: "Front",
  20050. image: {
  20051. source: "./media/characters/desta/front.svg",
  20052. extra: 767 / 726,
  20053. bottom: 11.7 / 779
  20054. }
  20055. },
  20056. back: {
  20057. height: math.unit(5 + 2 / 12, "feet"),
  20058. weight: math.unit(110, "lb"),
  20059. name: "Back",
  20060. image: {
  20061. source: "./media/characters/desta/back.svg",
  20062. extra: 777 / 728,
  20063. bottom: 6 / 784
  20064. }
  20065. },
  20066. frontAlt: {
  20067. height: math.unit(5 + 2 / 12, "feet"),
  20068. weight: math.unit(110, "lb"),
  20069. name: "Front",
  20070. image: {
  20071. source: "./media/characters/desta/front-alt.svg",
  20072. extra: 1482 / 1417
  20073. }
  20074. },
  20075. side: {
  20076. height: math.unit(5 + 2 / 12, "feet"),
  20077. weight: math.unit(110, "lb"),
  20078. name: "Side",
  20079. image: {
  20080. source: "./media/characters/desta/side.svg",
  20081. extra: 2579 / 2491,
  20082. bottom: 0.053
  20083. }
  20084. },
  20085. },
  20086. [
  20087. {
  20088. name: "Micro",
  20089. height: math.unit(6, "inches")
  20090. },
  20091. {
  20092. name: "Normal",
  20093. height: math.unit(5 + 2 / 12, "feet"),
  20094. default: true
  20095. },
  20096. {
  20097. name: "Macro",
  20098. height: math.unit(62, "feet")
  20099. },
  20100. {
  20101. name: "Megamacro",
  20102. height: math.unit(1800, "feet")
  20103. },
  20104. ]
  20105. ))
  20106. characterMakers.push(() => makeCharacter(
  20107. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20108. {
  20109. front: {
  20110. height: math.unit(10, "feet"),
  20111. weight: math.unit(700, "lb"),
  20112. name: "Front",
  20113. image: {
  20114. source: "./media/characters/storm-alystar/front.svg",
  20115. extra: 2112 / 1898,
  20116. bottom: 0.034
  20117. }
  20118. },
  20119. },
  20120. [
  20121. {
  20122. name: "Micro",
  20123. height: math.unit(3.5, "inches")
  20124. },
  20125. {
  20126. name: "Normal",
  20127. height: math.unit(10, "feet"),
  20128. default: true
  20129. },
  20130. {
  20131. name: "Macro",
  20132. height: math.unit(400, "feet")
  20133. },
  20134. {
  20135. name: "Deific",
  20136. height: math.unit(60, "miles")
  20137. },
  20138. ]
  20139. ))
  20140. characterMakers.push(() => makeCharacter(
  20141. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20142. {
  20143. front: {
  20144. height: math.unit(2.35, "meters"),
  20145. weight: math.unit(119, "kg"),
  20146. name: "Front",
  20147. image: {
  20148. source: "./media/characters/ilia/front.svg",
  20149. extra: 1285 / 1255,
  20150. bottom: 0.06
  20151. }
  20152. },
  20153. },
  20154. [
  20155. {
  20156. name: "Normal",
  20157. height: math.unit(2.35, "meters")
  20158. },
  20159. {
  20160. name: "Macro",
  20161. height: math.unit(140, "meters"),
  20162. default: true
  20163. },
  20164. {
  20165. name: "Megamacro",
  20166. height: math.unit(100, "miles")
  20167. },
  20168. ]
  20169. ))
  20170. characterMakers.push(() => makeCharacter(
  20171. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20172. {
  20173. front: {
  20174. height: math.unit(6 + 5 / 12, "feet"),
  20175. weight: math.unit(190, "lb"),
  20176. name: "Front",
  20177. image: {
  20178. source: "./media/characters/kingdead/front.svg",
  20179. extra: 1228 / 1177
  20180. }
  20181. },
  20182. },
  20183. [
  20184. {
  20185. name: "Micro",
  20186. height: math.unit(7, "inches")
  20187. },
  20188. {
  20189. name: "Normal",
  20190. height: math.unit(6 + 5 / 12, "feet")
  20191. },
  20192. {
  20193. name: "Macro",
  20194. height: math.unit(150, "feet"),
  20195. default: true
  20196. },
  20197. {
  20198. name: "Megamacro",
  20199. height: math.unit(200, "miles")
  20200. },
  20201. ]
  20202. ))
  20203. characterMakers.push(() => makeCharacter(
  20204. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20205. {
  20206. front: {
  20207. height: math.unit(8, "feet"),
  20208. weight: math.unit(600, "lb"),
  20209. name: "Front",
  20210. image: {
  20211. source: "./media/characters/kyrehx/front.svg",
  20212. extra: 1195 / 1095,
  20213. bottom: 0.034
  20214. }
  20215. },
  20216. },
  20217. [
  20218. {
  20219. name: "Micro",
  20220. height: math.unit(2, "inches")
  20221. },
  20222. {
  20223. name: "Normal",
  20224. height: math.unit(8, "feet"),
  20225. default: true
  20226. },
  20227. {
  20228. name: "Macro",
  20229. height: math.unit(255, "feet")
  20230. },
  20231. ]
  20232. ))
  20233. characterMakers.push(() => makeCharacter(
  20234. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20235. {
  20236. front: {
  20237. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20238. weight: math.unit(184, "lb"),
  20239. name: "Front",
  20240. image: {
  20241. source: "./media/characters/xang/front.svg",
  20242. extra: 845 / 755
  20243. }
  20244. },
  20245. },
  20246. [
  20247. {
  20248. name: "Normal",
  20249. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20250. default: true
  20251. },
  20252. {
  20253. name: "Macro",
  20254. height: math.unit(0.935 * 146, "feet")
  20255. },
  20256. {
  20257. name: "Megamacro",
  20258. height: math.unit(0.935 * 3, "miles")
  20259. },
  20260. ]
  20261. ))
  20262. characterMakers.push(() => makeCharacter(
  20263. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20264. {
  20265. frontDressed: {
  20266. height: math.unit(5 + 7 / 12, "feet"),
  20267. weight: math.unit(140, "lb"),
  20268. name: "Front (Dressed)",
  20269. image: {
  20270. source: "./media/characters/doc-weardno/front-dressed.svg",
  20271. extra: 263 / 234
  20272. }
  20273. },
  20274. backDressed: {
  20275. height: math.unit(5 + 7 / 12, "feet"),
  20276. weight: math.unit(140, "lb"),
  20277. name: "Back (Dressed)",
  20278. image: {
  20279. source: "./media/characters/doc-weardno/back-dressed.svg",
  20280. extra: 266 / 238
  20281. }
  20282. },
  20283. front: {
  20284. height: math.unit(5 + 7 / 12, "feet"),
  20285. weight: math.unit(140, "lb"),
  20286. name: "Front",
  20287. image: {
  20288. source: "./media/characters/doc-weardno/front.svg",
  20289. extra: 254 / 233
  20290. }
  20291. },
  20292. },
  20293. [
  20294. {
  20295. name: "Micro",
  20296. height: math.unit(3, "inches")
  20297. },
  20298. {
  20299. name: "Normal",
  20300. height: math.unit(5 + 7 / 12, "feet"),
  20301. default: true
  20302. },
  20303. {
  20304. name: "Macro",
  20305. height: math.unit(25, "feet")
  20306. },
  20307. {
  20308. name: "Megamacro",
  20309. height: math.unit(2, "miles")
  20310. },
  20311. ]
  20312. ))
  20313. characterMakers.push(() => makeCharacter(
  20314. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20315. {
  20316. front: {
  20317. height: math.unit(6 + 2 / 12, "feet"),
  20318. weight: math.unit(153, "lb"),
  20319. name: "Front",
  20320. image: {
  20321. source: "./media/characters/seth-whilst/front.svg",
  20322. bottom: 0.07
  20323. }
  20324. },
  20325. },
  20326. [
  20327. {
  20328. name: "Micro",
  20329. height: math.unit(5, "inches")
  20330. },
  20331. {
  20332. name: "Normal",
  20333. height: math.unit(6 + 2 / 12, "feet"),
  20334. default: true
  20335. },
  20336. ]
  20337. ))
  20338. characterMakers.push(() => makeCharacter(
  20339. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20340. {
  20341. front: {
  20342. height: math.unit(3, "inches"),
  20343. weight: math.unit(8, "grams"),
  20344. name: "Front",
  20345. image: {
  20346. source: "./media/characters/pocket-jabari/front.svg",
  20347. extra: 1024 / 974,
  20348. bottom: 0.039
  20349. }
  20350. },
  20351. },
  20352. [
  20353. {
  20354. name: "Minimicro",
  20355. height: math.unit(8, "mm")
  20356. },
  20357. {
  20358. name: "Micro",
  20359. height: math.unit(3, "inches"),
  20360. default: true
  20361. },
  20362. {
  20363. name: "Normal",
  20364. height: math.unit(3, "feet")
  20365. },
  20366. ]
  20367. ))
  20368. characterMakers.push(() => makeCharacter(
  20369. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20370. {
  20371. frontDressed: {
  20372. height: math.unit(15, "feet"),
  20373. weight: math.unit(3280, "lb"),
  20374. name: "Front (Dressed)",
  20375. image: {
  20376. source: "./media/characters/sapphy/front-dressed.svg",
  20377. extra: 1951/1654,
  20378. bottom: 194/2145
  20379. },
  20380. form: "anthro",
  20381. default: true
  20382. },
  20383. backDressed: {
  20384. height: math.unit(15, "feet"),
  20385. weight: math.unit(3280, "lb"),
  20386. name: "Back (Dressed)",
  20387. image: {
  20388. source: "./media/characters/sapphy/back-dressed.svg",
  20389. extra: 2058/1918,
  20390. bottom: 125/2183
  20391. },
  20392. form: "anthro"
  20393. },
  20394. frontNude: {
  20395. height: math.unit(15, "feet"),
  20396. weight: math.unit(3280, "lb"),
  20397. name: "Front (Nude)",
  20398. image: {
  20399. source: "./media/characters/sapphy/front-nude.svg",
  20400. extra: 1951/1654,
  20401. bottom: 194/2145
  20402. },
  20403. form: "anthro"
  20404. },
  20405. backNude: {
  20406. height: math.unit(15, "feet"),
  20407. weight: math.unit(3280, "lb"),
  20408. name: "Back (Nude)",
  20409. image: {
  20410. source: "./media/characters/sapphy/back-nude.svg",
  20411. extra: 2058/1918,
  20412. bottom: 125/2183
  20413. },
  20414. form: "anthro"
  20415. },
  20416. full: {
  20417. height: math.unit(15, "feet"),
  20418. weight: math.unit(3280, "lb"),
  20419. name: "Full",
  20420. image: {
  20421. source: "./media/characters/sapphy/full.svg",
  20422. extra: 1396/1317,
  20423. bottom: 44/1440
  20424. },
  20425. form: "anthro"
  20426. },
  20427. dick: {
  20428. height: math.unit(3.8, "feet"),
  20429. name: "Dick",
  20430. image: {
  20431. source: "./media/characters/sapphy/dick.svg"
  20432. },
  20433. form: "anthro"
  20434. },
  20435. feral: {
  20436. height: math.unit(35, "feet"),
  20437. weight: math.unit(160, "tons"),
  20438. name: "Feral",
  20439. image: {
  20440. source: "./media/characters/sapphy/feral.svg",
  20441. extra: 1050/573,
  20442. bottom: 60/1110
  20443. },
  20444. form: "feral",
  20445. default: true
  20446. },
  20447. },
  20448. [
  20449. {
  20450. name: "Normal",
  20451. height: math.unit(15, "feet"),
  20452. form: "anthro"
  20453. },
  20454. {
  20455. name: "Casual Macro",
  20456. height: math.unit(120, "feet"),
  20457. form: "anthro"
  20458. },
  20459. {
  20460. name: "Macro",
  20461. height: math.unit(2150, "feet"),
  20462. default: true,
  20463. form: "anthro"
  20464. },
  20465. {
  20466. name: "Megamacro",
  20467. height: math.unit(8, "miles"),
  20468. form: "anthro"
  20469. },
  20470. {
  20471. name: "Galaxy Mom",
  20472. height: math.unit(6, "megalightyears"),
  20473. form: "anthro"
  20474. },
  20475. {
  20476. name: "Normal",
  20477. height: math.unit(35, "feet"),
  20478. form: "feral",
  20479. default: true
  20480. },
  20481. {
  20482. name: "Macro",
  20483. height: math.unit(300, "feet"),
  20484. form: "feral"
  20485. },
  20486. {
  20487. name: "Galaxy Mom",
  20488. height: math.unit(10, "megalightyears"),
  20489. form: "feral"
  20490. },
  20491. ],
  20492. {
  20493. "anthro": {
  20494. name: "Anthro",
  20495. default: true
  20496. },
  20497. "feral": {
  20498. name: "Feral"
  20499. }
  20500. }
  20501. ))
  20502. characterMakers.push(() => makeCharacter(
  20503. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20504. {
  20505. hyenaFront: {
  20506. height: math.unit(6, "feet"),
  20507. weight: math.unit(190, "lb"),
  20508. name: "Front",
  20509. image: {
  20510. source: "./media/characters/kiro/hyena-front.svg",
  20511. extra: 927/839,
  20512. bottom: 91/1018
  20513. },
  20514. form: "hyena",
  20515. default: true
  20516. },
  20517. front: {
  20518. height: math.unit(6, "feet"),
  20519. weight: math.unit(170, "lb"),
  20520. name: "Front",
  20521. image: {
  20522. source: "./media/characters/kiro/front.svg",
  20523. extra: 1064 / 1012,
  20524. bottom: 0.052
  20525. },
  20526. form: "folf",
  20527. default: true
  20528. },
  20529. },
  20530. [
  20531. {
  20532. name: "Micro",
  20533. height: math.unit(6, "inches"),
  20534. form: "folf"
  20535. },
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(6, "feet"),
  20539. form: "folf",
  20540. default: true
  20541. },
  20542. {
  20543. name: "Macro",
  20544. height: math.unit(72, "feet"),
  20545. form: "folf"
  20546. },
  20547. {
  20548. name: "Micro",
  20549. height: math.unit(6, "inches"),
  20550. form: "hyena"
  20551. },
  20552. {
  20553. name: "Normal",
  20554. height: math.unit(6, "feet"),
  20555. form: "hyena",
  20556. default: true
  20557. },
  20558. {
  20559. name: "Macro",
  20560. height: math.unit(72, "feet"),
  20561. form: "hyena"
  20562. },
  20563. ],
  20564. {
  20565. "hyena": {
  20566. name: "Hyena",
  20567. default: true
  20568. },
  20569. "folf": {
  20570. name: "Folf",
  20571. },
  20572. }
  20573. ))
  20574. characterMakers.push(() => makeCharacter(
  20575. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20576. {
  20577. front: {
  20578. height: math.unit(5 + 9 / 12, "feet"),
  20579. weight: math.unit(175, "lb"),
  20580. name: "Front",
  20581. image: {
  20582. source: "./media/characters/irishfox/front.svg",
  20583. extra: 1912 / 1680,
  20584. bottom: 0.02
  20585. }
  20586. },
  20587. },
  20588. [
  20589. {
  20590. name: "Nano",
  20591. height: math.unit(1, "mm")
  20592. },
  20593. {
  20594. name: "Micro",
  20595. height: math.unit(2, "inches")
  20596. },
  20597. {
  20598. name: "Normal",
  20599. height: math.unit(5 + 9 / 12, "feet"),
  20600. default: true
  20601. },
  20602. {
  20603. name: "Macro",
  20604. height: math.unit(45, "feet")
  20605. },
  20606. ]
  20607. ))
  20608. characterMakers.push(() => makeCharacter(
  20609. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20610. {
  20611. front: {
  20612. height: math.unit(6 + 1 / 12, "feet"),
  20613. weight: math.unit(75, "lb"),
  20614. name: "Front",
  20615. image: {
  20616. source: "./media/characters/aronai-sieyes/front.svg",
  20617. extra: 1532/1450,
  20618. bottom: 42/1574
  20619. }
  20620. },
  20621. side: {
  20622. height: math.unit(6 + 1 / 12, "feet"),
  20623. weight: math.unit(75, "lb"),
  20624. name: "Side",
  20625. image: {
  20626. source: "./media/characters/aronai-sieyes/side.svg",
  20627. extra: 1422/1365,
  20628. bottom: 148/1570
  20629. }
  20630. },
  20631. back: {
  20632. height: math.unit(6 + 1 / 12, "feet"),
  20633. weight: math.unit(75, "lb"),
  20634. name: "Back",
  20635. image: {
  20636. source: "./media/characters/aronai-sieyes/back.svg",
  20637. extra: 1526/1464,
  20638. bottom: 51/1577
  20639. }
  20640. },
  20641. dressed: {
  20642. height: math.unit(6 + 1 / 12, "feet"),
  20643. weight: math.unit(75, "lb"),
  20644. name: "Dressed",
  20645. image: {
  20646. source: "./media/characters/aronai-sieyes/dressed.svg",
  20647. extra: 1559/1483,
  20648. bottom: 39/1598
  20649. }
  20650. },
  20651. slit: {
  20652. height: math.unit(1.3, "feet"),
  20653. name: "Slit",
  20654. image: {
  20655. source: "./media/characters/aronai-sieyes/slit.svg"
  20656. }
  20657. },
  20658. slitSpread: {
  20659. height: math.unit(0.9, "feet"),
  20660. name: "Slit (Spread)",
  20661. image: {
  20662. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20663. }
  20664. },
  20665. rump: {
  20666. height: math.unit(1.3, "feet"),
  20667. name: "Rump",
  20668. image: {
  20669. source: "./media/characters/aronai-sieyes/rump.svg"
  20670. }
  20671. },
  20672. maw: {
  20673. height: math.unit(1.25, "feet"),
  20674. name: "Maw",
  20675. image: {
  20676. source: "./media/characters/aronai-sieyes/maw.svg"
  20677. }
  20678. },
  20679. feral: {
  20680. height: math.unit(18, "feet"),
  20681. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20682. name: "Feral",
  20683. image: {
  20684. source: "./media/characters/aronai-sieyes/feral.svg",
  20685. extra: 1530 / 1240,
  20686. bottom: 0.035
  20687. }
  20688. },
  20689. },
  20690. [
  20691. {
  20692. name: "Micro",
  20693. height: math.unit(2, "inches")
  20694. },
  20695. {
  20696. name: "Normal",
  20697. height: math.unit(6 + 1 / 12, "feet"),
  20698. default: true
  20699. }
  20700. ]
  20701. ))
  20702. characterMakers.push(() => makeCharacter(
  20703. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20704. {
  20705. front: {
  20706. height: math.unit(12, "feet"),
  20707. weight: math.unit(410, "kg"),
  20708. name: "Front",
  20709. image: {
  20710. source: "./media/characters/xuna/front.svg",
  20711. extra: 2184 / 1980
  20712. }
  20713. },
  20714. side: {
  20715. height: math.unit(12, "feet"),
  20716. weight: math.unit(410, "kg"),
  20717. name: "Side",
  20718. image: {
  20719. source: "./media/characters/xuna/side.svg",
  20720. extra: 2184 / 1980
  20721. }
  20722. },
  20723. back: {
  20724. height: math.unit(12, "feet"),
  20725. weight: math.unit(410, "kg"),
  20726. name: "Back",
  20727. image: {
  20728. source: "./media/characters/xuna/back.svg",
  20729. extra: 2184 / 1980
  20730. }
  20731. },
  20732. },
  20733. [
  20734. {
  20735. name: "Nano glow",
  20736. height: math.unit(10, "nm")
  20737. },
  20738. {
  20739. name: "Micro floof",
  20740. height: math.unit(0.3, "m")
  20741. },
  20742. {
  20743. name: "Huggable softy boi",
  20744. height: math.unit(3.6576, "m"),
  20745. default: true
  20746. },
  20747. {
  20748. name: "Admirable floof",
  20749. height: math.unit(80, "meters")
  20750. },
  20751. {
  20752. name: "Gentle macro",
  20753. height: math.unit(300, "meters")
  20754. },
  20755. {
  20756. name: "Very careful floof",
  20757. height: math.unit(3200, "meters")
  20758. },
  20759. {
  20760. name: "The mega floof",
  20761. height: math.unit(36000, "meters")
  20762. },
  20763. {
  20764. name: "Giga-fur-Wicker",
  20765. height: math.unit(4800000, "meters")
  20766. },
  20767. {
  20768. name: "Licky world",
  20769. height: math.unit(20000000, "meters")
  20770. },
  20771. {
  20772. name: "Floofy cyan sun",
  20773. height: math.unit(1500000000, "meters")
  20774. },
  20775. {
  20776. name: "Milky Wicker",
  20777. height: math.unit(1000000000000000000000, "meters")
  20778. },
  20779. {
  20780. name: "The observing Wicker",
  20781. height: math.unit(999999999999999999999999999, "meters")
  20782. },
  20783. ]
  20784. ))
  20785. characterMakers.push(() => makeCharacter(
  20786. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20787. {
  20788. front: {
  20789. height: math.unit(5 + 9 / 12, "feet"),
  20790. weight: math.unit(150, "lb"),
  20791. name: "Front",
  20792. image: {
  20793. source: "./media/characters/arokha-sieyes/front.svg",
  20794. extra: 1425 / 1284,
  20795. bottom: 0.05
  20796. }
  20797. },
  20798. },
  20799. [
  20800. {
  20801. name: "Normal",
  20802. height: math.unit(5 + 9 / 12, "feet")
  20803. },
  20804. {
  20805. name: "Macro",
  20806. height: math.unit(30, "meters"),
  20807. default: true
  20808. },
  20809. ]
  20810. ))
  20811. characterMakers.push(() => makeCharacter(
  20812. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20813. {
  20814. front: {
  20815. height: math.unit(6, "feet"),
  20816. weight: math.unit(180, "lb"),
  20817. name: "Front",
  20818. image: {
  20819. source: "./media/characters/arokh-sieyes/front.svg",
  20820. extra: 1830 / 1769,
  20821. bottom: 0.01
  20822. }
  20823. },
  20824. },
  20825. [
  20826. {
  20827. name: "Normal",
  20828. height: math.unit(6, "feet")
  20829. },
  20830. {
  20831. name: "Macro",
  20832. height: math.unit(30, "meters"),
  20833. default: true
  20834. },
  20835. ]
  20836. ))
  20837. characterMakers.push(() => makeCharacter(
  20838. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20839. {
  20840. side: {
  20841. height: math.unit(13 + 1 / 12, "feet"),
  20842. weight: math.unit(8.5, "tonnes"),
  20843. preyCapacity: math.unit(36, "people"),
  20844. name: "Side",
  20845. image: {
  20846. source: "./media/characters/goldeneye/side.svg",
  20847. extra: 1139/741,
  20848. bottom: 98/1237
  20849. }
  20850. },
  20851. front: {
  20852. height: math.unit(5.1, "feet"),
  20853. weight: math.unit(8.5, "tonnes"),
  20854. preyCapacity: math.unit(36, "people"),
  20855. name: "Front",
  20856. image: {
  20857. source: "./media/characters/goldeneye/front.svg",
  20858. extra: 635/365,
  20859. bottom: 598/1233
  20860. }
  20861. },
  20862. maw: {
  20863. height: math.unit(6.6, "feet"),
  20864. name: "Maw",
  20865. image: {
  20866. source: "./media/characters/goldeneye/maw.svg"
  20867. }
  20868. },
  20869. headFront: {
  20870. height: math.unit(8, "feet"),
  20871. name: "Head (Front)",
  20872. image: {
  20873. source: "./media/characters/goldeneye/head-front.svg"
  20874. }
  20875. },
  20876. headSide: {
  20877. height: math.unit(6, "feet"),
  20878. name: "Head (Side)",
  20879. image: {
  20880. source: "./media/characters/goldeneye/head-side.svg"
  20881. }
  20882. },
  20883. headBack: {
  20884. height: math.unit(8, "feet"),
  20885. name: "Head (Back)",
  20886. image: {
  20887. source: "./media/characters/goldeneye/head-back.svg"
  20888. }
  20889. },
  20890. paw: {
  20891. height: math.unit(3.4, "feet"),
  20892. name: "Paw",
  20893. image: {
  20894. source: "./media/characters/goldeneye/paw.svg"
  20895. }
  20896. },
  20897. toering: {
  20898. height: math.unit(0.45, "feet"),
  20899. name: "Toering",
  20900. image: {
  20901. source: "./media/characters/goldeneye/toering.svg"
  20902. }
  20903. },
  20904. eyes: {
  20905. height: math.unit(0.5, "feet"),
  20906. name: "Eyes",
  20907. image: {
  20908. source: "./media/characters/goldeneye/eyes.svg"
  20909. }
  20910. },
  20911. },
  20912. [
  20913. {
  20914. name: "Normal",
  20915. height: math.unit(13 + 1 / 12, "feet"),
  20916. default: true
  20917. },
  20918. ]
  20919. ))
  20920. characterMakers.push(() => makeCharacter(
  20921. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20922. {
  20923. front: {
  20924. height: math.unit(6 + 1 / 12, "feet"),
  20925. weight: math.unit(210, "lb"),
  20926. name: "Front",
  20927. image: {
  20928. source: "./media/characters/leonardo-lycheborne/front.svg",
  20929. extra: 776/723,
  20930. bottom: 34/810
  20931. }
  20932. },
  20933. side: {
  20934. height: math.unit(6 + 1 / 12, "feet"),
  20935. weight: math.unit(210, "lb"),
  20936. name: "Side",
  20937. image: {
  20938. source: "./media/characters/leonardo-lycheborne/side.svg",
  20939. extra: 780/728,
  20940. bottom: 12/792
  20941. }
  20942. },
  20943. back: {
  20944. height: math.unit(6 + 1 / 12, "feet"),
  20945. weight: math.unit(210, "lb"),
  20946. name: "Back",
  20947. image: {
  20948. source: "./media/characters/leonardo-lycheborne/back.svg",
  20949. extra: 775/721,
  20950. bottom: 17/792
  20951. }
  20952. },
  20953. hand: {
  20954. height: math.unit(1.08, "feet"),
  20955. name: "Hand",
  20956. image: {
  20957. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20958. }
  20959. },
  20960. foot: {
  20961. height: math.unit(1.32, "feet"),
  20962. name: "Foot",
  20963. image: {
  20964. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20965. }
  20966. },
  20967. maw: {
  20968. height: math.unit(1, "feet"),
  20969. name: "Maw",
  20970. image: {
  20971. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20972. }
  20973. },
  20974. were: {
  20975. height: math.unit(20, "feet"),
  20976. weight: math.unit(7800, "lb"),
  20977. name: "Were",
  20978. image: {
  20979. source: "./media/characters/leonardo-lycheborne/were.svg",
  20980. extra: 1224/1165,
  20981. bottom: 72/1296
  20982. }
  20983. },
  20984. feral: {
  20985. height: math.unit(7.5, "feet"),
  20986. weight: math.unit(600, "lb"),
  20987. name: "Feral",
  20988. image: {
  20989. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20990. extra: 797/702,
  20991. bottom: 139/936
  20992. }
  20993. },
  20994. taur: {
  20995. height: math.unit(11, "feet"),
  20996. weight: math.unit(3300, "lb"),
  20997. name: "Taur",
  20998. image: {
  20999. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21000. extra: 1271/1197,
  21001. bottom: 47/1318
  21002. }
  21003. },
  21004. barghest: {
  21005. height: math.unit(11, "feet"),
  21006. weight: math.unit(1300, "lb"),
  21007. name: "Barghest",
  21008. image: {
  21009. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21010. extra: 1291/1204,
  21011. bottom: 37/1328
  21012. }
  21013. },
  21014. dick: {
  21015. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21016. name: "Dick",
  21017. image: {
  21018. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21019. }
  21020. },
  21021. dickWere: {
  21022. height: math.unit((20) / 3.8, "feet"),
  21023. name: "Dick (Were)",
  21024. image: {
  21025. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21026. }
  21027. },
  21028. },
  21029. [
  21030. {
  21031. name: "Normal",
  21032. height: math.unit(6 + 1 / 12, "feet"),
  21033. default: true
  21034. },
  21035. ]
  21036. ))
  21037. characterMakers.push(() => makeCharacter(
  21038. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21039. {
  21040. front: {
  21041. height: math.unit(10, "feet"),
  21042. weight: math.unit(350, "lb"),
  21043. name: "Front",
  21044. image: {
  21045. source: "./media/characters/jet/front.svg",
  21046. extra: 2050 / 1980,
  21047. bottom: 0.013
  21048. }
  21049. },
  21050. back: {
  21051. height: math.unit(10, "feet"),
  21052. weight: math.unit(350, "lb"),
  21053. name: "Back",
  21054. image: {
  21055. source: "./media/characters/jet/back.svg",
  21056. extra: 2050 / 1980,
  21057. bottom: 0.013
  21058. }
  21059. },
  21060. },
  21061. [
  21062. {
  21063. name: "Micro",
  21064. height: math.unit(6, "inches")
  21065. },
  21066. {
  21067. name: "Normal",
  21068. height: math.unit(10, "feet"),
  21069. default: true
  21070. },
  21071. {
  21072. name: "Macro",
  21073. height: math.unit(100, "feet")
  21074. },
  21075. ]
  21076. ))
  21077. characterMakers.push(() => makeCharacter(
  21078. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21079. {
  21080. front: {
  21081. height: math.unit(15, "feet"),
  21082. weight: math.unit(2800, "lb"),
  21083. name: "Front",
  21084. image: {
  21085. source: "./media/characters/tanarath/front.svg",
  21086. extra: 2392 / 2220,
  21087. bottom: 0.03
  21088. }
  21089. },
  21090. back: {
  21091. height: math.unit(15, "feet"),
  21092. weight: math.unit(2800, "lb"),
  21093. name: "Back",
  21094. image: {
  21095. source: "./media/characters/tanarath/back.svg",
  21096. extra: 2392 / 2220,
  21097. bottom: 0.03
  21098. }
  21099. },
  21100. },
  21101. [
  21102. {
  21103. name: "Normal",
  21104. height: math.unit(15, "feet"),
  21105. default: true
  21106. },
  21107. ]
  21108. ))
  21109. characterMakers.push(() => makeCharacter(
  21110. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21111. {
  21112. front: {
  21113. height: math.unit(7 + 1 / 12, "feet"),
  21114. weight: math.unit(175, "lb"),
  21115. name: "Front",
  21116. image: {
  21117. source: "./media/characters/patty-cattybatty/front.svg",
  21118. extra: 908 / 874,
  21119. bottom: 0.025
  21120. }
  21121. },
  21122. },
  21123. [
  21124. {
  21125. name: "Micro",
  21126. height: math.unit(1, "inch")
  21127. },
  21128. {
  21129. name: "Normal",
  21130. height: math.unit(7 + 1 / 12, "feet")
  21131. },
  21132. {
  21133. name: "Mini Macro",
  21134. height: math.unit(155, "feet")
  21135. },
  21136. {
  21137. name: "Macro",
  21138. height: math.unit(1077, "feet")
  21139. },
  21140. {
  21141. name: "Mega Macro",
  21142. height: math.unit(47650, "feet"),
  21143. default: true
  21144. },
  21145. {
  21146. name: "Giga Macro",
  21147. height: math.unit(440, "miles")
  21148. },
  21149. {
  21150. name: "Tera Macro",
  21151. height: math.unit(8700, "miles")
  21152. },
  21153. {
  21154. name: "Planetary Macro",
  21155. height: math.unit(32700, "miles")
  21156. },
  21157. {
  21158. name: "Solar Macro",
  21159. height: math.unit(550000, "miles")
  21160. },
  21161. {
  21162. name: "Celestial Macro",
  21163. height: math.unit(2.5, "AU")
  21164. },
  21165. ]
  21166. ))
  21167. characterMakers.push(() => makeCharacter(
  21168. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21169. {
  21170. front: {
  21171. height: math.unit(4 + 5 / 12, "feet"),
  21172. weight: math.unit(90, "lb"),
  21173. name: "Front",
  21174. image: {
  21175. source: "./media/characters/cappu/front.svg",
  21176. extra: 1247 / 1152,
  21177. bottom: 0.012
  21178. }
  21179. },
  21180. },
  21181. [
  21182. {
  21183. name: "Normal",
  21184. height: math.unit(4 + 5 / 12, "feet"),
  21185. default: true
  21186. },
  21187. ]
  21188. ))
  21189. characterMakers.push(() => makeCharacter(
  21190. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21191. {
  21192. frontDressed: {
  21193. height: math.unit(70, "cm"),
  21194. weight: math.unit(6, "kg"),
  21195. name: "Front (Dressed)",
  21196. image: {
  21197. source: "./media/characters/sebi/front-dressed.svg",
  21198. extra: 713.5 / 686.5,
  21199. bottom: 0.003
  21200. }
  21201. },
  21202. front: {
  21203. height: math.unit(70, "cm"),
  21204. weight: math.unit(5, "kg"),
  21205. name: "Front",
  21206. image: {
  21207. source: "./media/characters/sebi/front.svg",
  21208. extra: 713.5 / 686.5,
  21209. bottom: 0.003
  21210. }
  21211. }
  21212. },
  21213. [
  21214. {
  21215. name: "Normal",
  21216. height: math.unit(70, "cm"),
  21217. default: true
  21218. },
  21219. {
  21220. name: "Macro",
  21221. height: math.unit(8, "meters")
  21222. },
  21223. ]
  21224. ))
  21225. characterMakers.push(() => makeCharacter(
  21226. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21227. {
  21228. front: {
  21229. height: math.unit(6, "feet"),
  21230. weight: math.unit(150, "lb"),
  21231. name: "Front",
  21232. image: {
  21233. source: "./media/characters/typhek/front.svg",
  21234. extra: 1948 / 1929,
  21235. bottom: 0.025
  21236. }
  21237. },
  21238. side: {
  21239. height: math.unit(6, "feet"),
  21240. weight: math.unit(150, "lb"),
  21241. name: "Side",
  21242. image: {
  21243. source: "./media/characters/typhek/side.svg",
  21244. extra: 2034 / 2010,
  21245. bottom: 0.003
  21246. }
  21247. },
  21248. back: {
  21249. height: math.unit(6, "feet"),
  21250. weight: math.unit(150, "lb"),
  21251. name: "Back",
  21252. image: {
  21253. source: "./media/characters/typhek/back.svg",
  21254. extra: 2005 / 1978,
  21255. bottom: 0.004
  21256. }
  21257. },
  21258. palm: {
  21259. height: math.unit(1.2, "feet"),
  21260. name: "Palm",
  21261. image: {
  21262. source: "./media/characters/typhek/palm.svg"
  21263. }
  21264. },
  21265. fist: {
  21266. height: math.unit(1.1, "feet"),
  21267. name: "Fist",
  21268. image: {
  21269. source: "./media/characters/typhek/fist.svg"
  21270. }
  21271. },
  21272. foot: {
  21273. height: math.unit(1.57, "feet"),
  21274. name: "Foot",
  21275. image: {
  21276. source: "./media/characters/typhek/foot.svg"
  21277. }
  21278. },
  21279. sole: {
  21280. height: math.unit(2.05, "feet"),
  21281. name: "Sole",
  21282. image: {
  21283. source: "./media/characters/typhek/sole.svg"
  21284. }
  21285. },
  21286. },
  21287. [
  21288. {
  21289. name: "Macro",
  21290. height: math.unit(40, "stories"),
  21291. default: true
  21292. },
  21293. {
  21294. name: "Megamacro",
  21295. height: math.unit(1, "mile")
  21296. },
  21297. {
  21298. name: "Gigamacro",
  21299. height: math.unit(4000, "solarradii")
  21300. },
  21301. {
  21302. name: "Universal",
  21303. height: math.unit(1.1, "universes")
  21304. }
  21305. ]
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21309. {
  21310. side: {
  21311. height: math.unit(5 + 7 / 12, "feet"),
  21312. weight: math.unit(150, "lb"),
  21313. name: "Side",
  21314. image: {
  21315. source: "./media/characters/kassy/side.svg",
  21316. extra: 1280 / 1225,
  21317. bottom: 0.002
  21318. }
  21319. },
  21320. front: {
  21321. height: math.unit(5 + 7 / 12, "feet"),
  21322. weight: math.unit(150, "lb"),
  21323. name: "Front",
  21324. image: {
  21325. source: "./media/characters/kassy/front.svg",
  21326. extra: 1280 / 1225,
  21327. bottom: 0.025
  21328. }
  21329. },
  21330. back: {
  21331. height: math.unit(5 + 7 / 12, "feet"),
  21332. weight: math.unit(150, "lb"),
  21333. name: "Back",
  21334. image: {
  21335. source: "./media/characters/kassy/back.svg",
  21336. extra: 1280 / 1225,
  21337. bottom: 0.002
  21338. }
  21339. },
  21340. foot: {
  21341. height: math.unit(1.266, "feet"),
  21342. name: "Foot",
  21343. image: {
  21344. source: "./media/characters/kassy/foot.svg"
  21345. }
  21346. },
  21347. },
  21348. [
  21349. {
  21350. name: "Normal",
  21351. height: math.unit(5 + 7 / 12, "feet")
  21352. },
  21353. {
  21354. name: "Macro",
  21355. height: math.unit(137, "feet"),
  21356. default: true
  21357. },
  21358. {
  21359. name: "Megamacro",
  21360. height: math.unit(1, "mile")
  21361. },
  21362. ]
  21363. ))
  21364. characterMakers.push(() => makeCharacter(
  21365. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21366. {
  21367. front: {
  21368. height: math.unit(6 + 1 / 12, "feet"),
  21369. weight: math.unit(200, "lb"),
  21370. name: "Front",
  21371. image: {
  21372. source: "./media/characters/neil/front.svg",
  21373. extra: 1326 / 1250,
  21374. bottom: 0.023
  21375. }
  21376. },
  21377. },
  21378. [
  21379. {
  21380. name: "Normal",
  21381. height: math.unit(6 + 1 / 12, "feet"),
  21382. default: true
  21383. },
  21384. {
  21385. name: "Macro",
  21386. height: math.unit(200, "feet")
  21387. },
  21388. ]
  21389. ))
  21390. characterMakers.push(() => makeCharacter(
  21391. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21392. {
  21393. front: {
  21394. height: math.unit(5 + 9 / 12, "feet"),
  21395. weight: math.unit(190, "lb"),
  21396. name: "Front",
  21397. image: {
  21398. source: "./media/characters/atticus/front.svg",
  21399. extra: 2934 / 2785,
  21400. bottom: 0.025
  21401. }
  21402. },
  21403. },
  21404. [
  21405. {
  21406. name: "Normal",
  21407. height: math.unit(5 + 9 / 12, "feet"),
  21408. default: true
  21409. },
  21410. {
  21411. name: "Macro",
  21412. height: math.unit(180, "feet")
  21413. },
  21414. ]
  21415. ))
  21416. characterMakers.push(() => makeCharacter(
  21417. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21418. {
  21419. side: {
  21420. height: math.unit(9, "feet"),
  21421. weight: math.unit(650, "lb"),
  21422. name: "Side",
  21423. image: {
  21424. source: "./media/characters/milo/side.svg",
  21425. extra: 2644 / 2310,
  21426. bottom: 0.032
  21427. }
  21428. },
  21429. },
  21430. [
  21431. {
  21432. name: "Normal",
  21433. height: math.unit(9, "feet"),
  21434. default: true
  21435. },
  21436. {
  21437. name: "Macro",
  21438. height: math.unit(300, "feet")
  21439. },
  21440. ]
  21441. ))
  21442. characterMakers.push(() => makeCharacter(
  21443. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21444. {
  21445. side: {
  21446. height: math.unit(8, "meters"),
  21447. weight: math.unit(90000, "kg"),
  21448. name: "Side",
  21449. image: {
  21450. source: "./media/characters/ijzer/side.svg",
  21451. extra: 2756 / 1600,
  21452. bottom: 0.01
  21453. }
  21454. },
  21455. },
  21456. [
  21457. {
  21458. name: "Small",
  21459. height: math.unit(3, "meters")
  21460. },
  21461. {
  21462. name: "Normal",
  21463. height: math.unit(8, "meters"),
  21464. default: true
  21465. },
  21466. {
  21467. name: "Normal+",
  21468. height: math.unit(10, "meters")
  21469. },
  21470. {
  21471. name: "Bigger",
  21472. height: math.unit(24, "meters")
  21473. },
  21474. {
  21475. name: "Huge",
  21476. height: math.unit(80, "meters")
  21477. },
  21478. ]
  21479. ))
  21480. characterMakers.push(() => makeCharacter(
  21481. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21482. {
  21483. front: {
  21484. height: math.unit(6 + 2 / 12, "feet"),
  21485. weight: math.unit(153, "lb"),
  21486. name: "Front",
  21487. image: {
  21488. source: "./media/characters/luca-cervicum/front.svg",
  21489. extra: 370 / 327,
  21490. bottom: 0.015
  21491. }
  21492. },
  21493. back: {
  21494. height: math.unit(6 + 2 / 12, "feet"),
  21495. weight: math.unit(153, "lb"),
  21496. name: "Back",
  21497. image: {
  21498. source: "./media/characters/luca-cervicum/back.svg",
  21499. extra: 367 / 333,
  21500. bottom: 0.005
  21501. }
  21502. },
  21503. frontGear: {
  21504. height: math.unit(6 + 2 / 12, "feet"),
  21505. weight: math.unit(173, "lb"),
  21506. name: "Front (Gear)",
  21507. image: {
  21508. source: "./media/characters/luca-cervicum/front-gear.svg",
  21509. extra: 377 / 333,
  21510. bottom: 0.006
  21511. }
  21512. },
  21513. },
  21514. [
  21515. {
  21516. name: "Normal",
  21517. height: math.unit(6 + 2 / 12, "feet"),
  21518. default: true
  21519. },
  21520. ]
  21521. ))
  21522. characterMakers.push(() => makeCharacter(
  21523. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21524. {
  21525. front: {
  21526. height: math.unit(6 + 1 / 12, "feet"),
  21527. weight: math.unit(304, "lb"),
  21528. name: "Front",
  21529. image: {
  21530. source: "./media/characters/oliver/front.svg",
  21531. extra: 157 / 143,
  21532. bottom: 0.08
  21533. }
  21534. },
  21535. },
  21536. [
  21537. {
  21538. name: "Normal",
  21539. height: math.unit(6 + 1 / 12, "feet"),
  21540. default: true
  21541. },
  21542. ]
  21543. ))
  21544. characterMakers.push(() => makeCharacter(
  21545. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21546. {
  21547. front: {
  21548. height: math.unit(5 + 7 / 12, "feet"),
  21549. weight: math.unit(140, "lb"),
  21550. name: "Front",
  21551. image: {
  21552. source: "./media/characters/shane/front.svg",
  21553. extra: 304 / 289,
  21554. bottom: 0.005
  21555. }
  21556. },
  21557. },
  21558. [
  21559. {
  21560. name: "Normal",
  21561. height: math.unit(5 + 7 / 12, "feet"),
  21562. default: true
  21563. },
  21564. ]
  21565. ))
  21566. characterMakers.push(() => makeCharacter(
  21567. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21568. {
  21569. front: {
  21570. height: math.unit(5 + 9 / 12, "feet"),
  21571. weight: math.unit(178, "lb"),
  21572. name: "Front",
  21573. image: {
  21574. source: "./media/characters/shin/front.svg",
  21575. extra: 159 / 151,
  21576. bottom: 0.015
  21577. }
  21578. },
  21579. },
  21580. [
  21581. {
  21582. name: "Normal",
  21583. height: math.unit(5 + 9 / 12, "feet"),
  21584. default: true
  21585. },
  21586. ]
  21587. ))
  21588. characterMakers.push(() => makeCharacter(
  21589. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21590. {
  21591. front: {
  21592. height: math.unit(5 + 10 / 12, "feet"),
  21593. weight: math.unit(168, "lb"),
  21594. name: "Front",
  21595. image: {
  21596. source: "./media/characters/xerxes/front.svg",
  21597. extra: 282 / 260,
  21598. bottom: 0.045
  21599. }
  21600. },
  21601. },
  21602. [
  21603. {
  21604. name: "Normal",
  21605. height: math.unit(5 + 10 / 12, "feet"),
  21606. default: true
  21607. },
  21608. ]
  21609. ))
  21610. characterMakers.push(() => makeCharacter(
  21611. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21612. {
  21613. front: {
  21614. height: math.unit(6 + 7 / 12, "feet"),
  21615. weight: math.unit(208, "lb"),
  21616. name: "Front",
  21617. image: {
  21618. source: "./media/characters/chaska/front.svg",
  21619. extra: 332 / 319,
  21620. bottom: 0.015
  21621. }
  21622. },
  21623. },
  21624. [
  21625. {
  21626. name: "Normal",
  21627. height: math.unit(6 + 7 / 12, "feet"),
  21628. default: true
  21629. },
  21630. ]
  21631. ))
  21632. characterMakers.push(() => makeCharacter(
  21633. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21634. {
  21635. front: {
  21636. height: math.unit(5 + 8 / 12, "feet"),
  21637. weight: math.unit(208, "lb"),
  21638. name: "Front",
  21639. image: {
  21640. source: "./media/characters/enuk/front.svg",
  21641. extra: 437 / 406,
  21642. bottom: 0.02
  21643. }
  21644. },
  21645. },
  21646. [
  21647. {
  21648. name: "Normal",
  21649. height: math.unit(5 + 8 / 12, "feet"),
  21650. default: true
  21651. },
  21652. ]
  21653. ))
  21654. characterMakers.push(() => makeCharacter(
  21655. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21656. {
  21657. front: {
  21658. height: math.unit(5 + 10 / 12, "feet"),
  21659. weight: math.unit(252, "lb"),
  21660. name: "Front",
  21661. image: {
  21662. source: "./media/characters/bruun/front.svg",
  21663. extra: 197 / 187,
  21664. bottom: 0.012
  21665. }
  21666. },
  21667. },
  21668. [
  21669. {
  21670. name: "Normal",
  21671. height: math.unit(5 + 10 / 12, "feet"),
  21672. default: true
  21673. },
  21674. ]
  21675. ))
  21676. characterMakers.push(() => makeCharacter(
  21677. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21678. {
  21679. front: {
  21680. height: math.unit(6 + 10 / 12, "feet"),
  21681. weight: math.unit(255, "lb"),
  21682. name: "Front",
  21683. image: {
  21684. source: "./media/characters/alexeev/front.svg",
  21685. extra: 213 / 200,
  21686. bottom: 0.05
  21687. }
  21688. },
  21689. },
  21690. [
  21691. {
  21692. name: "Normal",
  21693. height: math.unit(6 + 10 / 12, "feet"),
  21694. default: true
  21695. },
  21696. ]
  21697. ))
  21698. characterMakers.push(() => makeCharacter(
  21699. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21700. {
  21701. front: {
  21702. height: math.unit(2 + 8 / 12, "feet"),
  21703. weight: math.unit(22, "lb"),
  21704. name: "Front",
  21705. image: {
  21706. source: "./media/characters/evelyn/front.svg",
  21707. extra: 208 / 180
  21708. }
  21709. },
  21710. },
  21711. [
  21712. {
  21713. name: "Normal",
  21714. height: math.unit(2 + 8 / 12, "feet"),
  21715. default: true
  21716. },
  21717. ]
  21718. ))
  21719. characterMakers.push(() => makeCharacter(
  21720. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21721. {
  21722. front: {
  21723. height: math.unit(5 + 9 / 12, "feet"),
  21724. weight: math.unit(139, "lb"),
  21725. name: "Front",
  21726. image: {
  21727. source: "./media/characters/inca/front.svg",
  21728. extra: 294 / 291,
  21729. bottom: 0.03
  21730. }
  21731. },
  21732. },
  21733. [
  21734. {
  21735. name: "Normal",
  21736. height: math.unit(5 + 9 / 12, "feet"),
  21737. default: true
  21738. },
  21739. ]
  21740. ))
  21741. characterMakers.push(() => makeCharacter(
  21742. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21743. {
  21744. front: {
  21745. height: math.unit(6 + 3 / 12, "feet"),
  21746. weight: math.unit(185, "lb"),
  21747. name: "Front",
  21748. image: {
  21749. source: "./media/characters/mera/front.svg",
  21750. extra: 291 / 277,
  21751. bottom: 0.03
  21752. }
  21753. },
  21754. },
  21755. [
  21756. {
  21757. name: "Normal",
  21758. height: math.unit(6 + 3 / 12, "feet"),
  21759. default: true
  21760. },
  21761. ]
  21762. ))
  21763. characterMakers.push(() => makeCharacter(
  21764. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21765. {
  21766. front: {
  21767. height: math.unit(6 + 7 / 12, "feet"),
  21768. weight: math.unit(160, "lb"),
  21769. name: "Front",
  21770. image: {
  21771. source: "./media/characters/ceres/front.svg",
  21772. extra: 1023 / 950,
  21773. bottom: 0.027
  21774. }
  21775. },
  21776. back: {
  21777. height: math.unit(6 + 7 / 12, "feet"),
  21778. weight: math.unit(160, "lb"),
  21779. name: "Back",
  21780. image: {
  21781. source: "./media/characters/ceres/back.svg",
  21782. extra: 1023 / 950
  21783. }
  21784. },
  21785. },
  21786. [
  21787. {
  21788. name: "Normal",
  21789. height: math.unit(6 + 7 / 12, "feet"),
  21790. default: true
  21791. },
  21792. ]
  21793. ))
  21794. characterMakers.push(() => makeCharacter(
  21795. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21796. {
  21797. front: {
  21798. height: math.unit(5 + 10 / 12, "feet"),
  21799. weight: math.unit(150, "lb"),
  21800. name: "Front",
  21801. image: {
  21802. source: "./media/characters/kris/front.svg",
  21803. extra: 885 / 803,
  21804. bottom: 0.03
  21805. }
  21806. },
  21807. },
  21808. [
  21809. {
  21810. name: "Normal",
  21811. height: math.unit(5 + 10 / 12, "feet"),
  21812. default: true
  21813. },
  21814. ]
  21815. ))
  21816. characterMakers.push(() => makeCharacter(
  21817. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21818. {
  21819. front: {
  21820. height: math.unit(7, "feet"),
  21821. weight: math.unit(120, "kg"),
  21822. name: "Front",
  21823. image: {
  21824. source: "./media/characters/taluthus/front.svg",
  21825. extra: 903 / 833,
  21826. bottom: 0.015
  21827. }
  21828. },
  21829. },
  21830. [
  21831. {
  21832. name: "Normal",
  21833. height: math.unit(7, "feet"),
  21834. default: true
  21835. },
  21836. {
  21837. name: "Macro",
  21838. height: math.unit(300, "feet")
  21839. },
  21840. ]
  21841. ))
  21842. characterMakers.push(() => makeCharacter(
  21843. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21844. {
  21845. front: {
  21846. height: math.unit(5 + 9 / 12, "feet"),
  21847. weight: math.unit(145, "lb"),
  21848. name: "Front",
  21849. image: {
  21850. source: "./media/characters/dawn/front.svg",
  21851. extra: 2094 / 2016,
  21852. bottom: 0.025
  21853. }
  21854. },
  21855. back: {
  21856. height: math.unit(5 + 9 / 12, "feet"),
  21857. weight: math.unit(160, "lb"),
  21858. name: "Back",
  21859. image: {
  21860. source: "./media/characters/dawn/back.svg",
  21861. extra: 2112 / 2080,
  21862. bottom: 0.005
  21863. }
  21864. },
  21865. },
  21866. [
  21867. {
  21868. name: "Normal",
  21869. height: math.unit(6 + 7 / 12, "feet"),
  21870. default: true
  21871. },
  21872. ]
  21873. ))
  21874. characterMakers.push(() => makeCharacter(
  21875. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21876. {
  21877. anthro: {
  21878. height: math.unit(8 + 3 / 12, "feet"),
  21879. weight: math.unit(450, "lb"),
  21880. name: "Anthro",
  21881. image: {
  21882. source: "./media/characters/arador/anthro.svg",
  21883. extra: 1835 / 1718,
  21884. bottom: 0.025
  21885. }
  21886. },
  21887. feral: {
  21888. height: math.unit(4, "feet"),
  21889. weight: math.unit(200, "lb"),
  21890. name: "Feral",
  21891. image: {
  21892. source: "./media/characters/arador/feral.svg",
  21893. extra: 1683 / 1514,
  21894. bottom: 0.07
  21895. }
  21896. },
  21897. },
  21898. [
  21899. {
  21900. name: "Normal",
  21901. height: math.unit(8 + 3 / 12, "feet")
  21902. },
  21903. {
  21904. name: "Macro",
  21905. height: math.unit(82.5, "feet"),
  21906. default: true
  21907. },
  21908. ]
  21909. ))
  21910. characterMakers.push(() => makeCharacter(
  21911. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21912. {
  21913. front: {
  21914. height: math.unit(5 + 10 / 12, "feet"),
  21915. weight: math.unit(125, "lb"),
  21916. name: "Front",
  21917. image: {
  21918. source: "./media/characters/dharsi/front.svg",
  21919. extra: 716 / 630,
  21920. bottom: 0.035
  21921. }
  21922. },
  21923. },
  21924. [
  21925. {
  21926. name: "Nano",
  21927. height: math.unit(100, "nm")
  21928. },
  21929. {
  21930. name: "Micro",
  21931. height: math.unit(2, "inches")
  21932. },
  21933. {
  21934. name: "Normal",
  21935. height: math.unit(5 + 10 / 12, "feet"),
  21936. default: true
  21937. },
  21938. {
  21939. name: "Macro",
  21940. height: math.unit(1000, "feet")
  21941. },
  21942. {
  21943. name: "Megamacro",
  21944. height: math.unit(10, "miles")
  21945. },
  21946. {
  21947. name: "Gigamacro",
  21948. height: math.unit(3000, "miles")
  21949. },
  21950. {
  21951. name: "Teramacro",
  21952. height: math.unit(500000, "miles")
  21953. },
  21954. {
  21955. name: "Teramacro+",
  21956. height: math.unit(30, "galaxies")
  21957. },
  21958. ]
  21959. ))
  21960. characterMakers.push(() => makeCharacter(
  21961. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21962. {
  21963. front: {
  21964. height: math.unit(6, "feet"),
  21965. weight: math.unit(150, "lb"),
  21966. name: "Front",
  21967. image: {
  21968. source: "./media/characters/deathy/front.svg",
  21969. extra: 1552 / 1463,
  21970. bottom: 0.025
  21971. }
  21972. },
  21973. side: {
  21974. height: math.unit(6, "feet"),
  21975. weight: math.unit(150, "lb"),
  21976. name: "Side",
  21977. image: {
  21978. source: "./media/characters/deathy/side.svg",
  21979. extra: 1604 / 1455,
  21980. bottom: 0.025
  21981. }
  21982. },
  21983. back: {
  21984. height: math.unit(6, "feet"),
  21985. weight: math.unit(150, "lb"),
  21986. name: "Back",
  21987. image: {
  21988. source: "./media/characters/deathy/back.svg",
  21989. extra: 1580 / 1463,
  21990. bottom: 0.005
  21991. }
  21992. },
  21993. },
  21994. [
  21995. {
  21996. name: "Micro",
  21997. height: math.unit(5, "millimeters")
  21998. },
  21999. {
  22000. name: "Normal",
  22001. height: math.unit(6 + 5 / 12, "feet"),
  22002. default: true
  22003. },
  22004. ]
  22005. ))
  22006. characterMakers.push(() => makeCharacter(
  22007. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22008. {
  22009. front: {
  22010. height: math.unit(16, "feet"),
  22011. weight: math.unit(4000, "lb"),
  22012. name: "Front",
  22013. image: {
  22014. source: "./media/characters/juniper/front.svg",
  22015. bottom: 0.04
  22016. }
  22017. },
  22018. },
  22019. [
  22020. {
  22021. name: "Normal",
  22022. height: math.unit(16, "feet"),
  22023. default: true
  22024. },
  22025. ]
  22026. ))
  22027. characterMakers.push(() => makeCharacter(
  22028. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22029. {
  22030. front: {
  22031. height: math.unit(6, "feet"),
  22032. weight: math.unit(150, "lb"),
  22033. name: "Front",
  22034. image: {
  22035. source: "./media/characters/hipster/front.svg",
  22036. extra: 1312 / 1209,
  22037. bottom: 0.025
  22038. }
  22039. },
  22040. back: {
  22041. height: math.unit(6, "feet"),
  22042. weight: math.unit(150, "lb"),
  22043. name: "Back",
  22044. image: {
  22045. source: "./media/characters/hipster/back.svg",
  22046. extra: 1281 / 1196,
  22047. bottom: 0.01
  22048. }
  22049. },
  22050. },
  22051. [
  22052. {
  22053. name: "Micro",
  22054. height: math.unit(1, "mm")
  22055. },
  22056. {
  22057. name: "Normal",
  22058. height: math.unit(4, "inches"),
  22059. default: true
  22060. },
  22061. {
  22062. name: "Macro",
  22063. height: math.unit(500, "feet")
  22064. },
  22065. {
  22066. name: "Megamacro",
  22067. height: math.unit(1000, "miles")
  22068. },
  22069. ]
  22070. ))
  22071. characterMakers.push(() => makeCharacter(
  22072. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22073. {
  22074. front: {
  22075. height: math.unit(6, "feet"),
  22076. weight: math.unit(150, "lb"),
  22077. name: "Front",
  22078. image: {
  22079. source: "./media/characters/tendirmuldr/front.svg",
  22080. extra: 1878 / 1772,
  22081. bottom: 0.015
  22082. }
  22083. },
  22084. },
  22085. [
  22086. {
  22087. name: "Megamacro",
  22088. height: math.unit(1500, "miles"),
  22089. default: true
  22090. },
  22091. ]
  22092. ))
  22093. characterMakers.push(() => makeCharacter(
  22094. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22095. {
  22096. front: {
  22097. height: math.unit(14, "feet"),
  22098. weight: math.unit(12000, "lb"),
  22099. name: "Front",
  22100. image: {
  22101. source: "./media/characters/mort/front.svg",
  22102. extra: 365 / 318,
  22103. bottom: 0.01
  22104. }
  22105. },
  22106. side: {
  22107. height: math.unit(14, "feet"),
  22108. weight: math.unit(12000, "lb"),
  22109. name: "Side",
  22110. image: {
  22111. source: "./media/characters/mort/side.svg",
  22112. extra: 365 / 318,
  22113. bottom: 0.052
  22114. },
  22115. default: true
  22116. },
  22117. back: {
  22118. height: math.unit(14, "feet"),
  22119. weight: math.unit(12000, "lb"),
  22120. name: "Back",
  22121. image: {
  22122. source: "./media/characters/mort/back.svg",
  22123. extra: 371 / 332,
  22124. bottom: 0.18
  22125. }
  22126. },
  22127. },
  22128. [
  22129. {
  22130. name: "Normal",
  22131. height: math.unit(14, "feet"),
  22132. default: true
  22133. },
  22134. ]
  22135. ))
  22136. characterMakers.push(() => makeCharacter(
  22137. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22138. {
  22139. front: {
  22140. height: math.unit(8, "feet"),
  22141. weight: math.unit(1, "ton"),
  22142. name: "Front",
  22143. image: {
  22144. source: "./media/characters/lycoa/front.svg",
  22145. extra: 1836/1728,
  22146. bottom: 81/1917
  22147. }
  22148. },
  22149. back: {
  22150. height: math.unit(8, "feet"),
  22151. weight: math.unit(1, "ton"),
  22152. name: "Back",
  22153. image: {
  22154. source: "./media/characters/lycoa/back.svg",
  22155. extra: 1785/1720,
  22156. bottom: 91/1876
  22157. }
  22158. },
  22159. head: {
  22160. height: math.unit(1.6243, "feet"),
  22161. name: "Head",
  22162. image: {
  22163. source: "./media/characters/lycoa/head.svg",
  22164. extra: 1011/782,
  22165. bottom: 0/1011
  22166. }
  22167. },
  22168. tailmaw: {
  22169. height: math.unit(1.9, "feet"),
  22170. name: "Tailmaw",
  22171. image: {
  22172. source: "./media/characters/lycoa/tailmaw.svg"
  22173. }
  22174. },
  22175. tentacles: {
  22176. height: math.unit(2.1, "feet"),
  22177. name: "Tentacles",
  22178. image: {
  22179. source: "./media/characters/lycoa/tentacles.svg"
  22180. }
  22181. },
  22182. dick: {
  22183. height: math.unit(1.73, "feet"),
  22184. name: "Dick",
  22185. image: {
  22186. source: "./media/characters/lycoa/dick.svg"
  22187. }
  22188. },
  22189. },
  22190. [
  22191. {
  22192. name: "Normal",
  22193. height: math.unit(8, "feet"),
  22194. default: true
  22195. },
  22196. {
  22197. name: "Macro",
  22198. height: math.unit(30, "feet")
  22199. },
  22200. ]
  22201. ))
  22202. characterMakers.push(() => makeCharacter(
  22203. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22204. {
  22205. front: {
  22206. height: math.unit(4 + 2 / 12, "feet"),
  22207. weight: math.unit(70, "lb"),
  22208. name: "Front",
  22209. image: {
  22210. source: "./media/characters/naldara/front.svg",
  22211. extra: 1664/1387,
  22212. bottom: 81/1745
  22213. },
  22214. form: "anthro",
  22215. default: true
  22216. },
  22217. naga: {
  22218. height: math.unit(20, "feet"),
  22219. weight: math.unit(15000, "kg"),
  22220. name: "Front",
  22221. image: {
  22222. source: "./media/characters/naldara/naga.svg",
  22223. extra: 1590/1396,
  22224. bottom: 285/1875
  22225. },
  22226. form: "naga",
  22227. default: true
  22228. },
  22229. },
  22230. [
  22231. {
  22232. name: "Normal",
  22233. height: math.unit(4 + 2 / 12, "feet"),
  22234. form: "anthro",
  22235. default: true
  22236. },
  22237. {
  22238. name: "Normal",
  22239. height: math.unit(20, "feet"),
  22240. form: "naga",
  22241. default: true
  22242. },
  22243. ],
  22244. {
  22245. "anthro": {
  22246. name: "Anthro",
  22247. default: true
  22248. },
  22249. "naga": {
  22250. name: "Naga"
  22251. }
  22252. }
  22253. ))
  22254. characterMakers.push(() => makeCharacter(
  22255. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22256. {
  22257. front: {
  22258. height: math.unit(13 + 7 / 12, "feet"),
  22259. weight: math.unit(1500, "lb"),
  22260. name: "Front",
  22261. image: {
  22262. source: "./media/characters/briar/front.svg",
  22263. extra: 1223/1157,
  22264. bottom: 123/1346
  22265. }
  22266. },
  22267. },
  22268. [
  22269. {
  22270. name: "Normal",
  22271. height: math.unit(13 + 7 / 12, "feet"),
  22272. default: true
  22273. },
  22274. ]
  22275. ))
  22276. characterMakers.push(() => makeCharacter(
  22277. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22278. {
  22279. side: {
  22280. height: math.unit(16, "feet"),
  22281. weight: math.unit(500, "lb"),
  22282. name: "Side",
  22283. image: {
  22284. source: "./media/characters/vanguard/side.svg",
  22285. extra: 1022/914,
  22286. bottom: 30/1052
  22287. }
  22288. },
  22289. sideAlt: {
  22290. height: math.unit(10, "feet"),
  22291. weight: math.unit(500, "lb"),
  22292. name: "Side (Alt)",
  22293. image: {
  22294. source: "./media/characters/vanguard/side-alt.svg",
  22295. extra: 502 / 425,
  22296. bottom: 0.087
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Normal",
  22303. height: math.unit(17.71, "feet"),
  22304. default: true
  22305. },
  22306. ]
  22307. ))
  22308. characterMakers.push(() => makeCharacter(
  22309. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22310. {
  22311. front: {
  22312. height: math.unit(7.5, "feet"),
  22313. weight: math.unit(2, "lb"),
  22314. name: "Front",
  22315. image: {
  22316. source: "./media/characters/artemis/work-safe-front.svg",
  22317. extra: 1192 / 1075,
  22318. bottom: 0.07
  22319. },
  22320. form: "work-safe",
  22321. default: true
  22322. },
  22323. frontNsfw: {
  22324. height: math.unit(7.5, "feet"),
  22325. weight: math.unit(2, "lb"),
  22326. name: "Front",
  22327. image: {
  22328. source: "./media/characters/artemis/calibrating-front.svg",
  22329. extra: 1192 / 1075,
  22330. bottom: 0.07
  22331. },
  22332. form: "calibrating",
  22333. default: true
  22334. },
  22335. frontNsfwer: {
  22336. height: math.unit(7.5, "feet"),
  22337. weight: math.unit(2, "lb"),
  22338. name: "Front",
  22339. image: {
  22340. source: "./media/characters/artemis/oversize-load-front.svg",
  22341. extra: 1192 / 1075,
  22342. bottom: 0.07
  22343. },
  22344. form: "oversize-load",
  22345. default: true
  22346. },
  22347. side: {
  22348. height: math.unit(7.5, "feet"),
  22349. weight: math.unit(2, "lb"),
  22350. name: "Side",
  22351. image: {
  22352. source: "./media/characters/artemis/work-safe-side.svg",
  22353. extra: 1192 / 1075,
  22354. bottom: 0.07
  22355. },
  22356. form: "work-safe"
  22357. },
  22358. sideNsfw: {
  22359. height: math.unit(7.5, "feet"),
  22360. weight: math.unit(2, "lb"),
  22361. name: "Side",
  22362. image: {
  22363. source: "./media/characters/artemis/calibrating-side.svg",
  22364. extra: 1192 / 1075,
  22365. bottom: 0.07
  22366. },
  22367. form: "calibrating"
  22368. },
  22369. sideNsfwer: {
  22370. height: math.unit(7.5, "feet"),
  22371. weight: math.unit(2, "lb"),
  22372. name: "Side",
  22373. image: {
  22374. source: "./media/characters/artemis/oversize-load-side.svg",
  22375. extra: 1192 / 1075,
  22376. bottom: 0.07
  22377. },
  22378. form: "oversize-load"
  22379. },
  22380. maw: {
  22381. height: math.unit(1.1, "feet"),
  22382. name: "Maw",
  22383. image: {
  22384. source: "./media/characters/artemis/maw.svg"
  22385. },
  22386. form: "work-safe"
  22387. },
  22388. stomach: {
  22389. height: math.unit(0.95, "feet"),
  22390. name: "Stomach",
  22391. image: {
  22392. source: "./media/characters/artemis/stomach.svg"
  22393. },
  22394. form: "work-safe"
  22395. },
  22396. dickCanine: {
  22397. height: math.unit(1, "feet"),
  22398. name: "Dick (Canine)",
  22399. image: {
  22400. source: "./media/characters/artemis/dick-canine.svg"
  22401. },
  22402. form: "calibrating"
  22403. },
  22404. dickEquine: {
  22405. height: math.unit(0.85, "feet"),
  22406. name: "Dick (Equine)",
  22407. image: {
  22408. source: "./media/characters/artemis/dick-equine.svg"
  22409. },
  22410. form: "calibrating"
  22411. },
  22412. dickExotic: {
  22413. height: math.unit(0.85, "feet"),
  22414. name: "Dick (Exotic)",
  22415. image: {
  22416. source: "./media/characters/artemis/dick-exotic.svg"
  22417. },
  22418. form: "calibrating"
  22419. },
  22420. dickCanineBigger: {
  22421. height: math.unit(1 * 1.33, "feet"),
  22422. name: "Dick (Canine)",
  22423. image: {
  22424. source: "./media/characters/artemis/dick-canine.svg"
  22425. },
  22426. form: "oversize-load"
  22427. },
  22428. dickEquineBigger: {
  22429. height: math.unit(0.85 * 1.33, "feet"),
  22430. name: "Dick (Equine)",
  22431. image: {
  22432. source: "./media/characters/artemis/dick-equine.svg"
  22433. },
  22434. form: "oversize-load"
  22435. },
  22436. dickExoticBigger: {
  22437. height: math.unit(0.85 * 1.33, "feet"),
  22438. name: "Dick (Exotic)",
  22439. image: {
  22440. source: "./media/characters/artemis/dick-exotic.svg"
  22441. },
  22442. form: "oversize-load"
  22443. },
  22444. },
  22445. [
  22446. {
  22447. name: "Normal",
  22448. height: math.unit(7.5, "feet"),
  22449. form: "work-safe",
  22450. default: true
  22451. },
  22452. {
  22453. name: "Normal",
  22454. height: math.unit(7.5, "feet"),
  22455. form: "calibrating",
  22456. default: true
  22457. },
  22458. {
  22459. name: "Normal",
  22460. height: math.unit(7.5, "feet"),
  22461. form: "oversize-load",
  22462. default: true
  22463. },
  22464. {
  22465. name: "Enlarged",
  22466. height: math.unit(12, "feet"),
  22467. form: "work-safe",
  22468. },
  22469. {
  22470. name: "Enlarged",
  22471. height: math.unit(12, "feet"),
  22472. form: "calibrating",
  22473. },
  22474. {
  22475. name: "Enlarged",
  22476. height: math.unit(12, "feet"),
  22477. form: "oversize-load",
  22478. },
  22479. ],
  22480. {
  22481. "work-safe": {
  22482. name: "Work-Safe",
  22483. default: true
  22484. },
  22485. "calibrating": {
  22486. name: "Calibrating"
  22487. },
  22488. "oversize-load": {
  22489. name: "Oversize Load"
  22490. }
  22491. }
  22492. ))
  22493. characterMakers.push(() => makeCharacter(
  22494. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22495. {
  22496. front: {
  22497. height: math.unit(5 + 3 / 12, "feet"),
  22498. weight: math.unit(160, "lb"),
  22499. name: "Front",
  22500. image: {
  22501. source: "./media/characters/kira/front.svg",
  22502. extra: 906 / 786,
  22503. bottom: 0.01
  22504. }
  22505. },
  22506. back: {
  22507. height: math.unit(5 + 3 / 12, "feet"),
  22508. weight: math.unit(160, "lb"),
  22509. name: "Back",
  22510. image: {
  22511. source: "./media/characters/kira/back.svg",
  22512. extra: 882 / 757,
  22513. bottom: 0.005
  22514. }
  22515. },
  22516. frontDressed: {
  22517. height: math.unit(5 + 3 / 12, "feet"),
  22518. weight: math.unit(160, "lb"),
  22519. name: "Front (Dressed)",
  22520. image: {
  22521. source: "./media/characters/kira/front-dressed.svg",
  22522. extra: 906 / 786,
  22523. bottom: 0.01
  22524. }
  22525. },
  22526. beans: {
  22527. height: math.unit(0.92, "feet"),
  22528. name: "Beans",
  22529. image: {
  22530. source: "./media/characters/kira/beans.svg"
  22531. }
  22532. },
  22533. },
  22534. [
  22535. {
  22536. name: "Normal",
  22537. height: math.unit(5 + 3 / 12, "feet"),
  22538. default: true
  22539. },
  22540. ]
  22541. ))
  22542. characterMakers.push(() => makeCharacter(
  22543. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22544. {
  22545. front: {
  22546. height: math.unit(5 + 4 / 12, "feet"),
  22547. weight: math.unit(145, "lb"),
  22548. name: "Front",
  22549. image: {
  22550. source: "./media/characters/scramble/front.svg",
  22551. extra: 763 / 727,
  22552. bottom: 0.05
  22553. }
  22554. },
  22555. back: {
  22556. height: math.unit(5 + 4 / 12, "feet"),
  22557. weight: math.unit(145, "lb"),
  22558. name: "Back",
  22559. image: {
  22560. source: "./media/characters/scramble/back.svg",
  22561. extra: 826 / 737,
  22562. bottom: 0.002
  22563. }
  22564. },
  22565. },
  22566. [
  22567. {
  22568. name: "Normal",
  22569. height: math.unit(5 + 4 / 12, "feet"),
  22570. default: true
  22571. },
  22572. ]
  22573. ))
  22574. characterMakers.push(() => makeCharacter(
  22575. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22576. {
  22577. side: {
  22578. height: math.unit(6 + 2 / 12, "feet"),
  22579. weight: math.unit(190, "lb"),
  22580. name: "Side",
  22581. image: {
  22582. source: "./media/characters/biscuit/side.svg",
  22583. extra: 858 / 791,
  22584. bottom: 0.044
  22585. }
  22586. },
  22587. },
  22588. [
  22589. {
  22590. name: "Normal",
  22591. height: math.unit(6 + 2 / 12, "feet"),
  22592. default: true
  22593. },
  22594. ]
  22595. ))
  22596. characterMakers.push(() => makeCharacter(
  22597. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22598. {
  22599. front: {
  22600. height: math.unit(5 + 2 / 12, "feet"),
  22601. weight: math.unit(120, "lb"),
  22602. name: "Front",
  22603. image: {
  22604. source: "./media/characters/poffin/front.svg",
  22605. extra: 786 / 680,
  22606. bottom: 0.005
  22607. }
  22608. },
  22609. },
  22610. [
  22611. {
  22612. name: "Normal",
  22613. height: math.unit(5 + 2 / 12, "feet"),
  22614. default: true
  22615. },
  22616. ]
  22617. ))
  22618. characterMakers.push(() => makeCharacter(
  22619. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22620. {
  22621. front: {
  22622. height: math.unit(6 + 3 / 12, "feet"),
  22623. weight: math.unit(519, "lb"),
  22624. name: "Front",
  22625. image: {
  22626. source: "./media/characters/dhari/front.svg",
  22627. extra: 1048 / 946,
  22628. bottom: 0.015
  22629. }
  22630. },
  22631. back: {
  22632. height: math.unit(6 + 3 / 12, "feet"),
  22633. weight: math.unit(519, "lb"),
  22634. name: "Back",
  22635. image: {
  22636. source: "./media/characters/dhari/back.svg",
  22637. extra: 1048 / 931,
  22638. bottom: 0.005
  22639. }
  22640. },
  22641. frontDressed: {
  22642. height: math.unit(6 + 3 / 12, "feet"),
  22643. weight: math.unit(519, "lb"),
  22644. name: "Front (Dressed)",
  22645. image: {
  22646. source: "./media/characters/dhari/front-dressed.svg",
  22647. extra: 1713 / 1546,
  22648. bottom: 0.02
  22649. }
  22650. },
  22651. backDressed: {
  22652. height: math.unit(6 + 3 / 12, "feet"),
  22653. weight: math.unit(519, "lb"),
  22654. name: "Back (Dressed)",
  22655. image: {
  22656. source: "./media/characters/dhari/back-dressed.svg",
  22657. extra: 1699 / 1537,
  22658. bottom: 0.01
  22659. }
  22660. },
  22661. maw: {
  22662. height: math.unit(0.95, "feet"),
  22663. name: "Maw",
  22664. image: {
  22665. source: "./media/characters/dhari/maw.svg"
  22666. }
  22667. },
  22668. wereFront: {
  22669. height: math.unit(12 + 8 / 12, "feet"),
  22670. weight: math.unit(4000, "lb"),
  22671. name: "Front (Were)",
  22672. image: {
  22673. source: "./media/characters/dhari/were-front.svg",
  22674. extra: 1065 / 969,
  22675. bottom: 0.015
  22676. }
  22677. },
  22678. wereBack: {
  22679. height: math.unit(12 + 8 / 12, "feet"),
  22680. weight: math.unit(4000, "lb"),
  22681. name: "Back (Were)",
  22682. image: {
  22683. source: "./media/characters/dhari/were-back.svg",
  22684. extra: 1065 / 969,
  22685. bottom: 0.012
  22686. }
  22687. },
  22688. wereMaw: {
  22689. height: math.unit(0.625, "meters"),
  22690. name: "Maw (Were)",
  22691. image: {
  22692. source: "./media/characters/dhari/were-maw.svg"
  22693. }
  22694. },
  22695. },
  22696. [
  22697. {
  22698. name: "Normal",
  22699. height: math.unit(6 + 3 / 12, "feet"),
  22700. default: true
  22701. },
  22702. ]
  22703. ))
  22704. characterMakers.push(() => makeCharacter(
  22705. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22706. {
  22707. anthro: {
  22708. height: math.unit(5 + 7 / 12, "feet"),
  22709. weight: math.unit(175, "lb"),
  22710. name: "Anthro",
  22711. image: {
  22712. source: "./media/characters/rena-dyne/anthro.svg",
  22713. extra: 1849 / 1785,
  22714. bottom: 0.005
  22715. }
  22716. },
  22717. taur: {
  22718. height: math.unit(15 + 6 / 12, "feet"),
  22719. weight: math.unit(8000, "lb"),
  22720. name: "Taur",
  22721. image: {
  22722. source: "./media/characters/rena-dyne/taur.svg",
  22723. extra: 2315 / 2234,
  22724. bottom: 0.033
  22725. }
  22726. },
  22727. },
  22728. [
  22729. {
  22730. name: "Normal",
  22731. height: math.unit(5 + 7 / 12, "feet"),
  22732. default: true
  22733. },
  22734. ]
  22735. ))
  22736. characterMakers.push(() => makeCharacter(
  22737. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22738. {
  22739. front: {
  22740. height: math.unit(8, "feet"),
  22741. weight: math.unit(600, "lb"),
  22742. name: "Front",
  22743. image: {
  22744. source: "./media/characters/weremeep/front.svg",
  22745. extra: 970/849,
  22746. bottom: 7/977
  22747. }
  22748. },
  22749. },
  22750. [
  22751. {
  22752. name: "Normal",
  22753. height: math.unit(8, "feet"),
  22754. default: true
  22755. },
  22756. {
  22757. name: "Lorg",
  22758. height: math.unit(12, "feet")
  22759. },
  22760. {
  22761. name: "Oh Lawd She Comin'",
  22762. height: math.unit(20, "feet")
  22763. },
  22764. ]
  22765. ))
  22766. characterMakers.push(() => makeCharacter(
  22767. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22768. {
  22769. front: {
  22770. height: math.unit(4, "feet"),
  22771. weight: math.unit(90, "lb"),
  22772. name: "Front",
  22773. image: {
  22774. source: "./media/characters/reza/front.svg",
  22775. extra: 1183 / 1111,
  22776. bottom: 0.017
  22777. }
  22778. },
  22779. back: {
  22780. height: math.unit(4, "feet"),
  22781. weight: math.unit(90, "lb"),
  22782. name: "Back",
  22783. image: {
  22784. source: "./media/characters/reza/back.svg",
  22785. extra: 1183 / 1111,
  22786. bottom: 0.01
  22787. }
  22788. },
  22789. drake: {
  22790. height: math.unit(30, "feet"),
  22791. weight: math.unit(246960, "lb"),
  22792. name: "Drake",
  22793. image: {
  22794. source: "./media/characters/reza/drake.svg",
  22795. extra: 2350 / 2024,
  22796. bottom: 60.7 / 2403
  22797. }
  22798. },
  22799. },
  22800. [
  22801. {
  22802. name: "Normal",
  22803. height: math.unit(4, "feet"),
  22804. default: true
  22805. },
  22806. ]
  22807. ))
  22808. characterMakers.push(() => makeCharacter(
  22809. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22810. {
  22811. side: {
  22812. height: math.unit(15, "feet"),
  22813. weight: math.unit(14, "tons"),
  22814. name: "Side",
  22815. image: {
  22816. source: "./media/characters/athea/side.svg",
  22817. extra: 960 / 540,
  22818. bottom: 0.003
  22819. }
  22820. },
  22821. sitting: {
  22822. height: math.unit(6 * 2.85, "feet"),
  22823. weight: math.unit(14, "tons"),
  22824. name: "Sitting",
  22825. image: {
  22826. source: "./media/characters/athea/sitting.svg",
  22827. extra: 621 / 581,
  22828. bottom: 0.075
  22829. }
  22830. },
  22831. maw: {
  22832. height: math.unit(7.59498031496063, "feet"),
  22833. name: "Maw",
  22834. image: {
  22835. source: "./media/characters/athea/maw.svg"
  22836. }
  22837. },
  22838. },
  22839. [
  22840. {
  22841. name: "Lap Cat",
  22842. height: math.unit(2.5, "feet")
  22843. },
  22844. {
  22845. name: "Minimacro",
  22846. height: math.unit(15, "feet"),
  22847. default: true
  22848. },
  22849. {
  22850. name: "Macro",
  22851. height: math.unit(120, "feet")
  22852. },
  22853. {
  22854. name: "Macro+",
  22855. height: math.unit(640, "feet")
  22856. },
  22857. {
  22858. name: "Colossus",
  22859. height: math.unit(2.2, "miles")
  22860. },
  22861. ]
  22862. ))
  22863. characterMakers.push(() => makeCharacter(
  22864. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22865. {
  22866. front: {
  22867. height: math.unit(8 + 8 / 12, "feet"),
  22868. weight: math.unit(130, "kg"),
  22869. name: "Front",
  22870. image: {
  22871. source: "./media/characters/seroko/front.svg",
  22872. extra: 1385 / 1280,
  22873. bottom: 0.025
  22874. }
  22875. },
  22876. back: {
  22877. height: math.unit(8 + 8 / 12, "feet"),
  22878. weight: math.unit(130, "kg"),
  22879. name: "Back",
  22880. image: {
  22881. source: "./media/characters/seroko/back.svg",
  22882. extra: 1369 / 1238,
  22883. bottom: 0.018
  22884. }
  22885. },
  22886. frontDressed: {
  22887. height: math.unit(8 + 8 / 12, "feet"),
  22888. weight: math.unit(130, "kg"),
  22889. name: "Front (Dressed)",
  22890. image: {
  22891. source: "./media/characters/seroko/front-dressed.svg",
  22892. extra: 1366 / 1275,
  22893. bottom: 0.03
  22894. }
  22895. },
  22896. },
  22897. [
  22898. {
  22899. name: "Normal",
  22900. height: math.unit(8 + 8 / 12, "feet"),
  22901. default: true
  22902. },
  22903. ]
  22904. ))
  22905. characterMakers.push(() => makeCharacter(
  22906. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22907. {
  22908. front: {
  22909. height: math.unit(5.5, "feet"),
  22910. weight: math.unit(160, "lb"),
  22911. name: "Front",
  22912. image: {
  22913. source: "./media/characters/quatzi/front.svg",
  22914. extra: 2346 / 2242,
  22915. bottom: 0.015
  22916. }
  22917. },
  22918. },
  22919. [
  22920. {
  22921. name: "Normal",
  22922. height: math.unit(5.5, "feet"),
  22923. default: true
  22924. },
  22925. {
  22926. name: "Big",
  22927. height: math.unit(7.7, "feet")
  22928. },
  22929. ]
  22930. ))
  22931. characterMakers.push(() => makeCharacter(
  22932. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22933. {
  22934. front: {
  22935. height: math.unit(5 + 11 / 12, "feet"),
  22936. weight: math.unit(180, "lb"),
  22937. name: "Front",
  22938. image: {
  22939. source: "./media/characters/sen/front.svg",
  22940. extra: 1321 / 1254,
  22941. bottom: 0.015
  22942. }
  22943. },
  22944. side: {
  22945. height: math.unit(5 + 11 / 12, "feet"),
  22946. weight: math.unit(180, "lb"),
  22947. name: "Side",
  22948. image: {
  22949. source: "./media/characters/sen/side.svg",
  22950. extra: 1321 / 1254,
  22951. bottom: 0.007
  22952. }
  22953. },
  22954. back: {
  22955. height: math.unit(5 + 11 / 12, "feet"),
  22956. weight: math.unit(180, "lb"),
  22957. name: "Back",
  22958. image: {
  22959. source: "./media/characters/sen/back.svg",
  22960. extra: 1321 / 1254
  22961. }
  22962. },
  22963. },
  22964. [
  22965. {
  22966. name: "Normal",
  22967. height: math.unit(5 + 11 / 12, "feet"),
  22968. default: true
  22969. },
  22970. ]
  22971. ))
  22972. characterMakers.push(() => makeCharacter(
  22973. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22974. {
  22975. front: {
  22976. height: math.unit(166.6, "cm"),
  22977. weight: math.unit(66.6, "kg"),
  22978. name: "Front",
  22979. image: {
  22980. source: "./media/characters/fruity/front.svg",
  22981. extra: 1510 / 1386,
  22982. bottom: 0.04
  22983. }
  22984. },
  22985. back: {
  22986. height: math.unit(166.6, "cm"),
  22987. weight: math.unit(66.6, "lb"),
  22988. name: "Back",
  22989. image: {
  22990. source: "./media/characters/fruity/back.svg",
  22991. extra: 1563 / 1435,
  22992. bottom: 0.005
  22993. }
  22994. },
  22995. },
  22996. [
  22997. {
  22998. name: "Normal",
  22999. height: math.unit(166.6, "cm"),
  23000. default: true
  23001. },
  23002. {
  23003. name: "Demonic",
  23004. height: math.unit(166.6, "feet")
  23005. },
  23006. ]
  23007. ))
  23008. characterMakers.push(() => makeCharacter(
  23009. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23010. {
  23011. side: {
  23012. height: math.unit(10, "feet"),
  23013. weight: math.unit(500, "lb"),
  23014. name: "Side",
  23015. image: {
  23016. source: "./media/characters/zost/side.svg",
  23017. extra: 2870/2533,
  23018. bottom: 252/3122
  23019. }
  23020. },
  23021. mawFront: {
  23022. height: math.unit(1.08, "meters"),
  23023. name: "Maw (Front)",
  23024. image: {
  23025. source: "./media/characters/zost/maw-front.svg"
  23026. }
  23027. },
  23028. mawSide: {
  23029. height: math.unit(2.66, "feet"),
  23030. name: "Maw (Side)",
  23031. image: {
  23032. source: "./media/characters/zost/maw-side.svg"
  23033. }
  23034. },
  23035. wingspan: {
  23036. height: math.unit(7.4, "feet"),
  23037. name: "Wingspan",
  23038. image: {
  23039. source: "./media/characters/zost/wingspan.svg"
  23040. }
  23041. },
  23042. },
  23043. [
  23044. {
  23045. name: "Normal",
  23046. height: math.unit(10, "feet"),
  23047. default: true
  23048. },
  23049. ]
  23050. ))
  23051. characterMakers.push(() => makeCharacter(
  23052. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23053. {
  23054. front: {
  23055. height: math.unit(5 + 4 / 12, "feet"),
  23056. weight: math.unit(120, "lb"),
  23057. name: "Front",
  23058. image: {
  23059. source: "./media/characters/luci/front.svg",
  23060. extra: 1985 / 1884,
  23061. bottom: 0.04
  23062. }
  23063. },
  23064. back: {
  23065. height: math.unit(5 + 4 / 12, "feet"),
  23066. weight: math.unit(120, "lb"),
  23067. name: "Back",
  23068. image: {
  23069. source: "./media/characters/luci/back.svg",
  23070. extra: 1892 / 1791,
  23071. bottom: 0.002
  23072. }
  23073. },
  23074. },
  23075. [
  23076. {
  23077. name: "Normal",
  23078. height: math.unit(5 + 4 / 12, "feet"),
  23079. default: true
  23080. },
  23081. ]
  23082. ))
  23083. characterMakers.push(() => makeCharacter(
  23084. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23085. {
  23086. front: {
  23087. height: math.unit(1500, "feet"),
  23088. weight: math.unit(3.8e6, "tons"),
  23089. name: "Front",
  23090. image: {
  23091. source: "./media/characters/2th/front.svg",
  23092. extra: 3489 / 3350,
  23093. bottom: 0.1
  23094. }
  23095. },
  23096. foot: {
  23097. height: math.unit(461, "feet"),
  23098. name: "Foot",
  23099. image: {
  23100. source: "./media/characters/2th/foot.svg"
  23101. }
  23102. },
  23103. },
  23104. [
  23105. {
  23106. name: "\"Micro\"",
  23107. height: math.unit(15 + 7 / 12, "feet")
  23108. },
  23109. {
  23110. name: "Normal",
  23111. height: math.unit(1500, "feet"),
  23112. default: true
  23113. },
  23114. {
  23115. name: "Macro",
  23116. height: math.unit(5000, "feet")
  23117. },
  23118. {
  23119. name: "Megamacro",
  23120. height: math.unit(15, "miles")
  23121. },
  23122. {
  23123. name: "Gigamacro",
  23124. height: math.unit(4000, "miles")
  23125. },
  23126. {
  23127. name: "Galactic",
  23128. height: math.unit(50, "AU")
  23129. },
  23130. ]
  23131. ))
  23132. characterMakers.push(() => makeCharacter(
  23133. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23134. {
  23135. front: {
  23136. height: math.unit(5 + 6 / 12, "feet"),
  23137. weight: math.unit(220, "lb"),
  23138. name: "Front",
  23139. image: {
  23140. source: "./media/characters/amethyst/front.svg",
  23141. extra: 2078 / 2040,
  23142. bottom: 0.045
  23143. }
  23144. },
  23145. back: {
  23146. height: math.unit(5 + 6 / 12, "feet"),
  23147. weight: math.unit(220, "lb"),
  23148. name: "Back",
  23149. image: {
  23150. source: "./media/characters/amethyst/back.svg",
  23151. extra: 2021 / 1989,
  23152. bottom: 0.02
  23153. }
  23154. },
  23155. },
  23156. [
  23157. {
  23158. name: "Normal",
  23159. height: math.unit(5 + 6 / 12, "feet"),
  23160. default: true
  23161. },
  23162. ]
  23163. ))
  23164. characterMakers.push(() => makeCharacter(
  23165. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23166. {
  23167. front: {
  23168. height: math.unit(4 + 11 / 12, "feet"),
  23169. weight: math.unit(120, "lb"),
  23170. name: "Front",
  23171. image: {
  23172. source: "./media/characters/yumi-akiyama/front.svg",
  23173. extra: 1327 / 1235,
  23174. bottom: 0.02
  23175. }
  23176. },
  23177. back: {
  23178. height: math.unit(4 + 11 / 12, "feet"),
  23179. weight: math.unit(120, "lb"),
  23180. name: "Back",
  23181. image: {
  23182. source: "./media/characters/yumi-akiyama/back.svg",
  23183. extra: 1287 / 1245,
  23184. bottom: 0.002
  23185. }
  23186. },
  23187. },
  23188. [
  23189. {
  23190. name: "Galactic",
  23191. height: math.unit(50, "galaxies"),
  23192. default: true
  23193. },
  23194. {
  23195. name: "Universal",
  23196. height: math.unit(100, "universes")
  23197. },
  23198. ]
  23199. ))
  23200. characterMakers.push(() => makeCharacter(
  23201. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23202. {
  23203. front: {
  23204. height: math.unit(8, "feet"),
  23205. weight: math.unit(500, "lb"),
  23206. name: "Front",
  23207. image: {
  23208. source: "./media/characters/rifter-yrmori/front.svg",
  23209. extra: 1180 / 1125,
  23210. bottom: 0.02
  23211. }
  23212. },
  23213. back: {
  23214. height: math.unit(8, "feet"),
  23215. weight: math.unit(500, "lb"),
  23216. name: "Back",
  23217. image: {
  23218. source: "./media/characters/rifter-yrmori/back.svg",
  23219. extra: 1190 / 1145,
  23220. bottom: 0.001
  23221. }
  23222. },
  23223. wings: {
  23224. height: math.unit(7.75, "feet"),
  23225. weight: math.unit(500, "lb"),
  23226. name: "Wings",
  23227. image: {
  23228. source: "./media/characters/rifter-yrmori/wings.svg",
  23229. extra: 1357 / 1285
  23230. }
  23231. },
  23232. maw: {
  23233. height: math.unit(0.8, "feet"),
  23234. name: "Maw",
  23235. image: {
  23236. source: "./media/characters/rifter-yrmori/maw.svg"
  23237. }
  23238. },
  23239. mawfront: {
  23240. height: math.unit(1.45, "feet"),
  23241. name: "Maw (Front)",
  23242. image: {
  23243. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23244. }
  23245. },
  23246. },
  23247. [
  23248. {
  23249. name: "Normal",
  23250. height: math.unit(8, "feet"),
  23251. default: true
  23252. },
  23253. {
  23254. name: "Macro",
  23255. height: math.unit(42, "meters")
  23256. },
  23257. ]
  23258. ))
  23259. characterMakers.push(() => makeCharacter(
  23260. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23261. {
  23262. were: {
  23263. height: math.unit(25 + 6 / 12, "feet"),
  23264. weight: math.unit(10000, "lb"),
  23265. name: "Were",
  23266. image: {
  23267. source: "./media/characters/tahajin/were.svg",
  23268. extra: 801 / 770,
  23269. bottom: 0.042
  23270. }
  23271. },
  23272. aquatic: {
  23273. height: math.unit(6 + 4 / 12, "feet"),
  23274. weight: math.unit(160, "lb"),
  23275. name: "Aquatic",
  23276. image: {
  23277. source: "./media/characters/tahajin/aquatic.svg",
  23278. extra: 572 / 542,
  23279. bottom: 0.04
  23280. }
  23281. },
  23282. chow: {
  23283. height: math.unit(8 + 11 / 12, "feet"),
  23284. weight: math.unit(450, "lb"),
  23285. name: "Chow",
  23286. image: {
  23287. source: "./media/characters/tahajin/chow.svg",
  23288. extra: 660 / 640,
  23289. bottom: 0.015
  23290. }
  23291. },
  23292. demiNaga: {
  23293. height: math.unit(6 + 8 / 12, "feet"),
  23294. weight: math.unit(300, "lb"),
  23295. name: "Demi Naga",
  23296. image: {
  23297. source: "./media/characters/tahajin/demi-naga.svg",
  23298. extra: 643 / 615,
  23299. bottom: 0.1
  23300. }
  23301. },
  23302. data: {
  23303. height: math.unit(5, "inches"),
  23304. weight: math.unit(0.1, "lb"),
  23305. name: "Data",
  23306. image: {
  23307. source: "./media/characters/tahajin/data.svg"
  23308. }
  23309. },
  23310. fluu: {
  23311. height: math.unit(5 + 7 / 12, "feet"),
  23312. weight: math.unit(140, "lb"),
  23313. name: "Fluu",
  23314. image: {
  23315. source: "./media/characters/tahajin/fluu.svg",
  23316. extra: 628 / 592,
  23317. bottom: 0.02
  23318. }
  23319. },
  23320. starWarrior: {
  23321. height: math.unit(4 + 5 / 12, "feet"),
  23322. weight: math.unit(50, "lb"),
  23323. name: "Star Warrior",
  23324. image: {
  23325. source: "./media/characters/tahajin/star-warrior.svg"
  23326. }
  23327. },
  23328. },
  23329. [
  23330. {
  23331. name: "Normal",
  23332. height: math.unit(25 + 6 / 12, "feet"),
  23333. default: true
  23334. },
  23335. ]
  23336. ))
  23337. characterMakers.push(() => makeCharacter(
  23338. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23339. {
  23340. front: {
  23341. height: math.unit(8, "feet"),
  23342. weight: math.unit(350, "lb"),
  23343. name: "Front",
  23344. image: {
  23345. source: "./media/characters/gabira/front.svg",
  23346. extra: 1261/1154,
  23347. bottom: 51/1312
  23348. }
  23349. },
  23350. back: {
  23351. height: math.unit(8, "feet"),
  23352. weight: math.unit(350, "lb"),
  23353. name: "Back",
  23354. image: {
  23355. source: "./media/characters/gabira/back.svg",
  23356. extra: 1265/1163,
  23357. bottom: 46/1311
  23358. }
  23359. },
  23360. head: {
  23361. height: math.unit(2.85, "feet"),
  23362. name: "Head",
  23363. image: {
  23364. source: "./media/characters/gabira/head.svg"
  23365. }
  23366. },
  23367. },
  23368. [
  23369. {
  23370. name: "Normal",
  23371. height: math.unit(8, "feet"),
  23372. default: true
  23373. },
  23374. ]
  23375. ))
  23376. characterMakers.push(() => makeCharacter(
  23377. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23378. {
  23379. front: {
  23380. height: math.unit(5 + 3 / 12, "feet"),
  23381. weight: math.unit(137, "lb"),
  23382. name: "Front",
  23383. image: {
  23384. source: "./media/characters/sasha-katraine/front.svg",
  23385. extra: 1745/1694,
  23386. bottom: 37/1782
  23387. }
  23388. },
  23389. back: {
  23390. height: math.unit(5 + 3 / 12, "feet"),
  23391. weight: math.unit(137, "lb"),
  23392. name: "Back",
  23393. image: {
  23394. source: "./media/characters/sasha-katraine/back.svg",
  23395. extra: 1776/1699,
  23396. bottom: 26/1802
  23397. }
  23398. },
  23399. },
  23400. [
  23401. {
  23402. name: "Micro",
  23403. height: math.unit(5, "inches")
  23404. },
  23405. {
  23406. name: "Normal",
  23407. height: math.unit(5 + 3 / 12, "feet"),
  23408. default: true
  23409. },
  23410. ]
  23411. ))
  23412. characterMakers.push(() => makeCharacter(
  23413. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23414. {
  23415. side: {
  23416. height: math.unit(4, "inches"),
  23417. weight: math.unit(200, "grams"),
  23418. name: "Side",
  23419. image: {
  23420. source: "./media/characters/der/side.svg",
  23421. extra: 719 / 400,
  23422. bottom: 30.6 / 749.9187
  23423. }
  23424. },
  23425. },
  23426. [
  23427. {
  23428. name: "Micro",
  23429. height: math.unit(4, "inches"),
  23430. default: true
  23431. },
  23432. ]
  23433. ))
  23434. characterMakers.push(() => makeCharacter(
  23435. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23436. {
  23437. side: {
  23438. height: math.unit(30, "meters"),
  23439. weight: math.unit(700, "tonnes"),
  23440. name: "Side",
  23441. image: {
  23442. source: "./media/characters/fixerdragon/side.svg",
  23443. extra: (1293.0514 - 116.03) / 1106.86,
  23444. bottom: 116.03 / 1293.0514
  23445. }
  23446. },
  23447. },
  23448. [
  23449. {
  23450. name: "Planck",
  23451. height: math.unit(1.6e-35, "meters")
  23452. },
  23453. {
  23454. name: "Micro",
  23455. height: math.unit(0.4, "meters")
  23456. },
  23457. {
  23458. name: "Normal",
  23459. height: math.unit(30, "meters"),
  23460. default: true
  23461. },
  23462. {
  23463. name: "Megamacro",
  23464. height: math.unit(1.2, "megameters")
  23465. },
  23466. {
  23467. name: "Teramacro",
  23468. height: math.unit(130, "terameters")
  23469. },
  23470. {
  23471. name: "Yottamacro",
  23472. height: math.unit(6200, "yottameters")
  23473. },
  23474. ]
  23475. ));
  23476. characterMakers.push(() => makeCharacter(
  23477. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23478. {
  23479. front: {
  23480. height: math.unit(8, "feet"),
  23481. weight: math.unit(250, "lb"),
  23482. name: "Front",
  23483. image: {
  23484. source: "./media/characters/kite/front.svg",
  23485. extra: 2796 / 2659,
  23486. bottom: 0.002
  23487. }
  23488. },
  23489. },
  23490. [
  23491. {
  23492. name: "Normal",
  23493. height: math.unit(8, "feet"),
  23494. default: true
  23495. },
  23496. {
  23497. name: "Macro",
  23498. height: math.unit(360, "feet")
  23499. },
  23500. {
  23501. name: "Megamacro",
  23502. height: math.unit(1500, "feet")
  23503. },
  23504. ]
  23505. ))
  23506. characterMakers.push(() => makeCharacter(
  23507. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23508. {
  23509. front: {
  23510. height: math.unit(5 + 11/12, "feet"),
  23511. weight: math.unit(170, "lb"),
  23512. name: "Front",
  23513. image: {
  23514. source: "./media/characters/poojawa-vynar/front.svg",
  23515. extra: 1735/1585,
  23516. bottom: 96/1831
  23517. }
  23518. },
  23519. back: {
  23520. height: math.unit(5 + 11/12, "feet"),
  23521. weight: math.unit(170, "lb"),
  23522. name: "Back",
  23523. image: {
  23524. source: "./media/characters/poojawa-vynar/back.svg",
  23525. extra: 1749/1607,
  23526. bottom: 28/1777
  23527. }
  23528. },
  23529. male: {
  23530. height: math.unit(5 + 11/12, "feet"),
  23531. weight: math.unit(170, "lb"),
  23532. name: "Male",
  23533. image: {
  23534. source: "./media/characters/poojawa-vynar/male.svg",
  23535. extra: 1855/1713,
  23536. bottom: 63/1918
  23537. }
  23538. },
  23539. taur: {
  23540. height: math.unit(5 + 11/12, "feet"),
  23541. weight: math.unit(170, "lb"),
  23542. name: "Taur",
  23543. image: {
  23544. source: "./media/characters/poojawa-vynar/taur.svg",
  23545. extra: 1151/1059,
  23546. bottom: 356/1507
  23547. }
  23548. },
  23549. frontDressed: {
  23550. height: math.unit(5 + 11/12, "feet"),
  23551. weight: math.unit(170, "lb"),
  23552. name: "Front (Dressed)",
  23553. image: {
  23554. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23555. extra: 1735/1585,
  23556. bottom: 96/1831
  23557. }
  23558. },
  23559. backDressed: {
  23560. height: math.unit(5 + 11/12, "feet"),
  23561. weight: math.unit(170, "lb"),
  23562. name: "Back (Dressed)",
  23563. image: {
  23564. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23565. extra: 1749/1607,
  23566. bottom: 28/1777
  23567. }
  23568. },
  23569. maleDressed: {
  23570. height: math.unit(5 + 11/12, "feet"),
  23571. weight: math.unit(170, "lb"),
  23572. name: "Male (Dressed)",
  23573. image: {
  23574. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23575. extra: 1855/1713,
  23576. bottom: 63/1918
  23577. }
  23578. },
  23579. taurDressed: {
  23580. height: math.unit(5 + 11/12, "feet"),
  23581. weight: math.unit(170, "lb"),
  23582. name: "Taur (Dressed)",
  23583. image: {
  23584. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23585. extra: 1151/1059,
  23586. bottom: 356/1507
  23587. }
  23588. },
  23589. maw: {
  23590. height: math.unit(1.46, "feet"),
  23591. name: "Maw",
  23592. image: {
  23593. source: "./media/characters/poojawa-vynar/maw.svg"
  23594. }
  23595. },
  23596. head: {
  23597. height: math.unit(2.34, "feet"),
  23598. name: "Head",
  23599. image: {
  23600. source: "./media/characters/poojawa-vynar/head.svg"
  23601. }
  23602. },
  23603. paw: {
  23604. height: math.unit(1.61, "feet"),
  23605. name: "Paw",
  23606. image: {
  23607. source: "./media/characters/poojawa-vynar/paw.svg"
  23608. }
  23609. },
  23610. pawToering: {
  23611. height: math.unit(1.72, "feet"),
  23612. name: "Paw (Toering)",
  23613. image: {
  23614. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23615. }
  23616. },
  23617. toering: {
  23618. height: math.unit(2.9, "inches"),
  23619. name: "Toering",
  23620. image: {
  23621. source: "./media/characters/poojawa-vynar/toering.svg"
  23622. }
  23623. },
  23624. shaft: {
  23625. height: math.unit(0.625, "feet"),
  23626. name: "Shaft",
  23627. image: {
  23628. source: "./media/characters/poojawa-vynar/shaft.svg"
  23629. }
  23630. },
  23631. spade: {
  23632. height: math.unit(0.42, "feet"),
  23633. name: "Spade",
  23634. image: {
  23635. source: "./media/characters/poojawa-vynar/spade.svg"
  23636. }
  23637. },
  23638. },
  23639. [
  23640. {
  23641. name: "Shortstack",
  23642. height: math.unit(4, "feet")
  23643. },
  23644. {
  23645. name: "Normal",
  23646. height: math.unit(5 + 11 / 12, "feet"),
  23647. default: true
  23648. },
  23649. {
  23650. name: "Tauric",
  23651. height: math.unit(4, "meters")
  23652. },
  23653. ]
  23654. ))
  23655. characterMakers.push(() => makeCharacter(
  23656. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23657. {
  23658. front: {
  23659. height: math.unit(293, "meters"),
  23660. weight: math.unit(70400, "tons"),
  23661. name: "Front",
  23662. image: {
  23663. source: "./media/characters/violette/front.svg",
  23664. extra: 1227 / 1180,
  23665. bottom: 0.005
  23666. }
  23667. },
  23668. back: {
  23669. height: math.unit(293, "meters"),
  23670. weight: math.unit(70400, "tons"),
  23671. name: "Back",
  23672. image: {
  23673. source: "./media/characters/violette/back.svg",
  23674. extra: 1227 / 1180,
  23675. bottom: 0.005
  23676. }
  23677. },
  23678. },
  23679. [
  23680. {
  23681. name: "Macro",
  23682. height: math.unit(293, "meters"),
  23683. default: true
  23684. },
  23685. ]
  23686. ))
  23687. characterMakers.push(() => makeCharacter(
  23688. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23689. {
  23690. front: {
  23691. height: math.unit(1050, "feet"),
  23692. weight: math.unit(200000, "tons"),
  23693. name: "Front",
  23694. image: {
  23695. source: "./media/characters/alessandra/front.svg",
  23696. extra: 960 / 912,
  23697. bottom: 0.06
  23698. }
  23699. },
  23700. },
  23701. [
  23702. {
  23703. name: "Macro",
  23704. height: math.unit(1050, "feet")
  23705. },
  23706. {
  23707. name: "Macro+",
  23708. height: math.unit(900, "meters"),
  23709. default: true
  23710. },
  23711. ]
  23712. ))
  23713. characterMakers.push(() => makeCharacter(
  23714. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23715. {
  23716. front: {
  23717. height: math.unit(5, "feet"),
  23718. weight: math.unit(187, "lb"),
  23719. name: "Front",
  23720. image: {
  23721. source: "./media/characters/person/front.svg",
  23722. extra: 3087 / 2945,
  23723. bottom: 91 / 3181
  23724. }
  23725. },
  23726. },
  23727. [
  23728. {
  23729. name: "Micro",
  23730. height: math.unit(3, "inches")
  23731. },
  23732. {
  23733. name: "Normal",
  23734. height: math.unit(5, "feet"),
  23735. default: true
  23736. },
  23737. {
  23738. name: "Macro",
  23739. height: math.unit(90, "feet")
  23740. },
  23741. {
  23742. name: "Max Size",
  23743. height: math.unit(280, "feet")
  23744. },
  23745. ]
  23746. ))
  23747. characterMakers.push(() => makeCharacter(
  23748. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23749. {
  23750. front: {
  23751. height: math.unit(4.5, "meters"),
  23752. weight: math.unit(3200, "lb"),
  23753. name: "Front",
  23754. image: {
  23755. source: "./media/characters/ty/front.svg",
  23756. extra: 1038 / 960,
  23757. bottom: 31.156 / 1068
  23758. }
  23759. },
  23760. back: {
  23761. height: math.unit(4.5, "meters"),
  23762. weight: math.unit(3200, "lb"),
  23763. name: "Back",
  23764. image: {
  23765. source: "./media/characters/ty/back.svg",
  23766. extra: 1044 / 966,
  23767. bottom: 7.48 / 1049
  23768. }
  23769. },
  23770. },
  23771. [
  23772. {
  23773. name: "Normal",
  23774. height: math.unit(4.5, "meters"),
  23775. default: true
  23776. },
  23777. ]
  23778. ))
  23779. characterMakers.push(() => makeCharacter(
  23780. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23781. {
  23782. front: {
  23783. height: math.unit(5 + 4 / 12, "feet"),
  23784. weight: math.unit(115, "lb"),
  23785. name: "Front",
  23786. image: {
  23787. source: "./media/characters/rocky/front.svg",
  23788. extra: 1012 / 975,
  23789. bottom: 54 / 1066
  23790. }
  23791. },
  23792. },
  23793. [
  23794. {
  23795. name: "Normal",
  23796. height: math.unit(5 + 4 / 12, "feet"),
  23797. default: true
  23798. },
  23799. ]
  23800. ))
  23801. characterMakers.push(() => makeCharacter(
  23802. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23803. {
  23804. upright: {
  23805. height: math.unit(6, "meters"),
  23806. weight: math.unit(4000, "kg"),
  23807. name: "Upright",
  23808. image: {
  23809. source: "./media/characters/ruin/upright.svg",
  23810. extra: 668 / 661,
  23811. bottom: 42 / 799.8396
  23812. }
  23813. },
  23814. },
  23815. [
  23816. {
  23817. name: "Normal",
  23818. height: math.unit(6, "meters"),
  23819. default: true
  23820. },
  23821. ]
  23822. ))
  23823. characterMakers.push(() => makeCharacter(
  23824. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23825. {
  23826. front: {
  23827. height: math.unit(5, "feet"),
  23828. weight: math.unit(106, "lb"),
  23829. name: "Front",
  23830. image: {
  23831. source: "./media/characters/robin/front.svg",
  23832. extra: 862 / 799,
  23833. bottom: 42.4 / 914.8856
  23834. }
  23835. },
  23836. },
  23837. [
  23838. {
  23839. name: "Normal",
  23840. height: math.unit(5, "feet"),
  23841. default: true
  23842. },
  23843. ]
  23844. ))
  23845. characterMakers.push(() => makeCharacter(
  23846. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23847. {
  23848. side: {
  23849. height: math.unit(3, "feet"),
  23850. weight: math.unit(225, "lb"),
  23851. name: "Side",
  23852. image: {
  23853. source: "./media/characters/saian/side.svg",
  23854. extra: 566 / 356,
  23855. bottom: 79.7 / 643
  23856. }
  23857. },
  23858. maw: {
  23859. height: math.unit(2.85, "feet"),
  23860. name: "Maw",
  23861. image: {
  23862. source: "./media/characters/saian/maw.svg"
  23863. }
  23864. },
  23865. },
  23866. [
  23867. {
  23868. name: "Normal",
  23869. height: math.unit(3, "feet"),
  23870. default: true
  23871. },
  23872. ]
  23873. ))
  23874. characterMakers.push(() => makeCharacter(
  23875. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23876. {
  23877. side: {
  23878. height: math.unit(8, "feet"),
  23879. weight: math.unit(300, "lb"),
  23880. name: "Side",
  23881. image: {
  23882. source: "./media/characters/equus-silvermane/side.svg",
  23883. extra: 2176 / 2050,
  23884. bottom: 65.7 / 2245
  23885. }
  23886. },
  23887. front: {
  23888. height: math.unit(8, "feet"),
  23889. weight: math.unit(300, "lb"),
  23890. name: "Front",
  23891. image: {
  23892. source: "./media/characters/equus-silvermane/front.svg",
  23893. extra: 4633 / 4400,
  23894. bottom: 71.3 / 4706.915
  23895. }
  23896. },
  23897. sideStepping: {
  23898. height: math.unit(8, "feet"),
  23899. weight: math.unit(300, "lb"),
  23900. name: "Side (Stepping)",
  23901. image: {
  23902. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23903. extra: 1968 / 1860,
  23904. bottom: 16.4 / 1989
  23905. }
  23906. },
  23907. },
  23908. [
  23909. {
  23910. name: "Normal",
  23911. height: math.unit(8, "feet")
  23912. },
  23913. {
  23914. name: "Minimacro",
  23915. height: math.unit(75, "feet"),
  23916. default: true
  23917. },
  23918. {
  23919. name: "Macro",
  23920. height: math.unit(150, "feet")
  23921. },
  23922. {
  23923. name: "Macro+",
  23924. height: math.unit(1000, "feet")
  23925. },
  23926. {
  23927. name: "Megamacro",
  23928. height: math.unit(1, "mile")
  23929. },
  23930. ]
  23931. ))
  23932. characterMakers.push(() => makeCharacter(
  23933. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23934. {
  23935. side: {
  23936. height: math.unit(20, "feet"),
  23937. weight: math.unit(30000, "kg"),
  23938. name: "Side",
  23939. image: {
  23940. source: "./media/characters/windar/side.svg",
  23941. extra: 1491 / 1248,
  23942. bottom: 82.56 / 1568
  23943. }
  23944. },
  23945. },
  23946. [
  23947. {
  23948. name: "Normal",
  23949. height: math.unit(20, "feet"),
  23950. default: true
  23951. },
  23952. ]
  23953. ))
  23954. characterMakers.push(() => makeCharacter(
  23955. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23956. {
  23957. side: {
  23958. height: math.unit(15.66, "feet"),
  23959. weight: math.unit(150, "lb"),
  23960. name: "Side",
  23961. image: {
  23962. source: "./media/characters/melody/side.svg",
  23963. extra: 1097 / 944,
  23964. bottom: 11.8 / 1109
  23965. }
  23966. },
  23967. sideOutfit: {
  23968. height: math.unit(15.66, "feet"),
  23969. weight: math.unit(150, "lb"),
  23970. name: "Side (Outfit)",
  23971. image: {
  23972. source: "./media/characters/melody/side-outfit.svg",
  23973. extra: 1097 / 944,
  23974. bottom: 11.8 / 1109
  23975. }
  23976. },
  23977. },
  23978. [
  23979. {
  23980. name: "Normal",
  23981. height: math.unit(15.66, "feet"),
  23982. default: true
  23983. },
  23984. ]
  23985. ))
  23986. characterMakers.push(() => makeCharacter(
  23987. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23988. {
  23989. armoredFront: {
  23990. height: math.unit(8, "feet"),
  23991. weight: math.unit(325, "lb"),
  23992. name: "Front",
  23993. image: {
  23994. source: "./media/characters/windera/armored-front.svg",
  23995. extra: 1830/1598,
  23996. bottom: 151/1981
  23997. },
  23998. form: "armored",
  23999. default: true
  24000. },
  24001. macroFront: {
  24002. height: math.unit(70, "feet"),
  24003. weight: math.unit(315453, "lb"),
  24004. name: "Front",
  24005. image: {
  24006. source: "./media/characters/windera/macro-front.svg",
  24007. extra: 963/883,
  24008. bottom: 23/986
  24009. },
  24010. form: "macro",
  24011. default: true
  24012. },
  24013. },
  24014. [
  24015. {
  24016. name: "Normal",
  24017. height: math.unit(8, "feet"),
  24018. default: true,
  24019. form: "armored"
  24020. },
  24021. {
  24022. name: "Normal",
  24023. height: math.unit(70, "feet"),
  24024. default: true,
  24025. form: "macro"
  24026. },
  24027. ],
  24028. {
  24029. "armored": {
  24030. name: "Armored",
  24031. default: true
  24032. },
  24033. "macro": {
  24034. name: "Macro",
  24035. },
  24036. }
  24037. ))
  24038. characterMakers.push(() => makeCharacter(
  24039. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24040. {
  24041. front: {
  24042. height: math.unit(28.75, "feet"),
  24043. weight: math.unit(2000, "kg"),
  24044. name: "Front",
  24045. image: {
  24046. source: "./media/characters/sonear/front.svg",
  24047. extra: 1041.1 / 964.9,
  24048. bottom: 53.7 / 1096.6
  24049. }
  24050. },
  24051. },
  24052. [
  24053. {
  24054. name: "Normal",
  24055. height: math.unit(28.75, "feet"),
  24056. default: true
  24057. },
  24058. ]
  24059. ))
  24060. characterMakers.push(() => makeCharacter(
  24061. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24062. {
  24063. side: {
  24064. height: math.unit(25.5, "feet"),
  24065. weight: math.unit(23000, "kg"),
  24066. name: "Side",
  24067. image: {
  24068. source: "./media/characters/kanara/side.svg"
  24069. }
  24070. },
  24071. },
  24072. [
  24073. {
  24074. name: "Normal",
  24075. height: math.unit(25.5, "feet"),
  24076. default: true
  24077. },
  24078. ]
  24079. ))
  24080. characterMakers.push(() => makeCharacter(
  24081. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24082. {
  24083. side: {
  24084. height: math.unit(10, "feet"),
  24085. weight: math.unit(1000, "kg"),
  24086. name: "Side",
  24087. image: {
  24088. source: "./media/characters/ereus/side.svg",
  24089. extra: 1157 / 959,
  24090. bottom: 153 / 1312.5
  24091. }
  24092. },
  24093. },
  24094. [
  24095. {
  24096. name: "Normal",
  24097. height: math.unit(10, "feet"),
  24098. default: true
  24099. },
  24100. ]
  24101. ))
  24102. characterMakers.push(() => makeCharacter(
  24103. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24104. {
  24105. side: {
  24106. height: math.unit(4.5, "feet"),
  24107. weight: math.unit(500, "lb"),
  24108. name: "Side",
  24109. image: {
  24110. source: "./media/characters/e-ter/side.svg",
  24111. extra: 1550 / 1248,
  24112. bottom: 146 / 1694
  24113. }
  24114. },
  24115. },
  24116. [
  24117. {
  24118. name: "Normal",
  24119. height: math.unit(4.5, "feet"),
  24120. default: true
  24121. },
  24122. ]
  24123. ))
  24124. characterMakers.push(() => makeCharacter(
  24125. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24126. {
  24127. side: {
  24128. height: math.unit(9.7, "feet"),
  24129. weight: math.unit(4000, "kg"),
  24130. name: "Side",
  24131. image: {
  24132. source: "./media/characters/yamie/side.svg"
  24133. }
  24134. },
  24135. },
  24136. [
  24137. {
  24138. name: "Normal",
  24139. height: math.unit(9.7, "feet"),
  24140. default: true
  24141. },
  24142. ]
  24143. ))
  24144. characterMakers.push(() => makeCharacter(
  24145. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24146. {
  24147. front: {
  24148. height: math.unit(50, "feet"),
  24149. weight: math.unit(50000, "kg"),
  24150. name: "Front",
  24151. image: {
  24152. source: "./media/characters/anders/front.svg",
  24153. extra: 570 / 539,
  24154. bottom: 14.7 / 586.7
  24155. }
  24156. },
  24157. },
  24158. [
  24159. {
  24160. name: "Large",
  24161. height: math.unit(50, "feet")
  24162. },
  24163. {
  24164. name: "Macro",
  24165. height: math.unit(2000, "feet"),
  24166. default: true
  24167. },
  24168. {
  24169. name: "Megamacro",
  24170. height: math.unit(12, "miles")
  24171. },
  24172. ]
  24173. ))
  24174. characterMakers.push(() => makeCharacter(
  24175. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24176. {
  24177. front: {
  24178. height: math.unit(7 + 2 / 12, "feet"),
  24179. weight: math.unit(300, "lb"),
  24180. name: "Front",
  24181. image: {
  24182. source: "./media/characters/reban/front.svg",
  24183. extra: 1287/1212,
  24184. bottom: 148/1435
  24185. }
  24186. },
  24187. head: {
  24188. height: math.unit(1.95, "feet"),
  24189. name: "Head",
  24190. image: {
  24191. source: "./media/characters/reban/head.svg"
  24192. }
  24193. },
  24194. maw: {
  24195. height: math.unit(0.95, "feet"),
  24196. name: "Maw",
  24197. image: {
  24198. source: "./media/characters/reban/maw.svg"
  24199. }
  24200. },
  24201. foot: {
  24202. height: math.unit(1.65, "feet"),
  24203. name: "Foot",
  24204. image: {
  24205. source: "./media/characters/reban/foot.svg"
  24206. }
  24207. },
  24208. dick: {
  24209. height: math.unit(7 / 5, "feet"),
  24210. name: "Dick",
  24211. image: {
  24212. source: "./media/characters/reban/dick.svg"
  24213. }
  24214. },
  24215. },
  24216. [
  24217. {
  24218. name: "Natural Height",
  24219. height: math.unit(7 + 2 / 12, "feet")
  24220. },
  24221. {
  24222. name: "Macro",
  24223. height: math.unit(500, "feet"),
  24224. default: true
  24225. },
  24226. {
  24227. name: "Canon Height",
  24228. height: math.unit(50, "AU")
  24229. },
  24230. ]
  24231. ))
  24232. characterMakers.push(() => makeCharacter(
  24233. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24234. {
  24235. front: {
  24236. height: math.unit(6, "feet"),
  24237. weight: math.unit(150, "lb"),
  24238. name: "Front",
  24239. image: {
  24240. source: "./media/characters/terrance-keayes/front.svg",
  24241. extra: 1.005,
  24242. bottom: 151 / 1615
  24243. }
  24244. },
  24245. side: {
  24246. height: math.unit(6, "feet"),
  24247. weight: math.unit(150, "lb"),
  24248. name: "Side",
  24249. image: {
  24250. source: "./media/characters/terrance-keayes/side.svg",
  24251. extra: 1.005,
  24252. bottom: 129.4 / 1544
  24253. }
  24254. },
  24255. back: {
  24256. height: math.unit(6, "feet"),
  24257. weight: math.unit(150, "lb"),
  24258. name: "Back",
  24259. image: {
  24260. source: "./media/characters/terrance-keayes/back.svg",
  24261. extra: 1.005,
  24262. bottom: 58.4 / 1557.3
  24263. }
  24264. },
  24265. dick: {
  24266. height: math.unit(6 * 0.208, "feet"),
  24267. name: "Dick",
  24268. image: {
  24269. source: "./media/characters/terrance-keayes/dick.svg"
  24270. }
  24271. },
  24272. },
  24273. [
  24274. {
  24275. name: "Canon Height",
  24276. height: math.unit(35, "miles"),
  24277. default: true
  24278. },
  24279. ]
  24280. ))
  24281. characterMakers.push(() => makeCharacter(
  24282. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24283. {
  24284. front: {
  24285. height: math.unit(6, "feet"),
  24286. weight: math.unit(150, "lb"),
  24287. name: "Front",
  24288. image: {
  24289. source: "./media/characters/ofelia/front.svg",
  24290. extra: 1130/1117,
  24291. bottom: 91/1221
  24292. }
  24293. },
  24294. back: {
  24295. height: math.unit(6, "feet"),
  24296. weight: math.unit(150, "lb"),
  24297. name: "Back",
  24298. image: {
  24299. source: "./media/characters/ofelia/back.svg",
  24300. extra: 1172/1159,
  24301. bottom: 28/1200
  24302. }
  24303. },
  24304. maw: {
  24305. height: math.unit(1, "feet"),
  24306. name: "Maw",
  24307. image: {
  24308. source: "./media/characters/ofelia/maw.svg"
  24309. }
  24310. },
  24311. foot: {
  24312. height: math.unit(1.949, "feet"),
  24313. name: "Foot",
  24314. image: {
  24315. source: "./media/characters/ofelia/foot.svg"
  24316. }
  24317. },
  24318. },
  24319. [
  24320. {
  24321. name: "Canon Height",
  24322. height: math.unit(2000, "miles"),
  24323. default: true
  24324. },
  24325. ]
  24326. ))
  24327. characterMakers.push(() => makeCharacter(
  24328. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24329. {
  24330. front: {
  24331. height: math.unit(6, "feet"),
  24332. weight: math.unit(150, "lb"),
  24333. name: "Front",
  24334. image: {
  24335. source: "./media/characters/samuel/front.svg",
  24336. extra: 265 / 258,
  24337. bottom: 2 / 266.1566
  24338. }
  24339. },
  24340. },
  24341. [
  24342. {
  24343. name: "Macro",
  24344. height: math.unit(100, "feet"),
  24345. default: true
  24346. },
  24347. {
  24348. name: "Full Size",
  24349. height: math.unit(1000, "miles")
  24350. },
  24351. ]
  24352. ))
  24353. characterMakers.push(() => makeCharacter(
  24354. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24355. {
  24356. front: {
  24357. height: math.unit(6, "feet"),
  24358. weight: math.unit(300, "lb"),
  24359. name: "Front",
  24360. image: {
  24361. source: "./media/characters/beishir-kiel/front.svg",
  24362. extra: 569 / 547,
  24363. bottom: 41.9 / 609
  24364. }
  24365. },
  24366. maw: {
  24367. height: math.unit(6 * 0.202, "feet"),
  24368. name: "Maw",
  24369. image: {
  24370. source: "./media/characters/beishir-kiel/maw.svg"
  24371. }
  24372. },
  24373. },
  24374. [
  24375. {
  24376. name: "Macro",
  24377. height: math.unit(300, "feet"),
  24378. default: true
  24379. },
  24380. ]
  24381. ))
  24382. characterMakers.push(() => makeCharacter(
  24383. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24384. {
  24385. front: {
  24386. height: math.unit(5 + 7/12, "feet"),
  24387. weight: math.unit(120, "lb"),
  24388. name: "Front",
  24389. image: {
  24390. source: "./media/characters/logan-grey/front.svg",
  24391. extra: 1836/1738,
  24392. bottom: 108/1944
  24393. }
  24394. },
  24395. back: {
  24396. height: math.unit(5 + 7/12, "feet"),
  24397. weight: math.unit(120, "lb"),
  24398. name: "Back",
  24399. image: {
  24400. source: "./media/characters/logan-grey/back.svg",
  24401. extra: 1880/1794,
  24402. bottom: 24/1904
  24403. }
  24404. },
  24405. frontSfw: {
  24406. height: math.unit(5 + 7/12, "feet"),
  24407. weight: math.unit(120, "lb"),
  24408. name: "Front (SFW)",
  24409. image: {
  24410. source: "./media/characters/logan-grey/front-sfw.svg",
  24411. extra: 1836/1738,
  24412. bottom: 108/1944
  24413. }
  24414. },
  24415. backSfw: {
  24416. height: math.unit(5 + 7/12, "feet"),
  24417. weight: math.unit(120, "lb"),
  24418. name: "Back (SFW)",
  24419. image: {
  24420. source: "./media/characters/logan-grey/back-sfw.svg",
  24421. extra: 1880/1794,
  24422. bottom: 24/1904
  24423. }
  24424. },
  24425. hands: {
  24426. height: math.unit(0.84, "feet"),
  24427. name: "Hands",
  24428. image: {
  24429. source: "./media/characters/logan-grey/hands.svg"
  24430. }
  24431. },
  24432. paws: {
  24433. height: math.unit(0.72, "feet"),
  24434. name: "Paws",
  24435. image: {
  24436. source: "./media/characters/logan-grey/paws.svg"
  24437. }
  24438. },
  24439. cock: {
  24440. height: math.unit(1.45, "feet"),
  24441. name: "Cock",
  24442. image: {
  24443. source: "./media/characters/logan-grey/cock.svg"
  24444. }
  24445. },
  24446. cockAlt: {
  24447. height: math.unit(1.437, "feet"),
  24448. name: "Cock (alt)",
  24449. image: {
  24450. source: "./media/characters/logan-grey/cock-alt.svg"
  24451. }
  24452. },
  24453. },
  24454. [
  24455. {
  24456. name: "Normal",
  24457. height: math.unit(5 + 8 / 12, "feet")
  24458. },
  24459. {
  24460. name: "The 500 Foot Femboy",
  24461. height: math.unit(500, "feet"),
  24462. default: true
  24463. },
  24464. {
  24465. name: "Megmacro",
  24466. height: math.unit(20, "miles")
  24467. },
  24468. ]
  24469. ))
  24470. characterMakers.push(() => makeCharacter(
  24471. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24472. {
  24473. front: {
  24474. height: math.unit(8 + 2 / 12, "feet"),
  24475. weight: math.unit(275, "lb"),
  24476. name: "Front",
  24477. image: {
  24478. source: "./media/characters/draganta/front.svg",
  24479. extra: 1177 / 1135,
  24480. bottom: 33.46 / 1212.1
  24481. }
  24482. },
  24483. },
  24484. [
  24485. {
  24486. name: "Normal",
  24487. height: math.unit(8 + 6 / 12, "feet"),
  24488. default: true
  24489. },
  24490. {
  24491. name: "Macro",
  24492. height: math.unit(150, "feet")
  24493. },
  24494. {
  24495. name: "Megamacro",
  24496. height: math.unit(1000, "miles")
  24497. },
  24498. ]
  24499. ))
  24500. characterMakers.push(() => makeCharacter(
  24501. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24502. {
  24503. front: {
  24504. height: math.unit(1.72, "m"),
  24505. weight: math.unit(80, "lb"),
  24506. name: "Front",
  24507. image: {
  24508. source: "./media/characters/voski/front.svg",
  24509. extra: 2076.22 / 2022.4,
  24510. bottom: 102.7 / 2177.3866
  24511. }
  24512. },
  24513. frontFlaccid: {
  24514. height: math.unit(1.72, "m"),
  24515. weight: math.unit(80, "lb"),
  24516. name: "Front (Flaccid)",
  24517. image: {
  24518. source: "./media/characters/voski/front-flaccid.svg",
  24519. extra: 2076.22 / 2022.4,
  24520. bottom: 102.7 / 2177.3866
  24521. }
  24522. },
  24523. frontErect: {
  24524. height: math.unit(1.72, "m"),
  24525. weight: math.unit(80, "lb"),
  24526. name: "Front (Erect)",
  24527. image: {
  24528. source: "./media/characters/voski/front-erect.svg",
  24529. extra: 2076.22 / 2022.4,
  24530. bottom: 102.7 / 2177.3866
  24531. }
  24532. },
  24533. back: {
  24534. height: math.unit(1.72, "m"),
  24535. weight: math.unit(80, "lb"),
  24536. name: "Back",
  24537. image: {
  24538. source: "./media/characters/voski/back.svg",
  24539. extra: 2104 / 2051,
  24540. bottom: 10.45 / 2113.63
  24541. }
  24542. },
  24543. },
  24544. [
  24545. {
  24546. name: "Normal",
  24547. height: math.unit(1.72, "m")
  24548. },
  24549. {
  24550. name: "Macro",
  24551. height: math.unit(55, "m"),
  24552. default: true
  24553. },
  24554. {
  24555. name: "Macro+",
  24556. height: math.unit(300, "m")
  24557. },
  24558. {
  24559. name: "Macro++",
  24560. height: math.unit(700, "m")
  24561. },
  24562. {
  24563. name: "Macro+++",
  24564. height: math.unit(4500, "m")
  24565. },
  24566. {
  24567. name: "Macro++++",
  24568. height: math.unit(45, "km")
  24569. },
  24570. {
  24571. name: "Macro+++++",
  24572. height: math.unit(1220, "km")
  24573. },
  24574. ]
  24575. ))
  24576. characterMakers.push(() => makeCharacter(
  24577. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24578. {
  24579. front: {
  24580. height: math.unit(2.3, "m"),
  24581. weight: math.unit(304, "kg"),
  24582. name: "Front",
  24583. image: {
  24584. source: "./media/characters/icowom-lee/front.svg",
  24585. extra: 985 / 955,
  24586. bottom: 25.4 / 1012
  24587. }
  24588. },
  24589. fronttentacles: {
  24590. height: math.unit(2.3, "m"),
  24591. weight: math.unit(304, "kg"),
  24592. name: "Front-tentacles",
  24593. image: {
  24594. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24595. extra: 985 / 955,
  24596. bottom: 25.4 / 1012
  24597. }
  24598. },
  24599. back: {
  24600. height: math.unit(2.3, "m"),
  24601. weight: math.unit(304, "kg"),
  24602. name: "Back",
  24603. image: {
  24604. source: "./media/characters/icowom-lee/back.svg",
  24605. extra: 975 / 954,
  24606. bottom: 9.5 / 985
  24607. }
  24608. },
  24609. backtentacles: {
  24610. height: math.unit(2.3, "m"),
  24611. weight: math.unit(304, "kg"),
  24612. name: "Back-tentacles",
  24613. image: {
  24614. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24615. extra: 975 / 954,
  24616. bottom: 9.5 / 985
  24617. }
  24618. },
  24619. frontDressed: {
  24620. height: math.unit(2.3, "m"),
  24621. weight: math.unit(304, "kg"),
  24622. name: "Front (Dressed)",
  24623. image: {
  24624. source: "./media/characters/icowom-lee/front-dressed.svg",
  24625. extra: 3076 / 2933,
  24626. bottom: 51.4 / 3125.1889
  24627. }
  24628. },
  24629. rump: {
  24630. height: math.unit(0.776, "meters"),
  24631. name: "Rump",
  24632. image: {
  24633. source: "./media/characters/icowom-lee/rump.svg"
  24634. }
  24635. },
  24636. genitals: {
  24637. height: math.unit(0.78, "meters"),
  24638. name: "Genitals",
  24639. image: {
  24640. source: "./media/characters/icowom-lee/genitals.svg"
  24641. }
  24642. },
  24643. },
  24644. [
  24645. {
  24646. name: "Normal",
  24647. height: math.unit(2.3, "meters"),
  24648. default: true
  24649. },
  24650. {
  24651. name: "Macro",
  24652. height: math.unit(94, "meters"),
  24653. default: true
  24654. },
  24655. ]
  24656. ))
  24657. characterMakers.push(() => makeCharacter(
  24658. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24659. {
  24660. front: {
  24661. height: math.unit(22, "meters"),
  24662. weight: math.unit(21000, "kg"),
  24663. name: "Front",
  24664. image: {
  24665. source: "./media/characters/shock-diamond/front.svg",
  24666. extra: 2204 / 2053,
  24667. bottom: 65 / 2239.47
  24668. }
  24669. },
  24670. frontNude: {
  24671. height: math.unit(22, "meters"),
  24672. weight: math.unit(21000, "kg"),
  24673. name: "Front (Nude)",
  24674. image: {
  24675. source: "./media/characters/shock-diamond/front-nude.svg",
  24676. extra: 2514 / 2285,
  24677. bottom: 13 / 2527.56
  24678. }
  24679. },
  24680. },
  24681. [
  24682. {
  24683. name: "Normal",
  24684. height: math.unit(3, "meters")
  24685. },
  24686. {
  24687. name: "Macro",
  24688. height: math.unit(22, "meters"),
  24689. default: true
  24690. },
  24691. ]
  24692. ))
  24693. characterMakers.push(() => makeCharacter(
  24694. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24695. {
  24696. front: {
  24697. height: math.unit(5 + 4/12, "feet"),
  24698. weight: math.unit(125, "lb"),
  24699. name: "Front",
  24700. image: {
  24701. source: "./media/characters/rory/front.svg",
  24702. extra: 1790/1681,
  24703. bottom: 66/1856
  24704. },
  24705. form: "normal",
  24706. default: true
  24707. },
  24708. back: {
  24709. height: math.unit(5 + 4/12, "feet"),
  24710. weight: math.unit(125, "lb"),
  24711. name: "Back",
  24712. image: {
  24713. source: "./media/characters/rory/back.svg",
  24714. extra: 1805/1690,
  24715. bottom: 56/1861
  24716. },
  24717. form: "normal"
  24718. },
  24719. frontDressed: {
  24720. height: math.unit(5 + 4/12, "feet"),
  24721. weight: math.unit(125, "lb"),
  24722. name: "Front (Dressed)",
  24723. image: {
  24724. source: "./media/characters/rory/front-dressed.svg",
  24725. extra: 1790/1681,
  24726. bottom: 66/1856
  24727. },
  24728. form: "normal"
  24729. },
  24730. backDressed: {
  24731. height: math.unit(5 + 4/12, "feet"),
  24732. weight: math.unit(125, "lb"),
  24733. name: "Back (Dressed)",
  24734. image: {
  24735. source: "./media/characters/rory/back-dressed.svg",
  24736. extra: 1805/1690,
  24737. bottom: 56/1861
  24738. },
  24739. form: "normal"
  24740. },
  24741. frontNsfw: {
  24742. height: math.unit(5 + 4/12, "feet"),
  24743. weight: math.unit(125, "lb"),
  24744. name: "Front (NSFW)",
  24745. image: {
  24746. source: "./media/characters/rory/front-nsfw.svg",
  24747. extra: 1790/1681,
  24748. bottom: 66/1856
  24749. },
  24750. form: "normal"
  24751. },
  24752. backNsfw: {
  24753. height: math.unit(5 + 4/12, "feet"),
  24754. weight: math.unit(125, "lb"),
  24755. name: "Back (NSFW)",
  24756. image: {
  24757. source: "./media/characters/rory/back-nsfw.svg",
  24758. extra: 1805/1690,
  24759. bottom: 56/1861
  24760. },
  24761. form: "normal"
  24762. },
  24763. dick: {
  24764. height: math.unit(0.8, "feet"),
  24765. name: "Dick",
  24766. image: {
  24767. source: "./media/characters/rory/dick.svg"
  24768. },
  24769. form: "normal"
  24770. },
  24771. thicc_front: {
  24772. height: math.unit(5 + 4/12, "feet"),
  24773. weight: math.unit(195, "lb"),
  24774. name: "Front",
  24775. image: {
  24776. source: "./media/characters/rory/thicc-front.svg",
  24777. extra: 1220/1100,
  24778. bottom: 103/1323
  24779. },
  24780. form: "thicc",
  24781. default: true
  24782. },
  24783. thicc_back: {
  24784. height: math.unit(5 + 4/12, "feet"),
  24785. weight: math.unit(195, "lb"),
  24786. name: "Back",
  24787. image: {
  24788. source: "./media/characters/rory/thicc-back.svg",
  24789. extra: 1166/1086,
  24790. bottom: 35/1201
  24791. },
  24792. form: "thicc"
  24793. },
  24794. },
  24795. [
  24796. {
  24797. name: "Micro",
  24798. height: math.unit(3, "inches"),
  24799. allForms: true
  24800. },
  24801. {
  24802. name: "Normal",
  24803. height: math.unit(5 + 4/12, "feet"),
  24804. allForms: true,
  24805. default: true
  24806. },
  24807. {
  24808. name: "Macro",
  24809. height: math.unit(90, "feet"),
  24810. allForms: true
  24811. },
  24812. {
  24813. name: "Supercharged",
  24814. height: math.unit(270, "feet"),
  24815. allForms: true
  24816. },
  24817. ],
  24818. {
  24819. "normal": {
  24820. name: "Normal",
  24821. default: true
  24822. },
  24823. "thicc": {
  24824. name: "Thicc",
  24825. },
  24826. }
  24827. ))
  24828. characterMakers.push(() => makeCharacter(
  24829. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24830. {
  24831. front: {
  24832. height: math.unit(5 + 9 / 12, "feet"),
  24833. weight: math.unit(190, "lb"),
  24834. name: "Front",
  24835. image: {
  24836. source: "./media/characters/sprisk/front.svg",
  24837. extra: 1225 / 1180,
  24838. bottom: 42.7 / 1266.4
  24839. }
  24840. },
  24841. frontNsfw: {
  24842. height: math.unit(5 + 9 / 12, "feet"),
  24843. weight: math.unit(190, "lb"),
  24844. name: "Front (NSFW)",
  24845. image: {
  24846. source: "./media/characters/sprisk/front-nsfw.svg",
  24847. extra: 1225 / 1180,
  24848. bottom: 42.7 / 1266.4
  24849. }
  24850. },
  24851. back: {
  24852. height: math.unit(5 + 9 / 12, "feet"),
  24853. weight: math.unit(190, "lb"),
  24854. name: "Back",
  24855. image: {
  24856. source: "./media/characters/sprisk/back.svg",
  24857. extra: 1247 / 1200,
  24858. bottom: 5.6 / 1253.04
  24859. }
  24860. },
  24861. },
  24862. [
  24863. {
  24864. name: "Tiny",
  24865. height: math.unit(2, "inches")
  24866. },
  24867. {
  24868. name: "Normal",
  24869. height: math.unit(5 + 9 / 12, "feet"),
  24870. default: true
  24871. },
  24872. {
  24873. name: "Mini Macro",
  24874. height: math.unit(18, "feet")
  24875. },
  24876. {
  24877. name: "Macro",
  24878. height: math.unit(100, "feet")
  24879. },
  24880. {
  24881. name: "MACRO",
  24882. height: math.unit(50, "miles")
  24883. },
  24884. {
  24885. name: "M A C R O",
  24886. height: math.unit(300, "miles")
  24887. },
  24888. ]
  24889. ))
  24890. characterMakers.push(() => makeCharacter(
  24891. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24892. {
  24893. side: {
  24894. height: math.unit(15.6, "meters"),
  24895. weight: math.unit(700000, "kg"),
  24896. name: "Side",
  24897. image: {
  24898. source: "./media/characters/bunsen/side.svg",
  24899. extra: 1644 / 358
  24900. }
  24901. },
  24902. foot: {
  24903. height: math.unit(1.611 * 1644 / 358, "meter"),
  24904. name: "Foot",
  24905. image: {
  24906. source: "./media/characters/bunsen/foot.svg"
  24907. }
  24908. },
  24909. },
  24910. [
  24911. {
  24912. name: "Small",
  24913. height: math.unit(10, "feet")
  24914. },
  24915. {
  24916. name: "Normal",
  24917. height: math.unit(15.6, "meters"),
  24918. default: true
  24919. },
  24920. ]
  24921. ))
  24922. characterMakers.push(() => makeCharacter(
  24923. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24924. {
  24925. front: {
  24926. height: math.unit(4 + 11 / 12, "feet"),
  24927. weight: math.unit(140, "lb"),
  24928. name: "Front",
  24929. image: {
  24930. source: "./media/characters/sesh/front.svg",
  24931. extra: 3420 / 3231,
  24932. bottom: 72 / 3949.5
  24933. }
  24934. },
  24935. },
  24936. [
  24937. {
  24938. name: "Normal",
  24939. height: math.unit(4 + 11 / 12, "feet")
  24940. },
  24941. {
  24942. name: "Grown",
  24943. height: math.unit(15, "feet"),
  24944. default: true
  24945. },
  24946. {
  24947. name: "Macro",
  24948. height: math.unit(1500, "feet")
  24949. },
  24950. {
  24951. name: "Megamacro",
  24952. height: math.unit(30, "miles")
  24953. },
  24954. {
  24955. name: "Continental",
  24956. height: math.unit(3000, "miles")
  24957. },
  24958. {
  24959. name: "Gravity Mass",
  24960. height: math.unit(300000, "miles")
  24961. },
  24962. {
  24963. name: "Planet Buster",
  24964. height: math.unit(30000000, "miles")
  24965. },
  24966. {
  24967. name: "Big",
  24968. height: math.unit(3000000000, "miles")
  24969. },
  24970. ]
  24971. ))
  24972. characterMakers.push(() => makeCharacter(
  24973. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24974. {
  24975. front: {
  24976. height: math.unit(9, "feet"),
  24977. weight: math.unit(350, "lb"),
  24978. name: "Front",
  24979. image: {
  24980. source: "./media/characters/pepper/front.svg",
  24981. extra: 1448 / 1312,
  24982. bottom: 9.4 / 1457.88
  24983. }
  24984. },
  24985. back: {
  24986. height: math.unit(9, "feet"),
  24987. weight: math.unit(350, "lb"),
  24988. name: "Back",
  24989. image: {
  24990. source: "./media/characters/pepper/back.svg",
  24991. extra: 1423 / 1300,
  24992. bottom: 4.6 / 1429
  24993. }
  24994. },
  24995. maw: {
  24996. height: math.unit(0.932, "feet"),
  24997. name: "Maw",
  24998. image: {
  24999. source: "./media/characters/pepper/maw.svg"
  25000. }
  25001. },
  25002. },
  25003. [
  25004. {
  25005. name: "Normal",
  25006. height: math.unit(9, "feet"),
  25007. default: true
  25008. },
  25009. ]
  25010. ))
  25011. characterMakers.push(() => makeCharacter(
  25012. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25013. {
  25014. front: {
  25015. height: math.unit(6, "feet"),
  25016. weight: math.unit(150, "lb"),
  25017. name: "Front",
  25018. image: {
  25019. source: "./media/characters/maelstrom/front.svg",
  25020. extra: 2100 / 1883,
  25021. bottom: 94 / 2196.7
  25022. }
  25023. },
  25024. },
  25025. [
  25026. {
  25027. name: "Less Kaiju",
  25028. height: math.unit(200, "feet")
  25029. },
  25030. {
  25031. name: "Kaiju",
  25032. height: math.unit(400, "feet"),
  25033. default: true
  25034. },
  25035. {
  25036. name: "Kaiju-er",
  25037. height: math.unit(600, "feet")
  25038. },
  25039. ]
  25040. ))
  25041. characterMakers.push(() => makeCharacter(
  25042. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25043. {
  25044. front: {
  25045. height: math.unit(6 + 5 / 12, "feet"),
  25046. weight: math.unit(180, "lb"),
  25047. name: "Front",
  25048. image: {
  25049. source: "./media/characters/lexir/front.svg",
  25050. extra: 180 / 172,
  25051. bottom: 12 / 192
  25052. }
  25053. },
  25054. back: {
  25055. height: math.unit(6 + 5 / 12, "feet"),
  25056. weight: math.unit(180, "lb"),
  25057. name: "Back",
  25058. image: {
  25059. source: "./media/characters/lexir/back.svg",
  25060. extra: 1273/1201,
  25061. bottom: 39/1312
  25062. }
  25063. },
  25064. },
  25065. [
  25066. {
  25067. name: "Very Smal",
  25068. height: math.unit(1, "nm")
  25069. },
  25070. {
  25071. name: "Normal",
  25072. height: math.unit(6 + 5 / 12, "feet"),
  25073. default: true
  25074. },
  25075. {
  25076. name: "Macro",
  25077. height: math.unit(1, "mile")
  25078. },
  25079. {
  25080. name: "Megamacro",
  25081. height: math.unit(50, "miles")
  25082. },
  25083. ]
  25084. ))
  25085. characterMakers.push(() => makeCharacter(
  25086. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25087. {
  25088. front: {
  25089. height: math.unit(1.5, "meters"),
  25090. weight: math.unit(100, "lb"),
  25091. name: "Front",
  25092. image: {
  25093. source: "./media/characters/maksio/front.svg",
  25094. extra: 1549 / 1531,
  25095. bottom: 123.7 / 1674.5429
  25096. }
  25097. },
  25098. back: {
  25099. height: math.unit(1.5, "meters"),
  25100. weight: math.unit(100, "lb"),
  25101. name: "Back",
  25102. image: {
  25103. source: "./media/characters/maksio/back.svg",
  25104. extra: 1541 / 1509,
  25105. bottom: 97 / 1639
  25106. }
  25107. },
  25108. hand: {
  25109. height: math.unit(0.621, "feet"),
  25110. name: "Hand",
  25111. image: {
  25112. source: "./media/characters/maksio/hand.svg"
  25113. }
  25114. },
  25115. foot: {
  25116. height: math.unit(1.611, "feet"),
  25117. name: "Foot",
  25118. image: {
  25119. source: "./media/characters/maksio/foot.svg"
  25120. }
  25121. },
  25122. },
  25123. [
  25124. {
  25125. name: "Shrunken",
  25126. height: math.unit(10, "cm")
  25127. },
  25128. {
  25129. name: "Normal",
  25130. height: math.unit(150, "cm"),
  25131. default: true
  25132. },
  25133. ]
  25134. ))
  25135. characterMakers.push(() => makeCharacter(
  25136. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25137. {
  25138. front: {
  25139. height: math.unit(100, "feet"),
  25140. name: "Front",
  25141. image: {
  25142. source: "./media/characters/erza-bear/front.svg",
  25143. extra: 2449 / 2390,
  25144. bottom: 46 / 2494
  25145. }
  25146. },
  25147. back: {
  25148. height: math.unit(100, "feet"),
  25149. name: "Back",
  25150. image: {
  25151. source: "./media/characters/erza-bear/back.svg",
  25152. extra: 2489 / 2430,
  25153. bottom: 85.4 / 2480
  25154. }
  25155. },
  25156. tail: {
  25157. height: math.unit(42, "feet"),
  25158. name: "Tail",
  25159. image: {
  25160. source: "./media/characters/erza-bear/tail.svg"
  25161. }
  25162. },
  25163. tongue: {
  25164. height: math.unit(8, "feet"),
  25165. name: "Tongue",
  25166. image: {
  25167. source: "./media/characters/erza-bear/tongue.svg"
  25168. }
  25169. },
  25170. dick: {
  25171. height: math.unit(10.5, "feet"),
  25172. name: "Dick",
  25173. image: {
  25174. source: "./media/characters/erza-bear/dick.svg"
  25175. }
  25176. },
  25177. dickVertical: {
  25178. height: math.unit(16.9, "feet"),
  25179. name: "Dick (Vertical)",
  25180. image: {
  25181. source: "./media/characters/erza-bear/dick-vertical.svg"
  25182. }
  25183. },
  25184. },
  25185. [
  25186. {
  25187. name: "Macro",
  25188. height: math.unit(100, "feet"),
  25189. default: true
  25190. },
  25191. ]
  25192. ))
  25193. characterMakers.push(() => makeCharacter(
  25194. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25195. {
  25196. front: {
  25197. height: math.unit(172, "cm"),
  25198. weight: math.unit(73, "kg"),
  25199. name: "Front",
  25200. image: {
  25201. source: "./media/characters/violet-flor/front.svg",
  25202. extra: 1530 / 1442,
  25203. bottom: 61.9 / 1588.8
  25204. }
  25205. },
  25206. back: {
  25207. height: math.unit(180, "cm"),
  25208. weight: math.unit(73, "kg"),
  25209. name: "Back",
  25210. image: {
  25211. source: "./media/characters/violet-flor/back.svg",
  25212. extra: 1692 / 1630,
  25213. bottom: 20 / 1712
  25214. }
  25215. },
  25216. },
  25217. [
  25218. {
  25219. name: "Normal",
  25220. height: math.unit(172, "cm"),
  25221. default: true
  25222. },
  25223. ]
  25224. ))
  25225. characterMakers.push(() => makeCharacter(
  25226. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25227. {
  25228. front: {
  25229. height: math.unit(6, "feet"),
  25230. weight: math.unit(220, "lb"),
  25231. name: "Front",
  25232. image: {
  25233. source: "./media/characters/lynn-rhea/front.svg",
  25234. extra: 310 / 273
  25235. }
  25236. },
  25237. back: {
  25238. height: math.unit(6, "feet"),
  25239. weight: math.unit(220, "lb"),
  25240. name: "Back",
  25241. image: {
  25242. source: "./media/characters/lynn-rhea/back.svg",
  25243. extra: 310 / 273
  25244. }
  25245. },
  25246. dicks: {
  25247. height: math.unit(0.9, "feet"),
  25248. name: "Dicks",
  25249. image: {
  25250. source: "./media/characters/lynn-rhea/dicks.svg"
  25251. }
  25252. },
  25253. slit: {
  25254. height: math.unit(0.4, "feet"),
  25255. name: "Slit",
  25256. image: {
  25257. source: "./media/characters/lynn-rhea/slit.svg"
  25258. }
  25259. },
  25260. },
  25261. [
  25262. {
  25263. name: "Micro",
  25264. height: math.unit(1, "inch")
  25265. },
  25266. {
  25267. name: "Macro",
  25268. height: math.unit(60, "feet"),
  25269. default: true
  25270. },
  25271. {
  25272. name: "Megamacro",
  25273. height: math.unit(2, "miles")
  25274. },
  25275. {
  25276. name: "Gigamacro",
  25277. height: math.unit(3, "earths")
  25278. },
  25279. {
  25280. name: "Galactic",
  25281. height: math.unit(0.8, "galaxies")
  25282. },
  25283. ]
  25284. ))
  25285. characterMakers.push(() => makeCharacter(
  25286. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25287. {
  25288. front: {
  25289. height: math.unit(1600, "feet"),
  25290. weight: math.unit(85758785169, "kg"),
  25291. name: "Front",
  25292. image: {
  25293. source: "./media/characters/valathos/front.svg",
  25294. extra: 1451 / 1339
  25295. }
  25296. },
  25297. },
  25298. [
  25299. {
  25300. name: "Macro",
  25301. height: math.unit(1600, "feet"),
  25302. default: true
  25303. },
  25304. ]
  25305. ))
  25306. characterMakers.push(() => makeCharacter(
  25307. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25308. {
  25309. front: {
  25310. height: math.unit(7 + 5 / 12, "feet"),
  25311. weight: math.unit(300, "lb"),
  25312. name: "Front",
  25313. image: {
  25314. source: "./media/characters/azula/front.svg",
  25315. extra: 3208 / 2880,
  25316. bottom: 80.2 / 3277
  25317. }
  25318. },
  25319. back: {
  25320. height: math.unit(7 + 5 / 12, "feet"),
  25321. weight: math.unit(300, "lb"),
  25322. name: "Back",
  25323. image: {
  25324. source: "./media/characters/azula/back.svg",
  25325. extra: 3169 / 2822,
  25326. bottom: 150.6 / 3321
  25327. }
  25328. },
  25329. },
  25330. [
  25331. {
  25332. name: "Normal",
  25333. height: math.unit(7 + 5 / 12, "feet"),
  25334. default: true
  25335. },
  25336. {
  25337. name: "Big",
  25338. height: math.unit(20, "feet")
  25339. },
  25340. ]
  25341. ))
  25342. characterMakers.push(() => makeCharacter(
  25343. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25344. {
  25345. front: {
  25346. height: math.unit(5 + 1 / 12, "feet"),
  25347. weight: math.unit(110, "lb"),
  25348. name: "Front",
  25349. image: {
  25350. source: "./media/characters/rupert/front.svg",
  25351. extra: 1549 / 1495,
  25352. bottom: 54.2 / 1604.4
  25353. }
  25354. },
  25355. },
  25356. [
  25357. {
  25358. name: "Normal",
  25359. height: math.unit(5 + 1 / 12, "feet"),
  25360. default: true
  25361. },
  25362. ]
  25363. ))
  25364. characterMakers.push(() => makeCharacter(
  25365. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25366. {
  25367. front: {
  25368. height: math.unit(8 + 4 / 12, "feet"),
  25369. weight: math.unit(350, "lb"),
  25370. name: "Front",
  25371. image: {
  25372. source: "./media/characters/sheera-castellar/front.svg",
  25373. extra: 1957 / 1894,
  25374. bottom: 26.97 / 1975.017
  25375. }
  25376. },
  25377. side: {
  25378. height: math.unit(8 + 4 / 12, "feet"),
  25379. weight: math.unit(350, "lb"),
  25380. name: "Side",
  25381. image: {
  25382. source: "./media/characters/sheera-castellar/side.svg",
  25383. extra: 1957 / 1894
  25384. }
  25385. },
  25386. back: {
  25387. height: math.unit(8 + 4 / 12, "feet"),
  25388. weight: math.unit(350, "lb"),
  25389. name: "Back",
  25390. image: {
  25391. source: "./media/characters/sheera-castellar/back.svg",
  25392. extra: 1957 / 1894
  25393. }
  25394. },
  25395. angled: {
  25396. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25397. weight: math.unit(350, "lb"),
  25398. name: "Angled",
  25399. image: {
  25400. source: "./media/characters/sheera-castellar/angled.svg",
  25401. extra: 1807 / 1707,
  25402. bottom: 68 / 1875
  25403. }
  25404. },
  25405. genitals: {
  25406. height: math.unit(2.2, "feet"),
  25407. name: "Genitals",
  25408. image: {
  25409. source: "./media/characters/sheera-castellar/genitals.svg"
  25410. }
  25411. },
  25412. taur: {
  25413. height: math.unit(10 + 6/12, "feet"),
  25414. name: "Taur",
  25415. image: {
  25416. source: "./media/characters/sheera-castellar/taur.svg",
  25417. extra: 2017/1909,
  25418. bottom: 185/2202
  25419. }
  25420. },
  25421. },
  25422. [
  25423. {
  25424. name: "Normal",
  25425. height: math.unit(8 + 4 / 12, "feet")
  25426. },
  25427. {
  25428. name: "Macro",
  25429. height: math.unit(150, "feet"),
  25430. default: true
  25431. },
  25432. {
  25433. name: "Macro+",
  25434. height: math.unit(800, "feet")
  25435. },
  25436. ]
  25437. ))
  25438. characterMakers.push(() => makeCharacter(
  25439. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25440. {
  25441. front: {
  25442. height: math.unit(6, "feet"),
  25443. weight: math.unit(150, "lb"),
  25444. name: "Front",
  25445. image: {
  25446. source: "./media/characters/jaipur/front.svg",
  25447. extra: 3860 / 3731,
  25448. bottom: 287 / 4140
  25449. }
  25450. },
  25451. back: {
  25452. height: math.unit(6, "feet"),
  25453. weight: math.unit(150, "lb"),
  25454. name: "Back",
  25455. image: {
  25456. source: "./media/characters/jaipur/back.svg",
  25457. extra: 1637/1561,
  25458. bottom: 154/1791
  25459. }
  25460. },
  25461. },
  25462. [
  25463. {
  25464. name: "Normal",
  25465. height: math.unit(1.85, "meters"),
  25466. default: true
  25467. },
  25468. {
  25469. name: "Macro",
  25470. height: math.unit(150, "meters")
  25471. },
  25472. {
  25473. name: "Macro+",
  25474. height: math.unit(0.5, "miles")
  25475. },
  25476. {
  25477. name: "Macro++",
  25478. height: math.unit(2.5, "miles")
  25479. },
  25480. {
  25481. name: "Macro+++",
  25482. height: math.unit(12, "miles")
  25483. },
  25484. {
  25485. name: "Macro++++",
  25486. height: math.unit(120, "miles")
  25487. },
  25488. {
  25489. name: "Macro+++++",
  25490. height: math.unit(1200, "miles")
  25491. },
  25492. ]
  25493. ))
  25494. characterMakers.push(() => makeCharacter(
  25495. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25496. {
  25497. front: {
  25498. height: math.unit(6, "feet"),
  25499. weight: math.unit(150, "lb"),
  25500. name: "Front",
  25501. image: {
  25502. source: "./media/characters/sheila-wolf/front.svg",
  25503. extra: 1931 / 1808,
  25504. bottom: 29.5 / 1960
  25505. }
  25506. },
  25507. dick: {
  25508. height: math.unit(1.464, "feet"),
  25509. name: "Dick",
  25510. image: {
  25511. source: "./media/characters/sheila-wolf/dick.svg"
  25512. }
  25513. },
  25514. muzzle: {
  25515. height: math.unit(0.513, "feet"),
  25516. name: "Muzzle",
  25517. image: {
  25518. source: "./media/characters/sheila-wolf/muzzle.svg"
  25519. }
  25520. },
  25521. },
  25522. [
  25523. {
  25524. name: "Macro",
  25525. height: math.unit(70, "feet"),
  25526. default: true
  25527. },
  25528. ]
  25529. ))
  25530. characterMakers.push(() => makeCharacter(
  25531. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25532. {
  25533. front: {
  25534. height: math.unit(32, "meters"),
  25535. weight: math.unit(300000, "kg"),
  25536. name: "Front",
  25537. image: {
  25538. source: "./media/characters/almor/front.svg",
  25539. extra: 1408 / 1322,
  25540. bottom: 94.6 / 1506.5
  25541. }
  25542. },
  25543. },
  25544. [
  25545. {
  25546. name: "Macro",
  25547. height: math.unit(32, "meters"),
  25548. default: true
  25549. },
  25550. ]
  25551. ))
  25552. characterMakers.push(() => makeCharacter(
  25553. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25554. {
  25555. front: {
  25556. height: math.unit(7, "feet"),
  25557. weight: math.unit(200, "lb"),
  25558. name: "Front",
  25559. image: {
  25560. source: "./media/characters/silver/front.svg",
  25561. extra: 472.1 / 450.5,
  25562. bottom: 26.5 / 499.424
  25563. }
  25564. },
  25565. },
  25566. [
  25567. {
  25568. name: "Normal",
  25569. height: math.unit(7, "feet"),
  25570. default: true
  25571. },
  25572. {
  25573. name: "Macro",
  25574. height: math.unit(800, "feet")
  25575. },
  25576. {
  25577. name: "Megamacro",
  25578. height: math.unit(250, "miles")
  25579. },
  25580. ]
  25581. ))
  25582. characterMakers.push(() => makeCharacter(
  25583. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25584. {
  25585. front: {
  25586. height: math.unit(6, "feet"),
  25587. weight: math.unit(150, "lb"),
  25588. name: "Front",
  25589. image: {
  25590. source: "./media/characters/pliskin/front.svg",
  25591. extra: 1469 / 1359,
  25592. bottom: 70 / 1540
  25593. }
  25594. },
  25595. },
  25596. [
  25597. {
  25598. name: "Micro",
  25599. height: math.unit(3, "inches")
  25600. },
  25601. {
  25602. name: "Normal",
  25603. height: math.unit(5 + 11 / 12, "feet"),
  25604. default: true
  25605. },
  25606. {
  25607. name: "Macro",
  25608. height: math.unit(120, "feet")
  25609. },
  25610. ]
  25611. ))
  25612. characterMakers.push(() => makeCharacter(
  25613. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25614. {
  25615. front: {
  25616. height: math.unit(6, "feet"),
  25617. weight: math.unit(150, "lb"),
  25618. name: "Front",
  25619. image: {
  25620. source: "./media/characters/sammy/front.svg",
  25621. extra: 1193 / 1089,
  25622. bottom: 30.5 / 1226
  25623. }
  25624. },
  25625. },
  25626. [
  25627. {
  25628. name: "Macro",
  25629. height: math.unit(1700, "feet"),
  25630. default: true
  25631. },
  25632. {
  25633. name: "Examacro",
  25634. height: math.unit(2.5e9, "lightyears")
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25640. {
  25641. front: {
  25642. height: math.unit(21, "meters"),
  25643. weight: math.unit(12, "tonnes"),
  25644. name: "Front",
  25645. image: {
  25646. source: "./media/characters/kuru/front.svg",
  25647. extra: 4301 / 3785,
  25648. bottom: 371.3 / 4691
  25649. }
  25650. },
  25651. },
  25652. [
  25653. {
  25654. name: "Macro",
  25655. height: math.unit(21, "meters"),
  25656. default: true
  25657. },
  25658. ]
  25659. ))
  25660. characterMakers.push(() => makeCharacter(
  25661. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25662. {
  25663. front: {
  25664. height: math.unit(23, "meters"),
  25665. weight: math.unit(12.2, "tonnes"),
  25666. name: "Front",
  25667. image: {
  25668. source: "./media/characters/rakka/front.svg",
  25669. extra: 4670 / 4169,
  25670. bottom: 301 / 4968.7
  25671. }
  25672. },
  25673. },
  25674. [
  25675. {
  25676. name: "Macro",
  25677. height: math.unit(23, "meters"),
  25678. default: true
  25679. },
  25680. ]
  25681. ))
  25682. characterMakers.push(() => makeCharacter(
  25683. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25684. {
  25685. front: {
  25686. height: math.unit(6, "feet"),
  25687. weight: math.unit(150, "lb"),
  25688. name: "Front",
  25689. image: {
  25690. source: "./media/characters/rhys-feline/front.svg",
  25691. extra: 2488 / 2308,
  25692. bottom: 35.67 / 2519.19
  25693. }
  25694. },
  25695. },
  25696. [
  25697. {
  25698. name: "Really Small",
  25699. height: math.unit(1, "nm")
  25700. },
  25701. {
  25702. name: "Micro",
  25703. height: math.unit(4, "inches")
  25704. },
  25705. {
  25706. name: "Normal",
  25707. height: math.unit(4 + 10 / 12, "feet"),
  25708. default: true
  25709. },
  25710. {
  25711. name: "Macro",
  25712. height: math.unit(100, "feet")
  25713. },
  25714. {
  25715. name: "Megamacto",
  25716. height: math.unit(50, "miles")
  25717. },
  25718. ]
  25719. ))
  25720. characterMakers.push(() => makeCharacter(
  25721. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25722. {
  25723. side: {
  25724. height: math.unit(30, "feet"),
  25725. weight: math.unit(35000, "kg"),
  25726. name: "Side",
  25727. image: {
  25728. source: "./media/characters/alydar/side.svg",
  25729. extra: 234 / 222,
  25730. bottom: 6.5 / 241
  25731. }
  25732. },
  25733. front: {
  25734. height: math.unit(30, "feet"),
  25735. weight: math.unit(35000, "kg"),
  25736. name: "Front",
  25737. image: {
  25738. source: "./media/characters/alydar/front.svg",
  25739. extra: 223.37 / 210.2,
  25740. bottom: 22.3 / 246.76
  25741. }
  25742. },
  25743. top: {
  25744. height: math.unit(64.54, "feet"),
  25745. weight: math.unit(35000, "kg"),
  25746. name: "Top",
  25747. image: {
  25748. source: "./media/characters/alydar/top.svg"
  25749. }
  25750. },
  25751. anthro: {
  25752. height: math.unit(30, "feet"),
  25753. weight: math.unit(9000, "kg"),
  25754. name: "Anthro",
  25755. image: {
  25756. source: "./media/characters/alydar/anthro.svg",
  25757. extra: 432 / 421,
  25758. bottom: 7.18 / 440
  25759. }
  25760. },
  25761. maw: {
  25762. height: math.unit(11.693, "feet"),
  25763. name: "Maw",
  25764. image: {
  25765. source: "./media/characters/alydar/maw.svg"
  25766. }
  25767. },
  25768. head: {
  25769. height: math.unit(11.693, "feet"),
  25770. name: "Head",
  25771. image: {
  25772. source: "./media/characters/alydar/head.svg"
  25773. }
  25774. },
  25775. headAlt: {
  25776. height: math.unit(12.861, "feet"),
  25777. name: "Head (Alt)",
  25778. image: {
  25779. source: "./media/characters/alydar/head-alt.svg"
  25780. }
  25781. },
  25782. wing: {
  25783. height: math.unit(20.712, "feet"),
  25784. name: "Wing",
  25785. image: {
  25786. source: "./media/characters/alydar/wing.svg"
  25787. }
  25788. },
  25789. wingFeather: {
  25790. height: math.unit(9.662, "feet"),
  25791. name: "Wing Feather",
  25792. image: {
  25793. source: "./media/characters/alydar/wing-feather.svg"
  25794. }
  25795. },
  25796. countourFeather: {
  25797. height: math.unit(4.154, "feet"),
  25798. name: "Contour Feather",
  25799. image: {
  25800. source: "./media/characters/alydar/contour-feather.svg"
  25801. }
  25802. },
  25803. },
  25804. [
  25805. {
  25806. name: "Diplomatic",
  25807. height: math.unit(13, "feet"),
  25808. default: true
  25809. },
  25810. {
  25811. name: "Small",
  25812. height: math.unit(30, "feet")
  25813. },
  25814. {
  25815. name: "Normal",
  25816. height: math.unit(95, "feet"),
  25817. default: true
  25818. },
  25819. {
  25820. name: "Large",
  25821. height: math.unit(285, "feet")
  25822. },
  25823. {
  25824. name: "Incomprehensible",
  25825. height: math.unit(450, "megameters")
  25826. },
  25827. ]
  25828. ))
  25829. characterMakers.push(() => makeCharacter(
  25830. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25831. {
  25832. side: {
  25833. height: math.unit(11, "feet"),
  25834. weight: math.unit(1750, "kg"),
  25835. name: "Side",
  25836. image: {
  25837. source: "./media/characters/selicia/side.svg",
  25838. extra: 440 / 396,
  25839. bottom: 24.8 / 465.979
  25840. }
  25841. },
  25842. maw: {
  25843. height: math.unit(4.665, "feet"),
  25844. name: "Maw",
  25845. image: {
  25846. source: "./media/characters/selicia/maw.svg"
  25847. }
  25848. },
  25849. },
  25850. [
  25851. {
  25852. name: "Normal",
  25853. height: math.unit(11, "feet"),
  25854. default: true
  25855. },
  25856. ]
  25857. ))
  25858. characterMakers.push(() => makeCharacter(
  25859. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25860. {
  25861. side: {
  25862. height: math.unit(2 + 6 / 12, "feet"),
  25863. weight: math.unit(30, "lb"),
  25864. name: "Side",
  25865. image: {
  25866. source: "./media/characters/layla/side.svg",
  25867. extra: 244 / 188,
  25868. bottom: 18.2 / 262.1
  25869. }
  25870. },
  25871. back: {
  25872. height: math.unit(2 + 6 / 12, "feet"),
  25873. weight: math.unit(30, "lb"),
  25874. name: "Back",
  25875. image: {
  25876. source: "./media/characters/layla/back.svg",
  25877. extra: 308 / 241.5,
  25878. bottom: 8.9 / 316.8
  25879. }
  25880. },
  25881. cumming: {
  25882. height: math.unit(2 + 6 / 12, "feet"),
  25883. weight: math.unit(30, "lb"),
  25884. name: "Cumming",
  25885. image: {
  25886. source: "./media/characters/layla/cumming.svg",
  25887. extra: 342 / 279,
  25888. bottom: 595 / 938
  25889. }
  25890. },
  25891. dickFlaccid: {
  25892. height: math.unit(2.595, "feet"),
  25893. name: "Flaccid Genitals",
  25894. image: {
  25895. source: "./media/characters/layla/dick-flaccid.svg"
  25896. }
  25897. },
  25898. dickErect: {
  25899. height: math.unit(2.359, "feet"),
  25900. name: "Erect Genitals",
  25901. image: {
  25902. source: "./media/characters/layla/dick-erect.svg"
  25903. }
  25904. },
  25905. dragon: {
  25906. height: math.unit(40, "feet"),
  25907. name: "Dragon",
  25908. image: {
  25909. source: "./media/characters/layla/dragon.svg",
  25910. extra: 610/535,
  25911. bottom: 367/977
  25912. }
  25913. },
  25914. taur: {
  25915. height: math.unit(30, "feet"),
  25916. name: "Taur",
  25917. image: {
  25918. source: "./media/characters/layla/taur.svg",
  25919. extra: 1268/1199,
  25920. bottom: 112/1380
  25921. }
  25922. },
  25923. },
  25924. [
  25925. {
  25926. name: "Micro",
  25927. height: math.unit(1, "inch")
  25928. },
  25929. {
  25930. name: "Small",
  25931. height: math.unit(1, "foot")
  25932. },
  25933. {
  25934. name: "Normal",
  25935. height: math.unit(2 + 6 / 12, "feet"),
  25936. default: true
  25937. },
  25938. {
  25939. name: "Macro",
  25940. height: math.unit(200, "feet")
  25941. },
  25942. {
  25943. name: "Megamacro",
  25944. height: math.unit(1000, "miles")
  25945. },
  25946. {
  25947. name: "Planetary",
  25948. height: math.unit(8000, "miles")
  25949. },
  25950. {
  25951. name: "True Layla",
  25952. height: math.unit(200000 * 7, "multiverses")
  25953. },
  25954. ]
  25955. ))
  25956. characterMakers.push(() => makeCharacter(
  25957. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25958. {
  25959. back: {
  25960. height: math.unit(10.5, "feet"),
  25961. weight: math.unit(800, "lb"),
  25962. name: "Back",
  25963. image: {
  25964. source: "./media/characters/knox/back.svg",
  25965. extra: 1486 / 1089,
  25966. bottom: 107 / 1601.4
  25967. }
  25968. },
  25969. side: {
  25970. height: math.unit(10.5, "feet"),
  25971. weight: math.unit(800, "lb"),
  25972. name: "Side",
  25973. image: {
  25974. source: "./media/characters/knox/side.svg",
  25975. extra: 244 / 218,
  25976. bottom: 14 / 260
  25977. }
  25978. },
  25979. },
  25980. [
  25981. {
  25982. name: "Compact",
  25983. height: math.unit(10.5, "feet"),
  25984. default: true
  25985. },
  25986. {
  25987. name: "Dynamax",
  25988. height: math.unit(210, "feet")
  25989. },
  25990. {
  25991. name: "Full Macro",
  25992. height: math.unit(850, "feet")
  25993. },
  25994. ]
  25995. ))
  25996. characterMakers.push(() => makeCharacter(
  25997. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25998. {
  25999. front: {
  26000. height: math.unit(28, "feet"),
  26001. weight: math.unit(10500, "lb"),
  26002. name: "Front",
  26003. image: {
  26004. source: "./media/characters/kayda/front.svg",
  26005. extra: 1536 / 1428,
  26006. bottom: 68.7 / 1603
  26007. }
  26008. },
  26009. back: {
  26010. height: math.unit(28, "feet"),
  26011. weight: math.unit(10500, "lb"),
  26012. name: "Back",
  26013. image: {
  26014. source: "./media/characters/kayda/back.svg",
  26015. extra: 1557 / 1464,
  26016. bottom: 39.5 / 1597.49
  26017. }
  26018. },
  26019. dick: {
  26020. height: math.unit(3.858, "feet"),
  26021. name: "Dick",
  26022. image: {
  26023. source: "./media/characters/kayda/dick.svg"
  26024. }
  26025. },
  26026. },
  26027. [
  26028. {
  26029. name: "Macro",
  26030. height: math.unit(28, "feet"),
  26031. default: true
  26032. },
  26033. ]
  26034. ))
  26035. characterMakers.push(() => makeCharacter(
  26036. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26037. {
  26038. front: {
  26039. height: math.unit(10 + 11 / 12, "feet"),
  26040. weight: math.unit(1400, "lb"),
  26041. name: "Front",
  26042. image: {
  26043. source: "./media/characters/brian/front.svg",
  26044. extra: 737 / 692,
  26045. bottom: 55.4 / 785
  26046. }
  26047. },
  26048. },
  26049. [
  26050. {
  26051. name: "Normal",
  26052. height: math.unit(10 + 11 / 12, "feet"),
  26053. default: true
  26054. },
  26055. ]
  26056. ))
  26057. characterMakers.push(() => makeCharacter(
  26058. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26059. {
  26060. front: {
  26061. height: math.unit(5 + 8 / 12, "feet"),
  26062. weight: math.unit(140, "lb"),
  26063. name: "Front",
  26064. image: {
  26065. source: "./media/characters/khemri/front.svg",
  26066. extra: 4780 / 4059,
  26067. bottom: 80.1 / 4859.25
  26068. }
  26069. },
  26070. },
  26071. [
  26072. {
  26073. name: "Micro",
  26074. height: math.unit(6, "inches")
  26075. },
  26076. {
  26077. name: "Normal",
  26078. height: math.unit(5 + 8 / 12, "feet"),
  26079. default: true
  26080. },
  26081. ]
  26082. ))
  26083. characterMakers.push(() => makeCharacter(
  26084. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26085. {
  26086. front: {
  26087. height: math.unit(13, "feet"),
  26088. weight: math.unit(1700, "lb"),
  26089. name: "Front",
  26090. image: {
  26091. source: "./media/characters/felix-braveheart/front.svg",
  26092. extra: 1222 / 1157,
  26093. bottom: 53.2 / 1280
  26094. }
  26095. },
  26096. back: {
  26097. height: math.unit(13, "feet"),
  26098. weight: math.unit(1700, "lb"),
  26099. name: "Back",
  26100. image: {
  26101. source: "./media/characters/felix-braveheart/back.svg",
  26102. extra: 1277 / 1203,
  26103. bottom: 50.2 / 1327
  26104. }
  26105. },
  26106. feral: {
  26107. height: math.unit(6, "feet"),
  26108. weight: math.unit(400, "lb"),
  26109. name: "Feral",
  26110. image: {
  26111. source: "./media/characters/felix-braveheart/feral.svg",
  26112. extra: 682 / 625,
  26113. bottom: 6.9 / 688
  26114. }
  26115. },
  26116. },
  26117. [
  26118. {
  26119. name: "Normal",
  26120. height: math.unit(13, "feet"),
  26121. default: true
  26122. },
  26123. ]
  26124. ))
  26125. characterMakers.push(() => makeCharacter(
  26126. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26127. {
  26128. side: {
  26129. height: math.unit(5 + 11 / 12, "feet"),
  26130. weight: math.unit(1400, "lb"),
  26131. name: "Side",
  26132. image: {
  26133. source: "./media/characters/shadow-blade/side.svg",
  26134. extra: 1726 / 1267,
  26135. bottom: 58.4 / 1785
  26136. }
  26137. },
  26138. },
  26139. [
  26140. {
  26141. name: "Normal",
  26142. height: math.unit(5 + 11 / 12, "feet"),
  26143. default: true
  26144. },
  26145. ]
  26146. ))
  26147. characterMakers.push(() => makeCharacter(
  26148. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26149. {
  26150. front: {
  26151. height: math.unit(1 + 6 / 12, "feet"),
  26152. weight: math.unit(25, "lb"),
  26153. name: "Front",
  26154. image: {
  26155. source: "./media/characters/karla-halldor/front.svg",
  26156. extra: 1459 / 1383,
  26157. bottom: 12 / 1472
  26158. }
  26159. },
  26160. },
  26161. [
  26162. {
  26163. name: "Normal",
  26164. height: math.unit(1 + 6 / 12, "feet"),
  26165. default: true
  26166. },
  26167. ]
  26168. ))
  26169. characterMakers.push(() => makeCharacter(
  26170. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26171. {
  26172. front: {
  26173. height: math.unit(6 + 2 / 12, "feet"),
  26174. weight: math.unit(160, "lb"),
  26175. name: "Front",
  26176. image: {
  26177. source: "./media/characters/ariam/front.svg",
  26178. extra: 1073/976,
  26179. bottom: 52/1125
  26180. }
  26181. },
  26182. back: {
  26183. height: math.unit(6 + 2/12, "feet"),
  26184. weight: math.unit(160, "lb"),
  26185. name: "Back",
  26186. image: {
  26187. source: "./media/characters/ariam/back.svg",
  26188. extra: 1103/1023,
  26189. bottom: 9/1112
  26190. }
  26191. },
  26192. dressed: {
  26193. height: math.unit(6 + 2/12, "feet"),
  26194. weight: math.unit(160, "lb"),
  26195. name: "Dressed",
  26196. image: {
  26197. source: "./media/characters/ariam/dressed.svg",
  26198. extra: 1099/1009,
  26199. bottom: 25/1124
  26200. }
  26201. },
  26202. squatting: {
  26203. height: math.unit(4.1, "feet"),
  26204. weight: math.unit(160, "lb"),
  26205. name: "Squatting",
  26206. image: {
  26207. source: "./media/characters/ariam/squatting.svg",
  26208. extra: 2617 / 2112,
  26209. bottom: 61.2 / 2681,
  26210. }
  26211. },
  26212. },
  26213. [
  26214. {
  26215. name: "Normal",
  26216. height: math.unit(6 + 2 / 12, "feet"),
  26217. default: true
  26218. },
  26219. {
  26220. name: "Normal+",
  26221. height: math.unit(4, "meters")
  26222. },
  26223. {
  26224. name: "Macro",
  26225. height: math.unit(50, "meters")
  26226. },
  26227. {
  26228. name: "Macro+",
  26229. height: math.unit(100, "meters")
  26230. },
  26231. {
  26232. name: "Megamacro",
  26233. height: math.unit(20, "km")
  26234. },
  26235. {
  26236. name: "Caretaker",
  26237. height: math.unit(444, "megameters")
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26243. {
  26244. front: {
  26245. height: math.unit(1.67, "meters"),
  26246. weight: math.unit(140, "lb"),
  26247. name: "Front",
  26248. image: {
  26249. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26250. extra: 438 / 410,
  26251. bottom: 0.75 / 439
  26252. }
  26253. },
  26254. },
  26255. [
  26256. {
  26257. name: "Shrunken",
  26258. height: math.unit(7.6, "cm")
  26259. },
  26260. {
  26261. name: "Human Scale",
  26262. height: math.unit(1.67, "meters")
  26263. },
  26264. {
  26265. name: "Wolxi Scale",
  26266. height: math.unit(36.7, "meters"),
  26267. default: true
  26268. },
  26269. ]
  26270. ))
  26271. characterMakers.push(() => makeCharacter(
  26272. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26273. {
  26274. front: {
  26275. height: math.unit(1.73, "meters"),
  26276. weight: math.unit(240, "lb"),
  26277. name: "Front",
  26278. image: {
  26279. source: "./media/characters/izue-two-mothers/front.svg",
  26280. extra: 469 / 437,
  26281. bottom: 1.24 / 470.6
  26282. }
  26283. },
  26284. },
  26285. [
  26286. {
  26287. name: "Shrunken",
  26288. height: math.unit(7.86, "cm")
  26289. },
  26290. {
  26291. name: "Human Scale",
  26292. height: math.unit(1.73, "meters")
  26293. },
  26294. {
  26295. name: "Wolxi Scale",
  26296. height: math.unit(38, "meters"),
  26297. default: true
  26298. },
  26299. ]
  26300. ))
  26301. characterMakers.push(() => makeCharacter(
  26302. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26303. {
  26304. front: {
  26305. height: math.unit(1.55, "meters"),
  26306. weight: math.unit(120, "lb"),
  26307. name: "Front",
  26308. image: {
  26309. source: "./media/characters/teeku-love-shack/front.svg",
  26310. extra: 387 / 362,
  26311. bottom: 1.51 / 388
  26312. }
  26313. },
  26314. },
  26315. [
  26316. {
  26317. name: "Shrunken",
  26318. height: math.unit(7, "cm")
  26319. },
  26320. {
  26321. name: "Human Scale",
  26322. height: math.unit(1.55, "meters")
  26323. },
  26324. {
  26325. name: "Wolxi Scale",
  26326. height: math.unit(34.1, "meters"),
  26327. default: true
  26328. },
  26329. ]
  26330. ))
  26331. characterMakers.push(() => makeCharacter(
  26332. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26333. {
  26334. front: {
  26335. height: math.unit(1.83, "meters"),
  26336. weight: math.unit(135, "lb"),
  26337. name: "Front",
  26338. image: {
  26339. source: "./media/characters/dejma-the-red/front.svg",
  26340. extra: 480 / 458,
  26341. bottom: 1.8 / 482
  26342. }
  26343. },
  26344. },
  26345. [
  26346. {
  26347. name: "Shrunken",
  26348. height: math.unit(8.3, "cm")
  26349. },
  26350. {
  26351. name: "Human Scale",
  26352. height: math.unit(1.83, "meters")
  26353. },
  26354. {
  26355. name: "Wolxi Scale",
  26356. height: math.unit(40, "meters"),
  26357. default: true
  26358. },
  26359. ]
  26360. ))
  26361. characterMakers.push(() => makeCharacter(
  26362. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26363. {
  26364. front: {
  26365. height: math.unit(1.78, "meters"),
  26366. weight: math.unit(65, "kg"),
  26367. name: "Front",
  26368. image: {
  26369. source: "./media/characters/aki/front.svg",
  26370. extra: 452 / 415
  26371. }
  26372. },
  26373. frontNsfw: {
  26374. height: math.unit(1.78, "meters"),
  26375. weight: math.unit(65, "kg"),
  26376. name: "Front (NSFW)",
  26377. image: {
  26378. source: "./media/characters/aki/front-nsfw.svg",
  26379. extra: 452 / 415
  26380. }
  26381. },
  26382. back: {
  26383. height: math.unit(1.78, "meters"),
  26384. weight: math.unit(65, "kg"),
  26385. name: "Back",
  26386. image: {
  26387. source: "./media/characters/aki/back.svg",
  26388. extra: 452 / 415
  26389. }
  26390. },
  26391. rump: {
  26392. height: math.unit(2.05, "feet"),
  26393. name: "Rump",
  26394. image: {
  26395. source: "./media/characters/aki/rump.svg"
  26396. }
  26397. },
  26398. dick: {
  26399. height: math.unit(0.95, "feet"),
  26400. name: "Dick",
  26401. image: {
  26402. source: "./media/characters/aki/dick.svg"
  26403. }
  26404. },
  26405. },
  26406. [
  26407. {
  26408. name: "Micro",
  26409. height: math.unit(15, "cm")
  26410. },
  26411. {
  26412. name: "Normal",
  26413. height: math.unit(178, "cm"),
  26414. default: true
  26415. },
  26416. {
  26417. name: "Macro",
  26418. height: math.unit(214, "m")
  26419. },
  26420. {
  26421. name: "Macro+",
  26422. height: math.unit(534, "m")
  26423. },
  26424. ]
  26425. ))
  26426. characterMakers.push(() => makeCharacter(
  26427. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26428. {
  26429. front: {
  26430. height: math.unit(5 + 5 / 12, "feet"),
  26431. weight: math.unit(120, "lb"),
  26432. name: "Front",
  26433. image: {
  26434. source: "./media/characters/ari/front.svg",
  26435. extra: 1550/1471,
  26436. bottom: 39/1589
  26437. }
  26438. },
  26439. },
  26440. [
  26441. {
  26442. name: "Normal",
  26443. height: math.unit(5 + 5 / 12, "feet")
  26444. },
  26445. {
  26446. name: "Macro",
  26447. height: math.unit(100, "feet"),
  26448. default: true
  26449. },
  26450. {
  26451. name: "Megamacro",
  26452. height: math.unit(100, "miles")
  26453. },
  26454. {
  26455. name: "Gigamacro",
  26456. height: math.unit(80000, "miles")
  26457. },
  26458. ]
  26459. ))
  26460. characterMakers.push(() => makeCharacter(
  26461. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26462. {
  26463. side: {
  26464. height: math.unit(9, "feet"),
  26465. weight: math.unit(400, "kg"),
  26466. name: "Side",
  26467. image: {
  26468. source: "./media/characters/bolt/side.svg",
  26469. extra: 1126 / 896,
  26470. bottom: 60 / 1187.3,
  26471. }
  26472. },
  26473. },
  26474. [
  26475. {
  26476. name: "Micro",
  26477. height: math.unit(5, "inches")
  26478. },
  26479. {
  26480. name: "Normal",
  26481. height: math.unit(9, "feet"),
  26482. default: true
  26483. },
  26484. {
  26485. name: "Macro",
  26486. height: math.unit(700, "feet")
  26487. },
  26488. {
  26489. name: "Max Size",
  26490. height: math.unit(1.52e22, "yottameters")
  26491. },
  26492. ]
  26493. ))
  26494. characterMakers.push(() => makeCharacter(
  26495. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26496. {
  26497. front: {
  26498. height: math.unit(4.3, "meters"),
  26499. weight: math.unit(3, "tons"),
  26500. name: "Front",
  26501. image: {
  26502. source: "./media/characters/draekon-sylviar/front.svg",
  26503. extra: 2072/1512,
  26504. bottom: 74/2146
  26505. }
  26506. },
  26507. back: {
  26508. height: math.unit(4.3, "meters"),
  26509. weight: math.unit(3, "tons"),
  26510. name: "Back",
  26511. image: {
  26512. source: "./media/characters/draekon-sylviar/back.svg",
  26513. extra: 1639/1483,
  26514. bottom: 41/1680
  26515. }
  26516. },
  26517. feral: {
  26518. height: math.unit(1.15, "meters"),
  26519. weight: math.unit(3, "tons"),
  26520. name: "Feral",
  26521. image: {
  26522. source: "./media/characters/draekon-sylviar/feral.svg",
  26523. extra: 1033/395,
  26524. bottom: 130/1163
  26525. }
  26526. },
  26527. maw: {
  26528. height: math.unit(1.3, "meters"),
  26529. name: "Maw",
  26530. image: {
  26531. source: "./media/characters/draekon-sylviar/maw.svg"
  26532. }
  26533. },
  26534. mawSeparated: {
  26535. height: math.unit(1.53, "meters"),
  26536. name: "Separated Maw",
  26537. image: {
  26538. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26539. }
  26540. },
  26541. tail: {
  26542. height: math.unit(1.15, "meters"),
  26543. name: "Tail",
  26544. image: {
  26545. source: "./media/characters/draekon-sylviar/tail.svg"
  26546. }
  26547. },
  26548. tailDick: {
  26549. height: math.unit(1.15, "meters"),
  26550. name: "Tail (Dick)",
  26551. image: {
  26552. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26553. }
  26554. },
  26555. tailDickSeparated: {
  26556. height: math.unit(1.19, "meters"),
  26557. name: "Tail (Separated Dick)",
  26558. image: {
  26559. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26560. }
  26561. },
  26562. slit: {
  26563. height: math.unit(1, "meters"),
  26564. name: "Slit",
  26565. image: {
  26566. source: "./media/characters/draekon-sylviar/slit.svg"
  26567. }
  26568. },
  26569. dick: {
  26570. height: math.unit(1.15, "meters"),
  26571. name: "Dick",
  26572. image: {
  26573. source: "./media/characters/draekon-sylviar/dick.svg"
  26574. }
  26575. },
  26576. dickSeparated: {
  26577. height: math.unit(1.1, "meters"),
  26578. name: "Separated Dick",
  26579. image: {
  26580. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26581. }
  26582. },
  26583. sheath: {
  26584. height: math.unit(1.15, "meters"),
  26585. name: "Sheath",
  26586. image: {
  26587. source: "./media/characters/draekon-sylviar/sheath.svg"
  26588. }
  26589. },
  26590. },
  26591. [
  26592. {
  26593. name: "Small",
  26594. height: math.unit(4.53 / 2, "meters"),
  26595. default: true
  26596. },
  26597. {
  26598. name: "Normal",
  26599. height: math.unit(4.53, "meters"),
  26600. default: true
  26601. },
  26602. {
  26603. name: "Large",
  26604. height: math.unit(4.53 * 2, "meters"),
  26605. },
  26606. ]
  26607. ))
  26608. characterMakers.push(() => makeCharacter(
  26609. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26610. {
  26611. front: {
  26612. height: math.unit(6 + 2 / 12, "feet"),
  26613. weight: math.unit(180, "lb"),
  26614. name: "Front",
  26615. image: {
  26616. source: "./media/characters/brawler/front.svg",
  26617. extra: 3301 / 3027,
  26618. bottom: 138 / 3439
  26619. }
  26620. },
  26621. },
  26622. [
  26623. {
  26624. name: "Normal",
  26625. height: math.unit(6 + 2 / 12, "feet"),
  26626. default: true
  26627. },
  26628. ]
  26629. ))
  26630. characterMakers.push(() => makeCharacter(
  26631. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26632. {
  26633. front: {
  26634. height: math.unit(11, "feet"),
  26635. weight: math.unit(1000, "lb"),
  26636. name: "Front",
  26637. image: {
  26638. source: "./media/characters/alex/front.svg",
  26639. bottom: 44.5 / 620
  26640. }
  26641. },
  26642. },
  26643. [
  26644. {
  26645. name: "Micro",
  26646. height: math.unit(5, "inches")
  26647. },
  26648. {
  26649. name: "Normal",
  26650. height: math.unit(11, "feet"),
  26651. default: true
  26652. },
  26653. {
  26654. name: "Macro",
  26655. height: math.unit(9.5e9, "feet")
  26656. },
  26657. {
  26658. name: "Max Size",
  26659. height: math.unit(1.4e283, "yottameters")
  26660. },
  26661. ]
  26662. ))
  26663. characterMakers.push(() => makeCharacter(
  26664. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26665. {
  26666. female: {
  26667. height: math.unit(29.9, "m"),
  26668. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26669. name: "Female",
  26670. image: {
  26671. source: "./media/characters/zenari/female.svg",
  26672. extra: 3281.6 / 3217,
  26673. bottom: 72.2 / 3353
  26674. }
  26675. },
  26676. male: {
  26677. height: math.unit(27.7, "m"),
  26678. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26679. name: "Male",
  26680. image: {
  26681. source: "./media/characters/zenari/male.svg",
  26682. extra: 3008 / 2991,
  26683. bottom: 54.6 / 3069
  26684. }
  26685. },
  26686. },
  26687. [
  26688. {
  26689. name: "Macro",
  26690. height: math.unit(29.7, "meters"),
  26691. default: true
  26692. },
  26693. ]
  26694. ))
  26695. characterMakers.push(() => makeCharacter(
  26696. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26697. {
  26698. female: {
  26699. height: math.unit(23.8, "m"),
  26700. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26701. name: "Female",
  26702. image: {
  26703. source: "./media/characters/mactarian/female.svg",
  26704. extra: 2662 / 2569,
  26705. bottom: 73 / 2736
  26706. }
  26707. },
  26708. male: {
  26709. height: math.unit(23.8, "m"),
  26710. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26711. name: "Male",
  26712. image: {
  26713. source: "./media/characters/mactarian/male.svg",
  26714. extra: 2673 / 2600,
  26715. bottom: 76 / 2750
  26716. }
  26717. },
  26718. },
  26719. [
  26720. {
  26721. name: "Macro",
  26722. height: math.unit(23.8, "meters"),
  26723. default: true
  26724. },
  26725. ]
  26726. ))
  26727. characterMakers.push(() => makeCharacter(
  26728. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26729. {
  26730. female: {
  26731. height: math.unit(19.3, "m"),
  26732. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26733. name: "Female",
  26734. image: {
  26735. source: "./media/characters/umok/female.svg",
  26736. extra: 2186 / 2078,
  26737. bottom: 87 / 2277
  26738. }
  26739. },
  26740. male: {
  26741. height: math.unit(19.5, "m"),
  26742. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26743. name: "Male",
  26744. image: {
  26745. source: "./media/characters/umok/male.svg",
  26746. extra: 2233 / 2140,
  26747. bottom: 24.4 / 2258
  26748. }
  26749. },
  26750. },
  26751. [
  26752. {
  26753. name: "Macro",
  26754. height: math.unit(19.3, "meters"),
  26755. default: true
  26756. },
  26757. ]
  26758. ))
  26759. characterMakers.push(() => makeCharacter(
  26760. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26761. {
  26762. female: {
  26763. height: math.unit(26.15, "m"),
  26764. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26765. name: "Female",
  26766. image: {
  26767. source: "./media/characters/joraxian/female.svg",
  26768. extra: 2912 / 2824,
  26769. bottom: 36 / 2956
  26770. }
  26771. },
  26772. male: {
  26773. height: math.unit(25.4, "m"),
  26774. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26775. name: "Male",
  26776. image: {
  26777. source: "./media/characters/joraxian/male.svg",
  26778. extra: 2877 / 2721,
  26779. bottom: 82 / 2967
  26780. }
  26781. },
  26782. },
  26783. [
  26784. {
  26785. name: "Macro",
  26786. height: math.unit(26.15, "meters"),
  26787. default: true
  26788. },
  26789. ]
  26790. ))
  26791. characterMakers.push(() => makeCharacter(
  26792. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26793. {
  26794. female: {
  26795. height: math.unit(21.6, "m"),
  26796. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26797. name: "Female",
  26798. image: {
  26799. source: "./media/characters/sthara/female.svg",
  26800. extra: 2516 / 2347,
  26801. bottom: 21.5 / 2537
  26802. }
  26803. },
  26804. male: {
  26805. height: math.unit(24, "m"),
  26806. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26807. name: "Male",
  26808. image: {
  26809. source: "./media/characters/sthara/male.svg",
  26810. extra: 2732 / 2607,
  26811. bottom: 23 / 2732
  26812. }
  26813. },
  26814. },
  26815. [
  26816. {
  26817. name: "Macro",
  26818. height: math.unit(21.6, "meters"),
  26819. default: true
  26820. },
  26821. ]
  26822. ))
  26823. characterMakers.push(() => makeCharacter(
  26824. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26825. {
  26826. front: {
  26827. height: math.unit(6 + 4 / 12, "feet"),
  26828. weight: math.unit(175, "lb"),
  26829. name: "Front",
  26830. image: {
  26831. source: "./media/characters/luka-bryzant/front.svg",
  26832. extra: 311 / 289,
  26833. bottom: 4 / 315
  26834. }
  26835. },
  26836. back: {
  26837. height: math.unit(6 + 4 / 12, "feet"),
  26838. weight: math.unit(175, "lb"),
  26839. name: "Back",
  26840. image: {
  26841. source: "./media/characters/luka-bryzant/back.svg",
  26842. extra: 311 / 289,
  26843. bottom: 3.8 / 313.7
  26844. }
  26845. },
  26846. },
  26847. [
  26848. {
  26849. name: "Micro",
  26850. height: math.unit(10, "inches")
  26851. },
  26852. {
  26853. name: "Normal",
  26854. height: math.unit(6 + 4 / 12, "feet"),
  26855. default: true
  26856. },
  26857. {
  26858. name: "Large",
  26859. height: math.unit(12, "feet")
  26860. },
  26861. ]
  26862. ))
  26863. characterMakers.push(() => makeCharacter(
  26864. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26865. {
  26866. front: {
  26867. height: math.unit(5 + 7 / 12, "feet"),
  26868. weight: math.unit(185, "lb"),
  26869. name: "Front",
  26870. image: {
  26871. source: "./media/characters/aman-aquila/front.svg",
  26872. extra: 1013 / 976,
  26873. bottom: 45.6 / 1057
  26874. }
  26875. },
  26876. side: {
  26877. height: math.unit(5 + 7 / 12, "feet"),
  26878. weight: math.unit(185, "lb"),
  26879. name: "Side",
  26880. image: {
  26881. source: "./media/characters/aman-aquila/side.svg",
  26882. extra: 1054 / 1011,
  26883. bottom: 15 / 1070
  26884. }
  26885. },
  26886. back: {
  26887. height: math.unit(5 + 7 / 12, "feet"),
  26888. weight: math.unit(185, "lb"),
  26889. name: "Back",
  26890. image: {
  26891. source: "./media/characters/aman-aquila/back.svg",
  26892. extra: 1026 / 970,
  26893. bottom: 12 / 1039
  26894. }
  26895. },
  26896. head: {
  26897. height: math.unit(1.211, "feet"),
  26898. name: "Head",
  26899. image: {
  26900. source: "./media/characters/aman-aquila/head.svg",
  26901. }
  26902. },
  26903. },
  26904. [
  26905. {
  26906. name: "Minimicro",
  26907. height: math.unit(0.057, "inches")
  26908. },
  26909. {
  26910. name: "Micro",
  26911. height: math.unit(7, "inches")
  26912. },
  26913. {
  26914. name: "Mini",
  26915. height: math.unit(3 + 7 / 12, "feet")
  26916. },
  26917. {
  26918. name: "Normal",
  26919. height: math.unit(5 + 7 / 12, "feet"),
  26920. default: true
  26921. },
  26922. {
  26923. name: "Macro",
  26924. height: math.unit(157 + 7 / 12, "feet")
  26925. },
  26926. {
  26927. name: "Megamacro",
  26928. height: math.unit(1557 + 7 / 12, "feet")
  26929. },
  26930. {
  26931. name: "Gigamacro",
  26932. height: math.unit(15557 + 7 / 12, "feet")
  26933. },
  26934. ]
  26935. ))
  26936. characterMakers.push(() => makeCharacter(
  26937. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26938. {
  26939. front: {
  26940. height: math.unit(3 + 2 / 12, "inches"),
  26941. weight: math.unit(0.3, "ounces"),
  26942. name: "Front",
  26943. image: {
  26944. source: "./media/characters/hiphae/front.svg",
  26945. extra: 1931 / 1683,
  26946. bottom: 24 / 1955
  26947. }
  26948. },
  26949. },
  26950. [
  26951. {
  26952. name: "Normal",
  26953. height: math.unit(3 + 1 / 2, "inches"),
  26954. default: true
  26955. },
  26956. ]
  26957. ))
  26958. characterMakers.push(() => makeCharacter(
  26959. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26960. {
  26961. front: {
  26962. height: math.unit(5 + 10 / 12, "feet"),
  26963. weight: math.unit(165, "lb"),
  26964. name: "Front",
  26965. image: {
  26966. source: "./media/characters/nicky/front.svg",
  26967. extra: 3144 / 2886,
  26968. bottom: 45.6 / 3192
  26969. }
  26970. },
  26971. back: {
  26972. height: math.unit(5 + 10 / 12, "feet"),
  26973. weight: math.unit(165, "lb"),
  26974. name: "Back",
  26975. image: {
  26976. source: "./media/characters/nicky/back.svg",
  26977. extra: 3055 / 2804,
  26978. bottom: 28.4 / 3087
  26979. }
  26980. },
  26981. frontclothed: {
  26982. height: math.unit(5 + 10 / 12, "feet"),
  26983. weight: math.unit(165, "lb"),
  26984. name: "Front-clothed",
  26985. image: {
  26986. source: "./media/characters/nicky/front-clothed.svg",
  26987. extra: 3184.9 / 2926.9,
  26988. bottom: 86.5 / 3239.9
  26989. }
  26990. },
  26991. foot: {
  26992. height: math.unit(1.16, "feet"),
  26993. name: "Foot",
  26994. image: {
  26995. source: "./media/characters/nicky/foot.svg"
  26996. }
  26997. },
  26998. feet: {
  26999. height: math.unit(1.34, "feet"),
  27000. name: "Feet",
  27001. image: {
  27002. source: "./media/characters/nicky/feet.svg"
  27003. }
  27004. },
  27005. maw: {
  27006. height: math.unit(0.9, "feet"),
  27007. name: "Maw",
  27008. image: {
  27009. source: "./media/characters/nicky/maw.svg"
  27010. }
  27011. },
  27012. },
  27013. [
  27014. {
  27015. name: "Normal",
  27016. height: math.unit(5 + 10 / 12, "feet"),
  27017. default: true
  27018. },
  27019. {
  27020. name: "Macro",
  27021. height: math.unit(60, "feet")
  27022. },
  27023. {
  27024. name: "Megamacro",
  27025. height: math.unit(1, "mile")
  27026. },
  27027. ]
  27028. ))
  27029. characterMakers.push(() => makeCharacter(
  27030. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27031. {
  27032. side: {
  27033. height: math.unit(10, "feet"),
  27034. weight: math.unit(600, "lb"),
  27035. name: "Side",
  27036. image: {
  27037. source: "./media/characters/blair/side.svg",
  27038. bottom: 16.6 / 475,
  27039. extra: 458 / 431
  27040. }
  27041. },
  27042. },
  27043. [
  27044. {
  27045. name: "Micro",
  27046. height: math.unit(8, "inches")
  27047. },
  27048. {
  27049. name: "Normal",
  27050. height: math.unit(10, "feet"),
  27051. default: true
  27052. },
  27053. {
  27054. name: "Macro",
  27055. height: math.unit(180, "feet")
  27056. },
  27057. ]
  27058. ))
  27059. characterMakers.push(() => makeCharacter(
  27060. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27061. {
  27062. front: {
  27063. height: math.unit(5 + 4 / 12, "feet"),
  27064. weight: math.unit(125, "lb"),
  27065. name: "Front",
  27066. image: {
  27067. source: "./media/characters/fisher/front.svg",
  27068. extra: 444 / 390,
  27069. bottom: 2 / 444.8
  27070. }
  27071. },
  27072. },
  27073. [
  27074. {
  27075. name: "Micro",
  27076. height: math.unit(4, "inches")
  27077. },
  27078. {
  27079. name: "Normal",
  27080. height: math.unit(5 + 4 / 12, "feet"),
  27081. default: true
  27082. },
  27083. {
  27084. name: "Macro",
  27085. height: math.unit(100, "feet")
  27086. },
  27087. ]
  27088. ))
  27089. characterMakers.push(() => makeCharacter(
  27090. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27091. {
  27092. front: {
  27093. height: math.unit(6.71, "feet"),
  27094. weight: math.unit(200, "lb"),
  27095. preyCapacity: math.unit(1000000, "people"),
  27096. name: "Front",
  27097. image: {
  27098. source: "./media/characters/gliss/front.svg",
  27099. extra: 2347 / 2231,
  27100. bottom: 113 / 2462
  27101. }
  27102. },
  27103. hammerspaceSize: {
  27104. height: math.unit(6.71 * 717, "feet"),
  27105. weight: math.unit(200, "lb"),
  27106. preyCapacity: math.unit(1000000, "people"),
  27107. name: "Hammerspace Size",
  27108. image: {
  27109. source: "./media/characters/gliss/front.svg",
  27110. extra: 2347 / 2231,
  27111. bottom: 113 / 2462
  27112. }
  27113. },
  27114. },
  27115. [
  27116. {
  27117. name: "Normal",
  27118. height: math.unit(6.71, "feet"),
  27119. default: true
  27120. },
  27121. ]
  27122. ))
  27123. characterMakers.push(() => makeCharacter(
  27124. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27125. {
  27126. side: {
  27127. height: math.unit(1.44, "m"),
  27128. weight: math.unit(80, "kg"),
  27129. name: "Side",
  27130. image: {
  27131. source: "./media/characters/dune-anderson/side.svg",
  27132. bottom: 49 / 1426
  27133. }
  27134. },
  27135. },
  27136. [
  27137. {
  27138. name: "Wolf-sized",
  27139. height: math.unit(1.44, "meters")
  27140. },
  27141. {
  27142. name: "Normal",
  27143. height: math.unit(5.05, "meters"),
  27144. default: true
  27145. },
  27146. {
  27147. name: "Big",
  27148. height: math.unit(14.4, "meters")
  27149. },
  27150. {
  27151. name: "Huge",
  27152. height: math.unit(144, "meters")
  27153. },
  27154. ]
  27155. ))
  27156. characterMakers.push(() => makeCharacter(
  27157. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27158. {
  27159. front: {
  27160. height: math.unit(7, "feet"),
  27161. weight: math.unit(425, "lb"),
  27162. name: "Front",
  27163. image: {
  27164. source: "./media/characters/hind/front.svg",
  27165. extra: 2091 / 1860,
  27166. bottom: 129 / 2220
  27167. }
  27168. },
  27169. back: {
  27170. height: math.unit(7, "feet"),
  27171. weight: math.unit(425, "lb"),
  27172. name: "Back",
  27173. image: {
  27174. source: "./media/characters/hind/back.svg",
  27175. extra: 2091 / 1860,
  27176. bottom: 24.6 / 2309
  27177. }
  27178. },
  27179. tail: {
  27180. height: math.unit(2.8, "feet"),
  27181. name: "Tail",
  27182. image: {
  27183. source: "./media/characters/hind/tail.svg"
  27184. }
  27185. },
  27186. head: {
  27187. height: math.unit(2.55, "feet"),
  27188. name: "Head",
  27189. image: {
  27190. source: "./media/characters/hind/head.svg"
  27191. }
  27192. },
  27193. },
  27194. [
  27195. {
  27196. name: "XS",
  27197. height: math.unit(0.7, "feet")
  27198. },
  27199. {
  27200. name: "Normal",
  27201. height: math.unit(7, "feet"),
  27202. default: true
  27203. },
  27204. {
  27205. name: "XL",
  27206. height: math.unit(70, "feet")
  27207. },
  27208. ]
  27209. ))
  27210. characterMakers.push(() => makeCharacter(
  27211. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27212. {
  27213. front: {
  27214. height: math.unit(2.1, "meters"),
  27215. weight: math.unit(150, "lb"),
  27216. name: "Front",
  27217. image: {
  27218. source: "./media/characters/tharquench-sizestealer/front.svg",
  27219. extra: 1605/1470,
  27220. bottom: 36/1641
  27221. }
  27222. },
  27223. frontAlt: {
  27224. height: math.unit(2.1, "meters"),
  27225. weight: math.unit(150, "lb"),
  27226. name: "Front (Alt)",
  27227. image: {
  27228. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27229. extra: 2318 / 2063,
  27230. bottom: 93.4 / 2410
  27231. }
  27232. },
  27233. },
  27234. [
  27235. {
  27236. name: "Nano",
  27237. height: math.unit(1, "mm")
  27238. },
  27239. {
  27240. name: "Micro",
  27241. height: math.unit(1, "cm")
  27242. },
  27243. {
  27244. name: "Normal",
  27245. height: math.unit(2.1, "meters"),
  27246. default: true
  27247. },
  27248. ]
  27249. ))
  27250. characterMakers.push(() => makeCharacter(
  27251. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27252. {
  27253. front: {
  27254. height: math.unit(7 + 5 / 12, "feet"),
  27255. weight: math.unit(357, "lb"),
  27256. name: "Front",
  27257. image: {
  27258. source: "./media/characters/solex-draconov/front.svg",
  27259. extra: 1993 / 1865,
  27260. bottom: 117 / 2111
  27261. }
  27262. },
  27263. },
  27264. [
  27265. {
  27266. name: "Natural Height",
  27267. height: math.unit(7 + 5 / 12, "feet"),
  27268. default: true
  27269. },
  27270. {
  27271. name: "Macro",
  27272. height: math.unit(350, "feet")
  27273. },
  27274. {
  27275. name: "Macro+",
  27276. height: math.unit(1000, "feet")
  27277. },
  27278. {
  27279. name: "Megamacro",
  27280. height: math.unit(20, "km")
  27281. },
  27282. {
  27283. name: "Megamacro+",
  27284. height: math.unit(1000, "km")
  27285. },
  27286. {
  27287. name: "Gigamacro",
  27288. height: math.unit(2.5, "Gm")
  27289. },
  27290. {
  27291. name: "Teramacro",
  27292. height: math.unit(15, "Tm")
  27293. },
  27294. {
  27295. name: "Galactic",
  27296. height: math.unit(30, "Zm")
  27297. },
  27298. {
  27299. name: "Universal",
  27300. height: math.unit(21000, "Ym")
  27301. },
  27302. {
  27303. name: "Omniversal",
  27304. height: math.unit(9.861e50, "Ym")
  27305. },
  27306. {
  27307. name: "Existential",
  27308. height: math.unit(1e300, "meters")
  27309. },
  27310. ]
  27311. ))
  27312. characterMakers.push(() => makeCharacter(
  27313. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27314. {
  27315. side: {
  27316. height: math.unit(25, "feet"),
  27317. weight: math.unit(90000, "lb"),
  27318. name: "Side",
  27319. image: {
  27320. source: "./media/characters/mandarax/side.svg",
  27321. extra: 614 / 332,
  27322. bottom: 55 / 630
  27323. }
  27324. },
  27325. lounging: {
  27326. height: math.unit(15.4, "feet"),
  27327. weight: math.unit(90000, "lb"),
  27328. name: "Lounging",
  27329. image: {
  27330. source: "./media/characters/mandarax/lounging.svg",
  27331. extra: 817/609,
  27332. bottom: 685/1502
  27333. }
  27334. },
  27335. head: {
  27336. height: math.unit(11.4, "feet"),
  27337. name: "Head",
  27338. image: {
  27339. source: "./media/characters/mandarax/head.svg"
  27340. }
  27341. },
  27342. belly: {
  27343. height: math.unit(33, "feet"),
  27344. name: "Belly",
  27345. preyCapacity: math.unit(500, "people"),
  27346. image: {
  27347. source: "./media/characters/mandarax/belly.svg"
  27348. }
  27349. },
  27350. dick: {
  27351. height: math.unit(8.46, "feet"),
  27352. name: "Dick",
  27353. image: {
  27354. source: "./media/characters/mandarax/dick.svg"
  27355. }
  27356. },
  27357. top: {
  27358. height: math.unit(28, "meters"),
  27359. name: "Top",
  27360. image: {
  27361. source: "./media/characters/mandarax/top.svg"
  27362. }
  27363. },
  27364. },
  27365. [
  27366. {
  27367. name: "Normal",
  27368. height: math.unit(25, "feet"),
  27369. default: true
  27370. },
  27371. ]
  27372. ))
  27373. characterMakers.push(() => makeCharacter(
  27374. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27375. {
  27376. front: {
  27377. height: math.unit(5, "feet"),
  27378. weight: math.unit(90, "lb"),
  27379. name: "Front",
  27380. image: {
  27381. source: "./media/characters/pixil/front.svg",
  27382. extra: 2000 / 1618,
  27383. bottom: 12.3 / 2011
  27384. }
  27385. },
  27386. },
  27387. [
  27388. {
  27389. name: "Normal",
  27390. height: math.unit(5, "feet"),
  27391. default: true
  27392. },
  27393. {
  27394. name: "Megamacro",
  27395. height: math.unit(10, "miles"),
  27396. },
  27397. ]
  27398. ))
  27399. characterMakers.push(() => makeCharacter(
  27400. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27401. {
  27402. front: {
  27403. height: math.unit(7 + 2 / 12, "feet"),
  27404. weight: math.unit(200, "lb"),
  27405. name: "Front",
  27406. image: {
  27407. source: "./media/characters/angel/front.svg",
  27408. extra: 1830 / 1737,
  27409. bottom: 22.6 / 1854,
  27410. }
  27411. },
  27412. },
  27413. [
  27414. {
  27415. name: "Normal",
  27416. height: math.unit(7 + 2 / 12, "feet"),
  27417. default: true
  27418. },
  27419. {
  27420. name: "Macro",
  27421. height: math.unit(1000, "feet")
  27422. },
  27423. {
  27424. name: "Megamacro",
  27425. height: math.unit(2, "miles")
  27426. },
  27427. {
  27428. name: "Gigamacro",
  27429. height: math.unit(20, "earths")
  27430. },
  27431. ]
  27432. ))
  27433. characterMakers.push(() => makeCharacter(
  27434. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27435. {
  27436. front: {
  27437. height: math.unit(5, "feet"),
  27438. weight: math.unit(180, "lb"),
  27439. name: "Front",
  27440. image: {
  27441. source: "./media/characters/mekana/front.svg",
  27442. extra: 1671 / 1605,
  27443. bottom: 3.5 / 1691
  27444. }
  27445. },
  27446. side: {
  27447. height: math.unit(5, "feet"),
  27448. weight: math.unit(180, "lb"),
  27449. name: "Side",
  27450. image: {
  27451. source: "./media/characters/mekana/side.svg",
  27452. extra: 1671 / 1605,
  27453. bottom: 3.5 / 1691
  27454. }
  27455. },
  27456. back: {
  27457. height: math.unit(5, "feet"),
  27458. weight: math.unit(180, "lb"),
  27459. name: "Back",
  27460. image: {
  27461. source: "./media/characters/mekana/back.svg",
  27462. extra: 1671 / 1605,
  27463. bottom: 3.5 / 1691
  27464. }
  27465. },
  27466. },
  27467. [
  27468. {
  27469. name: "Normal",
  27470. height: math.unit(5, "feet"),
  27471. default: true
  27472. },
  27473. ]
  27474. ))
  27475. characterMakers.push(() => makeCharacter(
  27476. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27477. {
  27478. front: {
  27479. height: math.unit(4 + 6 / 12, "feet"),
  27480. weight: math.unit(80, "lb"),
  27481. name: "Front",
  27482. image: {
  27483. source: "./media/characters/pixie/front.svg",
  27484. extra: 1924 / 1825,
  27485. bottom: 22.4 / 1946
  27486. }
  27487. },
  27488. },
  27489. [
  27490. {
  27491. name: "Normal",
  27492. height: math.unit(4 + 6 / 12, "feet"),
  27493. default: true
  27494. },
  27495. {
  27496. name: "Macro",
  27497. height: math.unit(40, "feet")
  27498. },
  27499. ]
  27500. ))
  27501. characterMakers.push(() => makeCharacter(
  27502. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27503. {
  27504. front: {
  27505. height: math.unit(2.1, "meters"),
  27506. weight: math.unit(200, "lb"),
  27507. name: "Front",
  27508. image: {
  27509. source: "./media/characters/the-lascivious/front.svg",
  27510. extra: 1 / 0.893,
  27511. bottom: 3.5 / 573.7
  27512. }
  27513. },
  27514. },
  27515. [
  27516. {
  27517. name: "Human Scale",
  27518. height: math.unit(2.1, "meters")
  27519. },
  27520. {
  27521. name: "Wolxi Scale",
  27522. height: math.unit(46.2, "m"),
  27523. default: true
  27524. },
  27525. {
  27526. name: "Boinker of Buildings",
  27527. height: math.unit(10, "km")
  27528. },
  27529. {
  27530. name: "Shagger of Skyscrapers",
  27531. height: math.unit(40, "km")
  27532. },
  27533. {
  27534. name: "Banger of Boroughs",
  27535. height: math.unit(4000, "km")
  27536. },
  27537. {
  27538. name: "Screwer of States",
  27539. height: math.unit(100000, "km")
  27540. },
  27541. {
  27542. name: "Pounder of Planets",
  27543. height: math.unit(2000000, "km")
  27544. },
  27545. ]
  27546. ))
  27547. characterMakers.push(() => makeCharacter(
  27548. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27549. {
  27550. front: {
  27551. height: math.unit(6, "feet"),
  27552. weight: math.unit(150, "lb"),
  27553. name: "Front",
  27554. image: {
  27555. source: "./media/characters/aj/front.svg",
  27556. extra: 2039 / 1562,
  27557. bottom: 40 / 2079
  27558. }
  27559. },
  27560. },
  27561. [
  27562. {
  27563. name: "Normal",
  27564. height: math.unit(11 + 6 / 12, "feet"),
  27565. default: true
  27566. },
  27567. {
  27568. name: "Megamacro",
  27569. height: math.unit(60, "megameters")
  27570. },
  27571. ]
  27572. ))
  27573. characterMakers.push(() => makeCharacter(
  27574. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27575. {
  27576. side: {
  27577. height: math.unit(31 + 8 / 12, "feet"),
  27578. weight: math.unit(75000, "kg"),
  27579. name: "Side",
  27580. image: {
  27581. source: "./media/characters/koros/side.svg",
  27582. extra: 1442 / 1297,
  27583. bottom: 122.7 / 1562
  27584. }
  27585. },
  27586. dicksKingsCrown: {
  27587. height: math.unit(6, "feet"),
  27588. name: "Dicks (King's Crown)",
  27589. image: {
  27590. source: "./media/characters/koros/dicks-kings-crown.svg"
  27591. }
  27592. },
  27593. dicksTailSet: {
  27594. height: math.unit(3, "feet"),
  27595. name: "Dicks (Tail Set)",
  27596. image: {
  27597. source: "./media/characters/koros/dicks-tail-set.svg"
  27598. }
  27599. },
  27600. dickCumming: {
  27601. height: math.unit(7.98, "feet"),
  27602. name: "Dick (Cumming)",
  27603. image: {
  27604. source: "./media/characters/koros/dick-cumming.svg"
  27605. }
  27606. },
  27607. dicksBack: {
  27608. height: math.unit(5.9, "feet"),
  27609. name: "Dicks (Back)",
  27610. image: {
  27611. source: "./media/characters/koros/dicks-back.svg"
  27612. }
  27613. },
  27614. dicksFront: {
  27615. height: math.unit(3.72, "feet"),
  27616. name: "Dicks (Front)",
  27617. image: {
  27618. source: "./media/characters/koros/dicks-front.svg"
  27619. }
  27620. },
  27621. dicksPeeking: {
  27622. height: math.unit(3.0, "feet"),
  27623. name: "Dicks (Peeking)",
  27624. image: {
  27625. source: "./media/characters/koros/dicks-peeking.svg"
  27626. }
  27627. },
  27628. eye: {
  27629. height: math.unit(1.7, "feet"),
  27630. name: "Eye",
  27631. image: {
  27632. source: "./media/characters/koros/eye.svg"
  27633. }
  27634. },
  27635. headFront: {
  27636. height: math.unit(11.69, "feet"),
  27637. name: "Head (Front)",
  27638. image: {
  27639. source: "./media/characters/koros/head-front.svg"
  27640. }
  27641. },
  27642. headSide: {
  27643. height: math.unit(14, "feet"),
  27644. name: "Head (Side)",
  27645. image: {
  27646. source: "./media/characters/koros/head-side.svg"
  27647. }
  27648. },
  27649. leg: {
  27650. height: math.unit(17, "feet"),
  27651. name: "Leg",
  27652. image: {
  27653. source: "./media/characters/koros/leg.svg"
  27654. }
  27655. },
  27656. mawSide: {
  27657. height: math.unit(12.8, "feet"),
  27658. name: "Maw (Side)",
  27659. image: {
  27660. source: "./media/characters/koros/maw-side.svg"
  27661. }
  27662. },
  27663. mawSpitting: {
  27664. height: math.unit(17, "feet"),
  27665. name: "Maw (Spitting)",
  27666. image: {
  27667. source: "./media/characters/koros/maw-spitting.svg"
  27668. }
  27669. },
  27670. slit: {
  27671. height: math.unit(2.8, "feet"),
  27672. name: "Slit",
  27673. image: {
  27674. source: "./media/characters/koros/slit.svg"
  27675. }
  27676. },
  27677. stomach: {
  27678. height: math.unit(6.8, "feet"),
  27679. preyCapacity: math.unit(20, "people"),
  27680. name: "Stomach",
  27681. image: {
  27682. source: "./media/characters/koros/stomach.svg"
  27683. }
  27684. },
  27685. wingspanBottom: {
  27686. height: math.unit(114, "feet"),
  27687. name: "Wingspan (Bottom)",
  27688. image: {
  27689. source: "./media/characters/koros/wingspan-bottom.svg"
  27690. }
  27691. },
  27692. wingspanTop: {
  27693. height: math.unit(104, "feet"),
  27694. name: "Wingspan (Top)",
  27695. image: {
  27696. source: "./media/characters/koros/wingspan-top.svg"
  27697. }
  27698. },
  27699. },
  27700. [
  27701. {
  27702. name: "Normal",
  27703. height: math.unit(31 + 8 / 12, "feet"),
  27704. default: true
  27705. },
  27706. ]
  27707. ))
  27708. characterMakers.push(() => makeCharacter(
  27709. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27710. {
  27711. front: {
  27712. height: math.unit(18 + 5 / 12, "feet"),
  27713. weight: math.unit(3750, "kg"),
  27714. name: "Front",
  27715. image: {
  27716. source: "./media/characters/vexx/front.svg",
  27717. extra: 426 / 396,
  27718. bottom: 31.5 / 458
  27719. }
  27720. },
  27721. maw: {
  27722. height: math.unit(6, "feet"),
  27723. name: "Maw",
  27724. image: {
  27725. source: "./media/characters/vexx/maw.svg"
  27726. }
  27727. },
  27728. },
  27729. [
  27730. {
  27731. name: "Normal",
  27732. height: math.unit(18 + 5 / 12, "feet"),
  27733. default: true
  27734. },
  27735. ]
  27736. ))
  27737. characterMakers.push(() => makeCharacter(
  27738. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27739. {
  27740. front: {
  27741. height: math.unit(17 + 6 / 12, "feet"),
  27742. weight: math.unit(150, "lb"),
  27743. name: "Front",
  27744. image: {
  27745. source: "./media/characters/baadra/front.svg",
  27746. extra: 1694/1553,
  27747. bottom: 179/1873
  27748. }
  27749. },
  27750. frontAlt: {
  27751. height: math.unit(17 + 6 / 12, "feet"),
  27752. weight: math.unit(150, "lb"),
  27753. name: "Front (Alt)",
  27754. image: {
  27755. source: "./media/characters/baadra/front-alt.svg",
  27756. extra: 3137 / 2890,
  27757. bottom: 168.4 / 3305
  27758. }
  27759. },
  27760. back: {
  27761. height: math.unit(17 + 6 / 12, "feet"),
  27762. weight: math.unit(150, "lb"),
  27763. name: "Back",
  27764. image: {
  27765. source: "./media/characters/baadra/back.svg",
  27766. extra: 3142 / 2890,
  27767. bottom: 220 / 3371
  27768. }
  27769. },
  27770. head: {
  27771. height: math.unit(5.45, "feet"),
  27772. name: "Head",
  27773. image: {
  27774. source: "./media/characters/baadra/head.svg"
  27775. }
  27776. },
  27777. headAngry: {
  27778. height: math.unit(4.95, "feet"),
  27779. name: "Head (Angry)",
  27780. image: {
  27781. source: "./media/characters/baadra/head-angry.svg"
  27782. }
  27783. },
  27784. headOpen: {
  27785. height: math.unit(6, "feet"),
  27786. name: "Head (Open)",
  27787. image: {
  27788. source: "./media/characters/baadra/head-open.svg"
  27789. }
  27790. },
  27791. },
  27792. [
  27793. {
  27794. name: "Normal",
  27795. height: math.unit(17 + 6 / 12, "feet"),
  27796. default: true
  27797. },
  27798. ]
  27799. ))
  27800. characterMakers.push(() => makeCharacter(
  27801. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27802. {
  27803. front: {
  27804. height: math.unit(7 + 3 / 12, "feet"),
  27805. weight: math.unit(180, "lb"),
  27806. name: "Front",
  27807. image: {
  27808. source: "./media/characters/juri/front.svg",
  27809. extra: 1401 / 1237,
  27810. bottom: 18.5 / 1418
  27811. }
  27812. },
  27813. side: {
  27814. height: math.unit(7 + 3 / 12, "feet"),
  27815. weight: math.unit(180, "lb"),
  27816. name: "Side",
  27817. image: {
  27818. source: "./media/characters/juri/side.svg",
  27819. extra: 1424 / 1242,
  27820. bottom: 18.5 / 1447
  27821. }
  27822. },
  27823. sitting: {
  27824. height: math.unit(6, "feet"),
  27825. weight: math.unit(180, "lb"),
  27826. name: "Sitting",
  27827. image: {
  27828. source: "./media/characters/juri/sitting.svg",
  27829. extra: 1270 / 1143,
  27830. bottom: 100 / 1343
  27831. }
  27832. },
  27833. back: {
  27834. height: math.unit(7 + 3 / 12, "feet"),
  27835. weight: math.unit(180, "lb"),
  27836. name: "Back",
  27837. image: {
  27838. source: "./media/characters/juri/back.svg",
  27839. extra: 1377 / 1240,
  27840. bottom: 23.7 / 1405
  27841. }
  27842. },
  27843. maw: {
  27844. height: math.unit(2.8, "feet"),
  27845. name: "Maw",
  27846. image: {
  27847. source: "./media/characters/juri/maw.svg"
  27848. }
  27849. },
  27850. stomach: {
  27851. height: math.unit(0.89, "feet"),
  27852. preyCapacity: math.unit(4, "liters"),
  27853. name: "Stomach",
  27854. image: {
  27855. source: "./media/characters/juri/stomach.svg"
  27856. }
  27857. },
  27858. },
  27859. [
  27860. {
  27861. name: "Normal",
  27862. height: math.unit(7 + 3 / 12, "feet"),
  27863. default: true
  27864. },
  27865. ]
  27866. ))
  27867. characterMakers.push(() => makeCharacter(
  27868. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27869. {
  27870. fox: {
  27871. height: math.unit(5 + 6 / 12, "feet"),
  27872. weight: math.unit(140, "lb"),
  27873. name: "Fox",
  27874. image: {
  27875. source: "./media/characters/maxene-sita/fox.svg",
  27876. extra: 146 / 138,
  27877. bottom: 2.1 / 148.19
  27878. }
  27879. },
  27880. foxLaying: {
  27881. height: math.unit(1.70, "feet"),
  27882. weight: math.unit(140, "lb"),
  27883. name: "Fox (Laying)",
  27884. image: {
  27885. source: "./media/characters/maxene-sita/fox-laying.svg",
  27886. extra: 910 / 572,
  27887. bottom: 71 / 981
  27888. }
  27889. },
  27890. kitsune: {
  27891. height: math.unit(10, "feet"),
  27892. weight: math.unit(800, "lb"),
  27893. name: "Kitsune",
  27894. image: {
  27895. source: "./media/characters/maxene-sita/kitsune.svg",
  27896. extra: 185 / 176,
  27897. bottom: 4.7 / 189.9
  27898. }
  27899. },
  27900. hellhound: {
  27901. height: math.unit(10, "feet"),
  27902. weight: math.unit(700, "lb"),
  27903. name: "Hellhound",
  27904. image: {
  27905. source: "./media/characters/maxene-sita/hellhound.svg",
  27906. extra: 1600 / 1545,
  27907. bottom: 81 / 1681
  27908. }
  27909. },
  27910. },
  27911. [
  27912. {
  27913. name: "Normal",
  27914. height: math.unit(5 + 6 / 12, "feet"),
  27915. default: true
  27916. },
  27917. ]
  27918. ))
  27919. characterMakers.push(() => makeCharacter(
  27920. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27921. {
  27922. front: {
  27923. height: math.unit(3 + 4 / 12, "feet"),
  27924. weight: math.unit(70, "lb"),
  27925. name: "Front",
  27926. image: {
  27927. source: "./media/characters/maia/front.svg",
  27928. extra: 227 / 219.5,
  27929. bottom: 40 / 267
  27930. }
  27931. },
  27932. back: {
  27933. height: math.unit(3 + 4 / 12, "feet"),
  27934. weight: math.unit(70, "lb"),
  27935. name: "Back",
  27936. image: {
  27937. source: "./media/characters/maia/back.svg",
  27938. extra: 237 / 225
  27939. }
  27940. },
  27941. },
  27942. [
  27943. {
  27944. name: "Normal",
  27945. height: math.unit(3 + 4 / 12, "feet"),
  27946. default: true
  27947. },
  27948. ]
  27949. ))
  27950. characterMakers.push(() => makeCharacter(
  27951. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27952. {
  27953. front: {
  27954. height: math.unit(5 + 10 / 12, "feet"),
  27955. weight: math.unit(197, "lb"),
  27956. name: "Front",
  27957. image: {
  27958. source: "./media/characters/jabaro/front.svg",
  27959. extra: 225 / 216,
  27960. bottom: 5.06 / 230
  27961. }
  27962. },
  27963. back: {
  27964. height: math.unit(5 + 10 / 12, "feet"),
  27965. weight: math.unit(197, "lb"),
  27966. name: "Back",
  27967. image: {
  27968. source: "./media/characters/jabaro/back.svg",
  27969. extra: 225 / 219,
  27970. bottom: 1.9 / 227
  27971. }
  27972. },
  27973. },
  27974. [
  27975. {
  27976. name: "Normal",
  27977. height: math.unit(5 + 10 / 12, "feet"),
  27978. default: true
  27979. },
  27980. ]
  27981. ))
  27982. characterMakers.push(() => makeCharacter(
  27983. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27984. {
  27985. front: {
  27986. height: math.unit(5 + 8 / 12, "feet"),
  27987. weight: math.unit(139, "lb"),
  27988. name: "Front",
  27989. image: {
  27990. source: "./media/characters/risa/front.svg",
  27991. extra: 270 / 260,
  27992. bottom: 11.2 / 282
  27993. }
  27994. },
  27995. back: {
  27996. height: math.unit(5 + 8 / 12, "feet"),
  27997. weight: math.unit(139, "lb"),
  27998. name: "Back",
  27999. image: {
  28000. source: "./media/characters/risa/back.svg",
  28001. extra: 264 / 255,
  28002. bottom: 4 / 268
  28003. }
  28004. },
  28005. },
  28006. [
  28007. {
  28008. name: "Normal",
  28009. height: math.unit(5 + 8 / 12, "feet"),
  28010. default: true
  28011. },
  28012. ]
  28013. ))
  28014. characterMakers.push(() => makeCharacter(
  28015. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28016. {
  28017. front: {
  28018. height: math.unit(2 + 11 / 12, "feet"),
  28019. weight: math.unit(30, "lb"),
  28020. name: "Front",
  28021. image: {
  28022. source: "./media/characters/weatley/front.svg",
  28023. bottom: 10.7 / 414,
  28024. extra: 403.5 / 362
  28025. }
  28026. },
  28027. back: {
  28028. height: math.unit(2 + 11 / 12, "feet"),
  28029. weight: math.unit(30, "lb"),
  28030. name: "Back",
  28031. image: {
  28032. source: "./media/characters/weatley/back.svg",
  28033. bottom: 10.7 / 414,
  28034. extra: 403.5 / 362
  28035. }
  28036. },
  28037. },
  28038. [
  28039. {
  28040. name: "Normal",
  28041. height: math.unit(2 + 11 / 12, "feet"),
  28042. default: true
  28043. },
  28044. ]
  28045. ))
  28046. characterMakers.push(() => makeCharacter(
  28047. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28048. {
  28049. front: {
  28050. height: math.unit(5 + 2 / 12, "feet"),
  28051. weight: math.unit(50, "kg"),
  28052. name: "Front",
  28053. image: {
  28054. source: "./media/characters/mercury-crescent/front.svg",
  28055. extra: 1088 / 1033,
  28056. bottom: 18.9 / 1109
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Normal",
  28063. height: math.unit(5 + 2 / 12, "feet"),
  28064. default: true
  28065. },
  28066. ]
  28067. ))
  28068. characterMakers.push(() => makeCharacter(
  28069. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28070. {
  28071. front: {
  28072. height: math.unit(2, "feet"),
  28073. weight: math.unit(15, "kg"),
  28074. name: "Front",
  28075. image: {
  28076. source: "./media/characters/diamond-jones/front.svg",
  28077. extra: 727/723,
  28078. bottom: 46/773
  28079. }
  28080. },
  28081. },
  28082. [
  28083. {
  28084. name: "Normal",
  28085. height: math.unit(2, "feet"),
  28086. default: true
  28087. },
  28088. ]
  28089. ))
  28090. characterMakers.push(() => makeCharacter(
  28091. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28092. {
  28093. front: {
  28094. height: math.unit(3, "feet"),
  28095. weight: math.unit(30, "kg"),
  28096. name: "Front",
  28097. image: {
  28098. source: "./media/characters/sweet-bit/front.svg",
  28099. extra: 675 / 567,
  28100. bottom: 27.7 / 703
  28101. }
  28102. },
  28103. },
  28104. [
  28105. {
  28106. name: "Normal",
  28107. height: math.unit(3, "feet"),
  28108. default: true
  28109. },
  28110. ]
  28111. ))
  28112. characterMakers.push(() => makeCharacter(
  28113. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28114. {
  28115. side: {
  28116. height: math.unit(9.178, "feet"),
  28117. weight: math.unit(500, "lb"),
  28118. name: "Side",
  28119. image: {
  28120. source: "./media/characters/umbrazen/side.svg",
  28121. extra: 1730 / 1473,
  28122. bottom: 34.6 / 1765
  28123. }
  28124. },
  28125. },
  28126. [
  28127. {
  28128. name: "Normal",
  28129. height: math.unit(9.178, "feet"),
  28130. default: true
  28131. },
  28132. ]
  28133. ))
  28134. characterMakers.push(() => makeCharacter(
  28135. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28136. {
  28137. front: {
  28138. height: math.unit(10, "feet"),
  28139. weight: math.unit(750, "lb"),
  28140. name: "Front",
  28141. image: {
  28142. source: "./media/characters/arlist/front.svg",
  28143. extra: 961 / 778,
  28144. bottom: 6.2 / 986
  28145. }
  28146. },
  28147. },
  28148. [
  28149. {
  28150. name: "Normal",
  28151. height: math.unit(10, "feet"),
  28152. default: true
  28153. },
  28154. ]
  28155. ))
  28156. characterMakers.push(() => makeCharacter(
  28157. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28158. {
  28159. front: {
  28160. height: math.unit(5 + 1 / 12, "feet"),
  28161. weight: math.unit(110, "lb"),
  28162. name: "Front",
  28163. image: {
  28164. source: "./media/characters/aradel/front.svg",
  28165. extra: 324 / 303,
  28166. bottom: 3.6 / 329.4
  28167. }
  28168. },
  28169. },
  28170. [
  28171. {
  28172. name: "Normal",
  28173. height: math.unit(5 + 1 / 12, "feet"),
  28174. default: true
  28175. },
  28176. ]
  28177. ))
  28178. characterMakers.push(() => makeCharacter(
  28179. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28180. {
  28181. dressed: {
  28182. height: math.unit(3 + 8 / 12, "feet"),
  28183. weight: math.unit(50, "lb"),
  28184. name: "Dressed",
  28185. image: {
  28186. source: "./media/characters/serryn/dressed.svg",
  28187. extra: 1792 / 1656,
  28188. bottom: 43.5 / 1840
  28189. }
  28190. },
  28191. nude: {
  28192. height: math.unit(3 + 8 / 12, "feet"),
  28193. weight: math.unit(50, "lb"),
  28194. name: "Nude",
  28195. image: {
  28196. source: "./media/characters/serryn/nude.svg",
  28197. extra: 1792 / 1656,
  28198. bottom: 43.5 / 1840
  28199. }
  28200. },
  28201. },
  28202. [
  28203. {
  28204. name: "Normal",
  28205. height: math.unit(3 + 8 / 12, "feet"),
  28206. default: true
  28207. },
  28208. ]
  28209. ))
  28210. characterMakers.push(() => makeCharacter(
  28211. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28212. {
  28213. front: {
  28214. height: math.unit(7 + 10 / 12, "feet"),
  28215. weight: math.unit(255, "lb"),
  28216. name: "Front",
  28217. image: {
  28218. source: "./media/characters/xavier-thyme/front.svg",
  28219. extra: 3733 / 3642,
  28220. bottom: 131 / 3869
  28221. }
  28222. },
  28223. frontRaven: {
  28224. height: math.unit(7 + 10 / 12, "feet"),
  28225. weight: math.unit(255, "lb"),
  28226. name: "Front (Raven)",
  28227. image: {
  28228. source: "./media/characters/xavier-thyme/front-raven.svg",
  28229. extra: 4385 / 3642,
  28230. bottom: 131 / 4517
  28231. }
  28232. },
  28233. },
  28234. [
  28235. {
  28236. name: "Normal",
  28237. height: math.unit(7 + 10 / 12, "feet"),
  28238. default: true
  28239. },
  28240. ]
  28241. ))
  28242. characterMakers.push(() => makeCharacter(
  28243. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28244. {
  28245. front: {
  28246. height: math.unit(1.6, "m"),
  28247. weight: math.unit(50, "kg"),
  28248. name: "Front",
  28249. image: {
  28250. source: "./media/characters/kiki/front.svg",
  28251. extra: 4682 / 3610,
  28252. bottom: 115 / 4777
  28253. }
  28254. },
  28255. },
  28256. [
  28257. {
  28258. name: "Normal",
  28259. height: math.unit(1.6, "meters"),
  28260. default: true
  28261. },
  28262. ]
  28263. ))
  28264. characterMakers.push(() => makeCharacter(
  28265. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28266. {
  28267. front: {
  28268. height: math.unit(50, "m"),
  28269. weight: math.unit(500, "tonnes"),
  28270. name: "Front",
  28271. image: {
  28272. source: "./media/characters/ryoko/front.svg",
  28273. extra: 4632 / 3926,
  28274. bottom: 193 / 4823
  28275. }
  28276. },
  28277. },
  28278. [
  28279. {
  28280. name: "Normal",
  28281. height: math.unit(50, "meters"),
  28282. default: true
  28283. },
  28284. ]
  28285. ))
  28286. characterMakers.push(() => makeCharacter(
  28287. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28288. {
  28289. front: {
  28290. height: math.unit(30, "m"),
  28291. weight: math.unit(22, "tonnes"),
  28292. name: "Front",
  28293. image: {
  28294. source: "./media/characters/elio/front.svg",
  28295. extra: 4582 / 3720,
  28296. bottom: 236 / 4828
  28297. }
  28298. },
  28299. },
  28300. [
  28301. {
  28302. name: "Normal",
  28303. height: math.unit(30, "meters"),
  28304. default: true
  28305. },
  28306. ]
  28307. ))
  28308. characterMakers.push(() => makeCharacter(
  28309. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28310. {
  28311. front: {
  28312. height: math.unit(6 + 3 / 12, "feet"),
  28313. weight: math.unit(120, "lb"),
  28314. name: "Front",
  28315. image: {
  28316. source: "./media/characters/azura/front.svg",
  28317. extra: 1149 / 1135,
  28318. bottom: 45 / 1194
  28319. }
  28320. },
  28321. frontClothed: {
  28322. height: math.unit(6 + 3 / 12, "feet"),
  28323. weight: math.unit(120, "lb"),
  28324. name: "Front (Clothed)",
  28325. image: {
  28326. source: "./media/characters/azura/front-clothed.svg",
  28327. extra: 1149 / 1135,
  28328. bottom: 45 / 1194
  28329. }
  28330. },
  28331. },
  28332. [
  28333. {
  28334. name: "Normal",
  28335. height: math.unit(6 + 3 / 12, "feet"),
  28336. default: true
  28337. },
  28338. {
  28339. name: "Macro",
  28340. height: math.unit(20 + 6 / 12, "feet")
  28341. },
  28342. {
  28343. name: "Megamacro",
  28344. height: math.unit(12, "miles")
  28345. },
  28346. {
  28347. name: "Gigamacro",
  28348. height: math.unit(10000, "miles")
  28349. },
  28350. {
  28351. name: "Teramacro",
  28352. height: math.unit(900000, "miles")
  28353. },
  28354. ]
  28355. ))
  28356. characterMakers.push(() => makeCharacter(
  28357. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28358. {
  28359. front: {
  28360. height: math.unit(12, "feet"),
  28361. weight: math.unit(1, "ton"),
  28362. capacity: math.unit(660000, "gallons"),
  28363. name: "Front",
  28364. image: {
  28365. source: "./media/characters/zeus/front.svg",
  28366. extra: 5005 / 4717,
  28367. bottom: 363 / 5388
  28368. }
  28369. },
  28370. },
  28371. [
  28372. {
  28373. name: "Normal",
  28374. height: math.unit(12, "feet")
  28375. },
  28376. {
  28377. name: "Preferred Size",
  28378. height: math.unit(0.5, "miles"),
  28379. default: true
  28380. },
  28381. {
  28382. name: "Giga Horse",
  28383. height: math.unit(300, "miles")
  28384. },
  28385. {
  28386. name: "Riding Planets",
  28387. height: math.unit(30, "megameters")
  28388. },
  28389. {
  28390. name: "Cosmic Giant",
  28391. height: math.unit(3, "zettameters")
  28392. },
  28393. {
  28394. name: "Breeding God",
  28395. height: math.unit(9.92e22, "yottameters")
  28396. },
  28397. ]
  28398. ))
  28399. characterMakers.push(() => makeCharacter(
  28400. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28401. {
  28402. side: {
  28403. height: math.unit(9, "feet"),
  28404. weight: math.unit(1500, "kg"),
  28405. name: "Side",
  28406. image: {
  28407. source: "./media/characters/fang/side.svg",
  28408. extra: 924 / 866,
  28409. bottom: 47.5 / 972.3
  28410. }
  28411. },
  28412. },
  28413. [
  28414. {
  28415. name: "Normal",
  28416. height: math.unit(9, "feet"),
  28417. default: true
  28418. },
  28419. {
  28420. name: "Macro",
  28421. height: math.unit(75 + 6 / 12, "feet")
  28422. },
  28423. {
  28424. name: "Teramacro",
  28425. height: math.unit(50000, "miles")
  28426. },
  28427. ]
  28428. ))
  28429. characterMakers.push(() => makeCharacter(
  28430. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28431. {
  28432. front: {
  28433. height: math.unit(10, "feet"),
  28434. weight: math.unit(2, "tons"),
  28435. name: "Front",
  28436. image: {
  28437. source: "./media/characters/rekhit/front.svg",
  28438. extra: 2796 / 2590,
  28439. bottom: 225 / 3022
  28440. }
  28441. },
  28442. },
  28443. [
  28444. {
  28445. name: "Normal",
  28446. height: math.unit(10, "feet"),
  28447. default: true
  28448. },
  28449. {
  28450. name: "Macro",
  28451. height: math.unit(500, "feet")
  28452. },
  28453. ]
  28454. ))
  28455. characterMakers.push(() => makeCharacter(
  28456. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28457. {
  28458. front: {
  28459. height: math.unit(7 + 6.451 / 12, "feet"),
  28460. weight: math.unit(310, "lb"),
  28461. name: "Front",
  28462. image: {
  28463. source: "./media/characters/dahlia-verrick/front.svg",
  28464. extra: 1488 / 1365,
  28465. bottom: 6.2 / 1495
  28466. }
  28467. },
  28468. back: {
  28469. height: math.unit(7 + 6.451 / 12, "feet"),
  28470. weight: math.unit(310, "lb"),
  28471. name: "Back",
  28472. image: {
  28473. source: "./media/characters/dahlia-verrick/back.svg",
  28474. extra: 1472 / 1351,
  28475. bottom: 5.28 / 1477
  28476. }
  28477. },
  28478. frontBusiness: {
  28479. height: math.unit(7 + 6.451 / 12, "feet"),
  28480. weight: math.unit(200, "lb"),
  28481. name: "Front (Business)",
  28482. image: {
  28483. source: "./media/characters/dahlia-verrick/front-business.svg",
  28484. extra: 1478 / 1381,
  28485. bottom: 5.5 / 1484
  28486. }
  28487. },
  28488. frontCasual: {
  28489. height: math.unit(7 + 6.451 / 12, "feet"),
  28490. weight: math.unit(200, "lb"),
  28491. name: "Front (Casual)",
  28492. image: {
  28493. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28494. extra: 1478 / 1381,
  28495. bottom: 5.5 / 1484
  28496. }
  28497. },
  28498. },
  28499. [
  28500. {
  28501. name: "Travel-Sized",
  28502. height: math.unit(7.45, "inches")
  28503. },
  28504. {
  28505. name: "Normal",
  28506. height: math.unit(7 + 6.451 / 12, "feet"),
  28507. default: true
  28508. },
  28509. {
  28510. name: "Hitting the Town",
  28511. height: math.unit(37 + 8 / 12, "feet")
  28512. },
  28513. {
  28514. name: "Stomp in the Suburbs",
  28515. height: math.unit(964 + 9.728 / 12, "feet")
  28516. },
  28517. {
  28518. name: "Sit on the City",
  28519. height: math.unit(61747 + 10.592 / 12, "feet")
  28520. },
  28521. {
  28522. name: "Glomp the Globe",
  28523. height: math.unit(252919327 + 4.832 / 12, "feet")
  28524. },
  28525. ]
  28526. ))
  28527. characterMakers.push(() => makeCharacter(
  28528. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28529. {
  28530. front: {
  28531. height: math.unit(6 + 4 / 12, "feet"),
  28532. weight: math.unit(320, "lb"),
  28533. name: "Front",
  28534. image: {
  28535. source: "./media/characters/balina-mahigan/front.svg",
  28536. extra: 447 / 428,
  28537. bottom: 18 / 466
  28538. }
  28539. },
  28540. back: {
  28541. height: math.unit(6 + 4 / 12, "feet"),
  28542. weight: math.unit(320, "lb"),
  28543. name: "Back",
  28544. image: {
  28545. source: "./media/characters/balina-mahigan/back.svg",
  28546. extra: 445 / 428,
  28547. bottom: 4.07 / 448
  28548. }
  28549. },
  28550. arm: {
  28551. height: math.unit(1.88, "feet"),
  28552. name: "Arm",
  28553. image: {
  28554. source: "./media/characters/balina-mahigan/arm.svg"
  28555. }
  28556. },
  28557. backPort: {
  28558. height: math.unit(0.685, "feet"),
  28559. name: "Back Port",
  28560. image: {
  28561. source: "./media/characters/balina-mahigan/back-port.svg"
  28562. }
  28563. },
  28564. hoofpaw: {
  28565. height: math.unit(1.41, "feet"),
  28566. name: "Hoofpaw",
  28567. image: {
  28568. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28569. }
  28570. },
  28571. leftHandBack: {
  28572. height: math.unit(0.938, "feet"),
  28573. name: "Left Hand (Back)",
  28574. image: {
  28575. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28576. }
  28577. },
  28578. leftHandFront: {
  28579. height: math.unit(0.938, "feet"),
  28580. name: "Left Hand (Front)",
  28581. image: {
  28582. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28583. }
  28584. },
  28585. rightHandBack: {
  28586. height: math.unit(0.95, "feet"),
  28587. name: "Right Hand (Back)",
  28588. image: {
  28589. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28590. }
  28591. },
  28592. rightHandFront: {
  28593. height: math.unit(0.95, "feet"),
  28594. name: "Right Hand (Front)",
  28595. image: {
  28596. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28597. }
  28598. },
  28599. },
  28600. [
  28601. {
  28602. name: "Normal",
  28603. height: math.unit(6 + 4 / 12, "feet"),
  28604. default: true
  28605. },
  28606. ]
  28607. ))
  28608. characterMakers.push(() => makeCharacter(
  28609. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28610. {
  28611. front: {
  28612. height: math.unit(6, "feet"),
  28613. weight: math.unit(320, "lb"),
  28614. name: "Front",
  28615. image: {
  28616. source: "./media/characters/balina-mejeri/front.svg",
  28617. extra: 517 / 488,
  28618. bottom: 44.2 / 561
  28619. }
  28620. },
  28621. },
  28622. [
  28623. {
  28624. name: "Normal",
  28625. height: math.unit(6 + 4 / 12, "feet")
  28626. },
  28627. {
  28628. name: "Business",
  28629. height: math.unit(155, "feet"),
  28630. default: true
  28631. },
  28632. ]
  28633. ))
  28634. characterMakers.push(() => makeCharacter(
  28635. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28636. {
  28637. kneeling: {
  28638. height: math.unit(6 + 4 / 12, "feet"),
  28639. weight: math.unit(300 * 20, "lb"),
  28640. name: "Kneeling",
  28641. image: {
  28642. source: "./media/characters/balbarian/kneeling.svg",
  28643. extra: 922 / 862,
  28644. bottom: 42.4 / 965
  28645. }
  28646. },
  28647. },
  28648. [
  28649. {
  28650. name: "Normal",
  28651. height: math.unit(6 + 4 / 12, "feet")
  28652. },
  28653. {
  28654. name: "Treasured",
  28655. height: math.unit(18 + 9 / 12, "feet"),
  28656. default: true
  28657. },
  28658. {
  28659. name: "Macro",
  28660. height: math.unit(900, "feet")
  28661. },
  28662. ]
  28663. ))
  28664. characterMakers.push(() => makeCharacter(
  28665. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28666. {
  28667. front: {
  28668. height: math.unit(6 + 4 / 12, "feet"),
  28669. weight: math.unit(325, "lb"),
  28670. name: "Front",
  28671. image: {
  28672. source: "./media/characters/balina-amarini/front.svg",
  28673. extra: 415 / 403,
  28674. bottom: 19 / 433.4
  28675. }
  28676. },
  28677. back: {
  28678. height: math.unit(6 + 4 / 12, "feet"),
  28679. weight: math.unit(325, "lb"),
  28680. name: "Back",
  28681. image: {
  28682. source: "./media/characters/balina-amarini/back.svg",
  28683. extra: 415 / 403,
  28684. bottom: 13.5 / 432
  28685. }
  28686. },
  28687. overdrive: {
  28688. height: math.unit(6 + 4 / 12, "feet"),
  28689. weight: math.unit(400, "lb"),
  28690. name: "Overdrive",
  28691. image: {
  28692. source: "./media/characters/balina-amarini/overdrive.svg",
  28693. extra: 269 / 259,
  28694. bottom: 12 / 282
  28695. }
  28696. },
  28697. },
  28698. [
  28699. {
  28700. name: "Boom",
  28701. height: math.unit(9 + 10 / 12, "feet"),
  28702. default: true
  28703. },
  28704. {
  28705. name: "Macro",
  28706. height: math.unit(280, "feet")
  28707. },
  28708. ]
  28709. ))
  28710. characterMakers.push(() => makeCharacter(
  28711. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28712. {
  28713. goddess: {
  28714. height: math.unit(600, "feet"),
  28715. weight: math.unit(2000000, "tons"),
  28716. name: "Goddess",
  28717. image: {
  28718. source: "./media/characters/lady-kubwa/goddess.svg",
  28719. extra: 1240.5 / 1223,
  28720. bottom: 22 / 1263
  28721. }
  28722. },
  28723. goddesser: {
  28724. height: math.unit(900, "feet"),
  28725. weight: math.unit(20000000, "lb"),
  28726. name: "Goddess-er",
  28727. image: {
  28728. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28729. extra: 899 / 888,
  28730. bottom: 12.6 / 912
  28731. }
  28732. },
  28733. },
  28734. [
  28735. {
  28736. name: "Macro",
  28737. height: math.unit(600, "feet"),
  28738. default: true
  28739. },
  28740. {
  28741. name: "Megamacro",
  28742. height: math.unit(250, "miles")
  28743. },
  28744. ]
  28745. ))
  28746. characterMakers.push(() => makeCharacter(
  28747. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28748. {
  28749. front: {
  28750. height: math.unit(7 + 7 / 12, "feet"),
  28751. weight: math.unit(250, "lb"),
  28752. name: "Front",
  28753. image: {
  28754. source: "./media/characters/tala-grovehorn/front.svg",
  28755. extra: 2636 / 2525,
  28756. bottom: 147 / 2781
  28757. }
  28758. },
  28759. back: {
  28760. height: math.unit(7 + 7 / 12, "feet"),
  28761. weight: math.unit(250, "lb"),
  28762. name: "Back",
  28763. image: {
  28764. source: "./media/characters/tala-grovehorn/back.svg",
  28765. extra: 2635 / 2539,
  28766. bottom: 100 / 2732.8
  28767. }
  28768. },
  28769. mouth: {
  28770. height: math.unit(1.15, "feet"),
  28771. name: "Mouth",
  28772. image: {
  28773. source: "./media/characters/tala-grovehorn/mouth.svg"
  28774. }
  28775. },
  28776. dick: {
  28777. height: math.unit(2.36, "feet"),
  28778. name: "Dick",
  28779. image: {
  28780. source: "./media/characters/tala-grovehorn/dick.svg"
  28781. }
  28782. },
  28783. slit: {
  28784. height: math.unit(0.61, "feet"),
  28785. name: "Slit",
  28786. image: {
  28787. source: "./media/characters/tala-grovehorn/slit.svg"
  28788. }
  28789. },
  28790. },
  28791. [
  28792. ]
  28793. ))
  28794. characterMakers.push(() => makeCharacter(
  28795. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28796. {
  28797. front: {
  28798. height: math.unit(7 + 7 / 12, "feet"),
  28799. weight: math.unit(225, "lb"),
  28800. name: "Front",
  28801. image: {
  28802. source: "./media/characters/epona/front.svg",
  28803. extra: 2445 / 2290,
  28804. bottom: 251 / 2696
  28805. }
  28806. },
  28807. back: {
  28808. height: math.unit(7 + 7 / 12, "feet"),
  28809. weight: math.unit(225, "lb"),
  28810. name: "Back",
  28811. image: {
  28812. source: "./media/characters/epona/back.svg",
  28813. extra: 2546 / 2408,
  28814. bottom: 44 / 2589
  28815. }
  28816. },
  28817. genitals: {
  28818. height: math.unit(1.5, "feet"),
  28819. name: "Genitals",
  28820. image: {
  28821. source: "./media/characters/epona/genitals.svg"
  28822. }
  28823. },
  28824. },
  28825. [
  28826. {
  28827. name: "Normal",
  28828. height: math.unit(7 + 7 / 12, "feet"),
  28829. default: true
  28830. },
  28831. ]
  28832. ))
  28833. characterMakers.push(() => makeCharacter(
  28834. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28835. {
  28836. front: {
  28837. height: math.unit(7, "feet"),
  28838. weight: math.unit(518, "lb"),
  28839. name: "Front",
  28840. image: {
  28841. source: "./media/characters/avia-bloodbourn/front.svg",
  28842. extra: 1466 / 1350,
  28843. bottom: 65 / 1527
  28844. }
  28845. },
  28846. },
  28847. [
  28848. ]
  28849. ))
  28850. characterMakers.push(() => makeCharacter(
  28851. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28852. {
  28853. front: {
  28854. height: math.unit(9.35, "feet"),
  28855. weight: math.unit(600, "lb"),
  28856. name: "Front",
  28857. image: {
  28858. source: "./media/characters/amera/front.svg",
  28859. extra: 891 / 818,
  28860. bottom: 30 / 922.7
  28861. }
  28862. },
  28863. back: {
  28864. height: math.unit(9.35, "feet"),
  28865. weight: math.unit(600, "lb"),
  28866. name: "Back",
  28867. image: {
  28868. source: "./media/characters/amera/back.svg",
  28869. extra: 876 / 824,
  28870. bottom: 6.8 / 884
  28871. }
  28872. },
  28873. dick: {
  28874. height: math.unit(2.14, "feet"),
  28875. name: "Dick",
  28876. image: {
  28877. source: "./media/characters/amera/dick.svg"
  28878. }
  28879. },
  28880. },
  28881. [
  28882. {
  28883. name: "Normal",
  28884. height: math.unit(9.35, "feet"),
  28885. default: true
  28886. },
  28887. ]
  28888. ))
  28889. characterMakers.push(() => makeCharacter(
  28890. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28891. {
  28892. kneeling: {
  28893. height: math.unit(3 + 4 / 12, "feet"),
  28894. weight: math.unit(90, "lb"),
  28895. name: "Kneeling",
  28896. image: {
  28897. source: "./media/characters/rosewen/kneeling.svg",
  28898. extra: 1835 / 1571,
  28899. bottom: 27.7 / 1862
  28900. }
  28901. },
  28902. },
  28903. [
  28904. {
  28905. name: "Normal",
  28906. height: math.unit(3 + 4 / 12, "feet"),
  28907. default: true
  28908. },
  28909. ]
  28910. ))
  28911. characterMakers.push(() => makeCharacter(
  28912. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28913. {
  28914. front: {
  28915. height: math.unit(5 + 10 / 12, "feet"),
  28916. weight: math.unit(200, "lb"),
  28917. name: "Front",
  28918. image: {
  28919. source: "./media/characters/sabah/front.svg",
  28920. extra: 849 / 763,
  28921. bottom: 33.9 / 881
  28922. }
  28923. },
  28924. },
  28925. [
  28926. {
  28927. name: "Normal",
  28928. height: math.unit(5 + 10 / 12, "feet"),
  28929. default: true
  28930. },
  28931. ]
  28932. ))
  28933. characterMakers.push(() => makeCharacter(
  28934. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28935. {
  28936. front: {
  28937. height: math.unit(3 + 5 / 12, "feet"),
  28938. weight: math.unit(40, "kg"),
  28939. name: "Front",
  28940. image: {
  28941. source: "./media/characters/purple-flame/front.svg",
  28942. extra: 1577 / 1412,
  28943. bottom: 97 / 1694
  28944. }
  28945. },
  28946. frontDressed: {
  28947. height: math.unit(3 + 5 / 12, "feet"),
  28948. weight: math.unit(40, "kg"),
  28949. name: "Front (Dressed)",
  28950. image: {
  28951. source: "./media/characters/purple-flame/front-dressed.svg",
  28952. extra: 1577 / 1412,
  28953. bottom: 97 / 1694
  28954. }
  28955. },
  28956. headphones: {
  28957. height: math.unit(0.85, "feet"),
  28958. name: "Headphones",
  28959. image: {
  28960. source: "./media/characters/purple-flame/headphones.svg"
  28961. }
  28962. },
  28963. },
  28964. [
  28965. {
  28966. name: "Really Small",
  28967. height: math.unit(5, "cm")
  28968. },
  28969. {
  28970. name: "Micro",
  28971. height: math.unit(1 + 5 / 12, "feet")
  28972. },
  28973. {
  28974. name: "Normal",
  28975. height: math.unit(3 + 5 / 12, "feet"),
  28976. default: true
  28977. },
  28978. {
  28979. name: "Minimacro",
  28980. height: math.unit(125, "feet")
  28981. },
  28982. {
  28983. name: "Macro",
  28984. height: math.unit(0.5, "miles")
  28985. },
  28986. {
  28987. name: "Megamacro",
  28988. height: math.unit(50, "miles")
  28989. },
  28990. {
  28991. name: "Gigantic",
  28992. height: math.unit(750, "miles")
  28993. },
  28994. {
  28995. name: "Planetary",
  28996. height: math.unit(15000, "miles")
  28997. },
  28998. ]
  28999. ))
  29000. characterMakers.push(() => makeCharacter(
  29001. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29002. {
  29003. front: {
  29004. height: math.unit(14, "feet"),
  29005. weight: math.unit(959, "lb"),
  29006. name: "Front",
  29007. image: {
  29008. source: "./media/characters/arsenal/front.svg",
  29009. extra: 2357 / 2157,
  29010. bottom: 93 / 2458
  29011. }
  29012. },
  29013. },
  29014. [
  29015. {
  29016. name: "Normal",
  29017. height: math.unit(14, "feet"),
  29018. default: true
  29019. },
  29020. ]
  29021. ))
  29022. characterMakers.push(() => makeCharacter(
  29023. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29024. {
  29025. front: {
  29026. height: math.unit(6, "feet"),
  29027. weight: math.unit(150, "lb"),
  29028. name: "Front",
  29029. image: {
  29030. source: "./media/characters/adira/front.svg",
  29031. extra: 1078 / 1029,
  29032. bottom: 87 / 1166
  29033. }
  29034. },
  29035. },
  29036. [
  29037. {
  29038. name: "Micro",
  29039. height: math.unit(4, "inches"),
  29040. default: true
  29041. },
  29042. {
  29043. name: "Macro",
  29044. height: math.unit(50, "feet")
  29045. },
  29046. ]
  29047. ))
  29048. characterMakers.push(() => makeCharacter(
  29049. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29050. {
  29051. front: {
  29052. height: math.unit(16, "feet"),
  29053. weight: math.unit(1000, "lb"),
  29054. name: "Front",
  29055. image: {
  29056. source: "./media/characters/grim/front.svg",
  29057. extra: 622 / 614,
  29058. bottom: 18.1 / 642
  29059. }
  29060. },
  29061. back: {
  29062. height: math.unit(16, "feet"),
  29063. weight: math.unit(1000, "lb"),
  29064. name: "Back",
  29065. image: {
  29066. source: "./media/characters/grim/back.svg",
  29067. extra: 610.6 / 602,
  29068. bottom: 40.8 / 652
  29069. }
  29070. },
  29071. hunched: {
  29072. height: math.unit(9.75, "feet"),
  29073. weight: math.unit(1000, "lb"),
  29074. name: "Hunched",
  29075. image: {
  29076. source: "./media/characters/grim/hunched.svg",
  29077. extra: 304 / 297,
  29078. bottom: 35.4 / 394
  29079. }
  29080. },
  29081. },
  29082. [
  29083. {
  29084. name: "Normal",
  29085. height: math.unit(16, "feet"),
  29086. default: true
  29087. },
  29088. ]
  29089. ))
  29090. characterMakers.push(() => makeCharacter(
  29091. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29092. {
  29093. front: {
  29094. height: math.unit(2.3, "meters"),
  29095. weight: math.unit(300, "lb"),
  29096. name: "Front",
  29097. image: {
  29098. source: "./media/characters/sinja/front-sfw.svg",
  29099. extra: 1393 / 1294,
  29100. bottom: 70 / 1463
  29101. }
  29102. },
  29103. frontNsfw: {
  29104. height: math.unit(2.3, "meters"),
  29105. weight: math.unit(300, "lb"),
  29106. name: "Front (NSFW)",
  29107. image: {
  29108. source: "./media/characters/sinja/front-nsfw.svg",
  29109. extra: 1393 / 1294,
  29110. bottom: 70 / 1463
  29111. }
  29112. },
  29113. back: {
  29114. height: math.unit(2.3, "meters"),
  29115. weight: math.unit(300, "lb"),
  29116. name: "Back",
  29117. image: {
  29118. source: "./media/characters/sinja/back.svg",
  29119. extra: 1393 / 1294,
  29120. bottom: 70 / 1463
  29121. }
  29122. },
  29123. head: {
  29124. height: math.unit(1.771, "feet"),
  29125. name: "Head",
  29126. image: {
  29127. source: "./media/characters/sinja/head.svg"
  29128. }
  29129. },
  29130. slit: {
  29131. height: math.unit(0.8, "feet"),
  29132. name: "Slit",
  29133. image: {
  29134. source: "./media/characters/sinja/slit.svg"
  29135. }
  29136. },
  29137. },
  29138. [
  29139. {
  29140. name: "Normal",
  29141. height: math.unit(2.3, "meters")
  29142. },
  29143. {
  29144. name: "Macro",
  29145. height: math.unit(91, "meters"),
  29146. default: true
  29147. },
  29148. {
  29149. name: "Megamacro",
  29150. height: math.unit(91440, "meters")
  29151. },
  29152. {
  29153. name: "Gigamacro",
  29154. height: math.unit(60960000, "meters")
  29155. },
  29156. {
  29157. name: "Teramacro",
  29158. height: math.unit(9144000000, "meters")
  29159. },
  29160. ]
  29161. ))
  29162. characterMakers.push(() => makeCharacter(
  29163. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29164. {
  29165. front: {
  29166. height: math.unit(1.7, "meters"),
  29167. weight: math.unit(130, "lb"),
  29168. name: "Front",
  29169. image: {
  29170. source: "./media/characters/kyu/front.svg",
  29171. extra: 415 / 395,
  29172. bottom: 5 / 420
  29173. }
  29174. },
  29175. head: {
  29176. height: math.unit(1.75, "feet"),
  29177. name: "Head",
  29178. image: {
  29179. source: "./media/characters/kyu/head.svg"
  29180. }
  29181. },
  29182. foot: {
  29183. height: math.unit(0.81, "feet"),
  29184. name: "Foot",
  29185. image: {
  29186. source: "./media/characters/kyu/foot.svg"
  29187. }
  29188. },
  29189. },
  29190. [
  29191. {
  29192. name: "Normal",
  29193. height: math.unit(1.7, "meters")
  29194. },
  29195. {
  29196. name: "Macro",
  29197. height: math.unit(131, "feet"),
  29198. default: true
  29199. },
  29200. {
  29201. name: "Megamacro",
  29202. height: math.unit(91440, "meters")
  29203. },
  29204. {
  29205. name: "Gigamacro",
  29206. height: math.unit(60960000, "meters")
  29207. },
  29208. {
  29209. name: "Teramacro",
  29210. height: math.unit(9144000000, "meters")
  29211. },
  29212. ]
  29213. ))
  29214. characterMakers.push(() => makeCharacter(
  29215. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29216. {
  29217. front: {
  29218. height: math.unit(7 + 1 / 12, "feet"),
  29219. weight: math.unit(250, "lb"),
  29220. name: "Front",
  29221. image: {
  29222. source: "./media/characters/joey/front.svg",
  29223. extra: 1791 / 1537,
  29224. bottom: 28 / 1816
  29225. }
  29226. },
  29227. },
  29228. [
  29229. {
  29230. name: "Micro",
  29231. height: math.unit(3, "inches")
  29232. },
  29233. {
  29234. name: "Normal",
  29235. height: math.unit(7 + 1 / 12, "feet"),
  29236. default: true
  29237. },
  29238. ]
  29239. ))
  29240. characterMakers.push(() => makeCharacter(
  29241. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29242. {
  29243. front: {
  29244. height: math.unit(165, "cm"),
  29245. weight: math.unit(140, "lb"),
  29246. name: "Front",
  29247. image: {
  29248. source: "./media/characters/sam-evans/front.svg",
  29249. extra: 3417 / 3230,
  29250. bottom: 41.3 / 3417
  29251. }
  29252. },
  29253. frontSixTails: {
  29254. height: math.unit(165, "cm"),
  29255. weight: math.unit(140, "lb"),
  29256. name: "Front-six-tails",
  29257. image: {
  29258. source: "./media/characters/sam-evans/front-six-tails.svg",
  29259. extra: 3417 / 3230,
  29260. bottom: 41.3 / 3417
  29261. }
  29262. },
  29263. back: {
  29264. height: math.unit(165, "cm"),
  29265. weight: math.unit(140, "lb"),
  29266. name: "Back",
  29267. image: {
  29268. source: "./media/characters/sam-evans/back.svg",
  29269. extra: 3227 / 3032,
  29270. bottom: 6.8 / 3234
  29271. }
  29272. },
  29273. face: {
  29274. height: math.unit(0.68, "feet"),
  29275. name: "Face",
  29276. image: {
  29277. source: "./media/characters/sam-evans/face.svg"
  29278. }
  29279. },
  29280. },
  29281. [
  29282. {
  29283. name: "Normal",
  29284. height: math.unit(165, "cm"),
  29285. default: true
  29286. },
  29287. {
  29288. name: "Macro",
  29289. height: math.unit(100, "meters")
  29290. },
  29291. {
  29292. name: "Macro+",
  29293. height: math.unit(800, "meters")
  29294. },
  29295. {
  29296. name: "Macro++",
  29297. height: math.unit(3, "km")
  29298. },
  29299. {
  29300. name: "Macro+++",
  29301. height: math.unit(30, "km")
  29302. },
  29303. ]
  29304. ))
  29305. characterMakers.push(() => makeCharacter(
  29306. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29307. {
  29308. front: {
  29309. height: math.unit(10, "feet"),
  29310. weight: math.unit(750, "lb"),
  29311. name: "Front",
  29312. image: {
  29313. source: "./media/characters/juliet-a/front.svg",
  29314. extra: 1766 / 1720,
  29315. bottom: 43 / 1809
  29316. }
  29317. },
  29318. back: {
  29319. height: math.unit(10, "feet"),
  29320. weight: math.unit(750, "lb"),
  29321. name: "Back",
  29322. image: {
  29323. source: "./media/characters/juliet-a/back.svg",
  29324. extra: 1781 / 1734,
  29325. bottom: 35 / 1810,
  29326. }
  29327. },
  29328. },
  29329. [
  29330. {
  29331. name: "Normal",
  29332. height: math.unit(10, "feet"),
  29333. default: true
  29334. },
  29335. {
  29336. name: "Dragon Form",
  29337. height: math.unit(250, "feet")
  29338. },
  29339. {
  29340. name: "Macro",
  29341. height: math.unit(1000, "feet")
  29342. },
  29343. {
  29344. name: "Megamacro",
  29345. height: math.unit(10000, "feet")
  29346. }
  29347. ]
  29348. ))
  29349. characterMakers.push(() => makeCharacter(
  29350. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29351. {
  29352. regular: {
  29353. height: math.unit(7 + 3 / 12, "feet"),
  29354. weight: math.unit(260, "lb"),
  29355. name: "Regular",
  29356. image: {
  29357. source: "./media/characters/wild/regular.svg",
  29358. extra: 97.45 / 92,
  29359. bottom: 6.8 / 104.3
  29360. }
  29361. },
  29362. biggums: {
  29363. height: math.unit(8 + 6 / 12, "feet"),
  29364. weight: math.unit(425, "lb"),
  29365. name: "Biggums",
  29366. image: {
  29367. source: "./media/characters/wild/biggums.svg",
  29368. extra: 97.45 / 92,
  29369. bottom: 7.5 / 132.34
  29370. }
  29371. },
  29372. mawRegular: {
  29373. height: math.unit(1.24, "feet"),
  29374. name: "Maw (Regular)",
  29375. image: {
  29376. source: "./media/characters/wild/maw.svg"
  29377. }
  29378. },
  29379. mawBiggums: {
  29380. height: math.unit(1.47, "feet"),
  29381. name: "Maw (Biggums)",
  29382. image: {
  29383. source: "./media/characters/wild/maw.svg"
  29384. }
  29385. },
  29386. },
  29387. [
  29388. {
  29389. name: "Normal",
  29390. height: math.unit(7 + 3 / 12, "feet"),
  29391. default: true
  29392. },
  29393. ]
  29394. ))
  29395. characterMakers.push(() => makeCharacter(
  29396. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29397. {
  29398. front: {
  29399. height: math.unit(2.5, "meters"),
  29400. weight: math.unit(200, "kg"),
  29401. name: "Front",
  29402. image: {
  29403. source: "./media/characters/vidar/front.svg",
  29404. extra: 2994 / 2795,
  29405. bottom: 56 / 3061
  29406. }
  29407. },
  29408. back: {
  29409. height: math.unit(2.5, "meters"),
  29410. weight: math.unit(200, "kg"),
  29411. name: "Back",
  29412. image: {
  29413. source: "./media/characters/vidar/back.svg",
  29414. extra: 3131 / 2928,
  29415. bottom: 13.5 / 3141.5
  29416. }
  29417. },
  29418. feral: {
  29419. height: math.unit(2.5, "meters"),
  29420. weight: math.unit(2000, "kg"),
  29421. name: "Feral",
  29422. image: {
  29423. source: "./media/characters/vidar/feral.svg",
  29424. extra: 2790 / 1765,
  29425. bottom: 6 / 2796
  29426. }
  29427. },
  29428. },
  29429. [
  29430. {
  29431. name: "Normal",
  29432. height: math.unit(2.5, "meters"),
  29433. default: true
  29434. },
  29435. {
  29436. name: "Macro",
  29437. height: math.unit(100, "meters")
  29438. },
  29439. ]
  29440. ))
  29441. characterMakers.push(() => makeCharacter(
  29442. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29443. {
  29444. front: {
  29445. height: math.unit(5 + 9 / 12, "feet"),
  29446. weight: math.unit(120, "lb"),
  29447. name: "Front",
  29448. image: {
  29449. source: "./media/characters/ash/front.svg",
  29450. extra: 2189 / 1961,
  29451. bottom: 5.2 / 2194
  29452. }
  29453. },
  29454. },
  29455. [
  29456. {
  29457. name: "Normal",
  29458. height: math.unit(5 + 9 / 12, "feet"),
  29459. default: true
  29460. },
  29461. ]
  29462. ))
  29463. characterMakers.push(() => makeCharacter(
  29464. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29465. {
  29466. front: {
  29467. height: math.unit(9, "feet"),
  29468. weight: math.unit(10000, "lb"),
  29469. name: "Front",
  29470. image: {
  29471. source: "./media/characters/gygabite/front.svg",
  29472. bottom: 31.7 / 537.8,
  29473. extra: 505 / 370
  29474. }
  29475. },
  29476. },
  29477. [
  29478. {
  29479. name: "Normal",
  29480. height: math.unit(9, "feet"),
  29481. default: true
  29482. },
  29483. ]
  29484. ))
  29485. characterMakers.push(() => makeCharacter(
  29486. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29487. {
  29488. front: {
  29489. height: math.unit(12, "feet"),
  29490. weight: math.unit(4000, "lb"),
  29491. name: "Front",
  29492. image: {
  29493. source: "./media/characters/p0tat0/front.svg",
  29494. extra: 1065 / 921,
  29495. bottom: 55.7 / 1121.25
  29496. }
  29497. },
  29498. },
  29499. [
  29500. {
  29501. name: "Normal",
  29502. height: math.unit(12, "feet"),
  29503. default: true
  29504. },
  29505. ]
  29506. ))
  29507. characterMakers.push(() => makeCharacter(
  29508. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29509. {
  29510. side: {
  29511. height: math.unit(6.5, "feet"),
  29512. weight: math.unit(800, "lb"),
  29513. name: "Side",
  29514. image: {
  29515. source: "./media/characters/dusk/side.svg",
  29516. extra: 615 / 373,
  29517. bottom: 53 / 664
  29518. }
  29519. },
  29520. sitting: {
  29521. height: math.unit(7, "feet"),
  29522. weight: math.unit(800, "lb"),
  29523. name: "Sitting",
  29524. image: {
  29525. source: "./media/characters/dusk/sitting.svg",
  29526. extra: 753 / 425,
  29527. bottom: 33 / 774
  29528. }
  29529. },
  29530. head: {
  29531. height: math.unit(6.1, "feet"),
  29532. name: "Head",
  29533. image: {
  29534. source: "./media/characters/dusk/head.svg"
  29535. }
  29536. },
  29537. },
  29538. [
  29539. {
  29540. name: "Normal",
  29541. height: math.unit(7, "feet"),
  29542. default: true
  29543. },
  29544. ]
  29545. ))
  29546. characterMakers.push(() => makeCharacter(
  29547. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29548. {
  29549. front: {
  29550. height: math.unit(15, "feet"),
  29551. weight: math.unit(7000, "lb"),
  29552. name: "Front",
  29553. image: {
  29554. source: "./media/characters/jay-direwolf/front.svg",
  29555. extra: 1810 / 1732,
  29556. bottom: 66 / 1892
  29557. }
  29558. },
  29559. },
  29560. [
  29561. {
  29562. name: "Normal",
  29563. height: math.unit(15, "feet"),
  29564. default: true
  29565. },
  29566. ]
  29567. ))
  29568. characterMakers.push(() => makeCharacter(
  29569. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29570. {
  29571. front: {
  29572. height: math.unit(4 + 9 / 12, "feet"),
  29573. weight: math.unit(130, "lb"),
  29574. name: "Front",
  29575. image: {
  29576. source: "./media/characters/anchovie/front.svg",
  29577. extra: 382 / 350,
  29578. bottom: 25 / 409
  29579. }
  29580. },
  29581. back: {
  29582. height: math.unit(4 + 9 / 12, "feet"),
  29583. weight: math.unit(130, "lb"),
  29584. name: "Back",
  29585. image: {
  29586. source: "./media/characters/anchovie/back.svg",
  29587. extra: 385 / 352,
  29588. bottom: 16.6 / 402
  29589. }
  29590. },
  29591. frontDressed: {
  29592. height: math.unit(4 + 9 / 12, "feet"),
  29593. weight: math.unit(130, "lb"),
  29594. name: "Front (Dressed)",
  29595. image: {
  29596. source: "./media/characters/anchovie/front-dressed.svg",
  29597. extra: 382 / 350,
  29598. bottom: 25 / 409
  29599. }
  29600. },
  29601. backDressed: {
  29602. height: math.unit(4 + 9 / 12, "feet"),
  29603. weight: math.unit(130, "lb"),
  29604. name: "Back (Dressed)",
  29605. image: {
  29606. source: "./media/characters/anchovie/back-dressed.svg",
  29607. extra: 385 / 352,
  29608. bottom: 16.6 / 402
  29609. }
  29610. },
  29611. },
  29612. [
  29613. {
  29614. name: "Micro",
  29615. height: math.unit(6.4, "inches")
  29616. },
  29617. {
  29618. name: "Normal",
  29619. height: math.unit(4 + 9 / 12, "feet"),
  29620. default: true
  29621. },
  29622. ]
  29623. ))
  29624. characterMakers.push(() => makeCharacter(
  29625. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29626. {
  29627. front: {
  29628. height: math.unit(2, "meters"),
  29629. weight: math.unit(180, "lb"),
  29630. name: "Front",
  29631. image: {
  29632. source: "./media/characters/acidrenamon/front.svg",
  29633. extra: 987 / 890,
  29634. bottom: 22.8 / 1009
  29635. }
  29636. },
  29637. back: {
  29638. height: math.unit(2, "meters"),
  29639. weight: math.unit(180, "lb"),
  29640. name: "Back",
  29641. image: {
  29642. source: "./media/characters/acidrenamon/back.svg",
  29643. extra: 983 / 891,
  29644. bottom: 8.4 / 992
  29645. }
  29646. },
  29647. head: {
  29648. height: math.unit(1.92, "feet"),
  29649. name: "Head",
  29650. image: {
  29651. source: "./media/characters/acidrenamon/head.svg"
  29652. }
  29653. },
  29654. rump: {
  29655. height: math.unit(1.72, "feet"),
  29656. name: "Rump",
  29657. image: {
  29658. source: "./media/characters/acidrenamon/rump.svg"
  29659. }
  29660. },
  29661. tail: {
  29662. height: math.unit(4.2, "feet"),
  29663. name: "Tail",
  29664. image: {
  29665. source: "./media/characters/acidrenamon/tail.svg"
  29666. }
  29667. },
  29668. },
  29669. [
  29670. {
  29671. name: "Normal",
  29672. height: math.unit(2, "meters"),
  29673. default: true
  29674. },
  29675. {
  29676. name: "Minimacro",
  29677. height: math.unit(7, "meters")
  29678. },
  29679. {
  29680. name: "Macro",
  29681. height: math.unit(200, "meters")
  29682. },
  29683. {
  29684. name: "Gigamacro",
  29685. height: math.unit(0.2, "earths")
  29686. },
  29687. ]
  29688. ))
  29689. characterMakers.push(() => makeCharacter(
  29690. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29691. {
  29692. front: {
  29693. height: math.unit(152, "feet"),
  29694. name: "Front",
  29695. image: {
  29696. source: "./media/characters/kenzie-lee/front.svg",
  29697. extra: 1869/1774,
  29698. bottom: 128/1997
  29699. }
  29700. },
  29701. side: {
  29702. height: math.unit(86, "feet"),
  29703. name: "Side",
  29704. image: {
  29705. source: "./media/characters/kenzie-lee/side.svg",
  29706. extra: 930/815,
  29707. bottom: 177/1107
  29708. }
  29709. },
  29710. paw: {
  29711. height: math.unit(15, "feet"),
  29712. name: "Paw",
  29713. image: {
  29714. source: "./media/characters/kenzie-lee/paw.svg"
  29715. }
  29716. },
  29717. },
  29718. [
  29719. {
  29720. name: "Kenzie Flea",
  29721. height: math.unit(2, "mm"),
  29722. default: true
  29723. },
  29724. {
  29725. name: "Micro",
  29726. height: math.unit(2, "inches")
  29727. },
  29728. {
  29729. name: "Normal",
  29730. height: math.unit(152, "feet")
  29731. },
  29732. {
  29733. name: "Megamacro",
  29734. height: math.unit(7, "miles")
  29735. },
  29736. {
  29737. name: "Gigamacro",
  29738. height: math.unit(8000, "miles")
  29739. },
  29740. ]
  29741. ))
  29742. characterMakers.push(() => makeCharacter(
  29743. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29744. {
  29745. front: {
  29746. height: math.unit(6, "feet"),
  29747. name: "Front",
  29748. image: {
  29749. source: "./media/characters/withers/front.svg",
  29750. extra: 1935/1760,
  29751. bottom: 72/2007
  29752. }
  29753. },
  29754. back: {
  29755. height: math.unit(6, "feet"),
  29756. name: "Back",
  29757. image: {
  29758. source: "./media/characters/withers/back.svg",
  29759. extra: 1944/1792,
  29760. bottom: 12/1956
  29761. }
  29762. },
  29763. dressed: {
  29764. height: math.unit(6, "feet"),
  29765. name: "Dressed",
  29766. image: {
  29767. source: "./media/characters/withers/dressed.svg",
  29768. extra: 1937/1765,
  29769. bottom: 73/2010
  29770. }
  29771. },
  29772. phase1: {
  29773. height: math.unit(1.1, "feet"),
  29774. name: "Phase 1",
  29775. image: {
  29776. source: "./media/characters/withers/phase-1.svg",
  29777. extra: 1885/1232,
  29778. bottom: 0/1885
  29779. }
  29780. },
  29781. phase2: {
  29782. height: math.unit(1.05, "feet"),
  29783. name: "Phase 2",
  29784. image: {
  29785. source: "./media/characters/withers/phase-2.svg",
  29786. extra: 1792/1090,
  29787. bottom: 0/1792
  29788. }
  29789. },
  29790. partyWipe: {
  29791. height: math.unit(1.1, "feet"),
  29792. name: "Party Wipe",
  29793. image: {
  29794. source: "./media/characters/withers/party-wipe.svg",
  29795. extra: 1864/1207,
  29796. bottom: 0/1864
  29797. }
  29798. },
  29799. },
  29800. [
  29801. {
  29802. name: "Macro",
  29803. height: math.unit(167, "feet"),
  29804. default: true
  29805. },
  29806. {
  29807. name: "Megamacro",
  29808. height: math.unit(15, "miles")
  29809. }
  29810. ]
  29811. ))
  29812. characterMakers.push(() => makeCharacter(
  29813. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29814. {
  29815. front: {
  29816. height: math.unit(6 + 7 / 12, "feet"),
  29817. weight: math.unit(250, "lb"),
  29818. name: "Front",
  29819. image: {
  29820. source: "./media/characters/nemoskii/front.svg",
  29821. extra: 2270 / 1734,
  29822. bottom: 86 / 2354
  29823. }
  29824. },
  29825. back: {
  29826. height: math.unit(6 + 7 / 12, "feet"),
  29827. weight: math.unit(250, "lb"),
  29828. name: "Back",
  29829. image: {
  29830. source: "./media/characters/nemoskii/back.svg",
  29831. extra: 1845 / 1788,
  29832. bottom: 10.5 / 1852
  29833. }
  29834. },
  29835. head: {
  29836. height: math.unit(1.31, "feet"),
  29837. name: "Head",
  29838. image: {
  29839. source: "./media/characters/nemoskii/head.svg"
  29840. }
  29841. },
  29842. },
  29843. [
  29844. {
  29845. name: "Micro",
  29846. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29847. },
  29848. {
  29849. name: "Normal",
  29850. height: math.unit(6 + 7 / 12, "feet"),
  29851. default: true
  29852. },
  29853. {
  29854. name: "Macro",
  29855. height: math.unit((6 + 7 / 12) * 150, "feet")
  29856. },
  29857. {
  29858. name: "Macro+",
  29859. height: math.unit((6 + 7 / 12) * 500, "feet")
  29860. },
  29861. {
  29862. name: "Megamacro",
  29863. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29864. },
  29865. ]
  29866. ))
  29867. characterMakers.push(() => makeCharacter(
  29868. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29869. {
  29870. front: {
  29871. height: math.unit(1, "mile"),
  29872. weight: math.unit(265261.9, "lb"),
  29873. name: "Front",
  29874. image: {
  29875. source: "./media/characters/shui/front.svg",
  29876. extra: 1633 / 1564,
  29877. bottom: 91.5 / 1726
  29878. }
  29879. },
  29880. },
  29881. [
  29882. {
  29883. name: "Macro",
  29884. height: math.unit(1, "mile"),
  29885. default: true
  29886. },
  29887. ]
  29888. ))
  29889. characterMakers.push(() => makeCharacter(
  29890. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29891. {
  29892. front: {
  29893. height: math.unit(12 + 6 / 12, "feet"),
  29894. weight: math.unit(1342, "lb"),
  29895. name: "Front",
  29896. image: {
  29897. source: "./media/characters/arokh-takakura/front.svg",
  29898. extra: 1089 / 1043,
  29899. bottom: 77.4 / 1176.7
  29900. }
  29901. },
  29902. back: {
  29903. height: math.unit(12 + 6 / 12, "feet"),
  29904. weight: math.unit(1342, "lb"),
  29905. name: "Back",
  29906. image: {
  29907. source: "./media/characters/arokh-takakura/back.svg",
  29908. extra: 1046 / 1019,
  29909. bottom: 102 / 1150
  29910. }
  29911. },
  29912. },
  29913. [
  29914. {
  29915. name: "Big",
  29916. height: math.unit(12 + 6 / 12, "feet"),
  29917. default: true
  29918. },
  29919. ]
  29920. ))
  29921. characterMakers.push(() => makeCharacter(
  29922. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29923. {
  29924. front: {
  29925. height: math.unit(5 + 6 / 12, "feet"),
  29926. weight: math.unit(150, "lb"),
  29927. name: "Front",
  29928. image: {
  29929. source: "./media/characters/theo/front.svg",
  29930. extra: 1184 / 1131,
  29931. bottom: 7.4 / 1191
  29932. }
  29933. },
  29934. },
  29935. [
  29936. {
  29937. name: "Micro",
  29938. height: math.unit(5, "inches")
  29939. },
  29940. {
  29941. name: "Normal",
  29942. height: math.unit(5 + 6 / 12, "feet"),
  29943. default: true
  29944. },
  29945. ]
  29946. ))
  29947. characterMakers.push(() => makeCharacter(
  29948. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29949. {
  29950. front: {
  29951. height: math.unit(5 + 9 / 12, "feet"),
  29952. weight: math.unit(130, "lb"),
  29953. name: "Front",
  29954. image: {
  29955. source: "./media/characters/cecelia-swift/front.svg",
  29956. extra: 502 / 484,
  29957. bottom: 23 / 523
  29958. }
  29959. },
  29960. back: {
  29961. height: math.unit(5 + 9 / 12, "feet"),
  29962. weight: math.unit(130, "lb"),
  29963. name: "Back",
  29964. image: {
  29965. source: "./media/characters/cecelia-swift/back.svg",
  29966. extra: 499 / 485,
  29967. bottom: 12 / 511
  29968. }
  29969. },
  29970. head: {
  29971. height: math.unit(0.90, "feet"),
  29972. name: "Head",
  29973. image: {
  29974. source: "./media/characters/cecelia-swift/head.svg"
  29975. }
  29976. },
  29977. rump: {
  29978. height: math.unit(1.75, "feet"),
  29979. name: "Rump",
  29980. image: {
  29981. source: "./media/characters/cecelia-swift/rump.svg"
  29982. }
  29983. },
  29984. },
  29985. [
  29986. {
  29987. name: "Normal",
  29988. height: math.unit(5 + 9 / 12, "feet"),
  29989. default: true
  29990. },
  29991. {
  29992. name: "Big",
  29993. height: math.unit(50, "feet")
  29994. },
  29995. {
  29996. name: "Macro",
  29997. height: math.unit(100, "feet")
  29998. },
  29999. {
  30000. name: "Macro+",
  30001. height: math.unit(500, "feet")
  30002. },
  30003. {
  30004. name: "Macro++",
  30005. height: math.unit(1000, "feet")
  30006. },
  30007. ]
  30008. ))
  30009. characterMakers.push(() => makeCharacter(
  30010. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30011. {
  30012. front: {
  30013. height: math.unit(6, "feet"),
  30014. weight: math.unit(150, "lb"),
  30015. name: "Front",
  30016. image: {
  30017. source: "./media/characters/kaunan/front.svg",
  30018. extra: 2890 / 2523,
  30019. bottom: 49 / 2939
  30020. }
  30021. },
  30022. },
  30023. [
  30024. {
  30025. name: "Macro",
  30026. height: math.unit(150, "feet"),
  30027. default: true
  30028. },
  30029. ]
  30030. ))
  30031. characterMakers.push(() => makeCharacter(
  30032. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30033. {
  30034. dressed: {
  30035. height: math.unit(175, "cm"),
  30036. weight: math.unit(60, "kg"),
  30037. name: "Dressed",
  30038. image: {
  30039. source: "./media/characters/fei/dressed.svg",
  30040. extra: 1402/1278,
  30041. bottom: 27/1429
  30042. }
  30043. },
  30044. nude: {
  30045. height: math.unit(175, "cm"),
  30046. weight: math.unit(60, "kg"),
  30047. name: "Nude",
  30048. image: {
  30049. source: "./media/characters/fei/nude.svg",
  30050. extra: 1402/1278,
  30051. bottom: 27/1429
  30052. }
  30053. },
  30054. heels: {
  30055. height: math.unit(0.466, "feet"),
  30056. name: "Heels",
  30057. image: {
  30058. source: "./media/characters/fei/heels.svg",
  30059. extra: 156/152,
  30060. bottom: 28/184
  30061. }
  30062. },
  30063. },
  30064. [
  30065. {
  30066. name: "Mortal",
  30067. height: math.unit(175, "cm")
  30068. },
  30069. {
  30070. name: "Normal",
  30071. height: math.unit(3500, "m")
  30072. },
  30073. {
  30074. name: "Stroll",
  30075. height: math.unit(18.4, "km"),
  30076. default: true
  30077. },
  30078. {
  30079. name: "Showoff",
  30080. height: math.unit(175, "km")
  30081. },
  30082. ]
  30083. ))
  30084. characterMakers.push(() => makeCharacter(
  30085. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30086. {
  30087. front: {
  30088. height: math.unit(7, "feet"),
  30089. weight: math.unit(1000, "kg"),
  30090. name: "Front",
  30091. image: {
  30092. source: "./media/characters/edrax/front.svg",
  30093. extra: 2838 / 2550,
  30094. bottom: 130 / 2968
  30095. }
  30096. },
  30097. },
  30098. [
  30099. {
  30100. name: "Small",
  30101. height: math.unit(7, "feet")
  30102. },
  30103. {
  30104. name: "Normal",
  30105. height: math.unit(1500, "meters")
  30106. },
  30107. {
  30108. name: "Mega",
  30109. height: math.unit(12000000, "km"),
  30110. default: true
  30111. },
  30112. {
  30113. name: "Megamacro",
  30114. height: math.unit(10600000, "lightyears")
  30115. },
  30116. {
  30117. name: "Hypermacro",
  30118. height: math.unit(256, "yottameters")
  30119. },
  30120. ]
  30121. ))
  30122. characterMakers.push(() => makeCharacter(
  30123. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30124. {
  30125. front: {
  30126. height: math.unit(10, "feet"),
  30127. weight: math.unit(750, "lb"),
  30128. name: "Front",
  30129. image: {
  30130. source: "./media/characters/clove/front.svg",
  30131. extra: 1918/1751,
  30132. bottom: 52/1970
  30133. }
  30134. },
  30135. back: {
  30136. height: math.unit(10, "feet"),
  30137. weight: math.unit(750, "lb"),
  30138. name: "Back",
  30139. image: {
  30140. source: "./media/characters/clove/back.svg",
  30141. extra: 1912/1747,
  30142. bottom: 50/1962
  30143. }
  30144. },
  30145. },
  30146. [
  30147. {
  30148. name: "Normal",
  30149. height: math.unit(10, "feet"),
  30150. default: true
  30151. },
  30152. ]
  30153. ))
  30154. characterMakers.push(() => makeCharacter(
  30155. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30156. {
  30157. front: {
  30158. height: math.unit(4, "feet"),
  30159. weight: math.unit(50, "lb"),
  30160. name: "Front",
  30161. image: {
  30162. source: "./media/characters/alex-rabbit/front.svg",
  30163. extra: 507 / 458,
  30164. bottom: 18.5 / 527
  30165. }
  30166. },
  30167. back: {
  30168. height: math.unit(4, "feet"),
  30169. weight: math.unit(50, "lb"),
  30170. name: "Back",
  30171. image: {
  30172. source: "./media/characters/alex-rabbit/back.svg",
  30173. extra: 502 / 460,
  30174. bottom: 18.9 / 521
  30175. }
  30176. },
  30177. },
  30178. [
  30179. {
  30180. name: "Normal",
  30181. height: math.unit(4, "feet"),
  30182. default: true
  30183. },
  30184. ]
  30185. ))
  30186. characterMakers.push(() => makeCharacter(
  30187. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30188. {
  30189. front: {
  30190. height: math.unit(1 + 3 / 12, "feet"),
  30191. weight: math.unit(80, "lb"),
  30192. name: "Front",
  30193. image: {
  30194. source: "./media/characters/zander-rose/front.svg",
  30195. extra: 916 / 797,
  30196. bottom: 17 / 933
  30197. }
  30198. },
  30199. back: {
  30200. height: math.unit(1 + 3 / 12, "feet"),
  30201. weight: math.unit(80, "lb"),
  30202. name: "Back",
  30203. image: {
  30204. source: "./media/characters/zander-rose/back.svg",
  30205. extra: 903 / 779,
  30206. bottom: 31 / 934
  30207. }
  30208. },
  30209. },
  30210. [
  30211. {
  30212. name: "Normal",
  30213. height: math.unit(1 + 3 / 12, "feet"),
  30214. default: true
  30215. },
  30216. ]
  30217. ))
  30218. characterMakers.push(() => makeCharacter(
  30219. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30220. {
  30221. anthro: {
  30222. height: math.unit(6, "feet"),
  30223. weight: math.unit(150, "lb"),
  30224. name: "Anthro",
  30225. image: {
  30226. source: "./media/characters/razz/anthro.svg",
  30227. extra: 1437 / 1343,
  30228. bottom: 48 / 1485
  30229. }
  30230. },
  30231. feral: {
  30232. height: math.unit(6, "feet"),
  30233. weight: math.unit(150, "lb"),
  30234. name: "Feral",
  30235. image: {
  30236. source: "./media/characters/razz/feral.svg",
  30237. extra: 2569 / 1385,
  30238. bottom: 95 / 2664
  30239. }
  30240. },
  30241. },
  30242. [
  30243. {
  30244. name: "Normal",
  30245. height: math.unit(6, "feet"),
  30246. default: true
  30247. },
  30248. ]
  30249. ))
  30250. characterMakers.push(() => makeCharacter(
  30251. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30252. {
  30253. front: {
  30254. height: math.unit(9 + 4 / 12, "feet"),
  30255. weight: math.unit(500, "lb"),
  30256. name: "Front",
  30257. image: {
  30258. source: "./media/characters/morrigan/front.svg",
  30259. extra: 2707 / 2579,
  30260. bottom: 156 / 2863
  30261. }
  30262. },
  30263. },
  30264. [
  30265. {
  30266. name: "Normal",
  30267. height: math.unit(9 + 4 / 12, "feet"),
  30268. default: true
  30269. },
  30270. ]
  30271. ))
  30272. characterMakers.push(() => makeCharacter(
  30273. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30274. {
  30275. front: {
  30276. height: math.unit(5, "stories"),
  30277. weight: math.unit(4000, "lb"),
  30278. name: "Front",
  30279. image: {
  30280. source: "./media/characters/jenene/front.svg",
  30281. extra: 1780 / 1710,
  30282. bottom: 57 / 1837
  30283. }
  30284. },
  30285. },
  30286. [
  30287. {
  30288. name: "Normal",
  30289. height: math.unit(5, "stories"),
  30290. default: true
  30291. },
  30292. ]
  30293. ))
  30294. characterMakers.push(() => makeCharacter(
  30295. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30296. {
  30297. taurSfw: {
  30298. height: math.unit(10, "meters"),
  30299. weight: math.unit(17500, "kg"),
  30300. name: "Taur",
  30301. image: {
  30302. source: "./media/characters/faey/taur-sfw.svg",
  30303. extra: 1200 / 968,
  30304. bottom: 41 / 1241
  30305. }
  30306. },
  30307. chestmaw: {
  30308. height: math.unit(2.01, "meters"),
  30309. name: "Chestmaw",
  30310. image: {
  30311. source: "./media/characters/faey/chestmaw.svg"
  30312. }
  30313. },
  30314. foot: {
  30315. height: math.unit(2.43, "meters"),
  30316. name: "Foot",
  30317. image: {
  30318. source: "./media/characters/faey/foot.svg"
  30319. }
  30320. },
  30321. jaws: {
  30322. height: math.unit(1.66, "meters"),
  30323. name: "Jaws",
  30324. image: {
  30325. source: "./media/characters/faey/jaws.svg"
  30326. }
  30327. },
  30328. tongues: {
  30329. height: math.unit(2.01, "meters"),
  30330. name: "Tongues",
  30331. image: {
  30332. source: "./media/characters/faey/tongues.svg"
  30333. }
  30334. },
  30335. },
  30336. [
  30337. {
  30338. name: "Small",
  30339. height: math.unit(10, "meters"),
  30340. default: true
  30341. },
  30342. {
  30343. name: "Big",
  30344. height: math.unit(500000, "km")
  30345. },
  30346. ]
  30347. ))
  30348. characterMakers.push(() => makeCharacter(
  30349. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30350. {
  30351. front: {
  30352. height: math.unit(7, "feet"),
  30353. weight: math.unit(275, "lb"),
  30354. name: "Front",
  30355. image: {
  30356. source: "./media/characters/roku/front.svg",
  30357. extra: 903 / 878,
  30358. bottom: 37 / 940
  30359. }
  30360. },
  30361. },
  30362. [
  30363. {
  30364. name: "Normal",
  30365. height: math.unit(7, "feet"),
  30366. default: true
  30367. },
  30368. {
  30369. name: "Macro",
  30370. height: math.unit(500, "feet")
  30371. },
  30372. {
  30373. name: "Megamacro",
  30374. height: math.unit(200, "miles")
  30375. },
  30376. ]
  30377. ))
  30378. characterMakers.push(() => makeCharacter(
  30379. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30380. {
  30381. front: {
  30382. height: math.unit(6 + 2 / 12, "feet"),
  30383. weight: math.unit(150, "lb"),
  30384. name: "Front",
  30385. image: {
  30386. source: "./media/characters/lira/front.svg",
  30387. extra: 1727 / 1605,
  30388. bottom: 26 / 1753
  30389. }
  30390. },
  30391. back: {
  30392. height: math.unit(6 + 2 / 12, "feet"),
  30393. weight: math.unit(150, "lb"),
  30394. name: "Back",
  30395. image: {
  30396. source: "./media/characters/lira/back.svg",
  30397. extra: 1713/1621,
  30398. bottom: 20/1733
  30399. }
  30400. },
  30401. hand: {
  30402. height: math.unit(0.75, "feet"),
  30403. name: "Hand",
  30404. image: {
  30405. source: "./media/characters/lira/hand.svg"
  30406. }
  30407. },
  30408. maw: {
  30409. height: math.unit(0.65, "feet"),
  30410. name: "Maw",
  30411. image: {
  30412. source: "./media/characters/lira/maw.svg"
  30413. }
  30414. },
  30415. pawDigi: {
  30416. height: math.unit(1.6, "feet"),
  30417. name: "Paw Digi",
  30418. image: {
  30419. source: "./media/characters/lira/paw-digi.svg"
  30420. }
  30421. },
  30422. pawPlanti: {
  30423. height: math.unit(1.4, "feet"),
  30424. name: "Paw Planti",
  30425. image: {
  30426. source: "./media/characters/lira/paw-planti.svg"
  30427. }
  30428. },
  30429. },
  30430. [
  30431. {
  30432. name: "Normal",
  30433. height: math.unit(6 + 2 / 12, "feet"),
  30434. default: true
  30435. },
  30436. {
  30437. name: "Macro",
  30438. height: math.unit(100, "feet")
  30439. },
  30440. {
  30441. name: "Macro²",
  30442. height: math.unit(1600, "feet")
  30443. },
  30444. {
  30445. name: "Planetary",
  30446. height: math.unit(20, "earths")
  30447. },
  30448. ]
  30449. ))
  30450. characterMakers.push(() => makeCharacter(
  30451. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30452. {
  30453. front: {
  30454. height: math.unit(6, "feet"),
  30455. weight: math.unit(150, "lb"),
  30456. name: "Front",
  30457. image: {
  30458. source: "./media/characters/hadjet/front.svg",
  30459. extra: 1480 / 1346,
  30460. bottom: 26 / 1506
  30461. }
  30462. },
  30463. frontNsfw: {
  30464. height: math.unit(6, "feet"),
  30465. weight: math.unit(150, "lb"),
  30466. name: "Front (NSFW)",
  30467. image: {
  30468. source: "./media/characters/hadjet/front-nsfw.svg",
  30469. extra: 1440 / 1358,
  30470. bottom: 52 / 1492
  30471. }
  30472. },
  30473. },
  30474. [
  30475. {
  30476. name: "Macro",
  30477. height: math.unit(10, "stories"),
  30478. default: true
  30479. },
  30480. {
  30481. name: "Megamacro",
  30482. height: math.unit(1.5, "miles")
  30483. },
  30484. {
  30485. name: "Megamacro+",
  30486. height: math.unit(5, "miles")
  30487. },
  30488. ]
  30489. ))
  30490. characterMakers.push(() => makeCharacter(
  30491. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30492. {
  30493. side: {
  30494. height: math.unit(106, "feet"),
  30495. weight: math.unit(500, "tonnes"),
  30496. name: "Side",
  30497. image: {
  30498. source: "./media/characters/kodran/side.svg",
  30499. extra: 553 / 480,
  30500. bottom: 33 / 586
  30501. }
  30502. },
  30503. front: {
  30504. height: math.unit(132, "feet"),
  30505. weight: math.unit(500, "tonnes"),
  30506. name: "Front",
  30507. image: {
  30508. source: "./media/characters/kodran/front.svg",
  30509. extra: 667 / 643,
  30510. bottom: 42 / 709
  30511. }
  30512. },
  30513. flying: {
  30514. height: math.unit(350, "feet"),
  30515. weight: math.unit(500, "tonnes"),
  30516. name: "Flying",
  30517. image: {
  30518. source: "./media/characters/kodran/flying.svg"
  30519. }
  30520. },
  30521. foot: {
  30522. height: math.unit(33, "feet"),
  30523. name: "Foot",
  30524. image: {
  30525. source: "./media/characters/kodran/foot.svg"
  30526. }
  30527. },
  30528. footFront: {
  30529. height: math.unit(19, "feet"),
  30530. name: "Foot (Front)",
  30531. image: {
  30532. source: "./media/characters/kodran/foot-front.svg",
  30533. extra: 261 / 261,
  30534. bottom: 91 / 352
  30535. }
  30536. },
  30537. headFront: {
  30538. height: math.unit(53, "feet"),
  30539. name: "Head (Front)",
  30540. image: {
  30541. source: "./media/characters/kodran/head-front.svg"
  30542. }
  30543. },
  30544. headSide: {
  30545. height: math.unit(65, "feet"),
  30546. name: "Head (Side)",
  30547. image: {
  30548. source: "./media/characters/kodran/head-side.svg"
  30549. }
  30550. },
  30551. throat: {
  30552. height: math.unit(79, "feet"),
  30553. name: "Throat",
  30554. image: {
  30555. source: "./media/characters/kodran/throat.svg"
  30556. }
  30557. },
  30558. },
  30559. [
  30560. {
  30561. name: "Large",
  30562. height: math.unit(106, "feet"),
  30563. default: true
  30564. },
  30565. ]
  30566. ))
  30567. characterMakers.push(() => makeCharacter(
  30568. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30569. {
  30570. side: {
  30571. height: math.unit(11, "feet"),
  30572. weight: math.unit(150, "lb"),
  30573. name: "Side",
  30574. image: {
  30575. source: "./media/characters/pyxaron/side.svg",
  30576. extra: 305 / 195,
  30577. bottom: 17 / 322
  30578. }
  30579. },
  30580. },
  30581. [
  30582. {
  30583. name: "Normal",
  30584. height: math.unit(11, "feet"),
  30585. default: true
  30586. },
  30587. ]
  30588. ))
  30589. characterMakers.push(() => makeCharacter(
  30590. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30591. {
  30592. front: {
  30593. height: math.unit(6, "feet"),
  30594. weight: math.unit(150, "lb"),
  30595. name: "Front",
  30596. image: {
  30597. source: "./media/characters/meep/front.svg",
  30598. extra: 88 / 80,
  30599. bottom: 6 / 94
  30600. }
  30601. },
  30602. },
  30603. [
  30604. {
  30605. name: "Fun Sized",
  30606. height: math.unit(2, "inches"),
  30607. default: true
  30608. },
  30609. {
  30610. name: "Friend Sized",
  30611. height: math.unit(8, "inches")
  30612. },
  30613. ]
  30614. ))
  30615. characterMakers.push(() => makeCharacter(
  30616. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30617. {
  30618. front: {
  30619. height: math.unit(15, "feet"),
  30620. weight: math.unit(2500, "lb"),
  30621. name: "Front",
  30622. image: {
  30623. source: "./media/characters/holly-rabbit/front.svg",
  30624. extra: 1433 / 1233,
  30625. bottom: 125 / 1558
  30626. }
  30627. },
  30628. dick: {
  30629. height: math.unit(4.6, "feet"),
  30630. name: "Dick",
  30631. image: {
  30632. source: "./media/characters/holly-rabbit/dick.svg"
  30633. }
  30634. },
  30635. },
  30636. [
  30637. {
  30638. name: "Normal",
  30639. height: math.unit(15, "feet"),
  30640. default: true
  30641. },
  30642. {
  30643. name: "Macro",
  30644. height: math.unit(250, "feet")
  30645. },
  30646. {
  30647. name: "Macro+",
  30648. height: math.unit(2500, "feet")
  30649. },
  30650. ]
  30651. ))
  30652. characterMakers.push(() => makeCharacter(
  30653. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30654. {
  30655. front: {
  30656. height: math.unit(3.02, "meters"),
  30657. weight: math.unit(500, "kg"),
  30658. name: "Front",
  30659. image: {
  30660. source: "./media/characters/drena/front.svg",
  30661. extra: 282 / 243,
  30662. bottom: 8 / 290
  30663. }
  30664. },
  30665. side: {
  30666. height: math.unit(3.02, "meters"),
  30667. weight: math.unit(500, "kg"),
  30668. name: "Side",
  30669. image: {
  30670. source: "./media/characters/drena/side.svg",
  30671. extra: 280 / 245,
  30672. bottom: 10 / 290
  30673. }
  30674. },
  30675. back: {
  30676. height: math.unit(3.02, "meters"),
  30677. weight: math.unit(500, "kg"),
  30678. name: "Back",
  30679. image: {
  30680. source: "./media/characters/drena/back.svg",
  30681. extra: 278 / 243,
  30682. bottom: 2 / 280
  30683. }
  30684. },
  30685. foot: {
  30686. height: math.unit(0.75, "meters"),
  30687. name: "Foot",
  30688. image: {
  30689. source: "./media/characters/drena/foot.svg"
  30690. }
  30691. },
  30692. maw: {
  30693. height: math.unit(0.82, "meters"),
  30694. name: "Maw",
  30695. image: {
  30696. source: "./media/characters/drena/maw.svg"
  30697. }
  30698. },
  30699. eating: {
  30700. height: math.unit(0.75, "meters"),
  30701. name: "Eating",
  30702. image: {
  30703. source: "./media/characters/drena/eating.svg"
  30704. }
  30705. },
  30706. rump: {
  30707. height: math.unit(0.93, "meters"),
  30708. name: "Rump",
  30709. image: {
  30710. source: "./media/characters/drena/rump.svg"
  30711. }
  30712. },
  30713. },
  30714. [
  30715. {
  30716. name: "Normal",
  30717. height: math.unit(3.02, "meters"),
  30718. default: true
  30719. },
  30720. ]
  30721. ))
  30722. characterMakers.push(() => makeCharacter(
  30723. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30724. {
  30725. front: {
  30726. height: math.unit(6 + 4 / 12, "feet"),
  30727. weight: math.unit(250, "lb"),
  30728. name: "Front",
  30729. image: {
  30730. source: "./media/characters/remmyzilla/front.svg",
  30731. extra: 4033 / 3588,
  30732. bottom: 123 / 4156
  30733. }
  30734. },
  30735. back: {
  30736. height: math.unit(6 + 4 / 12, "feet"),
  30737. weight: math.unit(250, "lb"),
  30738. name: "Back",
  30739. image: {
  30740. source: "./media/characters/remmyzilla/back.svg",
  30741. extra: 2687 / 2555,
  30742. bottom: 48 / 2735
  30743. }
  30744. },
  30745. paw: {
  30746. height: math.unit(1.73, "feet"),
  30747. name: "Paw",
  30748. image: {
  30749. source: "./media/characters/remmyzilla/paw.svg"
  30750. },
  30751. extraAttributes: {
  30752. "toeSize": {
  30753. name: "Toe Size",
  30754. power: 2,
  30755. type: "area",
  30756. base: math.unit(0.0035, "m^2")
  30757. },
  30758. "padSize": {
  30759. name: "Pad Size",
  30760. power: 2,
  30761. type: "area",
  30762. base: math.unit(0.015, "m^2")
  30763. },
  30764. "pawsize": {
  30765. name: "Paw Size",
  30766. power: 2,
  30767. type: "area",
  30768. base: math.unit(0.072, "m^2")
  30769. },
  30770. }
  30771. },
  30772. maw: {
  30773. height: math.unit(1.73, "feet"),
  30774. name: "Maw",
  30775. image: {
  30776. source: "./media/characters/remmyzilla/maw.svg"
  30777. }
  30778. },
  30779. },
  30780. [
  30781. {
  30782. name: "Normal",
  30783. height: math.unit(6 + 4 / 12, "feet")
  30784. },
  30785. {
  30786. name: "Minimacro",
  30787. height: math.unit(12 + 8 / 12, "feet")
  30788. },
  30789. {
  30790. name: "Normal",
  30791. height: math.unit(640, "feet"),
  30792. default: true
  30793. },
  30794. {
  30795. name: "Megamacro",
  30796. height: math.unit(6400, "feet")
  30797. },
  30798. {
  30799. name: "Gigamacro",
  30800. height: math.unit(64000, "miles")
  30801. },
  30802. ]
  30803. ))
  30804. characterMakers.push(() => makeCharacter(
  30805. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30806. {
  30807. front: {
  30808. height: math.unit(2.5, "meters"),
  30809. weight: math.unit(300, "lb"),
  30810. name: "Front",
  30811. image: {
  30812. source: "./media/characters/lawrence/front.svg",
  30813. extra: 357 / 335,
  30814. bottom: 30 / 387
  30815. }
  30816. },
  30817. back: {
  30818. height: math.unit(2.5, "meters"),
  30819. weight: math.unit(300, "lb"),
  30820. name: "Back",
  30821. image: {
  30822. source: "./media/characters/lawrence/back.svg",
  30823. extra: 357 / 338,
  30824. bottom: 16 / 373
  30825. }
  30826. },
  30827. head: {
  30828. height: math.unit(0.9, "meter"),
  30829. name: "Head",
  30830. image: {
  30831. source: "./media/characters/lawrence/head.svg"
  30832. }
  30833. },
  30834. maw: {
  30835. height: math.unit(0.7, "meter"),
  30836. name: "Maw",
  30837. image: {
  30838. source: "./media/characters/lawrence/maw.svg"
  30839. }
  30840. },
  30841. footBottom: {
  30842. height: math.unit(0.5, "meter"),
  30843. name: "Foot (Bottom)",
  30844. image: {
  30845. source: "./media/characters/lawrence/foot-bottom.svg"
  30846. }
  30847. },
  30848. footTop: {
  30849. height: math.unit(0.5, "meter"),
  30850. name: "Foot (Top)",
  30851. image: {
  30852. source: "./media/characters/lawrence/foot-top.svg"
  30853. }
  30854. },
  30855. },
  30856. [
  30857. {
  30858. name: "Normal",
  30859. height: math.unit(2.5, "meters"),
  30860. default: true
  30861. },
  30862. {
  30863. name: "Macro",
  30864. height: math.unit(95, "meters")
  30865. },
  30866. {
  30867. name: "Megamacro",
  30868. height: math.unit(150, "km")
  30869. },
  30870. ]
  30871. ))
  30872. characterMakers.push(() => makeCharacter(
  30873. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30874. {
  30875. front: {
  30876. height: math.unit(4.2, "meters"),
  30877. preyCapacity: math.unit(50, "m^3"),
  30878. weight: math.unit(30, "tonnes"),
  30879. name: "Front",
  30880. image: {
  30881. source: "./media/characters/sydney/front.svg",
  30882. extra: 1177/1129,
  30883. bottom: 197/1374
  30884. },
  30885. extraAttributes: {
  30886. "length": {
  30887. name: "Length",
  30888. power: 1,
  30889. type: "length",
  30890. base: math.unit(21, "meters")
  30891. },
  30892. }
  30893. },
  30894. },
  30895. [
  30896. {
  30897. name: "Normal",
  30898. height: math.unit(4.2, "meters"),
  30899. default: true
  30900. },
  30901. ]
  30902. ))
  30903. characterMakers.push(() => makeCharacter(
  30904. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30905. {
  30906. back: {
  30907. height: math.unit(201, "feet"),
  30908. name: "Back",
  30909. image: {
  30910. source: "./media/characters/jessica/back.svg",
  30911. extra: 273 / 259,
  30912. bottom: 7 / 280
  30913. }
  30914. },
  30915. },
  30916. [
  30917. {
  30918. name: "Normal",
  30919. height: math.unit(201, "feet"),
  30920. default: true
  30921. },
  30922. {
  30923. name: "Megamacro",
  30924. height: math.unit(8, "miles")
  30925. },
  30926. ]
  30927. ))
  30928. characterMakers.push(() => makeCharacter(
  30929. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30930. {
  30931. side: {
  30932. height: math.unit(5.6, "m"),
  30933. weight: math.unit(8000, "kg"),
  30934. name: "Side",
  30935. image: {
  30936. source: "./media/characters/victoria/side.svg",
  30937. extra: 1542/1229,
  30938. bottom: 124/1666
  30939. }
  30940. },
  30941. maw: {
  30942. height: math.unit(7.14, "feet"),
  30943. name: "Maw",
  30944. image: {
  30945. source: "./media/characters/victoria/maw.svg"
  30946. }
  30947. },
  30948. },
  30949. [
  30950. {
  30951. name: "Normal",
  30952. height: math.unit(5.6, "m"),
  30953. default: true
  30954. },
  30955. ]
  30956. ))
  30957. characterMakers.push(() => makeCharacter(
  30958. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30959. {
  30960. front: {
  30961. height: math.unit(5 + 6 / 12, "feet"),
  30962. name: "Front",
  30963. image: {
  30964. source: "./media/characters/cat/front.svg",
  30965. extra: 1449/1295,
  30966. bottom: 34/1483
  30967. },
  30968. form: "cat",
  30969. default: true
  30970. },
  30971. back: {
  30972. height: math.unit(5 + 6 / 12, "feet"),
  30973. name: "Back",
  30974. image: {
  30975. source: "./media/characters/cat/back.svg",
  30976. extra: 1466/1301,
  30977. bottom: 19/1485
  30978. },
  30979. form: "cat"
  30980. },
  30981. taur: {
  30982. height: math.unit(7, "feet"),
  30983. name: "Taur",
  30984. image: {
  30985. source: "./media/characters/cat/taur.svg",
  30986. extra: 1389/1233,
  30987. bottom: 83/1472
  30988. },
  30989. form: "taur",
  30990. default: true
  30991. },
  30992. lucarioFront: {
  30993. height: math.unit(4, "feet"),
  30994. name: "Lucario (Front)",
  30995. image: {
  30996. source: "./media/characters/cat/lucario-front.svg",
  30997. extra: 1149/1019,
  30998. bottom: 84/1233
  30999. },
  31000. form: "lucario",
  31001. default: true
  31002. },
  31003. lucarioBack: {
  31004. height: math.unit(4, "feet"),
  31005. name: "Lucario (Back)",
  31006. image: {
  31007. source: "./media/characters/cat/lucario-back.svg",
  31008. extra: 1190/1059,
  31009. bottom: 33/1223
  31010. },
  31011. form: "lucario"
  31012. },
  31013. megaLucario: {
  31014. height: math.unit(4, "feet"),
  31015. name: "Mega Lucario",
  31016. image: {
  31017. source: "./media/characters/cat/mega-lucario.svg",
  31018. extra: 1515 / 1319,
  31019. bottom: 63 / 1578
  31020. },
  31021. form: "lucario"
  31022. },
  31023. nickit: {
  31024. height: math.unit(2, "feet"),
  31025. name: "Nickit",
  31026. image: {
  31027. source: "./media/characters/cat/nickit.svg",
  31028. extra: 1980 / 1585,
  31029. bottom: 102 / 2082
  31030. },
  31031. form: "nickit",
  31032. default: true
  31033. },
  31034. lopunnyFront: {
  31035. height: math.unit(5, "feet"),
  31036. name: "Lopunny (Front)",
  31037. image: {
  31038. source: "./media/characters/cat/lopunny-front.svg",
  31039. extra: 1782 / 1469,
  31040. bottom: 38 / 1820
  31041. },
  31042. form: "lopunny",
  31043. default: true
  31044. },
  31045. lopunnyBack: {
  31046. height: math.unit(5, "feet"),
  31047. name: "Lopunny (Back)",
  31048. image: {
  31049. source: "./media/characters/cat/lopunny-back.svg",
  31050. extra: 1660 / 1490,
  31051. bottom: 25 / 1685
  31052. },
  31053. form: "lopunny"
  31054. },
  31055. },
  31056. [
  31057. {
  31058. name: "Really small",
  31059. height: math.unit(1, "nm")
  31060. },
  31061. {
  31062. name: "Micro",
  31063. height: math.unit(5, "inches")
  31064. },
  31065. {
  31066. name: "Normal",
  31067. height: math.unit(5 + 6 / 12, "feet"),
  31068. default: true
  31069. },
  31070. {
  31071. name: "Macro",
  31072. height: math.unit(50, "feet")
  31073. },
  31074. {
  31075. name: "Macro+",
  31076. height: math.unit(150, "feet")
  31077. },
  31078. {
  31079. name: "Megamacro",
  31080. height: math.unit(100, "miles")
  31081. },
  31082. ]
  31083. ))
  31084. characterMakers.push(() => makeCharacter(
  31085. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31086. {
  31087. front: {
  31088. height: math.unit(63.4, "meters"),
  31089. weight: math.unit(3.28349e+6, "kilograms"),
  31090. name: "Front",
  31091. image: {
  31092. source: "./media/characters/kirina-violet/front.svg",
  31093. extra: 2812 / 2725,
  31094. bottom: 0 / 2812
  31095. }
  31096. },
  31097. back: {
  31098. height: math.unit(63.4, "meters"),
  31099. weight: math.unit(3.28349e+6, "kilograms"),
  31100. name: "Back",
  31101. image: {
  31102. source: "./media/characters/kirina-violet/back.svg",
  31103. extra: 2812 / 2725,
  31104. bottom: 0 / 2812
  31105. }
  31106. },
  31107. mouth: {
  31108. height: math.unit(4.35, "meters"),
  31109. name: "Mouth",
  31110. image: {
  31111. source: "./media/characters/kirina-violet/mouth.svg"
  31112. }
  31113. },
  31114. paw: {
  31115. height: math.unit(5.6, "meters"),
  31116. name: "Paw",
  31117. image: {
  31118. source: "./media/characters/kirina-violet/paw.svg"
  31119. }
  31120. },
  31121. tail: {
  31122. height: math.unit(18, "meters"),
  31123. name: "Tail",
  31124. image: {
  31125. source: "./media/characters/kirina-violet/tail.svg"
  31126. }
  31127. },
  31128. },
  31129. [
  31130. {
  31131. name: "Macro",
  31132. height: math.unit(63.4, "meters"),
  31133. default: true
  31134. },
  31135. ]
  31136. ))
  31137. characterMakers.push(() => makeCharacter(
  31138. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31139. {
  31140. front: {
  31141. height: math.unit(75, "feet"),
  31142. name: "Front",
  31143. image: {
  31144. source: "./media/characters/cat-gigachu/front.svg",
  31145. extra: 1239/1027,
  31146. bottom: 32/1271
  31147. }
  31148. },
  31149. back: {
  31150. height: math.unit(75, "feet"),
  31151. name: "Back",
  31152. image: {
  31153. source: "./media/characters/cat-gigachu/back.svg",
  31154. extra: 1229/1030,
  31155. bottom: 9/1238
  31156. }
  31157. },
  31158. },
  31159. [
  31160. {
  31161. name: "Dynamax",
  31162. height: math.unit(75, "feet"),
  31163. default: true
  31164. },
  31165. ]
  31166. ))
  31167. characterMakers.push(() => makeCharacter(
  31168. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31169. {
  31170. front: {
  31171. height: math.unit(6, "feet"),
  31172. weight: math.unit(150, "lb"),
  31173. name: "Front",
  31174. image: {
  31175. source: "./media/characters/sfaiyan/front.svg",
  31176. extra: 999 / 978,
  31177. bottom: 5 / 1004
  31178. }
  31179. },
  31180. },
  31181. [
  31182. {
  31183. name: "Normal",
  31184. height: math.unit(1.82, "meters")
  31185. },
  31186. {
  31187. name: "Giant",
  31188. height: math.unit(2.27, "km"),
  31189. default: true
  31190. },
  31191. ]
  31192. ))
  31193. characterMakers.push(() => makeCharacter(
  31194. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31195. {
  31196. front: {
  31197. height: math.unit(179, "cm"),
  31198. weight: math.unit(100, "kg"),
  31199. name: "Front",
  31200. image: {
  31201. source: "./media/characters/raunehkeli/front.svg",
  31202. extra: 1934 / 1926,
  31203. bottom: 0 / 1934
  31204. }
  31205. },
  31206. },
  31207. [
  31208. {
  31209. name: "Normal",
  31210. height: math.unit(179, "cm")
  31211. },
  31212. {
  31213. name: "Maximum",
  31214. height: math.unit(575, "meters"),
  31215. default: true
  31216. },
  31217. ]
  31218. ))
  31219. characterMakers.push(() => makeCharacter(
  31220. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31221. {
  31222. front: {
  31223. height: math.unit(6, "feet"),
  31224. weight: math.unit(150, "lb"),
  31225. name: "Front",
  31226. image: {
  31227. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31228. extra: 2625 / 2518,
  31229. bottom: 60 / 2685
  31230. }
  31231. },
  31232. },
  31233. [
  31234. {
  31235. name: "Normal",
  31236. height: math.unit(6 + 2 / 12, "feet")
  31237. },
  31238. {
  31239. name: "Macro",
  31240. height: math.unit(1180, "feet"),
  31241. default: true
  31242. },
  31243. ]
  31244. ))
  31245. characterMakers.push(() => makeCharacter(
  31246. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31247. {
  31248. front: {
  31249. height: math.unit(5 + 6 / 12, "feet"),
  31250. weight: math.unit(108, "lb"),
  31251. name: "Front",
  31252. image: {
  31253. source: "./media/characters/lilith-zott/front.svg",
  31254. extra: 2510 / 2238,
  31255. bottom: 100 / 2610
  31256. }
  31257. },
  31258. frontDressed: {
  31259. height: math.unit(5 + 6 / 12, "feet"),
  31260. weight: math.unit(108, "lb"),
  31261. name: "Front (Dressed)",
  31262. image: {
  31263. source: "./media/characters/lilith-zott/front-dressed.svg",
  31264. extra: 2510 / 2238,
  31265. bottom: 100 / 2610
  31266. }
  31267. },
  31268. },
  31269. [
  31270. {
  31271. name: "Normal",
  31272. height: math.unit(5 + 6 / 12, "feet")
  31273. },
  31274. {
  31275. name: "Macro",
  31276. height: math.unit(1030, "feet"),
  31277. default: true
  31278. },
  31279. ]
  31280. ))
  31281. characterMakers.push(() => makeCharacter(
  31282. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31283. {
  31284. front: {
  31285. height: math.unit(6, "feet"),
  31286. weight: math.unit(150, "lb"),
  31287. name: "Front",
  31288. image: {
  31289. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31290. extra: 2567 / 2435,
  31291. bottom: 39 / 2606
  31292. }
  31293. },
  31294. frontSuper: {
  31295. height: math.unit(6, "feet"),
  31296. name: "Front (Super)",
  31297. image: {
  31298. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31299. extra: 2567 / 2435,
  31300. bottom: 39 / 2606
  31301. }
  31302. },
  31303. },
  31304. [
  31305. {
  31306. name: "Normal",
  31307. height: math.unit(5 + 10 / 12, "feet")
  31308. },
  31309. {
  31310. name: "Macro",
  31311. height: math.unit(1100, "feet"),
  31312. default: true
  31313. },
  31314. ]
  31315. ))
  31316. characterMakers.push(() => makeCharacter(
  31317. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31318. {
  31319. front: {
  31320. height: math.unit(100, "miles"),
  31321. name: "Front",
  31322. image: {
  31323. source: "./media/characters/sona/front.svg",
  31324. extra: 2433 / 2201,
  31325. bottom: 53 / 2486
  31326. }
  31327. },
  31328. foot: {
  31329. height: math.unit(16.1, "miles"),
  31330. name: "Foot",
  31331. image: {
  31332. source: "./media/characters/sona/foot.svg"
  31333. }
  31334. },
  31335. },
  31336. [
  31337. {
  31338. name: "Macro",
  31339. height: math.unit(100, "miles"),
  31340. default: true
  31341. },
  31342. ]
  31343. ))
  31344. characterMakers.push(() => makeCharacter(
  31345. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31346. {
  31347. front: {
  31348. height: math.unit(6, "feet"),
  31349. weight: math.unit(150, "lb"),
  31350. name: "Front",
  31351. image: {
  31352. source: "./media/characters/bailey/front.svg",
  31353. extra: 1778 / 1724,
  31354. bottom: 30 / 1808
  31355. }
  31356. },
  31357. },
  31358. [
  31359. {
  31360. name: "Micro",
  31361. height: math.unit(4, "inches")
  31362. },
  31363. {
  31364. name: "Normal",
  31365. height: math.unit(5 + 5 / 12, "feet"),
  31366. default: true
  31367. },
  31368. {
  31369. name: "Macro",
  31370. height: math.unit(250, "feet")
  31371. },
  31372. {
  31373. name: "Megamacro",
  31374. height: math.unit(100, "miles")
  31375. },
  31376. ]
  31377. ))
  31378. characterMakers.push(() => makeCharacter(
  31379. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31380. {
  31381. front: {
  31382. height: math.unit(5 + 2 / 12, "feet"),
  31383. weight: math.unit(120, "lb"),
  31384. name: "Front",
  31385. image: {
  31386. source: "./media/characters/snaps/front.svg",
  31387. extra: 2370 / 2177,
  31388. bottom: 48 / 2418
  31389. }
  31390. },
  31391. back: {
  31392. height: math.unit(5 + 2 / 12, "feet"),
  31393. weight: math.unit(120, "lb"),
  31394. name: "Back",
  31395. image: {
  31396. source: "./media/characters/snaps/back.svg",
  31397. extra: 2408 / 2258,
  31398. bottom: 15 / 2423
  31399. }
  31400. },
  31401. },
  31402. [
  31403. {
  31404. name: "Micro",
  31405. height: math.unit(9, "inches")
  31406. },
  31407. {
  31408. name: "Normal",
  31409. height: math.unit(5 + 2 / 12, "feet"),
  31410. default: true
  31411. },
  31412. {
  31413. name: "Mini Macro",
  31414. height: math.unit(10, "feet")
  31415. },
  31416. ]
  31417. ))
  31418. characterMakers.push(() => makeCharacter(
  31419. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31420. {
  31421. front: {
  31422. height: math.unit(1.8, "meters"),
  31423. weight: math.unit(85, "kg"),
  31424. name: "Front",
  31425. image: {
  31426. source: "./media/characters/azteck/front.svg",
  31427. extra: 2815 / 2625,
  31428. bottom: 89 / 2904
  31429. }
  31430. },
  31431. back: {
  31432. height: math.unit(1.8, "meters"),
  31433. weight: math.unit(85, "kg"),
  31434. name: "Back",
  31435. image: {
  31436. source: "./media/characters/azteck/back.svg",
  31437. extra: 2856 / 2648,
  31438. bottom: 85 / 2941
  31439. }
  31440. },
  31441. frontDressed: {
  31442. height: math.unit(1.8, "meters"),
  31443. weight: math.unit(85, "kg"),
  31444. name: "Front (Dressed)",
  31445. image: {
  31446. source: "./media/characters/azteck/front-dressed.svg",
  31447. extra: 2147 / 2003,
  31448. bottom: 68 / 2215
  31449. }
  31450. },
  31451. head: {
  31452. height: math.unit(0.47, "meters"),
  31453. weight: math.unit(85, "kg"),
  31454. name: "Head",
  31455. image: {
  31456. source: "./media/characters/azteck/head.svg"
  31457. }
  31458. },
  31459. },
  31460. [
  31461. {
  31462. name: "Bite sized",
  31463. height: math.unit(16, "cm")
  31464. },
  31465. {
  31466. name: "Normal",
  31467. height: math.unit(1.8, "meters"),
  31468. default: true
  31469. },
  31470. ]
  31471. ))
  31472. characterMakers.push(() => makeCharacter(
  31473. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31474. {
  31475. front: {
  31476. height: math.unit(6, "feet"),
  31477. weight: math.unit(150, "lb"),
  31478. name: "Front",
  31479. image: {
  31480. source: "./media/characters/pidge/front.svg",
  31481. extra: 1936/1820,
  31482. bottom: 0/1936
  31483. }
  31484. },
  31485. back: {
  31486. height: math.unit(6, "feet"),
  31487. weight: math.unit(150, "lb"),
  31488. name: "Back",
  31489. image: {
  31490. source: "./media/characters/pidge/back.svg",
  31491. extra: 1938/1843,
  31492. bottom: 0/1938
  31493. }
  31494. },
  31495. casual: {
  31496. height: math.unit(6, "feet"),
  31497. weight: math.unit(150, "lb"),
  31498. name: "Casual",
  31499. image: {
  31500. source: "./media/characters/pidge/casual.svg",
  31501. extra: 1936/1820,
  31502. bottom: 0/1936
  31503. }
  31504. },
  31505. tech: {
  31506. height: math.unit(6, "feet"),
  31507. weight: math.unit(150, "lb"),
  31508. name: "Tech",
  31509. image: {
  31510. source: "./media/characters/pidge/tech.svg",
  31511. extra: 1802/1682,
  31512. bottom: 0/1802
  31513. }
  31514. },
  31515. head: {
  31516. height: math.unit(1.61, "feet"),
  31517. name: "Head",
  31518. image: {
  31519. source: "./media/characters/pidge/head.svg"
  31520. }
  31521. },
  31522. collar: {
  31523. height: math.unit(0.82, "feet"),
  31524. name: "Collar",
  31525. image: {
  31526. source: "./media/characters/pidge/collar.svg"
  31527. }
  31528. },
  31529. },
  31530. [
  31531. {
  31532. name: "Macro",
  31533. height: math.unit(2, "mile"),
  31534. default: true
  31535. },
  31536. {
  31537. name: "PUPPY",
  31538. height: math.unit(20, "miles")
  31539. },
  31540. ]
  31541. ))
  31542. characterMakers.push(() => makeCharacter(
  31543. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31544. {
  31545. front: {
  31546. height: math.unit(6, "feet"),
  31547. weight: math.unit(150, "lb"),
  31548. name: "Front",
  31549. image: {
  31550. source: "./media/characters/en/front.svg",
  31551. extra: 1697 / 1563,
  31552. bottom: 103 / 1800
  31553. }
  31554. },
  31555. back: {
  31556. height: math.unit(6, "feet"),
  31557. weight: math.unit(150, "lb"),
  31558. name: "Back",
  31559. image: {
  31560. source: "./media/characters/en/back.svg",
  31561. extra: 1700 / 1570,
  31562. bottom: 51 / 1751
  31563. }
  31564. },
  31565. frontDressed: {
  31566. height: math.unit(6, "feet"),
  31567. weight: math.unit(150, "lb"),
  31568. name: "Front (Dressed)",
  31569. image: {
  31570. source: "./media/characters/en/front-dressed.svg",
  31571. extra: 1697 / 1563,
  31572. bottom: 103 / 1800
  31573. }
  31574. },
  31575. backDressed: {
  31576. height: math.unit(6, "feet"),
  31577. weight: math.unit(150, "lb"),
  31578. name: "Back (Dressed)",
  31579. image: {
  31580. source: "./media/characters/en/back-dressed.svg",
  31581. extra: 1700 / 1570,
  31582. bottom: 51 / 1751
  31583. }
  31584. },
  31585. },
  31586. [
  31587. {
  31588. name: "Macro",
  31589. height: math.unit(210, "feet"),
  31590. default: true
  31591. },
  31592. ]
  31593. ))
  31594. characterMakers.push(() => makeCharacter(
  31595. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31596. {
  31597. front: {
  31598. height: math.unit(6, "feet"),
  31599. weight: math.unit(150, "lb"),
  31600. name: "Front",
  31601. image: {
  31602. source: "./media/characters/haze-orris/front.svg",
  31603. extra: 3975 / 3525,
  31604. bottom: 137 / 4112
  31605. }
  31606. },
  31607. },
  31608. [
  31609. {
  31610. name: "Micro",
  31611. height: math.unit(150, "mm"),
  31612. default: true
  31613. },
  31614. ]
  31615. ))
  31616. characterMakers.push(() => makeCharacter(
  31617. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31618. {
  31619. front: {
  31620. height: math.unit(6, "feet"),
  31621. weight: math.unit(150, "lb"),
  31622. name: "Front",
  31623. image: {
  31624. source: "./media/characters/casselene-yaro/front.svg",
  31625. extra: 4721 / 4541,
  31626. bottom: 82 / 4803
  31627. }
  31628. },
  31629. back: {
  31630. height: math.unit(6, "feet"),
  31631. weight: math.unit(150, "lb"),
  31632. name: "Back",
  31633. image: {
  31634. source: "./media/characters/casselene-yaro/back.svg",
  31635. extra: 4569 / 4377,
  31636. bottom: 69 / 4638
  31637. }
  31638. },
  31639. dressed: {
  31640. height: math.unit(6, "feet"),
  31641. weight: math.unit(150, "lb"),
  31642. name: "Dressed",
  31643. image: {
  31644. source: "./media/characters/casselene-yaro/dressed.svg",
  31645. extra: 4721 / 4541,
  31646. bottom: 82 / 4803
  31647. }
  31648. },
  31649. maw: {
  31650. height: math.unit(1, "feet"),
  31651. name: "Maw",
  31652. image: {
  31653. source: "./media/characters/casselene-yaro/maw.svg"
  31654. }
  31655. },
  31656. },
  31657. [
  31658. {
  31659. name: "Macro",
  31660. height: math.unit(190, "feet"),
  31661. default: true
  31662. },
  31663. ]
  31664. ))
  31665. characterMakers.push(() => makeCharacter(
  31666. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31667. {
  31668. front: {
  31669. height: math.unit(10, "feet"),
  31670. weight: math.unit(15015, "lb"),
  31671. name: "Front",
  31672. image: {
  31673. source: "./media/characters/platine/front.svg",
  31674. extra: 1741/1650,
  31675. bottom: 84/1825
  31676. }
  31677. },
  31678. side: {
  31679. height: math.unit(10, "feet"),
  31680. weight: math.unit(15015, "lb"),
  31681. name: "Side",
  31682. image: {
  31683. source: "./media/characters/platine/side.svg",
  31684. extra: 1790/1705,
  31685. bottom: 29/1819
  31686. }
  31687. },
  31688. },
  31689. [
  31690. {
  31691. name: "Normal",
  31692. height: math.unit(10, "feet"),
  31693. default: true
  31694. },
  31695. {
  31696. name: "Macro",
  31697. height: math.unit(100, "feet")
  31698. },
  31699. {
  31700. name: "Megamacro",
  31701. height: math.unit(1000, "feet")
  31702. },
  31703. ]
  31704. ))
  31705. characterMakers.push(() => makeCharacter(
  31706. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31707. {
  31708. front: {
  31709. height: math.unit(15 + 5 / 12, "feet"),
  31710. weight: math.unit(4600, "lb"),
  31711. name: "Front",
  31712. image: {
  31713. source: "./media/characters/neapolitan-ananassa/front.svg",
  31714. extra: 2903 / 2736,
  31715. bottom: 0 / 2903
  31716. }
  31717. },
  31718. side: {
  31719. height: math.unit(15 + 5 / 12, "feet"),
  31720. weight: math.unit(4600, "lb"),
  31721. name: "Side",
  31722. image: {
  31723. source: "./media/characters/neapolitan-ananassa/side.svg",
  31724. extra: 2925 / 2719,
  31725. bottom: 0 / 2925
  31726. }
  31727. },
  31728. back: {
  31729. height: math.unit(15 + 5 / 12, "feet"),
  31730. weight: math.unit(4600, "lb"),
  31731. name: "Back",
  31732. image: {
  31733. source: "./media/characters/neapolitan-ananassa/back.svg",
  31734. extra: 2903 / 2736,
  31735. bottom: 0 / 2903
  31736. }
  31737. },
  31738. },
  31739. [
  31740. {
  31741. name: "Normal",
  31742. height: math.unit(15 + 5 / 12, "feet"),
  31743. default: true
  31744. },
  31745. {
  31746. name: "Post-Millenium",
  31747. height: math.unit(35 + 5 / 12, "feet")
  31748. },
  31749. {
  31750. name: "Post-Era",
  31751. height: math.unit(450 + 5 / 12, "feet")
  31752. },
  31753. ]
  31754. ))
  31755. characterMakers.push(() => makeCharacter(
  31756. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31757. {
  31758. front: {
  31759. height: math.unit(300, "meters"),
  31760. weight: math.unit(125000, "tonnes"),
  31761. name: "Front",
  31762. image: {
  31763. source: "./media/characters/pazuzu/front.svg",
  31764. extra: 877 / 794,
  31765. bottom: 47 / 924
  31766. }
  31767. },
  31768. },
  31769. [
  31770. {
  31771. name: "Macro",
  31772. height: math.unit(300, "meters"),
  31773. default: true
  31774. },
  31775. ]
  31776. ))
  31777. characterMakers.push(() => makeCharacter(
  31778. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31779. {
  31780. side: {
  31781. height: math.unit(10 + 7 / 12, "feet"),
  31782. weight: math.unit(2.5, "tons"),
  31783. name: "Side",
  31784. image: {
  31785. source: "./media/characters/aasha/side.svg",
  31786. extra: 1345 / 1245,
  31787. bottom: 111 / 1456
  31788. }
  31789. },
  31790. back: {
  31791. height: math.unit(10 + 7 / 12, "feet"),
  31792. weight: math.unit(2.5, "tons"),
  31793. name: "Back",
  31794. image: {
  31795. source: "./media/characters/aasha/back.svg",
  31796. extra: 1133 / 1057,
  31797. bottom: 257 / 1390
  31798. }
  31799. },
  31800. },
  31801. [
  31802. {
  31803. name: "Normal",
  31804. height: math.unit(10 + 7 / 12, "feet"),
  31805. default: true
  31806. },
  31807. ]
  31808. ))
  31809. characterMakers.push(() => makeCharacter(
  31810. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31811. {
  31812. front: {
  31813. height: math.unit(6 + 3 / 12, "feet"),
  31814. name: "Front",
  31815. image: {
  31816. source: "./media/characters/nevan/front.svg",
  31817. extra: 704 / 704,
  31818. bottom: 28 / 732
  31819. }
  31820. },
  31821. back: {
  31822. height: math.unit(6 + 3 / 12, "feet"),
  31823. name: "Back",
  31824. image: {
  31825. source: "./media/characters/nevan/back.svg",
  31826. extra: 714 / 714,
  31827. bottom: 21 / 735
  31828. }
  31829. },
  31830. frontFlaccid: {
  31831. height: math.unit(6 + 3 / 12, "feet"),
  31832. name: "Front (Flaccid)",
  31833. image: {
  31834. source: "./media/characters/nevan/front-flaccid.svg",
  31835. extra: 704 / 704,
  31836. bottom: 28 / 732
  31837. }
  31838. },
  31839. frontErect: {
  31840. height: math.unit(6 + 3 / 12, "feet"),
  31841. name: "Front (Erect)",
  31842. image: {
  31843. source: "./media/characters/nevan/front-erect.svg",
  31844. extra: 704 / 704,
  31845. bottom: 28 / 732
  31846. }
  31847. },
  31848. backFlaccid: {
  31849. height: math.unit(6 + 3 / 12, "feet"),
  31850. name: "Back (Flaccid)",
  31851. image: {
  31852. source: "./media/characters/nevan/back-flaccid.svg",
  31853. extra: 714 / 714,
  31854. bottom: 21 / 735
  31855. }
  31856. },
  31857. },
  31858. [
  31859. {
  31860. name: "Normal",
  31861. height: math.unit(6 + 3 / 12, "feet"),
  31862. default: true
  31863. },
  31864. ]
  31865. ))
  31866. characterMakers.push(() => makeCharacter(
  31867. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31868. {
  31869. front: {
  31870. height: math.unit(4, "feet"),
  31871. name: "Front",
  31872. image: {
  31873. source: "./media/characters/arhan/front.svg",
  31874. extra: 3368 / 3133,
  31875. bottom: 0 / 3368
  31876. }
  31877. },
  31878. side: {
  31879. height: math.unit(4, "feet"),
  31880. name: "Side",
  31881. image: {
  31882. source: "./media/characters/arhan/side.svg",
  31883. extra: 3347 / 3105,
  31884. bottom: 0 / 3347
  31885. }
  31886. },
  31887. tongue: {
  31888. height: math.unit(1.42, "feet"),
  31889. name: "Tongue",
  31890. image: {
  31891. source: "./media/characters/arhan/tongue.svg"
  31892. }
  31893. },
  31894. head: {
  31895. height: math.unit(0.85, "feet"),
  31896. name: "Head",
  31897. image: {
  31898. source: "./media/characters/arhan/head.svg"
  31899. }
  31900. },
  31901. },
  31902. [
  31903. {
  31904. name: "Normal",
  31905. height: math.unit(4, "feet"),
  31906. default: true
  31907. },
  31908. ]
  31909. ))
  31910. characterMakers.push(() => makeCharacter(
  31911. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31912. {
  31913. front: {
  31914. height: math.unit(5 + 7.5 / 12, "feet"),
  31915. weight: math.unit(120, "lb"),
  31916. name: "Front",
  31917. image: {
  31918. source: "./media/characters/digi-duncan/front.svg",
  31919. extra: 330 / 326,
  31920. bottom: 16 / 346
  31921. }
  31922. },
  31923. side: {
  31924. height: math.unit(5 + 7.5 / 12, "feet"),
  31925. weight: math.unit(120, "lb"),
  31926. name: "Side",
  31927. image: {
  31928. source: "./media/characters/digi-duncan/side.svg",
  31929. extra: 341 / 337,
  31930. bottom: 1 / 342
  31931. }
  31932. },
  31933. back: {
  31934. height: math.unit(5 + 7.5 / 12, "feet"),
  31935. weight: math.unit(120, "lb"),
  31936. name: "Back",
  31937. image: {
  31938. source: "./media/characters/digi-duncan/back.svg",
  31939. extra: 330 / 326,
  31940. bottom: 12 / 342
  31941. }
  31942. },
  31943. },
  31944. [
  31945. {
  31946. name: "Speck",
  31947. height: math.unit(0.25, "mm")
  31948. },
  31949. {
  31950. name: "Micro",
  31951. height: math.unit(5, "mm")
  31952. },
  31953. {
  31954. name: "Tiny",
  31955. height: math.unit(0.5, "inches"),
  31956. default: true
  31957. },
  31958. {
  31959. name: "Human",
  31960. height: math.unit(5 + 7.5 / 12, "feet")
  31961. },
  31962. {
  31963. name: "Minigiant",
  31964. height: math.unit(8 + 5.25, "feet")
  31965. },
  31966. {
  31967. name: "Giant",
  31968. height: math.unit(2000, "feet")
  31969. },
  31970. {
  31971. name: "Mega",
  31972. height: math.unit(371.1, "miles")
  31973. },
  31974. ]
  31975. ))
  31976. characterMakers.push(() => makeCharacter(
  31977. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31978. {
  31979. front: {
  31980. height: math.unit(2, "meters"),
  31981. weight: math.unit(350, "kg"),
  31982. name: "Front",
  31983. image: {
  31984. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31985. extra: 898 / 838,
  31986. bottom: 9 / 907
  31987. }
  31988. },
  31989. },
  31990. [
  31991. {
  31992. name: "Micro",
  31993. height: math.unit(8, "meters")
  31994. },
  31995. {
  31996. name: "Normal",
  31997. height: math.unit(50, "meters"),
  31998. default: true
  31999. },
  32000. {
  32001. name: "Macro",
  32002. height: math.unit(500, "meters")
  32003. },
  32004. ]
  32005. ))
  32006. characterMakers.push(() => makeCharacter(
  32007. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32008. {
  32009. front: {
  32010. height: math.unit(6 + 6 / 12, "feet"),
  32011. name: "Front",
  32012. image: {
  32013. source: "./media/characters/khardesh/front.svg",
  32014. extra: 1788/1596,
  32015. bottom: 66/1854
  32016. }
  32017. },
  32018. back: {
  32019. height: math.unit(6 + 6 / 12, "feet"),
  32020. name: "Back",
  32021. image: {
  32022. source: "./media/characters/khardesh/back.svg",
  32023. extra: 1781/1584,
  32024. bottom: 68/1849
  32025. }
  32026. },
  32027. },
  32028. [
  32029. {
  32030. name: "Normal",
  32031. height: math.unit(6 + 6 / 12, "feet"),
  32032. default: true
  32033. },
  32034. {
  32035. name: "Normal+",
  32036. height: math.unit(4, "meters")
  32037. },
  32038. {
  32039. name: "Macro",
  32040. height: math.unit(50, "meters")
  32041. },
  32042. {
  32043. name: "Macro+",
  32044. height: math.unit(100, "meters")
  32045. },
  32046. {
  32047. name: "Megamacro",
  32048. height: math.unit(20, "km")
  32049. },
  32050. ]
  32051. ))
  32052. characterMakers.push(() => makeCharacter(
  32053. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32054. {
  32055. front: {
  32056. height: math.unit(6, "feet"),
  32057. weight: math.unit(150, "lb"),
  32058. name: "Front",
  32059. image: {
  32060. source: "./media/characters/kosho/front.svg",
  32061. extra: 1847 / 1847,
  32062. bottom: 86 / 1933
  32063. }
  32064. },
  32065. },
  32066. [
  32067. {
  32068. name: "Second-stage micro",
  32069. height: math.unit(0.5, "inches")
  32070. },
  32071. {
  32072. name: "First-stage micro",
  32073. height: math.unit(6, "inches")
  32074. },
  32075. {
  32076. name: "Normal",
  32077. height: math.unit(6, "feet"),
  32078. default: true
  32079. },
  32080. {
  32081. name: "First-stage macro",
  32082. height: math.unit(72, "feet")
  32083. },
  32084. {
  32085. name: "Second-stage macro",
  32086. height: math.unit(864, "feet")
  32087. },
  32088. ]
  32089. ))
  32090. characterMakers.push(() => makeCharacter(
  32091. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32092. {
  32093. normal: {
  32094. height: math.unit(4 + 6 / 12, "feet"),
  32095. name: "Normal",
  32096. image: {
  32097. source: "./media/characters/hydra/normal.svg",
  32098. extra: 2833 / 2634,
  32099. bottom: 68 / 2901
  32100. }
  32101. },
  32102. smol: {
  32103. height: math.unit(0.705, "inches"),
  32104. name: "Smol",
  32105. image: {
  32106. source: "./media/characters/hydra/smol.svg",
  32107. extra: 2715 / 2540,
  32108. bottom: 0 / 2715
  32109. }
  32110. },
  32111. },
  32112. [
  32113. {
  32114. name: "Normal",
  32115. height: math.unit(4 + 6 / 12, "feet"),
  32116. default: true
  32117. }
  32118. ]
  32119. ))
  32120. characterMakers.push(() => makeCharacter(
  32121. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32122. {
  32123. front: {
  32124. height: math.unit(0.6, "cm"),
  32125. name: "Front",
  32126. image: {
  32127. source: "./media/characters/daz/front.svg",
  32128. extra: 1682 / 1164,
  32129. bottom: 42 / 1724
  32130. }
  32131. },
  32132. },
  32133. [
  32134. {
  32135. name: "Normal",
  32136. height: math.unit(0.6, "cm"),
  32137. default: true
  32138. },
  32139. ]
  32140. ))
  32141. characterMakers.push(() => makeCharacter(
  32142. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32143. {
  32144. front: {
  32145. height: math.unit(6, "feet"),
  32146. weight: math.unit(235, "lb"),
  32147. name: "Front",
  32148. image: {
  32149. source: "./media/characters/theo-pangolin/front.svg",
  32150. extra: 1996 / 1969,
  32151. bottom: 115 / 2111
  32152. }
  32153. },
  32154. back: {
  32155. height: math.unit(6, "feet"),
  32156. weight: math.unit(235, "lb"),
  32157. name: "Back",
  32158. image: {
  32159. source: "./media/characters/theo-pangolin/back.svg",
  32160. extra: 1979 / 1979,
  32161. bottom: 40 / 2019
  32162. }
  32163. },
  32164. feral: {
  32165. height: math.unit(2, "feet"),
  32166. weight: math.unit(30, "lb"),
  32167. name: "Feral",
  32168. image: {
  32169. source: "./media/characters/theo-pangolin/feral.svg",
  32170. extra: 803 / 791,
  32171. bottom: 181 / 984
  32172. }
  32173. },
  32174. footFive: {
  32175. height: math.unit(1.43, "feet"),
  32176. name: "Foot (Five Toes)",
  32177. image: {
  32178. source: "./media/characters/theo-pangolin/foot-five.svg"
  32179. }
  32180. },
  32181. footFour: {
  32182. height: math.unit(1.43, "feet"),
  32183. name: "Foot (Four Toes)",
  32184. image: {
  32185. source: "./media/characters/theo-pangolin/foot-four.svg"
  32186. }
  32187. },
  32188. handFour: {
  32189. height: math.unit(0.81, "feet"),
  32190. name: "Hand (Four Fingers)",
  32191. image: {
  32192. source: "./media/characters/theo-pangolin/hand-four.svg"
  32193. }
  32194. },
  32195. handThree: {
  32196. height: math.unit(0.81, "feet"),
  32197. name: "Hand (Three Fingers)",
  32198. image: {
  32199. source: "./media/characters/theo-pangolin/hand-three.svg"
  32200. }
  32201. },
  32202. headFront: {
  32203. height: math.unit(1.37, "feet"),
  32204. name: "Head (Front)",
  32205. image: {
  32206. source: "./media/characters/theo-pangolin/head-front.svg"
  32207. }
  32208. },
  32209. headSide: {
  32210. height: math.unit(1.43, "feet"),
  32211. name: "Head (Side)",
  32212. image: {
  32213. source: "./media/characters/theo-pangolin/head-side.svg"
  32214. }
  32215. },
  32216. tongue: {
  32217. height: math.unit(2.29, "feet"),
  32218. name: "Tongue",
  32219. image: {
  32220. source: "./media/characters/theo-pangolin/tongue.svg"
  32221. }
  32222. },
  32223. },
  32224. [
  32225. {
  32226. name: "Normal",
  32227. height: math.unit(6, "feet")
  32228. },
  32229. {
  32230. name: "Macro",
  32231. height: math.unit(400, "feet"),
  32232. default: true
  32233. },
  32234. ]
  32235. ))
  32236. characterMakers.push(() => makeCharacter(
  32237. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32238. {
  32239. front: {
  32240. height: math.unit(6, "inches"),
  32241. weight: math.unit(0.036, "kg"),
  32242. name: "Front",
  32243. image: {
  32244. source: "./media/characters/renée/front.svg",
  32245. extra: 900 / 886,
  32246. bottom: 8 / 908
  32247. }
  32248. },
  32249. },
  32250. [
  32251. {
  32252. name: "Nano",
  32253. height: math.unit(1, "nm")
  32254. },
  32255. {
  32256. name: "Micro",
  32257. height: math.unit(1, "mm")
  32258. },
  32259. {
  32260. name: "Normal",
  32261. height: math.unit(6, "inches")
  32262. },
  32263. {
  32264. name: "Macro",
  32265. height: math.unit(2000, "feet"),
  32266. default: true
  32267. },
  32268. {
  32269. name: "Megamacro",
  32270. height: math.unit(2, "km")
  32271. },
  32272. {
  32273. name: "Gigamacro",
  32274. height: math.unit(2000, "km")
  32275. },
  32276. {
  32277. name: "Teramacro",
  32278. height: math.unit(250000, "km")
  32279. },
  32280. ]
  32281. ))
  32282. characterMakers.push(() => makeCharacter(
  32283. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32284. {
  32285. front: {
  32286. height: math.unit(4, "meters"),
  32287. weight: math.unit(150, "kg"),
  32288. name: "Front",
  32289. image: {
  32290. source: "./media/characters/caledvwlch/front.svg",
  32291. extra: 1757/1537,
  32292. bottom: 31/1788
  32293. }
  32294. },
  32295. side: {
  32296. height: math.unit(4, "meters"),
  32297. weight: math.unit(150, "kg"),
  32298. name: "Side",
  32299. image: {
  32300. source: "./media/characters/caledvwlch/side.svg",
  32301. extra: 1605 / 1536,
  32302. bottom: 31 / 1636
  32303. }
  32304. },
  32305. back: {
  32306. height: math.unit(4, "meters"),
  32307. weight: math.unit(150, "kg"),
  32308. name: "Back",
  32309. image: {
  32310. source: "./media/characters/caledvwlch/back.svg",
  32311. extra: 1635 / 1565,
  32312. bottom: 27 / 1662
  32313. }
  32314. },
  32315. },
  32316. [
  32317. {
  32318. name: "\"Incognito\"",
  32319. height: math.unit(4, "meters")
  32320. },
  32321. {
  32322. name: "Small rampage",
  32323. height: math.unit(600, "meters")
  32324. },
  32325. {
  32326. name: "Mega",
  32327. height: math.unit(30, "km")
  32328. },
  32329. {
  32330. name: "Home-size",
  32331. height: math.unit(50, "km"),
  32332. default: true
  32333. },
  32334. {
  32335. name: "Giga",
  32336. height: math.unit(300, "km")
  32337. },
  32338. {
  32339. name: "Lounging",
  32340. height: math.unit(11000, "km")
  32341. },
  32342. {
  32343. name: "Planet snacking",
  32344. height: math.unit(2000000, "km")
  32345. },
  32346. ]
  32347. ))
  32348. characterMakers.push(() => makeCharacter(
  32349. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32350. {
  32351. front: {
  32352. height: math.unit(6, "feet"),
  32353. weight: math.unit(215, "lb"),
  32354. name: "Front",
  32355. image: {
  32356. source: "./media/characters/sapphire-svell/front.svg",
  32357. extra: 495 / 455,
  32358. bottom: 20 / 515
  32359. }
  32360. },
  32361. back: {
  32362. height: math.unit(6, "feet"),
  32363. weight: math.unit(216, "lb"),
  32364. name: "Back",
  32365. image: {
  32366. source: "./media/characters/sapphire-svell/back.svg",
  32367. extra: 497 / 477,
  32368. bottom: 7 / 504
  32369. }
  32370. },
  32371. maw: {
  32372. height: math.unit(1.57, "feet"),
  32373. name: "Maw",
  32374. image: {
  32375. source: "./media/characters/sapphire-svell/maw.svg"
  32376. }
  32377. },
  32378. foot: {
  32379. height: math.unit(1.07, "feet"),
  32380. name: "Foot",
  32381. image: {
  32382. source: "./media/characters/sapphire-svell/foot.svg"
  32383. }
  32384. },
  32385. toering: {
  32386. height: math.unit(1.7, "inch"),
  32387. name: "Toering",
  32388. image: {
  32389. source: "./media/characters/sapphire-svell/toering.svg"
  32390. }
  32391. },
  32392. },
  32393. [
  32394. {
  32395. name: "Normal",
  32396. height: math.unit(300, "feet"),
  32397. default: true
  32398. },
  32399. {
  32400. name: "Augmented",
  32401. height: math.unit(1250, "feet")
  32402. },
  32403. {
  32404. name: "Unleashed",
  32405. height: math.unit(3000, "feet")
  32406. },
  32407. ]
  32408. ))
  32409. characterMakers.push(() => makeCharacter(
  32410. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32411. {
  32412. side: {
  32413. height: math.unit(2 + 3 / 12, "feet"),
  32414. weight: math.unit(110, "lb"),
  32415. name: "Side",
  32416. image: {
  32417. source: "./media/characters/glitch-flux/side.svg",
  32418. extra: 997 / 805,
  32419. bottom: 20 / 1017
  32420. }
  32421. },
  32422. },
  32423. [
  32424. {
  32425. name: "Normal",
  32426. height: math.unit(2 + 3 / 12, "feet"),
  32427. default: true
  32428. },
  32429. ]
  32430. ))
  32431. characterMakers.push(() => makeCharacter(
  32432. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32433. {
  32434. front: {
  32435. height: math.unit(4, "meters"),
  32436. name: "Front",
  32437. image: {
  32438. source: "./media/characters/mid/front.svg",
  32439. extra: 507 / 476,
  32440. bottom: 17 / 524
  32441. }
  32442. },
  32443. back: {
  32444. height: math.unit(4, "meters"),
  32445. name: "Back",
  32446. image: {
  32447. source: "./media/characters/mid/back.svg",
  32448. extra: 519 / 487,
  32449. bottom: 7 / 526
  32450. }
  32451. },
  32452. stuck: {
  32453. height: math.unit(2.2, "meters"),
  32454. name: "Stuck",
  32455. image: {
  32456. source: "./media/characters/mid/stuck.svg",
  32457. extra: 1951 / 1869,
  32458. bottom: 88 / 2039
  32459. }
  32460. }
  32461. },
  32462. [
  32463. {
  32464. name: "Normal",
  32465. height: math.unit(4, "meters"),
  32466. default: true
  32467. },
  32468. {
  32469. name: "Big",
  32470. height: math.unit(10, "meters")
  32471. },
  32472. {
  32473. name: "Macro",
  32474. height: math.unit(800, "meters")
  32475. },
  32476. {
  32477. name: "Megamacro",
  32478. height: math.unit(100, "km")
  32479. },
  32480. {
  32481. name: "Overgrown",
  32482. height: math.unit(1, "parsec")
  32483. },
  32484. ]
  32485. ))
  32486. characterMakers.push(() => makeCharacter(
  32487. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32488. {
  32489. front: {
  32490. height: math.unit(2.5, "meters"),
  32491. weight: math.unit(225, "kg"),
  32492. name: "Front",
  32493. image: {
  32494. source: "./media/characters/iris/front.svg",
  32495. extra: 3348 / 3251,
  32496. bottom: 205 / 3553
  32497. }
  32498. },
  32499. maw: {
  32500. height: math.unit(0.56, "meter"),
  32501. name: "Maw",
  32502. image: {
  32503. source: "./media/characters/iris/maw.svg"
  32504. }
  32505. },
  32506. },
  32507. [
  32508. {
  32509. name: "Mewter cat",
  32510. height: math.unit(1.2, "meters")
  32511. },
  32512. {
  32513. name: "Normal",
  32514. height: math.unit(2.5, "meters"),
  32515. default: true
  32516. },
  32517. {
  32518. name: "Minimacro",
  32519. height: math.unit(18, "feet")
  32520. },
  32521. {
  32522. name: "Macro",
  32523. height: math.unit(140, "feet")
  32524. },
  32525. {
  32526. name: "Macro+",
  32527. height: math.unit(180, "meters")
  32528. },
  32529. {
  32530. name: "Megamacro",
  32531. height: math.unit(2746, "meters")
  32532. },
  32533. ]
  32534. ))
  32535. characterMakers.push(() => makeCharacter(
  32536. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32537. {
  32538. front: {
  32539. height: math.unit(6, "feet"),
  32540. weight: math.unit(135, "lb"),
  32541. name: "Front",
  32542. image: {
  32543. source: "./media/characters/axel/front.svg",
  32544. extra: 908 / 908,
  32545. bottom: 58 / 966
  32546. }
  32547. },
  32548. side: {
  32549. height: math.unit(6, "feet"),
  32550. weight: math.unit(135, "lb"),
  32551. name: "Side",
  32552. image: {
  32553. source: "./media/characters/axel/side.svg",
  32554. extra: 958 / 958,
  32555. bottom: 11 / 969
  32556. }
  32557. },
  32558. back: {
  32559. height: math.unit(6, "feet"),
  32560. weight: math.unit(135, "lb"),
  32561. name: "Back",
  32562. image: {
  32563. source: "./media/characters/axel/back.svg",
  32564. extra: 887 / 887,
  32565. bottom: 34 / 921
  32566. }
  32567. },
  32568. head: {
  32569. height: math.unit(1.07, "feet"),
  32570. name: "Head",
  32571. image: {
  32572. source: "./media/characters/axel/head.svg"
  32573. }
  32574. },
  32575. beak: {
  32576. height: math.unit(1.4, "feet"),
  32577. name: "Beak",
  32578. image: {
  32579. source: "./media/characters/axel/beak.svg"
  32580. }
  32581. },
  32582. beakSide: {
  32583. height: math.unit(1.4, "feet"),
  32584. name: "Beak Side",
  32585. image: {
  32586. source: "./media/characters/axel/beak-side.svg"
  32587. }
  32588. },
  32589. sheath: {
  32590. height: math.unit(0.5, "feet"),
  32591. name: "Sheath",
  32592. image: {
  32593. source: "./media/characters/axel/sheath.svg"
  32594. }
  32595. },
  32596. dick: {
  32597. height: math.unit(0.98, "feet"),
  32598. name: "Dick",
  32599. image: {
  32600. source: "./media/characters/axel/dick.svg"
  32601. }
  32602. },
  32603. },
  32604. [
  32605. {
  32606. name: "Macro",
  32607. height: math.unit(68, "meters"),
  32608. default: true
  32609. },
  32610. ]
  32611. ))
  32612. characterMakers.push(() => makeCharacter(
  32613. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32614. {
  32615. front: {
  32616. height: math.unit(3.5, "meters"),
  32617. weight: math.unit(1200, "kg"),
  32618. name: "Front",
  32619. image: {
  32620. source: "./media/characters/joanna/front.svg",
  32621. extra: 1596 / 1488,
  32622. bottom: 29 / 1625
  32623. }
  32624. },
  32625. back: {
  32626. height: math.unit(3.5, "meters"),
  32627. weight: math.unit(1200, "kg"),
  32628. name: "Back",
  32629. image: {
  32630. source: "./media/characters/joanna/back.svg",
  32631. extra: 1594 / 1495,
  32632. bottom: 26 / 1620
  32633. }
  32634. },
  32635. frontShorts: {
  32636. height: math.unit(3.5, "meters"),
  32637. weight: math.unit(1200, "kg"),
  32638. name: "Front (Shorts)",
  32639. image: {
  32640. source: "./media/characters/joanna/front-shorts.svg",
  32641. extra: 1596 / 1488,
  32642. bottom: 29 / 1625
  32643. }
  32644. },
  32645. frontBiker: {
  32646. height: math.unit(3.5, "meters"),
  32647. weight: math.unit(1200, "kg"),
  32648. name: "Front (Biker)",
  32649. image: {
  32650. source: "./media/characters/joanna/front-biker.svg",
  32651. extra: 1596 / 1488,
  32652. bottom: 29 / 1625
  32653. }
  32654. },
  32655. backBiker: {
  32656. height: math.unit(3.5, "meters"),
  32657. weight: math.unit(1200, "kg"),
  32658. name: "Back (Biker)",
  32659. image: {
  32660. source: "./media/characters/joanna/back-biker.svg",
  32661. extra: 1594 / 1495,
  32662. bottom: 88 / 1682
  32663. }
  32664. },
  32665. bikeLeft: {
  32666. height: math.unit(2.4, "meters"),
  32667. weight: math.unit(1600, "kg"),
  32668. name: "Bike (Left)",
  32669. image: {
  32670. source: "./media/characters/joanna/bike-left.svg",
  32671. extra: 720 / 720,
  32672. bottom: 8 / 728
  32673. }
  32674. },
  32675. bikeRight: {
  32676. height: math.unit(2.4, "meters"),
  32677. weight: math.unit(1600, "kg"),
  32678. name: "Bike (Right)",
  32679. image: {
  32680. source: "./media/characters/joanna/bike-right.svg",
  32681. extra: 720 / 720,
  32682. bottom: 8 / 728
  32683. }
  32684. },
  32685. },
  32686. [
  32687. {
  32688. name: "Incognito",
  32689. height: math.unit(3.5, "meters")
  32690. },
  32691. {
  32692. name: "Casual Big",
  32693. height: math.unit(200, "meters")
  32694. },
  32695. {
  32696. name: "Macro",
  32697. height: math.unit(600, "meters")
  32698. },
  32699. {
  32700. name: "Original",
  32701. height: math.unit(20, "km"),
  32702. default: true
  32703. },
  32704. {
  32705. name: "Giga",
  32706. height: math.unit(400, "km")
  32707. },
  32708. {
  32709. name: "Lounging",
  32710. height: math.unit(1500, "km")
  32711. },
  32712. {
  32713. name: "Planetary",
  32714. height: math.unit(200000, "km")
  32715. },
  32716. ]
  32717. ))
  32718. characterMakers.push(() => makeCharacter(
  32719. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32720. {
  32721. front: {
  32722. height: math.unit(6, "feet"),
  32723. weight: math.unit(150, "lb"),
  32724. name: "Front",
  32725. image: {
  32726. source: "./media/characters/hugo-sigil/front.svg",
  32727. extra: 522 / 500,
  32728. bottom: 2 / 524
  32729. }
  32730. },
  32731. back: {
  32732. height: math.unit(6, "feet"),
  32733. weight: math.unit(150, "lb"),
  32734. name: "Back",
  32735. image: {
  32736. source: "./media/characters/hugo-sigil/back.svg",
  32737. extra: 519 / 495,
  32738. bottom: 5 / 524
  32739. }
  32740. },
  32741. maw: {
  32742. height: math.unit(1.4, "feet"),
  32743. weight: math.unit(150, "lb"),
  32744. name: "Maw",
  32745. image: {
  32746. source: "./media/characters/hugo-sigil/maw.svg"
  32747. }
  32748. },
  32749. feet: {
  32750. height: math.unit(1.56, "feet"),
  32751. weight: math.unit(150, "lb"),
  32752. name: "Feet",
  32753. image: {
  32754. source: "./media/characters/hugo-sigil/feet.svg",
  32755. extra: 177 / 177,
  32756. bottom: 12 / 189
  32757. }
  32758. },
  32759. },
  32760. [
  32761. {
  32762. name: "Normal",
  32763. height: math.unit(6, "feet")
  32764. },
  32765. {
  32766. name: "Macro",
  32767. height: math.unit(200, "feet"),
  32768. default: true
  32769. },
  32770. ]
  32771. ))
  32772. characterMakers.push(() => makeCharacter(
  32773. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32774. {
  32775. front: {
  32776. height: math.unit(6, "feet"),
  32777. weight: math.unit(150, "lb"),
  32778. name: "Front",
  32779. image: {
  32780. source: "./media/characters/peri/front.svg",
  32781. extra: 2354 / 2233,
  32782. bottom: 49 / 2403
  32783. }
  32784. },
  32785. },
  32786. [
  32787. {
  32788. name: "Really Small",
  32789. height: math.unit(1, "nm")
  32790. },
  32791. {
  32792. name: "Micro",
  32793. height: math.unit(4, "inches")
  32794. },
  32795. {
  32796. name: "Normal",
  32797. height: math.unit(7, "inches"),
  32798. default: true
  32799. },
  32800. {
  32801. name: "Macro",
  32802. height: math.unit(400, "feet")
  32803. },
  32804. {
  32805. name: "Megamacro",
  32806. height: math.unit(100, "miles")
  32807. },
  32808. ]
  32809. ))
  32810. characterMakers.push(() => makeCharacter(
  32811. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32812. {
  32813. frontSlim: {
  32814. height: math.unit(7, "feet"),
  32815. name: "Front (Slim)",
  32816. image: {
  32817. source: "./media/characters/issilora/front-slim.svg",
  32818. extra: 529 / 449,
  32819. bottom: 53 / 582
  32820. }
  32821. },
  32822. sideSlim: {
  32823. height: math.unit(7, "feet"),
  32824. name: "Side (Slim)",
  32825. image: {
  32826. source: "./media/characters/issilora/side-slim.svg",
  32827. extra: 570 / 480,
  32828. bottom: 30 / 600
  32829. }
  32830. },
  32831. backSlim: {
  32832. height: math.unit(7, "feet"),
  32833. name: "Back (Slim)",
  32834. image: {
  32835. source: "./media/characters/issilora/back-slim.svg",
  32836. extra: 537 / 455,
  32837. bottom: 46 / 583
  32838. }
  32839. },
  32840. frontBuff: {
  32841. height: math.unit(7, "feet"),
  32842. name: "Front (Buff)",
  32843. image: {
  32844. source: "./media/characters/issilora/front-buff.svg",
  32845. extra: 2310 / 2035,
  32846. bottom: 335 / 2645
  32847. }
  32848. },
  32849. head: {
  32850. height: math.unit(1.94, "feet"),
  32851. name: "Head",
  32852. image: {
  32853. source: "./media/characters/issilora/head.svg"
  32854. }
  32855. },
  32856. },
  32857. [
  32858. {
  32859. name: "Minimum",
  32860. height: math.unit(7, "feet")
  32861. },
  32862. {
  32863. name: "Comfortable",
  32864. height: math.unit(17, "feet")
  32865. },
  32866. {
  32867. name: "Fun Size",
  32868. height: math.unit(47, "feet")
  32869. },
  32870. {
  32871. name: "Natural Macro",
  32872. height: math.unit(137, "feet"),
  32873. default: true
  32874. },
  32875. {
  32876. name: "Maximum Kaiju",
  32877. height: math.unit(397, "feet")
  32878. },
  32879. ]
  32880. ))
  32881. characterMakers.push(() => makeCharacter(
  32882. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32883. {
  32884. front: {
  32885. height: math.unit(50 + 9/12, "feet"),
  32886. weight: math.unit(32.8, "tons"),
  32887. name: "Front",
  32888. image: {
  32889. source: "./media/characters/irb'iiritaahn/front.svg",
  32890. extra: 1878/1826,
  32891. bottom: 326/2204
  32892. }
  32893. },
  32894. back: {
  32895. height: math.unit(50 + 9/12, "feet"),
  32896. weight: math.unit(32.8, "tons"),
  32897. name: "Back",
  32898. image: {
  32899. source: "./media/characters/irb'iiritaahn/back.svg",
  32900. extra: 2052/2018,
  32901. bottom: 152/2204
  32902. }
  32903. },
  32904. head: {
  32905. height: math.unit(12.86, "feet"),
  32906. name: "Head",
  32907. image: {
  32908. source: "./media/characters/irb'iiritaahn/head.svg"
  32909. }
  32910. },
  32911. maw: {
  32912. height: math.unit(9.66, "feet"),
  32913. name: "Maw",
  32914. image: {
  32915. source: "./media/characters/irb'iiritaahn/maw.svg"
  32916. }
  32917. },
  32918. frontDick: {
  32919. height: math.unit(8.78461, "feet"),
  32920. name: "Front Dick",
  32921. image: {
  32922. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32923. }
  32924. },
  32925. rearDick: {
  32926. height: math.unit(8.78461, "feet"),
  32927. name: "Rear Dick",
  32928. image: {
  32929. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32930. }
  32931. },
  32932. rearDickUnfolded: {
  32933. height: math.unit(8.78, "feet"),
  32934. name: "Rear Dick (Unfolded)",
  32935. image: {
  32936. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32937. }
  32938. },
  32939. wings: {
  32940. height: math.unit(43, "feet"),
  32941. name: "Wings",
  32942. image: {
  32943. source: "./media/characters/irb'iiritaahn/wings.svg"
  32944. }
  32945. },
  32946. },
  32947. [
  32948. {
  32949. name: "Macro",
  32950. height: math.unit(50 + 9/12, "feet"),
  32951. default: true
  32952. },
  32953. ]
  32954. ))
  32955. characterMakers.push(() => makeCharacter(
  32956. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32957. {
  32958. front: {
  32959. height: math.unit(205, "cm"),
  32960. weight: math.unit(102, "kg"),
  32961. name: "Front",
  32962. image: {
  32963. source: "./media/characters/irbisgreif/front.svg",
  32964. extra: 785/706,
  32965. bottom: 13/798
  32966. }
  32967. },
  32968. back: {
  32969. height: math.unit(205, "cm"),
  32970. weight: math.unit(102, "kg"),
  32971. name: "Back",
  32972. image: {
  32973. source: "./media/characters/irbisgreif/back.svg",
  32974. extra: 713/701,
  32975. bottom: 26/739
  32976. }
  32977. },
  32978. frontDressed: {
  32979. height: math.unit(216, "cm"),
  32980. weight: math.unit(102, "kg"),
  32981. name: "Front-dressed",
  32982. image: {
  32983. source: "./media/characters/irbisgreif/front-dressed.svg",
  32984. extra: 902/776,
  32985. bottom: 14/916
  32986. }
  32987. },
  32988. sideDressed: {
  32989. height: math.unit(195, "cm"),
  32990. weight: math.unit(102, "kg"),
  32991. name: "Side-dressed",
  32992. image: {
  32993. source: "./media/characters/irbisgreif/side-dressed.svg",
  32994. extra: 788/688,
  32995. bottom: 21/809
  32996. }
  32997. },
  32998. backDressed: {
  32999. height: math.unit(216, "cm"),
  33000. weight: math.unit(102, "kg"),
  33001. name: "Back-dressed",
  33002. image: {
  33003. source: "./media/characters/irbisgreif/back-dressed.svg",
  33004. extra: 901/783,
  33005. bottom: 10/911
  33006. }
  33007. },
  33008. dick: {
  33009. height: math.unit(0.49, "feet"),
  33010. name: "Dick",
  33011. image: {
  33012. source: "./media/characters/irbisgreif/dick.svg"
  33013. }
  33014. },
  33015. wingTop: {
  33016. height: math.unit(1.93 , "feet"),
  33017. name: "Wing-top",
  33018. image: {
  33019. source: "./media/characters/irbisgreif/wing-top.svg"
  33020. }
  33021. },
  33022. wingBottom: {
  33023. height: math.unit(1.93 , "feet"),
  33024. name: "Wing-bottom",
  33025. image: {
  33026. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33027. }
  33028. },
  33029. },
  33030. [
  33031. {
  33032. name: "Normal",
  33033. height: math.unit(216, "cm"),
  33034. default: true
  33035. },
  33036. ]
  33037. ))
  33038. characterMakers.push(() => makeCharacter(
  33039. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33040. {
  33041. front: {
  33042. height: math.unit(6, "feet"),
  33043. weight: math.unit(150, "lb"),
  33044. name: "Front",
  33045. image: {
  33046. source: "./media/characters/pride/front.svg",
  33047. extra: 1299/1230,
  33048. bottom: 18/1317
  33049. }
  33050. },
  33051. },
  33052. [
  33053. {
  33054. name: "Normal",
  33055. height: math.unit(7, "feet")
  33056. },
  33057. {
  33058. name: "Mini-macro",
  33059. height: math.unit(11, "feet")
  33060. },
  33061. {
  33062. name: "Macro",
  33063. height: math.unit(15, "meters"),
  33064. default: true
  33065. },
  33066. {
  33067. name: "Macro+",
  33068. height: math.unit(40, "meters")
  33069. },
  33070. ]
  33071. ))
  33072. characterMakers.push(() => makeCharacter(
  33073. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33074. {
  33075. front: {
  33076. height: math.unit(4 + 2 / 12, "feet"),
  33077. weight: math.unit(95, "lb"),
  33078. name: "Front",
  33079. image: {
  33080. source: "./media/characters/vaelophis-nyx/front.svg",
  33081. extra: 2532/2330,
  33082. bottom: 0/2532
  33083. }
  33084. },
  33085. back: {
  33086. height: math.unit(4 + 2 / 12, "feet"),
  33087. weight: math.unit(95, "lb"),
  33088. name: "Back",
  33089. image: {
  33090. source: "./media/characters/vaelophis-nyx/back.svg",
  33091. extra: 2484/2361,
  33092. bottom: 0/2484
  33093. }
  33094. },
  33095. feralSide: {
  33096. height: math.unit(2 + 1/12, "feet"),
  33097. weight: math.unit(20, "lb"),
  33098. name: "Feral (Side)",
  33099. image: {
  33100. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33101. extra: 1721/1581,
  33102. bottom: 70/1791
  33103. }
  33104. },
  33105. feralLazing: {
  33106. height: math.unit(1.08, "feet"),
  33107. weight: math.unit(20, "lb"),
  33108. name: "Feral (Lazing)",
  33109. image: {
  33110. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33111. extra: 822/822,
  33112. bottom: 248/1070
  33113. }
  33114. },
  33115. ear: {
  33116. height: math.unit(0.416, "feet"),
  33117. name: "Ear",
  33118. image: {
  33119. source: "./media/characters/vaelophis-nyx/ear.svg"
  33120. }
  33121. },
  33122. eye: {
  33123. height: math.unit(0.0748, "feet"),
  33124. name: "Eye",
  33125. image: {
  33126. source: "./media/characters/vaelophis-nyx/eye.svg"
  33127. }
  33128. },
  33129. mouth: {
  33130. height: math.unit(0.378, "feet"),
  33131. name: "Mouth",
  33132. image: {
  33133. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33134. }
  33135. },
  33136. spade: {
  33137. height: math.unit(0.55, "feet"),
  33138. name: "Spade",
  33139. image: {
  33140. source: "./media/characters/vaelophis-nyx/spade.svg"
  33141. }
  33142. },
  33143. },
  33144. [
  33145. {
  33146. name: "Normal",
  33147. height: math.unit(4 + 2/12, "feet"),
  33148. default: true
  33149. },
  33150. ]
  33151. ))
  33152. characterMakers.push(() => makeCharacter(
  33153. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33154. {
  33155. front: {
  33156. height: math.unit(7, "feet"),
  33157. weight: math.unit(231, "lb"),
  33158. name: "Front",
  33159. image: {
  33160. source: "./media/characters/flux/front.svg",
  33161. extra: 919/871,
  33162. bottom: 0/919
  33163. }
  33164. },
  33165. back: {
  33166. height: math.unit(7, "feet"),
  33167. weight: math.unit(231, "lb"),
  33168. name: "Back",
  33169. image: {
  33170. source: "./media/characters/flux/back.svg",
  33171. extra: 1040/992,
  33172. bottom: 0/1040
  33173. }
  33174. },
  33175. frontDressed: {
  33176. height: math.unit(7, "feet"),
  33177. weight: math.unit(231, "lb"),
  33178. name: "Front (Dressed)",
  33179. image: {
  33180. source: "./media/characters/flux/front-dressed.svg",
  33181. extra: 919/871,
  33182. bottom: 0/919
  33183. }
  33184. },
  33185. feralSide: {
  33186. height: math.unit(5, "feet"),
  33187. weight: math.unit(150, "lb"),
  33188. name: "Feral (Side)",
  33189. image: {
  33190. source: "./media/characters/flux/feral-side.svg",
  33191. extra: 598/528,
  33192. bottom: 28/626
  33193. }
  33194. },
  33195. head: {
  33196. height: math.unit(1.585, "feet"),
  33197. name: "Head",
  33198. image: {
  33199. source: "./media/characters/flux/head.svg"
  33200. }
  33201. },
  33202. headSide: {
  33203. height: math.unit(1.74, "feet"),
  33204. name: "Head (Side)",
  33205. image: {
  33206. source: "./media/characters/flux/head-side.svg"
  33207. }
  33208. },
  33209. headSideFire: {
  33210. height: math.unit(1.76, "feet"),
  33211. name: "Head (Side, Fire)",
  33212. image: {
  33213. source: "./media/characters/flux/head-side-fire.svg"
  33214. }
  33215. },
  33216. },
  33217. [
  33218. {
  33219. name: "Normal",
  33220. height: math.unit(7, "feet"),
  33221. default: true
  33222. },
  33223. ]
  33224. ))
  33225. characterMakers.push(() => makeCharacter(
  33226. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33227. {
  33228. front: {
  33229. height: math.unit(9, "feet"),
  33230. weight: math.unit(1012, "lb"),
  33231. name: "Front",
  33232. image: {
  33233. source: "./media/characters/ulfra-lupae/front.svg",
  33234. extra: 1083/1011,
  33235. bottom: 67/1150
  33236. }
  33237. },
  33238. },
  33239. [
  33240. {
  33241. name: "Micro",
  33242. height: math.unit(6, "inches")
  33243. },
  33244. {
  33245. name: "Socializing",
  33246. height: math.unit(6 + 5/12, "feet")
  33247. },
  33248. {
  33249. name: "Normal",
  33250. height: math.unit(9, "feet"),
  33251. default: true
  33252. },
  33253. {
  33254. name: "Macro",
  33255. height: math.unit(150, "feet")
  33256. },
  33257. ]
  33258. ))
  33259. characterMakers.push(() => makeCharacter(
  33260. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33261. {
  33262. front: {
  33263. height: math.unit(5 + 2/12, "feet"),
  33264. weight: math.unit(120, "lb"),
  33265. name: "Front",
  33266. image: {
  33267. source: "./media/characters/timber/front.svg",
  33268. extra: 2814/2705,
  33269. bottom: 181/2995
  33270. }
  33271. },
  33272. },
  33273. [
  33274. {
  33275. name: "Normal",
  33276. height: math.unit(5 + 2/12, "feet"),
  33277. default: true
  33278. },
  33279. ]
  33280. ))
  33281. characterMakers.push(() => makeCharacter(
  33282. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33283. {
  33284. front: {
  33285. height: math.unit(9, "feet"),
  33286. name: "Front",
  33287. image: {
  33288. source: "./media/characters/nicki/front.svg",
  33289. extra: 1240/990,
  33290. bottom: 45/1285
  33291. },
  33292. form: "anthro",
  33293. default: true
  33294. },
  33295. side: {
  33296. height: math.unit(9, "feet"),
  33297. name: "Side",
  33298. image: {
  33299. source: "./media/characters/nicki/side.svg",
  33300. extra: 1047/973,
  33301. bottom: 61/1108
  33302. },
  33303. form: "anthro"
  33304. },
  33305. back: {
  33306. height: math.unit(9, "feet"),
  33307. name: "Back",
  33308. image: {
  33309. source: "./media/characters/nicki/back.svg",
  33310. extra: 1006/965,
  33311. bottom: 39/1045
  33312. },
  33313. form: "anthro"
  33314. },
  33315. taur: {
  33316. height: math.unit(15, "feet"),
  33317. name: "Taur",
  33318. image: {
  33319. source: "./media/characters/nicki/taur.svg",
  33320. extra: 1592/1347,
  33321. bottom: 0/1592
  33322. },
  33323. form: "taur",
  33324. default: true
  33325. },
  33326. },
  33327. [
  33328. {
  33329. name: "Normal",
  33330. height: math.unit(9, "feet"),
  33331. form: "anthro",
  33332. default: true
  33333. },
  33334. {
  33335. name: "Normal",
  33336. height: math.unit(15, "feet"),
  33337. form: "taur",
  33338. default: true
  33339. }
  33340. ],
  33341. {
  33342. "anthro": {
  33343. name: "Anthro",
  33344. default: true
  33345. },
  33346. "taur": {
  33347. name: "Taur"
  33348. }
  33349. }
  33350. ))
  33351. characterMakers.push(() => makeCharacter(
  33352. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33353. {
  33354. front: {
  33355. height: math.unit(7 + 10/12, "feet"),
  33356. weight: math.unit(3.5, "tons"),
  33357. name: "Front",
  33358. image: {
  33359. source: "./media/characters/lee/front.svg",
  33360. extra: 1773/1615,
  33361. bottom: 86/1859
  33362. }
  33363. },
  33364. hand: {
  33365. height: math.unit(1.78, "feet"),
  33366. name: "Hand",
  33367. image: {
  33368. source: "./media/characters/lee/hand.svg"
  33369. }
  33370. },
  33371. maw: {
  33372. height: math.unit(1.18, "feet"),
  33373. name: "Maw",
  33374. image: {
  33375. source: "./media/characters/lee/maw.svg"
  33376. }
  33377. },
  33378. },
  33379. [
  33380. {
  33381. name: "Normal",
  33382. height: math.unit(7 + 10/12, "feet"),
  33383. default: true
  33384. },
  33385. ]
  33386. ))
  33387. characterMakers.push(() => makeCharacter(
  33388. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33389. {
  33390. front: {
  33391. height: math.unit(9, "feet"),
  33392. name: "Front",
  33393. image: {
  33394. source: "./media/characters/guti/front.svg",
  33395. extra: 4551/4355,
  33396. bottom: 123/4674
  33397. }
  33398. },
  33399. tongue: {
  33400. height: math.unit(1, "feet"),
  33401. name: "Tongue",
  33402. image: {
  33403. source: "./media/characters/guti/tongue.svg"
  33404. }
  33405. },
  33406. paw: {
  33407. height: math.unit(1.18, "feet"),
  33408. name: "Paw",
  33409. image: {
  33410. source: "./media/characters/guti/paw.svg"
  33411. }
  33412. },
  33413. },
  33414. [
  33415. {
  33416. name: "Normal",
  33417. height: math.unit(9, "feet"),
  33418. default: true
  33419. },
  33420. ]
  33421. ))
  33422. characterMakers.push(() => makeCharacter(
  33423. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33424. {
  33425. side: {
  33426. height: math.unit(5, "meters"),
  33427. name: "Side",
  33428. image: {
  33429. source: "./media/characters/vesper/side.svg",
  33430. extra: 1605/1518,
  33431. bottom: 0/1605
  33432. }
  33433. },
  33434. },
  33435. [
  33436. {
  33437. name: "Small",
  33438. height: math.unit(5, "meters")
  33439. },
  33440. {
  33441. name: "Sage",
  33442. height: math.unit(100, "meters"),
  33443. default: true
  33444. },
  33445. {
  33446. name: "Fun Size",
  33447. height: math.unit(600, "meters")
  33448. },
  33449. {
  33450. name: "Goddess",
  33451. height: math.unit(20000, "km")
  33452. },
  33453. {
  33454. name: "Maximum",
  33455. height: math.unit(5, "galaxies")
  33456. },
  33457. ]
  33458. ))
  33459. characterMakers.push(() => makeCharacter(
  33460. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33461. {
  33462. front: {
  33463. height: math.unit(6 + 3/12, "feet"),
  33464. weight: math.unit(190, "lb"),
  33465. name: "Front",
  33466. image: {
  33467. source: "./media/characters/gawain/front.svg",
  33468. extra: 2222/2139,
  33469. bottom: 90/2312
  33470. }
  33471. },
  33472. back: {
  33473. height: math.unit(6 + 3/12, "feet"),
  33474. weight: math.unit(190, "lb"),
  33475. name: "Back",
  33476. image: {
  33477. source: "./media/characters/gawain/back.svg",
  33478. extra: 2199/2111,
  33479. bottom: 73/2272
  33480. }
  33481. },
  33482. },
  33483. [
  33484. {
  33485. name: "Normal",
  33486. height: math.unit(6 + 3/12, "feet"),
  33487. default: true
  33488. },
  33489. ]
  33490. ))
  33491. characterMakers.push(() => makeCharacter(
  33492. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33493. {
  33494. side: {
  33495. height: math.unit(3.5, "meters"),
  33496. weight: math.unit(16000, "lb"),
  33497. name: "Side",
  33498. image: {
  33499. source: "./media/characters/dascalti/side.svg",
  33500. extra: 392/273,
  33501. bottom: 47/439
  33502. }
  33503. },
  33504. breath: {
  33505. height: math.unit(7.4, "feet"),
  33506. name: "Breath",
  33507. image: {
  33508. source: "./media/characters/dascalti/breath.svg"
  33509. }
  33510. },
  33511. fed: {
  33512. height: math.unit(3.6, "meters"),
  33513. weight: math.unit(16000, "lb"),
  33514. name: "Fed",
  33515. image: {
  33516. source: "./media/characters/dascalti/fed.svg",
  33517. extra: 1419/820,
  33518. bottom: 95/1514
  33519. }
  33520. },
  33521. },
  33522. [
  33523. {
  33524. name: "Normal",
  33525. height: math.unit(3.5, "meters"),
  33526. default: true
  33527. },
  33528. ]
  33529. ))
  33530. characterMakers.push(() => makeCharacter(
  33531. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33532. {
  33533. front: {
  33534. height: math.unit(3 + 5/12, "feet"),
  33535. name: "Front",
  33536. image: {
  33537. source: "./media/characters/mauve/front.svg",
  33538. extra: 1126/1033,
  33539. bottom: 65/1191
  33540. }
  33541. },
  33542. side: {
  33543. height: math.unit(3 + 5/12, "feet"),
  33544. name: "Side",
  33545. image: {
  33546. source: "./media/characters/mauve/side.svg",
  33547. extra: 1089/1001,
  33548. bottom: 29/1118
  33549. }
  33550. },
  33551. back: {
  33552. height: math.unit(3 + 5/12, "feet"),
  33553. name: "Back",
  33554. image: {
  33555. source: "./media/characters/mauve/back.svg",
  33556. extra: 1173/1053,
  33557. bottom: 109/1282
  33558. }
  33559. },
  33560. },
  33561. [
  33562. {
  33563. name: "Normal",
  33564. height: math.unit(3 + 5/12, "feet"),
  33565. default: true
  33566. },
  33567. ]
  33568. ))
  33569. characterMakers.push(() => makeCharacter(
  33570. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33571. {
  33572. front: {
  33573. height: math.unit(6 + 3/12, "feet"),
  33574. weight: math.unit(430, "lb"),
  33575. name: "Front",
  33576. image: {
  33577. source: "./media/characters/carlos/front.svg",
  33578. extra: 1964/1913,
  33579. bottom: 70/2034
  33580. }
  33581. },
  33582. },
  33583. [
  33584. {
  33585. name: "Normal",
  33586. height: math.unit(6 + 3/12, "feet"),
  33587. default: true
  33588. },
  33589. ]
  33590. ))
  33591. characterMakers.push(() => makeCharacter(
  33592. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33593. {
  33594. back: {
  33595. height: math.unit(5 + 10/12, "feet"),
  33596. weight: math.unit(200, "lb"),
  33597. name: "Back",
  33598. image: {
  33599. source: "./media/characters/jax/back.svg",
  33600. extra: 764/739,
  33601. bottom: 25/789
  33602. }
  33603. },
  33604. },
  33605. [
  33606. {
  33607. name: "Normal",
  33608. height: math.unit(5 + 10/12, "feet"),
  33609. default: true
  33610. },
  33611. ]
  33612. ))
  33613. characterMakers.push(() => makeCharacter(
  33614. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33615. {
  33616. front: {
  33617. height: math.unit(8, "feet"),
  33618. weight: math.unit(250, "lb"),
  33619. name: "Front",
  33620. image: {
  33621. source: "./media/characters/eikthynir/front.svg",
  33622. extra: 1332/1166,
  33623. bottom: 82/1414
  33624. }
  33625. },
  33626. back: {
  33627. height: math.unit(8, "feet"),
  33628. weight: math.unit(250, "lb"),
  33629. name: "Back",
  33630. image: {
  33631. source: "./media/characters/eikthynir/back.svg",
  33632. extra: 1342/1190,
  33633. bottom: 19/1361
  33634. }
  33635. },
  33636. dick: {
  33637. height: math.unit(2.35, "feet"),
  33638. name: "Dick",
  33639. image: {
  33640. source: "./media/characters/eikthynir/dick.svg"
  33641. }
  33642. },
  33643. },
  33644. [
  33645. {
  33646. name: "Normal",
  33647. height: math.unit(8, "feet"),
  33648. default: true
  33649. },
  33650. ]
  33651. ))
  33652. characterMakers.push(() => makeCharacter(
  33653. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33654. {
  33655. front: {
  33656. height: math.unit(99, "meters"),
  33657. weight: math.unit(13000, "tons"),
  33658. name: "Front",
  33659. image: {
  33660. source: "./media/characters/zlmos/front.svg",
  33661. extra: 2202/1992,
  33662. bottom: 315/2517
  33663. }
  33664. },
  33665. },
  33666. [
  33667. {
  33668. name: "Macro",
  33669. height: math.unit(99, "meters"),
  33670. default: true
  33671. },
  33672. ]
  33673. ))
  33674. characterMakers.push(() => makeCharacter(
  33675. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33676. {
  33677. front: {
  33678. height: math.unit(6 + 5/12, "feet"),
  33679. name: "Front",
  33680. image: {
  33681. source: "./media/characters/purri/front.svg",
  33682. extra: 1698/1610,
  33683. bottom: 32/1730
  33684. }
  33685. },
  33686. frontAlt: {
  33687. height: math.unit(6 + 5/12, "feet"),
  33688. name: "Front (Alt)",
  33689. image: {
  33690. source: "./media/characters/purri/front-alt.svg",
  33691. extra: 450/420,
  33692. bottom: 26/476
  33693. }
  33694. },
  33695. boots: {
  33696. height: math.unit(5.5, "feet"),
  33697. name: "Boots",
  33698. image: {
  33699. source: "./media/characters/purri/boots.svg",
  33700. extra: 905/853,
  33701. bottom: 18/923
  33702. }
  33703. },
  33704. lying: {
  33705. height: math.unit(2, "feet"),
  33706. name: "Lying",
  33707. image: {
  33708. source: "./media/characters/purri/lying.svg",
  33709. extra: 940/843,
  33710. bottom: 146/1086
  33711. }
  33712. },
  33713. devious: {
  33714. height: math.unit(1.77, "feet"),
  33715. name: "Devious",
  33716. image: {
  33717. source: "./media/characters/purri/devious.svg",
  33718. extra: 1440/1155,
  33719. bottom: 147/1587
  33720. }
  33721. },
  33722. bean: {
  33723. height: math.unit(1.94, "feet"),
  33724. name: "Bean",
  33725. image: {
  33726. source: "./media/characters/purri/bean.svg"
  33727. }
  33728. },
  33729. },
  33730. [
  33731. {
  33732. name: "Micro",
  33733. height: math.unit(1, "mm")
  33734. },
  33735. {
  33736. name: "Normal",
  33737. height: math.unit(6 + 5/12, "feet"),
  33738. default: true
  33739. },
  33740. {
  33741. name: "Macro :3c",
  33742. height: math.unit(2, "miles")
  33743. },
  33744. ]
  33745. ))
  33746. characterMakers.push(() => makeCharacter(
  33747. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33748. {
  33749. front: {
  33750. height: math.unit(6 + 2/12, "feet"),
  33751. weight: math.unit(250, "lb"),
  33752. name: "Front",
  33753. image: {
  33754. source: "./media/characters/moonlight/front.svg",
  33755. extra: 1044/908,
  33756. bottom: 56/1100
  33757. }
  33758. },
  33759. feral: {
  33760. height: math.unit(3 + 1/12, "feet"),
  33761. weight: math.unit(50, "kg"),
  33762. name: "Feral",
  33763. image: {
  33764. source: "./media/characters/moonlight/feral.svg",
  33765. extra: 3705/2791,
  33766. bottom: 145/3850
  33767. }
  33768. },
  33769. paw: {
  33770. height: math.unit(1, "feet"),
  33771. name: "Paw",
  33772. image: {
  33773. source: "./media/characters/moonlight/paw.svg"
  33774. }
  33775. },
  33776. paws: {
  33777. height: math.unit(0.98, "feet"),
  33778. name: "Paws",
  33779. image: {
  33780. source: "./media/characters/moonlight/paws.svg",
  33781. extra: 939/939,
  33782. bottom: 50/989
  33783. }
  33784. },
  33785. mouth: {
  33786. height: math.unit(0.48, "feet"),
  33787. name: "Mouth",
  33788. image: {
  33789. source: "./media/characters/moonlight/mouth.svg"
  33790. }
  33791. },
  33792. dick: {
  33793. height: math.unit(1.46, "feet"),
  33794. name: "Dick",
  33795. image: {
  33796. source: "./media/characters/moonlight/dick.svg"
  33797. }
  33798. },
  33799. },
  33800. [
  33801. {
  33802. name: "Normal",
  33803. height: math.unit(6 + 2/12, "feet"),
  33804. default: true
  33805. },
  33806. {
  33807. name: "Macro",
  33808. height: math.unit(300, "feet")
  33809. },
  33810. {
  33811. name: "Macro+",
  33812. height: math.unit(1, "mile")
  33813. },
  33814. {
  33815. name: "Mt. Moon",
  33816. height: math.unit(5, "miles")
  33817. },
  33818. {
  33819. name: "Megamacro",
  33820. height: math.unit(15, "miles")
  33821. },
  33822. ]
  33823. ))
  33824. characterMakers.push(() => makeCharacter(
  33825. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33826. {
  33827. back: {
  33828. height: math.unit(6, "feet"),
  33829. weight: math.unit(150, "lb"),
  33830. name: "Back",
  33831. image: {
  33832. source: "./media/characters/sylen/back.svg",
  33833. extra: 1335/1273,
  33834. bottom: 107/1442
  33835. }
  33836. },
  33837. },
  33838. [
  33839. {
  33840. name: "Normal",
  33841. height: math.unit(5 + 5/12, "feet")
  33842. },
  33843. {
  33844. name: "Megamacro",
  33845. height: math.unit(3, "miles"),
  33846. default: true
  33847. },
  33848. ]
  33849. ))
  33850. characterMakers.push(() => makeCharacter(
  33851. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33852. {
  33853. front: {
  33854. height: math.unit(6, "feet"),
  33855. weight: math.unit(190, "lb"),
  33856. name: "Front",
  33857. image: {
  33858. source: "./media/characters/huttser/front.svg",
  33859. extra: 1152/1058,
  33860. bottom: 23/1175
  33861. }
  33862. },
  33863. side: {
  33864. height: math.unit(6, "feet"),
  33865. weight: math.unit(190, "lb"),
  33866. name: "Side",
  33867. image: {
  33868. source: "./media/characters/huttser/side.svg",
  33869. extra: 1174/1065,
  33870. bottom: 18/1192
  33871. }
  33872. },
  33873. back: {
  33874. height: math.unit(6, "feet"),
  33875. weight: math.unit(190, "lb"),
  33876. name: "Back",
  33877. image: {
  33878. source: "./media/characters/huttser/back.svg",
  33879. extra: 1158/1056,
  33880. bottom: 12/1170
  33881. }
  33882. },
  33883. },
  33884. [
  33885. ]
  33886. ))
  33887. characterMakers.push(() => makeCharacter(
  33888. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33889. {
  33890. side: {
  33891. height: math.unit(12 + 9/12, "feet"),
  33892. weight: math.unit(15000, "lb"),
  33893. name: "Side",
  33894. image: {
  33895. source: "./media/characters/faan/side.svg",
  33896. extra: 2747/2697,
  33897. bottom: 0/2747
  33898. }
  33899. },
  33900. front: {
  33901. height: math.unit(12 + 9/12, "feet"),
  33902. weight: math.unit(15000, "lb"),
  33903. name: "Front",
  33904. image: {
  33905. source: "./media/characters/faan/front.svg",
  33906. extra: 607/571,
  33907. bottom: 24/631
  33908. }
  33909. },
  33910. head: {
  33911. height: math.unit(2.85, "feet"),
  33912. name: "Head",
  33913. image: {
  33914. source: "./media/characters/faan/head.svg"
  33915. }
  33916. },
  33917. headAlt: {
  33918. height: math.unit(3.13, "feet"),
  33919. name: "Head-alt",
  33920. image: {
  33921. source: "./media/characters/faan/head-alt.svg"
  33922. }
  33923. },
  33924. },
  33925. [
  33926. {
  33927. name: "Normal",
  33928. height: math.unit(12 + 9/12, "feet"),
  33929. default: true
  33930. },
  33931. ]
  33932. ))
  33933. characterMakers.push(() => makeCharacter(
  33934. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33935. {
  33936. front: {
  33937. height: math.unit(6, "feet"),
  33938. weight: math.unit(300, "lb"),
  33939. name: "Front",
  33940. image: {
  33941. source: "./media/characters/tanio/front.svg",
  33942. extra: 711/673,
  33943. bottom: 25/736
  33944. }
  33945. },
  33946. },
  33947. [
  33948. {
  33949. name: "Normal",
  33950. height: math.unit(6, "feet"),
  33951. default: true
  33952. },
  33953. ]
  33954. ))
  33955. characterMakers.push(() => makeCharacter(
  33956. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33957. {
  33958. front: {
  33959. height: math.unit(3, "inches"),
  33960. name: "Front",
  33961. image: {
  33962. source: "./media/characters/noboru/front.svg",
  33963. extra: 1039/932,
  33964. bottom: 18/1057
  33965. }
  33966. },
  33967. },
  33968. [
  33969. {
  33970. name: "Micro",
  33971. height: math.unit(3, "inches"),
  33972. default: true
  33973. },
  33974. ]
  33975. ))
  33976. characterMakers.push(() => makeCharacter(
  33977. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33978. {
  33979. front: {
  33980. height: math.unit(1.85, "meters"),
  33981. weight: math.unit(80, "kg"),
  33982. name: "Front",
  33983. image: {
  33984. source: "./media/characters/daniel-barrett/front.svg",
  33985. extra: 355/337,
  33986. bottom: 9/364
  33987. }
  33988. },
  33989. },
  33990. [
  33991. {
  33992. name: "Pico",
  33993. height: math.unit(0.0433, "mm")
  33994. },
  33995. {
  33996. name: "Nano",
  33997. height: math.unit(1.5, "mm")
  33998. },
  33999. {
  34000. name: "Micro",
  34001. height: math.unit(5.3, "cm"),
  34002. default: true
  34003. },
  34004. {
  34005. name: "Normal",
  34006. height: math.unit(1.85, "meters")
  34007. },
  34008. {
  34009. name: "Macro",
  34010. height: math.unit(64.7, "meters")
  34011. },
  34012. {
  34013. name: "Megamacro",
  34014. height: math.unit(2.26, "km")
  34015. },
  34016. {
  34017. name: "Gigamacro",
  34018. height: math.unit(79, "km")
  34019. },
  34020. {
  34021. name: "Teramacro",
  34022. height: math.unit(2765, "km")
  34023. },
  34024. {
  34025. name: "Petamacro",
  34026. height: math.unit(96678, "km")
  34027. },
  34028. ]
  34029. ))
  34030. characterMakers.push(() => makeCharacter(
  34031. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34032. {
  34033. front: {
  34034. height: math.unit(30, "meters"),
  34035. weight: math.unit(400, "tons"),
  34036. name: "Front",
  34037. image: {
  34038. source: "./media/characters/zeel/front.svg",
  34039. extra: 2599/2599,
  34040. bottom: 226/2825
  34041. }
  34042. },
  34043. },
  34044. [
  34045. {
  34046. name: "Macro",
  34047. height: math.unit(30, "meters"),
  34048. default: true
  34049. },
  34050. ]
  34051. ))
  34052. characterMakers.push(() => makeCharacter(
  34053. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34054. {
  34055. front: {
  34056. height: math.unit(6 + 7/12, "feet"),
  34057. weight: math.unit(210, "lb"),
  34058. name: "Front",
  34059. image: {
  34060. source: "./media/characters/tarn/front.svg",
  34061. extra: 3517/3220,
  34062. bottom: 91/3608
  34063. }
  34064. },
  34065. back: {
  34066. height: math.unit(6 + 7/12, "feet"),
  34067. weight: math.unit(210, "lb"),
  34068. name: "Back",
  34069. image: {
  34070. source: "./media/characters/tarn/back.svg",
  34071. extra: 3566/3241,
  34072. bottom: 34/3600
  34073. }
  34074. },
  34075. dick: {
  34076. height: math.unit(1.65, "feet"),
  34077. name: "Dick",
  34078. image: {
  34079. source: "./media/characters/tarn/dick.svg"
  34080. }
  34081. },
  34082. paw: {
  34083. height: math.unit(1.80, "feet"),
  34084. name: "Paw",
  34085. image: {
  34086. source: "./media/characters/tarn/paw.svg"
  34087. }
  34088. },
  34089. tongue: {
  34090. height: math.unit(0.97, "feet"),
  34091. name: "Tongue",
  34092. image: {
  34093. source: "./media/characters/tarn/tongue.svg"
  34094. }
  34095. },
  34096. },
  34097. [
  34098. {
  34099. name: "Micro",
  34100. height: math.unit(4, "inches")
  34101. },
  34102. {
  34103. name: "Normal",
  34104. height: math.unit(6 + 7/12, "feet"),
  34105. default: true
  34106. },
  34107. {
  34108. name: "Macro",
  34109. height: math.unit(300, "feet")
  34110. },
  34111. ]
  34112. ))
  34113. characterMakers.push(() => makeCharacter(
  34114. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34115. {
  34116. front: {
  34117. height: math.unit(5 + 7/12, "feet"),
  34118. weight: math.unit(80, "kg"),
  34119. name: "Front",
  34120. image: {
  34121. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34122. extra: 3023/2865,
  34123. bottom: 33/3056
  34124. }
  34125. },
  34126. back: {
  34127. height: math.unit(5 + 7/12, "feet"),
  34128. weight: math.unit(80, "kg"),
  34129. name: "Back",
  34130. image: {
  34131. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34132. extra: 3020/2886,
  34133. bottom: 30/3050
  34134. }
  34135. },
  34136. dick: {
  34137. height: math.unit(0.98, "feet"),
  34138. name: "Dick",
  34139. image: {
  34140. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34141. }
  34142. },
  34143. anatomy: {
  34144. height: math.unit(2.86, "feet"),
  34145. name: "Anatomy",
  34146. image: {
  34147. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34148. }
  34149. },
  34150. },
  34151. [
  34152. {
  34153. name: "Really Small",
  34154. height: math.unit(2, "inches")
  34155. },
  34156. {
  34157. name: "Micro",
  34158. height: math.unit(5.583, "inches")
  34159. },
  34160. {
  34161. name: "Normal",
  34162. height: math.unit(5 + 7/12, "feet"),
  34163. default: true
  34164. },
  34165. {
  34166. name: "Macro",
  34167. height: math.unit(67, "feet")
  34168. },
  34169. {
  34170. name: "Megamacro",
  34171. height: math.unit(134, "feet")
  34172. },
  34173. ]
  34174. ))
  34175. characterMakers.push(() => makeCharacter(
  34176. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34177. {
  34178. front: {
  34179. height: math.unit(9, "feet"),
  34180. weight: math.unit(120, "lb"),
  34181. name: "Front",
  34182. image: {
  34183. source: "./media/characters/sally/front.svg",
  34184. extra: 1506/1349,
  34185. bottom: 66/1572
  34186. }
  34187. },
  34188. },
  34189. [
  34190. {
  34191. name: "Normal",
  34192. height: math.unit(9, "feet"),
  34193. default: true
  34194. },
  34195. ]
  34196. ))
  34197. characterMakers.push(() => makeCharacter(
  34198. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34199. {
  34200. front: {
  34201. height: math.unit(8, "feet"),
  34202. weight: math.unit(900, "lb"),
  34203. name: "Front",
  34204. image: {
  34205. source: "./media/characters/owen/front.svg",
  34206. extra: 1761/1657,
  34207. bottom: 74/1835
  34208. }
  34209. },
  34210. side: {
  34211. height: math.unit(8, "feet"),
  34212. weight: math.unit(900, "lb"),
  34213. name: "Side",
  34214. image: {
  34215. source: "./media/characters/owen/side.svg",
  34216. extra: 1797/1734,
  34217. bottom: 30/1827
  34218. }
  34219. },
  34220. back: {
  34221. height: math.unit(8, "feet"),
  34222. weight: math.unit(900, "lb"),
  34223. name: "Back",
  34224. image: {
  34225. source: "./media/characters/owen/back.svg",
  34226. extra: 1796/1706,
  34227. bottom: 59/1855
  34228. }
  34229. },
  34230. maw: {
  34231. height: math.unit(1.76, "feet"),
  34232. name: "Maw",
  34233. image: {
  34234. source: "./media/characters/owen/maw.svg"
  34235. }
  34236. },
  34237. },
  34238. [
  34239. {
  34240. name: "Normal",
  34241. height: math.unit(8, "feet"),
  34242. default: true
  34243. },
  34244. ]
  34245. ))
  34246. characterMakers.push(() => makeCharacter(
  34247. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34248. {
  34249. front: {
  34250. height: math.unit(4, "feet"),
  34251. weight: math.unit(400, "lb"),
  34252. name: "Front",
  34253. image: {
  34254. source: "./media/characters/ryth/front.svg",
  34255. extra: 1920/1748,
  34256. bottom: 42/1962
  34257. }
  34258. },
  34259. back: {
  34260. height: math.unit(4, "feet"),
  34261. weight: math.unit(400, "lb"),
  34262. name: "Back",
  34263. image: {
  34264. source: "./media/characters/ryth/back.svg",
  34265. extra: 1897/1690,
  34266. bottom: 89/1986
  34267. }
  34268. },
  34269. mouth: {
  34270. height: math.unit(1.39, "feet"),
  34271. name: "Mouth",
  34272. image: {
  34273. source: "./media/characters/ryth/mouth.svg"
  34274. }
  34275. },
  34276. tailmaw: {
  34277. height: math.unit(1.23, "feet"),
  34278. name: "Tailmaw",
  34279. image: {
  34280. source: "./media/characters/ryth/tailmaw.svg"
  34281. }
  34282. },
  34283. goia: {
  34284. height: math.unit(4, "meters"),
  34285. weight: math.unit(10800, "lb"),
  34286. name: "Goia",
  34287. image: {
  34288. source: "./media/characters/ryth/goia.svg",
  34289. extra: 745/640,
  34290. bottom: 107/852
  34291. }
  34292. },
  34293. goiaFront: {
  34294. height: math.unit(4, "meters"),
  34295. weight: math.unit(10800, "lb"),
  34296. name: "Goia (Front)",
  34297. image: {
  34298. source: "./media/characters/ryth/goia-front.svg",
  34299. extra: 750/586,
  34300. bottom: 114/864
  34301. }
  34302. },
  34303. goiaMaw: {
  34304. height: math.unit(5.55, "feet"),
  34305. name: "Goia Maw",
  34306. image: {
  34307. source: "./media/characters/ryth/goia-maw.svg"
  34308. }
  34309. },
  34310. goiaForepaw: {
  34311. height: math.unit(3.5, "feet"),
  34312. name: "Goia Forepaw",
  34313. image: {
  34314. source: "./media/characters/ryth/goia-forepaw.svg"
  34315. }
  34316. },
  34317. goiaHindpaw: {
  34318. height: math.unit(5.55, "feet"),
  34319. name: "Goia Hindpaw",
  34320. image: {
  34321. source: "./media/characters/ryth/goia-hindpaw.svg"
  34322. }
  34323. },
  34324. },
  34325. [
  34326. {
  34327. name: "Normal",
  34328. height: math.unit(4, "feet"),
  34329. default: true
  34330. },
  34331. ]
  34332. ))
  34333. characterMakers.push(() => makeCharacter(
  34334. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34335. {
  34336. front: {
  34337. height: math.unit(7, "feet"),
  34338. weight: math.unit(180, "lb"),
  34339. name: "Front",
  34340. image: {
  34341. source: "./media/characters/necrolance/front.svg",
  34342. extra: 1062/947,
  34343. bottom: 41/1103
  34344. }
  34345. },
  34346. back: {
  34347. height: math.unit(7, "feet"),
  34348. weight: math.unit(180, "lb"),
  34349. name: "Back",
  34350. image: {
  34351. source: "./media/characters/necrolance/back.svg",
  34352. extra: 1045/984,
  34353. bottom: 14/1059
  34354. }
  34355. },
  34356. wing: {
  34357. height: math.unit(2.67, "feet"),
  34358. name: "Wing",
  34359. image: {
  34360. source: "./media/characters/necrolance/wing.svg"
  34361. }
  34362. },
  34363. },
  34364. [
  34365. {
  34366. name: "Normal",
  34367. height: math.unit(7, "feet"),
  34368. default: true
  34369. },
  34370. ]
  34371. ))
  34372. characterMakers.push(() => makeCharacter(
  34373. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34374. {
  34375. front: {
  34376. height: math.unit(76, "meters"),
  34377. weight: math.unit(30000, "tons"),
  34378. name: "Front",
  34379. image: {
  34380. source: "./media/characters/tyler/front.svg",
  34381. extra: 1640/1640,
  34382. bottom: 114/1754
  34383. }
  34384. },
  34385. },
  34386. [
  34387. {
  34388. name: "Macro",
  34389. height: math.unit(76, "meters"),
  34390. default: true
  34391. },
  34392. ]
  34393. ))
  34394. characterMakers.push(() => makeCharacter(
  34395. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34396. {
  34397. front: {
  34398. height: math.unit(4 + 11/12, "feet"),
  34399. weight: math.unit(132, "lb"),
  34400. name: "Front",
  34401. image: {
  34402. source: "./media/characters/icey/front.svg",
  34403. extra: 2750/2550,
  34404. bottom: 33/2783
  34405. }
  34406. },
  34407. back: {
  34408. height: math.unit(4 + 11/12, "feet"),
  34409. weight: math.unit(132, "lb"),
  34410. name: "Back",
  34411. image: {
  34412. source: "./media/characters/icey/back.svg",
  34413. extra: 2624/2481,
  34414. bottom: 35/2659
  34415. }
  34416. },
  34417. },
  34418. [
  34419. {
  34420. name: "Normal",
  34421. height: math.unit(4 + 11/12, "feet"),
  34422. default: true
  34423. },
  34424. ]
  34425. ))
  34426. characterMakers.push(() => makeCharacter(
  34427. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34428. {
  34429. front: {
  34430. height: math.unit(100, "feet"),
  34431. weight: math.unit(0, "lb"),
  34432. name: "Front",
  34433. image: {
  34434. source: "./media/characters/smile/front.svg",
  34435. extra: 2983/2912,
  34436. bottom: 162/3145
  34437. }
  34438. },
  34439. back: {
  34440. height: math.unit(100, "feet"),
  34441. weight: math.unit(0, "lb"),
  34442. name: "Back",
  34443. image: {
  34444. source: "./media/characters/smile/back.svg",
  34445. extra: 3143/3031,
  34446. bottom: 91/3234
  34447. }
  34448. },
  34449. head: {
  34450. height: math.unit(26.3, "feet"),
  34451. weight: math.unit(0, "lb"),
  34452. name: "Head",
  34453. image: {
  34454. source: "./media/characters/smile/head.svg"
  34455. }
  34456. },
  34457. collar: {
  34458. height: math.unit(5.3, "feet"),
  34459. weight: math.unit(0, "lb"),
  34460. name: "Collar",
  34461. image: {
  34462. source: "./media/characters/smile/collar.svg"
  34463. }
  34464. },
  34465. },
  34466. [
  34467. {
  34468. name: "Macro",
  34469. height: math.unit(100, "feet"),
  34470. default: true
  34471. },
  34472. ]
  34473. ))
  34474. characterMakers.push(() => makeCharacter(
  34475. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34476. {
  34477. dragon: {
  34478. height: math.unit(26, "feet"),
  34479. weight: math.unit(36, "tons"),
  34480. name: "Dragon",
  34481. image: {
  34482. source: "./media/characters/arimphae/dragon.svg",
  34483. extra: 1574/983,
  34484. bottom: 357/1931
  34485. }
  34486. },
  34487. drake: {
  34488. height: math.unit(9, "feet"),
  34489. weight: math.unit(1.5, "tons"),
  34490. name: "Drake",
  34491. image: {
  34492. source: "./media/characters/arimphae/drake.svg",
  34493. extra: 1120/925,
  34494. bottom: 435/1555
  34495. }
  34496. },
  34497. },
  34498. [
  34499. {
  34500. name: "Small",
  34501. height: math.unit(26*5/9, "feet")
  34502. },
  34503. {
  34504. name: "Normal",
  34505. height: math.unit(26, "feet"),
  34506. default: true
  34507. },
  34508. ]
  34509. ))
  34510. characterMakers.push(() => makeCharacter(
  34511. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34512. {
  34513. front: {
  34514. height: math.unit(8 + 9/12, "feet"),
  34515. name: "Front",
  34516. image: {
  34517. source: "./media/characters/xander/front.svg",
  34518. extra: 1237/974,
  34519. bottom: 94/1331
  34520. }
  34521. },
  34522. },
  34523. [
  34524. {
  34525. name: "Normal",
  34526. height: math.unit(8 + 9/12, "feet"),
  34527. default: true
  34528. },
  34529. {
  34530. name: "Gaze Grabber",
  34531. height: math.unit(13 + 8/12, "feet")
  34532. },
  34533. {
  34534. name: "Jaw Dropper",
  34535. height: math.unit(27, "feet")
  34536. },
  34537. {
  34538. name: "Show Stopper",
  34539. height: math.unit(136, "feet")
  34540. },
  34541. {
  34542. name: "Superstar",
  34543. height: math.unit(1.9e6, "miles")
  34544. },
  34545. ]
  34546. ))
  34547. characterMakers.push(() => makeCharacter(
  34548. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34549. {
  34550. side: {
  34551. height: math.unit(2100, "feet"),
  34552. name: "Side",
  34553. image: {
  34554. source: "./media/characters/osiris/side.svg",
  34555. extra: 1105/939,
  34556. bottom: 167/1272
  34557. }
  34558. },
  34559. },
  34560. [
  34561. {
  34562. name: "Macro",
  34563. height: math.unit(2100, "feet"),
  34564. default: true
  34565. },
  34566. ]
  34567. ))
  34568. characterMakers.push(() => makeCharacter(
  34569. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34570. {
  34571. front: {
  34572. height: math.unit(6 + 8/12, "feet"),
  34573. weight: math.unit(225, "lb"),
  34574. name: "Front",
  34575. image: {
  34576. source: "./media/characters/rhys-londe/front.svg",
  34577. extra: 2258/2141,
  34578. bottom: 188/2446
  34579. }
  34580. },
  34581. back: {
  34582. height: math.unit(6 + 8/12, "feet"),
  34583. weight: math.unit(225, "lb"),
  34584. name: "Back",
  34585. image: {
  34586. source: "./media/characters/rhys-londe/back.svg",
  34587. extra: 2237/2137,
  34588. bottom: 63/2300
  34589. }
  34590. },
  34591. frontNsfw: {
  34592. height: math.unit(6 + 8/12, "feet"),
  34593. weight: math.unit(225, "lb"),
  34594. name: "Front (NSFW)",
  34595. image: {
  34596. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34597. extra: 2258/2141,
  34598. bottom: 188/2446
  34599. }
  34600. },
  34601. backNsfw: {
  34602. height: math.unit(6 + 8/12, "feet"),
  34603. weight: math.unit(225, "lb"),
  34604. name: "Back (NSFW)",
  34605. image: {
  34606. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34607. extra: 2237/2137,
  34608. bottom: 63/2300
  34609. }
  34610. },
  34611. dick: {
  34612. height: math.unit(30, "inches"),
  34613. name: "Dick",
  34614. image: {
  34615. source: "./media/characters/rhys-londe/dick.svg"
  34616. }
  34617. },
  34618. maw: {
  34619. height: math.unit(1.6, "feet"),
  34620. name: "Maw",
  34621. image: {
  34622. source: "./media/characters/rhys-londe/maw.svg"
  34623. }
  34624. },
  34625. },
  34626. [
  34627. {
  34628. name: "Normal",
  34629. height: math.unit(6 + 8/12, "feet"),
  34630. default: true
  34631. },
  34632. ]
  34633. ))
  34634. characterMakers.push(() => makeCharacter(
  34635. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34636. {
  34637. front: {
  34638. height: math.unit(3 + 10/12, "feet"),
  34639. weight: math.unit(90, "lb"),
  34640. name: "Front",
  34641. image: {
  34642. source: "./media/characters/taivas-ensim/front.svg",
  34643. extra: 1327/1216,
  34644. bottom: 96/1423
  34645. }
  34646. },
  34647. back: {
  34648. height: math.unit(3 + 10/12, "feet"),
  34649. weight: math.unit(90, "lb"),
  34650. name: "Back",
  34651. image: {
  34652. source: "./media/characters/taivas-ensim/back.svg",
  34653. extra: 1355/1247,
  34654. bottom: 11/1366
  34655. }
  34656. },
  34657. frontNsfw: {
  34658. height: math.unit(3 + 10/12, "feet"),
  34659. weight: math.unit(90, "lb"),
  34660. name: "Front (NSFW)",
  34661. image: {
  34662. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34663. extra: 1327/1216,
  34664. bottom: 96/1423
  34665. }
  34666. },
  34667. backNsfw: {
  34668. height: math.unit(3 + 10/12, "feet"),
  34669. weight: math.unit(90, "lb"),
  34670. name: "Back (NSFW)",
  34671. image: {
  34672. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34673. extra: 1355/1247,
  34674. bottom: 11/1366
  34675. }
  34676. },
  34677. },
  34678. [
  34679. {
  34680. name: "Normal",
  34681. height: math.unit(3 + 10/12, "feet"),
  34682. default: true
  34683. },
  34684. ]
  34685. ))
  34686. characterMakers.push(() => makeCharacter(
  34687. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34688. {
  34689. front: {
  34690. height: math.unit(9 + 6/12, "feet"),
  34691. weight: math.unit(940, "lb"),
  34692. name: "Front",
  34693. image: {
  34694. source: "./media/characters/byliss/front.svg",
  34695. extra: 1327/1290,
  34696. bottom: 82/1409
  34697. }
  34698. },
  34699. back: {
  34700. height: math.unit(9 + 6/12, "feet"),
  34701. weight: math.unit(940, "lb"),
  34702. name: "Back",
  34703. image: {
  34704. source: "./media/characters/byliss/back.svg",
  34705. extra: 1376/1349,
  34706. bottom: 9/1385
  34707. }
  34708. },
  34709. frontNsfw: {
  34710. height: math.unit(9 + 6/12, "feet"),
  34711. weight: math.unit(940, "lb"),
  34712. name: "Front (NSFW)",
  34713. image: {
  34714. source: "./media/characters/byliss/front-nsfw.svg",
  34715. extra: 1327/1290,
  34716. bottom: 82/1409
  34717. }
  34718. },
  34719. backNsfw: {
  34720. height: math.unit(9 + 6/12, "feet"),
  34721. weight: math.unit(940, "lb"),
  34722. name: "Back (NSFW)",
  34723. image: {
  34724. source: "./media/characters/byliss/back-nsfw.svg",
  34725. extra: 1376/1349,
  34726. bottom: 9/1385
  34727. }
  34728. },
  34729. },
  34730. [
  34731. {
  34732. name: "Normal",
  34733. height: math.unit(9 + 6/12, "feet"),
  34734. default: true
  34735. },
  34736. ]
  34737. ))
  34738. characterMakers.push(() => makeCharacter(
  34739. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34740. {
  34741. front: {
  34742. height: math.unit(5 + 2/12, "feet"),
  34743. weight: math.unit(200, "lb"),
  34744. name: "Front",
  34745. image: {
  34746. source: "./media/characters/noraly/front.svg",
  34747. extra: 4985/4773,
  34748. bottom: 150/5135
  34749. }
  34750. },
  34751. full: {
  34752. height: math.unit(5 + 2/12, "feet"),
  34753. weight: math.unit(164, "lb"),
  34754. name: "Full",
  34755. image: {
  34756. source: "./media/characters/noraly/full.svg",
  34757. extra: 1114/1059,
  34758. bottom: 35/1149
  34759. }
  34760. },
  34761. fuller: {
  34762. height: math.unit(5 + 2/12, "feet"),
  34763. weight: math.unit(230, "lb"),
  34764. name: "Fuller",
  34765. image: {
  34766. source: "./media/characters/noraly/fuller.svg",
  34767. extra: 1114/1059,
  34768. bottom: 35/1149
  34769. }
  34770. },
  34771. fullest: {
  34772. height: math.unit(5 + 2/12, "feet"),
  34773. weight: math.unit(300, "lb"),
  34774. name: "Fullest",
  34775. image: {
  34776. source: "./media/characters/noraly/fullest.svg",
  34777. extra: 1114/1059,
  34778. bottom: 35/1149
  34779. }
  34780. },
  34781. },
  34782. [
  34783. {
  34784. name: "Normal",
  34785. height: math.unit(5 + 2/12, "feet"),
  34786. default: true
  34787. },
  34788. ]
  34789. ))
  34790. characterMakers.push(() => makeCharacter(
  34791. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34792. {
  34793. front: {
  34794. height: math.unit(5 + 2/12, "feet"),
  34795. weight: math.unit(210, "lb"),
  34796. name: "Front",
  34797. image: {
  34798. source: "./media/characters/pera/front.svg",
  34799. extra: 1560/1531,
  34800. bottom: 165/1725
  34801. }
  34802. },
  34803. back: {
  34804. height: math.unit(5 + 2/12, "feet"),
  34805. weight: math.unit(210, "lb"),
  34806. name: "Back",
  34807. image: {
  34808. source: "./media/characters/pera/back.svg",
  34809. extra: 1523/1493,
  34810. bottom: 152/1675
  34811. }
  34812. },
  34813. dick: {
  34814. height: math.unit(2.4, "feet"),
  34815. name: "Dick",
  34816. image: {
  34817. source: "./media/characters/pera/dick.svg"
  34818. }
  34819. },
  34820. },
  34821. [
  34822. {
  34823. name: "Normal",
  34824. height: math.unit(5 + 2/12, "feet"),
  34825. default: true
  34826. },
  34827. ]
  34828. ))
  34829. characterMakers.push(() => makeCharacter(
  34830. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34831. {
  34832. front: {
  34833. height: math.unit(12, "feet"),
  34834. weight: math.unit(3200, "lb"),
  34835. name: "Front",
  34836. image: {
  34837. source: "./media/characters/julian/front.svg",
  34838. extra: 2962/2701,
  34839. bottom: 184/3146
  34840. }
  34841. },
  34842. maw: {
  34843. height: math.unit(5.35, "feet"),
  34844. name: "Maw",
  34845. image: {
  34846. source: "./media/characters/julian/maw.svg"
  34847. }
  34848. },
  34849. paw: {
  34850. height: math.unit(3.07, "feet"),
  34851. name: "Paw",
  34852. image: {
  34853. source: "./media/characters/julian/paw.svg"
  34854. }
  34855. },
  34856. },
  34857. [
  34858. {
  34859. name: "Default",
  34860. height: math.unit(12, "feet"),
  34861. default: true
  34862. },
  34863. {
  34864. name: "Big",
  34865. height: math.unit(50, "feet")
  34866. },
  34867. {
  34868. name: "Really Big",
  34869. height: math.unit(1, "mile")
  34870. },
  34871. {
  34872. name: "Extremely Big",
  34873. height: math.unit(100, "miles")
  34874. },
  34875. {
  34876. name: "Planet Hugger",
  34877. height: math.unit(200, "megameters")
  34878. },
  34879. {
  34880. name: "Unreasonably Big",
  34881. height: math.unit(1e300, "meters")
  34882. },
  34883. ]
  34884. ))
  34885. characterMakers.push(() => makeCharacter(
  34886. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34887. {
  34888. solgooleo: {
  34889. height: math.unit(4, "meters"),
  34890. weight: math.unit(6000*1.5, "kg"),
  34891. volume: math.unit(6000, "liters"),
  34892. name: "Solgooleo",
  34893. image: {
  34894. source: "./media/characters/pi/solgooleo.svg",
  34895. extra: 388/331,
  34896. bottom: 29/417
  34897. }
  34898. },
  34899. },
  34900. [
  34901. {
  34902. name: "Normal",
  34903. height: math.unit(4, "meters"),
  34904. default: true
  34905. },
  34906. ]
  34907. ))
  34908. characterMakers.push(() => makeCharacter(
  34909. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34910. {
  34911. front: {
  34912. height: math.unit(8, "feet"),
  34913. weight: math.unit(4, "tons"),
  34914. name: "Front",
  34915. image: {
  34916. source: "./media/characters/shaun/front.svg",
  34917. extra: 503/495,
  34918. bottom: 20/523
  34919. }
  34920. },
  34921. back: {
  34922. height: math.unit(8, "feet"),
  34923. weight: math.unit(4, "tons"),
  34924. name: "Back",
  34925. image: {
  34926. source: "./media/characters/shaun/back.svg",
  34927. extra: 487/480,
  34928. bottom: 20/507
  34929. }
  34930. },
  34931. },
  34932. [
  34933. {
  34934. name: "Lorg",
  34935. height: math.unit(8, "feet"),
  34936. default: true
  34937. },
  34938. ]
  34939. ))
  34940. characterMakers.push(() => makeCharacter(
  34941. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34942. {
  34943. frontAnthro: {
  34944. height: math.unit(7, "feet"),
  34945. name: "Front",
  34946. image: {
  34947. source: "./media/characters/sini/front-anthro.svg",
  34948. extra: 726/678,
  34949. bottom: 35/761
  34950. },
  34951. form: "anthro",
  34952. default: true
  34953. },
  34954. backAnthro: {
  34955. height: math.unit(7, "feet"),
  34956. name: "Back",
  34957. image: {
  34958. source: "./media/characters/sini/back-anthro.svg",
  34959. extra: 743/701,
  34960. bottom: 12/755
  34961. },
  34962. form: "anthro",
  34963. },
  34964. frontAnthroNsfw: {
  34965. height: math.unit(7, "feet"),
  34966. name: "Front (NSFW)",
  34967. image: {
  34968. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34969. extra: 726/678,
  34970. bottom: 35/761
  34971. },
  34972. form: "anthro"
  34973. },
  34974. backAnthroNsfw: {
  34975. height: math.unit(7, "feet"),
  34976. name: "Back (NSFW)",
  34977. image: {
  34978. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34979. extra: 743/701,
  34980. bottom: 12/755
  34981. },
  34982. form: "anthro",
  34983. },
  34984. mawAnthro: {
  34985. height: math.unit(2.14, "feet"),
  34986. name: "Maw",
  34987. image: {
  34988. source: "./media/characters/sini/maw-anthro.svg"
  34989. },
  34990. form: "anthro"
  34991. },
  34992. dick: {
  34993. height: math.unit(1.45, "feet"),
  34994. name: "Dick",
  34995. image: {
  34996. source: "./media/characters/sini/dick-anthro.svg"
  34997. },
  34998. form: "anthro"
  34999. },
  35000. feral: {
  35001. height: math.unit(16, "feet"),
  35002. name: "Feral",
  35003. image: {
  35004. source: "./media/characters/sini/feral.svg",
  35005. extra: 814/605,
  35006. bottom: 11/825
  35007. },
  35008. form: "feral",
  35009. default: true
  35010. },
  35011. feralNsfw: {
  35012. height: math.unit(16, "feet"),
  35013. name: "Feral (NSFW)",
  35014. image: {
  35015. source: "./media/characters/sini/feral-nsfw.svg",
  35016. extra: 814/605,
  35017. bottom: 11/825
  35018. },
  35019. form: "feral"
  35020. },
  35021. mawFeral: {
  35022. height: math.unit(5.66, "feet"),
  35023. name: "Maw",
  35024. image: {
  35025. source: "./media/characters/sini/maw-feral.svg"
  35026. },
  35027. form: "feral",
  35028. },
  35029. pawFeral: {
  35030. height: math.unit(5.17, "feet"),
  35031. name: "Paw",
  35032. image: {
  35033. source: "./media/characters/sini/paw-feral.svg"
  35034. },
  35035. form: "feral",
  35036. },
  35037. rumpFeral: {
  35038. height: math.unit(13.11, "feet"),
  35039. name: "Rump",
  35040. image: {
  35041. source: "./media/characters/sini/rump-feral.svg"
  35042. },
  35043. form: "feral",
  35044. },
  35045. dickFeral: {
  35046. height: math.unit(1, "feet"),
  35047. name: "Dick",
  35048. image: {
  35049. source: "./media/characters/sini/dick-feral.svg"
  35050. },
  35051. form: "feral",
  35052. },
  35053. eyeFeral: {
  35054. height: math.unit(1.23, "feet"),
  35055. name: "Eye",
  35056. image: {
  35057. source: "./media/characters/sini/eye-feral.svg"
  35058. },
  35059. form: "feral",
  35060. },
  35061. },
  35062. [
  35063. {
  35064. name: "Normal",
  35065. height: math.unit(7, "feet"),
  35066. default: true,
  35067. form: "anthro"
  35068. },
  35069. {
  35070. name: "Normal",
  35071. height: math.unit(16, "feet"),
  35072. default: true,
  35073. form: "feral"
  35074. },
  35075. ],
  35076. {
  35077. "anthro": {
  35078. name: "Anthro",
  35079. default: true
  35080. },
  35081. "feral": {
  35082. name: "Feral",
  35083. }
  35084. }
  35085. ))
  35086. characterMakers.push(() => makeCharacter(
  35087. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35088. {
  35089. side: {
  35090. height: math.unit(47.2, "meters"),
  35091. weight: math.unit(10000, "tons"),
  35092. name: "Side",
  35093. image: {
  35094. source: "./media/characters/raylldo/side.svg",
  35095. extra: 2363/642,
  35096. bottom: 221/2584
  35097. }
  35098. },
  35099. top: {
  35100. height: math.unit(240, "meters"),
  35101. weight: math.unit(10000, "tons"),
  35102. name: "Top",
  35103. image: {
  35104. source: "./media/characters/raylldo/top.svg"
  35105. }
  35106. },
  35107. bottom: {
  35108. height: math.unit(240, "meters"),
  35109. weight: math.unit(10000, "tons"),
  35110. name: "Bottom",
  35111. image: {
  35112. source: "./media/characters/raylldo/bottom.svg"
  35113. }
  35114. },
  35115. head: {
  35116. height: math.unit(38.6, "meters"),
  35117. name: "Head",
  35118. image: {
  35119. source: "./media/characters/raylldo/head.svg",
  35120. extra: 1335/1112,
  35121. bottom: 0/1335
  35122. }
  35123. },
  35124. maw: {
  35125. height: math.unit(16.37, "meters"),
  35126. name: "Maw",
  35127. image: {
  35128. source: "./media/characters/raylldo/maw.svg",
  35129. extra: 883/660,
  35130. bottom: 0/883
  35131. },
  35132. extraAttributes: {
  35133. preyCapacity: {
  35134. name: "Capacity",
  35135. power: 3,
  35136. type: "volume",
  35137. base: math.unit(1000, "people")
  35138. },
  35139. tongueSize: {
  35140. name: "Tongue Size",
  35141. power: 2,
  35142. type: "area",
  35143. base: math.unit(21, "m^2")
  35144. }
  35145. }
  35146. },
  35147. forepaw: {
  35148. height: math.unit(18, "meters"),
  35149. name: "Forepaw",
  35150. image: {
  35151. source: "./media/characters/raylldo/forepaw.svg"
  35152. }
  35153. },
  35154. hindpaw: {
  35155. height: math.unit(23, "meters"),
  35156. name: "Hindpaw",
  35157. image: {
  35158. source: "./media/characters/raylldo/hindpaw.svg"
  35159. }
  35160. },
  35161. genitals: {
  35162. height: math.unit(42, "meters"),
  35163. name: "Genitals",
  35164. image: {
  35165. source: "./media/characters/raylldo/genitals.svg"
  35166. }
  35167. },
  35168. },
  35169. [
  35170. {
  35171. name: "Normal",
  35172. height: math.unit(47.2, "meters"),
  35173. default: true
  35174. },
  35175. ]
  35176. ))
  35177. characterMakers.push(() => makeCharacter(
  35178. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35179. {
  35180. anthroFront: {
  35181. height: math.unit(9, "feet"),
  35182. weight: math.unit(600, "lb"),
  35183. name: "Anthro (Front)",
  35184. image: {
  35185. source: "./media/characters/glint/anthro-front.svg",
  35186. extra: 1097/1018,
  35187. bottom: 28/1125
  35188. }
  35189. },
  35190. anthroBack: {
  35191. height: math.unit(9, "feet"),
  35192. weight: math.unit(600, "lb"),
  35193. name: "Anthro (Back)",
  35194. image: {
  35195. source: "./media/characters/glint/anthro-back.svg",
  35196. extra: 1154/997,
  35197. bottom: 36/1190
  35198. }
  35199. },
  35200. feral: {
  35201. height: math.unit(11, "feet"),
  35202. weight: math.unit(50000, "lb"),
  35203. name: "Feral",
  35204. image: {
  35205. source: "./media/characters/glint/feral.svg",
  35206. extra: 3035/1585,
  35207. bottom: 1169/4204
  35208. }
  35209. },
  35210. dickAnthro: {
  35211. height: math.unit(0.7, "meters"),
  35212. name: "Dick (Anthro)",
  35213. image: {
  35214. source: "./media/characters/glint/dick-anthro.svg"
  35215. }
  35216. },
  35217. dickFeral: {
  35218. height: math.unit(2.65, "meters"),
  35219. name: "Dick (Feral)",
  35220. image: {
  35221. source: "./media/characters/glint/dick-feral.svg"
  35222. }
  35223. },
  35224. slitHidden: {
  35225. height: math.unit(5.85, "meters"),
  35226. name: "Slit (Hidden)",
  35227. image: {
  35228. source: "./media/characters/glint/slit-hidden.svg"
  35229. }
  35230. },
  35231. slitErect: {
  35232. height: math.unit(5.85, "meters"),
  35233. name: "Slit (Erect)",
  35234. image: {
  35235. source: "./media/characters/glint/slit-erect.svg"
  35236. }
  35237. },
  35238. mawAnthro: {
  35239. height: math.unit(0.63, "meters"),
  35240. name: "Maw (Anthro)",
  35241. image: {
  35242. source: "./media/characters/glint/maw.svg"
  35243. }
  35244. },
  35245. mawFeral: {
  35246. height: math.unit(2.89, "meters"),
  35247. name: "Maw (Feral)",
  35248. image: {
  35249. source: "./media/characters/glint/maw.svg"
  35250. }
  35251. },
  35252. },
  35253. [
  35254. {
  35255. name: "Normal",
  35256. height: math.unit(9, "feet"),
  35257. default: true
  35258. },
  35259. ]
  35260. ))
  35261. characterMakers.push(() => makeCharacter(
  35262. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35263. {
  35264. side: {
  35265. height: math.unit(15, "feet"),
  35266. weight: math.unit(5000, "kg"),
  35267. name: "Side",
  35268. image: {
  35269. source: "./media/characters/kairne/side.svg",
  35270. extra: 979/811,
  35271. bottom: 13/992
  35272. }
  35273. },
  35274. front: {
  35275. height: math.unit(15, "feet"),
  35276. weight: math.unit(5000, "kg"),
  35277. name: "Front",
  35278. image: {
  35279. source: "./media/characters/kairne/front.svg",
  35280. extra: 908/814,
  35281. bottom: 26/934
  35282. }
  35283. },
  35284. sideNsfw: {
  35285. height: math.unit(15, "feet"),
  35286. weight: math.unit(5000, "kg"),
  35287. name: "Side (NSFW)",
  35288. image: {
  35289. source: "./media/characters/kairne/side-nsfw.svg",
  35290. extra: 979/811,
  35291. bottom: 13/992
  35292. }
  35293. },
  35294. frontNsfw: {
  35295. height: math.unit(15, "feet"),
  35296. weight: math.unit(5000, "kg"),
  35297. name: "Front (NSFW)",
  35298. image: {
  35299. source: "./media/characters/kairne/front-nsfw.svg",
  35300. extra: 908/814,
  35301. bottom: 26/934
  35302. }
  35303. },
  35304. dickCaged: {
  35305. height: math.unit(0.65, "meters"),
  35306. name: "Dick-caged",
  35307. image: {
  35308. source: "./media/characters/kairne/dick-caged.svg"
  35309. }
  35310. },
  35311. dick: {
  35312. height: math.unit(0.79, "meters"),
  35313. name: "Dick",
  35314. image: {
  35315. source: "./media/characters/kairne/dick.svg"
  35316. }
  35317. },
  35318. genitals: {
  35319. height: math.unit(1.29, "meters"),
  35320. name: "Genitals",
  35321. image: {
  35322. source: "./media/characters/kairne/genitals.svg"
  35323. }
  35324. },
  35325. maw: {
  35326. height: math.unit(1.73, "meters"),
  35327. name: "Maw",
  35328. image: {
  35329. source: "./media/characters/kairne/maw.svg"
  35330. }
  35331. },
  35332. },
  35333. [
  35334. {
  35335. name: "Normal",
  35336. height: math.unit(15, "feet"),
  35337. default: true
  35338. },
  35339. ]
  35340. ))
  35341. characterMakers.push(() => makeCharacter(
  35342. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35343. {
  35344. front: {
  35345. height: math.unit(5 + 8/12, "feet"),
  35346. weight: math.unit(139, "lb"),
  35347. name: "Front",
  35348. image: {
  35349. source: "./media/characters/biscuit-jackal/front.svg",
  35350. extra: 2106/1961,
  35351. bottom: 58/2164
  35352. }
  35353. },
  35354. back: {
  35355. height: math.unit(5 + 8/12, "feet"),
  35356. weight: math.unit(139, "lb"),
  35357. name: "Back",
  35358. image: {
  35359. source: "./media/characters/biscuit-jackal/back.svg",
  35360. extra: 2132/1976,
  35361. bottom: 57/2189
  35362. }
  35363. },
  35364. werejackal: {
  35365. height: math.unit(6 + 3/12, "feet"),
  35366. weight: math.unit(188, "lb"),
  35367. name: "Werejackal",
  35368. image: {
  35369. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35370. extra: 2373/2178,
  35371. bottom: 53/2426
  35372. }
  35373. },
  35374. },
  35375. [
  35376. {
  35377. name: "Normal",
  35378. height: math.unit(5 + 8/12, "feet"),
  35379. default: true
  35380. },
  35381. ]
  35382. ))
  35383. characterMakers.push(() => makeCharacter(
  35384. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35385. {
  35386. front: {
  35387. height: math.unit(140, "cm"),
  35388. weight: math.unit(45, "kg"),
  35389. name: "Front",
  35390. image: {
  35391. source: "./media/characters/tayra-white/front.svg",
  35392. extra: 2229/2192,
  35393. bottom: 75/2304
  35394. }
  35395. },
  35396. },
  35397. [
  35398. {
  35399. name: "Normal",
  35400. height: math.unit(140, "cm"),
  35401. default: true
  35402. },
  35403. ]
  35404. ))
  35405. characterMakers.push(() => makeCharacter(
  35406. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35407. {
  35408. front: {
  35409. height: math.unit(4 + 5/12, "feet"),
  35410. name: "Front",
  35411. image: {
  35412. source: "./media/characters/scoop/front.svg",
  35413. extra: 1257/1136,
  35414. bottom: 69/1326
  35415. }
  35416. },
  35417. back: {
  35418. height: math.unit(4 + 5/12, "feet"),
  35419. name: "Back",
  35420. image: {
  35421. source: "./media/characters/scoop/back.svg",
  35422. extra: 1321/1152,
  35423. bottom: 32/1353
  35424. }
  35425. },
  35426. maw: {
  35427. height: math.unit(0.68, "feet"),
  35428. name: "Maw",
  35429. image: {
  35430. source: "./media/characters/scoop/maw.svg"
  35431. }
  35432. },
  35433. },
  35434. [
  35435. {
  35436. name: "Really Small",
  35437. height: math.unit(1, "mm")
  35438. },
  35439. {
  35440. name: "Micro",
  35441. height: math.unit(1, "inch")
  35442. },
  35443. {
  35444. name: "Normal",
  35445. height: math.unit(4 + 5/12, "feet"),
  35446. default: true
  35447. },
  35448. {
  35449. name: "Macro",
  35450. height: math.unit(200, "feet")
  35451. },
  35452. {
  35453. name: "Megamacro",
  35454. height: math.unit(3240, "feet")
  35455. },
  35456. {
  35457. name: "Teramacro",
  35458. height: math.unit(2500, "miles")
  35459. },
  35460. ]
  35461. ))
  35462. characterMakers.push(() => makeCharacter(
  35463. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35464. {
  35465. front: {
  35466. height: math.unit(15 + 7/12, "feet"),
  35467. weight: math.unit(1150, "tons"),
  35468. name: "Front",
  35469. image: {
  35470. source: "./media/characters/saphinara/front.svg",
  35471. extra: 1837/1643,
  35472. bottom: 84/1921
  35473. },
  35474. form: "normal",
  35475. default: true
  35476. },
  35477. side: {
  35478. height: math.unit(15 + 7/12, "feet"),
  35479. weight: math.unit(1150, "tons"),
  35480. name: "Side",
  35481. image: {
  35482. source: "./media/characters/saphinara/side.svg",
  35483. extra: 605/547,
  35484. bottom: 6/611
  35485. },
  35486. form: "normal"
  35487. },
  35488. back: {
  35489. height: math.unit(15 + 7/12, "feet"),
  35490. weight: math.unit(1150, "tons"),
  35491. name: "Back",
  35492. image: {
  35493. source: "./media/characters/saphinara/back.svg",
  35494. extra: 591/531,
  35495. bottom: 13/604
  35496. },
  35497. form: "normal"
  35498. },
  35499. frontTail: {
  35500. height: math.unit(15 + 7/12, "feet"),
  35501. weight: math.unit(1150, "tons"),
  35502. name: "Front (Full Tail)",
  35503. image: {
  35504. source: "./media/characters/saphinara/front-tail.svg",
  35505. extra: 2256/1630,
  35506. bottom: 261/2517
  35507. },
  35508. form: "normal"
  35509. },
  35510. insides: {
  35511. height: math.unit(11.92, "feet"),
  35512. name: "Insides",
  35513. image: {
  35514. source: "./media/characters/saphinara/insides.svg"
  35515. },
  35516. form: "normal"
  35517. },
  35518. head: {
  35519. height: math.unit(4.17, "feet"),
  35520. name: "Head",
  35521. image: {
  35522. source: "./media/characters/saphinara/head.svg"
  35523. },
  35524. form: "normal"
  35525. },
  35526. tongue: {
  35527. height: math.unit(4.60, "feet"),
  35528. name: "Tongue",
  35529. image: {
  35530. source: "./media/characters/saphinara/tongue.svg"
  35531. },
  35532. form: "normal"
  35533. },
  35534. headEnraged: {
  35535. height: math.unit(5.55, "feet"),
  35536. name: "Head (Enraged)",
  35537. image: {
  35538. source: "./media/characters/saphinara/head-enraged.svg"
  35539. },
  35540. form: "normal"
  35541. },
  35542. wings: {
  35543. height: math.unit(11.95, "feet"),
  35544. name: "Wings",
  35545. image: {
  35546. source: "./media/characters/saphinara/wings.svg"
  35547. },
  35548. form: "normal"
  35549. },
  35550. feathers: {
  35551. height: math.unit(8.92, "feet"),
  35552. name: "Feathers",
  35553. image: {
  35554. source: "./media/characters/saphinara/feathers.svg"
  35555. },
  35556. form: "normal"
  35557. },
  35558. shackles: {
  35559. height: math.unit(2, "feet"),
  35560. name: "Shackles",
  35561. image: {
  35562. source: "./media/characters/saphinara/shackles.svg"
  35563. },
  35564. form: "normal"
  35565. },
  35566. eyes: {
  35567. height: math.unit(1.331, "feet"),
  35568. name: "Eyes",
  35569. image: {
  35570. source: "./media/characters/saphinara/eyes.svg"
  35571. },
  35572. form: "normal"
  35573. },
  35574. eyesEnraged: {
  35575. height: math.unit(1.331, "feet"),
  35576. name: "Eyes (Enraged)",
  35577. image: {
  35578. source: "./media/characters/saphinara/eyes-enraged.svg"
  35579. },
  35580. form: "normal"
  35581. },
  35582. trueFormSide: {
  35583. height: math.unit(200, "feet"),
  35584. weight: math.unit(1e7, "tons"),
  35585. name: "Side",
  35586. image: {
  35587. source: "./media/characters/saphinara/true-form-side.svg",
  35588. extra: 1399/770,
  35589. bottom: 97/1496
  35590. },
  35591. form: "true-form",
  35592. default: true
  35593. },
  35594. trueFormMaw: {
  35595. height: math.unit(71.5, "feet"),
  35596. name: "Maw",
  35597. image: {
  35598. source: "./media/characters/saphinara/true-form-maw.svg",
  35599. extra: 2302/1453,
  35600. bottom: 0/2302
  35601. },
  35602. form: "true-form"
  35603. },
  35604. meowberusSide: {
  35605. height: math.unit(75, "feet"),
  35606. weight: math.unit(180000, "kg"),
  35607. preyCapacity: math.unit(50000, "people"),
  35608. name: "Side",
  35609. image: {
  35610. source: "./media/characters/saphinara/meowberus-side.svg",
  35611. extra: 1400/711,
  35612. bottom: 126/1526
  35613. },
  35614. form: "meowberus",
  35615. extraAttributes: {
  35616. "pawArea": {
  35617. name: "Paw Size",
  35618. power: 2,
  35619. type: "area",
  35620. base: math.unit(35, "m^2")
  35621. }
  35622. }
  35623. },
  35624. },
  35625. [
  35626. {
  35627. name: "Normal",
  35628. height: math.unit(15 + 7/12, "feet"),
  35629. default: true,
  35630. form: "normal"
  35631. },
  35632. {
  35633. name: "Angry",
  35634. height: math.unit(30 + 6/12, "feet"),
  35635. form: "normal"
  35636. },
  35637. {
  35638. name: "Enraged",
  35639. height: math.unit(102 + 1/12, "feet"),
  35640. form: "normal"
  35641. },
  35642. {
  35643. name: "True",
  35644. height: math.unit(200, "feet"),
  35645. default: true,
  35646. form: "true-form"
  35647. },
  35648. {
  35649. name: "Normal",
  35650. height: math.unit(75, "feet"),
  35651. default: true,
  35652. form: "meowberus"
  35653. },
  35654. ],
  35655. {
  35656. "normal": {
  35657. name: "Normal",
  35658. default: true
  35659. },
  35660. "true-form": {
  35661. name: "True Form"
  35662. },
  35663. "meowberus": {
  35664. name: "Meowberus",
  35665. },
  35666. }
  35667. ))
  35668. characterMakers.push(() => makeCharacter(
  35669. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35670. {
  35671. front: {
  35672. height: math.unit(6 + 8/12, "feet"),
  35673. weight: math.unit(300, "lb"),
  35674. name: "Front",
  35675. image: {
  35676. source: "./media/characters/jrain/front.svg",
  35677. extra: 3039/2865,
  35678. bottom: 399/3438
  35679. }
  35680. },
  35681. back: {
  35682. height: math.unit(6 + 8/12, "feet"),
  35683. weight: math.unit(300, "lb"),
  35684. name: "Back",
  35685. image: {
  35686. source: "./media/characters/jrain/back.svg",
  35687. extra: 3089/2938,
  35688. bottom: 172/3261
  35689. }
  35690. },
  35691. head: {
  35692. height: math.unit(2.14, "feet"),
  35693. name: "Head",
  35694. image: {
  35695. source: "./media/characters/jrain/head.svg"
  35696. }
  35697. },
  35698. maw: {
  35699. height: math.unit(1.77, "feet"),
  35700. name: "Maw",
  35701. image: {
  35702. source: "./media/characters/jrain/maw.svg"
  35703. }
  35704. },
  35705. leftHand: {
  35706. height: math.unit(1.1, "feet"),
  35707. name: "Left Hand",
  35708. image: {
  35709. source: "./media/characters/jrain/left-hand.svg"
  35710. }
  35711. },
  35712. rightHand: {
  35713. height: math.unit(1.1, "feet"),
  35714. name: "Right Hand",
  35715. image: {
  35716. source: "./media/characters/jrain/right-hand.svg"
  35717. }
  35718. },
  35719. eye: {
  35720. height: math.unit(0.35, "feet"),
  35721. name: "Eye",
  35722. image: {
  35723. source: "./media/characters/jrain/eye.svg"
  35724. }
  35725. },
  35726. },
  35727. [
  35728. {
  35729. name: "Normal",
  35730. height: math.unit(6 + 8/12, "feet"),
  35731. default: true
  35732. },
  35733. {
  35734. name: "Casually Large",
  35735. height: math.unit(25, "feet")
  35736. },
  35737. {
  35738. name: "Giant",
  35739. height: math.unit(100, "feet")
  35740. },
  35741. {
  35742. name: "Kaiju",
  35743. height: math.unit(300, "feet")
  35744. },
  35745. ]
  35746. ))
  35747. characterMakers.push(() => makeCharacter(
  35748. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35749. {
  35750. dragon: {
  35751. height: math.unit(5, "meters"),
  35752. name: "Dragon",
  35753. image: {
  35754. source: "./media/characters/sabrina/dragon.svg",
  35755. extra: 3670 / 2365,
  35756. bottom: 333 / 4003
  35757. }
  35758. },
  35759. gryphon: {
  35760. height: math.unit(3, "meters"),
  35761. name: "Gryphon",
  35762. image: {
  35763. source: "./media/characters/sabrina/gryphon.svg",
  35764. extra: 1576 / 945,
  35765. bottom: 71 / 1647
  35766. }
  35767. },
  35768. snake: {
  35769. height: math.unit(12, "meters"),
  35770. name: "Snake",
  35771. image: {
  35772. source: "./media/characters/sabrina/snake.svg",
  35773. extra: 1758 / 1320,
  35774. bottom: 186 / 1944
  35775. }
  35776. },
  35777. collar: {
  35778. height: math.unit(1.86, "meters"),
  35779. name: "Collar",
  35780. image: {
  35781. source: "./media/characters/sabrina/collar.svg"
  35782. }
  35783. },
  35784. eye: {
  35785. height: math.unit(0.53, "meters"),
  35786. name: "Eye",
  35787. image: {
  35788. source: "./media/characters/sabrina/eye.svg"
  35789. }
  35790. },
  35791. foot: {
  35792. height: math.unit(1.86, "meters"),
  35793. name: "Foot",
  35794. image: {
  35795. source: "./media/characters/sabrina/foot.svg"
  35796. }
  35797. },
  35798. hand: {
  35799. height: math.unit(1.32, "meters"),
  35800. name: "Hand",
  35801. image: {
  35802. source: "./media/characters/sabrina/hand.svg"
  35803. }
  35804. },
  35805. head: {
  35806. height: math.unit(2.44, "meters"),
  35807. name: "Head",
  35808. image: {
  35809. source: "./media/characters/sabrina/head.svg"
  35810. }
  35811. },
  35812. headAngry: {
  35813. height: math.unit(2.44, "meters"),
  35814. name: "Head (Angry))",
  35815. image: {
  35816. source: "./media/characters/sabrina/head-angry.svg"
  35817. }
  35818. },
  35819. maw: {
  35820. height: math.unit(1.65, "meters"),
  35821. name: "Maw",
  35822. image: {
  35823. source: "./media/characters/sabrina/maw.svg"
  35824. }
  35825. },
  35826. spikes: {
  35827. height: math.unit(1.69, "meters"),
  35828. name: "Spikes",
  35829. image: {
  35830. source: "./media/characters/sabrina/spikes.svg"
  35831. }
  35832. },
  35833. stomach: {
  35834. height: math.unit(1.15, "meters"),
  35835. name: "Stomach",
  35836. image: {
  35837. source: "./media/characters/sabrina/stomach.svg"
  35838. }
  35839. },
  35840. tongue: {
  35841. height: math.unit(1.27, "meters"),
  35842. name: "Tongue",
  35843. image: {
  35844. source: "./media/characters/sabrina/tongue.svg"
  35845. }
  35846. },
  35847. wingDorsal: {
  35848. height: math.unit(4.85, "meters"),
  35849. name: "Wing (Dorsal)",
  35850. image: {
  35851. source: "./media/characters/sabrina/wing-dorsal.svg"
  35852. }
  35853. },
  35854. wingVentral: {
  35855. height: math.unit(4.85, "meters"),
  35856. name: "Wing (Ventral)",
  35857. image: {
  35858. source: "./media/characters/sabrina/wing-ventral.svg"
  35859. }
  35860. },
  35861. },
  35862. [
  35863. {
  35864. name: "Normal",
  35865. height: math.unit(5, "meters"),
  35866. default: true
  35867. },
  35868. ]
  35869. ))
  35870. characterMakers.push(() => makeCharacter(
  35871. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35872. {
  35873. frontMaid: {
  35874. height: math.unit(5 + 5/12, "feet"),
  35875. weight: math.unit(130, "lb"),
  35876. name: "Front (Maid)",
  35877. image: {
  35878. source: "./media/characters/midnight-tales/front-maid.svg",
  35879. extra: 489/454,
  35880. bottom: 61/550
  35881. }
  35882. },
  35883. frontFormal: {
  35884. height: math.unit(5 + 5/12, "feet"),
  35885. weight: math.unit(130, "lb"),
  35886. name: "Front (Formal)",
  35887. image: {
  35888. source: "./media/characters/midnight-tales/front-formal.svg",
  35889. extra: 489/454,
  35890. bottom: 61/550
  35891. }
  35892. },
  35893. back: {
  35894. height: math.unit(5 + 5/12, "feet"),
  35895. weight: math.unit(130, "lb"),
  35896. name: "Back",
  35897. image: {
  35898. source: "./media/characters/midnight-tales/back.svg",
  35899. extra: 498/456,
  35900. bottom: 33/531
  35901. }
  35902. },
  35903. frontBeast: {
  35904. height: math.unit(40, "feet"),
  35905. weight: math.unit(64000, "lb"),
  35906. name: "Front (Beast)",
  35907. image: {
  35908. source: "./media/characters/midnight-tales/front-beast.svg",
  35909. extra: 927/860,
  35910. bottom: 53/980
  35911. }
  35912. },
  35913. backBeast: {
  35914. height: math.unit(40, "feet"),
  35915. weight: math.unit(64000, "lb"),
  35916. name: "Back (Beast)",
  35917. image: {
  35918. source: "./media/characters/midnight-tales/back-beast.svg",
  35919. extra: 929/855,
  35920. bottom: 16/945
  35921. }
  35922. },
  35923. footBeast: {
  35924. height: math.unit(6.7, "feet"),
  35925. name: "Foot (Beast)",
  35926. image: {
  35927. source: "./media/characters/midnight-tales/foot-beast.svg"
  35928. }
  35929. },
  35930. headBeast: {
  35931. height: math.unit(8, "feet"),
  35932. name: "Head (Beast)",
  35933. image: {
  35934. source: "./media/characters/midnight-tales/head-beast.svg"
  35935. }
  35936. },
  35937. },
  35938. [
  35939. {
  35940. name: "Normal",
  35941. height: math.unit(5 + 5 / 12, "feet"),
  35942. default: true
  35943. },
  35944. {
  35945. name: "Macro",
  35946. height: math.unit(25, "feet")
  35947. },
  35948. ]
  35949. ))
  35950. characterMakers.push(() => makeCharacter(
  35951. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35952. {
  35953. front: {
  35954. height: math.unit(5 + 10/12, "feet"),
  35955. name: "Front",
  35956. image: {
  35957. source: "./media/characters/argon/front.svg",
  35958. extra: 2009/1935,
  35959. bottom: 118/2127
  35960. }
  35961. },
  35962. back: {
  35963. height: math.unit(5 + 10/12, "feet"),
  35964. name: "Back",
  35965. image: {
  35966. source: "./media/characters/argon/back.svg",
  35967. extra: 2047/1992,
  35968. bottom: 20/2067
  35969. }
  35970. },
  35971. frontDressed: {
  35972. height: math.unit(5 + 10/12, "feet"),
  35973. name: "Front (Dressed)",
  35974. image: {
  35975. source: "./media/characters/argon/front-dressed.svg",
  35976. extra: 2009/1935,
  35977. bottom: 118/2127
  35978. }
  35979. },
  35980. },
  35981. [
  35982. {
  35983. name: "Normal",
  35984. height: math.unit(5 + 10/12, "feet"),
  35985. default: true
  35986. },
  35987. ]
  35988. ))
  35989. characterMakers.push(() => makeCharacter(
  35990. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35991. {
  35992. front: {
  35993. height: math.unit(8 + 6/12, "feet"),
  35994. weight: math.unit(1150, "lb"),
  35995. name: "Front",
  35996. image: {
  35997. source: "./media/characters/kichi/front.svg",
  35998. extra: 1267/1164,
  35999. bottom: 61/1328
  36000. }
  36001. },
  36002. back: {
  36003. height: math.unit(8 + 6/12, "feet"),
  36004. weight: math.unit(1150, "lb"),
  36005. name: "Back",
  36006. image: {
  36007. source: "./media/characters/kichi/back.svg",
  36008. extra: 1273/1166,
  36009. bottom: 33/1306
  36010. }
  36011. },
  36012. },
  36013. [
  36014. {
  36015. name: "Normal",
  36016. height: math.unit(8 + 6/12, "feet"),
  36017. default: true
  36018. },
  36019. ]
  36020. ))
  36021. characterMakers.push(() => makeCharacter(
  36022. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36023. {
  36024. front: {
  36025. height: math.unit(6, "feet"),
  36026. weight: math.unit(210, "lb"),
  36027. name: "Front",
  36028. image: {
  36029. source: "./media/characters/manetel-greyscale/front.svg",
  36030. extra: 350/312,
  36031. bottom: 8/358
  36032. }
  36033. },
  36034. },
  36035. [
  36036. {
  36037. name: "Micro",
  36038. height: math.unit(2, "inches")
  36039. },
  36040. {
  36041. name: "Normal",
  36042. height: math.unit(6, "feet"),
  36043. default: true
  36044. },
  36045. {
  36046. name: "Minimacro",
  36047. height: math.unit(17, "feet")
  36048. },
  36049. {
  36050. name: "Macro",
  36051. height: math.unit(117, "feet")
  36052. },
  36053. ]
  36054. ))
  36055. characterMakers.push(() => makeCharacter(
  36056. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36057. {
  36058. side: {
  36059. height: math.unit(5 + 1/12, "feet"),
  36060. weight: math.unit(418, "lb"),
  36061. name: "Side",
  36062. image: {
  36063. source: "./media/characters/softpurr/side.svg",
  36064. extra: 1993/1945,
  36065. bottom: 134/2127
  36066. }
  36067. },
  36068. front: {
  36069. height: math.unit(5 + 1/12, "feet"),
  36070. weight: math.unit(418, "lb"),
  36071. name: "Front",
  36072. image: {
  36073. source: "./media/characters/softpurr/front.svg",
  36074. extra: 1950/1856,
  36075. bottom: 174/2124
  36076. }
  36077. },
  36078. paw: {
  36079. height: math.unit(1, "feet"),
  36080. name: "Paw",
  36081. image: {
  36082. source: "./media/characters/softpurr/paw.svg"
  36083. }
  36084. },
  36085. },
  36086. [
  36087. {
  36088. name: "Normal",
  36089. height: math.unit(5 + 1/12, "feet"),
  36090. default: true
  36091. },
  36092. ]
  36093. ))
  36094. characterMakers.push(() => makeCharacter(
  36095. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36096. {
  36097. front: {
  36098. height: math.unit(260, "meters"),
  36099. name: "Front",
  36100. image: {
  36101. source: "./media/characters/anahita/front.svg",
  36102. extra: 665/635,
  36103. bottom: 89/754
  36104. }
  36105. },
  36106. },
  36107. [
  36108. {
  36109. name: "Macro",
  36110. height: math.unit(260, "meters"),
  36111. default: true
  36112. },
  36113. ]
  36114. ))
  36115. characterMakers.push(() => makeCharacter(
  36116. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36117. {
  36118. front: {
  36119. height: math.unit(4 + 10/12, "feet"),
  36120. weight: math.unit(160, "lb"),
  36121. name: "Front",
  36122. image: {
  36123. source: "./media/characters/chip-mouse/front.svg",
  36124. extra: 3528/3408,
  36125. bottom: 0/3528
  36126. }
  36127. },
  36128. frontNsfw: {
  36129. height: math.unit(4 + 10/12, "feet"),
  36130. weight: math.unit(160, "lb"),
  36131. name: "Front (NSFW)",
  36132. image: {
  36133. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36134. extra: 3528/3408,
  36135. bottom: 0/3528
  36136. }
  36137. },
  36138. },
  36139. [
  36140. {
  36141. name: "Normal",
  36142. height: math.unit(4 + 10/12, "feet"),
  36143. default: true
  36144. },
  36145. ]
  36146. ))
  36147. characterMakers.push(() => makeCharacter(
  36148. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36149. {
  36150. side: {
  36151. height: math.unit(10, "feet"),
  36152. weight: math.unit(14000, "lb"),
  36153. name: "Side",
  36154. image: {
  36155. source: "./media/characters/kremm/side.svg",
  36156. extra: 1390/1053,
  36157. bottom: 90/1480
  36158. }
  36159. },
  36160. gut: {
  36161. height: math.unit(5.8, "feet"),
  36162. name: "Gut",
  36163. image: {
  36164. source: "./media/characters/kremm/gut.svg"
  36165. }
  36166. },
  36167. ass: {
  36168. height: math.unit(6.1, "feet"),
  36169. name: "Ass",
  36170. image: {
  36171. source: "./media/characters/kremm/ass.svg"
  36172. }
  36173. },
  36174. jaws: {
  36175. height: math.unit(2.2, "feet"),
  36176. name: "Jaws",
  36177. image: {
  36178. source: "./media/characters/kremm/jaws.svg"
  36179. }
  36180. },
  36181. dick: {
  36182. height: math.unit(4.26, "feet"),
  36183. name: "Dick",
  36184. image: {
  36185. source: "./media/characters/kremm/dick.svg"
  36186. }
  36187. },
  36188. },
  36189. [
  36190. {
  36191. name: "Normal",
  36192. height: math.unit(10, "feet"),
  36193. default: true
  36194. },
  36195. ]
  36196. ))
  36197. characterMakers.push(() => makeCharacter(
  36198. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36199. {
  36200. front: {
  36201. height: math.unit(30, "stories"),
  36202. name: "Front",
  36203. image: {
  36204. source: "./media/characters/kai/front.svg",
  36205. extra: 1892/1718,
  36206. bottom: 162/2054
  36207. }
  36208. },
  36209. },
  36210. [
  36211. {
  36212. name: "Macro",
  36213. height: math.unit(30, "stories"),
  36214. default: true
  36215. },
  36216. ]
  36217. ))
  36218. characterMakers.push(() => makeCharacter(
  36219. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36220. {
  36221. front: {
  36222. height: math.unit(6 + 4/12, "feet"),
  36223. weight: math.unit(145, "lb"),
  36224. name: "Front",
  36225. image: {
  36226. source: "./media/characters/sykes/front.svg",
  36227. extra: 1321 / 1187,
  36228. bottom: 66 / 1387
  36229. }
  36230. },
  36231. back: {
  36232. height: math.unit(6 + 4/12, "feet"),
  36233. weight: math.unit(145, "lb"),
  36234. name: "Back",
  36235. image: {
  36236. source: "./media/characters/sykes/back.svg",
  36237. extra: 1326/1181,
  36238. bottom: 31/1357
  36239. }
  36240. },
  36241. traditionalOutfit: {
  36242. height: math.unit(6 + 4/12, "feet"),
  36243. weight: math.unit(145, "lb"),
  36244. name: "Traditional Outfit",
  36245. image: {
  36246. source: "./media/characters/sykes/traditional-outfit.svg",
  36247. extra: 1321 / 1187,
  36248. bottom: 66 / 1387
  36249. }
  36250. },
  36251. adventureOutfit: {
  36252. height: math.unit(6 + 4/12, "feet"),
  36253. weight: math.unit(145, "lb"),
  36254. name: "Adventure Outfit",
  36255. image: {
  36256. source: "./media/characters/sykes/adventure-outfit.svg",
  36257. extra: 1321 / 1187,
  36258. bottom: 66 / 1387
  36259. }
  36260. },
  36261. handLeft: {
  36262. height: math.unit(0.9, "feet"),
  36263. name: "Hand (Left)",
  36264. image: {
  36265. source: "./media/characters/sykes/hand-left.svg"
  36266. }
  36267. },
  36268. handRight: {
  36269. height: math.unit(0.839, "feet"),
  36270. name: "Hand (Right)",
  36271. image: {
  36272. source: "./media/characters/sykes/hand-right.svg"
  36273. }
  36274. },
  36275. leftFoot: {
  36276. height: math.unit(1.2, "feet"),
  36277. name: "Foot (Left)",
  36278. image: {
  36279. source: "./media/characters/sykes/foot-left.svg"
  36280. }
  36281. },
  36282. rightFoot: {
  36283. height: math.unit(1.2, "feet"),
  36284. name: "Foot (Right)",
  36285. image: {
  36286. source: "./media/characters/sykes/foot-right.svg"
  36287. }
  36288. },
  36289. maw: {
  36290. height: math.unit(1.93, "feet"),
  36291. name: "Maw",
  36292. image: {
  36293. source: "./media/characters/sykes/maw.svg"
  36294. }
  36295. },
  36296. teeth: {
  36297. height: math.unit(0.51, "feet"),
  36298. name: "Teeth",
  36299. image: {
  36300. source: "./media/characters/sykes/teeth.svg"
  36301. }
  36302. },
  36303. tongue: {
  36304. height: math.unit(2.13, "feet"),
  36305. name: "Tongue",
  36306. image: {
  36307. source: "./media/characters/sykes/tongue.svg"
  36308. }
  36309. },
  36310. uvula: {
  36311. height: math.unit(0.16, "feet"),
  36312. name: "Uvula",
  36313. image: {
  36314. source: "./media/characters/sykes/uvula.svg"
  36315. }
  36316. },
  36317. collar: {
  36318. height: math.unit(0.287, "feet"),
  36319. name: "Collar",
  36320. image: {
  36321. source: "./media/characters/sykes/collar.svg"
  36322. }
  36323. },
  36324. tail: {
  36325. height: math.unit(3.8, "feet"),
  36326. name: "Tail",
  36327. image: {
  36328. source: "./media/characters/sykes/tail.svg"
  36329. }
  36330. },
  36331. },
  36332. [
  36333. {
  36334. name: "Shrunken",
  36335. height: math.unit(5, "inches")
  36336. },
  36337. {
  36338. name: "Normal",
  36339. height: math.unit(6 + 4 / 12, "feet"),
  36340. default: true
  36341. },
  36342. {
  36343. name: "Big",
  36344. height: math.unit(15, "feet")
  36345. },
  36346. ]
  36347. ))
  36348. characterMakers.push(() => makeCharacter(
  36349. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36350. {
  36351. front: {
  36352. height: math.unit(5 + 8/12, "feet"),
  36353. weight: math.unit(190, "lb"),
  36354. name: "Front",
  36355. image: {
  36356. source: "./media/characters/oven-otter/front.svg",
  36357. extra: 1809/1740,
  36358. bottom: 181/1990
  36359. }
  36360. },
  36361. back: {
  36362. height: math.unit(5 + 8/12, "feet"),
  36363. weight: math.unit(190, "lb"),
  36364. name: "Back",
  36365. image: {
  36366. source: "./media/characters/oven-otter/back.svg",
  36367. extra: 1709/1635,
  36368. bottom: 118/1827
  36369. }
  36370. },
  36371. hand: {
  36372. height: math.unit(1.07, "feet"),
  36373. name: "Hand",
  36374. image: {
  36375. source: "./media/characters/oven-otter/hand.svg"
  36376. }
  36377. },
  36378. beans: {
  36379. height: math.unit(1.74, "feet"),
  36380. name: "Beans",
  36381. image: {
  36382. source: "./media/characters/oven-otter/beans.svg"
  36383. }
  36384. },
  36385. },
  36386. [
  36387. {
  36388. name: "Micro",
  36389. height: math.unit(0.5, "inches")
  36390. },
  36391. {
  36392. name: "Normal",
  36393. height: math.unit(5 + 8/12, "feet"),
  36394. default: true
  36395. },
  36396. {
  36397. name: "Macro",
  36398. height: math.unit(250, "feet")
  36399. },
  36400. {
  36401. name: "Really High",
  36402. height: math.unit(420, "feet")
  36403. },
  36404. ]
  36405. ))
  36406. characterMakers.push(() => makeCharacter(
  36407. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36408. {
  36409. front: {
  36410. height: math.unit(5, "meters"),
  36411. weight: math.unit(292000000000000, "kg"),
  36412. name: "Front",
  36413. image: {
  36414. source: "./media/characters/devourer/front.svg",
  36415. extra: 1800/1733,
  36416. bottom: 211/2011
  36417. }
  36418. },
  36419. maw: {
  36420. height: math.unit(1.1, "meter"),
  36421. name: "Maw",
  36422. image: {
  36423. source: "./media/characters/devourer/maw.svg"
  36424. }
  36425. },
  36426. },
  36427. [
  36428. {
  36429. name: "Small",
  36430. height: math.unit(3, "meters")
  36431. },
  36432. {
  36433. name: "Large",
  36434. height: math.unit(5, "meters"),
  36435. default: true
  36436. },
  36437. ]
  36438. ))
  36439. characterMakers.push(() => makeCharacter(
  36440. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36441. {
  36442. front: {
  36443. height: math.unit(6, "feet"),
  36444. weight: math.unit(400, "lb"),
  36445. name: "Front",
  36446. image: {
  36447. source: "./media/characters/ellarby/front.svg",
  36448. extra: 1909/1763,
  36449. bottom: 80/1989
  36450. }
  36451. },
  36452. back: {
  36453. height: math.unit(6, "feet"),
  36454. weight: math.unit(400, "lb"),
  36455. name: "Back",
  36456. image: {
  36457. source: "./media/characters/ellarby/back.svg",
  36458. extra: 1914/1784,
  36459. bottom: 172/2086
  36460. }
  36461. },
  36462. },
  36463. [
  36464. {
  36465. name: "Mischief",
  36466. height: math.unit(18, "inches")
  36467. },
  36468. {
  36469. name: "Trouble",
  36470. height: math.unit(12, "feet")
  36471. },
  36472. {
  36473. name: "Havoc",
  36474. height: math.unit(200, "feet"),
  36475. default: true
  36476. },
  36477. {
  36478. name: "Pandemonium",
  36479. height: math.unit(1, "mile")
  36480. },
  36481. {
  36482. name: "Catastrophe",
  36483. height: math.unit(100, "miles")
  36484. },
  36485. ]
  36486. ))
  36487. characterMakers.push(() => makeCharacter(
  36488. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36489. {
  36490. front: {
  36491. height: math.unit(4.7, "meters"),
  36492. weight: math.unit(6500, "kg"),
  36493. name: "Front",
  36494. image: {
  36495. source: "./media/characters/vex/front.svg",
  36496. extra: 1288/1140,
  36497. bottom: 100/1388
  36498. }
  36499. },
  36500. },
  36501. [
  36502. {
  36503. name: "Normal",
  36504. height: math.unit(4.7, "meters"),
  36505. default: true
  36506. },
  36507. ]
  36508. ))
  36509. characterMakers.push(() => makeCharacter(
  36510. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36511. {
  36512. normal: {
  36513. height: math.unit(6, "feet"),
  36514. weight: math.unit(350, "lb"),
  36515. name: "Normal",
  36516. image: {
  36517. source: "./media/characters/teshy/normal.svg",
  36518. extra: 1795/1735,
  36519. bottom: 16/1811
  36520. }
  36521. },
  36522. monsterFront: {
  36523. height: math.unit(12, "feet"),
  36524. weight: math.unit(4700, "lb"),
  36525. name: "Monster (Front)",
  36526. image: {
  36527. source: "./media/characters/teshy/monster-front.svg",
  36528. extra: 2042/2034,
  36529. bottom: 128/2170
  36530. }
  36531. },
  36532. monsterSide: {
  36533. height: math.unit(12, "feet"),
  36534. weight: math.unit(4700, "lb"),
  36535. name: "Monster (Side)",
  36536. image: {
  36537. source: "./media/characters/teshy/monster-side.svg",
  36538. extra: 2067/2056,
  36539. bottom: 70/2137
  36540. }
  36541. },
  36542. monsterBack: {
  36543. height: math.unit(12, "feet"),
  36544. weight: math.unit(4700, "lb"),
  36545. name: "Monster (Back)",
  36546. image: {
  36547. source: "./media/characters/teshy/monster-back.svg",
  36548. extra: 1921/1914,
  36549. bottom: 171/2092
  36550. }
  36551. },
  36552. },
  36553. [
  36554. {
  36555. name: "Normal",
  36556. height: math.unit(6, "feet"),
  36557. default: true
  36558. },
  36559. ]
  36560. ))
  36561. characterMakers.push(() => makeCharacter(
  36562. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36563. {
  36564. front: {
  36565. height: math.unit(6, "feet"),
  36566. name: "Front",
  36567. image: {
  36568. source: "./media/characters/ramey/front.svg",
  36569. extra: 790/787,
  36570. bottom: 27/817
  36571. }
  36572. },
  36573. },
  36574. [
  36575. {
  36576. name: "Normal",
  36577. height: math.unit(6, "feet"),
  36578. default: true
  36579. },
  36580. ]
  36581. ))
  36582. characterMakers.push(() => makeCharacter(
  36583. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36584. {
  36585. front: {
  36586. height: math.unit(5 + 5/12, "feet"),
  36587. weight: math.unit(120, "lb"),
  36588. name: "Front",
  36589. image: {
  36590. source: "./media/characters/phirae/front.svg",
  36591. extra: 2491/2436,
  36592. bottom: 38/2529
  36593. }
  36594. },
  36595. },
  36596. [
  36597. {
  36598. name: "Normal",
  36599. height: math.unit(5 + 5/12, "feet"),
  36600. default: true
  36601. },
  36602. ]
  36603. ))
  36604. characterMakers.push(() => makeCharacter(
  36605. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36606. {
  36607. front: {
  36608. height: math.unit(5 + 3/12, "feet"),
  36609. name: "Front",
  36610. image: {
  36611. source: "./media/characters/stagglas/front.svg",
  36612. extra: 962/882,
  36613. bottom: 53/1015
  36614. }
  36615. },
  36616. feral: {
  36617. height: math.unit(335, "cm"),
  36618. name: "Feral",
  36619. image: {
  36620. source: "./media/characters/stagglas/feral.svg",
  36621. extra: 1732/1090,
  36622. bottom: 48/1780
  36623. }
  36624. },
  36625. },
  36626. [
  36627. {
  36628. name: "Normal",
  36629. height: math.unit(5 + 3/12, "feet"),
  36630. default: true
  36631. },
  36632. ]
  36633. ))
  36634. characterMakers.push(() => makeCharacter(
  36635. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36636. {
  36637. front: {
  36638. height: math.unit(5 + 4/12, "feet"),
  36639. weight: math.unit(145, "lb"),
  36640. name: "Front",
  36641. image: {
  36642. source: "./media/characters/starra/front.svg",
  36643. extra: 1790/1691,
  36644. bottom: 91/1881
  36645. }
  36646. },
  36647. },
  36648. [
  36649. {
  36650. name: "Normal",
  36651. height: math.unit(5 + 4/12, "feet"),
  36652. default: true
  36653. },
  36654. ]
  36655. ))
  36656. characterMakers.push(() => makeCharacter(
  36657. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36658. {
  36659. front: {
  36660. height: math.unit(2.2, "meters"),
  36661. name: "Front",
  36662. image: {
  36663. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36664. extra: 1248/972,
  36665. bottom: 38/1286
  36666. }
  36667. },
  36668. },
  36669. [
  36670. {
  36671. name: "Normal",
  36672. height: math.unit(2.2, "meters"),
  36673. default: true
  36674. },
  36675. ]
  36676. ))
  36677. characterMakers.push(() => makeCharacter(
  36678. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36679. {
  36680. side: {
  36681. height: math.unit(8 + 2/12, "feet"),
  36682. weight: math.unit(1240, "lb"),
  36683. name: "Side",
  36684. image: {
  36685. source: "./media/characters/mika-valentine/side.svg",
  36686. extra: 2670/2501,
  36687. bottom: 250/2920
  36688. }
  36689. },
  36690. },
  36691. [
  36692. {
  36693. name: "Normal",
  36694. height: math.unit(8 + 2/12, "feet"),
  36695. default: true
  36696. },
  36697. ]
  36698. ))
  36699. characterMakers.push(() => makeCharacter(
  36700. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36701. {
  36702. front: {
  36703. height: math.unit(7 + 2/12, "feet"),
  36704. name: "Front",
  36705. image: {
  36706. source: "./media/characters/xoltol/front.svg",
  36707. extra: 2212/2124,
  36708. bottom: 84/2296
  36709. }
  36710. },
  36711. side: {
  36712. height: math.unit(7 + 2/12, "feet"),
  36713. name: "Side",
  36714. image: {
  36715. source: "./media/characters/xoltol/side.svg",
  36716. extra: 2273/2197,
  36717. bottom: 26/2299
  36718. }
  36719. },
  36720. hand: {
  36721. height: math.unit(2.5, "feet"),
  36722. name: "Hand",
  36723. image: {
  36724. source: "./media/characters/xoltol/hand.svg"
  36725. }
  36726. },
  36727. },
  36728. [
  36729. {
  36730. name: "Small-ish",
  36731. height: math.unit(5 + 11/12, "feet")
  36732. },
  36733. {
  36734. name: "Normal",
  36735. height: math.unit(7 + 2/12, "feet")
  36736. },
  36737. {
  36738. name: "\"Macro\"",
  36739. height: math.unit(14 + 9/12, "feet"),
  36740. default: true
  36741. },
  36742. {
  36743. name: "Alternate Height",
  36744. height: math.unit(20, "feet")
  36745. },
  36746. {
  36747. name: "Actually Macro",
  36748. height: math.unit(100, "feet")
  36749. },
  36750. ]
  36751. ))
  36752. characterMakers.push(() => makeCharacter(
  36753. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36754. {
  36755. front: {
  36756. height: math.unit(5 + 2/12, "feet"),
  36757. name: "Front",
  36758. image: {
  36759. source: "./media/characters/kotetsu-redwood/front.svg",
  36760. extra: 1053/942,
  36761. bottom: 60/1113
  36762. }
  36763. },
  36764. },
  36765. [
  36766. {
  36767. name: "Normal",
  36768. height: math.unit(5 + 2/12, "feet"),
  36769. default: true
  36770. },
  36771. ]
  36772. ))
  36773. characterMakers.push(() => makeCharacter(
  36774. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36775. {
  36776. front: {
  36777. height: math.unit(2.4, "meters"),
  36778. weight: math.unit(125, "kg"),
  36779. name: "Front",
  36780. image: {
  36781. source: "./media/characters/lilith/front.svg",
  36782. extra: 1590/1513,
  36783. bottom: 203/1793
  36784. }
  36785. },
  36786. },
  36787. [
  36788. {
  36789. name: "Humanoid",
  36790. height: math.unit(2.4, "meters")
  36791. },
  36792. {
  36793. name: "Normal",
  36794. height: math.unit(6, "meters"),
  36795. default: true
  36796. },
  36797. {
  36798. name: "Largest",
  36799. height: math.unit(55, "meters")
  36800. },
  36801. ]
  36802. ))
  36803. characterMakers.push(() => makeCharacter(
  36804. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36805. {
  36806. front: {
  36807. height: math.unit(8 + 4/12, "feet"),
  36808. weight: math.unit(535, "lb"),
  36809. name: "Front",
  36810. image: {
  36811. source: "./media/characters/beh'kah-bolger/front.svg",
  36812. extra: 1660/1603,
  36813. bottom: 37/1697
  36814. }
  36815. },
  36816. },
  36817. [
  36818. {
  36819. name: "Normal",
  36820. height: math.unit(8 + 4/12, "feet"),
  36821. default: true
  36822. },
  36823. {
  36824. name: "Kaiju",
  36825. height: math.unit(250, "feet")
  36826. },
  36827. {
  36828. name: "Still Growing",
  36829. height: math.unit(10, "miles")
  36830. },
  36831. {
  36832. name: "Continental",
  36833. height: math.unit(5000, "miles")
  36834. },
  36835. {
  36836. name: "Final Form",
  36837. height: math.unit(2500000, "miles")
  36838. },
  36839. ]
  36840. ))
  36841. characterMakers.push(() => makeCharacter(
  36842. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36843. {
  36844. front: {
  36845. height: math.unit(7 + 2/12, "feet"),
  36846. weight: math.unit(230, "kg"),
  36847. name: "Front",
  36848. image: {
  36849. source: "./media/characters/tatyana-milewska/front.svg",
  36850. extra: 1199/1150,
  36851. bottom: 86/1285
  36852. }
  36853. },
  36854. },
  36855. [
  36856. {
  36857. name: "Normal",
  36858. height: math.unit(7 + 2/12, "feet"),
  36859. default: true
  36860. },
  36861. {
  36862. name: "Big",
  36863. height: math.unit(12, "feet")
  36864. },
  36865. {
  36866. name: "Minimacro",
  36867. height: math.unit(20, "feet")
  36868. },
  36869. {
  36870. name: "Macro",
  36871. height: math.unit(120, "feet")
  36872. },
  36873. ]
  36874. ))
  36875. characterMakers.push(() => makeCharacter(
  36876. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36877. {
  36878. front: {
  36879. height: math.unit(7 + 8/12, "feet"),
  36880. weight: math.unit(152, "kg"),
  36881. name: "Front",
  36882. image: {
  36883. source: "./media/characters/helen-arri/front.svg",
  36884. extra: 440/423,
  36885. bottom: 14/454
  36886. }
  36887. },
  36888. back: {
  36889. height: math.unit(7 + 8/12, "feet"),
  36890. weight: math.unit(152, "kg"),
  36891. name: "Back",
  36892. image: {
  36893. source: "./media/characters/helen-arri/back.svg",
  36894. extra: 443/426,
  36895. bottom: 8/451
  36896. }
  36897. },
  36898. },
  36899. [
  36900. {
  36901. name: "Normal",
  36902. height: math.unit(7 + 8/12, "feet"),
  36903. default: true
  36904. },
  36905. {
  36906. name: "Big",
  36907. height: math.unit(14, "feet")
  36908. },
  36909. {
  36910. name: "Minimacro",
  36911. height: math.unit(24, "feet")
  36912. },
  36913. {
  36914. name: "Macro",
  36915. height: math.unit(140, "feet")
  36916. },
  36917. ]
  36918. ))
  36919. characterMakers.push(() => makeCharacter(
  36920. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36921. {
  36922. front: {
  36923. height: math.unit(6, "meters"),
  36924. name: "Front",
  36925. image: {
  36926. source: "./media/characters/ehanu-rehu/front.svg",
  36927. extra: 1800/1800,
  36928. bottom: 59/1859
  36929. }
  36930. },
  36931. },
  36932. [
  36933. {
  36934. name: "Normal",
  36935. height: math.unit(6, "meters"),
  36936. default: true
  36937. },
  36938. ]
  36939. ))
  36940. characterMakers.push(() => makeCharacter(
  36941. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36942. {
  36943. front: {
  36944. height: math.unit(7 + 3/12, "feet"),
  36945. name: "Front",
  36946. image: {
  36947. source: "./media/characters/renholder/front.svg",
  36948. extra: 3096/2960,
  36949. bottom: 250/3346
  36950. }
  36951. },
  36952. },
  36953. [
  36954. {
  36955. name: "Normal Bat",
  36956. height: math.unit(7 + 3/12, "feet"),
  36957. default: true
  36958. },
  36959. {
  36960. name: "Slightly Tall Bat",
  36961. height: math.unit(100, "feet")
  36962. },
  36963. {
  36964. name: "Big Bat",
  36965. height: math.unit(1000, "feet")
  36966. },
  36967. {
  36968. name: "City-Sized Bat",
  36969. height: math.unit(200000, "feet")
  36970. },
  36971. {
  36972. name: "Bigger Bat",
  36973. height: math.unit(10000, "miles")
  36974. },
  36975. {
  36976. name: "Solar Sized Bat",
  36977. height: math.unit(100, "AU")
  36978. },
  36979. {
  36980. name: "Galactic Bat",
  36981. height: math.unit(200000, "lightyears")
  36982. },
  36983. {
  36984. name: "Universally Known Bat",
  36985. height: math.unit(1, "universe")
  36986. },
  36987. ]
  36988. ))
  36989. characterMakers.push(() => makeCharacter(
  36990. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36991. {
  36992. front: {
  36993. height: math.unit(6 + 11/12, "feet"),
  36994. weight: math.unit(250, "lb"),
  36995. name: "Front",
  36996. image: {
  36997. source: "./media/characters/cookiecat/front.svg",
  36998. extra: 893/827,
  36999. bottom: 14/907
  37000. }
  37001. },
  37002. },
  37003. [
  37004. {
  37005. name: "Micro",
  37006. height: math.unit(3, "inches")
  37007. },
  37008. {
  37009. name: "Normal",
  37010. height: math.unit(6 + 11/12, "feet"),
  37011. default: true
  37012. },
  37013. {
  37014. name: "Macro",
  37015. height: math.unit(100, "feet")
  37016. },
  37017. {
  37018. name: "Macro+",
  37019. height: math.unit(404, "feet")
  37020. },
  37021. {
  37022. name: "Megamacro",
  37023. height: math.unit(165, "miles")
  37024. },
  37025. {
  37026. name: "Planetary",
  37027. height: math.unit(4600, "miles")
  37028. },
  37029. ]
  37030. ))
  37031. characterMakers.push(() => makeCharacter(
  37032. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37033. {
  37034. front: {
  37035. height: math.unit(10 + 3/12, "feet"),
  37036. weight: math.unit(1500, "lb"),
  37037. name: "Front",
  37038. image: {
  37039. source: "./media/characters/tux-kusanagi/front.svg",
  37040. extra: 944/840,
  37041. bottom: 39/983
  37042. }
  37043. },
  37044. back: {
  37045. height: math.unit(10 + 3/12, "feet"),
  37046. weight: math.unit(1500, "lb"),
  37047. name: "Back",
  37048. image: {
  37049. source: "./media/characters/tux-kusanagi/back.svg",
  37050. extra: 941/842,
  37051. bottom: 28/969
  37052. }
  37053. },
  37054. rump: {
  37055. height: math.unit(5.25, "feet"),
  37056. name: "Rump",
  37057. image: {
  37058. source: "./media/characters/tux-kusanagi/rump.svg"
  37059. }
  37060. },
  37061. beak: {
  37062. height: math.unit(1.54, "feet"),
  37063. name: "Beak",
  37064. image: {
  37065. source: "./media/characters/tux-kusanagi/beak.svg"
  37066. }
  37067. },
  37068. },
  37069. [
  37070. {
  37071. name: "Normal",
  37072. height: math.unit(10 + 3/12, "feet"),
  37073. default: true
  37074. },
  37075. ]
  37076. ))
  37077. characterMakers.push(() => makeCharacter(
  37078. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37079. {
  37080. front: {
  37081. height: math.unit(58, "feet"),
  37082. weight: math.unit(200, "tons"),
  37083. name: "Front",
  37084. image: {
  37085. source: "./media/characters/uzarmazari/front.svg",
  37086. extra: 1575/1455,
  37087. bottom: 152/1727
  37088. }
  37089. },
  37090. back: {
  37091. height: math.unit(58, "feet"),
  37092. weight: math.unit(200, "tons"),
  37093. name: "Back",
  37094. image: {
  37095. source: "./media/characters/uzarmazari/back.svg",
  37096. extra: 1585/1510,
  37097. bottom: 157/1742
  37098. }
  37099. },
  37100. head: {
  37101. height: math.unit(26, "feet"),
  37102. name: "Head",
  37103. image: {
  37104. source: "./media/characters/uzarmazari/head.svg"
  37105. }
  37106. },
  37107. },
  37108. [
  37109. {
  37110. name: "Normal",
  37111. height: math.unit(58, "feet"),
  37112. default: true
  37113. },
  37114. ]
  37115. ))
  37116. characterMakers.push(() => makeCharacter(
  37117. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37118. {
  37119. side: {
  37120. height: math.unit(15, "feet"),
  37121. name: "Side",
  37122. image: {
  37123. source: "./media/characters/akitu/side.svg",
  37124. extra: 1421/1321,
  37125. bottom: 157/1578
  37126. }
  37127. },
  37128. front: {
  37129. height: math.unit(15, "feet"),
  37130. name: "Front",
  37131. image: {
  37132. source: "./media/characters/akitu/front.svg",
  37133. extra: 1435/1326,
  37134. bottom: 232/1667
  37135. }
  37136. },
  37137. },
  37138. [
  37139. {
  37140. name: "Normal",
  37141. height: math.unit(15, "feet"),
  37142. default: true
  37143. },
  37144. ]
  37145. ))
  37146. characterMakers.push(() => makeCharacter(
  37147. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37148. {
  37149. front: {
  37150. height: math.unit(10 + 8/12, "feet"),
  37151. name: "Front",
  37152. image: {
  37153. source: "./media/characters/azalie-croixland/front.svg",
  37154. extra: 1972/1856,
  37155. bottom: 31/2003
  37156. }
  37157. },
  37158. },
  37159. [
  37160. {
  37161. name: "Original Height",
  37162. height: math.unit(5 + 4/12, "feet")
  37163. },
  37164. {
  37165. name: "Normal Height",
  37166. height: math.unit(10 + 8/12, "feet"),
  37167. default: true
  37168. },
  37169. ]
  37170. ))
  37171. characterMakers.push(() => makeCharacter(
  37172. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37173. {
  37174. side: {
  37175. height: math.unit(7 + 1/12, "feet"),
  37176. weight: math.unit(245, "lb"),
  37177. name: "Side",
  37178. image: {
  37179. source: "./media/characters/kavus-kazian/side.svg",
  37180. extra: 349/342,
  37181. bottom: 15/364
  37182. }
  37183. },
  37184. },
  37185. [
  37186. {
  37187. name: "Normal",
  37188. height: math.unit(7 + 1/12, "feet"),
  37189. default: true
  37190. },
  37191. ]
  37192. ))
  37193. characterMakers.push(() => makeCharacter(
  37194. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37195. {
  37196. normalFront: {
  37197. height: math.unit(5 + 11/12, "feet"),
  37198. name: "Front",
  37199. image: {
  37200. source: "./media/characters/moonlight-rose/normal-front.svg",
  37201. extra: 1980/1825,
  37202. bottom: 18/1998
  37203. },
  37204. form: "normal",
  37205. default: true
  37206. },
  37207. normalBack: {
  37208. height: math.unit(5 + 11/12, "feet"),
  37209. name: "Back",
  37210. image: {
  37211. source: "./media/characters/moonlight-rose/normal-back.svg",
  37212. extra: 2010/1839,
  37213. bottom: 10/2020
  37214. },
  37215. form: "normal"
  37216. },
  37217. demonFront: {
  37218. height: math.unit(1.5, "earths"),
  37219. name: "Front",
  37220. image: {
  37221. source: "./media/characters/moonlight-rose/demon.svg",
  37222. extra: 1400/1294,
  37223. bottom: 45/1445
  37224. },
  37225. form: "demon",
  37226. default: true
  37227. },
  37228. terraFront: {
  37229. height: math.unit(1.5, "earths"),
  37230. name: "Front",
  37231. image: {
  37232. source: "./media/characters/moonlight-rose/terra.svg"
  37233. },
  37234. form: "terra",
  37235. default: true
  37236. },
  37237. jupiterFront: {
  37238. height: math.unit(69911*2, "km"),
  37239. name: "Front",
  37240. image: {
  37241. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37242. extra: 1367/1286,
  37243. bottom: 55/1422
  37244. },
  37245. form: "jupiter",
  37246. default: true
  37247. },
  37248. neptuneFront: {
  37249. height: math.unit(24622*2, "feet"),
  37250. name: "Front",
  37251. image: {
  37252. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37253. extra: 1851/1712,
  37254. bottom: 0/1851
  37255. },
  37256. form: "neptune",
  37257. default: true
  37258. },
  37259. },
  37260. [
  37261. {
  37262. name: "\"Natural\" Height",
  37263. height: math.unit(5 + 11/12, "feet"),
  37264. form: "normal"
  37265. },
  37266. {
  37267. name: "Smallest comfortable size",
  37268. height: math.unit(40, "meters"),
  37269. form: "normal"
  37270. },
  37271. {
  37272. name: "Common size",
  37273. height: math.unit(50, "km"),
  37274. form: "normal",
  37275. default: true
  37276. },
  37277. {
  37278. name: "Normal",
  37279. height: math.unit(1.5, "earths"),
  37280. form: "demon",
  37281. default: true
  37282. },
  37283. {
  37284. name: "Universal",
  37285. height: math.unit(15, "universes"),
  37286. form: "demon"
  37287. },
  37288. {
  37289. name: "Earth",
  37290. height: math.unit(1.5, "earths"),
  37291. form: "terra",
  37292. default: true
  37293. },
  37294. {
  37295. name: "Super Earth",
  37296. height: math.unit(67.5, "earths"),
  37297. form: "terra"
  37298. },
  37299. {
  37300. name: "Doesn't fit in a solar system...",
  37301. height: math.unit(1, "galaxy"),
  37302. form: "terra"
  37303. },
  37304. {
  37305. name: "Saturn",
  37306. height: math.unit(58232*2, "km"),
  37307. form: "jupiter"
  37308. },
  37309. {
  37310. name: "Jupiter",
  37311. height: math.unit(69911*2, "km"),
  37312. form: "jupiter",
  37313. default: true
  37314. },
  37315. {
  37316. name: "HD 100546 b",
  37317. height: math.unit(482938, "km"),
  37318. form: "jupiter"
  37319. },
  37320. {
  37321. name: "Enceladus",
  37322. height: math.unit(513*2, "km"),
  37323. form: "neptune"
  37324. },
  37325. {
  37326. name: "Europe",
  37327. height: math.unit(1560*2, "km"),
  37328. form: "neptune"
  37329. },
  37330. {
  37331. name: "Neptune",
  37332. height: math.unit(24622*2, "km"),
  37333. form: "neptune",
  37334. default: true
  37335. },
  37336. {
  37337. name: "CoRoT-9b",
  37338. height: math.unit(75067*2, "km"),
  37339. form: "neptune"
  37340. },
  37341. ],
  37342. {
  37343. "normal": {
  37344. name: "Normal",
  37345. default: true
  37346. },
  37347. "demon": {
  37348. name: "Demon"
  37349. },
  37350. "terra": {
  37351. name: "Terra"
  37352. },
  37353. "jupiter": {
  37354. name: "Jupiter"
  37355. },
  37356. "neptune": {
  37357. name: "Neptune"
  37358. }
  37359. }
  37360. ))
  37361. characterMakers.push(() => makeCharacter(
  37362. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37363. {
  37364. front: {
  37365. height: math.unit(16, "feet"),
  37366. weight: math.unit(610, "kg"),
  37367. name: "Front",
  37368. image: {
  37369. source: "./media/characters/huckle/front.svg",
  37370. extra: 1731/1625,
  37371. bottom: 33/1764
  37372. }
  37373. },
  37374. back: {
  37375. height: math.unit(16, "feet"),
  37376. weight: math.unit(610, "kg"),
  37377. name: "Back",
  37378. image: {
  37379. source: "./media/characters/huckle/back.svg",
  37380. extra: 1738/1651,
  37381. bottom: 37/1775
  37382. }
  37383. },
  37384. laughing: {
  37385. height: math.unit(3.75, "feet"),
  37386. name: "Laughing",
  37387. image: {
  37388. source: "./media/characters/huckle/laughing.svg"
  37389. }
  37390. },
  37391. angry: {
  37392. height: math.unit(4.15, "feet"),
  37393. name: "Angry",
  37394. image: {
  37395. source: "./media/characters/huckle/angry.svg"
  37396. }
  37397. },
  37398. },
  37399. [
  37400. {
  37401. name: "Normal",
  37402. height: math.unit(16, "feet"),
  37403. default: true
  37404. },
  37405. {
  37406. name: "Mini Macro",
  37407. height: math.unit(463, "feet")
  37408. },
  37409. {
  37410. name: "Macro",
  37411. height: math.unit(1680, "meters")
  37412. },
  37413. {
  37414. name: "Mega Macro",
  37415. height: math.unit(175, "km")
  37416. },
  37417. {
  37418. name: "Terra Macro",
  37419. height: math.unit(32, "gigameters")
  37420. },
  37421. {
  37422. name: "Multiverse+",
  37423. height: math.unit(2.56e23, "yottameters")
  37424. },
  37425. ]
  37426. ))
  37427. characterMakers.push(() => makeCharacter(
  37428. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37429. {
  37430. front: {
  37431. height: math.unit(6 + 9/12, "feet"),
  37432. weight: math.unit(280, "lb"),
  37433. name: "Front",
  37434. image: {
  37435. source: "./media/characters/candy/front.svg",
  37436. extra: 234/217,
  37437. bottom: 11/245
  37438. }
  37439. },
  37440. },
  37441. [
  37442. {
  37443. name: "Really Small",
  37444. height: math.unit(0.1, "nm")
  37445. },
  37446. {
  37447. name: "Micro",
  37448. height: math.unit(2, "inches")
  37449. },
  37450. {
  37451. name: "Normal",
  37452. height: math.unit(6 + 9/12, "feet"),
  37453. default: true
  37454. },
  37455. {
  37456. name: "Small Macro",
  37457. height: math.unit(69, "feet")
  37458. },
  37459. {
  37460. name: "Macro",
  37461. height: math.unit(160, "feet")
  37462. },
  37463. {
  37464. name: "Megamacro",
  37465. height: math.unit(22000, "miles")
  37466. },
  37467. {
  37468. name: "Gigamacro",
  37469. height: math.unit(50000, "miles")
  37470. },
  37471. ]
  37472. ))
  37473. characterMakers.push(() => makeCharacter(
  37474. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37475. {
  37476. front: {
  37477. height: math.unit(4, "feet"),
  37478. weight: math.unit(90, "lb"),
  37479. name: "Front",
  37480. image: {
  37481. source: "./media/characters/joey-mcdonald/front.svg",
  37482. extra: 1059/852,
  37483. bottom: 33/1092
  37484. }
  37485. },
  37486. back: {
  37487. height: math.unit(4, "feet"),
  37488. weight: math.unit(90, "lb"),
  37489. name: "Back",
  37490. image: {
  37491. source: "./media/characters/joey-mcdonald/back.svg",
  37492. extra: 1077/879,
  37493. bottom: 5/1082
  37494. }
  37495. },
  37496. frontKobold: {
  37497. height: math.unit(4, "feet"),
  37498. weight: math.unit(100, "lb"),
  37499. name: "Front-kobold",
  37500. image: {
  37501. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37502. extra: 1480/1367,
  37503. bottom: 0/1480
  37504. }
  37505. },
  37506. backKobold: {
  37507. height: math.unit(4, "feet"),
  37508. weight: math.unit(100, "lb"),
  37509. name: "Back-kobold",
  37510. image: {
  37511. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37512. extra: 1449/1361,
  37513. bottom: 0/1449
  37514. }
  37515. },
  37516. },
  37517. [
  37518. {
  37519. name: "Normal",
  37520. height: math.unit(4, "feet"),
  37521. default: true
  37522. },
  37523. ]
  37524. ))
  37525. characterMakers.push(() => makeCharacter(
  37526. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37527. {
  37528. front: {
  37529. height: math.unit(12 + 6/12, "feet"),
  37530. name: "Front",
  37531. image: {
  37532. source: "./media/characters/kass-lockheed/front.svg",
  37533. extra: 354/343,
  37534. bottom: 9/363
  37535. }
  37536. },
  37537. back: {
  37538. height: math.unit(12 + 6/12, "feet"),
  37539. name: "Back",
  37540. image: {
  37541. source: "./media/characters/kass-lockheed/back.svg",
  37542. extra: 364/352,
  37543. bottom: 3/367
  37544. }
  37545. },
  37546. dick: {
  37547. height: math.unit(3.12, "feet"),
  37548. name: "Dick",
  37549. image: {
  37550. source: "./media/characters/kass-lockheed/dick.svg"
  37551. }
  37552. },
  37553. head: {
  37554. height: math.unit(2.6, "feet"),
  37555. name: "Head",
  37556. image: {
  37557. source: "./media/characters/kass-lockheed/head.svg"
  37558. }
  37559. },
  37560. bleh: {
  37561. height: math.unit(2.85, "feet"),
  37562. name: "Bleh",
  37563. image: {
  37564. source: "./media/characters/kass-lockheed/bleh.svg"
  37565. }
  37566. },
  37567. smug: {
  37568. height: math.unit(2.85, "feet"),
  37569. name: "Smug",
  37570. image: {
  37571. source: "./media/characters/kass-lockheed/smug.svg"
  37572. }
  37573. },
  37574. },
  37575. [
  37576. {
  37577. name: "Normal",
  37578. height: math.unit(12 + 6/12, "feet"),
  37579. default: true
  37580. },
  37581. ]
  37582. ))
  37583. characterMakers.push(() => makeCharacter(
  37584. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37585. {
  37586. front: {
  37587. height: math.unit(6 + 2/12, "feet"),
  37588. name: "Front",
  37589. image: {
  37590. source: "./media/characters/taylor/front.svg",
  37591. extra: 639/495,
  37592. bottom: 12/651
  37593. }
  37594. },
  37595. },
  37596. [
  37597. {
  37598. name: "Normal",
  37599. height: math.unit(6 + 2/12, "feet"),
  37600. default: true
  37601. },
  37602. {
  37603. name: "Big",
  37604. height: math.unit(15, "feet")
  37605. },
  37606. {
  37607. name: "Lorg",
  37608. height: math.unit(80, "feet")
  37609. },
  37610. {
  37611. name: "Too Lorg",
  37612. height: math.unit(120, "feet")
  37613. },
  37614. ]
  37615. ))
  37616. characterMakers.push(() => makeCharacter(
  37617. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37618. {
  37619. front: {
  37620. height: math.unit(15, "feet"),
  37621. name: "Front",
  37622. image: {
  37623. source: "./media/characters/kaizer/front.svg",
  37624. extra: 1612/1436,
  37625. bottom: 43/1655
  37626. }
  37627. },
  37628. },
  37629. [
  37630. {
  37631. name: "Normal",
  37632. height: math.unit(15, "feet"),
  37633. default: true
  37634. },
  37635. ]
  37636. ))
  37637. characterMakers.push(() => makeCharacter(
  37638. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37639. {
  37640. front: {
  37641. height: math.unit(2, "feet"),
  37642. weight: math.unit(30, "lb"),
  37643. name: "Front",
  37644. image: {
  37645. source: "./media/characters/sandy/front.svg",
  37646. extra: 1439/1307,
  37647. bottom: 194/1633
  37648. }
  37649. },
  37650. },
  37651. [
  37652. {
  37653. name: "Normal",
  37654. height: math.unit(2, "feet"),
  37655. default: true
  37656. },
  37657. ]
  37658. ))
  37659. characterMakers.push(() => makeCharacter(
  37660. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37661. {
  37662. front: {
  37663. height: math.unit(3, "feet"),
  37664. name: "Front",
  37665. image: {
  37666. source: "./media/characters/mellvi/front.svg",
  37667. extra: 1831/1630,
  37668. bottom: 58/1889
  37669. }
  37670. },
  37671. },
  37672. [
  37673. {
  37674. name: "Normal",
  37675. height: math.unit(3, "feet"),
  37676. default: true
  37677. },
  37678. ]
  37679. ))
  37680. characterMakers.push(() => makeCharacter(
  37681. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37682. {
  37683. front: {
  37684. height: math.unit(5 + 11/12, "feet"),
  37685. weight: math.unit(200, "lb"),
  37686. name: "Front",
  37687. image: {
  37688. source: "./media/characters/shirou/front.svg",
  37689. extra: 2491/2383,
  37690. bottom: 189/2680
  37691. }
  37692. },
  37693. back: {
  37694. height: math.unit(5 + 11/12, "feet"),
  37695. weight: math.unit(200, "lb"),
  37696. name: "Back",
  37697. image: {
  37698. source: "./media/characters/shirou/back.svg",
  37699. extra: 2554/2450,
  37700. bottom: 76/2630
  37701. }
  37702. },
  37703. },
  37704. [
  37705. {
  37706. name: "Normal",
  37707. height: math.unit(5 + 11/12, "feet"),
  37708. default: true
  37709. },
  37710. ]
  37711. ))
  37712. characterMakers.push(() => makeCharacter(
  37713. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37714. {
  37715. front: {
  37716. height: math.unit(6 + 3/12, "feet"),
  37717. weight: math.unit(177, "lb"),
  37718. name: "Front",
  37719. image: {
  37720. source: "./media/characters/noryu/front.svg",
  37721. extra: 973/885,
  37722. bottom: 10/983
  37723. }
  37724. },
  37725. },
  37726. [
  37727. {
  37728. name: "Normal",
  37729. height: math.unit(6 + 3/12, "feet"),
  37730. default: true
  37731. },
  37732. ]
  37733. ))
  37734. characterMakers.push(() => makeCharacter(
  37735. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37736. {
  37737. front: {
  37738. height: math.unit(5 + 6/12, "feet"),
  37739. weight: math.unit(170, "lb"),
  37740. name: "Front",
  37741. image: {
  37742. source: "./media/characters/mevolas-rubenido/front.svg",
  37743. extra: 2109/1901,
  37744. bottom: 96/2205
  37745. }
  37746. },
  37747. },
  37748. [
  37749. {
  37750. name: "Normal",
  37751. height: math.unit(5 + 6/12, "feet"),
  37752. default: true
  37753. },
  37754. ]
  37755. ))
  37756. characterMakers.push(() => makeCharacter(
  37757. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37758. {
  37759. front: {
  37760. height: math.unit(100, "feet"),
  37761. name: "Front",
  37762. image: {
  37763. source: "./media/characters/dee/front.svg",
  37764. extra: 2153/2036,
  37765. bottom: 59/2212
  37766. }
  37767. },
  37768. back: {
  37769. height: math.unit(100, "feet"),
  37770. name: "Back",
  37771. image: {
  37772. source: "./media/characters/dee/back.svg",
  37773. extra: 2183/2058,
  37774. bottom: 75/2258
  37775. }
  37776. },
  37777. foot: {
  37778. height: math.unit(19.43, "feet"),
  37779. name: "Foot",
  37780. image: {
  37781. source: "./media/characters/dee/foot.svg"
  37782. }
  37783. },
  37784. hoof: {
  37785. height: math.unit(20.6, "feet"),
  37786. name: "Hoof",
  37787. image: {
  37788. source: "./media/characters/dee/hoof.svg"
  37789. }
  37790. },
  37791. },
  37792. [
  37793. {
  37794. name: "Macro",
  37795. height: math.unit(100, "feet"),
  37796. default: true
  37797. },
  37798. ]
  37799. ))
  37800. characterMakers.push(() => makeCharacter(
  37801. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37802. {
  37803. front: {
  37804. height: math.unit(5 + 6/12, "feet"),
  37805. name: "Front",
  37806. image: {
  37807. source: "./media/characters/teh/front.svg",
  37808. extra: 1002/847,
  37809. bottom: 62/1064
  37810. }
  37811. },
  37812. },
  37813. [
  37814. {
  37815. name: "Normal",
  37816. height: math.unit(5 + 6/12, "feet"),
  37817. default: true
  37818. },
  37819. ]
  37820. ))
  37821. characterMakers.push(() => makeCharacter(
  37822. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37823. {
  37824. side: {
  37825. height: math.unit(6 + 1/12, "feet"),
  37826. weight: math.unit(204, "lb"),
  37827. name: "Side",
  37828. image: {
  37829. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37830. extra: 974/775,
  37831. bottom: 169/1143
  37832. }
  37833. },
  37834. sitting: {
  37835. height: math.unit(6 + 2/12, "feet"),
  37836. weight: math.unit(204, "lb"),
  37837. name: "Sitting",
  37838. image: {
  37839. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37840. extra: 1175/964,
  37841. bottom: 378/1553
  37842. }
  37843. },
  37844. },
  37845. [
  37846. {
  37847. name: "Normal",
  37848. height: math.unit(6 + 1/12, "feet"),
  37849. default: true
  37850. },
  37851. ]
  37852. ))
  37853. characterMakers.push(() => makeCharacter(
  37854. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37855. {
  37856. front: {
  37857. height: math.unit(6, "inches"),
  37858. name: "Front",
  37859. image: {
  37860. source: "./media/characters/tululi/front.svg",
  37861. extra: 1997/1876,
  37862. bottom: 20/2017
  37863. }
  37864. },
  37865. },
  37866. [
  37867. {
  37868. name: "Normal",
  37869. height: math.unit(6, "inches"),
  37870. default: true
  37871. },
  37872. ]
  37873. ))
  37874. characterMakers.push(() => makeCharacter(
  37875. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37876. {
  37877. front: {
  37878. height: math.unit(4 + 1/12, "feet"),
  37879. name: "Front",
  37880. image: {
  37881. source: "./media/characters/star/front.svg",
  37882. extra: 1493/1189,
  37883. bottom: 48/1541
  37884. }
  37885. },
  37886. },
  37887. [
  37888. {
  37889. name: "Normal",
  37890. height: math.unit(4 + 1/12, "feet"),
  37891. default: true
  37892. },
  37893. ]
  37894. ))
  37895. characterMakers.push(() => makeCharacter(
  37896. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37897. {
  37898. front: {
  37899. height: math.unit(6 + 3/12, "feet"),
  37900. name: "Front",
  37901. image: {
  37902. source: "./media/characters/comet/front.svg",
  37903. extra: 1681/1462,
  37904. bottom: 26/1707
  37905. }
  37906. },
  37907. },
  37908. [
  37909. {
  37910. name: "Normal",
  37911. height: math.unit(6 + 3/12, "feet"),
  37912. default: true
  37913. },
  37914. ]
  37915. ))
  37916. characterMakers.push(() => makeCharacter(
  37917. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37918. {
  37919. front: {
  37920. height: math.unit(950, "feet"),
  37921. name: "Front",
  37922. image: {
  37923. source: "./media/characters/vortex/front.svg",
  37924. extra: 1497/1434,
  37925. bottom: 56/1553
  37926. }
  37927. },
  37928. maw: {
  37929. height: math.unit(285, "feet"),
  37930. name: "Maw",
  37931. image: {
  37932. source: "./media/characters/vortex/maw.svg"
  37933. }
  37934. },
  37935. },
  37936. [
  37937. {
  37938. name: "Macro",
  37939. height: math.unit(950, "feet"),
  37940. default: true
  37941. },
  37942. ]
  37943. ))
  37944. characterMakers.push(() => makeCharacter(
  37945. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37946. {
  37947. front: {
  37948. height: math.unit(600, "feet"),
  37949. weight: math.unit(0.02, "grams"),
  37950. name: "Front",
  37951. image: {
  37952. source: "./media/characters/doodle/front.svg",
  37953. extra: 1578/1413,
  37954. bottom: 37/1615
  37955. }
  37956. },
  37957. },
  37958. [
  37959. {
  37960. name: "Macro",
  37961. height: math.unit(600, "feet"),
  37962. default: true
  37963. },
  37964. ]
  37965. ))
  37966. characterMakers.push(() => makeCharacter(
  37967. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37968. {
  37969. front: {
  37970. height: math.unit(6 + 6/12, "feet"),
  37971. name: "Front",
  37972. image: {
  37973. source: "./media/characters/jai/front.svg",
  37974. extra: 1645/1534,
  37975. bottom: 115/1760
  37976. }
  37977. },
  37978. },
  37979. [
  37980. {
  37981. name: "Normal",
  37982. height: math.unit(6 + 6/12, "feet"),
  37983. default: true
  37984. },
  37985. ]
  37986. ))
  37987. characterMakers.push(() => makeCharacter(
  37988. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37989. {
  37990. front: {
  37991. height: math.unit(6 + 8/12, "feet"),
  37992. name: "Front",
  37993. image: {
  37994. source: "./media/characters/pixel/front.svg",
  37995. extra: 1900/1735,
  37996. bottom: 63/1963
  37997. }
  37998. },
  37999. },
  38000. [
  38001. {
  38002. name: "Normal",
  38003. height: math.unit(6 + 8/12, "feet"),
  38004. default: true
  38005. },
  38006. ]
  38007. ))
  38008. characterMakers.push(() => makeCharacter(
  38009. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38010. {
  38011. back: {
  38012. height: math.unit(4 + 1/12, "feet"),
  38013. weight: math.unit(75, "lb"),
  38014. name: "Back",
  38015. image: {
  38016. source: "./media/characters/rhett/back.svg",
  38017. extra: 930/878,
  38018. bottom: 25/955
  38019. }
  38020. },
  38021. front: {
  38022. height: math.unit(4 + 1/12, "feet"),
  38023. weight: math.unit(75, "lb"),
  38024. name: "Front",
  38025. image: {
  38026. source: "./media/characters/rhett/front.svg",
  38027. extra: 1682/1586,
  38028. bottom: 92/1774
  38029. }
  38030. },
  38031. },
  38032. [
  38033. {
  38034. name: "Micro",
  38035. height: math.unit(8, "inches")
  38036. },
  38037. {
  38038. name: "Tiny",
  38039. height: math.unit(2, "feet")
  38040. },
  38041. {
  38042. name: "Normal",
  38043. height: math.unit(4 + 1/12, "feet"),
  38044. default: true
  38045. },
  38046. ]
  38047. ))
  38048. characterMakers.push(() => makeCharacter(
  38049. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38050. {
  38051. front: {
  38052. height: math.unit(3 + 3/12, "feet"),
  38053. name: "Front",
  38054. image: {
  38055. source: "./media/characters/penny/front.svg",
  38056. extra: 1406/1311,
  38057. bottom: 26/1432
  38058. }
  38059. },
  38060. },
  38061. [
  38062. {
  38063. name: "Normal",
  38064. height: math.unit(3 + 3/12, "feet"),
  38065. default: true
  38066. },
  38067. ]
  38068. ))
  38069. characterMakers.push(() => makeCharacter(
  38070. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38071. {
  38072. front: {
  38073. height: math.unit(4 + 11/12, "feet"),
  38074. name: "Front",
  38075. image: {
  38076. source: "./media/characters/monty/front.svg",
  38077. extra: 1479/1209,
  38078. bottom: 0/1479
  38079. }
  38080. },
  38081. },
  38082. [
  38083. {
  38084. name: "Normal",
  38085. height: math.unit(4 + 11/12, "feet"),
  38086. default: true
  38087. },
  38088. ]
  38089. ))
  38090. characterMakers.push(() => makeCharacter(
  38091. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38092. {
  38093. front: {
  38094. height: math.unit(8 + 4/12, "feet"),
  38095. name: "Front",
  38096. image: {
  38097. source: "./media/characters/sterling/front.svg",
  38098. extra: 1420/1236,
  38099. bottom: 27/1447
  38100. }
  38101. },
  38102. },
  38103. [
  38104. {
  38105. name: "Normal",
  38106. height: math.unit(8 + 4/12, "feet"),
  38107. default: true
  38108. },
  38109. ]
  38110. ))
  38111. characterMakers.push(() => makeCharacter(
  38112. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38113. {
  38114. front: {
  38115. height: math.unit(15, "feet"),
  38116. name: "Front",
  38117. image: {
  38118. source: "./media/characters/marble/front.svg",
  38119. extra: 973/937,
  38120. bottom: 32/1005
  38121. }
  38122. },
  38123. },
  38124. [
  38125. {
  38126. name: "Normal",
  38127. height: math.unit(15, "feet"),
  38128. default: true
  38129. },
  38130. ]
  38131. ))
  38132. characterMakers.push(() => makeCharacter(
  38133. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38134. {
  38135. front: {
  38136. height: math.unit(3, "inches"),
  38137. name: "Front",
  38138. image: {
  38139. source: "./media/characters/powder/front.svg",
  38140. extra: 1504/1334,
  38141. bottom: 518/2022
  38142. }
  38143. },
  38144. },
  38145. [
  38146. {
  38147. name: "Normal",
  38148. height: math.unit(3, "inches"),
  38149. default: true
  38150. },
  38151. ]
  38152. ))
  38153. characterMakers.push(() => makeCharacter(
  38154. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38155. {
  38156. front: {
  38157. height: math.unit(4 + 5/12, "feet"),
  38158. name: "Front",
  38159. image: {
  38160. source: "./media/characters/joey-raccoon/front.svg",
  38161. extra: 1273/1197,
  38162. bottom: 0/1273
  38163. }
  38164. },
  38165. },
  38166. [
  38167. {
  38168. name: "Normal",
  38169. height: math.unit(4 + 5/12, "feet"),
  38170. default: true
  38171. },
  38172. ]
  38173. ))
  38174. characterMakers.push(() => makeCharacter(
  38175. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38176. {
  38177. front: {
  38178. height: math.unit(8 + 4/12, "feet"),
  38179. name: "Front",
  38180. image: {
  38181. source: "./media/characters/vick/front.svg",
  38182. extra: 2187/2118,
  38183. bottom: 47/2234
  38184. }
  38185. },
  38186. },
  38187. [
  38188. {
  38189. name: "Normal",
  38190. height: math.unit(8 + 4/12, "feet"),
  38191. default: true
  38192. },
  38193. ]
  38194. ))
  38195. characterMakers.push(() => makeCharacter(
  38196. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38197. {
  38198. front: {
  38199. height: math.unit(5 + 5/12, "feet"),
  38200. name: "Front",
  38201. image: {
  38202. source: "./media/characters/mitsy/front.svg",
  38203. extra: 1842/1695,
  38204. bottom: 0/1842
  38205. }
  38206. },
  38207. },
  38208. [
  38209. {
  38210. name: "Normal",
  38211. height: math.unit(5 + 5/12, "feet"),
  38212. default: true
  38213. },
  38214. ]
  38215. ))
  38216. characterMakers.push(() => makeCharacter(
  38217. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38218. {
  38219. front: {
  38220. height: math.unit(6 + 3/12, "feet"),
  38221. name: "Front",
  38222. image: {
  38223. source: "./media/characters/silvy/front.svg",
  38224. extra: 1995/1836,
  38225. bottom: 225/2220
  38226. }
  38227. },
  38228. },
  38229. [
  38230. {
  38231. name: "Normal",
  38232. height: math.unit(6 + 3/12, "feet"),
  38233. default: true
  38234. },
  38235. ]
  38236. ))
  38237. characterMakers.push(() => makeCharacter(
  38238. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38239. {
  38240. front: {
  38241. height: math.unit(3 + 8/12, "feet"),
  38242. name: "Front",
  38243. image: {
  38244. source: "./media/characters/rodney/front.svg",
  38245. extra: 1956/1747,
  38246. bottom: 31/1987
  38247. }
  38248. },
  38249. frontDressed: {
  38250. height: math.unit(2.9, "feet"),
  38251. name: "Front (Dressed)",
  38252. image: {
  38253. source: "./media/characters/rodney/front-dressed.svg",
  38254. extra: 1382/1241,
  38255. bottom: 385/1767
  38256. }
  38257. },
  38258. },
  38259. [
  38260. {
  38261. name: "Normal",
  38262. height: math.unit(3 + 8/12, "feet"),
  38263. default: true
  38264. },
  38265. ]
  38266. ))
  38267. characterMakers.push(() => makeCharacter(
  38268. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38269. {
  38270. front: {
  38271. height: math.unit(5 + 9/12, "feet"),
  38272. weight: math.unit(194, "lbs"),
  38273. name: "Front",
  38274. image: {
  38275. source: "./media/characters/zakail-sudekai/front.svg",
  38276. extra: 2696/2533,
  38277. bottom: 248/2944
  38278. }
  38279. },
  38280. maw: {
  38281. height: math.unit(1.35, "feet"),
  38282. name: "Maw",
  38283. image: {
  38284. source: "./media/characters/zakail-sudekai/maw.svg"
  38285. }
  38286. },
  38287. },
  38288. [
  38289. {
  38290. name: "Normal",
  38291. height: math.unit(5 + 9/12, "feet"),
  38292. default: true
  38293. },
  38294. ]
  38295. ))
  38296. characterMakers.push(() => makeCharacter(
  38297. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38298. {
  38299. front: {
  38300. height: math.unit(8 + 4/12, "feet"),
  38301. weight: math.unit(1200, "lb"),
  38302. name: "Front",
  38303. image: {
  38304. source: "./media/characters/eleanor/front.svg",
  38305. extra: 1226/1192,
  38306. bottom: 52/1278
  38307. }
  38308. },
  38309. back: {
  38310. height: math.unit(8 + 4/12, "feet"),
  38311. weight: math.unit(1200, "lb"),
  38312. name: "Back",
  38313. image: {
  38314. source: "./media/characters/eleanor/back.svg",
  38315. extra: 1242/1184,
  38316. bottom: 60/1302
  38317. }
  38318. },
  38319. head: {
  38320. height: math.unit(2.62, "feet"),
  38321. name: "Head",
  38322. image: {
  38323. source: "./media/characters/eleanor/head.svg"
  38324. }
  38325. },
  38326. },
  38327. [
  38328. {
  38329. name: "Normal",
  38330. height: math.unit(8 + 4/12, "feet"),
  38331. default: true
  38332. },
  38333. ]
  38334. ))
  38335. characterMakers.push(() => makeCharacter(
  38336. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38337. {
  38338. front: {
  38339. height: math.unit(8 + 4/12, "feet"),
  38340. weight: math.unit(750, "lb"),
  38341. name: "Front",
  38342. image: {
  38343. source: "./media/characters/tanya/front.svg",
  38344. extra: 1749/1615,
  38345. bottom: 33/1782
  38346. }
  38347. },
  38348. },
  38349. [
  38350. {
  38351. name: "Normal",
  38352. height: math.unit(8 + 4/12, "feet"),
  38353. default: true
  38354. },
  38355. ]
  38356. ))
  38357. characterMakers.push(() => makeCharacter(
  38358. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38359. {
  38360. front: {
  38361. height: math.unit(5, "feet"),
  38362. weight: math.unit(225, "lb"),
  38363. name: "Front",
  38364. image: {
  38365. source: "./media/characters/cindy/front.svg",
  38366. extra: 1320/1250,
  38367. bottom: 42/1362
  38368. }
  38369. },
  38370. frontDressed: {
  38371. height: math.unit(5, "feet"),
  38372. weight: math.unit(225, "lb"),
  38373. name: "Front (Dressed)",
  38374. image: {
  38375. source: "./media/characters/cindy/front-dressed.svg",
  38376. extra: 1320/1250,
  38377. bottom: 42/1362
  38378. }
  38379. },
  38380. back: {
  38381. height: math.unit(5, "feet"),
  38382. weight: math.unit(225, "lb"),
  38383. name: "Back",
  38384. image: {
  38385. source: "./media/characters/cindy/back.svg",
  38386. extra: 1384/1346,
  38387. bottom: 14/1398
  38388. }
  38389. },
  38390. },
  38391. [
  38392. {
  38393. name: "Normal",
  38394. height: math.unit(5, "feet"),
  38395. default: true
  38396. },
  38397. ]
  38398. ))
  38399. characterMakers.push(() => makeCharacter(
  38400. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38401. {
  38402. front: {
  38403. height: math.unit(6 + 9/12, "feet"),
  38404. weight: math.unit(440, "lb"),
  38405. name: "Front",
  38406. image: {
  38407. source: "./media/characters/wilbur-owen/front.svg",
  38408. extra: 1575/1448,
  38409. bottom: 72/1647
  38410. }
  38411. },
  38412. back: {
  38413. height: math.unit(6 + 9/12, "feet"),
  38414. weight: math.unit(440, "lb"),
  38415. name: "Back",
  38416. image: {
  38417. source: "./media/characters/wilbur-owen/back.svg",
  38418. extra: 1578/1445,
  38419. bottom: 36/1614
  38420. }
  38421. },
  38422. },
  38423. [
  38424. {
  38425. name: "Normal",
  38426. height: math.unit(6 + 9/12, "feet"),
  38427. default: true
  38428. },
  38429. ]
  38430. ))
  38431. characterMakers.push(() => makeCharacter(
  38432. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38433. {
  38434. front: {
  38435. height: math.unit(6 + 5/12, "feet"),
  38436. weight: math.unit(650, "lb"),
  38437. name: "Front",
  38438. image: {
  38439. source: "./media/characters/keegan/front.svg",
  38440. extra: 2387/2198,
  38441. bottom: 33/2420
  38442. }
  38443. },
  38444. side: {
  38445. height: math.unit(6 + 5/12, "feet"),
  38446. weight: math.unit(650, "lb"),
  38447. name: "Side",
  38448. image: {
  38449. source: "./media/characters/keegan/side.svg",
  38450. extra: 2390/2202,
  38451. bottom: 47/2437
  38452. }
  38453. },
  38454. back: {
  38455. height: math.unit(6 + 5/12, "feet"),
  38456. weight: math.unit(650, "lb"),
  38457. name: "Back",
  38458. image: {
  38459. source: "./media/characters/keegan/back.svg",
  38460. extra: 2418/2268,
  38461. bottom: 15/2433
  38462. }
  38463. },
  38464. frontSfw: {
  38465. height: math.unit(6 + 5/12, "feet"),
  38466. weight: math.unit(650, "lb"),
  38467. name: "Front (SFW)",
  38468. image: {
  38469. source: "./media/characters/keegan/front-sfw.svg",
  38470. extra: 2387/2198,
  38471. bottom: 33/2420
  38472. }
  38473. },
  38474. beans: {
  38475. height: math.unit(1.85, "feet"),
  38476. name: "Beans",
  38477. image: {
  38478. source: "./media/characters/keegan/beans.svg"
  38479. }
  38480. },
  38481. },
  38482. [
  38483. {
  38484. name: "Normal",
  38485. height: math.unit(6 + 5/12, "feet"),
  38486. default: true
  38487. },
  38488. ]
  38489. ))
  38490. characterMakers.push(() => makeCharacter(
  38491. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38492. {
  38493. front: {
  38494. height: math.unit(9, "feet"),
  38495. name: "Front",
  38496. image: {
  38497. source: "./media/characters/colton/front.svg",
  38498. extra: 1589/1326,
  38499. bottom: 139/1728
  38500. }
  38501. },
  38502. },
  38503. [
  38504. {
  38505. name: "Normal",
  38506. height: math.unit(9, "feet"),
  38507. default: true
  38508. },
  38509. ]
  38510. ))
  38511. characterMakers.push(() => makeCharacter(
  38512. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38513. {
  38514. front: {
  38515. height: math.unit(2 + 9/12, "feet"),
  38516. name: "Front",
  38517. image: {
  38518. source: "./media/characters/bora/front.svg",
  38519. extra: 1265/1250,
  38520. bottom: 24/1289
  38521. }
  38522. },
  38523. },
  38524. [
  38525. {
  38526. name: "Normal",
  38527. height: math.unit(2 + 9/12, "feet"),
  38528. default: true
  38529. },
  38530. ]
  38531. ))
  38532. characterMakers.push(() => makeCharacter(
  38533. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38534. {
  38535. front: {
  38536. height: math.unit(8, "feet"),
  38537. name: "Front",
  38538. image: {
  38539. source: "./media/characters/myu-myu/front.svg",
  38540. extra: 1949/1857,
  38541. bottom: 90/2039
  38542. }
  38543. },
  38544. },
  38545. [
  38546. {
  38547. name: "Normal",
  38548. height: math.unit(8, "feet"),
  38549. default: true
  38550. },
  38551. {
  38552. name: "Big",
  38553. height: math.unit(15, "feet")
  38554. },
  38555. {
  38556. name: "BIG",
  38557. height: math.unit(25, "feet")
  38558. },
  38559. ]
  38560. ))
  38561. characterMakers.push(() => makeCharacter(
  38562. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38563. {
  38564. side: {
  38565. height: math.unit(7 + 5/12, "feet"),
  38566. weight: math.unit(2800, "lb"),
  38567. name: "Side",
  38568. image: {
  38569. source: "./media/characters/haloren/side.svg",
  38570. extra: 1793/409,
  38571. bottom: 59/1852
  38572. }
  38573. },
  38574. frontPaw: {
  38575. height: math.unit(2.36, "feet"),
  38576. name: "Front paw",
  38577. image: {
  38578. source: "./media/characters/haloren/front-paw.svg"
  38579. }
  38580. },
  38581. hindPaw: {
  38582. height: math.unit(3.18, "feet"),
  38583. name: "Hind paw",
  38584. image: {
  38585. source: "./media/characters/haloren/hind-paw.svg"
  38586. }
  38587. },
  38588. maw: {
  38589. height: math.unit(5.05, "feet"),
  38590. name: "Maw",
  38591. image: {
  38592. source: "./media/characters/haloren/maw.svg"
  38593. }
  38594. },
  38595. dick: {
  38596. height: math.unit(2.90, "feet"),
  38597. name: "Dick",
  38598. image: {
  38599. source: "./media/characters/haloren/dick.svg"
  38600. }
  38601. },
  38602. },
  38603. [
  38604. {
  38605. name: "Normal",
  38606. height: math.unit(7 + 5/12, "feet"),
  38607. default: true
  38608. },
  38609. {
  38610. name: "Enhanced",
  38611. height: math.unit(14 + 3/12, "feet")
  38612. },
  38613. ]
  38614. ))
  38615. characterMakers.push(() => makeCharacter(
  38616. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38617. {
  38618. front: {
  38619. height: math.unit(171, "cm"),
  38620. name: "Front",
  38621. image: {
  38622. source: "./media/characters/kimmy/front.svg",
  38623. extra: 1491/1435,
  38624. bottom: 53/1544
  38625. }
  38626. },
  38627. },
  38628. [
  38629. {
  38630. name: "Small",
  38631. height: math.unit(9, "cm")
  38632. },
  38633. {
  38634. name: "Normal",
  38635. height: math.unit(171, "cm"),
  38636. default: true
  38637. },
  38638. ]
  38639. ))
  38640. characterMakers.push(() => makeCharacter(
  38641. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38642. {
  38643. front: {
  38644. height: math.unit(8, "feet"),
  38645. weight: math.unit(300, "lb"),
  38646. name: "Front",
  38647. image: {
  38648. source: "./media/characters/galeboomer/front.svg",
  38649. extra: 4651/4415,
  38650. bottom: 162/4813
  38651. }
  38652. },
  38653. back: {
  38654. height: math.unit(8, "feet"),
  38655. weight: math.unit(300, "lb"),
  38656. name: "Back",
  38657. image: {
  38658. source: "./media/characters/galeboomer/back.svg",
  38659. extra: 4544/4314,
  38660. bottom: 16/4560
  38661. }
  38662. },
  38663. frontAlt: {
  38664. height: math.unit(8, "feet"),
  38665. weight: math.unit(300, "lb"),
  38666. name: "Front (Alt)",
  38667. image: {
  38668. source: "./media/characters/galeboomer/front-alt.svg",
  38669. extra: 4458/4228,
  38670. bottom: 68/4526
  38671. }
  38672. },
  38673. maw: {
  38674. height: math.unit(1.2, "feet"),
  38675. name: "Maw",
  38676. image: {
  38677. source: "./media/characters/galeboomer/maw.svg"
  38678. }
  38679. },
  38680. },
  38681. [
  38682. {
  38683. name: "Normal",
  38684. height: math.unit(8, "feet"),
  38685. default: true
  38686. },
  38687. ]
  38688. ))
  38689. characterMakers.push(() => makeCharacter(
  38690. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38691. {
  38692. front: {
  38693. height: math.unit(5 + 9/12, "feet"),
  38694. weight: math.unit(120, "lb"),
  38695. name: "Front",
  38696. image: {
  38697. source: "./media/characters/chyr/front.svg",
  38698. extra: 1323/1254,
  38699. bottom: 63/1386
  38700. }
  38701. },
  38702. back: {
  38703. height: math.unit(5 + 9/12, "feet"),
  38704. weight: math.unit(120, "lb"),
  38705. name: "Back",
  38706. image: {
  38707. source: "./media/characters/chyr/back.svg",
  38708. extra: 1323/1252,
  38709. bottom: 48/1371
  38710. }
  38711. },
  38712. },
  38713. [
  38714. {
  38715. name: "Normal",
  38716. height: math.unit(5 + 9/12, "feet"),
  38717. default: true
  38718. },
  38719. ]
  38720. ))
  38721. characterMakers.push(() => makeCharacter(
  38722. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38723. {
  38724. front: {
  38725. height: math.unit(7, "feet"),
  38726. weight: math.unit(310, "lb"),
  38727. name: "Front",
  38728. image: {
  38729. source: "./media/characters/solarus/front.svg",
  38730. extra: 2415/2021,
  38731. bottom: 103/2518
  38732. }
  38733. },
  38734. back: {
  38735. height: math.unit(7, "feet"),
  38736. weight: math.unit(310, "lb"),
  38737. name: "Back",
  38738. image: {
  38739. source: "./media/characters/solarus/back.svg",
  38740. extra: 2463/2089,
  38741. bottom: 79/2542
  38742. }
  38743. },
  38744. },
  38745. [
  38746. {
  38747. name: "Normal",
  38748. height: math.unit(7, "feet"),
  38749. default: true
  38750. },
  38751. ]
  38752. ))
  38753. characterMakers.push(() => makeCharacter(
  38754. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38755. {
  38756. front: {
  38757. height: math.unit(16, "feet"),
  38758. name: "Front",
  38759. image: {
  38760. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38761. extra: 1844/1780,
  38762. bottom: 58/1902
  38763. }
  38764. },
  38765. winterCoat: {
  38766. height: math.unit(16, "feet"),
  38767. name: "Winter Coat",
  38768. image: {
  38769. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38770. extra: 1807/1775,
  38771. bottom: 69/1876
  38772. }
  38773. },
  38774. },
  38775. [
  38776. {
  38777. name: "Normal",
  38778. height: math.unit(16, "feet"),
  38779. default: true
  38780. },
  38781. {
  38782. name: "Chicago Size",
  38783. height: math.unit(560, "feet")
  38784. },
  38785. ]
  38786. ))
  38787. characterMakers.push(() => makeCharacter(
  38788. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38789. {
  38790. front: {
  38791. height: math.unit(11 + 6/12, "feet"),
  38792. weight: math.unit(1366, "lb"),
  38793. name: "Front",
  38794. image: {
  38795. source: "./media/characters/lexor/front.svg",
  38796. extra: 1560/1481,
  38797. bottom: 211/1771
  38798. }
  38799. },
  38800. back: {
  38801. height: math.unit(11 + 6/12, "feet"),
  38802. weight: math.unit(1366, "lb"),
  38803. name: "Back",
  38804. image: {
  38805. source: "./media/characters/lexor/back.svg",
  38806. extra: 1614/1533,
  38807. bottom: 76/1690
  38808. }
  38809. },
  38810. maw: {
  38811. height: math.unit(3, "feet"),
  38812. name: "Maw",
  38813. image: {
  38814. source: "./media/characters/lexor/maw.svg"
  38815. }
  38816. },
  38817. dick: {
  38818. height: math.unit(2.59, "feet"),
  38819. name: "Dick",
  38820. image: {
  38821. source: "./media/characters/lexor/dick.svg"
  38822. }
  38823. },
  38824. },
  38825. [
  38826. {
  38827. name: "Normal",
  38828. height: math.unit(11 + 6/12, "feet"),
  38829. default: true
  38830. },
  38831. ]
  38832. ))
  38833. characterMakers.push(() => makeCharacter(
  38834. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38835. {
  38836. front: {
  38837. height: math.unit(5 + 8/12, "feet"),
  38838. name: "Front",
  38839. image: {
  38840. source: "./media/characters/magnum/front.svg",
  38841. extra: 942/855,
  38842. bottom: 26/968
  38843. }
  38844. },
  38845. },
  38846. [
  38847. {
  38848. name: "Normal",
  38849. height: math.unit(5 + 8/12, "feet"),
  38850. default: true
  38851. },
  38852. ]
  38853. ))
  38854. characterMakers.push(() => makeCharacter(
  38855. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38856. {
  38857. front: {
  38858. height: math.unit(18 + 4/12, "feet"),
  38859. weight: math.unit(1500, "kg"),
  38860. name: "Front",
  38861. image: {
  38862. source: "./media/characters/solas-sharpsman/front.svg",
  38863. extra: 1698/1589,
  38864. bottom: 0/1698
  38865. }
  38866. },
  38867. },
  38868. [
  38869. {
  38870. name: "Normal",
  38871. height: math.unit(18 + 4/12, "feet"),
  38872. default: true
  38873. },
  38874. ]
  38875. ))
  38876. characterMakers.push(() => makeCharacter(
  38877. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38878. {
  38879. front: {
  38880. height: math.unit(5 + 5/12, "feet"),
  38881. weight: math.unit(180, "lb"),
  38882. name: "Front",
  38883. image: {
  38884. source: "./media/characters/october/front.svg",
  38885. extra: 1800/1650,
  38886. bottom: 0/1800
  38887. }
  38888. },
  38889. frontNsfw: {
  38890. height: math.unit(5 + 5/12, "feet"),
  38891. weight: math.unit(180, "lb"),
  38892. name: "Front (NSFW)",
  38893. image: {
  38894. source: "./media/characters/october/front-nsfw.svg",
  38895. extra: 1392/1307,
  38896. bottom: 42/1434
  38897. }
  38898. },
  38899. },
  38900. [
  38901. {
  38902. name: "Normal",
  38903. height: math.unit(5 + 5/12, "feet"),
  38904. default: true
  38905. },
  38906. ]
  38907. ))
  38908. characterMakers.push(() => makeCharacter(
  38909. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38910. {
  38911. front: {
  38912. height: math.unit(8 + 6/12, "feet"),
  38913. name: "Front",
  38914. image: {
  38915. source: "./media/characters/essynkardi/front.svg",
  38916. extra: 1914/1846,
  38917. bottom: 22/1936
  38918. }
  38919. },
  38920. },
  38921. [
  38922. {
  38923. name: "Normal",
  38924. height: math.unit(8 + 6/12, "feet"),
  38925. default: true
  38926. },
  38927. ]
  38928. ))
  38929. characterMakers.push(() => makeCharacter(
  38930. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38931. {
  38932. front: {
  38933. height: math.unit(6 + 6/12, "feet"),
  38934. weight: math.unit(7, "lb"),
  38935. name: "Front",
  38936. image: {
  38937. source: "./media/characters/icky/front.svg",
  38938. extra: 813/782,
  38939. bottom: 66/879
  38940. }
  38941. },
  38942. back: {
  38943. height: math.unit(6 + 6/12, "feet"),
  38944. weight: math.unit(7, "lb"),
  38945. name: "Back",
  38946. image: {
  38947. source: "./media/characters/icky/back.svg",
  38948. extra: 754/735,
  38949. bottom: 56/810
  38950. }
  38951. },
  38952. },
  38953. [
  38954. {
  38955. name: "Normal",
  38956. height: math.unit(6 + 6/12, "feet"),
  38957. default: true
  38958. },
  38959. ]
  38960. ))
  38961. characterMakers.push(() => makeCharacter(
  38962. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38963. {
  38964. front: {
  38965. height: math.unit(15, "feet"),
  38966. name: "Front",
  38967. image: {
  38968. source: "./media/characters/rojas/front.svg",
  38969. extra: 1462/1408,
  38970. bottom: 95/1557
  38971. }
  38972. },
  38973. back: {
  38974. height: math.unit(15, "feet"),
  38975. name: "Back",
  38976. image: {
  38977. source: "./media/characters/rojas/back.svg",
  38978. extra: 1023/954,
  38979. bottom: 28/1051
  38980. }
  38981. },
  38982. },
  38983. [
  38984. {
  38985. name: "Normal",
  38986. height: math.unit(15, "feet"),
  38987. default: true
  38988. },
  38989. ]
  38990. ))
  38991. characterMakers.push(() => makeCharacter(
  38992. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38993. {
  38994. frontHuman: {
  38995. height: math.unit(5 + 7/12, "feet"),
  38996. name: "Front (Human)",
  38997. image: {
  38998. source: "./media/characters/alek-dryagan/front-human.svg",
  38999. extra: 1687/1667,
  39000. bottom: 69/1756
  39001. }
  39002. },
  39003. backHuman: {
  39004. height: math.unit(5 + 7/12, "feet"),
  39005. name: "Back (Human)",
  39006. image: {
  39007. source: "./media/characters/alek-dryagan/back-human.svg",
  39008. extra: 1670/1649,
  39009. bottom: 65/1735
  39010. }
  39011. },
  39012. frontDemi: {
  39013. height: math.unit(65, "feet"),
  39014. name: "Front (Demi)",
  39015. image: {
  39016. source: "./media/characters/alek-dryagan/front-demi.svg",
  39017. extra: 1669/1642,
  39018. bottom: 49/1718
  39019. }
  39020. },
  39021. backDemi: {
  39022. height: math.unit(65, "feet"),
  39023. name: "Back (Demi)",
  39024. image: {
  39025. source: "./media/characters/alek-dryagan/back-demi.svg",
  39026. extra: 1658/1637,
  39027. bottom: 40/1698
  39028. }
  39029. },
  39030. mawHuman: {
  39031. height: math.unit(0.3, "feet"),
  39032. name: "Maw (Human)",
  39033. image: {
  39034. source: "./media/characters/alek-dryagan/maw-human.svg"
  39035. }
  39036. },
  39037. mawDemi: {
  39038. height: math.unit(3.8, "feet"),
  39039. name: "Maw (Demi)",
  39040. image: {
  39041. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39042. }
  39043. },
  39044. },
  39045. [
  39046. {
  39047. name: "Normal",
  39048. height: math.unit(5 + 7/12, "feet"),
  39049. default: true
  39050. },
  39051. ]
  39052. ))
  39053. characterMakers.push(() => makeCharacter(
  39054. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39055. {
  39056. frontHuman: {
  39057. height: math.unit(5 + 2/12, "feet"),
  39058. name: "Front (Human)",
  39059. image: {
  39060. source: "./media/characters/gen/front-human.svg",
  39061. extra: 1627/1538,
  39062. bottom: 71/1698
  39063. }
  39064. },
  39065. backHuman: {
  39066. height: math.unit(5 + 2/12, "feet"),
  39067. name: "Back (Human)",
  39068. image: {
  39069. source: "./media/characters/gen/back-human.svg",
  39070. extra: 1638/1548,
  39071. bottom: 69/1707
  39072. }
  39073. },
  39074. frontDemi: {
  39075. height: math.unit(5 + 2/12, "feet"),
  39076. name: "Front (Demi)",
  39077. image: {
  39078. source: "./media/characters/gen/front-demi.svg",
  39079. extra: 1627/1538,
  39080. bottom: 71/1698
  39081. }
  39082. },
  39083. backDemi: {
  39084. height: math.unit(5 + 2/12, "feet"),
  39085. name: "Back (Demi)",
  39086. image: {
  39087. source: "./media/characters/gen/back-demi.svg",
  39088. extra: 1638/1548,
  39089. bottom: 69/1707
  39090. }
  39091. },
  39092. },
  39093. [
  39094. {
  39095. name: "Normal",
  39096. height: math.unit(5 + 2/12, "feet"),
  39097. default: true
  39098. },
  39099. ]
  39100. ))
  39101. characterMakers.push(() => makeCharacter(
  39102. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39103. {
  39104. frontImp: {
  39105. height: math.unit(1 + 11/12, "feet"),
  39106. name: "Front (Imp)",
  39107. image: {
  39108. source: "./media/characters/max-kobold/front-imp.svg",
  39109. extra: 1238/1134,
  39110. bottom: 81/1319
  39111. }
  39112. },
  39113. backImp: {
  39114. height: math.unit(1 + 11/12, "feet"),
  39115. name: "Back (Imp)",
  39116. image: {
  39117. source: "./media/characters/max-kobold/back-imp.svg",
  39118. extra: 1334/1175,
  39119. bottom: 34/1368
  39120. }
  39121. },
  39122. frontDemi: {
  39123. height: math.unit(5 + 9/12, "feet"),
  39124. name: "Front (Demi)",
  39125. image: {
  39126. source: "./media/characters/max-kobold/front-demi.svg",
  39127. extra: 1715/1685,
  39128. bottom: 54/1769
  39129. }
  39130. },
  39131. backDemi: {
  39132. height: math.unit(5 + 9/12, "feet"),
  39133. name: "Back (Demi)",
  39134. image: {
  39135. source: "./media/characters/max-kobold/back-demi.svg",
  39136. extra: 1752/1729,
  39137. bottom: 41/1793
  39138. }
  39139. },
  39140. handImp: {
  39141. height: math.unit(0.45, "feet"),
  39142. name: "Hand (Imp)",
  39143. image: {
  39144. source: "./media/characters/max-kobold/hand.svg"
  39145. }
  39146. },
  39147. pawImp: {
  39148. height: math.unit(0.46, "feet"),
  39149. name: "Paw (Imp)",
  39150. image: {
  39151. source: "./media/characters/max-kobold/paw.svg"
  39152. }
  39153. },
  39154. handDemi: {
  39155. height: math.unit(0.80, "feet"),
  39156. name: "Hand (Demi)",
  39157. image: {
  39158. source: "./media/characters/max-kobold/hand.svg"
  39159. }
  39160. },
  39161. pawDemi: {
  39162. height: math.unit(1.1, "feet"),
  39163. name: "Paw (Demi)",
  39164. image: {
  39165. source: "./media/characters/max-kobold/paw.svg"
  39166. }
  39167. },
  39168. headImp: {
  39169. height: math.unit(1.33, "feet"),
  39170. name: "Head (Imp)",
  39171. image: {
  39172. source: "./media/characters/max-kobold/head-imp.svg"
  39173. }
  39174. },
  39175. mawImp: {
  39176. height: math.unit(0.75, "feet"),
  39177. name: "Maw (Imp)",
  39178. image: {
  39179. source: "./media/characters/max-kobold/maw-imp.svg"
  39180. }
  39181. },
  39182. mawDemi: {
  39183. height: math.unit(0.42, "feet"),
  39184. name: "Maw (Demi)",
  39185. image: {
  39186. source: "./media/characters/max-kobold/maw-demi.svg"
  39187. }
  39188. },
  39189. },
  39190. [
  39191. {
  39192. name: "Normal",
  39193. height: math.unit(1 + 11/12, "feet"),
  39194. default: true
  39195. },
  39196. ]
  39197. ))
  39198. characterMakers.push(() => makeCharacter(
  39199. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39200. {
  39201. front: {
  39202. height: math.unit(7 + 5/12, "feet"),
  39203. name: "Front",
  39204. image: {
  39205. source: "./media/characters/carbon/front.svg",
  39206. extra: 1754/1689,
  39207. bottom: 65/1819
  39208. }
  39209. },
  39210. back: {
  39211. height: math.unit(7 + 5/12, "feet"),
  39212. name: "Back",
  39213. image: {
  39214. source: "./media/characters/carbon/back.svg",
  39215. extra: 1762/1695,
  39216. bottom: 24/1786
  39217. }
  39218. },
  39219. frontGigantamax: {
  39220. height: math.unit(150, "feet"),
  39221. name: "Front (Gigantamax)",
  39222. image: {
  39223. source: "./media/characters/carbon/front-gigantamax.svg",
  39224. extra: 1826/1669,
  39225. bottom: 59/1885
  39226. }
  39227. },
  39228. backGigantamax: {
  39229. height: math.unit(150, "feet"),
  39230. name: "Back (Gigantamax)",
  39231. image: {
  39232. source: "./media/characters/carbon/back-gigantamax.svg",
  39233. extra: 1796/1653,
  39234. bottom: 53/1849
  39235. }
  39236. },
  39237. maw: {
  39238. height: math.unit(0.48, "feet"),
  39239. name: "Maw",
  39240. image: {
  39241. source: "./media/characters/carbon/maw.svg"
  39242. }
  39243. },
  39244. mawGigantamax: {
  39245. height: math.unit(7.5, "feet"),
  39246. name: "Maw (Gigantamax)",
  39247. image: {
  39248. source: "./media/characters/carbon/maw-gigantamax.svg"
  39249. }
  39250. },
  39251. },
  39252. [
  39253. {
  39254. name: "Normal",
  39255. height: math.unit(7 + 5/12, "feet"),
  39256. default: true
  39257. },
  39258. ]
  39259. ))
  39260. characterMakers.push(() => makeCharacter(
  39261. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39262. {
  39263. front: {
  39264. height: math.unit(6, "feet"),
  39265. name: "Front",
  39266. image: {
  39267. source: "./media/characters/maverick/front.svg",
  39268. extra: 1672/1661,
  39269. bottom: 85/1757
  39270. }
  39271. },
  39272. back: {
  39273. height: math.unit(6, "feet"),
  39274. name: "Back",
  39275. image: {
  39276. source: "./media/characters/maverick/back.svg",
  39277. extra: 1642/1631,
  39278. bottom: 38/1680
  39279. }
  39280. },
  39281. },
  39282. [
  39283. {
  39284. name: "Normal",
  39285. height: math.unit(6, "feet"),
  39286. default: true
  39287. },
  39288. ]
  39289. ))
  39290. characterMakers.push(() => makeCharacter(
  39291. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39292. {
  39293. front: {
  39294. height: math.unit(15, "feet"),
  39295. weight: math.unit(615, "lb"),
  39296. name: "Front",
  39297. image: {
  39298. source: "./media/characters/grockle/front.svg",
  39299. extra: 1535/1427,
  39300. bottom: 56/1591
  39301. }
  39302. },
  39303. },
  39304. [
  39305. {
  39306. name: "Normal",
  39307. height: math.unit(15, "feet"),
  39308. default: true
  39309. },
  39310. {
  39311. name: "Large",
  39312. height: math.unit(150, "feet")
  39313. },
  39314. {
  39315. name: "Macro",
  39316. height: math.unit(1876, "feet")
  39317. },
  39318. {
  39319. name: "Mega Macro",
  39320. height: math.unit(121940, "feet")
  39321. },
  39322. {
  39323. name: "Giga Macro",
  39324. height: math.unit(750, "km")
  39325. },
  39326. {
  39327. name: "Tera Macro",
  39328. height: math.unit(750000, "km")
  39329. },
  39330. {
  39331. name: "Galactic",
  39332. height: math.unit(1.4e5, "km")
  39333. },
  39334. {
  39335. name: "Godlike",
  39336. height: math.unit(9.8e280, "galaxies")
  39337. },
  39338. ]
  39339. ))
  39340. characterMakers.push(() => makeCharacter(
  39341. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39342. {
  39343. front: {
  39344. height: math.unit(11, "meters"),
  39345. weight: math.unit(20, "tonnes"),
  39346. name: "Front",
  39347. image: {
  39348. source: "./media/characters/alistair/front.svg",
  39349. extra: 1265/1009,
  39350. bottom: 93/1358
  39351. }
  39352. },
  39353. },
  39354. [
  39355. {
  39356. name: "Normal",
  39357. height: math.unit(11, "meters"),
  39358. default: true
  39359. },
  39360. ]
  39361. ))
  39362. characterMakers.push(() => makeCharacter(
  39363. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39364. {
  39365. front: {
  39366. height: math.unit(5 + 8/12, "feet"),
  39367. name: "Front",
  39368. image: {
  39369. source: "./media/characters/haruka/front.svg",
  39370. extra: 2012/1952,
  39371. bottom: 0/2012
  39372. }
  39373. },
  39374. },
  39375. [
  39376. {
  39377. name: "Normal",
  39378. height: math.unit(5 + 8/12, "feet"),
  39379. default: true
  39380. },
  39381. ]
  39382. ))
  39383. characterMakers.push(() => makeCharacter(
  39384. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39385. {
  39386. back: {
  39387. height: math.unit(9, "feet"),
  39388. name: "Back",
  39389. image: {
  39390. source: "./media/characters/vivian-sylveon/back.svg",
  39391. extra: 1853/1714,
  39392. bottom: 0/1853
  39393. }
  39394. },
  39395. },
  39396. [
  39397. {
  39398. name: "Normal",
  39399. height: math.unit(9, "feet"),
  39400. default: true
  39401. },
  39402. {
  39403. name: "Macro",
  39404. height: math.unit(500, "feet")
  39405. },
  39406. {
  39407. name: "Megamacro",
  39408. height: math.unit(600, "miles")
  39409. },
  39410. {
  39411. name: "Gigamacro",
  39412. height: math.unit(30000, "miles")
  39413. },
  39414. ]
  39415. ))
  39416. characterMakers.push(() => makeCharacter(
  39417. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39418. {
  39419. anthro: {
  39420. height: math.unit(5 + 10/12, "feet"),
  39421. weight: math.unit(100, "lb"),
  39422. name: "Anthro",
  39423. image: {
  39424. source: "./media/characters/daiki/anthro.svg",
  39425. extra: 1115/1027,
  39426. bottom: 69/1184
  39427. }
  39428. },
  39429. feral: {
  39430. height: math.unit(200, "feet"),
  39431. name: "Feral",
  39432. image: {
  39433. source: "./media/characters/daiki/feral.svg",
  39434. extra: 1256/313,
  39435. bottom: 39/1295
  39436. }
  39437. },
  39438. feralHead: {
  39439. height: math.unit(171, "feet"),
  39440. name: "Feral Head",
  39441. image: {
  39442. source: "./media/characters/daiki/feral-head.svg"
  39443. }
  39444. },
  39445. manaDragon: {
  39446. height: math.unit(170, "meters"),
  39447. name: "Mana-dragon",
  39448. image: {
  39449. source: "./media/characters/daiki/mana-dragon.svg",
  39450. extra: 763/420,
  39451. bottom: 97/860
  39452. }
  39453. },
  39454. },
  39455. [
  39456. {
  39457. name: "Normal",
  39458. height: math.unit(5 + 10/12, "feet"),
  39459. default: true
  39460. },
  39461. ]
  39462. ))
  39463. characterMakers.push(() => makeCharacter(
  39464. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39465. {
  39466. fullyEquippedFront: {
  39467. height: math.unit(3 + 1/12, "feet"),
  39468. weight: math.unit(24, "lb"),
  39469. name: "Fully Equipped (Front)",
  39470. image: {
  39471. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39472. extra: 687/605,
  39473. bottom: 18/705
  39474. }
  39475. },
  39476. fullyEquippedBack: {
  39477. height: math.unit(3 + 1/12, "feet"),
  39478. weight: math.unit(24, "lb"),
  39479. name: "Fully Equipped (Back)",
  39480. image: {
  39481. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39482. extra: 689/590,
  39483. bottom: 18/707
  39484. }
  39485. },
  39486. dailyWear: {
  39487. height: math.unit(3 + 1/12, "feet"),
  39488. weight: math.unit(24, "lb"),
  39489. name: "Daily Wear",
  39490. image: {
  39491. source: "./media/characters/tea-spot/daily-wear.svg",
  39492. extra: 701/620,
  39493. bottom: 21/722
  39494. }
  39495. },
  39496. maidWork: {
  39497. height: math.unit(3 + 1/12, "feet"),
  39498. weight: math.unit(24, "lb"),
  39499. name: "Maid Work",
  39500. image: {
  39501. source: "./media/characters/tea-spot/maid-work.svg",
  39502. extra: 693/609,
  39503. bottom: 15/708
  39504. }
  39505. },
  39506. },
  39507. [
  39508. {
  39509. name: "Normal",
  39510. height: math.unit(3 + 1/12, "feet"),
  39511. default: true
  39512. },
  39513. ]
  39514. ))
  39515. characterMakers.push(() => makeCharacter(
  39516. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39517. {
  39518. front: {
  39519. height: math.unit(175, "cm"),
  39520. weight: math.unit(75, "kg"),
  39521. name: "Front",
  39522. image: {
  39523. source: "./media/characters/chee/front.svg",
  39524. extra: 1796/1740,
  39525. bottom: 40/1836
  39526. }
  39527. },
  39528. },
  39529. [
  39530. {
  39531. name: "Micro-Micro",
  39532. height: math.unit(1, "nm")
  39533. },
  39534. {
  39535. name: "Micro-erst",
  39536. height: math.unit(1, "micrometer")
  39537. },
  39538. {
  39539. name: "Micro-er",
  39540. height: math.unit(1, "cm")
  39541. },
  39542. {
  39543. name: "Normal",
  39544. height: math.unit(175, "cm"),
  39545. default: true
  39546. },
  39547. {
  39548. name: "Macro",
  39549. height: math.unit(100, "m")
  39550. },
  39551. {
  39552. name: "Macro-er",
  39553. height: math.unit(1, "km")
  39554. },
  39555. {
  39556. name: "Macro-erst",
  39557. height: math.unit(10, "km")
  39558. },
  39559. {
  39560. name: "Macro-Macro",
  39561. height: math.unit(100, "km")
  39562. },
  39563. ]
  39564. ))
  39565. characterMakers.push(() => makeCharacter(
  39566. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39567. {
  39568. front: {
  39569. height: math.unit(11 + 9/12, "feet"),
  39570. weight: math.unit(935, "lb"),
  39571. name: "Front",
  39572. image: {
  39573. source: "./media/characters/kingsley/front.svg",
  39574. extra: 1803/1674,
  39575. bottom: 127/1930
  39576. }
  39577. },
  39578. frontNude: {
  39579. height: math.unit(11 + 9/12, "feet"),
  39580. weight: math.unit(935, "lb"),
  39581. name: "Front (Nude)",
  39582. image: {
  39583. source: "./media/characters/kingsley/front-nude.svg",
  39584. extra: 1803/1674,
  39585. bottom: 127/1930
  39586. }
  39587. },
  39588. },
  39589. [
  39590. {
  39591. name: "Normal",
  39592. height: math.unit(11 + 9/12, "feet"),
  39593. default: true
  39594. },
  39595. ]
  39596. ))
  39597. characterMakers.push(() => makeCharacter(
  39598. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39599. {
  39600. side: {
  39601. height: math.unit(9, "feet"),
  39602. name: "Side",
  39603. image: {
  39604. source: "./media/characters/rymel/side.svg",
  39605. extra: 792/469,
  39606. bottom: 121/913
  39607. }
  39608. },
  39609. maw: {
  39610. height: math.unit(2.4, "meters"),
  39611. name: "Maw",
  39612. image: {
  39613. source: "./media/characters/rymel/maw.svg"
  39614. }
  39615. },
  39616. },
  39617. [
  39618. {
  39619. name: "House Drake",
  39620. height: math.unit(2, "feet")
  39621. },
  39622. {
  39623. name: "Reduced",
  39624. height: math.unit(4.5, "feet")
  39625. },
  39626. {
  39627. name: "Normal",
  39628. height: math.unit(9, "feet"),
  39629. default: true
  39630. },
  39631. ]
  39632. ))
  39633. characterMakers.push(() => makeCharacter(
  39634. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39635. {
  39636. front: {
  39637. height: math.unit(1.74, "meters"),
  39638. weight: math.unit(55, "kg"),
  39639. name: "Front",
  39640. image: {
  39641. source: "./media/characters/rubus/front.svg",
  39642. extra: 1894/1742,
  39643. bottom: 44/1938
  39644. }
  39645. },
  39646. },
  39647. [
  39648. {
  39649. name: "Normal",
  39650. height: math.unit(1.74, "meters"),
  39651. default: true
  39652. },
  39653. ]
  39654. ))
  39655. characterMakers.push(() => makeCharacter(
  39656. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39657. {
  39658. front: {
  39659. height: math.unit(5 + 2/12, "feet"),
  39660. weight: math.unit(112, "lb"),
  39661. name: "Front",
  39662. image: {
  39663. source: "./media/characters/cassie-kingston/front.svg",
  39664. extra: 1438/1390,
  39665. bottom: 47/1485
  39666. }
  39667. },
  39668. },
  39669. [
  39670. {
  39671. name: "Normal",
  39672. height: math.unit(5 + 2/12, "feet"),
  39673. default: true
  39674. },
  39675. {
  39676. name: "Macro",
  39677. height: math.unit(128, "feet")
  39678. },
  39679. {
  39680. name: "Megamacro",
  39681. height: math.unit(2.56, "miles")
  39682. },
  39683. ]
  39684. ))
  39685. characterMakers.push(() => makeCharacter(
  39686. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39687. {
  39688. front: {
  39689. height: math.unit(7, "feet"),
  39690. name: "Front",
  39691. image: {
  39692. source: "./media/characters/fox/front.svg",
  39693. extra: 1798/1703,
  39694. bottom: 55/1853
  39695. }
  39696. },
  39697. back: {
  39698. height: math.unit(7, "feet"),
  39699. name: "Back",
  39700. image: {
  39701. source: "./media/characters/fox/back.svg",
  39702. extra: 1748/1649,
  39703. bottom: 32/1780
  39704. }
  39705. },
  39706. head: {
  39707. height: math.unit(1.95, "feet"),
  39708. name: "Head",
  39709. image: {
  39710. source: "./media/characters/fox/head.svg"
  39711. }
  39712. },
  39713. dick: {
  39714. height: math.unit(1.33, "feet"),
  39715. name: "Dick",
  39716. image: {
  39717. source: "./media/characters/fox/dick.svg"
  39718. }
  39719. },
  39720. foot: {
  39721. height: math.unit(1, "feet"),
  39722. name: "Foot",
  39723. image: {
  39724. source: "./media/characters/fox/foot.svg"
  39725. }
  39726. },
  39727. paw: {
  39728. height: math.unit(0.92, "feet"),
  39729. name: "Paw",
  39730. image: {
  39731. source: "./media/characters/fox/paw.svg"
  39732. }
  39733. },
  39734. },
  39735. [
  39736. {
  39737. name: "Small",
  39738. height: math.unit(3, "inches")
  39739. },
  39740. {
  39741. name: "\"Realistic\"",
  39742. height: math.unit(7, "feet")
  39743. },
  39744. {
  39745. name: "Normal",
  39746. height: math.unit(150, "feet"),
  39747. default: true
  39748. },
  39749. {
  39750. name: "BIG",
  39751. height: math.unit(1200, "feet")
  39752. },
  39753. {
  39754. name: "👀",
  39755. height: math.unit(5, "miles")
  39756. },
  39757. {
  39758. name: "👀👀👀",
  39759. height: math.unit(64, "miles")
  39760. },
  39761. ]
  39762. ))
  39763. characterMakers.push(() => makeCharacter(
  39764. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39765. {
  39766. front: {
  39767. height: math.unit(625, "feet"),
  39768. name: "Front",
  39769. image: {
  39770. source: "./media/characters/asonja-rossa/front.svg",
  39771. extra: 1833/1686,
  39772. bottom: 24/1857
  39773. }
  39774. },
  39775. back: {
  39776. height: math.unit(625, "feet"),
  39777. name: "Back",
  39778. image: {
  39779. source: "./media/characters/asonja-rossa/back.svg",
  39780. extra: 1852/1753,
  39781. bottom: 26/1878
  39782. }
  39783. },
  39784. },
  39785. [
  39786. {
  39787. name: "Macro",
  39788. height: math.unit(625, "feet"),
  39789. default: true
  39790. },
  39791. ]
  39792. ))
  39793. characterMakers.push(() => makeCharacter(
  39794. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39795. {
  39796. side: {
  39797. height: math.unit(8, "feet"),
  39798. name: "Side",
  39799. image: {
  39800. source: "./media/characters/rezukii/side.svg",
  39801. extra: 979/542,
  39802. bottom: 87/1066
  39803. }
  39804. },
  39805. sitting: {
  39806. height: math.unit(14.6, "feet"),
  39807. name: "Sitting",
  39808. image: {
  39809. source: "./media/characters/rezukii/sitting.svg",
  39810. extra: 1023/813,
  39811. bottom: 45/1068
  39812. }
  39813. },
  39814. },
  39815. [
  39816. {
  39817. name: "Tiny",
  39818. height: math.unit(2, "feet")
  39819. },
  39820. {
  39821. name: "Smol",
  39822. height: math.unit(4, "feet")
  39823. },
  39824. {
  39825. name: "Normal",
  39826. height: math.unit(8, "feet"),
  39827. default: true
  39828. },
  39829. {
  39830. name: "Big",
  39831. height: math.unit(12, "feet")
  39832. },
  39833. {
  39834. name: "Macro",
  39835. height: math.unit(30, "feet")
  39836. },
  39837. ]
  39838. ))
  39839. characterMakers.push(() => makeCharacter(
  39840. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39841. {
  39842. front: {
  39843. height: math.unit(14, "feet"),
  39844. weight: math.unit(9.5, "tonnes"),
  39845. name: "Front",
  39846. image: {
  39847. source: "./media/characters/dawnheart/front.svg",
  39848. extra: 2792/2675,
  39849. bottom: 64/2856
  39850. }
  39851. },
  39852. },
  39853. [
  39854. {
  39855. name: "Normal",
  39856. height: math.unit(14, "feet"),
  39857. default: true
  39858. },
  39859. ]
  39860. ))
  39861. characterMakers.push(() => makeCharacter(
  39862. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39863. {
  39864. front: {
  39865. height: math.unit(1.7, "m"),
  39866. name: "Front",
  39867. image: {
  39868. source: "./media/characters/gladi/front.svg",
  39869. extra: 1460/1362,
  39870. bottom: 19/1479
  39871. }
  39872. },
  39873. back: {
  39874. height: math.unit(1.7, "m"),
  39875. name: "Back",
  39876. image: {
  39877. source: "./media/characters/gladi/back.svg",
  39878. extra: 1459/1357,
  39879. bottom: 12/1471
  39880. }
  39881. },
  39882. feral: {
  39883. height: math.unit(2.05, "m"),
  39884. name: "Feral",
  39885. image: {
  39886. source: "./media/characters/gladi/feral.svg",
  39887. extra: 821/557,
  39888. bottom: 91/912
  39889. }
  39890. },
  39891. },
  39892. [
  39893. {
  39894. name: "Shortest",
  39895. height: math.unit(70, "cm")
  39896. },
  39897. {
  39898. name: "Normal",
  39899. height: math.unit(1.7, "m")
  39900. },
  39901. {
  39902. name: "Macro",
  39903. height: math.unit(10, "m"),
  39904. default: true
  39905. },
  39906. {
  39907. name: "Tallest",
  39908. height: math.unit(200, "m")
  39909. },
  39910. ]
  39911. ))
  39912. characterMakers.push(() => makeCharacter(
  39913. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39914. {
  39915. front: {
  39916. height: math.unit(5 + 7/12, "feet"),
  39917. weight: math.unit(2, "tons"),
  39918. name: "Front",
  39919. image: {
  39920. source: "./media/characters/erdno/front.svg",
  39921. extra: 1234/1129,
  39922. bottom: 35/1269
  39923. }
  39924. },
  39925. angled: {
  39926. height: math.unit(5 + 7/12, "feet"),
  39927. weight: math.unit(2, "tons"),
  39928. name: "Angled",
  39929. image: {
  39930. source: "./media/characters/erdno/angled.svg",
  39931. extra: 1185/1139,
  39932. bottom: 36/1221
  39933. }
  39934. },
  39935. side: {
  39936. height: math.unit(5 + 7/12, "feet"),
  39937. weight: math.unit(2, "tons"),
  39938. name: "Side",
  39939. image: {
  39940. source: "./media/characters/erdno/side.svg",
  39941. extra: 1191/1144,
  39942. bottom: 40/1231
  39943. }
  39944. },
  39945. back: {
  39946. height: math.unit(5 + 7/12, "feet"),
  39947. weight: math.unit(2, "tons"),
  39948. name: "Back",
  39949. image: {
  39950. source: "./media/characters/erdno/back.svg",
  39951. extra: 1202/1146,
  39952. bottom: 17/1219
  39953. }
  39954. },
  39955. frontNsfw: {
  39956. height: math.unit(5 + 7/12, "feet"),
  39957. weight: math.unit(2, "tons"),
  39958. name: "Front (NSFW)",
  39959. image: {
  39960. source: "./media/characters/erdno/front-nsfw.svg",
  39961. extra: 1234/1129,
  39962. bottom: 35/1269
  39963. }
  39964. },
  39965. angledNsfw: {
  39966. height: math.unit(5 + 7/12, "feet"),
  39967. weight: math.unit(2, "tons"),
  39968. name: "Angled (NSFW)",
  39969. image: {
  39970. source: "./media/characters/erdno/angled-nsfw.svg",
  39971. extra: 1185/1139,
  39972. bottom: 36/1221
  39973. }
  39974. },
  39975. sideNsfw: {
  39976. height: math.unit(5 + 7/12, "feet"),
  39977. weight: math.unit(2, "tons"),
  39978. name: "Side (NSFW)",
  39979. image: {
  39980. source: "./media/characters/erdno/side-nsfw.svg",
  39981. extra: 1191/1144,
  39982. bottom: 40/1231
  39983. }
  39984. },
  39985. backNsfw: {
  39986. height: math.unit(5 + 7/12, "feet"),
  39987. weight: math.unit(2, "tons"),
  39988. name: "Back (NSFW)",
  39989. image: {
  39990. source: "./media/characters/erdno/back-nsfw.svg",
  39991. extra: 1202/1146,
  39992. bottom: 17/1219
  39993. }
  39994. },
  39995. frontHyper: {
  39996. height: math.unit(5 + 7/12, "feet"),
  39997. weight: math.unit(2, "tons"),
  39998. name: "Front (Hyper)",
  39999. image: {
  40000. source: "./media/characters/erdno/front-hyper.svg",
  40001. extra: 1298/1136,
  40002. bottom: 35/1333
  40003. }
  40004. },
  40005. },
  40006. [
  40007. {
  40008. name: "Normal",
  40009. height: math.unit(5 + 7/12, "feet"),
  40010. default: true
  40011. },
  40012. {
  40013. name: "Big",
  40014. height: math.unit(5.7, "meters")
  40015. },
  40016. {
  40017. name: "Macro",
  40018. height: math.unit(5.7, "kilometers")
  40019. },
  40020. {
  40021. name: "Megamacro",
  40022. height: math.unit(5.7, "earths")
  40023. },
  40024. ]
  40025. ))
  40026. characterMakers.push(() => makeCharacter(
  40027. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40028. {
  40029. front: {
  40030. height: math.unit(5 + 10/12, "feet"),
  40031. weight: math.unit(150, "lb"),
  40032. name: "Front",
  40033. image: {
  40034. source: "./media/characters/jamie/front.svg",
  40035. extra: 1908/1768,
  40036. bottom: 19/1927
  40037. }
  40038. },
  40039. },
  40040. [
  40041. {
  40042. name: "Minimum",
  40043. height: math.unit(2, "cm")
  40044. },
  40045. {
  40046. name: "Micro",
  40047. height: math.unit(3, "inches")
  40048. },
  40049. {
  40050. name: "Normal",
  40051. height: math.unit(5 + 10/12, "feet"),
  40052. default: true
  40053. },
  40054. {
  40055. name: "Macro",
  40056. height: math.unit(150, "feet")
  40057. },
  40058. {
  40059. name: "Megamacro",
  40060. height: math.unit(10000, "m")
  40061. },
  40062. ]
  40063. ))
  40064. characterMakers.push(() => makeCharacter(
  40065. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40066. {
  40067. front: {
  40068. height: math.unit(2, "meters"),
  40069. weight: math.unit(100, "kg"),
  40070. name: "Front",
  40071. image: {
  40072. source: "./media/characters/shiron/front.svg",
  40073. extra: 2103/1985,
  40074. bottom: 98/2201
  40075. }
  40076. },
  40077. back: {
  40078. height: math.unit(2, "meters"),
  40079. weight: math.unit(100, "kg"),
  40080. name: "Back",
  40081. image: {
  40082. source: "./media/characters/shiron/back.svg",
  40083. extra: 2110/2015,
  40084. bottom: 89/2199
  40085. }
  40086. },
  40087. hand: {
  40088. height: math.unit(0.96, "feet"),
  40089. name: "Hand",
  40090. image: {
  40091. source: "./media/characters/shiron/hand.svg"
  40092. }
  40093. },
  40094. foot: {
  40095. height: math.unit(1.464, "feet"),
  40096. name: "Foot",
  40097. image: {
  40098. source: "./media/characters/shiron/foot.svg"
  40099. }
  40100. },
  40101. },
  40102. [
  40103. {
  40104. name: "Normal",
  40105. height: math.unit(2, "meters")
  40106. },
  40107. {
  40108. name: "Macro",
  40109. height: math.unit(500, "meters"),
  40110. default: true
  40111. },
  40112. {
  40113. name: "Megamacro",
  40114. height: math.unit(20, "km")
  40115. },
  40116. ]
  40117. ))
  40118. characterMakers.push(() => makeCharacter(
  40119. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40120. {
  40121. front: {
  40122. height: math.unit(6, "feet"),
  40123. name: "Front",
  40124. image: {
  40125. source: "./media/characters/sam/front.svg",
  40126. extra: 849/826,
  40127. bottom: 19/868
  40128. }
  40129. },
  40130. },
  40131. [
  40132. {
  40133. name: "Normal",
  40134. height: math.unit(6, "feet"),
  40135. default: true
  40136. },
  40137. ]
  40138. ))
  40139. characterMakers.push(() => makeCharacter(
  40140. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40141. {
  40142. front: {
  40143. height: math.unit(8 + 4/12, "feet"),
  40144. weight: math.unit(122, "kg"),
  40145. name: "Front",
  40146. image: {
  40147. source: "./media/characters/namori-kurogawa/front.svg",
  40148. extra: 1894/1576,
  40149. bottom: 34/1928
  40150. }
  40151. },
  40152. },
  40153. [
  40154. {
  40155. name: "Normal",
  40156. height: math.unit(8 + 4/12, "feet"),
  40157. default: true
  40158. },
  40159. ]
  40160. ))
  40161. characterMakers.push(() => makeCharacter(
  40162. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40163. {
  40164. front: {
  40165. height: math.unit(9, "feet"),
  40166. weight: math.unit(621, "lb"),
  40167. name: "Front",
  40168. image: {
  40169. source: "./media/characters/unmru/front.svg",
  40170. extra: 1853/1747,
  40171. bottom: 73/1926
  40172. }
  40173. },
  40174. side: {
  40175. height: math.unit(9, "feet"),
  40176. weight: math.unit(621, "lb"),
  40177. name: "Side",
  40178. image: {
  40179. source: "./media/characters/unmru/side.svg",
  40180. extra: 1781/1671,
  40181. bottom: 127/1908
  40182. }
  40183. },
  40184. back: {
  40185. height: math.unit(9, "feet"),
  40186. weight: math.unit(621, "lb"),
  40187. name: "Back",
  40188. image: {
  40189. source: "./media/characters/unmru/back.svg",
  40190. extra: 1894/1765,
  40191. bottom: 75/1969
  40192. }
  40193. },
  40194. dick: {
  40195. height: math.unit(3, "feet"),
  40196. weight: math.unit(35, "lb"),
  40197. name: "Dick",
  40198. image: {
  40199. source: "./media/characters/unmru/dick.svg"
  40200. }
  40201. },
  40202. },
  40203. [
  40204. {
  40205. name: "Normal",
  40206. height: math.unit(9, "feet")
  40207. },
  40208. {
  40209. name: "Natural",
  40210. height: math.unit(27, "feet"),
  40211. default: true
  40212. },
  40213. {
  40214. name: "Giant",
  40215. height: math.unit(90, "feet")
  40216. },
  40217. {
  40218. name: "Kaiju",
  40219. height: math.unit(270, "feet")
  40220. },
  40221. {
  40222. name: "Macro",
  40223. height: math.unit(900, "feet")
  40224. },
  40225. {
  40226. name: "Macro+",
  40227. height: math.unit(2700, "feet")
  40228. },
  40229. {
  40230. name: "Megamacro",
  40231. height: math.unit(9000, "feet")
  40232. },
  40233. {
  40234. name: "City-Crushing",
  40235. height: math.unit(27000, "feet")
  40236. },
  40237. {
  40238. name: "Mountain-Mashing",
  40239. height: math.unit(90000, "feet")
  40240. },
  40241. {
  40242. name: "Earth-Eclipsing",
  40243. height: math.unit(2.7e8, "feet")
  40244. },
  40245. {
  40246. name: "Sol-Swallowing",
  40247. height: math.unit(9e10, "feet")
  40248. },
  40249. {
  40250. name: "Majoris-Munching",
  40251. height: math.unit(2.7e13, "feet")
  40252. },
  40253. ]
  40254. ))
  40255. characterMakers.push(() => makeCharacter(
  40256. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40257. {
  40258. front: {
  40259. height: math.unit(1, "inch"),
  40260. name: "Front",
  40261. image: {
  40262. source: "./media/characters/squeaks-mouse/front.svg",
  40263. extra: 352/308,
  40264. bottom: 25/377
  40265. }
  40266. },
  40267. },
  40268. [
  40269. {
  40270. name: "Micro",
  40271. height: math.unit(1, "inch"),
  40272. default: true
  40273. },
  40274. ]
  40275. ))
  40276. characterMakers.push(() => makeCharacter(
  40277. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40278. {
  40279. side: {
  40280. height: math.unit(35, "feet"),
  40281. name: "Side",
  40282. image: {
  40283. source: "./media/characters/sayko/side.svg",
  40284. extra: 1697/1021,
  40285. bottom: 82/1779
  40286. }
  40287. },
  40288. head: {
  40289. height: math.unit(16, "feet"),
  40290. name: "Head",
  40291. image: {
  40292. source: "./media/characters/sayko/head.svg"
  40293. }
  40294. },
  40295. forepaw: {
  40296. height: math.unit(7.85, "feet"),
  40297. name: "Forepaw",
  40298. image: {
  40299. source: "./media/characters/sayko/forepaw.svg"
  40300. }
  40301. },
  40302. hindpaw: {
  40303. height: math.unit(8.8, "feet"),
  40304. name: "Hindpaw",
  40305. image: {
  40306. source: "./media/characters/sayko/hindpaw.svg"
  40307. }
  40308. },
  40309. },
  40310. [
  40311. {
  40312. name: "Normal",
  40313. height: math.unit(35, "feet"),
  40314. default: true
  40315. },
  40316. {
  40317. name: "Colossus",
  40318. height: math.unit(100, "meters")
  40319. },
  40320. {
  40321. name: "\"Small\" Deity",
  40322. height: math.unit(1, "km")
  40323. },
  40324. {
  40325. name: "\"Large\" Deity",
  40326. height: math.unit(15, "km")
  40327. },
  40328. ]
  40329. ))
  40330. characterMakers.push(() => makeCharacter(
  40331. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40332. {
  40333. front: {
  40334. height: math.unit(6, "feet"),
  40335. weight: math.unit(250, "lb"),
  40336. name: "Front",
  40337. image: {
  40338. source: "./media/characters/mukiro/front.svg",
  40339. extra: 1368/1310,
  40340. bottom: 34/1402
  40341. }
  40342. },
  40343. },
  40344. [
  40345. {
  40346. name: "Normal",
  40347. height: math.unit(6, "feet"),
  40348. default: true
  40349. },
  40350. ]
  40351. ))
  40352. characterMakers.push(() => makeCharacter(
  40353. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40354. {
  40355. front: {
  40356. height: math.unit(12 + 4/12, "feet"),
  40357. name: "Front",
  40358. image: {
  40359. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40360. extra: 1346/1311,
  40361. bottom: 65/1411
  40362. }
  40363. },
  40364. },
  40365. [
  40366. {
  40367. name: "Base",
  40368. height: math.unit(12 + 4/12, "feet"),
  40369. default: true
  40370. },
  40371. {
  40372. name: "Macro",
  40373. height: math.unit(150, "feet")
  40374. },
  40375. {
  40376. name: "Mega",
  40377. height: math.unit(2, "miles")
  40378. },
  40379. {
  40380. name: "Demi God",
  40381. height: math.unit(4, "AU")
  40382. },
  40383. {
  40384. name: "God Size",
  40385. height: math.unit(1, "universe")
  40386. },
  40387. ]
  40388. ))
  40389. characterMakers.push(() => makeCharacter(
  40390. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40391. {
  40392. front: {
  40393. height: math.unit(3 + 3/12, "feet"),
  40394. weight: math.unit(88, "lb"),
  40395. name: "Front",
  40396. image: {
  40397. source: "./media/characters/trey/front.svg",
  40398. extra: 1815/1509,
  40399. bottom: 60/1875
  40400. }
  40401. },
  40402. },
  40403. [
  40404. {
  40405. name: "Normal",
  40406. height: math.unit(3 + 3/12, "feet"),
  40407. default: true
  40408. },
  40409. ]
  40410. ))
  40411. characterMakers.push(() => makeCharacter(
  40412. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40413. {
  40414. front: {
  40415. height: math.unit(4, "meters"),
  40416. name: "Front",
  40417. image: {
  40418. source: "./media/characters/adelonda/front.svg",
  40419. extra: 1077/982,
  40420. bottom: 39/1116
  40421. }
  40422. },
  40423. back: {
  40424. height: math.unit(4, "meters"),
  40425. name: "Back",
  40426. image: {
  40427. source: "./media/characters/adelonda/back.svg",
  40428. extra: 1105/1003,
  40429. bottom: 25/1130
  40430. }
  40431. },
  40432. feral: {
  40433. height: math.unit(40/1.5, "meters"),
  40434. name: "Feral",
  40435. image: {
  40436. source: "./media/characters/adelonda/feral.svg",
  40437. extra: 597/271,
  40438. bottom: 387/984
  40439. }
  40440. },
  40441. },
  40442. [
  40443. {
  40444. name: "Normal",
  40445. height: math.unit(4, "meters"),
  40446. default: true
  40447. },
  40448. ]
  40449. ))
  40450. characterMakers.push(() => makeCharacter(
  40451. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40452. {
  40453. front: {
  40454. height: math.unit(8 + 4/12, "feet"),
  40455. weight: math.unit(670, "lb"),
  40456. name: "Front",
  40457. image: {
  40458. source: "./media/characters/acadiel/front.svg",
  40459. extra: 1901/1595,
  40460. bottom: 142/2043
  40461. }
  40462. },
  40463. },
  40464. [
  40465. {
  40466. name: "Normal",
  40467. height: math.unit(8 + 4/12, "feet"),
  40468. default: true
  40469. },
  40470. {
  40471. name: "Macro",
  40472. height: math.unit(200, "feet")
  40473. },
  40474. ]
  40475. ))
  40476. characterMakers.push(() => makeCharacter(
  40477. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40478. {
  40479. front: {
  40480. height: math.unit(6 + 2/12, "feet"),
  40481. weight: math.unit(185, "lb"),
  40482. name: "Front",
  40483. image: {
  40484. source: "./media/characters/kayne-ein/front.svg",
  40485. extra: 1780/1560,
  40486. bottom: 81/1861
  40487. }
  40488. },
  40489. },
  40490. [
  40491. {
  40492. name: "Normal",
  40493. height: math.unit(6 + 2/12, "feet"),
  40494. default: true
  40495. },
  40496. {
  40497. name: "Transformation Stage",
  40498. height: math.unit(15, "feet")
  40499. },
  40500. {
  40501. name: "Macro",
  40502. height: math.unit(150, "feet")
  40503. },
  40504. {
  40505. name: "Earth's Shadow",
  40506. height: math.unit(6200, "miles")
  40507. },
  40508. {
  40509. name: "Universal Demon",
  40510. height: math.unit(28e9, "parsecs")
  40511. },
  40512. {
  40513. name: "Multiverse God",
  40514. height: math.unit(3, "multiverses")
  40515. },
  40516. ]
  40517. ))
  40518. characterMakers.push(() => makeCharacter(
  40519. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40520. {
  40521. front: {
  40522. height: math.unit(5 + 5/12, "feet"),
  40523. name: "Front",
  40524. image: {
  40525. source: "./media/characters/fawn/front.svg",
  40526. extra: 1873/1731,
  40527. bottom: 95/1968
  40528. }
  40529. },
  40530. back: {
  40531. height: math.unit(5 + 5/12, "feet"),
  40532. name: "Back",
  40533. image: {
  40534. source: "./media/characters/fawn/back.svg",
  40535. extra: 1813/1700,
  40536. bottom: 14/1827
  40537. }
  40538. },
  40539. hoof: {
  40540. height: math.unit(1.45, "feet"),
  40541. name: "Hoof",
  40542. image: {
  40543. source: "./media/characters/fawn/hoof.svg"
  40544. }
  40545. },
  40546. },
  40547. [
  40548. {
  40549. name: "Normal",
  40550. height: math.unit(5 + 5/12, "feet"),
  40551. default: true
  40552. },
  40553. ]
  40554. ))
  40555. characterMakers.push(() => makeCharacter(
  40556. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40557. {
  40558. front: {
  40559. height: math.unit(2 + 5/12, "feet"),
  40560. name: "Front",
  40561. image: {
  40562. source: "./media/characters/orion/front.svg",
  40563. extra: 1366/1304,
  40564. bottom: 43/1409
  40565. }
  40566. },
  40567. paw: {
  40568. height: math.unit(0.52, "feet"),
  40569. name: "Paw",
  40570. image: {
  40571. source: "./media/characters/orion/paw.svg"
  40572. }
  40573. },
  40574. },
  40575. [
  40576. {
  40577. name: "Normal",
  40578. height: math.unit(2 + 5/12, "feet"),
  40579. default: true
  40580. },
  40581. ]
  40582. ))
  40583. characterMakers.push(() => makeCharacter(
  40584. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40585. {
  40586. front: {
  40587. height: math.unit(5 + 10/12, "feet"),
  40588. name: "Front",
  40589. image: {
  40590. source: "./media/characters/vera/front.svg",
  40591. extra: 1680/1575,
  40592. bottom: 49/1729
  40593. }
  40594. },
  40595. back: {
  40596. height: math.unit(5 + 10/12, "feet"),
  40597. name: "Back",
  40598. image: {
  40599. source: "./media/characters/vera/back.svg",
  40600. extra: 1700/1588,
  40601. bottom: 18/1718
  40602. }
  40603. },
  40604. arcanine: {
  40605. height: math.unit(6 + 8/12, "feet"),
  40606. name: "Arcanine",
  40607. image: {
  40608. source: "./media/characters/vera/arcanine.svg",
  40609. extra: 1590/1511,
  40610. bottom: 71/1661
  40611. }
  40612. },
  40613. maw: {
  40614. height: math.unit(0.82, "feet"),
  40615. name: "Maw",
  40616. image: {
  40617. source: "./media/characters/vera/maw.svg"
  40618. }
  40619. },
  40620. mawArcanine: {
  40621. height: math.unit(0.97, "feet"),
  40622. name: "Maw (Arcanine)",
  40623. image: {
  40624. source: "./media/characters/vera/maw-arcanine.svg"
  40625. }
  40626. },
  40627. paw: {
  40628. height: math.unit(0.75, "feet"),
  40629. name: "Paw",
  40630. image: {
  40631. source: "./media/characters/vera/paw.svg"
  40632. }
  40633. },
  40634. pawprint: {
  40635. height: math.unit(0.52, "feet"),
  40636. name: "Pawprint",
  40637. image: {
  40638. source: "./media/characters/vera/pawprint.svg"
  40639. }
  40640. },
  40641. },
  40642. [
  40643. {
  40644. name: "Normal",
  40645. height: math.unit(5 + 10/12, "feet"),
  40646. default: true
  40647. },
  40648. {
  40649. name: "Macro",
  40650. height: math.unit(75, "feet")
  40651. },
  40652. ]
  40653. ))
  40654. characterMakers.push(() => makeCharacter(
  40655. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40656. {
  40657. front: {
  40658. height: math.unit(4, "feet"),
  40659. weight: math.unit(40, "lb"),
  40660. name: "Front",
  40661. image: {
  40662. source: "./media/characters/orvan-rabbit/front.svg",
  40663. extra: 1896/1642,
  40664. bottom: 29/1925
  40665. }
  40666. },
  40667. },
  40668. [
  40669. {
  40670. name: "Normal",
  40671. height: math.unit(4, "feet"),
  40672. default: true
  40673. },
  40674. ]
  40675. ))
  40676. characterMakers.push(() => makeCharacter(
  40677. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40678. {
  40679. front: {
  40680. height: math.unit(6, "feet"),
  40681. weight: math.unit(168, "lb"),
  40682. name: "Front",
  40683. image: {
  40684. source: "./media/characters/lisa/front.svg",
  40685. extra: 2065/1867,
  40686. bottom: 46/2111
  40687. }
  40688. },
  40689. back: {
  40690. height: math.unit(6, "feet"),
  40691. weight: math.unit(168, "lb"),
  40692. name: "Back",
  40693. image: {
  40694. source: "./media/characters/lisa/back.svg",
  40695. extra: 1982/1838,
  40696. bottom: 29/2011
  40697. }
  40698. },
  40699. maw: {
  40700. height: math.unit(0.81, "feet"),
  40701. name: "Maw",
  40702. image: {
  40703. source: "./media/characters/lisa/maw.svg"
  40704. }
  40705. },
  40706. paw: {
  40707. height: math.unit(0.9, "feet"),
  40708. name: "Paw",
  40709. image: {
  40710. source: "./media/characters/lisa/paw.svg"
  40711. }
  40712. },
  40713. caribousune: {
  40714. height: math.unit(7 + 2/12, "feet"),
  40715. weight: math.unit(268, "lb"),
  40716. name: "Caribousune",
  40717. image: {
  40718. source: "./media/characters/lisa/caribousune.svg",
  40719. extra: 1843/1633,
  40720. bottom: 29/1872
  40721. }
  40722. },
  40723. frontCaribousune: {
  40724. height: math.unit(7 + 2/12, "feet"),
  40725. weight: math.unit(268, "lb"),
  40726. name: "Front (Caribousune)",
  40727. image: {
  40728. source: "./media/characters/lisa/front-caribousune.svg",
  40729. extra: 1818/1638,
  40730. bottom: 52/1870
  40731. }
  40732. },
  40733. sideCaribousune: {
  40734. height: math.unit(7 + 2/12, "feet"),
  40735. weight: math.unit(268, "lb"),
  40736. name: "Side (Caribousune)",
  40737. image: {
  40738. source: "./media/characters/lisa/side-caribousune.svg",
  40739. extra: 1851/1635,
  40740. bottom: 16/1867
  40741. }
  40742. },
  40743. backCaribousune: {
  40744. height: math.unit(7 + 2/12, "feet"),
  40745. weight: math.unit(268, "lb"),
  40746. name: "Back (Caribousune)",
  40747. image: {
  40748. source: "./media/characters/lisa/back-caribousune.svg",
  40749. extra: 1801/1604,
  40750. bottom: 44/1845
  40751. }
  40752. },
  40753. caribou: {
  40754. height: math.unit(7 + 2/12, "feet"),
  40755. weight: math.unit(268, "lb"),
  40756. name: "Caribou",
  40757. image: {
  40758. source: "./media/characters/lisa/caribou.svg",
  40759. extra: 1843/1633,
  40760. bottom: 29/1872
  40761. }
  40762. },
  40763. frontCaribou: {
  40764. height: math.unit(7 + 2/12, "feet"),
  40765. weight: math.unit(268, "lb"),
  40766. name: "Front (Caribou)",
  40767. image: {
  40768. source: "./media/characters/lisa/front-caribou.svg",
  40769. extra: 1818/1638,
  40770. bottom: 52/1870
  40771. }
  40772. },
  40773. sideCaribou: {
  40774. height: math.unit(7 + 2/12, "feet"),
  40775. weight: math.unit(268, "lb"),
  40776. name: "Side (Caribou)",
  40777. image: {
  40778. source: "./media/characters/lisa/side-caribou.svg",
  40779. extra: 1851/1635,
  40780. bottom: 16/1867
  40781. }
  40782. },
  40783. backCaribou: {
  40784. height: math.unit(7 + 2/12, "feet"),
  40785. weight: math.unit(268, "lb"),
  40786. name: "Back (Caribou)",
  40787. image: {
  40788. source: "./media/characters/lisa/back-caribou.svg",
  40789. extra: 1801/1604,
  40790. bottom: 44/1845
  40791. }
  40792. },
  40793. mawCaribou: {
  40794. height: math.unit(1.45, "feet"),
  40795. name: "Maw (Caribou)",
  40796. image: {
  40797. source: "./media/characters/lisa/maw-caribou.svg"
  40798. }
  40799. },
  40800. mawCaribousune: {
  40801. height: math.unit(1.45, "feet"),
  40802. name: "Maw (Caribousune)",
  40803. image: {
  40804. source: "./media/characters/lisa/maw-caribousune.svg"
  40805. }
  40806. },
  40807. pawCaribousune: {
  40808. height: math.unit(1.61, "feet"),
  40809. name: "Paw (Caribou)",
  40810. image: {
  40811. source: "./media/characters/lisa/paw-caribousune.svg"
  40812. }
  40813. },
  40814. },
  40815. [
  40816. {
  40817. name: "Normal",
  40818. height: math.unit(6, "feet")
  40819. },
  40820. {
  40821. name: "God Size",
  40822. height: math.unit(72, "feet"),
  40823. default: true
  40824. },
  40825. {
  40826. name: "Towering",
  40827. height: math.unit(288, "feet")
  40828. },
  40829. {
  40830. name: "City Size",
  40831. height: math.unit(48384, "feet")
  40832. },
  40833. {
  40834. name: "Continental",
  40835. height: math.unit(4200, "miles")
  40836. },
  40837. {
  40838. name: "Planet Eater",
  40839. height: math.unit(42, "earths")
  40840. },
  40841. {
  40842. name: "Star Swallower",
  40843. height: math.unit(42, "solarradii")
  40844. },
  40845. {
  40846. name: "System Swallower",
  40847. height: math.unit(84000, "AU")
  40848. },
  40849. {
  40850. name: "Galaxy Gobbler",
  40851. height: math.unit(42, "galaxies")
  40852. },
  40853. {
  40854. name: "Universe Devourer",
  40855. height: math.unit(42, "universes")
  40856. },
  40857. {
  40858. name: "Multiverse Muncher",
  40859. height: math.unit(42, "multiverses")
  40860. },
  40861. ]
  40862. ))
  40863. characterMakers.push(() => makeCharacter(
  40864. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40865. {
  40866. front: {
  40867. height: math.unit(36, "feet"),
  40868. name: "Front",
  40869. image: {
  40870. source: "./media/characters/shadow-rat/front.svg",
  40871. extra: 1845/1758,
  40872. bottom: 83/1928
  40873. }
  40874. },
  40875. },
  40876. [
  40877. {
  40878. name: "Macro",
  40879. height: math.unit(36, "feet"),
  40880. default: true
  40881. },
  40882. ]
  40883. ))
  40884. characterMakers.push(() => makeCharacter(
  40885. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40886. {
  40887. side: {
  40888. height: math.unit(8, "feet"),
  40889. weight: math.unit(2630, "lb"),
  40890. name: "Side",
  40891. image: {
  40892. source: "./media/characters/torallia/side.svg",
  40893. extra: 2164/2021,
  40894. bottom: 371/2535
  40895. }
  40896. },
  40897. },
  40898. [
  40899. {
  40900. name: "Mortal Interaction",
  40901. height: math.unit(8, "feet")
  40902. },
  40903. {
  40904. name: "Natural",
  40905. height: math.unit(24, "feet"),
  40906. default: true
  40907. },
  40908. {
  40909. name: "Giant",
  40910. height: math.unit(80, "feet")
  40911. },
  40912. {
  40913. name: "Kaiju",
  40914. height: math.unit(240, "feet")
  40915. },
  40916. {
  40917. name: "Macro",
  40918. height: math.unit(800, "feet")
  40919. },
  40920. {
  40921. name: "Macro+",
  40922. height: math.unit(2400, "feet")
  40923. },
  40924. {
  40925. name: "Macro++",
  40926. height: math.unit(8000, "feet")
  40927. },
  40928. {
  40929. name: "City-Crushing",
  40930. height: math.unit(24000, "feet")
  40931. },
  40932. {
  40933. name: "Mountain-Mashing",
  40934. height: math.unit(80000, "feet")
  40935. },
  40936. {
  40937. name: "District Demolisher",
  40938. height: math.unit(240000, "feet")
  40939. },
  40940. {
  40941. name: "Tri-County Terror",
  40942. height: math.unit(800000, "feet")
  40943. },
  40944. {
  40945. name: "State Smasher",
  40946. height: math.unit(2.4e6, "feet")
  40947. },
  40948. {
  40949. name: "Nation Nemesis",
  40950. height: math.unit(8e6, "feet")
  40951. },
  40952. {
  40953. name: "Continent Cracker",
  40954. height: math.unit(2.4e7, "feet")
  40955. },
  40956. {
  40957. name: "Planet-Pillaging",
  40958. height: math.unit(8e7, "feet")
  40959. },
  40960. {
  40961. name: "Earth-Eclipsing",
  40962. height: math.unit(2.4e8, "feet")
  40963. },
  40964. {
  40965. name: "Jovian-Jostling",
  40966. height: math.unit(8e8, "feet")
  40967. },
  40968. {
  40969. name: "Gas Giant Gulper",
  40970. height: math.unit(2.4e9, "feet")
  40971. },
  40972. {
  40973. name: "Astral Annihilator",
  40974. height: math.unit(8e9, "feet")
  40975. },
  40976. {
  40977. name: "Celestial Conqueror",
  40978. height: math.unit(2.4e10, "feet")
  40979. },
  40980. {
  40981. name: "Sol-Swallowing",
  40982. height: math.unit(8e10, "feet")
  40983. },
  40984. {
  40985. name: "Hunter of the Heavens",
  40986. height: math.unit(2.4e13, "feet")
  40987. },
  40988. ]
  40989. ))
  40990. characterMakers.push(() => makeCharacter(
  40991. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40992. {
  40993. front: {
  40994. height: math.unit(6 + 8/12, "feet"),
  40995. weight: math.unit(250, "kilograms"),
  40996. volume: math.unit(28, "liters"),
  40997. name: "Front",
  40998. image: {
  40999. source: "./media/characters/rebecca-pawlson/front.svg",
  41000. extra: 1737/1596,
  41001. bottom: 107/1844
  41002. }
  41003. },
  41004. back: {
  41005. height: math.unit(6 + 8/12, "feet"),
  41006. weight: math.unit(250, "kilograms"),
  41007. volume: math.unit(28, "liters"),
  41008. name: "Back",
  41009. image: {
  41010. source: "./media/characters/rebecca-pawlson/back.svg",
  41011. extra: 1702/1523,
  41012. bottom: 86/1788
  41013. }
  41014. },
  41015. },
  41016. [
  41017. {
  41018. name: "Normal",
  41019. height: math.unit(6 + 8/12, "feet")
  41020. },
  41021. {
  41022. name: "Mini Macro",
  41023. height: math.unit(10, "feet"),
  41024. default: true
  41025. },
  41026. {
  41027. name: "Macro",
  41028. height: math.unit(100, "feet")
  41029. },
  41030. {
  41031. name: "Mega Macro",
  41032. height: math.unit(2500, "feet")
  41033. },
  41034. {
  41035. name: "Giga Macro",
  41036. height: math.unit(50, "miles")
  41037. },
  41038. ]
  41039. ))
  41040. characterMakers.push(() => makeCharacter(
  41041. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41042. {
  41043. front: {
  41044. height: math.unit(7 + 6/12, "feet"),
  41045. weight: math.unit(600, "lb"),
  41046. name: "Front",
  41047. image: {
  41048. source: "./media/characters/moxie-nova/front.svg",
  41049. extra: 1734/1652,
  41050. bottom: 41/1775
  41051. }
  41052. },
  41053. },
  41054. [
  41055. {
  41056. name: "Normal",
  41057. height: math.unit(7 + 6/12, "feet"),
  41058. default: true
  41059. },
  41060. ]
  41061. ))
  41062. characterMakers.push(() => makeCharacter(
  41063. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41064. {
  41065. goat: {
  41066. height: math.unit(4, "feet"),
  41067. weight: math.unit(180, "lb"),
  41068. name: "Goat",
  41069. image: {
  41070. source: "./media/characters/tiffany/goat.svg",
  41071. extra: 1845/1595,
  41072. bottom: 106/1951
  41073. }
  41074. },
  41075. front: {
  41076. height: math.unit(5, "feet"),
  41077. weight: math.unit(150, "lb"),
  41078. name: "Foxcoon",
  41079. image: {
  41080. source: "./media/characters/tiffany/foxcoon.svg",
  41081. extra: 1941/1845,
  41082. bottom: 58/1999
  41083. }
  41084. },
  41085. },
  41086. [
  41087. {
  41088. name: "Normal",
  41089. height: math.unit(5, "feet"),
  41090. default: true
  41091. },
  41092. ]
  41093. ))
  41094. characterMakers.push(() => makeCharacter(
  41095. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41096. {
  41097. front: {
  41098. height: math.unit(8, "feet"),
  41099. weight: math.unit(300, "lb"),
  41100. name: "Front",
  41101. image: {
  41102. source: "./media/characters/raxinath/front.svg",
  41103. extra: 1407/1309,
  41104. bottom: 39/1446
  41105. }
  41106. },
  41107. back: {
  41108. height: math.unit(8, "feet"),
  41109. weight: math.unit(300, "lb"),
  41110. name: "Back",
  41111. image: {
  41112. source: "./media/characters/raxinath/back.svg",
  41113. extra: 1405/1315,
  41114. bottom: 9/1414
  41115. }
  41116. },
  41117. },
  41118. [
  41119. {
  41120. name: "Speck",
  41121. height: math.unit(0.5, "nm")
  41122. },
  41123. {
  41124. name: "Micro",
  41125. height: math.unit(3, "inches")
  41126. },
  41127. {
  41128. name: "Kobold",
  41129. height: math.unit(3, "feet")
  41130. },
  41131. {
  41132. name: "Normal",
  41133. height: math.unit(8, "feet"),
  41134. default: true
  41135. },
  41136. {
  41137. name: "Giant",
  41138. height: math.unit(50, "feet")
  41139. },
  41140. {
  41141. name: "Macro",
  41142. height: math.unit(1000, "feet")
  41143. },
  41144. {
  41145. name: "Megamacro",
  41146. height: math.unit(1, "mile")
  41147. },
  41148. ]
  41149. ))
  41150. characterMakers.push(() => makeCharacter(
  41151. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41152. {
  41153. front: {
  41154. height: math.unit(10, "feet"),
  41155. weight: math.unit(1442, "lb"),
  41156. name: "Front",
  41157. image: {
  41158. source: "./media/characters/mal-dragon/front.svg",
  41159. extra: 1515/1444,
  41160. bottom: 113/1628
  41161. }
  41162. },
  41163. back: {
  41164. height: math.unit(10, "feet"),
  41165. weight: math.unit(1442, "lb"),
  41166. name: "Back",
  41167. image: {
  41168. source: "./media/characters/mal-dragon/back.svg",
  41169. extra: 1527/1434,
  41170. bottom: 25/1552
  41171. }
  41172. },
  41173. },
  41174. [
  41175. {
  41176. name: "Mortal Interaction",
  41177. height: math.unit(10, "feet"),
  41178. default: true
  41179. },
  41180. {
  41181. name: "Large",
  41182. height: math.unit(30, "feet")
  41183. },
  41184. {
  41185. name: "Kaiju",
  41186. height: math.unit(300, "feet")
  41187. },
  41188. {
  41189. name: "Megamacro",
  41190. height: math.unit(10000, "feet")
  41191. },
  41192. {
  41193. name: "Continent Cracker",
  41194. height: math.unit(30000000, "feet")
  41195. },
  41196. {
  41197. name: "Sol-Swallowing",
  41198. height: math.unit(1e11, "feet")
  41199. },
  41200. {
  41201. name: "Light Universal",
  41202. height: math.unit(5, "universes")
  41203. },
  41204. {
  41205. name: "Universe Atoms",
  41206. height: math.unit(1.829e9, "universes")
  41207. },
  41208. {
  41209. name: "Light Multiversal",
  41210. height: math.unit(5, "multiverses")
  41211. },
  41212. {
  41213. name: "Multiverse Atoms",
  41214. height: math.unit(1.829e9, "multiverses")
  41215. },
  41216. {
  41217. name: "Fabric of Time",
  41218. height: math.unit(1e262, "multiverses")
  41219. },
  41220. ]
  41221. ))
  41222. characterMakers.push(() => makeCharacter(
  41223. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41224. {
  41225. front: {
  41226. height: math.unit(9, "feet"),
  41227. weight: math.unit(1050, "lb"),
  41228. name: "Front",
  41229. image: {
  41230. source: "./media/characters/tabitha/front.svg",
  41231. extra: 2083/1994,
  41232. bottom: 68/2151
  41233. }
  41234. },
  41235. },
  41236. [
  41237. {
  41238. name: "Baseline",
  41239. height: math.unit(9, "feet"),
  41240. default: true
  41241. },
  41242. {
  41243. name: "Giant",
  41244. height: math.unit(90, "feet")
  41245. },
  41246. {
  41247. name: "Macro",
  41248. height: math.unit(900, "feet")
  41249. },
  41250. {
  41251. name: "Megamacro",
  41252. height: math.unit(9000, "feet")
  41253. },
  41254. {
  41255. name: "City-Crushing",
  41256. height: math.unit(27000, "feet")
  41257. },
  41258. {
  41259. name: "Mountain-Mashing",
  41260. height: math.unit(90000, "feet")
  41261. },
  41262. {
  41263. name: "Nation Nemesis",
  41264. height: math.unit(9e6, "feet")
  41265. },
  41266. {
  41267. name: "Continent Cracker",
  41268. height: math.unit(27e6, "feet")
  41269. },
  41270. {
  41271. name: "Earth-Eclipsing",
  41272. height: math.unit(2.7e8, "feet")
  41273. },
  41274. {
  41275. name: "Gas Giant Gulper",
  41276. height: math.unit(2.7e9, "feet")
  41277. },
  41278. {
  41279. name: "Sol-Swallowing",
  41280. height: math.unit(9e10, "feet")
  41281. },
  41282. {
  41283. name: "Galaxy Gulper",
  41284. height: math.unit(9, "galaxies")
  41285. },
  41286. {
  41287. name: "Cosmos Churner",
  41288. height: math.unit(9, "universes")
  41289. },
  41290. ]
  41291. ))
  41292. characterMakers.push(() => makeCharacter(
  41293. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41294. {
  41295. front: {
  41296. height: math.unit(160, "cm"),
  41297. weight: math.unit(55, "kg"),
  41298. name: "Front",
  41299. image: {
  41300. source: "./media/characters/tow/front.svg",
  41301. extra: 1751/1722,
  41302. bottom: 74/1825
  41303. }
  41304. },
  41305. },
  41306. [
  41307. {
  41308. name: "Norm",
  41309. height: math.unit(160, "cm")
  41310. },
  41311. {
  41312. name: "Casual",
  41313. height: math.unit(3200, "m"),
  41314. default: true
  41315. },
  41316. {
  41317. name: "Show-Off",
  41318. height: math.unit(160, "km")
  41319. },
  41320. ]
  41321. ))
  41322. characterMakers.push(() => makeCharacter(
  41323. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41324. {
  41325. front: {
  41326. height: math.unit(7 + 11/12, "feet"),
  41327. weight: math.unit(342.8, "lb"),
  41328. name: "Front",
  41329. image: {
  41330. source: "./media/characters/vivian-orca-dragon/front.svg",
  41331. extra: 1890/1865,
  41332. bottom: 28/1918
  41333. }
  41334. },
  41335. },
  41336. [
  41337. {
  41338. name: "Micro",
  41339. height: math.unit(5, "inches")
  41340. },
  41341. {
  41342. name: "Normal",
  41343. height: math.unit(7 + 11/12, "feet"),
  41344. default: true
  41345. },
  41346. {
  41347. name: "Macro",
  41348. height: math.unit(395 + 7/12, "feet")
  41349. },
  41350. ]
  41351. ))
  41352. characterMakers.push(() => makeCharacter(
  41353. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41354. {
  41355. side: {
  41356. height: math.unit(10, "feet"),
  41357. weight: math.unit(1442, "lb"),
  41358. name: "Side",
  41359. image: {
  41360. source: "./media/characters/lotherakon/side.svg",
  41361. extra: 1604/1497,
  41362. bottom: 89/1693
  41363. }
  41364. },
  41365. },
  41366. [
  41367. {
  41368. name: "Mortal Interaction",
  41369. height: math.unit(10, "feet")
  41370. },
  41371. {
  41372. name: "Large",
  41373. height: math.unit(30, "feet"),
  41374. default: true
  41375. },
  41376. {
  41377. name: "Giant",
  41378. height: math.unit(100, "feet")
  41379. },
  41380. {
  41381. name: "Kaiju",
  41382. height: math.unit(300, "feet")
  41383. },
  41384. {
  41385. name: "Macro",
  41386. height: math.unit(1000, "feet")
  41387. },
  41388. {
  41389. name: "Macro+",
  41390. height: math.unit(3000, "feet")
  41391. },
  41392. {
  41393. name: "Megamacro",
  41394. height: math.unit(10000, "feet")
  41395. },
  41396. {
  41397. name: "City-Crushing",
  41398. height: math.unit(30000, "feet")
  41399. },
  41400. {
  41401. name: "Continent Cracker",
  41402. height: math.unit(30e6, "feet")
  41403. },
  41404. {
  41405. name: "Earth Eclipsing",
  41406. height: math.unit(3e8, "feet")
  41407. },
  41408. {
  41409. name: "Gas Giant Gulper",
  41410. height: math.unit(3e9, "feet")
  41411. },
  41412. {
  41413. name: "Sol-Swallowing",
  41414. height: math.unit(1e11, "feet")
  41415. },
  41416. {
  41417. name: "System Swallower",
  41418. height: math.unit(3e14, "feet")
  41419. },
  41420. {
  41421. name: "Galaxy Gulper",
  41422. height: math.unit(10, "galaxies")
  41423. },
  41424. {
  41425. name: "Light Universal",
  41426. height: math.unit(5, "universes")
  41427. },
  41428. {
  41429. name: "Universe Palm",
  41430. height: math.unit(20, "universes")
  41431. },
  41432. {
  41433. name: "Light Multiversal",
  41434. height: math.unit(5, "multiverses")
  41435. },
  41436. {
  41437. name: "Multiverse Palm",
  41438. height: math.unit(20, "multiverses")
  41439. },
  41440. {
  41441. name: "Inferno Incarnate",
  41442. height: math.unit(1e7, "multiverses")
  41443. },
  41444. ]
  41445. ))
  41446. characterMakers.push(() => makeCharacter(
  41447. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41448. {
  41449. front: {
  41450. height: math.unit(8, "feet"),
  41451. weight: math.unit(1200, "lb"),
  41452. name: "Front",
  41453. image: {
  41454. source: "./media/characters/malithee/front.svg",
  41455. extra: 1675/1640,
  41456. bottom: 162/1837
  41457. }
  41458. },
  41459. },
  41460. [
  41461. {
  41462. name: "Mortal Interaction",
  41463. height: math.unit(8, "feet"),
  41464. default: true
  41465. },
  41466. {
  41467. name: "Large",
  41468. height: math.unit(24, "feet")
  41469. },
  41470. {
  41471. name: "Kaiju",
  41472. height: math.unit(240, "feet")
  41473. },
  41474. {
  41475. name: "Megamacro",
  41476. height: math.unit(8000, "feet")
  41477. },
  41478. {
  41479. name: "Continent Cracker",
  41480. height: math.unit(24e6, "feet")
  41481. },
  41482. {
  41483. name: "Earth-Eclipsing",
  41484. height: math.unit(2.4e8, "feet")
  41485. },
  41486. {
  41487. name: "Sol-Swallowing",
  41488. height: math.unit(8e10, "feet")
  41489. },
  41490. {
  41491. name: "Galaxy Gulper",
  41492. height: math.unit(8, "galaxies")
  41493. },
  41494. {
  41495. name: "Light Universal",
  41496. height: math.unit(4, "universes")
  41497. },
  41498. {
  41499. name: "Universe Atoms",
  41500. height: math.unit(1.829e9, "universes")
  41501. },
  41502. {
  41503. name: "Light Multiversal",
  41504. height: math.unit(4, "multiverses")
  41505. },
  41506. {
  41507. name: "Multiverse Atoms",
  41508. height: math.unit(1.829e9, "multiverses")
  41509. },
  41510. {
  41511. name: "Nigh-Omnipresence",
  41512. height: math.unit(8e261, "multiverses")
  41513. },
  41514. ]
  41515. ))
  41516. characterMakers.push(() => makeCharacter(
  41517. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41518. {
  41519. front: {
  41520. height: math.unit(10, "feet"),
  41521. weight: math.unit(1500, "lb"),
  41522. name: "Front",
  41523. image: {
  41524. source: "./media/characters/miles-thestia/front.svg",
  41525. extra: 1812/1727,
  41526. bottom: 86/1898
  41527. }
  41528. },
  41529. back: {
  41530. height: math.unit(10, "feet"),
  41531. weight: math.unit(1500, "lb"),
  41532. name: "Back",
  41533. image: {
  41534. source: "./media/characters/miles-thestia/back.svg",
  41535. extra: 1799/1690,
  41536. bottom: 47/1846
  41537. }
  41538. },
  41539. frontNsfw: {
  41540. height: math.unit(10, "feet"),
  41541. weight: math.unit(1500, "lb"),
  41542. name: "Front (NSFW)",
  41543. image: {
  41544. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41545. extra: 1812/1727,
  41546. bottom: 86/1898
  41547. }
  41548. },
  41549. },
  41550. [
  41551. {
  41552. name: "Mini-Macro",
  41553. height: math.unit(10, "feet"),
  41554. default: true
  41555. },
  41556. ]
  41557. ))
  41558. characterMakers.push(() => makeCharacter(
  41559. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41560. {
  41561. front: {
  41562. height: math.unit(25, "feet"),
  41563. name: "Front",
  41564. image: {
  41565. source: "./media/characters/titan-s-wulf/front.svg",
  41566. extra: 1560/1484,
  41567. bottom: 76/1636
  41568. }
  41569. },
  41570. },
  41571. [
  41572. {
  41573. name: "Smallest",
  41574. height: math.unit(25, "feet"),
  41575. default: true
  41576. },
  41577. {
  41578. name: "Normal",
  41579. height: math.unit(200, "feet")
  41580. },
  41581. {
  41582. name: "Macro",
  41583. height: math.unit(200000, "feet")
  41584. },
  41585. {
  41586. name: "Multiversal Original",
  41587. height: math.unit(10000, "multiverses")
  41588. },
  41589. ]
  41590. ))
  41591. characterMakers.push(() => makeCharacter(
  41592. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41593. {
  41594. front: {
  41595. height: math.unit(8, "feet"),
  41596. weight: math.unit(553, "lb"),
  41597. name: "Front",
  41598. image: {
  41599. source: "./media/characters/tawendeh/front.svg",
  41600. extra: 2365/2268,
  41601. bottom: 83/2448
  41602. }
  41603. },
  41604. frontClothed: {
  41605. height: math.unit(8, "feet"),
  41606. weight: math.unit(553, "lb"),
  41607. name: "Front (Clothed)",
  41608. image: {
  41609. source: "./media/characters/tawendeh/front-clothed.svg",
  41610. extra: 2365/2268,
  41611. bottom: 83/2448
  41612. }
  41613. },
  41614. back: {
  41615. height: math.unit(8, "feet"),
  41616. weight: math.unit(553, "lb"),
  41617. name: "Back",
  41618. image: {
  41619. source: "./media/characters/tawendeh/back.svg",
  41620. extra: 2397/2294,
  41621. bottom: 42/2439
  41622. }
  41623. },
  41624. },
  41625. [
  41626. {
  41627. name: "Mortal Interaction",
  41628. height: math.unit(8, "feet"),
  41629. default: true
  41630. },
  41631. {
  41632. name: "Giant",
  41633. height: math.unit(80, "feet")
  41634. },
  41635. {
  41636. name: "Macro",
  41637. height: math.unit(800, "feet")
  41638. },
  41639. {
  41640. name: "Megamacro",
  41641. height: math.unit(8000, "feet")
  41642. },
  41643. {
  41644. name: "City-Crushing",
  41645. height: math.unit(24000, "feet")
  41646. },
  41647. {
  41648. name: "Mountain-Mashing",
  41649. height: math.unit(80000, "feet")
  41650. },
  41651. {
  41652. name: "Nation Nemesis",
  41653. height: math.unit(8e6, "feet")
  41654. },
  41655. {
  41656. name: "Continent Cracker",
  41657. height: math.unit(24e6, "feet")
  41658. },
  41659. {
  41660. name: "Earth-Eclipsing",
  41661. height: math.unit(2.4e8, "feet")
  41662. },
  41663. {
  41664. name: "Gas Giant Gulper",
  41665. height: math.unit(2.4e9, "feet")
  41666. },
  41667. {
  41668. name: "Sol-Swallowing",
  41669. height: math.unit(8e10, "feet")
  41670. },
  41671. {
  41672. name: "Galaxy Gulper",
  41673. height: math.unit(8, "galaxies")
  41674. },
  41675. {
  41676. name: "Cosmos Churner",
  41677. height: math.unit(8, "universes")
  41678. },
  41679. {
  41680. name: "Omnipotent Otter",
  41681. height: math.unit(80, "universes")
  41682. },
  41683. ]
  41684. ))
  41685. characterMakers.push(() => makeCharacter(
  41686. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41687. {
  41688. front: {
  41689. height: math.unit(2.6, "meters"),
  41690. weight: math.unit(900, "kg"),
  41691. name: "Front",
  41692. image: {
  41693. source: "./media/characters/neesha/front.svg",
  41694. extra: 1803/1653,
  41695. bottom: 128/1931
  41696. }
  41697. },
  41698. },
  41699. [
  41700. {
  41701. name: "Normal",
  41702. height: math.unit(2.6, "meters"),
  41703. default: true
  41704. },
  41705. {
  41706. name: "Macro",
  41707. height: math.unit(50, "meters")
  41708. },
  41709. ]
  41710. ))
  41711. characterMakers.push(() => makeCharacter(
  41712. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41713. {
  41714. front: {
  41715. height: math.unit(5, "feet"),
  41716. weight: math.unit(185, "lb"),
  41717. name: "Front",
  41718. image: {
  41719. source: "./media/characters/kyera/front.svg",
  41720. extra: 1875/1790,
  41721. bottom: 96/1971
  41722. }
  41723. },
  41724. },
  41725. [
  41726. {
  41727. name: "Normal",
  41728. height: math.unit(5, "feet"),
  41729. default: true
  41730. },
  41731. ]
  41732. ))
  41733. characterMakers.push(() => makeCharacter(
  41734. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41735. {
  41736. front: {
  41737. height: math.unit(7 + 6/12, "feet"),
  41738. weight: math.unit(540, "lb"),
  41739. name: "Front",
  41740. image: {
  41741. source: "./media/characters/yuko/front.svg",
  41742. extra: 1282/1222,
  41743. bottom: 101/1383
  41744. }
  41745. },
  41746. frontClothed: {
  41747. height: math.unit(7 + 6/12, "feet"),
  41748. weight: math.unit(540, "lb"),
  41749. name: "Front (Clothed)",
  41750. image: {
  41751. source: "./media/characters/yuko/front-clothed.svg",
  41752. extra: 1282/1222,
  41753. bottom: 101/1383
  41754. }
  41755. },
  41756. },
  41757. [
  41758. {
  41759. name: "Normal",
  41760. height: math.unit(7 + 6/12, "feet"),
  41761. default: true
  41762. },
  41763. {
  41764. name: "Macro",
  41765. height: math.unit(26 + 9/12, "feet")
  41766. },
  41767. {
  41768. name: "Megamacro",
  41769. height: math.unit(300, "feet")
  41770. },
  41771. {
  41772. name: "Gigamacro",
  41773. height: math.unit(5000, "feet")
  41774. },
  41775. {
  41776. name: "Planetary",
  41777. height: math.unit(10000, "miles")
  41778. },
  41779. ]
  41780. ))
  41781. characterMakers.push(() => makeCharacter(
  41782. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41783. {
  41784. front: {
  41785. height: math.unit(8 + 2/12, "feet"),
  41786. weight: math.unit(600, "lb"),
  41787. name: "Front",
  41788. image: {
  41789. source: "./media/characters/deam-nitrel/front.svg",
  41790. extra: 1308/1234,
  41791. bottom: 125/1433
  41792. }
  41793. },
  41794. },
  41795. [
  41796. {
  41797. name: "Normal",
  41798. height: math.unit(8 + 2/12, "feet"),
  41799. default: true
  41800. },
  41801. ]
  41802. ))
  41803. characterMakers.push(() => makeCharacter(
  41804. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41805. {
  41806. front: {
  41807. height: math.unit(6.1, "feet"),
  41808. weight: math.unit(180, "lb"),
  41809. name: "Front",
  41810. image: {
  41811. source: "./media/characters/skyress/front.svg",
  41812. extra: 1045/915,
  41813. bottom: 28/1073
  41814. }
  41815. },
  41816. maw: {
  41817. height: math.unit(1, "feet"),
  41818. name: "Maw",
  41819. image: {
  41820. source: "./media/characters/skyress/maw.svg"
  41821. }
  41822. },
  41823. },
  41824. [
  41825. {
  41826. name: "Normal",
  41827. height: math.unit(6.1, "feet"),
  41828. default: true
  41829. },
  41830. {
  41831. name: "Macro",
  41832. height: math.unit(200, "feet")
  41833. },
  41834. ]
  41835. ))
  41836. characterMakers.push(() => makeCharacter(
  41837. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41838. {
  41839. front: {
  41840. height: math.unit(4 + 2/12, "feet"),
  41841. weight: math.unit(40, "kg"),
  41842. name: "Front",
  41843. image: {
  41844. source: "./media/characters/amethyst-jones/front.svg",
  41845. extra: 1220/1150,
  41846. bottom: 101/1321
  41847. }
  41848. },
  41849. },
  41850. [
  41851. {
  41852. name: "Normal",
  41853. height: math.unit(4 + 2/12, "feet"),
  41854. default: true
  41855. },
  41856. ]
  41857. ))
  41858. characterMakers.push(() => makeCharacter(
  41859. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41860. {
  41861. front: {
  41862. height: math.unit(1.7, "m"),
  41863. weight: math.unit(135, "lb"),
  41864. name: "Front",
  41865. image: {
  41866. source: "./media/characters/jade/front.svg",
  41867. extra: 1818/1767,
  41868. bottom: 32/1850
  41869. }
  41870. },
  41871. back: {
  41872. height: math.unit(1.7, "m"),
  41873. weight: math.unit(135, "lb"),
  41874. name: "Back",
  41875. image: {
  41876. source: "./media/characters/jade/back.svg",
  41877. extra: 1869/1809,
  41878. bottom: 35/1904
  41879. }
  41880. },
  41881. hand: {
  41882. height: math.unit(0.24, "m"),
  41883. name: "Hand",
  41884. image: {
  41885. source: "./media/characters/jade/hand.svg"
  41886. }
  41887. },
  41888. foot: {
  41889. height: math.unit(0.263, "m"),
  41890. name: "Foot",
  41891. image: {
  41892. source: "./media/characters/jade/foot.svg"
  41893. }
  41894. },
  41895. dick: {
  41896. height: math.unit(0.47, "m"),
  41897. name: "Dick",
  41898. image: {
  41899. source: "./media/characters/jade/dick.svg"
  41900. }
  41901. },
  41902. },
  41903. [
  41904. {
  41905. name: "Micro",
  41906. height: math.unit(22, "cm")
  41907. },
  41908. {
  41909. name: "Normal",
  41910. height: math.unit(1.7, "m"),
  41911. default: true
  41912. },
  41913. {
  41914. name: "Macro",
  41915. height: math.unit(152, "m")
  41916. },
  41917. ]
  41918. ))
  41919. characterMakers.push(() => makeCharacter(
  41920. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41921. {
  41922. front: {
  41923. height: math.unit(100, "miles"),
  41924. weight: math.unit(20000, "tons"),
  41925. name: "Front",
  41926. image: {
  41927. source: "./media/characters/cookie/front.svg",
  41928. extra: 1125/1070,
  41929. bottom: 30/1155
  41930. }
  41931. },
  41932. },
  41933. [
  41934. {
  41935. name: "Big",
  41936. height: math.unit(50, "feet")
  41937. },
  41938. {
  41939. name: "Macro",
  41940. height: math.unit(100, "miles"),
  41941. default: true
  41942. },
  41943. {
  41944. name: "Megamacro",
  41945. height: math.unit(90000, "miles")
  41946. },
  41947. ]
  41948. ))
  41949. characterMakers.push(() => makeCharacter(
  41950. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41951. {
  41952. front: {
  41953. height: math.unit(6, "feet"),
  41954. weight: math.unit(145, "lb"),
  41955. name: "Front",
  41956. image: {
  41957. source: "./media/characters/farzian/front.svg",
  41958. extra: 1902/1693,
  41959. bottom: 108/2010
  41960. }
  41961. },
  41962. },
  41963. [
  41964. {
  41965. name: "Macro",
  41966. height: math.unit(500, "feet"),
  41967. default: true
  41968. },
  41969. ]
  41970. ))
  41971. characterMakers.push(() => makeCharacter(
  41972. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41973. {
  41974. front: {
  41975. height: math.unit(3 + 6/12, "feet"),
  41976. weight: math.unit(50, "lb"),
  41977. name: "Front",
  41978. image: {
  41979. source: "./media/characters/kimberly-tilson/front.svg",
  41980. extra: 1400/1322,
  41981. bottom: 36/1436
  41982. }
  41983. },
  41984. back: {
  41985. height: math.unit(3 + 6/12, "feet"),
  41986. weight: math.unit(50, "lb"),
  41987. name: "Back",
  41988. image: {
  41989. source: "./media/characters/kimberly-tilson/back.svg",
  41990. extra: 1370/1307,
  41991. bottom: 20/1390
  41992. }
  41993. },
  41994. },
  41995. [
  41996. {
  41997. name: "Normal",
  41998. height: math.unit(3 + 6/12, "feet"),
  41999. default: true
  42000. },
  42001. ]
  42002. ))
  42003. characterMakers.push(() => makeCharacter(
  42004. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42005. {
  42006. front: {
  42007. height: math.unit(1148, "feet"),
  42008. weight: math.unit(34057, "lb"),
  42009. name: "Front",
  42010. image: {
  42011. source: "./media/characters/harthos/front.svg",
  42012. extra: 1391/1339,
  42013. bottom: 13/1404
  42014. }
  42015. },
  42016. },
  42017. [
  42018. {
  42019. name: "Macro",
  42020. height: math.unit(1148, "feet"),
  42021. default: true
  42022. },
  42023. ]
  42024. ))
  42025. characterMakers.push(() => makeCharacter(
  42026. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42027. {
  42028. front: {
  42029. height: math.unit(15, "feet"),
  42030. name: "Front",
  42031. image: {
  42032. source: "./media/characters/hypatia/front.svg",
  42033. extra: 1653/1591,
  42034. bottom: 79/1732
  42035. }
  42036. },
  42037. },
  42038. [
  42039. {
  42040. name: "Normal",
  42041. height: math.unit(15, "feet")
  42042. },
  42043. {
  42044. name: "Small",
  42045. height: math.unit(300, "feet")
  42046. },
  42047. {
  42048. name: "Macro",
  42049. height: math.unit(2500, "feet"),
  42050. default: true
  42051. },
  42052. {
  42053. name: "Mega Macro",
  42054. height: math.unit(1500, "miles")
  42055. },
  42056. {
  42057. name: "Giga Macro",
  42058. height: math.unit(1.5e6, "miles")
  42059. },
  42060. ]
  42061. ))
  42062. characterMakers.push(() => makeCharacter(
  42063. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42064. {
  42065. front: {
  42066. height: math.unit(6, "feet"),
  42067. weight: math.unit(200, "lb"),
  42068. name: "Front",
  42069. image: {
  42070. source: "./media/characters/wulver/front.svg",
  42071. extra: 1724/1632,
  42072. bottom: 130/1854
  42073. }
  42074. },
  42075. frontNsfw: {
  42076. height: math.unit(6, "feet"),
  42077. weight: math.unit(200, "lb"),
  42078. name: "Front (NSFW)",
  42079. image: {
  42080. source: "./media/characters/wulver/front-nsfw.svg",
  42081. extra: 1724/1632,
  42082. bottom: 130/1854
  42083. }
  42084. },
  42085. },
  42086. [
  42087. {
  42088. name: "Human-Sized",
  42089. height: math.unit(6, "feet")
  42090. },
  42091. {
  42092. name: "Normal",
  42093. height: math.unit(4, "meters"),
  42094. default: true
  42095. },
  42096. {
  42097. name: "Large",
  42098. height: math.unit(6, "m")
  42099. },
  42100. ]
  42101. ))
  42102. characterMakers.push(() => makeCharacter(
  42103. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42104. {
  42105. front: {
  42106. height: math.unit(7, "feet"),
  42107. name: "Front",
  42108. image: {
  42109. source: "./media/characters/maru/front.svg",
  42110. extra: 1595/1570,
  42111. bottom: 0/1595
  42112. }
  42113. },
  42114. },
  42115. [
  42116. {
  42117. name: "Normal",
  42118. height: math.unit(7, "feet"),
  42119. default: true
  42120. },
  42121. {
  42122. name: "Macro",
  42123. height: math.unit(700, "feet")
  42124. },
  42125. {
  42126. name: "Mega Macro",
  42127. height: math.unit(25, "miles")
  42128. },
  42129. ]
  42130. ))
  42131. characterMakers.push(() => makeCharacter(
  42132. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42133. {
  42134. front: {
  42135. height: math.unit(6, "feet"),
  42136. weight: math.unit(170, "lb"),
  42137. name: "Front",
  42138. image: {
  42139. source: "./media/characters/xenon/front.svg",
  42140. extra: 1376/1305,
  42141. bottom: 56/1432
  42142. }
  42143. },
  42144. back: {
  42145. height: math.unit(6, "feet"),
  42146. weight: math.unit(170, "lb"),
  42147. name: "Back",
  42148. image: {
  42149. source: "./media/characters/xenon/back.svg",
  42150. extra: 1328/1259,
  42151. bottom: 95/1423
  42152. }
  42153. },
  42154. maw: {
  42155. height: math.unit(0.52, "feet"),
  42156. name: "Maw",
  42157. image: {
  42158. source: "./media/characters/xenon/maw.svg"
  42159. }
  42160. },
  42161. handLeft: {
  42162. height: math.unit(0.82 * 169 / 153, "feet"),
  42163. name: "Hand (Left)",
  42164. image: {
  42165. source: "./media/characters/xenon/hand-left.svg"
  42166. }
  42167. },
  42168. handRight: {
  42169. height: math.unit(0.82, "feet"),
  42170. name: "Hand (Right)",
  42171. image: {
  42172. source: "./media/characters/xenon/hand-right.svg"
  42173. }
  42174. },
  42175. footLeft: {
  42176. height: math.unit(1.13, "feet"),
  42177. name: "Foot (Left)",
  42178. image: {
  42179. source: "./media/characters/xenon/foot-left.svg"
  42180. }
  42181. },
  42182. footRight: {
  42183. height: math.unit(1.13 * 194 / 196, "feet"),
  42184. name: "Foot (Right)",
  42185. image: {
  42186. source: "./media/characters/xenon/foot-right.svg"
  42187. }
  42188. },
  42189. },
  42190. [
  42191. {
  42192. name: "Micro",
  42193. height: math.unit(0.8, "inches")
  42194. },
  42195. {
  42196. name: "Normal",
  42197. height: math.unit(6, "feet")
  42198. },
  42199. {
  42200. name: "Macro",
  42201. height: math.unit(50, "feet"),
  42202. default: true
  42203. },
  42204. {
  42205. name: "Macro+",
  42206. height: math.unit(250, "feet")
  42207. },
  42208. {
  42209. name: "Megamacro",
  42210. height: math.unit(1500, "feet")
  42211. },
  42212. ]
  42213. ))
  42214. characterMakers.push(() => makeCharacter(
  42215. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42216. {
  42217. front: {
  42218. height: math.unit(7 + 5/12, "feet"),
  42219. name: "Front",
  42220. image: {
  42221. source: "./media/characters/zane/front.svg",
  42222. extra: 1260/1203,
  42223. bottom: 94/1354
  42224. }
  42225. },
  42226. back: {
  42227. height: math.unit(5.05, "feet"),
  42228. name: "Back",
  42229. image: {
  42230. source: "./media/characters/zane/back.svg",
  42231. extra: 893/829,
  42232. bottom: 30/923
  42233. }
  42234. },
  42235. werewolf: {
  42236. height: math.unit(11, "feet"),
  42237. name: "Werewolf",
  42238. image: {
  42239. source: "./media/characters/zane/werewolf.svg",
  42240. extra: 1383/1323,
  42241. bottom: 89/1472
  42242. }
  42243. },
  42244. foot: {
  42245. height: math.unit(1.46, "feet"),
  42246. name: "Foot",
  42247. image: {
  42248. source: "./media/characters/zane/foot.svg"
  42249. }
  42250. },
  42251. footFront: {
  42252. height: math.unit(0.784, "feet"),
  42253. name: "Foot (Front)",
  42254. image: {
  42255. source: "./media/characters/zane/foot-front.svg"
  42256. }
  42257. },
  42258. dick: {
  42259. height: math.unit(1.95, "feet"),
  42260. name: "Dick",
  42261. image: {
  42262. source: "./media/characters/zane/dick.svg"
  42263. }
  42264. },
  42265. dickWerewolf: {
  42266. height: math.unit(3.77, "feet"),
  42267. name: "Dick (Werewolf)",
  42268. image: {
  42269. source: "./media/characters/zane/dick.svg"
  42270. }
  42271. },
  42272. },
  42273. [
  42274. {
  42275. name: "Normal",
  42276. height: math.unit(7 + 5/12, "feet"),
  42277. default: true
  42278. },
  42279. ]
  42280. ))
  42281. characterMakers.push(() => makeCharacter(
  42282. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42283. {
  42284. front: {
  42285. height: math.unit(6 + 2/12, "feet"),
  42286. weight: math.unit(284, "lb"),
  42287. name: "Front",
  42288. image: {
  42289. source: "./media/characters/benni-desparque/front.svg",
  42290. extra: 1353/1126,
  42291. bottom: 69/1422
  42292. }
  42293. },
  42294. },
  42295. [
  42296. {
  42297. name: "Civilian",
  42298. height: math.unit(6 + 2/12, "feet")
  42299. },
  42300. {
  42301. name: "Normal",
  42302. height: math.unit(98, "feet"),
  42303. default: true
  42304. },
  42305. {
  42306. name: "Kaiju Fighter",
  42307. height: math.unit(268, "feet")
  42308. },
  42309. ]
  42310. ))
  42311. characterMakers.push(() => makeCharacter(
  42312. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42313. {
  42314. front: {
  42315. height: math.unit(5, "feet"),
  42316. weight: math.unit(105, "lb"),
  42317. name: "Front",
  42318. image: {
  42319. source: "./media/characters/maxine/front.svg",
  42320. extra: 1386/1250,
  42321. bottom: 71/1457
  42322. }
  42323. },
  42324. },
  42325. [
  42326. {
  42327. name: "Normal",
  42328. height: math.unit(5, "feet"),
  42329. default: true
  42330. },
  42331. ]
  42332. ))
  42333. characterMakers.push(() => makeCharacter(
  42334. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42335. {
  42336. front: {
  42337. height: math.unit(11 + 7/12, "feet"),
  42338. weight: math.unit(9576, "lb"),
  42339. name: "Front",
  42340. image: {
  42341. source: "./media/characters/scaly/front.svg",
  42342. extra: 888/867,
  42343. bottom: 36/924
  42344. }
  42345. },
  42346. },
  42347. [
  42348. {
  42349. name: "Normal",
  42350. height: math.unit(11 + 7/12, "feet"),
  42351. default: true
  42352. },
  42353. ]
  42354. ))
  42355. characterMakers.push(() => makeCharacter(
  42356. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42357. {
  42358. front: {
  42359. height: math.unit(6 + 3/12, "feet"),
  42360. name: "Front",
  42361. image: {
  42362. source: "./media/characters/saelria/front.svg",
  42363. extra: 1243/1138,
  42364. bottom: 46/1289
  42365. }
  42366. },
  42367. },
  42368. [
  42369. {
  42370. name: "Micro",
  42371. height: math.unit(6, "inches"),
  42372. },
  42373. {
  42374. name: "Normal",
  42375. height: math.unit(6 + 3/12, "feet"),
  42376. default: true
  42377. },
  42378. {
  42379. name: "Macro",
  42380. height: math.unit(25, "feet")
  42381. },
  42382. ]
  42383. ))
  42384. characterMakers.push(() => makeCharacter(
  42385. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42386. {
  42387. front: {
  42388. height: math.unit(80, "meters"),
  42389. weight: math.unit(7000, "tonnes"),
  42390. name: "Front",
  42391. image: {
  42392. source: "./media/characters/tef/front.svg",
  42393. extra: 2036/1991,
  42394. bottom: 54/2090
  42395. }
  42396. },
  42397. back: {
  42398. height: math.unit(80, "meters"),
  42399. weight: math.unit(7000, "tonnes"),
  42400. name: "Back",
  42401. image: {
  42402. source: "./media/characters/tef/back.svg",
  42403. extra: 2036/1991,
  42404. bottom: 54/2090
  42405. }
  42406. },
  42407. },
  42408. [
  42409. {
  42410. name: "Macro",
  42411. height: math.unit(80, "meters"),
  42412. default: true
  42413. },
  42414. ]
  42415. ))
  42416. characterMakers.push(() => makeCharacter(
  42417. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42418. {
  42419. front: {
  42420. height: math.unit(13, "feet"),
  42421. weight: math.unit(6, "tons"),
  42422. name: "Front",
  42423. image: {
  42424. source: "./media/characters/rover/front.svg",
  42425. extra: 1233/1156,
  42426. bottom: 50/1283
  42427. }
  42428. },
  42429. back: {
  42430. height: math.unit(13, "feet"),
  42431. weight: math.unit(6, "tons"),
  42432. name: "Back",
  42433. image: {
  42434. source: "./media/characters/rover/back.svg",
  42435. extra: 1327/1258,
  42436. bottom: 39/1366
  42437. }
  42438. },
  42439. },
  42440. [
  42441. {
  42442. name: "Normal",
  42443. height: math.unit(13, "feet"),
  42444. default: true
  42445. },
  42446. {
  42447. name: "Macro",
  42448. height: math.unit(1300, "feet")
  42449. },
  42450. {
  42451. name: "Megamacro",
  42452. height: math.unit(1300, "miles")
  42453. },
  42454. {
  42455. name: "Gigamacro",
  42456. height: math.unit(1300000, "miles")
  42457. },
  42458. ]
  42459. ))
  42460. characterMakers.push(() => makeCharacter(
  42461. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42462. {
  42463. front: {
  42464. height: math.unit(6, "feet"),
  42465. weight: math.unit(150, "lb"),
  42466. name: "Front",
  42467. image: {
  42468. source: "./media/characters/ariz/front.svg",
  42469. extra: 1401/1346,
  42470. bottom: 5/1406
  42471. }
  42472. },
  42473. },
  42474. [
  42475. {
  42476. name: "Normal",
  42477. height: math.unit(10, "feet"),
  42478. default: true
  42479. },
  42480. ]
  42481. ))
  42482. characterMakers.push(() => makeCharacter(
  42483. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42484. {
  42485. front: {
  42486. height: math.unit(6, "feet"),
  42487. weight: math.unit(140, "lb"),
  42488. name: "Front",
  42489. image: {
  42490. source: "./media/characters/sigrun/front.svg",
  42491. extra: 1418/1359,
  42492. bottom: 27/1445
  42493. }
  42494. },
  42495. },
  42496. [
  42497. {
  42498. name: "Macro",
  42499. height: math.unit(35, "feet"),
  42500. default: true
  42501. },
  42502. ]
  42503. ))
  42504. characterMakers.push(() => makeCharacter(
  42505. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42506. {
  42507. front: {
  42508. height: math.unit(6, "feet"),
  42509. weight: math.unit(150, "lb"),
  42510. name: "Front",
  42511. image: {
  42512. source: "./media/characters/numin/front.svg",
  42513. extra: 1433/1388,
  42514. bottom: 12/1445
  42515. }
  42516. },
  42517. },
  42518. [
  42519. {
  42520. name: "Macro",
  42521. height: math.unit(21.5, "km"),
  42522. default: true
  42523. },
  42524. ]
  42525. ))
  42526. characterMakers.push(() => makeCharacter(
  42527. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42528. {
  42529. front: {
  42530. height: math.unit(6, "feet"),
  42531. weight: math.unit(463, "lb"),
  42532. name: "Front",
  42533. image: {
  42534. source: "./media/characters/melwa/front.svg",
  42535. extra: 1307/1248,
  42536. bottom: 93/1400
  42537. }
  42538. },
  42539. },
  42540. [
  42541. {
  42542. name: "Macro",
  42543. height: math.unit(50, "meters"),
  42544. default: true
  42545. },
  42546. ]
  42547. ))
  42548. characterMakers.push(() => makeCharacter(
  42549. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42550. {
  42551. front: {
  42552. height: math.unit(325, "feet"),
  42553. name: "Front",
  42554. image: {
  42555. source: "./media/characters/zorkaiju/front.svg",
  42556. extra: 1955/1814,
  42557. bottom: 40/1995
  42558. }
  42559. },
  42560. frontExtended: {
  42561. height: math.unit(325, "feet"),
  42562. name: "Front (Extended)",
  42563. image: {
  42564. source: "./media/characters/zorkaiju/front-extended.svg",
  42565. extra: 1955/1814,
  42566. bottom: 40/1995
  42567. }
  42568. },
  42569. side: {
  42570. height: math.unit(325, "feet"),
  42571. name: "Side",
  42572. image: {
  42573. source: "./media/characters/zorkaiju/side.svg",
  42574. extra: 1495/1396,
  42575. bottom: 17/1512
  42576. }
  42577. },
  42578. sideExtended: {
  42579. height: math.unit(325, "feet"),
  42580. name: "Side (Extended)",
  42581. image: {
  42582. source: "./media/characters/zorkaiju/side-extended.svg",
  42583. extra: 1495/1396,
  42584. bottom: 17/1512
  42585. }
  42586. },
  42587. back: {
  42588. height: math.unit(325, "feet"),
  42589. name: "Back",
  42590. image: {
  42591. source: "./media/characters/zorkaiju/back.svg",
  42592. extra: 1959/1821,
  42593. bottom: 31/1990
  42594. }
  42595. },
  42596. backExtended: {
  42597. height: math.unit(325, "feet"),
  42598. name: "Back (Extended)",
  42599. image: {
  42600. source: "./media/characters/zorkaiju/back-extended.svg",
  42601. extra: 1959/1821,
  42602. bottom: 31/1990
  42603. }
  42604. },
  42605. hand: {
  42606. height: math.unit(58.4, "feet"),
  42607. name: "Hand",
  42608. image: {
  42609. source: "./media/characters/zorkaiju/hand.svg"
  42610. }
  42611. },
  42612. handExtended: {
  42613. height: math.unit(61.4, "feet"),
  42614. name: "Hand (Extended)",
  42615. image: {
  42616. source: "./media/characters/zorkaiju/hand-extended.svg"
  42617. }
  42618. },
  42619. foot: {
  42620. height: math.unit(95, "feet"),
  42621. name: "Foot",
  42622. image: {
  42623. source: "./media/characters/zorkaiju/foot.svg"
  42624. }
  42625. },
  42626. leftArm: {
  42627. height: math.unit(59, "feet"),
  42628. name: "Left Arm",
  42629. image: {
  42630. source: "./media/characters/zorkaiju/left-arm.svg"
  42631. }
  42632. },
  42633. rightArm: {
  42634. height: math.unit(59, "feet"),
  42635. name: "Right Arm",
  42636. image: {
  42637. source: "./media/characters/zorkaiju/right-arm.svg"
  42638. }
  42639. },
  42640. leftArmExtended: {
  42641. height: math.unit(59 * 1.033546, "feet"),
  42642. name: "Left Arm (Extended)",
  42643. image: {
  42644. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42645. }
  42646. },
  42647. rightArmExtended: {
  42648. height: math.unit(59 * 1.0496, "feet"),
  42649. name: "Right Arm (Extended)",
  42650. image: {
  42651. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42652. }
  42653. },
  42654. tail: {
  42655. height: math.unit(104, "feet"),
  42656. name: "Tail",
  42657. image: {
  42658. source: "./media/characters/zorkaiju/tail.svg"
  42659. }
  42660. },
  42661. tailExtended: {
  42662. height: math.unit(104, "feet"),
  42663. name: "Tail (Extended)",
  42664. image: {
  42665. source: "./media/characters/zorkaiju/tail-extended.svg"
  42666. }
  42667. },
  42668. tailBottom: {
  42669. height: math.unit(104, "feet"),
  42670. name: "Tail Bottom",
  42671. image: {
  42672. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42673. }
  42674. },
  42675. crystal: {
  42676. height: math.unit(27.54, "feet"),
  42677. name: "Crystal",
  42678. image: {
  42679. source: "./media/characters/zorkaiju/crystal.svg"
  42680. }
  42681. },
  42682. },
  42683. [
  42684. {
  42685. name: "Kaiju",
  42686. height: math.unit(325, "feet"),
  42687. default: true
  42688. },
  42689. ]
  42690. ))
  42691. characterMakers.push(() => makeCharacter(
  42692. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42693. {
  42694. front: {
  42695. height: math.unit(6 + 1/12, "feet"),
  42696. weight: math.unit(115, "lb"),
  42697. name: "Front",
  42698. image: {
  42699. source: "./media/characters/bailey-belfry/front.svg",
  42700. extra: 1240/1121,
  42701. bottom: 101/1341
  42702. }
  42703. },
  42704. },
  42705. [
  42706. {
  42707. name: "Normal",
  42708. height: math.unit(6 + 1/12, "feet"),
  42709. default: true
  42710. },
  42711. ]
  42712. ))
  42713. characterMakers.push(() => makeCharacter(
  42714. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42715. {
  42716. side: {
  42717. height: math.unit(4, "meters"),
  42718. weight: math.unit(250, "kg"),
  42719. name: "Side",
  42720. image: {
  42721. source: "./media/characters/blacky/side.svg",
  42722. extra: 1027/919,
  42723. bottom: 43/1070
  42724. }
  42725. },
  42726. maw: {
  42727. height: math.unit(1, "meters"),
  42728. name: "Maw",
  42729. image: {
  42730. source: "./media/characters/blacky/maw.svg"
  42731. }
  42732. },
  42733. paw: {
  42734. height: math.unit(1, "meters"),
  42735. name: "Paw",
  42736. image: {
  42737. source: "./media/characters/blacky/paw.svg"
  42738. }
  42739. },
  42740. },
  42741. [
  42742. {
  42743. name: "Normal",
  42744. height: math.unit(4, "meters"),
  42745. default: true
  42746. },
  42747. ]
  42748. ))
  42749. characterMakers.push(() => makeCharacter(
  42750. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42751. {
  42752. front: {
  42753. height: math.unit(170, "cm"),
  42754. weight: math.unit(66, "kg"),
  42755. name: "Front",
  42756. image: {
  42757. source: "./media/characters/thux-ei/front.svg",
  42758. extra: 1109/1011,
  42759. bottom: 8/1117
  42760. }
  42761. },
  42762. },
  42763. [
  42764. {
  42765. name: "Normal",
  42766. height: math.unit(170, "cm"),
  42767. default: true
  42768. },
  42769. ]
  42770. ))
  42771. characterMakers.push(() => makeCharacter(
  42772. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42773. {
  42774. front: {
  42775. height: math.unit(5, "feet"),
  42776. weight: math.unit(120, "lb"),
  42777. name: "Front",
  42778. image: {
  42779. source: "./media/characters/roxanne-voltaire/front.svg",
  42780. extra: 1901/1779,
  42781. bottom: 53/1954
  42782. }
  42783. },
  42784. },
  42785. [
  42786. {
  42787. name: "Normal",
  42788. height: math.unit(5, "feet"),
  42789. default: true
  42790. },
  42791. {
  42792. name: "Giant",
  42793. height: math.unit(50, "feet")
  42794. },
  42795. {
  42796. name: "Titan",
  42797. height: math.unit(500, "feet")
  42798. },
  42799. {
  42800. name: "Macro",
  42801. height: math.unit(5000, "feet")
  42802. },
  42803. {
  42804. name: "Megamacro",
  42805. height: math.unit(50000, "feet")
  42806. },
  42807. {
  42808. name: "Gigamacro",
  42809. height: math.unit(500000, "feet")
  42810. },
  42811. {
  42812. name: "Teramacro",
  42813. height: math.unit(5e6, "feet")
  42814. },
  42815. ]
  42816. ))
  42817. characterMakers.push(() => makeCharacter(
  42818. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42819. {
  42820. front: {
  42821. height: math.unit(6 + 2/12, "feet"),
  42822. name: "Front",
  42823. image: {
  42824. source: "./media/characters/squeaks/front.svg",
  42825. extra: 1823/1768,
  42826. bottom: 138/1961
  42827. }
  42828. },
  42829. },
  42830. [
  42831. {
  42832. name: "Micro",
  42833. height: math.unit(0.5, "inches")
  42834. },
  42835. {
  42836. name: "Normal",
  42837. height: math.unit(6 + 2/12, "feet"),
  42838. default: true
  42839. },
  42840. {
  42841. name: "Macro",
  42842. height: math.unit(600, "feet")
  42843. },
  42844. ]
  42845. ))
  42846. characterMakers.push(() => makeCharacter(
  42847. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42848. {
  42849. front: {
  42850. height: math.unit(1.72, "meters"),
  42851. name: "Front",
  42852. image: {
  42853. source: "./media/characters/archinger/front.svg",
  42854. extra: 1861/1675,
  42855. bottom: 125/1986
  42856. }
  42857. },
  42858. back: {
  42859. height: math.unit(1.72, "meters"),
  42860. name: "Back",
  42861. image: {
  42862. source: "./media/characters/archinger/back.svg",
  42863. extra: 1844/1701,
  42864. bottom: 104/1948
  42865. }
  42866. },
  42867. cock: {
  42868. height: math.unit(0.59, "feet"),
  42869. name: "Cock",
  42870. image: {
  42871. source: "./media/characters/archinger/cock.svg"
  42872. }
  42873. },
  42874. },
  42875. [
  42876. {
  42877. name: "Normal",
  42878. height: math.unit(1.72, "meters"),
  42879. default: true
  42880. },
  42881. {
  42882. name: "Macro",
  42883. height: math.unit(84, "meters")
  42884. },
  42885. {
  42886. name: "Macro+",
  42887. height: math.unit(112, "meters")
  42888. },
  42889. {
  42890. name: "Macro++",
  42891. height: math.unit(960, "meters")
  42892. },
  42893. {
  42894. name: "Macro+++",
  42895. height: math.unit(4, "km")
  42896. },
  42897. {
  42898. name: "Macro++++",
  42899. height: math.unit(48, "km")
  42900. },
  42901. {
  42902. name: "Macro+++++",
  42903. height: math.unit(4500, "km")
  42904. },
  42905. ]
  42906. ))
  42907. characterMakers.push(() => makeCharacter(
  42908. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42909. {
  42910. front: {
  42911. height: math.unit(5 + 5/12, "feet"),
  42912. name: "Front",
  42913. image: {
  42914. source: "./media/characters/alsnapz/front.svg",
  42915. extra: 1157/1065,
  42916. bottom: 42/1199
  42917. }
  42918. },
  42919. },
  42920. [
  42921. {
  42922. name: "Normal",
  42923. height: math.unit(5 + 5/12, "feet"),
  42924. default: true
  42925. },
  42926. ]
  42927. ))
  42928. characterMakers.push(() => makeCharacter(
  42929. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42930. {
  42931. side: {
  42932. height: math.unit(3.2, "earths"),
  42933. name: "Side",
  42934. image: {
  42935. source: "./media/characters/mag/side.svg",
  42936. extra: 1331/1008,
  42937. bottom: 52/1383
  42938. }
  42939. },
  42940. wing: {
  42941. height: math.unit(1.94, "earths"),
  42942. name: "Wing",
  42943. image: {
  42944. source: "./media/characters/mag/wing.svg"
  42945. }
  42946. },
  42947. dick: {
  42948. height: math.unit(1.8, "earths"),
  42949. name: "Dick",
  42950. image: {
  42951. source: "./media/characters/mag/dick.svg"
  42952. }
  42953. },
  42954. ass: {
  42955. height: math.unit(1.33, "earths"),
  42956. name: "Ass",
  42957. image: {
  42958. source: "./media/characters/mag/ass.svg"
  42959. }
  42960. },
  42961. head: {
  42962. height: math.unit(1.1, "earths"),
  42963. name: "Head",
  42964. image: {
  42965. source: "./media/characters/mag/head.svg"
  42966. }
  42967. },
  42968. maw: {
  42969. height: math.unit(1.62, "earths"),
  42970. name: "Maw",
  42971. image: {
  42972. source: "./media/characters/mag/maw.svg"
  42973. }
  42974. },
  42975. },
  42976. [
  42977. {
  42978. name: "Small",
  42979. height: math.unit(162, "feet")
  42980. },
  42981. {
  42982. name: "Normal",
  42983. height: math.unit(3.2, "earths"),
  42984. default: true
  42985. },
  42986. ]
  42987. ))
  42988. characterMakers.push(() => makeCharacter(
  42989. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42990. {
  42991. front: {
  42992. height: math.unit(512, "feet"),
  42993. weight: math.unit(63509, "tonnes"),
  42994. name: "Front",
  42995. image: {
  42996. source: "./media/characters/vorrel-harroc/front.svg",
  42997. extra: 1075/1063,
  42998. bottom: 62/1137
  42999. }
  43000. },
  43001. },
  43002. [
  43003. {
  43004. name: "Normal",
  43005. height: math.unit(10, "feet")
  43006. },
  43007. {
  43008. name: "Macro",
  43009. height: math.unit(512, "feet"),
  43010. default: true
  43011. },
  43012. {
  43013. name: "Megamacro",
  43014. height: math.unit(256, "miles")
  43015. },
  43016. {
  43017. name: "Gigamacro",
  43018. height: math.unit(4096, "miles")
  43019. },
  43020. ]
  43021. ))
  43022. characterMakers.push(() => makeCharacter(
  43023. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43024. {
  43025. side: {
  43026. height: math.unit(50, "feet"),
  43027. name: "Side",
  43028. image: {
  43029. source: "./media/characters/froimar/side.svg",
  43030. extra: 855/638,
  43031. bottom: 99/954
  43032. }
  43033. },
  43034. },
  43035. [
  43036. {
  43037. name: "Macro",
  43038. height: math.unit(50, "feet"),
  43039. default: true
  43040. },
  43041. ]
  43042. ))
  43043. characterMakers.push(() => makeCharacter(
  43044. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43045. {
  43046. front: {
  43047. height: math.unit(210, "miles"),
  43048. name: "Front",
  43049. image: {
  43050. source: "./media/characters/timothy/front.svg",
  43051. extra: 1007/943,
  43052. bottom: 62/1069
  43053. }
  43054. },
  43055. frontSkirt: {
  43056. height: math.unit(210, "miles"),
  43057. name: "Front (Skirt)",
  43058. image: {
  43059. source: "./media/characters/timothy/front-skirt.svg",
  43060. extra: 1007/943,
  43061. bottom: 62/1069
  43062. }
  43063. },
  43064. frontCoat: {
  43065. height: math.unit(210, "miles"),
  43066. name: "Front (Coat)",
  43067. image: {
  43068. source: "./media/characters/timothy/front-coat.svg",
  43069. extra: 1007/943,
  43070. bottom: 62/1069
  43071. }
  43072. },
  43073. },
  43074. [
  43075. {
  43076. name: "Macro",
  43077. height: math.unit(210, "miles"),
  43078. default: true
  43079. },
  43080. {
  43081. name: "Megamacro",
  43082. height: math.unit(210000, "miles")
  43083. },
  43084. ]
  43085. ))
  43086. characterMakers.push(() => makeCharacter(
  43087. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43088. {
  43089. front: {
  43090. height: math.unit(188, "feet"),
  43091. name: "Front",
  43092. image: {
  43093. source: "./media/characters/pyotr/front.svg",
  43094. extra: 1912/1826,
  43095. bottom: 18/1930
  43096. }
  43097. },
  43098. },
  43099. [
  43100. {
  43101. name: "Macro",
  43102. height: math.unit(188, "feet"),
  43103. default: true
  43104. },
  43105. {
  43106. name: "Megamacro",
  43107. height: math.unit(8, "miles")
  43108. },
  43109. ]
  43110. ))
  43111. characterMakers.push(() => makeCharacter(
  43112. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43113. {
  43114. side: {
  43115. height: math.unit(10, "feet"),
  43116. weight: math.unit(4500, "lb"),
  43117. name: "Side",
  43118. image: {
  43119. source: "./media/characters/ackart/side.svg",
  43120. extra: 1776/1668,
  43121. bottom: 116/1892
  43122. }
  43123. },
  43124. },
  43125. [
  43126. {
  43127. name: "Normal",
  43128. height: math.unit(10, "feet"),
  43129. default: true
  43130. },
  43131. ]
  43132. ))
  43133. characterMakers.push(() => makeCharacter(
  43134. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43135. {
  43136. side: {
  43137. height: math.unit(21, "feet"),
  43138. name: "Side",
  43139. image: {
  43140. source: "./media/characters/nolow/side.svg",
  43141. extra: 1484/1434,
  43142. bottom: 85/1569
  43143. }
  43144. },
  43145. sideErect: {
  43146. height: math.unit(21, "feet"),
  43147. name: "Side-erect",
  43148. image: {
  43149. source: "./media/characters/nolow/side-erect.svg",
  43150. extra: 1484/1434,
  43151. bottom: 85/1569
  43152. }
  43153. },
  43154. },
  43155. [
  43156. {
  43157. name: "Regular",
  43158. height: math.unit(12, "feet")
  43159. },
  43160. {
  43161. name: "Big Chee",
  43162. height: math.unit(21, "feet"),
  43163. default: true
  43164. },
  43165. ]
  43166. ))
  43167. characterMakers.push(() => makeCharacter(
  43168. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43169. {
  43170. front: {
  43171. height: math.unit(7, "feet"),
  43172. weight: math.unit(250, "lb"),
  43173. name: "Front",
  43174. image: {
  43175. source: "./media/characters/nines/front.svg",
  43176. extra: 1741/1607,
  43177. bottom: 41/1782
  43178. }
  43179. },
  43180. side: {
  43181. height: math.unit(7, "feet"),
  43182. weight: math.unit(250, "lb"),
  43183. name: "Side",
  43184. image: {
  43185. source: "./media/characters/nines/side.svg",
  43186. extra: 1854/1735,
  43187. bottom: 93/1947
  43188. }
  43189. },
  43190. back: {
  43191. height: math.unit(7, "feet"),
  43192. weight: math.unit(250, "lb"),
  43193. name: "Back",
  43194. image: {
  43195. source: "./media/characters/nines/back.svg",
  43196. extra: 1748/1615,
  43197. bottom: 20/1768
  43198. }
  43199. },
  43200. },
  43201. [
  43202. {
  43203. name: "Megamacro",
  43204. height: math.unit(99, "km"),
  43205. default: true
  43206. },
  43207. ]
  43208. ))
  43209. characterMakers.push(() => makeCharacter(
  43210. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43211. {
  43212. front: {
  43213. height: math.unit(5 + 10/12, "feet"),
  43214. weight: math.unit(210, "lb"),
  43215. name: "Front",
  43216. image: {
  43217. source: "./media/characters/zenith/front.svg",
  43218. extra: 1531/1452,
  43219. bottom: 198/1729
  43220. }
  43221. },
  43222. back: {
  43223. height: math.unit(5 + 10/12, "feet"),
  43224. weight: math.unit(210, "lb"),
  43225. name: "Back",
  43226. image: {
  43227. source: "./media/characters/zenith/back.svg",
  43228. extra: 1571/1487,
  43229. bottom: 75/1646
  43230. }
  43231. },
  43232. },
  43233. [
  43234. {
  43235. name: "Normal",
  43236. height: math.unit(5 + 10/12, "feet"),
  43237. default: true
  43238. }
  43239. ]
  43240. ))
  43241. characterMakers.push(() => makeCharacter(
  43242. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43243. {
  43244. front: {
  43245. height: math.unit(4, "feet"),
  43246. weight: math.unit(60, "lb"),
  43247. name: "Front",
  43248. image: {
  43249. source: "./media/characters/jasper/front.svg",
  43250. extra: 1450/1379,
  43251. bottom: 19/1469
  43252. }
  43253. },
  43254. },
  43255. [
  43256. {
  43257. name: "Normal",
  43258. height: math.unit(4, "feet"),
  43259. default: true
  43260. },
  43261. ]
  43262. ))
  43263. characterMakers.push(() => makeCharacter(
  43264. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43265. {
  43266. front: {
  43267. height: math.unit(6 + 5/12, "feet"),
  43268. weight: math.unit(290, "lb"),
  43269. name: "Front",
  43270. image: {
  43271. source: "./media/characters/tiberius-thyben/front.svg",
  43272. extra: 757/739,
  43273. bottom: 39/796
  43274. }
  43275. },
  43276. },
  43277. [
  43278. {
  43279. name: "Micro",
  43280. height: math.unit(1.5, "inches")
  43281. },
  43282. {
  43283. name: "Normal",
  43284. height: math.unit(6 + 5/12, "feet"),
  43285. default: true
  43286. },
  43287. {
  43288. name: "Macro",
  43289. height: math.unit(300, "feet")
  43290. },
  43291. ]
  43292. ))
  43293. characterMakers.push(() => makeCharacter(
  43294. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43295. {
  43296. front: {
  43297. height: math.unit(5 + 6/12, "feet"),
  43298. weight: math.unit(60, "kg"),
  43299. name: "Front",
  43300. image: {
  43301. source: "./media/characters/sabre/front.svg",
  43302. extra: 738/671,
  43303. bottom: 27/765
  43304. }
  43305. },
  43306. },
  43307. [
  43308. {
  43309. name: "Teeny",
  43310. height: math.unit(2, "inches")
  43311. },
  43312. {
  43313. name: "Smol",
  43314. height: math.unit(8, "inches")
  43315. },
  43316. {
  43317. name: "Normal",
  43318. height: math.unit(5 + 6/12, "feet"),
  43319. default: true
  43320. },
  43321. {
  43322. name: "Mini-Macro",
  43323. height: math.unit(15, "feet")
  43324. },
  43325. {
  43326. name: "Macro",
  43327. height: math.unit(50, "feet")
  43328. },
  43329. ]
  43330. ))
  43331. characterMakers.push(() => makeCharacter(
  43332. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43333. {
  43334. front: {
  43335. height: math.unit(6 + 4/12, "feet"),
  43336. weight: math.unit(170, "lb"),
  43337. name: "Front",
  43338. image: {
  43339. source: "./media/characters/charlie/front.svg",
  43340. extra: 1348/1228,
  43341. bottom: 15/1363
  43342. }
  43343. },
  43344. },
  43345. [
  43346. {
  43347. name: "Macro",
  43348. height: math.unit(1700, "meters"),
  43349. default: true
  43350. },
  43351. {
  43352. name: "MegaMacro",
  43353. height: math.unit(20400, "meters")
  43354. },
  43355. ]
  43356. ))
  43357. characterMakers.push(() => makeCharacter(
  43358. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43359. {
  43360. front: {
  43361. height: math.unit(6 + 3/12, "feet"),
  43362. weight: math.unit(185, "lb"),
  43363. name: "Front",
  43364. image: {
  43365. source: "./media/characters/susan-grant/front.svg",
  43366. extra: 1351/1327,
  43367. bottom: 26/1377
  43368. }
  43369. },
  43370. },
  43371. [
  43372. {
  43373. name: "Normal",
  43374. height: math.unit(6 + 3/12, "feet"),
  43375. default: true
  43376. },
  43377. {
  43378. name: "Macro",
  43379. height: math.unit(225, "feet")
  43380. },
  43381. {
  43382. name: "Macro+",
  43383. height: math.unit(900, "feet")
  43384. },
  43385. {
  43386. name: "MegaMacro",
  43387. height: math.unit(14400, "feet")
  43388. },
  43389. ]
  43390. ))
  43391. characterMakers.push(() => makeCharacter(
  43392. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43393. {
  43394. front: {
  43395. height: math.unit(5 + 4/12, "feet"),
  43396. weight: math.unit(110, "lb"),
  43397. name: "Front",
  43398. image: {
  43399. source: "./media/characters/axel-isanov/front.svg",
  43400. extra: 1096/1065,
  43401. bottom: 13/1109
  43402. }
  43403. },
  43404. },
  43405. [
  43406. {
  43407. name: "Normal",
  43408. height: math.unit(5 + 4/12, "feet"),
  43409. default: true
  43410. },
  43411. ]
  43412. ))
  43413. characterMakers.push(() => makeCharacter(
  43414. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43415. {
  43416. front: {
  43417. height: math.unit(9, "feet"),
  43418. weight: math.unit(467, "lb"),
  43419. name: "Front",
  43420. image: {
  43421. source: "./media/characters/necahual/front.svg",
  43422. extra: 920/873,
  43423. bottom: 26/946
  43424. }
  43425. },
  43426. back: {
  43427. height: math.unit(9, "feet"),
  43428. weight: math.unit(467, "lb"),
  43429. name: "Back",
  43430. image: {
  43431. source: "./media/characters/necahual/back.svg",
  43432. extra: 930/884,
  43433. bottom: 16/946
  43434. }
  43435. },
  43436. frontUnderwear: {
  43437. height: math.unit(9, "feet"),
  43438. weight: math.unit(467, "lb"),
  43439. name: "Front (Underwear)",
  43440. image: {
  43441. source: "./media/characters/necahual/front-underwear.svg",
  43442. extra: 920/873,
  43443. bottom: 26/946
  43444. }
  43445. },
  43446. frontDressed: {
  43447. height: math.unit(9, "feet"),
  43448. weight: math.unit(467, "lb"),
  43449. name: "Front (Dressed)",
  43450. image: {
  43451. source: "./media/characters/necahual/front-dressed.svg",
  43452. extra: 920/873,
  43453. bottom: 26/946
  43454. }
  43455. },
  43456. },
  43457. [
  43458. {
  43459. name: "Comprsesed",
  43460. height: math.unit(9, "feet")
  43461. },
  43462. {
  43463. name: "Natural",
  43464. height: math.unit(15, "feet"),
  43465. default: true
  43466. },
  43467. {
  43468. name: "Boosted",
  43469. height: math.unit(50, "feet")
  43470. },
  43471. {
  43472. name: "Boosted+",
  43473. height: math.unit(150, "feet")
  43474. },
  43475. {
  43476. name: "Max",
  43477. height: math.unit(500, "feet")
  43478. },
  43479. ]
  43480. ))
  43481. characterMakers.push(() => makeCharacter(
  43482. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43483. {
  43484. front: {
  43485. height: math.unit(22 + 1/12, "feet"),
  43486. weight: math.unit(3200, "lb"),
  43487. name: "Front",
  43488. image: {
  43489. source: "./media/characters/theo-acacia/front.svg",
  43490. extra: 1796/1741,
  43491. bottom: 83/1879
  43492. }
  43493. },
  43494. frontUnderwear: {
  43495. height: math.unit(22 + 1/12, "feet"),
  43496. weight: math.unit(3200, "lb"),
  43497. name: "Front (Underwear)",
  43498. image: {
  43499. source: "./media/characters/theo-acacia/front-underwear.svg",
  43500. extra: 1796/1741,
  43501. bottom: 83/1879
  43502. }
  43503. },
  43504. frontNude: {
  43505. height: math.unit(22 + 1/12, "feet"),
  43506. weight: math.unit(3200, "lb"),
  43507. name: "Front (Nude)",
  43508. image: {
  43509. source: "./media/characters/theo-acacia/front-nude.svg",
  43510. extra: 1796/1741,
  43511. bottom: 83/1879
  43512. }
  43513. },
  43514. },
  43515. [
  43516. {
  43517. name: "Normal",
  43518. height: math.unit(22 + 1/12, "feet"),
  43519. default: true
  43520. },
  43521. ]
  43522. ))
  43523. characterMakers.push(() => makeCharacter(
  43524. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43525. {
  43526. front: {
  43527. height: math.unit(20, "feet"),
  43528. name: "Front",
  43529. image: {
  43530. source: "./media/characters/astra/front.svg",
  43531. extra: 1850/1714,
  43532. bottom: 106/1956
  43533. }
  43534. },
  43535. frontUndressed: {
  43536. height: math.unit(20, "feet"),
  43537. name: "Front (Undressed)",
  43538. image: {
  43539. source: "./media/characters/astra/front-undressed.svg",
  43540. extra: 1926/1749,
  43541. bottom: 0/1926
  43542. }
  43543. },
  43544. hand: {
  43545. height: math.unit(1.53, "feet"),
  43546. name: "Hand",
  43547. image: {
  43548. source: "./media/characters/astra/hand.svg"
  43549. }
  43550. },
  43551. paw: {
  43552. height: math.unit(1.53, "feet"),
  43553. name: "Paw",
  43554. image: {
  43555. source: "./media/characters/astra/paw.svg"
  43556. }
  43557. },
  43558. },
  43559. [
  43560. {
  43561. name: "Smallest",
  43562. height: math.unit(20, "feet")
  43563. },
  43564. {
  43565. name: "Normal",
  43566. height: math.unit(1e9, "miles"),
  43567. default: true
  43568. },
  43569. {
  43570. name: "Larger",
  43571. height: math.unit(5, "multiverses")
  43572. },
  43573. {
  43574. name: "Largest",
  43575. height: math.unit(1e9, "multiverses")
  43576. },
  43577. ]
  43578. ))
  43579. characterMakers.push(() => makeCharacter(
  43580. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43581. {
  43582. front: {
  43583. height: math.unit(8, "feet"),
  43584. name: "Front",
  43585. image: {
  43586. source: "./media/characters/breanna/front.svg",
  43587. extra: 1912/1632,
  43588. bottom: 33/1945
  43589. }
  43590. },
  43591. },
  43592. [
  43593. {
  43594. name: "Smallest",
  43595. height: math.unit(8, "feet")
  43596. },
  43597. {
  43598. name: "Normal",
  43599. height: math.unit(1, "mile"),
  43600. default: true
  43601. },
  43602. {
  43603. name: "Maximum",
  43604. height: math.unit(1500000000000, "lightyears")
  43605. },
  43606. ]
  43607. ))
  43608. characterMakers.push(() => makeCharacter(
  43609. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43610. {
  43611. front: {
  43612. height: math.unit(5 + 11/12, "feet"),
  43613. weight: math.unit(155, "lb"),
  43614. name: "Front",
  43615. image: {
  43616. source: "./media/characters/cai/front.svg",
  43617. extra: 1823/1702,
  43618. bottom: 32/1855
  43619. }
  43620. },
  43621. back: {
  43622. height: math.unit(5 + 11/12, "feet"),
  43623. weight: math.unit(155, "lb"),
  43624. name: "Back",
  43625. image: {
  43626. source: "./media/characters/cai/back.svg",
  43627. extra: 1809/1708,
  43628. bottom: 31/1840
  43629. }
  43630. },
  43631. },
  43632. [
  43633. {
  43634. name: "Normal",
  43635. height: math.unit(5 + 11/12, "feet"),
  43636. default: true
  43637. },
  43638. {
  43639. name: "Big",
  43640. height: math.unit(15, "feet")
  43641. },
  43642. {
  43643. name: "Macro",
  43644. height: math.unit(200, "feet")
  43645. },
  43646. ]
  43647. ))
  43648. characterMakers.push(() => makeCharacter(
  43649. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43650. {
  43651. front: {
  43652. height: math.unit(5 + 6/12, "feet"),
  43653. weight: math.unit(160, "lb"),
  43654. name: "Front",
  43655. image: {
  43656. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43657. extra: 1227/1174,
  43658. bottom: 37/1264
  43659. }
  43660. },
  43661. },
  43662. [
  43663. {
  43664. name: "Macro",
  43665. height: math.unit(444, "meters"),
  43666. default: true
  43667. },
  43668. ]
  43669. ))
  43670. characterMakers.push(() => makeCharacter(
  43671. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43672. {
  43673. front: {
  43674. height: math.unit(18 + 7/12, "feet"),
  43675. name: "Front",
  43676. image: {
  43677. source: "./media/characters/rex/front.svg",
  43678. extra: 1941/1807,
  43679. bottom: 66/2007
  43680. }
  43681. },
  43682. back: {
  43683. height: math.unit(18 + 7/12, "feet"),
  43684. name: "Back",
  43685. image: {
  43686. source: "./media/characters/rex/back.svg",
  43687. extra: 1937/1822,
  43688. bottom: 42/1979
  43689. }
  43690. },
  43691. boot: {
  43692. height: math.unit(3.45, "feet"),
  43693. name: "Boot",
  43694. image: {
  43695. source: "./media/characters/rex/boot.svg"
  43696. }
  43697. },
  43698. paw: {
  43699. height: math.unit(4.17, "feet"),
  43700. name: "Paw",
  43701. image: {
  43702. source: "./media/characters/rex/paw.svg"
  43703. }
  43704. },
  43705. head: {
  43706. height: math.unit(6.728, "feet"),
  43707. name: "Head",
  43708. image: {
  43709. source: "./media/characters/rex/head.svg"
  43710. }
  43711. },
  43712. },
  43713. [
  43714. {
  43715. name: "Nano",
  43716. height: math.unit(18 + 7/12, "feet")
  43717. },
  43718. {
  43719. name: "Micro",
  43720. height: math.unit(1.5, "megameters")
  43721. },
  43722. {
  43723. name: "Normal",
  43724. height: math.unit(440, "megameters"),
  43725. default: true
  43726. },
  43727. {
  43728. name: "Macro",
  43729. height: math.unit(2.5, "gigameters")
  43730. },
  43731. {
  43732. name: "Gigamacro",
  43733. height: math.unit(2, "galaxies")
  43734. },
  43735. ]
  43736. ))
  43737. characterMakers.push(() => makeCharacter(
  43738. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43739. {
  43740. side: {
  43741. height: math.unit(32, "feet"),
  43742. weight: math.unit(250000, "lb"),
  43743. name: "Side",
  43744. image: {
  43745. source: "./media/characters/silverwing/side.svg",
  43746. extra: 1100/1019,
  43747. bottom: 204/1304
  43748. }
  43749. },
  43750. },
  43751. [
  43752. {
  43753. name: "Normal",
  43754. height: math.unit(32, "feet"),
  43755. default: true
  43756. },
  43757. ]
  43758. ))
  43759. characterMakers.push(() => makeCharacter(
  43760. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43761. {
  43762. front: {
  43763. height: math.unit(6 + 6/12, "feet"),
  43764. weight: math.unit(350, "lb"),
  43765. name: "Front",
  43766. image: {
  43767. source: "./media/characters/tristan-hawthorne/front.svg",
  43768. extra: 1159/1124,
  43769. bottom: 37/1196
  43770. },
  43771. form: "labrador",
  43772. default: true
  43773. },
  43774. skunkFront: {
  43775. height: math.unit(4 + 6/12, "feet"),
  43776. weight: math.unit(120, "lb"),
  43777. name: "Front",
  43778. image: {
  43779. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43780. extra: 1609/1551,
  43781. bottom: 169/1778
  43782. },
  43783. form: "skunk",
  43784. default: true
  43785. },
  43786. },
  43787. [
  43788. {
  43789. name: "Normal",
  43790. height: math.unit(6 + 6/12, "feet"),
  43791. form: "labrador",
  43792. default: true
  43793. },
  43794. {
  43795. name: "Normal",
  43796. height: math.unit(4 + 6/12, "feet"),
  43797. form: "skunk",
  43798. default: true
  43799. },
  43800. ],
  43801. {
  43802. "labrador": {
  43803. name: "Labrador",
  43804. default: true
  43805. },
  43806. "skunk": {
  43807. name: "Skunk"
  43808. }
  43809. }
  43810. ))
  43811. characterMakers.push(() => makeCharacter(
  43812. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43813. {
  43814. front: {
  43815. height: math.unit(5 + 11/12, "feet"),
  43816. weight: math.unit(190, "lb"),
  43817. name: "Front",
  43818. image: {
  43819. source: "./media/characters/mizu/front.svg",
  43820. extra: 1988/1788,
  43821. bottom: 14/2002
  43822. }
  43823. },
  43824. },
  43825. [
  43826. {
  43827. name: "Normal",
  43828. height: math.unit(5 + 11/12, "feet"),
  43829. default: true
  43830. },
  43831. ]
  43832. ))
  43833. characterMakers.push(() => makeCharacter(
  43834. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43835. {
  43836. front: {
  43837. height: math.unit(1.7, "feet"),
  43838. weight: math.unit(50, "lb"),
  43839. name: "Front",
  43840. image: {
  43841. source: "./media/characters/dechroma/front.svg",
  43842. extra: 1095/859,
  43843. bottom: 64/1159
  43844. }
  43845. },
  43846. },
  43847. [
  43848. {
  43849. name: "Normal",
  43850. height: math.unit(1.7, "feet"),
  43851. default: true
  43852. },
  43853. ]
  43854. ))
  43855. characterMakers.push(() => makeCharacter(
  43856. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43857. {
  43858. side: {
  43859. height: math.unit(30, "feet"),
  43860. name: "Side",
  43861. image: {
  43862. source: "./media/characters/veluren-thanazel/side.svg",
  43863. extra: 1611/633,
  43864. bottom: 118/1729
  43865. }
  43866. },
  43867. front: {
  43868. height: math.unit(30, "feet"),
  43869. name: "Front",
  43870. image: {
  43871. source: "./media/characters/veluren-thanazel/front.svg",
  43872. extra: 1486/636,
  43873. bottom: 238/1724
  43874. }
  43875. },
  43876. head: {
  43877. height: math.unit(21.4, "feet"),
  43878. name: "Head",
  43879. image: {
  43880. source: "./media/characters/veluren-thanazel/head.svg"
  43881. }
  43882. },
  43883. genitals: {
  43884. height: math.unit(19.4, "feet"),
  43885. name: "Genitals",
  43886. image: {
  43887. source: "./media/characters/veluren-thanazel/genitals.svg"
  43888. }
  43889. },
  43890. },
  43891. [
  43892. {
  43893. name: "Social",
  43894. height: math.unit(6, "feet")
  43895. },
  43896. {
  43897. name: "Play",
  43898. height: math.unit(12, "feet")
  43899. },
  43900. {
  43901. name: "True",
  43902. height: math.unit(30, "feet"),
  43903. default: true
  43904. },
  43905. ]
  43906. ))
  43907. characterMakers.push(() => makeCharacter(
  43908. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43909. {
  43910. front: {
  43911. height: math.unit(7 + 6/12, "feet"),
  43912. weight: math.unit(500, "kg"),
  43913. name: "Front",
  43914. image: {
  43915. source: "./media/characters/arcturas/front.svg",
  43916. extra: 1700/1500,
  43917. bottom: 145/1845
  43918. }
  43919. },
  43920. },
  43921. [
  43922. {
  43923. name: "Normal",
  43924. height: math.unit(7 + 6/12, "feet"),
  43925. default: true
  43926. },
  43927. ]
  43928. ))
  43929. characterMakers.push(() => makeCharacter(
  43930. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43931. {
  43932. side: {
  43933. height: math.unit(6, "feet"),
  43934. weight: math.unit(2, "tons"),
  43935. name: "Side",
  43936. image: {
  43937. source: "./media/characters/vitaen/side.svg",
  43938. extra: 1157/617,
  43939. bottom: 122/1279
  43940. }
  43941. },
  43942. },
  43943. [
  43944. {
  43945. name: "Normal",
  43946. height: math.unit(6, "feet"),
  43947. default: true
  43948. },
  43949. ]
  43950. ))
  43951. characterMakers.push(() => makeCharacter(
  43952. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43953. {
  43954. front: {
  43955. height: math.unit(19, "feet"),
  43956. name: "Front",
  43957. image: {
  43958. source: "./media/characters/fia-dreamweaver/front.svg",
  43959. extra: 1630/1504,
  43960. bottom: 25/1655
  43961. }
  43962. },
  43963. },
  43964. [
  43965. {
  43966. name: "Normal",
  43967. height: math.unit(19, "feet"),
  43968. default: true
  43969. },
  43970. ]
  43971. ))
  43972. characterMakers.push(() => makeCharacter(
  43973. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43974. {
  43975. front: {
  43976. height: math.unit(5 + 4/12, "feet"),
  43977. name: "Front",
  43978. image: {
  43979. source: "./media/characters/artan/front.svg",
  43980. extra: 1618/1535,
  43981. bottom: 46/1664
  43982. }
  43983. },
  43984. back: {
  43985. height: math.unit(5 + 4/12, "feet"),
  43986. name: "Back",
  43987. image: {
  43988. source: "./media/characters/artan/back.svg",
  43989. extra: 1618/1543,
  43990. bottom: 31/1649
  43991. }
  43992. },
  43993. },
  43994. [
  43995. {
  43996. name: "Normal",
  43997. height: math.unit(5 + 4/12, "feet"),
  43998. default: true
  43999. },
  44000. ]
  44001. ))
  44002. characterMakers.push(() => makeCharacter(
  44003. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44004. {
  44005. side: {
  44006. height: math.unit(182, "cm"),
  44007. weight: math.unit(1000, "lb"),
  44008. name: "Side",
  44009. image: {
  44010. source: "./media/characters/silver-dragon/side.svg",
  44011. extra: 710/287,
  44012. bottom: 88/798
  44013. }
  44014. },
  44015. },
  44016. [
  44017. {
  44018. name: "Normal",
  44019. height: math.unit(182, "cm"),
  44020. default: true
  44021. },
  44022. ]
  44023. ))
  44024. characterMakers.push(() => makeCharacter(
  44025. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44026. {
  44027. side: {
  44028. height: math.unit(6 + 6/12, "feet"),
  44029. weight: math.unit(1.5, "tons"),
  44030. name: "Side",
  44031. image: {
  44032. source: "./media/characters/zephyr/side.svg",
  44033. extra: 1433/586,
  44034. bottom: 109/1542
  44035. }
  44036. },
  44037. },
  44038. [
  44039. {
  44040. name: "Normal",
  44041. height: math.unit(6 + 6/12, "feet"),
  44042. default: true
  44043. },
  44044. ]
  44045. ))
  44046. characterMakers.push(() => makeCharacter(
  44047. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44048. {
  44049. side: {
  44050. height: math.unit(1, "feet"),
  44051. name: "Side",
  44052. image: {
  44053. source: "./media/characters/vixye/side.svg",
  44054. extra: 632/541,
  44055. bottom: 0/632
  44056. }
  44057. },
  44058. },
  44059. [
  44060. {
  44061. name: "Normal",
  44062. height: math.unit(1, "feet"),
  44063. default: true
  44064. },
  44065. {
  44066. name: "True",
  44067. height: math.unit(1e15, "multiverses")
  44068. },
  44069. ]
  44070. ))
  44071. characterMakers.push(() => makeCharacter(
  44072. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44073. {
  44074. front: {
  44075. height: math.unit(8 + 2/12, "feet"),
  44076. weight: math.unit(650, "lb"),
  44077. name: "Front",
  44078. image: {
  44079. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44080. extra: 1174/1137,
  44081. bottom: 82/1256
  44082. }
  44083. },
  44084. back: {
  44085. height: math.unit(8 + 2/12, "feet"),
  44086. weight: math.unit(650, "lb"),
  44087. name: "Back",
  44088. image: {
  44089. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44090. extra: 1204/1157,
  44091. bottom: 46/1250
  44092. }
  44093. },
  44094. },
  44095. [
  44096. {
  44097. name: "Wildform",
  44098. height: math.unit(8 + 2/12, "feet"),
  44099. default: true
  44100. },
  44101. ]
  44102. ))
  44103. characterMakers.push(() => makeCharacter(
  44104. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44105. {
  44106. front: {
  44107. height: math.unit(18, "feet"),
  44108. name: "Front",
  44109. image: {
  44110. source: "./media/characters/cyphin/front.svg",
  44111. extra: 970/886,
  44112. bottom: 42/1012
  44113. }
  44114. },
  44115. back: {
  44116. height: math.unit(18, "feet"),
  44117. name: "Back",
  44118. image: {
  44119. source: "./media/characters/cyphin/back.svg",
  44120. extra: 1009/894,
  44121. bottom: 24/1033
  44122. }
  44123. },
  44124. head: {
  44125. height: math.unit(5.05, "feet"),
  44126. name: "Head",
  44127. image: {
  44128. source: "./media/characters/cyphin/head.svg"
  44129. }
  44130. },
  44131. tailbud: {
  44132. height: math.unit(5, "feet"),
  44133. name: "Tailbud",
  44134. image: {
  44135. source: "./media/characters/cyphin/tailbud.svg"
  44136. }
  44137. },
  44138. },
  44139. [
  44140. ]
  44141. ))
  44142. characterMakers.push(() => makeCharacter(
  44143. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44144. {
  44145. side: {
  44146. height: math.unit(10, "feet"),
  44147. weight: math.unit(6, "tons"),
  44148. name: "Side",
  44149. image: {
  44150. source: "./media/characters/raijin/side.svg",
  44151. extra: 1529/613,
  44152. bottom: 337/1866
  44153. }
  44154. },
  44155. },
  44156. [
  44157. {
  44158. name: "Normal",
  44159. height: math.unit(10, "feet"),
  44160. default: true
  44161. },
  44162. ]
  44163. ))
  44164. characterMakers.push(() => makeCharacter(
  44165. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44166. {
  44167. side: {
  44168. height: math.unit(9, "feet"),
  44169. name: "Side",
  44170. image: {
  44171. source: "./media/characters/nilghais/side.svg",
  44172. extra: 1047/744,
  44173. bottom: 91/1138
  44174. }
  44175. },
  44176. head: {
  44177. height: math.unit(3.14, "feet"),
  44178. name: "Head",
  44179. image: {
  44180. source: "./media/characters/nilghais/head.svg"
  44181. }
  44182. },
  44183. mouth: {
  44184. height: math.unit(4.6, "feet"),
  44185. name: "Mouth",
  44186. image: {
  44187. source: "./media/characters/nilghais/mouth.svg"
  44188. }
  44189. },
  44190. wings: {
  44191. height: math.unit(24, "feet"),
  44192. name: "Wings",
  44193. image: {
  44194. source: "./media/characters/nilghais/wings.svg"
  44195. }
  44196. },
  44197. ass: {
  44198. height: math.unit(6.12, "feet"),
  44199. name: "Ass",
  44200. image: {
  44201. source: "./media/characters/nilghais/ass.svg"
  44202. }
  44203. },
  44204. },
  44205. [
  44206. {
  44207. name: "Normal",
  44208. height: math.unit(9, "feet"),
  44209. default: true
  44210. },
  44211. ]
  44212. ))
  44213. characterMakers.push(() => makeCharacter(
  44214. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44215. {
  44216. regular: {
  44217. height: math.unit(16 + 2/12, "feet"),
  44218. weight: math.unit(2300, "lb"),
  44219. name: "Regular",
  44220. image: {
  44221. source: "./media/characters/zolgar/regular.svg",
  44222. extra: 1246/1004,
  44223. bottom: 124/1370
  44224. }
  44225. },
  44226. boxers: {
  44227. height: math.unit(16 + 2/12, "feet"),
  44228. weight: math.unit(2300, "lb"),
  44229. name: "Boxers",
  44230. image: {
  44231. source: "./media/characters/zolgar/boxers.svg",
  44232. extra: 1246/1004,
  44233. bottom: 124/1370
  44234. }
  44235. },
  44236. armored: {
  44237. height: math.unit(16 + 2/12, "feet"),
  44238. weight: math.unit(2300, "lb"),
  44239. name: "Armored",
  44240. image: {
  44241. source: "./media/characters/zolgar/armored.svg",
  44242. extra: 1246/1004,
  44243. bottom: 124/1370
  44244. }
  44245. },
  44246. goth: {
  44247. height: math.unit(16 + 2/12, "feet"),
  44248. weight: math.unit(2300, "lb"),
  44249. name: "Goth",
  44250. image: {
  44251. source: "./media/characters/zolgar/goth.svg",
  44252. extra: 1246/1004,
  44253. bottom: 124/1370
  44254. }
  44255. },
  44256. },
  44257. [
  44258. {
  44259. name: "Shrunken Down",
  44260. height: math.unit(9 + 2/12, "feet")
  44261. },
  44262. {
  44263. name: "Normal",
  44264. height: math.unit(16 + 2/12, "feet"),
  44265. default: true
  44266. },
  44267. ]
  44268. ))
  44269. characterMakers.push(() => makeCharacter(
  44270. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44271. {
  44272. front: {
  44273. height: math.unit(6, "feet"),
  44274. weight: math.unit(168, "lb"),
  44275. name: "Front",
  44276. image: {
  44277. source: "./media/characters/luca/front.svg",
  44278. extra: 841/667,
  44279. bottom: 102/943
  44280. }
  44281. },
  44282. },
  44283. [
  44284. {
  44285. name: "Normal",
  44286. height: math.unit(6, "feet"),
  44287. default: true
  44288. },
  44289. ]
  44290. ))
  44291. characterMakers.push(() => makeCharacter(
  44292. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44293. {
  44294. side: {
  44295. height: math.unit(7 + 3/12, "feet"),
  44296. weight: math.unit(312, "lb"),
  44297. name: "Side",
  44298. image: {
  44299. source: "./media/characters/zezo/side.svg",
  44300. extra: 1192/1067,
  44301. bottom: 63/1255
  44302. }
  44303. },
  44304. },
  44305. [
  44306. {
  44307. name: "Normal",
  44308. height: math.unit(7 + 3/12, "feet"),
  44309. default: true
  44310. },
  44311. ]
  44312. ))
  44313. characterMakers.push(() => makeCharacter(
  44314. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44315. {
  44316. front: {
  44317. height: math.unit(5 + 5/12, "feet"),
  44318. weight: math.unit(170, "lb"),
  44319. name: "Front",
  44320. image: {
  44321. source: "./media/characters/mayso/front.svg",
  44322. extra: 1215/1108,
  44323. bottom: 16/1231
  44324. }
  44325. },
  44326. },
  44327. [
  44328. {
  44329. name: "Normal",
  44330. height: math.unit(5 + 5/12, "feet"),
  44331. default: true
  44332. },
  44333. ]
  44334. ))
  44335. characterMakers.push(() => makeCharacter(
  44336. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44337. {
  44338. front: {
  44339. height: math.unit(4 + 3/12, "feet"),
  44340. weight: math.unit(80, "lb"),
  44341. name: "Front",
  44342. image: {
  44343. source: "./media/characters/hess/front.svg",
  44344. extra: 1200/1123,
  44345. bottom: 16/1216
  44346. }
  44347. },
  44348. },
  44349. [
  44350. {
  44351. name: "Normal",
  44352. height: math.unit(4 + 3/12, "feet"),
  44353. default: true
  44354. },
  44355. ]
  44356. ))
  44357. characterMakers.push(() => makeCharacter(
  44358. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44359. {
  44360. front: {
  44361. height: math.unit(1.9, "meters"),
  44362. name: "Front",
  44363. image: {
  44364. source: "./media/characters/ashgar/front.svg",
  44365. extra: 1177/1146,
  44366. bottom: 99/1276
  44367. }
  44368. },
  44369. back: {
  44370. height: math.unit(1.9, "meters"),
  44371. name: "Back",
  44372. image: {
  44373. source: "./media/characters/ashgar/back.svg",
  44374. extra: 1201/1183,
  44375. bottom: 53/1254
  44376. }
  44377. },
  44378. feral: {
  44379. height: math.unit(1.4, "meters"),
  44380. name: "Feral",
  44381. image: {
  44382. source: "./media/characters/ashgar/feral.svg",
  44383. extra: 370/345,
  44384. bottom: 45/415
  44385. }
  44386. },
  44387. },
  44388. [
  44389. {
  44390. name: "Normal",
  44391. height: math.unit(1.9, "meters"),
  44392. default: true
  44393. },
  44394. ]
  44395. ))
  44396. characterMakers.push(() => makeCharacter(
  44397. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44398. {
  44399. regular: {
  44400. height: math.unit(6, "feet"),
  44401. weight: math.unit(220, "lb"),
  44402. name: "Regular",
  44403. image: {
  44404. source: "./media/characters/phillip/regular.svg",
  44405. extra: 1373/1277,
  44406. bottom: 75/1448
  44407. }
  44408. },
  44409. dressed: {
  44410. height: math.unit(6, "feet"),
  44411. weight: math.unit(220, "lb"),
  44412. name: "Dressed",
  44413. image: {
  44414. source: "./media/characters/phillip/dressed.svg",
  44415. extra: 1373/1277,
  44416. bottom: 75/1448
  44417. }
  44418. },
  44419. paw: {
  44420. height: math.unit(1.44, "feet"),
  44421. name: "Paw",
  44422. image: {
  44423. source: "./media/characters/phillip/paw.svg"
  44424. }
  44425. },
  44426. },
  44427. [
  44428. {
  44429. name: "Normal",
  44430. height: math.unit(6, "feet"),
  44431. default: true
  44432. },
  44433. ]
  44434. ))
  44435. characterMakers.push(() => makeCharacter(
  44436. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44437. {
  44438. side: {
  44439. height: math.unit(42, "feet"),
  44440. name: "Side",
  44441. image: {
  44442. source: "./media/characters/uvula/side.svg",
  44443. extra: 683/586,
  44444. bottom: 60/743
  44445. }
  44446. },
  44447. front: {
  44448. height: math.unit(42, "feet"),
  44449. name: "Front",
  44450. image: {
  44451. source: "./media/characters/uvula/front.svg",
  44452. extra: 705/613,
  44453. bottom: 54/759
  44454. }
  44455. },
  44456. maw: {
  44457. height: math.unit(23.5, "feet"),
  44458. name: "Maw",
  44459. image: {
  44460. source: "./media/characters/uvula/maw.svg"
  44461. }
  44462. },
  44463. },
  44464. [
  44465. {
  44466. name: "Original Size",
  44467. height: math.unit(14, "inches")
  44468. },
  44469. {
  44470. name: "Human Size",
  44471. height: math.unit(6, "feet")
  44472. },
  44473. {
  44474. name: "Big",
  44475. height: math.unit(42, "feet"),
  44476. default: true
  44477. },
  44478. {
  44479. name: "Bigger",
  44480. height: math.unit(100, "feet")
  44481. },
  44482. ]
  44483. ))
  44484. characterMakers.push(() => makeCharacter(
  44485. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44486. {
  44487. front: {
  44488. height: math.unit(5 + 11/12, "feet"),
  44489. name: "Front",
  44490. image: {
  44491. source: "./media/characters/lannah/front.svg",
  44492. extra: 1208/1113,
  44493. bottom: 97/1305
  44494. }
  44495. },
  44496. },
  44497. [
  44498. {
  44499. name: "Normal",
  44500. height: math.unit(5 + 11/12, "feet"),
  44501. default: true
  44502. },
  44503. ]
  44504. ))
  44505. characterMakers.push(() => makeCharacter(
  44506. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44507. {
  44508. front: {
  44509. height: math.unit(6 + 3/12, "feet"),
  44510. weight: math.unit(3.5, "tons"),
  44511. name: "Front",
  44512. image: {
  44513. source: "./media/characters/emberflame/front.svg",
  44514. extra: 1198/672,
  44515. bottom: 82/1280
  44516. }
  44517. },
  44518. side: {
  44519. height: math.unit(6 + 3/12, "feet"),
  44520. weight: math.unit(3.5, "tons"),
  44521. name: "Side",
  44522. image: {
  44523. source: "./media/characters/emberflame/side.svg",
  44524. extra: 938/527,
  44525. bottom: 56/994
  44526. }
  44527. },
  44528. },
  44529. [
  44530. {
  44531. name: "Normal",
  44532. height: math.unit(6 + 3/12, "feet"),
  44533. default: true
  44534. },
  44535. ]
  44536. ))
  44537. characterMakers.push(() => makeCharacter(
  44538. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44539. {
  44540. side: {
  44541. height: math.unit(17.5, "feet"),
  44542. weight: math.unit(35, "tons"),
  44543. name: "Side",
  44544. image: {
  44545. source: "./media/characters/sophie-ambrose/side.svg",
  44546. extra: 1573/1242,
  44547. bottom: 71/1644
  44548. }
  44549. },
  44550. maw: {
  44551. height: math.unit(7.4, "feet"),
  44552. name: "Maw",
  44553. image: {
  44554. source: "./media/characters/sophie-ambrose/maw.svg"
  44555. }
  44556. },
  44557. },
  44558. [
  44559. {
  44560. name: "Normal",
  44561. height: math.unit(17.5, "feet"),
  44562. default: true
  44563. },
  44564. ]
  44565. ))
  44566. characterMakers.push(() => makeCharacter(
  44567. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44568. {
  44569. front: {
  44570. height: math.unit(280, "feet"),
  44571. weight: math.unit(550, "tons"),
  44572. name: "Front",
  44573. image: {
  44574. source: "./media/characters/king-mugi/front.svg",
  44575. extra: 1102/947,
  44576. bottom: 104/1206
  44577. }
  44578. },
  44579. },
  44580. [
  44581. {
  44582. name: "King Mugi",
  44583. height: math.unit(280, "feet"),
  44584. default: true
  44585. },
  44586. ]
  44587. ))
  44588. characterMakers.push(() => makeCharacter(
  44589. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44590. {
  44591. front: {
  44592. height: math.unit(64, "meters"),
  44593. name: "Front",
  44594. image: {
  44595. source: "./media/characters/nova-fox/front.svg",
  44596. extra: 1310/1246,
  44597. bottom: 65/1375
  44598. }
  44599. },
  44600. },
  44601. [
  44602. {
  44603. name: "Macro",
  44604. height: math.unit(64, "meters"),
  44605. default: true
  44606. },
  44607. ]
  44608. ))
  44609. characterMakers.push(() => makeCharacter(
  44610. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44611. {
  44612. front: {
  44613. height: math.unit(6 + 3/12, "feet"),
  44614. weight: math.unit(170, "lb"),
  44615. name: "Front",
  44616. image: {
  44617. source: "./media/characters/sam-bat/front.svg",
  44618. extra: 1601/1411,
  44619. bottom: 125/1726
  44620. }
  44621. },
  44622. back: {
  44623. height: math.unit(6 + 3/12, "feet"),
  44624. weight: math.unit(170, "lb"),
  44625. name: "Back",
  44626. image: {
  44627. source: "./media/characters/sam-bat/back.svg",
  44628. extra: 1577/1405,
  44629. bottom: 58/1635
  44630. }
  44631. },
  44632. },
  44633. [
  44634. {
  44635. name: "Normal",
  44636. height: math.unit(6 + 3/12, "feet"),
  44637. default: true
  44638. },
  44639. ]
  44640. ))
  44641. characterMakers.push(() => makeCharacter(
  44642. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44643. {
  44644. front: {
  44645. height: math.unit(59, "feet"),
  44646. weight: math.unit(40000, "lb"),
  44647. name: "Front",
  44648. image: {
  44649. source: "./media/characters/inari/front.svg",
  44650. extra: 1884/1350,
  44651. bottom: 95/1979
  44652. }
  44653. },
  44654. },
  44655. [
  44656. {
  44657. name: "Gigantamax",
  44658. height: math.unit(59, "feet"),
  44659. default: true
  44660. },
  44661. ]
  44662. ))
  44663. characterMakers.push(() => makeCharacter(
  44664. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44665. {
  44666. front: {
  44667. height: math.unit(5 + 8/12, "feet"),
  44668. name: "Front",
  44669. image: {
  44670. source: "./media/characters/elizabeth/front.svg",
  44671. extra: 1395/1298,
  44672. bottom: 54/1449
  44673. }
  44674. },
  44675. mouth: {
  44676. height: math.unit(1.97, "feet"),
  44677. name: "Mouth",
  44678. image: {
  44679. source: "./media/characters/elizabeth/mouth.svg"
  44680. }
  44681. },
  44682. foot: {
  44683. height: math.unit(1.17, "feet"),
  44684. name: "Foot",
  44685. image: {
  44686. source: "./media/characters/elizabeth/foot.svg"
  44687. }
  44688. },
  44689. },
  44690. [
  44691. {
  44692. name: "Normal",
  44693. height: math.unit(5 + 8/12, "feet"),
  44694. default: true
  44695. },
  44696. {
  44697. name: "Minimacro",
  44698. height: math.unit(18, "feet")
  44699. },
  44700. {
  44701. name: "Macro",
  44702. height: math.unit(180, "feet")
  44703. },
  44704. ]
  44705. ))
  44706. characterMakers.push(() => makeCharacter(
  44707. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44708. {
  44709. front: {
  44710. height: math.unit(5 + 2/12, "feet"),
  44711. name: "Front",
  44712. image: {
  44713. source: "./media/characters/october-gossamer/front.svg",
  44714. extra: 505/454,
  44715. bottom: 7/512
  44716. }
  44717. },
  44718. back: {
  44719. height: math.unit(5 + 2/12, "feet"),
  44720. name: "Back",
  44721. image: {
  44722. source: "./media/characters/october-gossamer/back.svg",
  44723. extra: 501/454,
  44724. bottom: 11/512
  44725. }
  44726. },
  44727. },
  44728. [
  44729. {
  44730. name: "Normal",
  44731. height: math.unit(5 + 2/12, "feet"),
  44732. default: true
  44733. },
  44734. ]
  44735. ))
  44736. characterMakers.push(() => makeCharacter(
  44737. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44738. {
  44739. front: {
  44740. height: math.unit(5, "feet"),
  44741. name: "Front",
  44742. image: {
  44743. source: "./media/characters/epiglottis/front.svg",
  44744. extra: 923/849,
  44745. bottom: 17/940
  44746. }
  44747. },
  44748. },
  44749. [
  44750. {
  44751. name: "Original Size",
  44752. height: math.unit(10, "inches")
  44753. },
  44754. {
  44755. name: "Human Size",
  44756. height: math.unit(5, "feet"),
  44757. default: true
  44758. },
  44759. {
  44760. name: "Big",
  44761. height: math.unit(25, "feet")
  44762. },
  44763. {
  44764. name: "Bigger",
  44765. height: math.unit(50, "feet")
  44766. },
  44767. {
  44768. name: "oh lawd",
  44769. height: math.unit(75, "feet")
  44770. },
  44771. ]
  44772. ))
  44773. characterMakers.push(() => makeCharacter(
  44774. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44775. {
  44776. front: {
  44777. height: math.unit(2 + 4/12, "feet"),
  44778. weight: math.unit(60, "lb"),
  44779. name: "Front",
  44780. image: {
  44781. source: "./media/characters/lerm/front.svg",
  44782. extra: 796/790,
  44783. bottom: 79/875
  44784. }
  44785. },
  44786. },
  44787. [
  44788. {
  44789. name: "Normal",
  44790. height: math.unit(2 + 4/12, "feet"),
  44791. default: true
  44792. },
  44793. ]
  44794. ))
  44795. characterMakers.push(() => makeCharacter(
  44796. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44797. {
  44798. front: {
  44799. height: math.unit(5.5, "feet"),
  44800. weight: math.unit(130, "lb"),
  44801. name: "Front",
  44802. image: {
  44803. source: "./media/characters/xena-nebadon/front.svg",
  44804. extra: 1828/1730,
  44805. bottom: 79/1907
  44806. }
  44807. },
  44808. },
  44809. [
  44810. {
  44811. name: "Tiny Puppy",
  44812. height: math.unit(3, "inches")
  44813. },
  44814. {
  44815. name: "Normal",
  44816. height: math.unit(5.5, "feet"),
  44817. default: true
  44818. },
  44819. {
  44820. name: "Lotta Lady",
  44821. height: math.unit(12, "feet")
  44822. },
  44823. {
  44824. name: "Pretty Big",
  44825. height: math.unit(100, "feet")
  44826. },
  44827. {
  44828. name: "Big",
  44829. height: math.unit(500, "feet")
  44830. },
  44831. {
  44832. name: "Skyscraper Toys",
  44833. height: math.unit(2500, "feet")
  44834. },
  44835. {
  44836. name: "Plane Catcher",
  44837. height: math.unit(8, "miles")
  44838. },
  44839. {
  44840. name: "Planet Toys",
  44841. height: math.unit(15, "earths")
  44842. },
  44843. {
  44844. name: "Stardust",
  44845. height: math.unit(0.25, "galaxies")
  44846. },
  44847. {
  44848. name: "Snacks",
  44849. height: math.unit(70, "universes")
  44850. },
  44851. ]
  44852. ))
  44853. characterMakers.push(() => makeCharacter(
  44854. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44855. {
  44856. front: {
  44857. height: math.unit(1.6, "meters"),
  44858. weight: math.unit(60, "kg"),
  44859. name: "Front",
  44860. image: {
  44861. source: "./media/characters/bounty/front.svg",
  44862. extra: 1426/1308,
  44863. bottom: 15/1441
  44864. }
  44865. },
  44866. back: {
  44867. height: math.unit(1.6, "meters"),
  44868. weight: math.unit(60, "kg"),
  44869. name: "Back",
  44870. image: {
  44871. source: "./media/characters/bounty/back.svg",
  44872. extra: 1417/1307,
  44873. bottom: 8/1425
  44874. }
  44875. },
  44876. },
  44877. [
  44878. {
  44879. name: "Normal",
  44880. height: math.unit(1.6, "meters"),
  44881. default: true
  44882. },
  44883. {
  44884. name: "Macro",
  44885. height: math.unit(300, "meters")
  44886. },
  44887. ]
  44888. ))
  44889. characterMakers.push(() => makeCharacter(
  44890. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44891. {
  44892. front: {
  44893. height: math.unit(2 + 8/12, "feet"),
  44894. weight: math.unit(15, "lb"),
  44895. name: "Front",
  44896. image: {
  44897. source: "./media/characters/mochi/front.svg",
  44898. extra: 1022/852,
  44899. bottom: 435/1457
  44900. }
  44901. },
  44902. back: {
  44903. height: math.unit(2 + 8/12, "feet"),
  44904. weight: math.unit(15, "lb"),
  44905. name: "Back",
  44906. image: {
  44907. source: "./media/characters/mochi/back.svg",
  44908. extra: 1335/1119,
  44909. bottom: 39/1374
  44910. }
  44911. },
  44912. bird: {
  44913. height: math.unit(2 + 8/12, "feet"),
  44914. weight: math.unit(15, "lb"),
  44915. name: "Bird",
  44916. image: {
  44917. source: "./media/characters/mochi/bird.svg",
  44918. extra: 1251/1113,
  44919. bottom: 178/1429
  44920. }
  44921. },
  44922. kaiju: {
  44923. height: math.unit(154, "feet"),
  44924. weight: math.unit(1e7, "lb"),
  44925. name: "Kaiju",
  44926. image: {
  44927. source: "./media/characters/mochi/kaiju.svg",
  44928. extra: 460/324,
  44929. bottom: 40/500
  44930. }
  44931. },
  44932. head: {
  44933. height: math.unit(1.21, "feet"),
  44934. name: "Head",
  44935. image: {
  44936. source: "./media/characters/mochi/head.svg"
  44937. }
  44938. },
  44939. alternateTail: {
  44940. height: math.unit(2 + 8/12, "feet"),
  44941. weight: math.unit(45, "lb"),
  44942. name: "Alternate Tail",
  44943. image: {
  44944. source: "./media/characters/mochi/alternate-tail.svg",
  44945. extra: 139/76,
  44946. bottom: 45/184
  44947. }
  44948. },
  44949. },
  44950. [
  44951. {
  44952. name: "Micro",
  44953. height: math.unit(2, "inches")
  44954. },
  44955. {
  44956. name: "Normal",
  44957. height: math.unit(2 + 8/12, "feet"),
  44958. default: true
  44959. },
  44960. {
  44961. name: "Macro",
  44962. height: math.unit(106, "feet")
  44963. },
  44964. ]
  44965. ))
  44966. characterMakers.push(() => makeCharacter(
  44967. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44968. {
  44969. front: {
  44970. height: math.unit(5.67, "feet"),
  44971. weight: math.unit(135, "lb"),
  44972. name: "Front",
  44973. image: {
  44974. source: "./media/characters/sarel/front.svg",
  44975. extra: 865/788,
  44976. bottom: 97/962
  44977. }
  44978. },
  44979. back: {
  44980. height: math.unit(5.67, "feet"),
  44981. weight: math.unit(135, "lb"),
  44982. name: "Back",
  44983. image: {
  44984. source: "./media/characters/sarel/back.svg",
  44985. extra: 857/777,
  44986. bottom: 32/889
  44987. }
  44988. },
  44989. chozoan: {
  44990. height: math.unit(5.67, "feet"),
  44991. weight: math.unit(135, "lb"),
  44992. name: "Chozoan",
  44993. image: {
  44994. source: "./media/characters/sarel/chozoan.svg",
  44995. extra: 865/788,
  44996. bottom: 97/962
  44997. }
  44998. },
  44999. current: {
  45000. height: math.unit(5.67, "feet"),
  45001. weight: math.unit(135, "lb"),
  45002. name: "Current",
  45003. image: {
  45004. source: "./media/characters/sarel/current.svg",
  45005. extra: 865/788,
  45006. bottom: 97/962
  45007. }
  45008. },
  45009. head: {
  45010. height: math.unit(1.77, "feet"),
  45011. name: "Head",
  45012. image: {
  45013. source: "./media/characters/sarel/head.svg"
  45014. }
  45015. },
  45016. claws: {
  45017. height: math.unit(1.8, "feet"),
  45018. name: "Claws",
  45019. image: {
  45020. source: "./media/characters/sarel/claws.svg"
  45021. }
  45022. },
  45023. clawsAlt: {
  45024. height: math.unit(1.8, "feet"),
  45025. name: "Claws-alt",
  45026. image: {
  45027. source: "./media/characters/sarel/claws-alt.svg"
  45028. }
  45029. },
  45030. },
  45031. [
  45032. {
  45033. name: "Normal",
  45034. height: math.unit(5.67, "feet"),
  45035. default: true
  45036. },
  45037. ]
  45038. ))
  45039. characterMakers.push(() => makeCharacter(
  45040. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45041. {
  45042. front: {
  45043. height: math.unit(5500, "feet"),
  45044. name: "Front",
  45045. image: {
  45046. source: "./media/characters/alyonia/front.svg",
  45047. extra: 1200/1135,
  45048. bottom: 29/1229
  45049. }
  45050. },
  45051. back: {
  45052. height: math.unit(5500, "feet"),
  45053. name: "Back",
  45054. image: {
  45055. source: "./media/characters/alyonia/back.svg",
  45056. extra: 1205/1138,
  45057. bottom: 10/1215
  45058. }
  45059. },
  45060. },
  45061. [
  45062. {
  45063. name: "Small",
  45064. height: math.unit(10, "feet")
  45065. },
  45066. {
  45067. name: "Macro",
  45068. height: math.unit(500, "feet")
  45069. },
  45070. {
  45071. name: "Mega Macro",
  45072. height: math.unit(5500, "feet"),
  45073. default: true
  45074. },
  45075. {
  45076. name: "Mega Macro+",
  45077. height: math.unit(500000, "feet")
  45078. },
  45079. {
  45080. name: "Giga Macro",
  45081. height: math.unit(3000, "miles")
  45082. },
  45083. {
  45084. name: "Tera Macro",
  45085. height: math.unit(2.8e6, "miles")
  45086. },
  45087. {
  45088. name: "Galactic",
  45089. height: math.unit(120000, "lightyears")
  45090. },
  45091. ]
  45092. ))
  45093. characterMakers.push(() => makeCharacter(
  45094. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45095. {
  45096. werewolf: {
  45097. height: math.unit(8, "feet"),
  45098. weight: math.unit(425, "lb"),
  45099. name: "Werewolf",
  45100. image: {
  45101. source: "./media/characters/autumn/werewolf.svg",
  45102. extra: 2154/2031,
  45103. bottom: 160/2314
  45104. }
  45105. },
  45106. human: {
  45107. height: math.unit(5 + 8/12, "feet"),
  45108. weight: math.unit(150, "lb"),
  45109. name: "Human",
  45110. image: {
  45111. source: "./media/characters/autumn/human.svg",
  45112. extra: 1200/1149,
  45113. bottom: 30/1230
  45114. }
  45115. },
  45116. },
  45117. [
  45118. {
  45119. name: "Normal",
  45120. height: math.unit(8, "feet"),
  45121. default: true
  45122. },
  45123. ]
  45124. ))
  45125. characterMakers.push(() => makeCharacter(
  45126. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45127. {
  45128. front: {
  45129. height: math.unit(8 + 5/12, "feet"),
  45130. weight: math.unit(825, "lb"),
  45131. name: "Front",
  45132. image: {
  45133. source: "./media/characters/cobalt-charizard/front.svg",
  45134. extra: 1268/1155,
  45135. bottom: 122/1390
  45136. }
  45137. },
  45138. side: {
  45139. height: math.unit(8 + 5/12, "feet"),
  45140. weight: math.unit(825, "lb"),
  45141. name: "Side",
  45142. image: {
  45143. source: "./media/characters/cobalt-charizard/side.svg",
  45144. extra: 1348/1257,
  45145. bottom: 58/1406
  45146. }
  45147. },
  45148. gMax: {
  45149. height: math.unit(134 + 11/12, "feet"),
  45150. name: "G-Max",
  45151. image: {
  45152. source: "./media/characters/cobalt-charizard/g-max.svg",
  45153. extra: 1835/1541,
  45154. bottom: 151/1986
  45155. }
  45156. },
  45157. },
  45158. [
  45159. {
  45160. name: "Normal",
  45161. height: math.unit(8 + 5/12, "feet"),
  45162. default: true
  45163. },
  45164. ]
  45165. ))
  45166. characterMakers.push(() => makeCharacter(
  45167. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45168. {
  45169. front: {
  45170. height: math.unit(6 + 3/12, "feet"),
  45171. weight: math.unit(210, "lb"),
  45172. name: "Front",
  45173. image: {
  45174. source: "./media/characters/stella/front.svg",
  45175. extra: 3549/3335,
  45176. bottom: 51/3600
  45177. }
  45178. },
  45179. },
  45180. [
  45181. {
  45182. name: "Normal",
  45183. height: math.unit(6 + 3/12, "feet"),
  45184. default: true
  45185. },
  45186. ]
  45187. ))
  45188. characterMakers.push(() => makeCharacter(
  45189. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45190. {
  45191. front: {
  45192. height: math.unit(5, "feet"),
  45193. weight: math.unit(90, "lb"),
  45194. name: "Front",
  45195. image: {
  45196. source: "./media/characters/riley-bishop/front.svg",
  45197. extra: 1450/1428,
  45198. bottom: 152/1602
  45199. }
  45200. },
  45201. },
  45202. [
  45203. {
  45204. name: "Normal",
  45205. height: math.unit(5, "feet"),
  45206. default: true
  45207. },
  45208. ]
  45209. ))
  45210. characterMakers.push(() => makeCharacter(
  45211. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45212. {
  45213. side: {
  45214. height: math.unit(8 + 2/12, "feet"),
  45215. weight: math.unit(500, "kg"),
  45216. name: "Side",
  45217. image: {
  45218. source: "./media/characters/theo-arcanine/side.svg",
  45219. extra: 1342/1074,
  45220. bottom: 111/1453
  45221. }
  45222. },
  45223. },
  45224. [
  45225. {
  45226. name: "Normal",
  45227. height: math.unit(8 + 2/12, "feet"),
  45228. default: true
  45229. },
  45230. ]
  45231. ))
  45232. characterMakers.push(() => makeCharacter(
  45233. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45234. {
  45235. front: {
  45236. height: math.unit(4, "feet"),
  45237. name: "Front",
  45238. image: {
  45239. source: "./media/characters/kali/front.svg",
  45240. extra: 1921/1357,
  45241. bottom: 70/1991
  45242. }
  45243. },
  45244. },
  45245. [
  45246. {
  45247. name: "Normal",
  45248. height: math.unit(4, "feet"),
  45249. default: true
  45250. },
  45251. {
  45252. name: "Macro",
  45253. height: math.unit(32, "meters")
  45254. },
  45255. {
  45256. name: "Macro+",
  45257. height: math.unit(150, "meters")
  45258. },
  45259. {
  45260. name: "Megamacro",
  45261. height: math.unit(7500, "meters")
  45262. },
  45263. {
  45264. name: "Megamacro+",
  45265. height: math.unit(80, "kilometers")
  45266. },
  45267. ]
  45268. ))
  45269. characterMakers.push(() => makeCharacter(
  45270. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45271. {
  45272. side: {
  45273. height: math.unit(5 + 11/12, "feet"),
  45274. weight: math.unit(236, "lb"),
  45275. name: "Side",
  45276. image: {
  45277. source: "./media/characters/gapp/side.svg",
  45278. extra: 775/340,
  45279. bottom: 58/833
  45280. }
  45281. },
  45282. mouth: {
  45283. height: math.unit(2.98, "feet"),
  45284. name: "Mouth",
  45285. image: {
  45286. source: "./media/characters/gapp/mouth.svg"
  45287. }
  45288. },
  45289. },
  45290. [
  45291. {
  45292. name: "Normal",
  45293. height: math.unit(5 + 1/12, "feet"),
  45294. default: true
  45295. },
  45296. ]
  45297. ))
  45298. characterMakers.push(() => makeCharacter(
  45299. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45300. {
  45301. front: {
  45302. height: math.unit(6, "feet"),
  45303. name: "Front",
  45304. image: {
  45305. source: "./media/characters/persephone/front.svg",
  45306. extra: 1895/1717,
  45307. bottom: 96/1991
  45308. }
  45309. },
  45310. back: {
  45311. height: math.unit(6, "feet"),
  45312. name: "Back",
  45313. image: {
  45314. source: "./media/characters/persephone/back.svg",
  45315. extra: 1868/1679,
  45316. bottom: 26/1894
  45317. }
  45318. },
  45319. casual: {
  45320. height: math.unit(6, "feet"),
  45321. name: "Casual",
  45322. image: {
  45323. source: "./media/characters/persephone/casual.svg",
  45324. extra: 1713/1541,
  45325. bottom: 76/1789
  45326. }
  45327. },
  45328. },
  45329. [
  45330. {
  45331. name: "Human Size",
  45332. height: math.unit(6, "feet")
  45333. },
  45334. {
  45335. name: "Big Steppy",
  45336. height: math.unit(600, "meters"),
  45337. default: true
  45338. },
  45339. {
  45340. name: "Galaxy Brain",
  45341. height: math.unit(1, "zettameter")
  45342. },
  45343. ]
  45344. ))
  45345. characterMakers.push(() => makeCharacter(
  45346. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45347. {
  45348. front: {
  45349. height: math.unit(1.85, "meters"),
  45350. name: "Front",
  45351. image: {
  45352. source: "./media/characters/riley-foxthing/front.svg",
  45353. extra: 1495/1354,
  45354. bottom: 122/1617
  45355. }
  45356. },
  45357. frontAlt: {
  45358. height: math.unit(1.85, "meters"),
  45359. name: "Front (Alt)",
  45360. image: {
  45361. source: "./media/characters/riley-foxthing/front-alt.svg",
  45362. extra: 1572/1389,
  45363. bottom: 116/1688
  45364. }
  45365. },
  45366. },
  45367. [
  45368. {
  45369. name: "Normal Sized",
  45370. height: math.unit(1.85, "meters"),
  45371. default: true
  45372. },
  45373. {
  45374. name: "Quite Sizable",
  45375. height: math.unit(5, "meters")
  45376. },
  45377. {
  45378. name: "Rather Large",
  45379. height: math.unit(20, "meters")
  45380. },
  45381. {
  45382. name: "Macro",
  45383. height: math.unit(450, "meters")
  45384. },
  45385. {
  45386. name: "Giga",
  45387. height: math.unit(5, "km")
  45388. },
  45389. ]
  45390. ))
  45391. characterMakers.push(() => makeCharacter(
  45392. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45393. {
  45394. front: {
  45395. height: math.unit(6, "feet"),
  45396. weight: math.unit(200, "lb"),
  45397. name: "Front",
  45398. image: {
  45399. source: "./media/characters/blizzard/front.svg",
  45400. extra: 1136/990,
  45401. bottom: 136/1272
  45402. }
  45403. },
  45404. back: {
  45405. height: math.unit(6, "feet"),
  45406. weight: math.unit(200, "lb"),
  45407. name: "Back",
  45408. image: {
  45409. source: "./media/characters/blizzard/back.svg",
  45410. extra: 1175/1034,
  45411. bottom: 97/1272
  45412. }
  45413. },
  45414. sitting: {
  45415. height: math.unit(3.725, "feet"),
  45416. weight: math.unit(200, "lb"),
  45417. name: "Sitting",
  45418. image: {
  45419. source: "./media/characters/blizzard/sitting.svg",
  45420. extra: 581/485,
  45421. bottom: 90/671
  45422. }
  45423. },
  45424. frontWizard: {
  45425. height: math.unit(7.9, "feet"),
  45426. weight: math.unit(200, "lb"),
  45427. name: "Front (Wizard)",
  45428. image: {
  45429. source: "./media/characters/blizzard/front-wizard.svg"
  45430. }
  45431. },
  45432. backWizard: {
  45433. height: math.unit(7.9, "feet"),
  45434. weight: math.unit(200, "lb"),
  45435. name: "Back (Wizard)",
  45436. image: {
  45437. source: "./media/characters/blizzard/back-wizard.svg"
  45438. }
  45439. },
  45440. frontNsfw: {
  45441. height: math.unit(6, "feet"),
  45442. weight: math.unit(200, "lb"),
  45443. name: "Front (NSFW)",
  45444. image: {
  45445. source: "./media/characters/blizzard/front-nsfw.svg",
  45446. extra: 1136/990,
  45447. bottom: 136/1272
  45448. }
  45449. },
  45450. backNsfw: {
  45451. height: math.unit(6, "feet"),
  45452. weight: math.unit(200, "lb"),
  45453. name: "Back (NSFW)",
  45454. image: {
  45455. source: "./media/characters/blizzard/back-nsfw.svg",
  45456. extra: 1175/1034,
  45457. bottom: 97/1272
  45458. }
  45459. },
  45460. sittingNsfw: {
  45461. height: math.unit(3.725, "feet"),
  45462. weight: math.unit(200, "lb"),
  45463. name: "Sitting (NSFW)",
  45464. image: {
  45465. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45466. extra: 581/485,
  45467. bottom: 90/671
  45468. }
  45469. },
  45470. wizardFrontNsfw: {
  45471. height: math.unit(7.9, "feet"),
  45472. weight: math.unit(200, "lb"),
  45473. name: "Wizard (Front, NSFW)",
  45474. image: {
  45475. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45476. }
  45477. },
  45478. },
  45479. [
  45480. {
  45481. name: "Normal",
  45482. height: math.unit(6, "feet"),
  45483. default: true
  45484. },
  45485. ]
  45486. ))
  45487. characterMakers.push(() => makeCharacter(
  45488. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45489. {
  45490. front: {
  45491. height: math.unit(5 + 2/12, "feet"),
  45492. name: "Front",
  45493. image: {
  45494. source: "./media/characters/lumi/front.svg",
  45495. extra: 1328/1268,
  45496. bottom: 103/1431
  45497. }
  45498. },
  45499. back: {
  45500. height: math.unit(5 + 2/12, "feet"),
  45501. name: "Back",
  45502. image: {
  45503. source: "./media/characters/lumi/back.svg",
  45504. extra: 1381/1327,
  45505. bottom: 43/1424
  45506. }
  45507. },
  45508. },
  45509. [
  45510. {
  45511. name: "Normal",
  45512. height: math.unit(5 + 2/12, "feet"),
  45513. default: true
  45514. },
  45515. ]
  45516. ))
  45517. characterMakers.push(() => makeCharacter(
  45518. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45519. {
  45520. front: {
  45521. height: math.unit(5 + 9/12, "feet"),
  45522. name: "Front",
  45523. image: {
  45524. source: "./media/characters/aliya-cotton/front.svg",
  45525. extra: 577/564,
  45526. bottom: 29/606
  45527. }
  45528. },
  45529. },
  45530. [
  45531. {
  45532. name: "Normal",
  45533. height: math.unit(5 + 9/12, "feet"),
  45534. default: true
  45535. },
  45536. ]
  45537. ))
  45538. characterMakers.push(() => makeCharacter(
  45539. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45540. {
  45541. front: {
  45542. height: math.unit(2.7, "meters"),
  45543. weight: math.unit(25000, "lb"),
  45544. name: "Front",
  45545. image: {
  45546. source: "./media/characters/noah-luxray/front.svg",
  45547. extra: 1644/825,
  45548. bottom: 339/1983
  45549. }
  45550. },
  45551. side: {
  45552. height: math.unit(2.97, "meters"),
  45553. weight: math.unit(25000, "lb"),
  45554. name: "Side",
  45555. image: {
  45556. source: "./media/characters/noah-luxray/side.svg",
  45557. extra: 1319/650,
  45558. bottom: 163/1482
  45559. }
  45560. },
  45561. dick: {
  45562. height: math.unit(7.4, "feet"),
  45563. weight: math.unit(2500, "lb"),
  45564. name: "Dick",
  45565. image: {
  45566. source: "./media/characters/noah-luxray/dick.svg"
  45567. }
  45568. },
  45569. dickAlt: {
  45570. height: math.unit(10.83, "feet"),
  45571. weight: math.unit(2500, "lb"),
  45572. name: "Dick-alt",
  45573. image: {
  45574. source: "./media/characters/noah-luxray/dick-alt.svg"
  45575. }
  45576. },
  45577. },
  45578. [
  45579. {
  45580. name: "BIG",
  45581. height: math.unit(2.7, "meters"),
  45582. default: true
  45583. },
  45584. ]
  45585. ))
  45586. characterMakers.push(() => makeCharacter(
  45587. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45588. {
  45589. standing: {
  45590. height: math.unit(183, "cm"),
  45591. weight: math.unit(68, "kg"),
  45592. name: "Standing",
  45593. image: {
  45594. source: "./media/characters/arion/standing.svg",
  45595. extra: 1869/1807,
  45596. bottom: 93/1962
  45597. }
  45598. },
  45599. reclining: {
  45600. height: math.unit(70.5, "cm"),
  45601. weight: math.unit(68, "lb"),
  45602. name: "Reclining",
  45603. image: {
  45604. source: "./media/characters/arion/reclining.svg",
  45605. extra: 937/870,
  45606. bottom: 63/1000
  45607. }
  45608. },
  45609. },
  45610. [
  45611. {
  45612. name: "Colossus Size, Low",
  45613. height: math.unit(33, "meters"),
  45614. default: true
  45615. },
  45616. {
  45617. name: "Colossus Size, Mid",
  45618. height: math.unit(52, "meters")
  45619. },
  45620. {
  45621. name: "Colossus Size, High",
  45622. height: math.unit(60, "meters")
  45623. },
  45624. {
  45625. name: "Titan Size, Low",
  45626. height: math.unit(91, "meters"),
  45627. },
  45628. {
  45629. name: "Titan Size, Mid",
  45630. height: math.unit(122, "meters")
  45631. },
  45632. {
  45633. name: "Titan Size, High",
  45634. height: math.unit(162, "meters")
  45635. },
  45636. ]
  45637. ))
  45638. characterMakers.push(() => makeCharacter(
  45639. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45640. {
  45641. front: {
  45642. height: math.unit(53, "meters"),
  45643. name: "Front",
  45644. image: {
  45645. source: "./media/characters/stellar-marbey/front.svg",
  45646. extra: 1913/1805,
  45647. bottom: 92/2005
  45648. }
  45649. },
  45650. back: {
  45651. height: math.unit(53, "meters"),
  45652. name: "Back",
  45653. image: {
  45654. source: "./media/characters/stellar-marbey/back.svg",
  45655. extra: 1960/1851,
  45656. bottom: 28/1988
  45657. }
  45658. },
  45659. mouth: {
  45660. height: math.unit(3.5, "meters"),
  45661. name: "Mouth",
  45662. image: {
  45663. source: "./media/characters/stellar-marbey/mouth.svg"
  45664. }
  45665. },
  45666. },
  45667. [
  45668. {
  45669. name: "Macro",
  45670. height: math.unit(53, "meters"),
  45671. default: true
  45672. },
  45673. ]
  45674. ))
  45675. characterMakers.push(() => makeCharacter(
  45676. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45677. {
  45678. front: {
  45679. height: math.unit(8 + 1/12, "feet"),
  45680. weight: math.unit(233, "lb"),
  45681. name: "Front",
  45682. image: {
  45683. source: "./media/characters/matsu/front.svg",
  45684. extra: 832/772,
  45685. bottom: 40/872
  45686. }
  45687. },
  45688. back: {
  45689. height: math.unit(8 + 1/12, "feet"),
  45690. weight: math.unit(233, "lb"),
  45691. name: "Back",
  45692. image: {
  45693. source: "./media/characters/matsu/back.svg",
  45694. extra: 839/780,
  45695. bottom: 47/886
  45696. }
  45697. },
  45698. },
  45699. [
  45700. {
  45701. name: "Normal",
  45702. height: math.unit(8 + 1/12, "feet"),
  45703. default: true
  45704. },
  45705. ]
  45706. ))
  45707. characterMakers.push(() => makeCharacter(
  45708. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45709. {
  45710. front: {
  45711. height: math.unit(4, "feet"),
  45712. weight: math.unit(148, "lb"),
  45713. name: "Front",
  45714. image: {
  45715. source: "./media/characters/thiz/front.svg",
  45716. extra: 1913/1748,
  45717. bottom: 62/1975
  45718. }
  45719. },
  45720. },
  45721. [
  45722. {
  45723. name: "Normal",
  45724. height: math.unit(4, "feet"),
  45725. default: true
  45726. },
  45727. ]
  45728. ))
  45729. characterMakers.push(() => makeCharacter(
  45730. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45731. {
  45732. front: {
  45733. height: math.unit(7 + 6/12, "feet"),
  45734. weight: math.unit(267, "lb"),
  45735. name: "Front",
  45736. image: {
  45737. source: "./media/characters/marcel/front.svg",
  45738. extra: 1221/1096,
  45739. bottom: 76/1297
  45740. }
  45741. },
  45742. },
  45743. [
  45744. {
  45745. name: "Normal",
  45746. height: math.unit(7 + 6/12, "feet"),
  45747. default: true
  45748. },
  45749. ]
  45750. ))
  45751. characterMakers.push(() => makeCharacter(
  45752. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45753. {
  45754. side: {
  45755. height: math.unit(42, "meters"),
  45756. name: "Side",
  45757. image: {
  45758. source: "./media/characters/flake/side.svg",
  45759. extra: 1525/1306,
  45760. bottom: 209/1734
  45761. }
  45762. },
  45763. },
  45764. [
  45765. {
  45766. name: "Normal",
  45767. height: math.unit(42, "meters"),
  45768. default: true
  45769. },
  45770. ]
  45771. ))
  45772. characterMakers.push(() => makeCharacter(
  45773. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45774. {
  45775. dressed: {
  45776. height: math.unit(6 + 4/12, "feet"),
  45777. weight: math.unit(520, "lb"),
  45778. name: "Dressed",
  45779. image: {
  45780. source: "./media/characters/someonne/dressed.svg",
  45781. extra: 1020/1010,
  45782. bottom: 178/1198
  45783. }
  45784. },
  45785. undressed: {
  45786. height: math.unit(6 + 4/12, "feet"),
  45787. weight: math.unit(520, "lb"),
  45788. name: "Undressed",
  45789. image: {
  45790. source: "./media/characters/someonne/undressed.svg",
  45791. extra: 1019/1014,
  45792. bottom: 169/1188
  45793. }
  45794. },
  45795. },
  45796. [
  45797. {
  45798. name: "Normal",
  45799. height: math.unit(6 + 4/12, "feet"),
  45800. default: true
  45801. },
  45802. ]
  45803. ))
  45804. characterMakers.push(() => makeCharacter(
  45805. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45806. {
  45807. front: {
  45808. height: math.unit(3, "feet"),
  45809. weight: math.unit(30, "lb"),
  45810. name: "Front",
  45811. image: {
  45812. source: "./media/characters/till/front.svg",
  45813. extra: 892/823,
  45814. bottom: 55/947
  45815. }
  45816. },
  45817. },
  45818. [
  45819. {
  45820. name: "Normal",
  45821. height: math.unit(3, "feet"),
  45822. default: true
  45823. },
  45824. ]
  45825. ))
  45826. characterMakers.push(() => makeCharacter(
  45827. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45828. {
  45829. front: {
  45830. height: math.unit(9 + 8/12, "feet"),
  45831. weight: math.unit(800, "lb"),
  45832. name: "Front",
  45833. image: {
  45834. source: "./media/characters/sydney-heki/front.svg",
  45835. extra: 1360/1300,
  45836. bottom: 22/1382
  45837. }
  45838. },
  45839. back: {
  45840. height: math.unit(9 + 8/12, "feet"),
  45841. weight: math.unit(800, "lb"),
  45842. name: "Back",
  45843. image: {
  45844. source: "./media/characters/sydney-heki/back.svg",
  45845. extra: 1356/1293,
  45846. bottom: 12/1368
  45847. }
  45848. },
  45849. frontDressed: {
  45850. height: math.unit(9 + 8/12, "feet"),
  45851. weight: math.unit(800, "lb"),
  45852. name: "Front-dressed",
  45853. image: {
  45854. source: "./media/characters/sydney-heki/front-dressed.svg",
  45855. extra: 1360/1300,
  45856. bottom: 22/1382
  45857. }
  45858. },
  45859. },
  45860. [
  45861. {
  45862. name: "Normal",
  45863. height: math.unit(9 + 8/12, "feet"),
  45864. default: true
  45865. },
  45866. {
  45867. name: "Macro",
  45868. height: math.unit(500, "feet")
  45869. },
  45870. {
  45871. name: "Megamacro",
  45872. height: math.unit(3.6, "miles")
  45873. },
  45874. ]
  45875. ))
  45876. characterMakers.push(() => makeCharacter(
  45877. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45878. {
  45879. front: {
  45880. height: math.unit(200, "cm"),
  45881. weight: math.unit(250, "lb"),
  45882. name: "Front",
  45883. image: {
  45884. source: "./media/characters/fowler-karlsson/front.svg",
  45885. extra: 897/845,
  45886. bottom: 123/1020
  45887. }
  45888. },
  45889. back: {
  45890. height: math.unit(200, "cm"),
  45891. weight: math.unit(250, "lb"),
  45892. name: "Back",
  45893. image: {
  45894. source: "./media/characters/fowler-karlsson/back.svg",
  45895. extra: 999/944,
  45896. bottom: 26/1025
  45897. }
  45898. },
  45899. dick: {
  45900. height: math.unit(1.92, "feet"),
  45901. weight: math.unit(150, "lb"),
  45902. name: "Dick",
  45903. image: {
  45904. source: "./media/characters/fowler-karlsson/dick.svg"
  45905. }
  45906. },
  45907. },
  45908. [
  45909. {
  45910. name: "Normal",
  45911. height: math.unit(200, "cm"),
  45912. default: true
  45913. },
  45914. {
  45915. name: "Smaller Macro",
  45916. height: math.unit(90, "m")
  45917. },
  45918. {
  45919. name: "Macro",
  45920. height: math.unit(150, "m")
  45921. },
  45922. {
  45923. name: "Bigger Macro",
  45924. height: math.unit(300, "m")
  45925. },
  45926. ]
  45927. ))
  45928. characterMakers.push(() => makeCharacter(
  45929. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45930. {
  45931. side: {
  45932. height: math.unit(8 + 2/12, "feet"),
  45933. weight: math.unit(1, "tonne"),
  45934. name: "Side",
  45935. image: {
  45936. source: "./media/characters/rylide/side.svg",
  45937. extra: 1318/1034,
  45938. bottom: 106/1424
  45939. }
  45940. },
  45941. sitting: {
  45942. height: math.unit(303, "cm"),
  45943. weight: math.unit(1, "tonne"),
  45944. name: "Sitting",
  45945. image: {
  45946. source: "./media/characters/rylide/sitting.svg",
  45947. extra: 1303/1103,
  45948. bottom: 36/1339
  45949. }
  45950. },
  45951. },
  45952. [
  45953. {
  45954. name: "Normal",
  45955. height: math.unit(8 + 2/12, "feet"),
  45956. default: true
  45957. },
  45958. ]
  45959. ))
  45960. characterMakers.push(() => makeCharacter(
  45961. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45962. {
  45963. front: {
  45964. height: math.unit(5 + 10/12, "feet"),
  45965. weight: math.unit(160, "lb"),
  45966. name: "Front",
  45967. image: {
  45968. source: "./media/characters/pudask/front.svg",
  45969. extra: 1616/1590,
  45970. bottom: 161/1777
  45971. }
  45972. },
  45973. },
  45974. [
  45975. {
  45976. name: "Ferret Height",
  45977. height: math.unit(2 + 5/12, "feet")
  45978. },
  45979. {
  45980. name: "Canon Height",
  45981. height: math.unit(5 + 10/12, "feet"),
  45982. default: true
  45983. },
  45984. ]
  45985. ))
  45986. characterMakers.push(() => makeCharacter(
  45987. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45988. {
  45989. front: {
  45990. height: math.unit(3 + 6/12, "feet"),
  45991. weight: math.unit(60, "lb"),
  45992. name: "Front",
  45993. image: {
  45994. source: "./media/characters/ramita/front.svg",
  45995. extra: 1402/1232,
  45996. bottom: 62/1464
  45997. }
  45998. },
  45999. dressed: {
  46000. height: math.unit(3 + 6/12, "feet"),
  46001. weight: math.unit(60, "lb"),
  46002. name: "Dressed",
  46003. image: {
  46004. source: "./media/characters/ramita/dressed.svg",
  46005. extra: 1534/1249,
  46006. bottom: 50/1584
  46007. }
  46008. },
  46009. },
  46010. [
  46011. {
  46012. name: "Normal",
  46013. height: math.unit(3 + 6/12, "feet"),
  46014. default: true
  46015. },
  46016. ]
  46017. ))
  46018. characterMakers.push(() => makeCharacter(
  46019. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46020. {
  46021. front: {
  46022. height: math.unit(8, "feet"),
  46023. name: "Front",
  46024. image: {
  46025. source: "./media/characters/ark/front.svg",
  46026. extra: 772/693,
  46027. bottom: 45/817
  46028. }
  46029. },
  46030. },
  46031. [
  46032. {
  46033. name: "Normal",
  46034. height: math.unit(8, "feet"),
  46035. default: true
  46036. },
  46037. ]
  46038. ))
  46039. characterMakers.push(() => makeCharacter(
  46040. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46041. {
  46042. front: {
  46043. height: math.unit(6, "feet"),
  46044. weight: math.unit(250, "lb"),
  46045. volume: math.unit(5/8, "gallons"),
  46046. name: "Front",
  46047. image: {
  46048. source: "./media/characters/ludwig-horn/front.svg",
  46049. extra: 1782/1635,
  46050. bottom: 96/1878
  46051. }
  46052. },
  46053. back: {
  46054. height: math.unit(6, "feet"),
  46055. weight: math.unit(250, "lb"),
  46056. volume: math.unit(5/8, "gallons"),
  46057. name: "Back",
  46058. image: {
  46059. source: "./media/characters/ludwig-horn/back.svg",
  46060. extra: 1874/1729,
  46061. bottom: 27/1901
  46062. }
  46063. },
  46064. dick: {
  46065. height: math.unit(1.05, "feet"),
  46066. weight: math.unit(15, "lb"),
  46067. volume: math.unit(5/8, "gallons"),
  46068. name: "Dick",
  46069. image: {
  46070. source: "./media/characters/ludwig-horn/dick.svg"
  46071. }
  46072. },
  46073. },
  46074. [
  46075. {
  46076. name: "Small",
  46077. height: math.unit(6, "feet")
  46078. },
  46079. {
  46080. name: "Typical",
  46081. height: math.unit(12, "feet"),
  46082. default: true
  46083. },
  46084. {
  46085. name: "Building",
  46086. height: math.unit(80, "feet")
  46087. },
  46088. {
  46089. name: "Town",
  46090. height: math.unit(800, "feet")
  46091. },
  46092. {
  46093. name: "Kingdom",
  46094. height: math.unit(80000, "feet")
  46095. },
  46096. {
  46097. name: "Planet",
  46098. height: math.unit(8000000, "feet")
  46099. },
  46100. {
  46101. name: "Universe",
  46102. height: math.unit(8000000000, "feet")
  46103. },
  46104. {
  46105. name: "Transcended",
  46106. height: math.unit(8e27, "feet")
  46107. },
  46108. ]
  46109. ))
  46110. characterMakers.push(() => makeCharacter(
  46111. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46112. {
  46113. front: {
  46114. height: math.unit(5, "feet"),
  46115. weight: math.unit(50, "kg"),
  46116. name: "Front",
  46117. image: {
  46118. source: "./media/characters/biot-avery/front.svg",
  46119. extra: 1295/1232,
  46120. bottom: 86/1381
  46121. }
  46122. },
  46123. },
  46124. [
  46125. {
  46126. name: "Normal",
  46127. height: math.unit(5, "feet"),
  46128. default: true
  46129. },
  46130. ]
  46131. ))
  46132. characterMakers.push(() => makeCharacter(
  46133. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46134. {
  46135. front: {
  46136. height: math.unit(6, "feet"),
  46137. name: "Front",
  46138. image: {
  46139. source: "./media/characters/kitsune-kiro/front.svg",
  46140. extra: 1270/1158,
  46141. bottom: 42/1312
  46142. }
  46143. },
  46144. frontAlt: {
  46145. height: math.unit(6, "feet"),
  46146. name: "Front-alt",
  46147. image: {
  46148. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46149. extra: 1130/1081,
  46150. bottom: 36/1166
  46151. }
  46152. },
  46153. },
  46154. [
  46155. {
  46156. name: "Smol",
  46157. height: math.unit(3, "feet")
  46158. },
  46159. {
  46160. name: "Normal",
  46161. height: math.unit(6, "feet"),
  46162. default: true
  46163. },
  46164. ]
  46165. ))
  46166. characterMakers.push(() => makeCharacter(
  46167. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46168. {
  46169. front: {
  46170. height: math.unit(6, "feet"),
  46171. weight: math.unit(125, "lb"),
  46172. name: "Front",
  46173. image: {
  46174. source: "./media/characters/jack-thatcher/front.svg",
  46175. extra: 1474/1370,
  46176. bottom: 26/1500
  46177. }
  46178. },
  46179. back: {
  46180. height: math.unit(6, "feet"),
  46181. weight: math.unit(125, "lb"),
  46182. name: "Back",
  46183. image: {
  46184. source: "./media/characters/jack-thatcher/back.svg",
  46185. extra: 1489/1384,
  46186. bottom: 18/1507
  46187. }
  46188. },
  46189. },
  46190. [
  46191. {
  46192. name: "Normal",
  46193. height: math.unit(6, "feet"),
  46194. default: true
  46195. },
  46196. {
  46197. name: "Macro",
  46198. height: math.unit(75, "feet")
  46199. },
  46200. {
  46201. name: "Macro-er",
  46202. height: math.unit(250, "feet")
  46203. },
  46204. ]
  46205. ))
  46206. characterMakers.push(() => makeCharacter(
  46207. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46208. {
  46209. front: {
  46210. height: math.unit(7, "feet"),
  46211. weight: math.unit(110, "kg"),
  46212. name: "Front",
  46213. image: {
  46214. source: "./media/characters/max-hyper/front.svg",
  46215. extra: 1969/1881,
  46216. bottom: 49/2018
  46217. }
  46218. },
  46219. },
  46220. [
  46221. {
  46222. name: "Normal",
  46223. height: math.unit(7, "feet"),
  46224. default: true
  46225. },
  46226. ]
  46227. ))
  46228. characterMakers.push(() => makeCharacter(
  46229. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46230. {
  46231. front: {
  46232. height: math.unit(5 + 5/12, "feet"),
  46233. weight: math.unit(160, "lb"),
  46234. name: "Front",
  46235. image: {
  46236. source: "./media/characters/spook/front.svg",
  46237. extra: 794/791,
  46238. bottom: 54/848
  46239. }
  46240. },
  46241. back: {
  46242. height: math.unit(5 + 5/12, "feet"),
  46243. weight: math.unit(160, "lb"),
  46244. name: "Back",
  46245. image: {
  46246. source: "./media/characters/spook/back.svg",
  46247. extra: 812/798,
  46248. bottom: 32/844
  46249. }
  46250. },
  46251. },
  46252. [
  46253. {
  46254. name: "Normal",
  46255. height: math.unit(5 + 5/12, "feet"),
  46256. default: true
  46257. },
  46258. ]
  46259. ))
  46260. characterMakers.push(() => makeCharacter(
  46261. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46262. {
  46263. front: {
  46264. height: math.unit(18, "feet"),
  46265. name: "Front",
  46266. image: {
  46267. source: "./media/characters/xeaduulix/front.svg",
  46268. extra: 1380/1166,
  46269. bottom: 110/1490
  46270. }
  46271. },
  46272. back: {
  46273. height: math.unit(18, "feet"),
  46274. name: "Back",
  46275. image: {
  46276. source: "./media/characters/xeaduulix/back.svg",
  46277. extra: 1592/1170,
  46278. bottom: 128/1720
  46279. }
  46280. },
  46281. frontNsfw: {
  46282. height: math.unit(18, "feet"),
  46283. name: "Front (NSFW)",
  46284. image: {
  46285. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46286. extra: 1380/1166,
  46287. bottom: 110/1490
  46288. }
  46289. },
  46290. backNsfw: {
  46291. height: math.unit(18, "feet"),
  46292. name: "Back (NSFW)",
  46293. image: {
  46294. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46295. extra: 1592/1170,
  46296. bottom: 128/1720
  46297. }
  46298. },
  46299. },
  46300. [
  46301. {
  46302. name: "Normal",
  46303. height: math.unit(18, "feet"),
  46304. default: true
  46305. },
  46306. ]
  46307. ))
  46308. characterMakers.push(() => makeCharacter(
  46309. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46310. {
  46311. spreadWings: {
  46312. height: math.unit(20, "feet"),
  46313. name: "Spread Wings",
  46314. image: {
  46315. source: "./media/characters/fledge/spread-wings.svg",
  46316. extra: 693/635,
  46317. bottom: 26/719
  46318. }
  46319. },
  46320. front: {
  46321. height: math.unit(20, "feet"),
  46322. name: "Front",
  46323. image: {
  46324. source: "./media/characters/fledge/front.svg",
  46325. extra: 684/637,
  46326. bottom: 18/702
  46327. }
  46328. },
  46329. frontAlt: {
  46330. height: math.unit(20, "feet"),
  46331. name: "Front (Alt)",
  46332. image: {
  46333. source: "./media/characters/fledge/front-alt.svg",
  46334. extra: 708/664,
  46335. bottom: 13/721
  46336. }
  46337. },
  46338. back: {
  46339. height: math.unit(20, "feet"),
  46340. name: "Back",
  46341. image: {
  46342. source: "./media/characters/fledge/back.svg",
  46343. extra: 718/634,
  46344. bottom: 22/740
  46345. }
  46346. },
  46347. head: {
  46348. height: math.unit(5.55, "feet"),
  46349. name: "Head",
  46350. image: {
  46351. source: "./media/characters/fledge/head.svg"
  46352. }
  46353. },
  46354. headAlt: {
  46355. height: math.unit(5.1, "feet"),
  46356. name: "Head (Alt)",
  46357. image: {
  46358. source: "./media/characters/fledge/head-alt.svg"
  46359. }
  46360. },
  46361. },
  46362. [
  46363. {
  46364. name: "Small",
  46365. height: math.unit(6 + 2/12, "feet")
  46366. },
  46367. {
  46368. name: "Big",
  46369. height: math.unit(20, "feet"),
  46370. default: true
  46371. },
  46372. {
  46373. name: "Giant",
  46374. height: math.unit(100, "feet")
  46375. },
  46376. {
  46377. name: "Macro",
  46378. height: math.unit(200, "feet")
  46379. },
  46380. ]
  46381. ))
  46382. characterMakers.push(() => makeCharacter(
  46383. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46384. {
  46385. front: {
  46386. height: math.unit(1, "meter"),
  46387. name: "Front",
  46388. image: {
  46389. source: "./media/characters/atlas-morenai/front.svg",
  46390. extra: 1275/1043,
  46391. bottom: 19/1294
  46392. }
  46393. },
  46394. back: {
  46395. height: math.unit(1, "meter"),
  46396. name: "Back",
  46397. image: {
  46398. source: "./media/characters/atlas-morenai/back.svg",
  46399. extra: 1141/1001,
  46400. bottom: 25/1166
  46401. }
  46402. },
  46403. },
  46404. [
  46405. {
  46406. name: "Normal",
  46407. height: math.unit(1, "meter"),
  46408. default: true
  46409. },
  46410. {
  46411. name: "Magic-Infused",
  46412. height: math.unit(5, "meters")
  46413. },
  46414. ]
  46415. ))
  46416. characterMakers.push(() => makeCharacter(
  46417. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46418. {
  46419. front: {
  46420. height: math.unit(5, "meters"),
  46421. name: "Front",
  46422. image: {
  46423. source: "./media/characters/cintia/front.svg",
  46424. extra: 1312/1228,
  46425. bottom: 38/1350
  46426. }
  46427. },
  46428. back: {
  46429. height: math.unit(5, "meters"),
  46430. name: "Back",
  46431. image: {
  46432. source: "./media/characters/cintia/back.svg",
  46433. extra: 1260/1166,
  46434. bottom: 98/1358
  46435. }
  46436. },
  46437. frontDick: {
  46438. height: math.unit(5, "meters"),
  46439. name: "Front (Dick)",
  46440. image: {
  46441. source: "./media/characters/cintia/front-dick.svg",
  46442. extra: 1312/1228,
  46443. bottom: 38/1350
  46444. }
  46445. },
  46446. backDick: {
  46447. height: math.unit(5, "meters"),
  46448. name: "Back (Dick)",
  46449. image: {
  46450. source: "./media/characters/cintia/back-dick.svg",
  46451. extra: 1260/1166,
  46452. bottom: 98/1358
  46453. }
  46454. },
  46455. bust: {
  46456. height: math.unit(1.97, "meters"),
  46457. name: "Bust",
  46458. image: {
  46459. source: "./media/characters/cintia/bust.svg",
  46460. extra: 617/565,
  46461. bottom: 0/617
  46462. }
  46463. },
  46464. },
  46465. [
  46466. {
  46467. name: "Normal",
  46468. height: math.unit(5, "meters"),
  46469. default: true
  46470. },
  46471. ]
  46472. ))
  46473. characterMakers.push(() => makeCharacter(
  46474. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46475. {
  46476. side: {
  46477. height: math.unit(100, "feet"),
  46478. name: "Side",
  46479. image: {
  46480. source: "./media/characters/denora/side.svg",
  46481. extra: 875/803,
  46482. bottom: 9/884
  46483. }
  46484. },
  46485. },
  46486. [
  46487. {
  46488. name: "Standard",
  46489. height: math.unit(100, "feet"),
  46490. default: true
  46491. },
  46492. {
  46493. name: "Grand",
  46494. height: math.unit(1000, "feet")
  46495. },
  46496. {
  46497. name: "Conquering",
  46498. height: math.unit(10000, "feet")
  46499. },
  46500. ]
  46501. ))
  46502. characterMakers.push(() => makeCharacter(
  46503. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46504. {
  46505. dressed: {
  46506. height: math.unit(8 + 5/12, "feet"),
  46507. weight: math.unit(700, "lb"),
  46508. name: "Dressed",
  46509. image: {
  46510. source: "./media/characters/kiva/dressed.svg",
  46511. extra: 1102/1055,
  46512. bottom: 60/1162
  46513. }
  46514. },
  46515. nude: {
  46516. height: math.unit(8 + 5/12, "feet"),
  46517. weight: math.unit(700, "lb"),
  46518. name: "Nude",
  46519. image: {
  46520. source: "./media/characters/kiva/nude.svg",
  46521. extra: 1102/1055,
  46522. bottom: 60/1162
  46523. }
  46524. },
  46525. },
  46526. [
  46527. {
  46528. name: "Base Height",
  46529. height: math.unit(8 + 5/12, "feet"),
  46530. default: true
  46531. },
  46532. {
  46533. name: "Macro",
  46534. height: math.unit(100, "feet")
  46535. },
  46536. {
  46537. name: "Max",
  46538. height: math.unit(3280, "feet")
  46539. },
  46540. ]
  46541. ))
  46542. characterMakers.push(() => makeCharacter(
  46543. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46544. {
  46545. front: {
  46546. height: math.unit(6 + 8/12, "feet"),
  46547. weight: math.unit(250, "lb"),
  46548. name: "Front",
  46549. image: {
  46550. source: "./media/characters/ztragon/front.svg",
  46551. extra: 1825/1684,
  46552. bottom: 98/1923
  46553. }
  46554. },
  46555. },
  46556. [
  46557. {
  46558. name: "Normal",
  46559. height: math.unit(6 + 8/12, "feet"),
  46560. default: true
  46561. },
  46562. {
  46563. name: "Macro",
  46564. height: math.unit(80, "feet")
  46565. },
  46566. ]
  46567. ))
  46568. characterMakers.push(() => makeCharacter(
  46569. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46570. {
  46571. front: {
  46572. height: math.unit(10.4, "feet"),
  46573. weight: math.unit(2, "tons"),
  46574. name: "Front",
  46575. image: {
  46576. source: "./media/characters/yesenia/front.svg",
  46577. extra: 1479/1474,
  46578. bottom: 233/1712
  46579. }
  46580. },
  46581. },
  46582. [
  46583. {
  46584. name: "Normal",
  46585. height: math.unit(10.4, "feet"),
  46586. default: true
  46587. },
  46588. ]
  46589. ))
  46590. characterMakers.push(() => makeCharacter(
  46591. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46592. {
  46593. normal: {
  46594. height: math.unit(6 + 1/12, "feet"),
  46595. weight: math.unit(180, "lb"),
  46596. name: "Normal",
  46597. image: {
  46598. source: "./media/characters/leanne-lycheborne/normal.svg",
  46599. extra: 1748/1660,
  46600. bottom: 98/1846
  46601. }
  46602. },
  46603. were: {
  46604. height: math.unit(12, "feet"),
  46605. weight: math.unit(1600, "lb"),
  46606. name: "Were",
  46607. image: {
  46608. source: "./media/characters/leanne-lycheborne/were.svg",
  46609. extra: 1485/1432,
  46610. bottom: 66/1551
  46611. }
  46612. },
  46613. },
  46614. [
  46615. {
  46616. name: "Normal",
  46617. height: math.unit(6 + 1/12, "feet"),
  46618. default: true
  46619. },
  46620. ]
  46621. ))
  46622. characterMakers.push(() => makeCharacter(
  46623. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46624. {
  46625. side: {
  46626. height: math.unit(13, "feet"),
  46627. name: "Side",
  46628. image: {
  46629. source: "./media/characters/kira-tyler/side.svg",
  46630. extra: 693/393,
  46631. bottom: 58/751
  46632. }
  46633. },
  46634. },
  46635. [
  46636. {
  46637. name: "Normal",
  46638. height: math.unit(13, "feet"),
  46639. default: true
  46640. },
  46641. ]
  46642. ))
  46643. characterMakers.push(() => makeCharacter(
  46644. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46645. {
  46646. front: {
  46647. height: math.unit(10.3, "feet"),
  46648. weight: math.unit(150, "lb"),
  46649. name: "Front",
  46650. image: {
  46651. source: "./media/characters/blaze/front.svg",
  46652. extra: 1378/1286,
  46653. bottom: 172/1550
  46654. }
  46655. },
  46656. },
  46657. [
  46658. {
  46659. name: "Normal",
  46660. height: math.unit(10.3, "feet"),
  46661. default: true
  46662. },
  46663. ]
  46664. ))
  46665. characterMakers.push(() => makeCharacter(
  46666. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46667. {
  46668. side: {
  46669. height: math.unit(2, "meters"),
  46670. weight: math.unit(400, "kg"),
  46671. name: "Side",
  46672. image: {
  46673. source: "./media/characters/anu/side.svg",
  46674. extra: 506/394,
  46675. bottom: 18/524
  46676. }
  46677. },
  46678. },
  46679. [
  46680. {
  46681. name: "Humanoid",
  46682. height: math.unit(2, "meters")
  46683. },
  46684. {
  46685. name: "Normal",
  46686. height: math.unit(5, "meters"),
  46687. default: true
  46688. },
  46689. ]
  46690. ))
  46691. characterMakers.push(() => makeCharacter(
  46692. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46693. {
  46694. front: {
  46695. height: math.unit(5 + 5/12, "feet"),
  46696. weight: math.unit(170, "lb"),
  46697. name: "Front",
  46698. image: {
  46699. source: "./media/characters/synx-the-lynx/front.svg",
  46700. extra: 1893/1745,
  46701. bottom: 17/1910
  46702. }
  46703. },
  46704. side: {
  46705. height: math.unit(5 + 5/12, "feet"),
  46706. weight: math.unit(170, "lb"),
  46707. name: "Side",
  46708. image: {
  46709. source: "./media/characters/synx-the-lynx/side.svg",
  46710. extra: 1884/1740,
  46711. bottom: 39/1923
  46712. }
  46713. },
  46714. back: {
  46715. height: math.unit(5 + 5/12, "feet"),
  46716. weight: math.unit(170, "lb"),
  46717. name: "Back",
  46718. image: {
  46719. source: "./media/characters/synx-the-lynx/back.svg",
  46720. extra: 1903/1755,
  46721. bottom: 14/1917
  46722. }
  46723. },
  46724. },
  46725. [
  46726. {
  46727. name: "Normal",
  46728. height: math.unit(5 + 5/12, "feet"),
  46729. default: true
  46730. },
  46731. ]
  46732. ))
  46733. characterMakers.push(() => makeCharacter(
  46734. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46735. {
  46736. back: {
  46737. height: math.unit(15, "feet"),
  46738. name: "Back",
  46739. image: {
  46740. source: "./media/characters/nadezda-fex/back.svg",
  46741. extra: 1695/1481,
  46742. bottom: 25/1720
  46743. }
  46744. },
  46745. },
  46746. [
  46747. {
  46748. name: "Normal",
  46749. height: math.unit(15, "feet"),
  46750. default: true
  46751. },
  46752. {
  46753. name: "Macro",
  46754. height: math.unit(2.5, "miles")
  46755. },
  46756. {
  46757. name: "Goddess",
  46758. height: math.unit(2, "multiverses")
  46759. },
  46760. ]
  46761. ))
  46762. characterMakers.push(() => makeCharacter(
  46763. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46764. {
  46765. front: {
  46766. height: math.unit(216, "cm"),
  46767. name: "Front",
  46768. image: {
  46769. source: "./media/characters/lev/front.svg",
  46770. extra: 1728/1670,
  46771. bottom: 82/1810
  46772. }
  46773. },
  46774. back: {
  46775. height: math.unit(216, "cm"),
  46776. name: "Back",
  46777. image: {
  46778. source: "./media/characters/lev/back.svg",
  46779. extra: 1738/1675,
  46780. bottom: 24/1762
  46781. }
  46782. },
  46783. dressed: {
  46784. height: math.unit(216, "cm"),
  46785. name: "Dressed",
  46786. image: {
  46787. source: "./media/characters/lev/dressed.svg",
  46788. extra: 1397/1351,
  46789. bottom: 73/1470
  46790. }
  46791. },
  46792. head: {
  46793. height: math.unit(0.51, "meter"),
  46794. name: "Head",
  46795. image: {
  46796. source: "./media/characters/lev/head.svg"
  46797. }
  46798. },
  46799. },
  46800. [
  46801. {
  46802. name: "Normal",
  46803. height: math.unit(216, "cm"),
  46804. default: true
  46805. },
  46806. {
  46807. name: "Relatively Macro",
  46808. height: math.unit(80, "meters")
  46809. },
  46810. {
  46811. name: "Megamacro",
  46812. height: math.unit(21600, "meters")
  46813. },
  46814. {
  46815. name: "Megamacro+",
  46816. height: math.unit(64800, "meters")
  46817. },
  46818. ]
  46819. ))
  46820. characterMakers.push(() => makeCharacter(
  46821. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46822. {
  46823. front: {
  46824. height: math.unit(2, "meters"),
  46825. weight: math.unit(80, "kg"),
  46826. name: "Front",
  46827. image: {
  46828. source: "./media/characters/moka/front.svg",
  46829. extra: 1337/1255,
  46830. bottom: 58/1395
  46831. }
  46832. },
  46833. },
  46834. [
  46835. {
  46836. name: "Micro",
  46837. height: math.unit(15, "cm")
  46838. },
  46839. {
  46840. name: "Normal",
  46841. height: math.unit(2, "meters"),
  46842. default: true
  46843. },
  46844. {
  46845. name: "Macro",
  46846. height: math.unit(20, "meters"),
  46847. },
  46848. ]
  46849. ))
  46850. characterMakers.push(() => makeCharacter(
  46851. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46852. {
  46853. front: {
  46854. height: math.unit(9, "feet"),
  46855. weight: math.unit(240, "lb"),
  46856. name: "Front",
  46857. image: {
  46858. source: "./media/characters/kuzco/front.svg",
  46859. extra: 1593/1487,
  46860. bottom: 32/1625
  46861. }
  46862. },
  46863. side: {
  46864. height: math.unit(9, "feet"),
  46865. weight: math.unit(240, "lb"),
  46866. name: "Side",
  46867. image: {
  46868. source: "./media/characters/kuzco/side.svg",
  46869. extra: 1575/1485,
  46870. bottom: 30/1605
  46871. }
  46872. },
  46873. back: {
  46874. height: math.unit(9, "feet"),
  46875. weight: math.unit(240, "lb"),
  46876. name: "Back",
  46877. image: {
  46878. source: "./media/characters/kuzco/back.svg",
  46879. extra: 1603/1514,
  46880. bottom: 14/1617
  46881. }
  46882. },
  46883. },
  46884. [
  46885. {
  46886. name: "Normal",
  46887. height: math.unit(9, "feet"),
  46888. default: true
  46889. },
  46890. ]
  46891. ))
  46892. characterMakers.push(() => makeCharacter(
  46893. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46894. {
  46895. side: {
  46896. height: math.unit(2, "meters"),
  46897. weight: math.unit(300, "kg"),
  46898. name: "Side",
  46899. image: {
  46900. source: "./media/characters/ceruleus/side.svg",
  46901. extra: 1068/974,
  46902. bottom: 126/1194
  46903. }
  46904. },
  46905. maw: {
  46906. height: math.unit(0.8125, "meter"),
  46907. name: "Maw",
  46908. image: {
  46909. source: "./media/characters/ceruleus/maw.svg"
  46910. }
  46911. },
  46912. },
  46913. [
  46914. {
  46915. name: "Normal",
  46916. height: math.unit(16, "meters"),
  46917. default: true
  46918. },
  46919. ]
  46920. ))
  46921. characterMakers.push(() => makeCharacter(
  46922. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46923. {
  46924. front: {
  46925. height: math.unit(9, "feet"),
  46926. weight: math.unit(500, "kg"),
  46927. name: "Front",
  46928. image: {
  46929. source: "./media/characters/acouya/front.svg",
  46930. extra: 1660/1473,
  46931. bottom: 28/1688
  46932. }
  46933. },
  46934. },
  46935. [
  46936. {
  46937. name: "Normal",
  46938. height: math.unit(9, "feet"),
  46939. default: true
  46940. },
  46941. ]
  46942. ))
  46943. characterMakers.push(() => makeCharacter(
  46944. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46945. {
  46946. front: {
  46947. height: math.unit(5 + 6/12, "feet"),
  46948. weight: math.unit(195, "lb"),
  46949. name: "Front",
  46950. image: {
  46951. source: "./media/characters/vant/front.svg",
  46952. extra: 1396/1320,
  46953. bottom: 20/1416
  46954. }
  46955. },
  46956. back: {
  46957. height: math.unit(5 + 6/12, "feet"),
  46958. weight: math.unit(195, "lb"),
  46959. name: "Back",
  46960. image: {
  46961. source: "./media/characters/vant/back.svg",
  46962. extra: 1396/1320,
  46963. bottom: 20/1416
  46964. }
  46965. },
  46966. maw: {
  46967. height: math.unit(0.75, "feet"),
  46968. name: "Maw",
  46969. image: {
  46970. source: "./media/characters/vant/maw.svg"
  46971. }
  46972. },
  46973. paw: {
  46974. height: math.unit(1.07, "feet"),
  46975. name: "Paw",
  46976. image: {
  46977. source: "./media/characters/vant/paw.svg"
  46978. }
  46979. },
  46980. },
  46981. [
  46982. {
  46983. name: "Micro",
  46984. height: math.unit(0.25, "inches")
  46985. },
  46986. {
  46987. name: "Normal",
  46988. height: math.unit(5 + 6/12, "feet"),
  46989. default: true
  46990. },
  46991. {
  46992. name: "Macro",
  46993. height: math.unit(75, "feet")
  46994. },
  46995. ]
  46996. ))
  46997. characterMakers.push(() => makeCharacter(
  46998. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46999. {
  47000. front: {
  47001. height: math.unit(30, "meters"),
  47002. weight: math.unit(363, "tons"),
  47003. name: "Front",
  47004. image: {
  47005. source: "./media/characters/ahra/front.svg",
  47006. extra: 1914/1814,
  47007. bottom: 46/1960
  47008. }
  47009. },
  47010. },
  47011. [
  47012. {
  47013. name: "Macro",
  47014. height: math.unit(30, "meters"),
  47015. default: true
  47016. },
  47017. ]
  47018. ))
  47019. characterMakers.push(() => makeCharacter(
  47020. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47021. {
  47022. undressed: {
  47023. height: math.unit(2, "m"),
  47024. weight: math.unit(250, "kg"),
  47025. name: "Undressed",
  47026. image: {
  47027. source: "./media/characters/coriander/undressed.svg",
  47028. extra: 1757/1606,
  47029. bottom: 107/1864
  47030. }
  47031. },
  47032. dressed: {
  47033. height: math.unit(2, "m"),
  47034. weight: math.unit(250, "kg"),
  47035. name: "Dressed",
  47036. image: {
  47037. source: "./media/characters/coriander/dressed.svg",
  47038. extra: 1757/1606,
  47039. bottom: 107/1864
  47040. }
  47041. },
  47042. },
  47043. [
  47044. {
  47045. name: "Normal",
  47046. height: math.unit(4, "meters"),
  47047. default: true
  47048. },
  47049. {
  47050. name: "XL",
  47051. height: math.unit(6, "meters")
  47052. },
  47053. {
  47054. name: "XXL",
  47055. height: math.unit(8, "meters")
  47056. },
  47057. ]
  47058. ))
  47059. characterMakers.push(() => makeCharacter(
  47060. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47061. {
  47062. front: {
  47063. height: math.unit(6, "feet"),
  47064. name: "Front",
  47065. image: {
  47066. source: "./media/characters/syrinx/front.svg",
  47067. extra: 1557/1259,
  47068. bottom: 171/1728
  47069. }
  47070. },
  47071. },
  47072. [
  47073. {
  47074. name: "Normal",
  47075. height: math.unit(6 + 3/12, "feet"),
  47076. default: true
  47077. },
  47078. ]
  47079. ))
  47080. characterMakers.push(() => makeCharacter(
  47081. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47082. {
  47083. front: {
  47084. height: math.unit(11 + 6/12, "feet"),
  47085. weight: math.unit(1.5, "tons"),
  47086. name: "Front",
  47087. image: {
  47088. source: "./media/characters/bor/front.svg",
  47089. extra: 1189/1109,
  47090. bottom: 170/1359
  47091. }
  47092. },
  47093. },
  47094. [
  47095. {
  47096. name: "Normal",
  47097. height: math.unit(11 + 6/12, "feet"),
  47098. default: true
  47099. },
  47100. {
  47101. name: "Macro",
  47102. height: math.unit(32 + 9/12, "feet")
  47103. },
  47104. ]
  47105. ))
  47106. characterMakers.push(() => makeCharacter(
  47107. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47108. {
  47109. anthro: {
  47110. height: math.unit(9, "feet"),
  47111. weight: math.unit(2076, "lb"),
  47112. name: "Anthro",
  47113. image: {
  47114. source: "./media/characters/abacus/anthro.svg",
  47115. extra: 1540/1494,
  47116. bottom: 233/1773
  47117. }
  47118. },
  47119. pigeon: {
  47120. height: math.unit(1, "feet"),
  47121. name: "Pigeon",
  47122. image: {
  47123. source: "./media/characters/abacus/pigeon.svg",
  47124. extra: 528/525,
  47125. bottom: 46/574
  47126. }
  47127. },
  47128. },
  47129. [
  47130. {
  47131. name: "Normal",
  47132. height: math.unit(9, "feet"),
  47133. default: true
  47134. },
  47135. ]
  47136. ))
  47137. characterMakers.push(() => makeCharacter(
  47138. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47139. {
  47140. side: {
  47141. height: math.unit(6, "feet"),
  47142. name: "Side",
  47143. image: {
  47144. source: "./media/characters/delkhan/side.svg",
  47145. extra: 1884/1786,
  47146. bottom: 308/2192
  47147. }
  47148. },
  47149. head: {
  47150. height: math.unit(3.38, "feet"),
  47151. name: "Head",
  47152. image: {
  47153. source: "./media/characters/delkhan/head.svg"
  47154. }
  47155. },
  47156. },
  47157. [
  47158. {
  47159. name: "Normal",
  47160. height: math.unit(72, "feet"),
  47161. default: true
  47162. },
  47163. {
  47164. name: "Giant",
  47165. height: math.unit(172, "feet")
  47166. },
  47167. ]
  47168. ))
  47169. characterMakers.push(() => makeCharacter(
  47170. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47171. {
  47172. standing: {
  47173. height: math.unit(6, "feet"),
  47174. name: "Standing",
  47175. image: {
  47176. source: "./media/characters/euchidat/standing.svg",
  47177. extra: 1612/1553,
  47178. bottom: 116/1728
  47179. }
  47180. },
  47181. leaning: {
  47182. height: math.unit(6, "feet"),
  47183. name: "Leaning",
  47184. image: {
  47185. source: "./media/characters/euchidat/leaning.svg",
  47186. extra: 1719/1674,
  47187. bottom: 27/1746
  47188. }
  47189. },
  47190. },
  47191. [
  47192. {
  47193. name: "Normal",
  47194. height: math.unit(175, "feet"),
  47195. default: true
  47196. },
  47197. {
  47198. name: "Megamacro",
  47199. height: math.unit(190, "miles")
  47200. },
  47201. {
  47202. name: "Gigamacro",
  47203. height: math.unit(190000, "miles")
  47204. },
  47205. ]
  47206. ))
  47207. characterMakers.push(() => makeCharacter(
  47208. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47209. {
  47210. front: {
  47211. height: math.unit(6, "feet"),
  47212. weight: math.unit(150, "lb"),
  47213. name: "Front",
  47214. image: {
  47215. source: "./media/characters/rebecca-stack/front.svg",
  47216. extra: 1256/1201,
  47217. bottom: 18/1274
  47218. }
  47219. },
  47220. },
  47221. [
  47222. {
  47223. name: "Normal",
  47224. height: math.unit(5 + 8/12, "feet"),
  47225. default: true
  47226. },
  47227. {
  47228. name: "Demolitionist",
  47229. height: math.unit(200, "feet")
  47230. },
  47231. {
  47232. name: "Out of Control",
  47233. height: math.unit(2, "miles")
  47234. },
  47235. {
  47236. name: "Giga",
  47237. height: math.unit(7200, "miles")
  47238. },
  47239. ]
  47240. ))
  47241. characterMakers.push(() => makeCharacter(
  47242. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47243. {
  47244. front: {
  47245. height: math.unit(6, "feet"),
  47246. weight: math.unit(150, "lb"),
  47247. name: "Front",
  47248. image: {
  47249. source: "./media/characters/jenny-cartwright/front.svg",
  47250. extra: 1384/1376,
  47251. bottom: 58/1442
  47252. }
  47253. },
  47254. },
  47255. [
  47256. {
  47257. name: "Normal",
  47258. height: math.unit(6 + 7/12, "feet"),
  47259. default: true
  47260. },
  47261. {
  47262. name: "Librarian",
  47263. height: math.unit(55, "feet")
  47264. },
  47265. {
  47266. name: "Sightseer",
  47267. height: math.unit(50, "miles")
  47268. },
  47269. {
  47270. name: "Giga",
  47271. height: math.unit(30000, "miles")
  47272. },
  47273. ]
  47274. ))
  47275. characterMakers.push(() => makeCharacter(
  47276. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47277. {
  47278. nude: {
  47279. height: math.unit(8, "feet"),
  47280. weight: math.unit(225, "lb"),
  47281. name: "Nude",
  47282. image: {
  47283. source: "./media/characters/marvy/nude.svg",
  47284. extra: 1900/1683,
  47285. bottom: 89/1989
  47286. }
  47287. },
  47288. dressed: {
  47289. height: math.unit(8, "feet"),
  47290. weight: math.unit(225, "lb"),
  47291. name: "Dressed",
  47292. image: {
  47293. source: "./media/characters/marvy/dressed.svg",
  47294. extra: 1900/1683,
  47295. bottom: 89/1989
  47296. }
  47297. },
  47298. head: {
  47299. height: math.unit(2.85, "feet"),
  47300. name: "Head",
  47301. image: {
  47302. source: "./media/characters/marvy/head.svg"
  47303. }
  47304. },
  47305. },
  47306. [
  47307. {
  47308. name: "Normal",
  47309. height: math.unit(8, "feet"),
  47310. default: true
  47311. },
  47312. ]
  47313. ))
  47314. characterMakers.push(() => makeCharacter(
  47315. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47316. {
  47317. front: {
  47318. height: math.unit(8, "feet"),
  47319. weight: math.unit(250, "lb"),
  47320. name: "Front",
  47321. image: {
  47322. source: "./media/characters/leah/front.svg",
  47323. extra: 1257/1149,
  47324. bottom: 109/1366
  47325. }
  47326. },
  47327. },
  47328. [
  47329. {
  47330. name: "Normal",
  47331. height: math.unit(8, "feet"),
  47332. default: true
  47333. },
  47334. {
  47335. name: "Minimacro",
  47336. height: math.unit(40, "feet")
  47337. },
  47338. {
  47339. name: "Macro",
  47340. height: math.unit(124, "feet")
  47341. },
  47342. {
  47343. name: "Megamacro",
  47344. height: math.unit(850, "feet")
  47345. },
  47346. ]
  47347. ))
  47348. characterMakers.push(() => makeCharacter(
  47349. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47350. {
  47351. side: {
  47352. height: math.unit(13 + 6/12, "feet"),
  47353. weight: math.unit(3200, "lb"),
  47354. name: "Side",
  47355. image: {
  47356. source: "./media/characters/alvir/side.svg",
  47357. extra: 896/589,
  47358. bottom: 26/922
  47359. }
  47360. },
  47361. },
  47362. [
  47363. {
  47364. name: "Normal",
  47365. height: math.unit(13 + 6/12, "feet"),
  47366. default: true
  47367. },
  47368. ]
  47369. ))
  47370. characterMakers.push(() => makeCharacter(
  47371. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47372. {
  47373. front: {
  47374. height: math.unit(5 + 4/12, "feet"),
  47375. weight: math.unit(236, "lb"),
  47376. name: "Front",
  47377. image: {
  47378. source: "./media/characters/zaina-khalil/front.svg",
  47379. extra: 1533/1485,
  47380. bottom: 94/1627
  47381. }
  47382. },
  47383. side: {
  47384. height: math.unit(5 + 4/12, "feet"),
  47385. weight: math.unit(236, "lb"),
  47386. name: "Side",
  47387. image: {
  47388. source: "./media/characters/zaina-khalil/side.svg",
  47389. extra: 1537/1498,
  47390. bottom: 66/1603
  47391. }
  47392. },
  47393. back: {
  47394. height: math.unit(5 + 4/12, "feet"),
  47395. weight: math.unit(236, "lb"),
  47396. name: "Back",
  47397. image: {
  47398. source: "./media/characters/zaina-khalil/back.svg",
  47399. extra: 1546/1494,
  47400. bottom: 89/1635
  47401. }
  47402. },
  47403. },
  47404. [
  47405. {
  47406. name: "Normal",
  47407. height: math.unit(5 + 4/12, "feet"),
  47408. default: true
  47409. },
  47410. ]
  47411. ))
  47412. characterMakers.push(() => makeCharacter(
  47413. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47414. {
  47415. side: {
  47416. height: math.unit(12, "feet"),
  47417. weight: math.unit(4000, "lb"),
  47418. name: "Side",
  47419. image: {
  47420. source: "./media/characters/terry/side.svg",
  47421. extra: 1518/1439,
  47422. bottom: 149/1667
  47423. }
  47424. },
  47425. },
  47426. [
  47427. {
  47428. name: "Normal",
  47429. height: math.unit(12, "feet"),
  47430. default: true
  47431. },
  47432. ]
  47433. ))
  47434. characterMakers.push(() => makeCharacter(
  47435. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47436. {
  47437. front: {
  47438. height: math.unit(12, "feet"),
  47439. weight: math.unit(1500, "lb"),
  47440. name: "Front",
  47441. image: {
  47442. source: "./media/characters/kahea/front.svg",
  47443. extra: 1722/1617,
  47444. bottom: 179/1901
  47445. }
  47446. },
  47447. },
  47448. [
  47449. {
  47450. name: "Normal",
  47451. height: math.unit(12, "feet"),
  47452. default: true
  47453. },
  47454. ]
  47455. ))
  47456. characterMakers.push(() => makeCharacter(
  47457. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47458. {
  47459. demonFront: {
  47460. height: math.unit(36, "feet"),
  47461. name: "Front",
  47462. image: {
  47463. source: "./media/characters/alex-xuria/demon-front.svg",
  47464. extra: 1705/1673,
  47465. bottom: 198/1903
  47466. },
  47467. form: "demon",
  47468. default: true
  47469. },
  47470. demonBack: {
  47471. height: math.unit(36, "feet"),
  47472. name: "Back",
  47473. image: {
  47474. source: "./media/characters/alex-xuria/demon-back.svg",
  47475. extra: 1725/1693,
  47476. bottom: 70/1795
  47477. },
  47478. form: "demon"
  47479. },
  47480. demonHead: {
  47481. height: math.unit(2.14, "meters"),
  47482. name: "Head",
  47483. image: {
  47484. source: "./media/characters/alex-xuria/demon-head.svg"
  47485. },
  47486. form: "demon"
  47487. },
  47488. demonHand: {
  47489. height: math.unit(1.61, "meters"),
  47490. name: "Hand",
  47491. image: {
  47492. source: "./media/characters/alex-xuria/demon-hand.svg"
  47493. },
  47494. form: "demon"
  47495. },
  47496. demonPaw: {
  47497. height: math.unit(1.35, "meters"),
  47498. name: "Paw",
  47499. image: {
  47500. source: "./media/characters/alex-xuria/demon-paw.svg"
  47501. },
  47502. form: "demon"
  47503. },
  47504. demonFoot: {
  47505. height: math.unit(2.2, "meters"),
  47506. name: "Foot",
  47507. image: {
  47508. source: "./media/characters/alex-xuria/demon-foot.svg"
  47509. },
  47510. form: "demon"
  47511. },
  47512. demonCock: {
  47513. height: math.unit(1.74, "meters"),
  47514. name: "Cock",
  47515. image: {
  47516. source: "./media/characters/alex-xuria/demon-cock.svg"
  47517. },
  47518. form: "demon"
  47519. },
  47520. demonTailClosed: {
  47521. height: math.unit(1.47, "meters"),
  47522. name: "Tail (Closed)",
  47523. image: {
  47524. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47525. },
  47526. form: "demon"
  47527. },
  47528. demonTailOpen: {
  47529. height: math.unit(2.85, "meters"),
  47530. name: "Tail (Open)",
  47531. image: {
  47532. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47533. },
  47534. form: "demon"
  47535. },
  47536. incubusFront: {
  47537. height: math.unit(12, "feet"),
  47538. name: "Front",
  47539. image: {
  47540. source: "./media/characters/alex-xuria/incubus-front.svg",
  47541. extra: 1754/1677,
  47542. bottom: 125/1879
  47543. },
  47544. form: "incubus",
  47545. default: true
  47546. },
  47547. incubusBack: {
  47548. height: math.unit(12, "feet"),
  47549. name: "Back",
  47550. image: {
  47551. source: "./media/characters/alex-xuria/incubus-back.svg",
  47552. extra: 1702/1647,
  47553. bottom: 30/1732
  47554. },
  47555. form: "incubus"
  47556. },
  47557. incubusHead: {
  47558. height: math.unit(3.45, "feet"),
  47559. name: "Head",
  47560. image: {
  47561. source: "./media/characters/alex-xuria/incubus-head.svg"
  47562. },
  47563. form: "incubus"
  47564. },
  47565. rabbitFront: {
  47566. height: math.unit(6, "feet"),
  47567. name: "Front",
  47568. image: {
  47569. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47570. extra: 1369/1349,
  47571. bottom: 45/1414
  47572. },
  47573. form: "rabbit",
  47574. default: true
  47575. },
  47576. rabbitSide: {
  47577. height: math.unit(6, "feet"),
  47578. name: "Side",
  47579. image: {
  47580. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47581. extra: 1370/1356,
  47582. bottom: 37/1407
  47583. },
  47584. form: "rabbit"
  47585. },
  47586. rabbitBack: {
  47587. height: math.unit(6, "feet"),
  47588. name: "Back",
  47589. image: {
  47590. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47591. extra: 1375/1358,
  47592. bottom: 43/1418
  47593. },
  47594. form: "rabbit"
  47595. },
  47596. },
  47597. [
  47598. {
  47599. name: "Normal",
  47600. height: math.unit(6, "feet"),
  47601. default: true,
  47602. form: "rabbit"
  47603. },
  47604. {
  47605. name: "Incubus",
  47606. height: math.unit(12, "feet"),
  47607. default: true,
  47608. form: "incubus"
  47609. },
  47610. {
  47611. name: "Demon",
  47612. height: math.unit(36, "feet"),
  47613. default: true,
  47614. form: "demon"
  47615. }
  47616. ],
  47617. {
  47618. "demon": {
  47619. name: "Demon",
  47620. default: true
  47621. },
  47622. "incubus": {
  47623. name: "Incubus",
  47624. },
  47625. "rabbit": {
  47626. name: "Rabbit"
  47627. }
  47628. }
  47629. ))
  47630. characterMakers.push(() => makeCharacter(
  47631. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47632. {
  47633. front: {
  47634. height: math.unit(7 + 5/12, "feet"),
  47635. weight: math.unit(510, "lb"),
  47636. name: "Front",
  47637. image: {
  47638. source: "./media/characters/syrup/front.svg",
  47639. extra: 932/916,
  47640. bottom: 26/958
  47641. }
  47642. },
  47643. },
  47644. [
  47645. {
  47646. name: "Normal",
  47647. height: math.unit(7 + 5/12, "feet"),
  47648. default: true
  47649. },
  47650. {
  47651. name: "Big",
  47652. height: math.unit(50, "feet")
  47653. },
  47654. {
  47655. name: "Macro",
  47656. height: math.unit(300, "feet")
  47657. },
  47658. {
  47659. name: "Megamacro",
  47660. height: math.unit(1, "mile")
  47661. },
  47662. ]
  47663. ))
  47664. characterMakers.push(() => makeCharacter(
  47665. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47666. {
  47667. front: {
  47668. height: math.unit(6 + 9/12, "feet"),
  47669. name: "Front",
  47670. image: {
  47671. source: "./media/characters/zeimne/front.svg",
  47672. extra: 1969/1806,
  47673. bottom: 53/2022
  47674. }
  47675. },
  47676. },
  47677. [
  47678. {
  47679. name: "Normal",
  47680. height: math.unit(6 + 9/12, "feet"),
  47681. default: true
  47682. },
  47683. {
  47684. name: "Giant",
  47685. height: math.unit(550, "feet")
  47686. },
  47687. {
  47688. name: "Mega",
  47689. height: math.unit(3, "miles")
  47690. },
  47691. {
  47692. name: "Giga",
  47693. height: math.unit(250, "miles")
  47694. },
  47695. {
  47696. name: "Tera",
  47697. height: math.unit(1, "AU")
  47698. },
  47699. ]
  47700. ))
  47701. characterMakers.push(() => makeCharacter(
  47702. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47703. {
  47704. front: {
  47705. height: math.unit(5 + 2/12, "feet"),
  47706. name: "Front",
  47707. image: {
  47708. source: "./media/characters/grar/front.svg",
  47709. extra: 1331/1119,
  47710. bottom: 60/1391
  47711. }
  47712. },
  47713. back: {
  47714. height: math.unit(5 + 2/12, "feet"),
  47715. name: "Back",
  47716. image: {
  47717. source: "./media/characters/grar/back.svg",
  47718. extra: 1385/1169,
  47719. bottom: 23/1408
  47720. }
  47721. },
  47722. },
  47723. [
  47724. {
  47725. name: "Normal",
  47726. height: math.unit(5 + 2/12, "feet"),
  47727. default: true
  47728. },
  47729. ]
  47730. ))
  47731. characterMakers.push(() => makeCharacter(
  47732. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47733. {
  47734. front: {
  47735. height: math.unit(13 + 7/12, "feet"),
  47736. weight: math.unit(2200, "lb"),
  47737. name: "Front",
  47738. image: {
  47739. source: "./media/characters/endraya/front.svg",
  47740. extra: 1289/1215,
  47741. bottom: 50/1339
  47742. }
  47743. },
  47744. nude: {
  47745. height: math.unit(13 + 7/12, "feet"),
  47746. weight: math.unit(2200, "lb"),
  47747. name: "Nude",
  47748. image: {
  47749. source: "./media/characters/endraya/nude.svg",
  47750. extra: 1247/1171,
  47751. bottom: 40/1287
  47752. }
  47753. },
  47754. head: {
  47755. height: math.unit(2.6, "feet"),
  47756. name: "Head",
  47757. image: {
  47758. source: "./media/characters/endraya/head.svg"
  47759. }
  47760. },
  47761. slit: {
  47762. height: math.unit(3.4, "feet"),
  47763. name: "Slit",
  47764. image: {
  47765. source: "./media/characters/endraya/slit.svg"
  47766. }
  47767. },
  47768. },
  47769. [
  47770. {
  47771. name: "Normal",
  47772. height: math.unit(13 + 7/12, "feet"),
  47773. default: true
  47774. },
  47775. {
  47776. name: "Macro",
  47777. height: math.unit(200, "feet")
  47778. },
  47779. ]
  47780. ))
  47781. characterMakers.push(() => makeCharacter(
  47782. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47783. {
  47784. front: {
  47785. height: math.unit(1.81, "meters"),
  47786. weight: math.unit(69, "kg"),
  47787. name: "Front",
  47788. image: {
  47789. source: "./media/characters/rodryana/front.svg",
  47790. extra: 2002/1921,
  47791. bottom: 53/2055
  47792. }
  47793. },
  47794. back: {
  47795. height: math.unit(1.81, "meters"),
  47796. weight: math.unit(69, "kg"),
  47797. name: "Back",
  47798. image: {
  47799. source: "./media/characters/rodryana/back.svg",
  47800. extra: 1993/1926,
  47801. bottom: 48/2041
  47802. }
  47803. },
  47804. maw: {
  47805. height: math.unit(0.19769417475, "meters"),
  47806. name: "Maw",
  47807. image: {
  47808. source: "./media/characters/rodryana/maw.svg"
  47809. }
  47810. },
  47811. slit: {
  47812. height: math.unit(0.31631067961, "meters"),
  47813. name: "Slit",
  47814. image: {
  47815. source: "./media/characters/rodryana/slit.svg"
  47816. }
  47817. },
  47818. },
  47819. [
  47820. {
  47821. name: "Normal",
  47822. height: math.unit(1.81, "meters")
  47823. },
  47824. {
  47825. name: "Mini Macro",
  47826. height: math.unit(181, "meters")
  47827. },
  47828. {
  47829. name: "Macro",
  47830. height: math.unit(452, "meters"),
  47831. default: true
  47832. },
  47833. {
  47834. name: "Mega Macro",
  47835. height: math.unit(1.375, "km")
  47836. },
  47837. {
  47838. name: "Giga Macro",
  47839. height: math.unit(13.575, "km")
  47840. },
  47841. ]
  47842. ))
  47843. characterMakers.push(() => makeCharacter(
  47844. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47845. {
  47846. front: {
  47847. height: math.unit(6, "feet"),
  47848. weight: math.unit(1000, "lb"),
  47849. name: "Front",
  47850. image: {
  47851. source: "./media/characters/asaya/front.svg",
  47852. extra: 1460/1200,
  47853. bottom: 71/1531
  47854. }
  47855. },
  47856. },
  47857. [
  47858. {
  47859. name: "Normal",
  47860. height: math.unit(8, "km"),
  47861. default: true
  47862. },
  47863. ]
  47864. ))
  47865. characterMakers.push(() => makeCharacter(
  47866. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47867. {
  47868. front: {
  47869. height: math.unit(3.5, "meters"),
  47870. name: "Front",
  47871. image: {
  47872. source: "./media/characters/sarzu-and-israz/front.svg",
  47873. extra: 1570/1558,
  47874. bottom: 150/1720
  47875. },
  47876. },
  47877. back: {
  47878. height: math.unit(3.5, "meters"),
  47879. name: "Back",
  47880. image: {
  47881. source: "./media/characters/sarzu-and-israz/back.svg",
  47882. extra: 1523/1509,
  47883. bottom: 132/1655
  47884. },
  47885. },
  47886. frontFemale: {
  47887. height: math.unit(3.5, "meters"),
  47888. name: "Front (Female)",
  47889. image: {
  47890. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47891. extra: 1570/1558,
  47892. bottom: 150/1720
  47893. },
  47894. },
  47895. frontHerm: {
  47896. height: math.unit(3.5, "meters"),
  47897. name: "Front (Herm)",
  47898. image: {
  47899. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47900. extra: 1570/1558,
  47901. bottom: 150/1720
  47902. },
  47903. },
  47904. },
  47905. [
  47906. {
  47907. name: "Normal",
  47908. height: math.unit(3.5, "meters"),
  47909. default: true,
  47910. },
  47911. {
  47912. name: "Macro",
  47913. height: math.unit(65.5, "meters"),
  47914. },
  47915. ],
  47916. ))
  47917. characterMakers.push(() => makeCharacter(
  47918. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47919. {
  47920. front: {
  47921. height: math.unit(6, "feet"),
  47922. weight: math.unit(250, "lb"),
  47923. name: "Front",
  47924. image: {
  47925. source: "./media/characters/zenimma/front.svg",
  47926. extra: 1346/1320,
  47927. bottom: 58/1404
  47928. }
  47929. },
  47930. back: {
  47931. height: math.unit(6, "feet"),
  47932. weight: math.unit(250, "lb"),
  47933. name: "Back",
  47934. image: {
  47935. source: "./media/characters/zenimma/back.svg",
  47936. extra: 1324/1308,
  47937. bottom: 44/1368
  47938. }
  47939. },
  47940. dick: {
  47941. height: math.unit(1.44, "feet"),
  47942. name: "Dick",
  47943. image: {
  47944. source: "./media/characters/zenimma/dick.svg"
  47945. }
  47946. },
  47947. },
  47948. [
  47949. {
  47950. name: "Canon Height",
  47951. height: math.unit(66, "miles"),
  47952. default: true
  47953. },
  47954. ]
  47955. ))
  47956. characterMakers.push(() => makeCharacter(
  47957. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47958. {
  47959. nude: {
  47960. height: math.unit(6, "feet"),
  47961. weight: math.unit(150, "lb"),
  47962. name: "Nude",
  47963. image: {
  47964. source: "./media/characters/shavon/nude.svg",
  47965. extra: 1242/1096,
  47966. bottom: 98/1340
  47967. }
  47968. },
  47969. dressed: {
  47970. height: math.unit(6, "feet"),
  47971. weight: math.unit(150, "lb"),
  47972. name: "Dressed",
  47973. image: {
  47974. source: "./media/characters/shavon/dressed.svg",
  47975. extra: 1242/1096,
  47976. bottom: 98/1340
  47977. }
  47978. },
  47979. },
  47980. [
  47981. {
  47982. name: "Macro",
  47983. height: math.unit(255, "feet"),
  47984. default: true
  47985. },
  47986. ]
  47987. ))
  47988. characterMakers.push(() => makeCharacter(
  47989. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47990. {
  47991. front: {
  47992. height: math.unit(6, "feet"),
  47993. name: "Front",
  47994. image: {
  47995. source: "./media/characters/steph/front.svg",
  47996. extra: 1430/1330,
  47997. bottom: 54/1484
  47998. }
  47999. },
  48000. },
  48001. [
  48002. {
  48003. name: "Normal",
  48004. height: math.unit(6, "feet"),
  48005. default: true
  48006. },
  48007. ]
  48008. ))
  48009. characterMakers.push(() => makeCharacter(
  48010. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48011. {
  48012. front: {
  48013. height: math.unit(9, "feet"),
  48014. weight: math.unit(400, "lb"),
  48015. name: "Front",
  48016. image: {
  48017. source: "./media/characters/kil'aman/front.svg",
  48018. extra: 1210/1159,
  48019. bottom: 109/1319
  48020. }
  48021. },
  48022. head: {
  48023. height: math.unit(2.14, "feet"),
  48024. name: "Head",
  48025. image: {
  48026. source: "./media/characters/kil'aman/head.svg"
  48027. }
  48028. },
  48029. maw: {
  48030. height: math.unit(1.21, "feet"),
  48031. name: "Maw",
  48032. image: {
  48033. source: "./media/characters/kil'aman/maw.svg"
  48034. }
  48035. },
  48036. foot: {
  48037. height: math.unit(1.7, "feet"),
  48038. name: "Foot",
  48039. image: {
  48040. source: "./media/characters/kil'aman/foot.svg"
  48041. }
  48042. },
  48043. dick: {
  48044. height: math.unit(2.1, "feet"),
  48045. name: "Dick",
  48046. image: {
  48047. source: "./media/characters/kil'aman/dick.svg"
  48048. }
  48049. },
  48050. },
  48051. [
  48052. {
  48053. name: "Normal",
  48054. height: math.unit(9, "feet")
  48055. },
  48056. {
  48057. name: "Canon Height",
  48058. height: math.unit(10, "miles"),
  48059. default: true
  48060. },
  48061. {
  48062. name: "Maximum",
  48063. height: math.unit(6e9, "miles")
  48064. },
  48065. ]
  48066. ))
  48067. characterMakers.push(() => makeCharacter(
  48068. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48069. {
  48070. front: {
  48071. height: math.unit(90, "feet"),
  48072. weight: math.unit(675000, "lb"),
  48073. name: "Front",
  48074. image: {
  48075. source: "./media/characters/qadan/front.svg",
  48076. extra: 1012/1004,
  48077. bottom: 78/1090
  48078. }
  48079. },
  48080. back: {
  48081. height: math.unit(90, "feet"),
  48082. weight: math.unit(675000, "lb"),
  48083. name: "Back",
  48084. image: {
  48085. source: "./media/characters/qadan/back.svg",
  48086. extra: 1042/1031,
  48087. bottom: 55/1097
  48088. }
  48089. },
  48090. armored: {
  48091. height: math.unit(90, "feet"),
  48092. weight: math.unit(675000, "lb"),
  48093. name: "Armored",
  48094. image: {
  48095. source: "./media/characters/qadan/armored.svg",
  48096. extra: 1047/1037,
  48097. bottom: 48/1095
  48098. }
  48099. },
  48100. },
  48101. [
  48102. {
  48103. name: "Normal",
  48104. height: math.unit(90, "feet"),
  48105. default: true
  48106. },
  48107. ]
  48108. ))
  48109. characterMakers.push(() => makeCharacter(
  48110. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48111. {
  48112. front: {
  48113. height: math.unit(6, "feet"),
  48114. weight: math.unit(225, "lb"),
  48115. name: "Front",
  48116. image: {
  48117. source: "./media/characters/brooke/front.svg",
  48118. extra: 1050/1010,
  48119. bottom: 66/1116
  48120. }
  48121. },
  48122. back: {
  48123. height: math.unit(6, "feet"),
  48124. weight: math.unit(225, "lb"),
  48125. name: "Back",
  48126. image: {
  48127. source: "./media/characters/brooke/back.svg",
  48128. extra: 1053/1013,
  48129. bottom: 41/1094
  48130. }
  48131. },
  48132. dressed: {
  48133. height: math.unit(6, "feet"),
  48134. weight: math.unit(225, "lb"),
  48135. name: "Dressed",
  48136. image: {
  48137. source: "./media/characters/brooke/dressed.svg",
  48138. extra: 1050/1010,
  48139. bottom: 66/1116
  48140. }
  48141. },
  48142. },
  48143. [
  48144. {
  48145. name: "Canon Height",
  48146. height: math.unit(500, "miles"),
  48147. default: true
  48148. },
  48149. ]
  48150. ))
  48151. characterMakers.push(() => makeCharacter(
  48152. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48153. {
  48154. front: {
  48155. height: math.unit(6 + 2/12, "feet"),
  48156. weight: math.unit(210, "lb"),
  48157. name: "Front",
  48158. image: {
  48159. source: "./media/characters/wubs/front.svg",
  48160. extra: 1345/1325,
  48161. bottom: 70/1415
  48162. }
  48163. },
  48164. back: {
  48165. height: math.unit(6 + 2/12, "feet"),
  48166. weight: math.unit(210, "lb"),
  48167. name: "Back",
  48168. image: {
  48169. source: "./media/characters/wubs/back.svg",
  48170. extra: 1296/1275,
  48171. bottom: 58/1354
  48172. }
  48173. },
  48174. },
  48175. [
  48176. {
  48177. name: "Normal",
  48178. height: math.unit(6 + 2/12, "feet"),
  48179. default: true
  48180. },
  48181. {
  48182. name: "Macro",
  48183. height: math.unit(1000, "feet")
  48184. },
  48185. {
  48186. name: "Megamacro",
  48187. height: math.unit(1, "mile")
  48188. },
  48189. ]
  48190. ))
  48191. characterMakers.push(() => makeCharacter(
  48192. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48193. {
  48194. front: {
  48195. height: math.unit(4, "feet"),
  48196. weight: math.unit(120, "lb"),
  48197. name: "Front",
  48198. image: {
  48199. source: "./media/characters/blue/front.svg",
  48200. extra: 1636/1525,
  48201. bottom: 43/1679
  48202. }
  48203. },
  48204. back: {
  48205. height: math.unit(4, "feet"),
  48206. weight: math.unit(120, "lb"),
  48207. name: "Back",
  48208. image: {
  48209. source: "./media/characters/blue/back.svg",
  48210. extra: 1660/1560,
  48211. bottom: 57/1717
  48212. }
  48213. },
  48214. paws: {
  48215. height: math.unit(0.826, "feet"),
  48216. name: "Paws",
  48217. image: {
  48218. source: "./media/characters/blue/paws.svg"
  48219. }
  48220. },
  48221. },
  48222. [
  48223. {
  48224. name: "Micro",
  48225. height: math.unit(3, "inches")
  48226. },
  48227. {
  48228. name: "Normal",
  48229. height: math.unit(4, "feet"),
  48230. default: true
  48231. },
  48232. {
  48233. name: "Femenine Form",
  48234. height: math.unit(14, "feet")
  48235. },
  48236. {
  48237. name: "Werebat Form",
  48238. height: math.unit(18, "feet")
  48239. },
  48240. ]
  48241. ))
  48242. characterMakers.push(() => makeCharacter(
  48243. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48244. {
  48245. female: {
  48246. height: math.unit(7 + 4/12, "feet"),
  48247. weight: math.unit(243, "lb"),
  48248. name: "Female",
  48249. image: {
  48250. source: "./media/characters/kaya/female.svg",
  48251. extra: 975/898,
  48252. bottom: 34/1009
  48253. }
  48254. },
  48255. herm: {
  48256. height: math.unit(7 + 4/12, "feet"),
  48257. weight: math.unit(243, "lb"),
  48258. name: "Herm",
  48259. image: {
  48260. source: "./media/characters/kaya/herm.svg",
  48261. extra: 975/898,
  48262. bottom: 34/1009
  48263. }
  48264. },
  48265. },
  48266. [
  48267. {
  48268. name: "Normal",
  48269. height: math.unit(7 + 4/12, "feet"),
  48270. default: true
  48271. },
  48272. ]
  48273. ))
  48274. characterMakers.push(() => makeCharacter(
  48275. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48276. {
  48277. female: {
  48278. height: math.unit(9 + 4/12, "feet"),
  48279. weight: math.unit(398, "lb"),
  48280. name: "Female",
  48281. image: {
  48282. source: "./media/characters/kassandra/female.svg",
  48283. extra: 908/839,
  48284. bottom: 61/969
  48285. }
  48286. },
  48287. intersex: {
  48288. height: math.unit(9 + 4/12, "feet"),
  48289. weight: math.unit(398, "lb"),
  48290. name: "Intersex",
  48291. image: {
  48292. source: "./media/characters/kassandra/intersex.svg",
  48293. extra: 908/839,
  48294. bottom: 61/969
  48295. }
  48296. },
  48297. },
  48298. [
  48299. {
  48300. name: "Normal",
  48301. height: math.unit(9 + 4/12, "feet"),
  48302. default: true
  48303. },
  48304. ]
  48305. ))
  48306. characterMakers.push(() => makeCharacter(
  48307. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48308. {
  48309. front: {
  48310. height: math.unit(3, "meters"),
  48311. name: "Front",
  48312. image: {
  48313. source: "./media/characters/amy/front.svg",
  48314. extra: 1380/1343,
  48315. bottom: 70/1450
  48316. }
  48317. },
  48318. back: {
  48319. height: math.unit(3, "meters"),
  48320. name: "Back",
  48321. image: {
  48322. source: "./media/characters/amy/back.svg",
  48323. extra: 1380/1347,
  48324. bottom: 66/1446
  48325. }
  48326. },
  48327. },
  48328. [
  48329. {
  48330. name: "Normal",
  48331. height: math.unit(3, "meters"),
  48332. default: true
  48333. },
  48334. ]
  48335. ))
  48336. characterMakers.push(() => makeCharacter(
  48337. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48338. {
  48339. side: {
  48340. height: math.unit(47, "cm"),
  48341. weight: math.unit(10.8, "kg"),
  48342. name: "Side",
  48343. image: {
  48344. source: "./media/characters/alphaschakal/side.svg",
  48345. extra: 1058/568,
  48346. bottom: 62/1120
  48347. }
  48348. },
  48349. back: {
  48350. height: math.unit(78, "cm"),
  48351. weight: math.unit(10.8, "kg"),
  48352. name: "Back",
  48353. image: {
  48354. source: "./media/characters/alphaschakal/back.svg",
  48355. extra: 1102/942,
  48356. bottom: 185/1287
  48357. }
  48358. },
  48359. head: {
  48360. height: math.unit(28, "cm"),
  48361. name: "Head",
  48362. image: {
  48363. source: "./media/characters/alphaschakal/head.svg",
  48364. extra: 696/508,
  48365. bottom: 0/696
  48366. }
  48367. },
  48368. paw: {
  48369. height: math.unit(16, "cm"),
  48370. name: "Paw",
  48371. image: {
  48372. source: "./media/characters/alphaschakal/paw.svg"
  48373. }
  48374. },
  48375. },
  48376. [
  48377. {
  48378. name: "Normal",
  48379. height: math.unit(47, "cm"),
  48380. default: true
  48381. },
  48382. {
  48383. name: "Macro",
  48384. height: math.unit(340, "cm")
  48385. },
  48386. ]
  48387. ))
  48388. characterMakers.push(() => makeCharacter(
  48389. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48390. {
  48391. front: {
  48392. height: math.unit(36, "earths"),
  48393. name: "Front",
  48394. image: {
  48395. source: "./media/characters/ecobyss/front.svg",
  48396. extra: 1282/1215,
  48397. bottom: 11/1293
  48398. }
  48399. },
  48400. back: {
  48401. height: math.unit(36, "earths"),
  48402. name: "Back",
  48403. image: {
  48404. source: "./media/characters/ecobyss/back.svg",
  48405. extra: 1291/1222,
  48406. bottom: 8/1299
  48407. }
  48408. },
  48409. },
  48410. [
  48411. {
  48412. name: "Normal",
  48413. height: math.unit(36, "earths"),
  48414. default: true
  48415. },
  48416. ]
  48417. ))
  48418. characterMakers.push(() => makeCharacter(
  48419. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48420. {
  48421. front: {
  48422. height: math.unit(12, "feet"),
  48423. name: "Front",
  48424. image: {
  48425. source: "./media/characters/vasuk/front.svg",
  48426. extra: 1326/1207,
  48427. bottom: 64/1390
  48428. }
  48429. },
  48430. },
  48431. [
  48432. {
  48433. name: "Normal",
  48434. height: math.unit(12, "feet"),
  48435. default: true
  48436. },
  48437. ]
  48438. ))
  48439. characterMakers.push(() => makeCharacter(
  48440. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48441. {
  48442. side: {
  48443. height: math.unit(100, "feet"),
  48444. name: "Side",
  48445. image: {
  48446. source: "./media/characters/linneaus/side.svg",
  48447. extra: 987/807,
  48448. bottom: 47/1034
  48449. }
  48450. },
  48451. },
  48452. [
  48453. {
  48454. name: "Macro",
  48455. height: math.unit(100, "feet"),
  48456. default: true
  48457. },
  48458. ]
  48459. ))
  48460. characterMakers.push(() => makeCharacter(
  48461. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48462. {
  48463. front: {
  48464. height: math.unit(8, "feet"),
  48465. weight: math.unit(1200, "lb"),
  48466. name: "Front",
  48467. image: {
  48468. source: "./media/characters/nyterious-daligdig/front.svg",
  48469. extra: 1284/1094,
  48470. bottom: 84/1368
  48471. }
  48472. },
  48473. back: {
  48474. height: math.unit(8, "feet"),
  48475. weight: math.unit(1200, "lb"),
  48476. name: "Back",
  48477. image: {
  48478. source: "./media/characters/nyterious-daligdig/back.svg",
  48479. extra: 1301/1121,
  48480. bottom: 129/1430
  48481. }
  48482. },
  48483. mouth: {
  48484. height: math.unit(1.464, "feet"),
  48485. name: "Mouth",
  48486. image: {
  48487. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48488. }
  48489. },
  48490. },
  48491. [
  48492. {
  48493. name: "Small",
  48494. height: math.unit(8, "feet"),
  48495. default: true
  48496. },
  48497. {
  48498. name: "Normal",
  48499. height: math.unit(15, "feet")
  48500. },
  48501. {
  48502. name: "Macro",
  48503. height: math.unit(90, "feet")
  48504. },
  48505. ]
  48506. ))
  48507. characterMakers.push(() => makeCharacter(
  48508. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48509. {
  48510. front: {
  48511. height: math.unit(7 + 4/12, "feet"),
  48512. weight: math.unit(252, "lb"),
  48513. name: "Front",
  48514. image: {
  48515. source: "./media/characters/bandel/front.svg",
  48516. extra: 1946/1775,
  48517. bottom: 26/1972
  48518. }
  48519. },
  48520. back: {
  48521. height: math.unit(7 + 4/12, "feet"),
  48522. weight: math.unit(252, "lb"),
  48523. name: "Back",
  48524. image: {
  48525. source: "./media/characters/bandel/back.svg",
  48526. extra: 1940/1770,
  48527. bottom: 25/1965
  48528. }
  48529. },
  48530. maw: {
  48531. height: math.unit(2.15, "feet"),
  48532. name: "Maw",
  48533. image: {
  48534. source: "./media/characters/bandel/maw.svg"
  48535. }
  48536. },
  48537. stomach: {
  48538. height: math.unit(1.95, "feet"),
  48539. name: "Stomach",
  48540. image: {
  48541. source: "./media/characters/bandel/stomach.svg"
  48542. }
  48543. },
  48544. },
  48545. [
  48546. {
  48547. name: "Normal",
  48548. height: math.unit(7 + 4/12, "feet"),
  48549. default: true
  48550. },
  48551. ]
  48552. ))
  48553. characterMakers.push(() => makeCharacter(
  48554. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48555. {
  48556. front: {
  48557. height: math.unit(10 + 5/12, "feet"),
  48558. weight: math.unit(773.5, "kg"),
  48559. name: "Front",
  48560. image: {
  48561. source: "./media/characters/zed/front.svg",
  48562. extra: 987/941,
  48563. bottom: 52/1039
  48564. }
  48565. },
  48566. },
  48567. [
  48568. {
  48569. name: "Short",
  48570. height: math.unit(5 + 4/12, "feet")
  48571. },
  48572. {
  48573. name: "Average",
  48574. height: math.unit(10 + 5/12, "feet"),
  48575. default: true
  48576. },
  48577. {
  48578. name: "Mini-Macro",
  48579. height: math.unit(24 + 9/12, "feet")
  48580. },
  48581. {
  48582. name: "Macro",
  48583. height: math.unit(249, "feet")
  48584. },
  48585. {
  48586. name: "Mega-Macro",
  48587. height: math.unit(12490, "feet")
  48588. },
  48589. {
  48590. name: "Giga-Macro",
  48591. height: math.unit(24.9, "miles")
  48592. },
  48593. {
  48594. name: "Tera-Macro",
  48595. height: math.unit(24900, "miles")
  48596. },
  48597. {
  48598. name: "Cosmic Scale",
  48599. height: math.unit(38.9, "lightyears")
  48600. },
  48601. {
  48602. name: "Universal Scale",
  48603. height: math.unit(138e12, "lightyears")
  48604. },
  48605. ]
  48606. ))
  48607. characterMakers.push(() => makeCharacter(
  48608. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48609. {
  48610. front: {
  48611. height: math.unit(1561, "inches"),
  48612. name: "Front",
  48613. image: {
  48614. source: "./media/characters/ivan/front.svg",
  48615. extra: 1126/1071,
  48616. bottom: 26/1152
  48617. }
  48618. },
  48619. back: {
  48620. height: math.unit(1561, "inches"),
  48621. name: "Back",
  48622. image: {
  48623. source: "./media/characters/ivan/back.svg",
  48624. extra: 1134/1079,
  48625. bottom: 30/1164
  48626. }
  48627. },
  48628. },
  48629. [
  48630. {
  48631. name: "Normal",
  48632. height: math.unit(1561, "inches"),
  48633. default: true
  48634. },
  48635. ]
  48636. ))
  48637. characterMakers.push(() => makeCharacter(
  48638. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48639. {
  48640. front: {
  48641. height: math.unit(5 + 7/12, "feet"),
  48642. weight: math.unit(150, "lb"),
  48643. name: "Front",
  48644. image: {
  48645. source: "./media/characters/robin-arctic-hare/front.svg",
  48646. extra: 1148/974,
  48647. bottom: 20/1168
  48648. }
  48649. },
  48650. },
  48651. [
  48652. {
  48653. name: "Normal",
  48654. height: math.unit(5 + 7/12, "feet"),
  48655. default: true
  48656. },
  48657. ]
  48658. ))
  48659. characterMakers.push(() => makeCharacter(
  48660. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48661. {
  48662. side: {
  48663. height: math.unit(5, "feet"),
  48664. name: "Side",
  48665. image: {
  48666. source: "./media/characters/birch/side.svg",
  48667. extra: 985/796,
  48668. bottom: 111/1096
  48669. }
  48670. },
  48671. },
  48672. [
  48673. {
  48674. name: "Normal",
  48675. height: math.unit(5, "feet"),
  48676. default: true
  48677. },
  48678. ]
  48679. ))
  48680. characterMakers.push(() => makeCharacter(
  48681. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48682. {
  48683. front: {
  48684. height: math.unit(4, "feet"),
  48685. name: "Front",
  48686. image: {
  48687. source: "./media/characters/rasp/front.svg",
  48688. extra: 561/478,
  48689. bottom: 74/635
  48690. }
  48691. },
  48692. },
  48693. [
  48694. {
  48695. name: "Normal",
  48696. height: math.unit(4, "feet"),
  48697. default: true
  48698. },
  48699. ]
  48700. ))
  48701. characterMakers.push(() => makeCharacter(
  48702. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48703. {
  48704. front: {
  48705. height: math.unit(4 + 6/12, "feet"),
  48706. name: "Front",
  48707. image: {
  48708. source: "./media/characters/agatha/front.svg",
  48709. extra: 947/933,
  48710. bottom: 42/989
  48711. }
  48712. },
  48713. back: {
  48714. height: math.unit(4 + 6/12, "feet"),
  48715. name: "Back",
  48716. image: {
  48717. source: "./media/characters/agatha/back.svg",
  48718. extra: 935/922,
  48719. bottom: 48/983
  48720. }
  48721. },
  48722. },
  48723. [
  48724. {
  48725. name: "Normal",
  48726. height: math.unit(4 + 6 /12, "feet"),
  48727. default: true
  48728. },
  48729. {
  48730. name: "Max Size",
  48731. height: math.unit(500, "feet")
  48732. },
  48733. ]
  48734. ))
  48735. characterMakers.push(() => makeCharacter(
  48736. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48737. {
  48738. side: {
  48739. height: math.unit(30, "feet"),
  48740. name: "Side",
  48741. image: {
  48742. source: "./media/characters/roggy/side.svg",
  48743. extra: 909/643,
  48744. bottom: 63/972
  48745. }
  48746. },
  48747. lounging: {
  48748. height: math.unit(20, "feet"),
  48749. name: "Lounging",
  48750. image: {
  48751. source: "./media/characters/roggy/lounging.svg",
  48752. extra: 643/479,
  48753. bottom: 145/788
  48754. }
  48755. },
  48756. handpaw: {
  48757. height: math.unit(13.1, "feet"),
  48758. name: "Handpaw",
  48759. image: {
  48760. source: "./media/characters/roggy/handpaw.svg"
  48761. }
  48762. },
  48763. footpaw: {
  48764. height: math.unit(15.8, "feet"),
  48765. name: "Footpaw",
  48766. image: {
  48767. source: "./media/characters/roggy/footpaw.svg"
  48768. }
  48769. },
  48770. },
  48771. [
  48772. {
  48773. name: "Menacing",
  48774. height: math.unit(30, "feet"),
  48775. default: true
  48776. },
  48777. ]
  48778. ))
  48779. characterMakers.push(() => makeCharacter(
  48780. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48781. {
  48782. front: {
  48783. height: math.unit(5 + 7/12, "feet"),
  48784. weight: math.unit(135, "lb"),
  48785. name: "Front",
  48786. image: {
  48787. source: "./media/characters/naomi/front.svg",
  48788. extra: 1209/1154,
  48789. bottom: 129/1338
  48790. }
  48791. },
  48792. back: {
  48793. height: math.unit(5 + 7/12, "feet"),
  48794. weight: math.unit(135, "lb"),
  48795. name: "Back",
  48796. image: {
  48797. source: "./media/characters/naomi/back.svg",
  48798. extra: 1252/1190,
  48799. bottom: 23/1275
  48800. }
  48801. },
  48802. },
  48803. [
  48804. {
  48805. name: "Normal",
  48806. height: math.unit(5 + 7 /12, "feet"),
  48807. default: true
  48808. },
  48809. ]
  48810. ))
  48811. characterMakers.push(() => makeCharacter(
  48812. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48813. {
  48814. side: {
  48815. height: math.unit(35, "meters"),
  48816. name: "Side",
  48817. image: {
  48818. source: "./media/characters/kimpi/side.svg",
  48819. extra: 419/382,
  48820. bottom: 63/482
  48821. }
  48822. },
  48823. hand: {
  48824. height: math.unit(8.96, "meters"),
  48825. name: "Hand",
  48826. image: {
  48827. source: "./media/characters/kimpi/hand.svg"
  48828. }
  48829. },
  48830. },
  48831. [
  48832. {
  48833. name: "Normal",
  48834. height: math.unit(35, "meters"),
  48835. default: true
  48836. },
  48837. ]
  48838. ))
  48839. characterMakers.push(() => makeCharacter(
  48840. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48841. {
  48842. front: {
  48843. height: math.unit(4 + 4/12, "feet"),
  48844. name: "Front",
  48845. image: {
  48846. source: "./media/characters/pepper-purrloin/front.svg",
  48847. extra: 1141/1024,
  48848. bottom: 21/1162
  48849. }
  48850. },
  48851. },
  48852. [
  48853. {
  48854. name: "Normal",
  48855. height: math.unit(4 + 4/12, "feet"),
  48856. default: true
  48857. },
  48858. ]
  48859. ))
  48860. characterMakers.push(() => makeCharacter(
  48861. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48862. {
  48863. front: {
  48864. height: math.unit(6 + 2/12, "feet"),
  48865. name: "Front",
  48866. image: {
  48867. source: "./media/characters/raphael/front.svg",
  48868. extra: 1101/962,
  48869. bottom: 59/1160
  48870. }
  48871. },
  48872. },
  48873. [
  48874. {
  48875. name: "Normal",
  48876. height: math.unit(6 + 2/12, "feet"),
  48877. default: true
  48878. },
  48879. ]
  48880. ))
  48881. characterMakers.push(() => makeCharacter(
  48882. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48883. {
  48884. front: {
  48885. height: math.unit(6, "feet"),
  48886. weight: math.unit(150, "lb"),
  48887. name: "Front",
  48888. image: {
  48889. source: "./media/characters/victor-williams/front.svg",
  48890. extra: 1894/1825,
  48891. bottom: 67/1961
  48892. }
  48893. },
  48894. },
  48895. [
  48896. {
  48897. name: "Normal",
  48898. height: math.unit(6, "feet"),
  48899. default: true
  48900. },
  48901. ]
  48902. ))
  48903. characterMakers.push(() => makeCharacter(
  48904. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48905. {
  48906. front: {
  48907. height: math.unit(5 + 8/12, "feet"),
  48908. weight: math.unit(150, "lb"),
  48909. name: "Front",
  48910. image: {
  48911. source: "./media/characters/rachel/front.svg",
  48912. extra: 1902/1787,
  48913. bottom: 46/1948
  48914. }
  48915. },
  48916. },
  48917. [
  48918. {
  48919. name: "Base Height",
  48920. height: math.unit(5 + 8/12, "feet"),
  48921. default: true
  48922. },
  48923. {
  48924. name: "Macro",
  48925. height: math.unit(200, "feet")
  48926. },
  48927. {
  48928. name: "Mega Macro",
  48929. height: math.unit(1, "mile")
  48930. },
  48931. {
  48932. name: "Giga Macro",
  48933. height: math.unit(1500, "miles")
  48934. },
  48935. {
  48936. name: "Tera Macro",
  48937. height: math.unit(8000, "miles")
  48938. },
  48939. {
  48940. name: "Tera Macro+",
  48941. height: math.unit(2e5, "miles")
  48942. },
  48943. ]
  48944. ))
  48945. characterMakers.push(() => makeCharacter(
  48946. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48947. {
  48948. front: {
  48949. height: math.unit(6.5, "feet"),
  48950. name: "Front",
  48951. image: {
  48952. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48953. extra: 860/819,
  48954. bottom: 307/1167
  48955. }
  48956. },
  48957. back: {
  48958. height: math.unit(6.5, "feet"),
  48959. name: "Back",
  48960. image: {
  48961. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48962. extra: 880/837,
  48963. bottom: 395/1275
  48964. }
  48965. },
  48966. sleeping: {
  48967. height: math.unit(2.79, "feet"),
  48968. name: "Sleeping",
  48969. image: {
  48970. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48971. extra: 465/383,
  48972. bottom: 263/728
  48973. }
  48974. },
  48975. maw: {
  48976. height: math.unit(2.52, "feet"),
  48977. name: "Maw",
  48978. image: {
  48979. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48980. }
  48981. },
  48982. },
  48983. [
  48984. {
  48985. name: "Normal",
  48986. height: math.unit(6.5, "feet"),
  48987. default: true
  48988. },
  48989. ]
  48990. ))
  48991. characterMakers.push(() => makeCharacter(
  48992. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48993. {
  48994. front: {
  48995. height: math.unit(5, "feet"),
  48996. name: "Front",
  48997. image: {
  48998. source: "./media/characters/nova-nerium/front.svg",
  48999. extra: 1548/1392,
  49000. bottom: 374/1922
  49001. }
  49002. },
  49003. back: {
  49004. height: math.unit(5, "feet"),
  49005. name: "Back",
  49006. image: {
  49007. source: "./media/characters/nova-nerium/back.svg",
  49008. extra: 1658/1468,
  49009. bottom: 257/1915
  49010. }
  49011. },
  49012. },
  49013. [
  49014. {
  49015. name: "Normal",
  49016. height: math.unit(5, "feet"),
  49017. default: true
  49018. },
  49019. ]
  49020. ))
  49021. characterMakers.push(() => makeCharacter(
  49022. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49023. {
  49024. front: {
  49025. height: math.unit(5 + 4/12, "feet"),
  49026. name: "Front",
  49027. image: {
  49028. source: "./media/characters/ashe-pyriph/front.svg",
  49029. extra: 1935/1747,
  49030. bottom: 60/1995
  49031. }
  49032. },
  49033. },
  49034. [
  49035. {
  49036. name: "Normal",
  49037. height: math.unit(5 + 4/12, "feet"),
  49038. default: true
  49039. },
  49040. ]
  49041. ))
  49042. characterMakers.push(() => makeCharacter(
  49043. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49044. {
  49045. front: {
  49046. height: math.unit(8.7, "feet"),
  49047. name: "Front",
  49048. image: {
  49049. source: "./media/characters/flicker-wisp/front.svg",
  49050. extra: 1835/1613,
  49051. bottom: 449/2284
  49052. }
  49053. },
  49054. side: {
  49055. height: math.unit(8.7, "feet"),
  49056. name: "Side",
  49057. image: {
  49058. source: "./media/characters/flicker-wisp/side.svg",
  49059. extra: 1841/1642,
  49060. bottom: 336/2177
  49061. },
  49062. default: true
  49063. },
  49064. maw: {
  49065. height: math.unit(3.35, "feet"),
  49066. name: "Maw",
  49067. image: {
  49068. source: "./media/characters/flicker-wisp/maw.svg",
  49069. extra: 2338/1506,
  49070. bottom: 0/2338
  49071. }
  49072. },
  49073. ovipositor: {
  49074. height: math.unit(4.95, "feet"),
  49075. name: "Ovipositor",
  49076. image: {
  49077. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49078. }
  49079. },
  49080. egg: {
  49081. height: math.unit(0.385, "feet"),
  49082. weight: math.unit(2, "lb"),
  49083. name: "Egg",
  49084. image: {
  49085. source: "./media/characters/flicker-wisp/egg.svg"
  49086. }
  49087. },
  49088. },
  49089. [
  49090. {
  49091. name: "Normal",
  49092. height: math.unit(8.7, "feet"),
  49093. default: true
  49094. },
  49095. ]
  49096. ))
  49097. characterMakers.push(() => makeCharacter(
  49098. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49099. {
  49100. side: {
  49101. height: math.unit(11, "feet"),
  49102. name: "Side",
  49103. image: {
  49104. source: "./media/characters/faefnul/side.svg",
  49105. extra: 1100/1007,
  49106. bottom: 0/1100
  49107. }
  49108. },
  49109. },
  49110. [
  49111. {
  49112. name: "Normal",
  49113. height: math.unit(11, "feet"),
  49114. default: true
  49115. },
  49116. ]
  49117. ))
  49118. characterMakers.push(() => makeCharacter(
  49119. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49120. {
  49121. front: {
  49122. height: math.unit(6 + 2/12, "feet"),
  49123. name: "Front",
  49124. image: {
  49125. source: "./media/characters/shady/front.svg",
  49126. extra: 502/461,
  49127. bottom: 9/511
  49128. }
  49129. },
  49130. kneeling: {
  49131. height: math.unit(4.6, "feet"),
  49132. name: "Kneeling",
  49133. image: {
  49134. source: "./media/characters/shady/kneeling.svg",
  49135. extra: 1328/1219,
  49136. bottom: 117/1445
  49137. }
  49138. },
  49139. maw: {
  49140. height: math.unit(2, "feet"),
  49141. name: "Maw",
  49142. image: {
  49143. source: "./media/characters/shady/maw.svg"
  49144. }
  49145. },
  49146. },
  49147. [
  49148. {
  49149. name: "Nano",
  49150. height: math.unit(1, "mm")
  49151. },
  49152. {
  49153. name: "Micro",
  49154. height: math.unit(12, "mm")
  49155. },
  49156. {
  49157. name: "Tiny",
  49158. height: math.unit(3, "inches")
  49159. },
  49160. {
  49161. name: "Normal",
  49162. height: math.unit(6 + 2/12, "feet"),
  49163. default: true
  49164. },
  49165. {
  49166. name: "Big",
  49167. height: math.unit(15, "feet")
  49168. },
  49169. {
  49170. name: "Macro",
  49171. height: math.unit(150, "feet")
  49172. },
  49173. {
  49174. name: "Titanic",
  49175. height: math.unit(500, "feet")
  49176. },
  49177. ]
  49178. ))
  49179. characterMakers.push(() => makeCharacter(
  49180. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49181. {
  49182. front: {
  49183. height: math.unit(12, "feet"),
  49184. name: "Front",
  49185. image: {
  49186. source: "./media/characters/fenrir/front.svg",
  49187. extra: 968/875,
  49188. bottom: 22/990
  49189. }
  49190. },
  49191. },
  49192. [
  49193. {
  49194. name: "Big",
  49195. height: math.unit(12, "feet"),
  49196. default: true
  49197. },
  49198. ]
  49199. ))
  49200. characterMakers.push(() => makeCharacter(
  49201. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49202. {
  49203. front: {
  49204. height: math.unit(5 + 4/12, "feet"),
  49205. name: "Front",
  49206. image: {
  49207. source: "./media/characters/makar/front.svg",
  49208. extra: 1181/1112,
  49209. bottom: 78/1259
  49210. }
  49211. },
  49212. },
  49213. [
  49214. {
  49215. name: "Normal",
  49216. height: math.unit(5 + 4/12, "feet"),
  49217. default: true
  49218. },
  49219. ]
  49220. ))
  49221. characterMakers.push(() => makeCharacter(
  49222. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49223. {
  49224. front: {
  49225. height: math.unit(5 + 7/12, "feet"),
  49226. name: "Front",
  49227. image: {
  49228. source: "./media/characters/callow/front.svg",
  49229. extra: 1482/1304,
  49230. bottom: 23/1505
  49231. }
  49232. },
  49233. back: {
  49234. height: math.unit(5 + 7/12, "feet"),
  49235. name: "Back",
  49236. image: {
  49237. source: "./media/characters/callow/back.svg",
  49238. extra: 1484/1296,
  49239. bottom: 25/1509
  49240. }
  49241. },
  49242. },
  49243. [
  49244. {
  49245. name: "Micro",
  49246. height: math.unit(3, "inches"),
  49247. default: true
  49248. },
  49249. {
  49250. name: "Normal",
  49251. height: math.unit(5 + 7/12, "feet")
  49252. },
  49253. ]
  49254. ))
  49255. characterMakers.push(() => makeCharacter(
  49256. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49257. {
  49258. front: {
  49259. height: math.unit(6 + 2/12, "feet"),
  49260. name: "Front",
  49261. image: {
  49262. source: "./media/characters/natel/front.svg",
  49263. extra: 1833/1692,
  49264. bottom: 166/1999
  49265. }
  49266. },
  49267. },
  49268. [
  49269. {
  49270. name: "Normal",
  49271. height: math.unit(6 + 2/12, "feet"),
  49272. default: true
  49273. },
  49274. ]
  49275. ))
  49276. characterMakers.push(() => makeCharacter(
  49277. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49278. {
  49279. front: {
  49280. height: math.unit(1.75, "meters"),
  49281. name: "Front",
  49282. image: {
  49283. source: "./media/characters/misu/front.svg",
  49284. extra: 1690/1558,
  49285. bottom: 234/1924
  49286. }
  49287. },
  49288. back: {
  49289. height: math.unit(1.75, "meters"),
  49290. name: "Back",
  49291. image: {
  49292. source: "./media/characters/misu/back.svg",
  49293. extra: 1762/1618,
  49294. bottom: 146/1908
  49295. }
  49296. },
  49297. frontNude: {
  49298. height: math.unit(1.75, "meters"),
  49299. name: "Front (Nude)",
  49300. image: {
  49301. source: "./media/characters/misu/front-nude.svg",
  49302. extra: 1690/1558,
  49303. bottom: 234/1924
  49304. }
  49305. },
  49306. backNude: {
  49307. height: math.unit(1.75, "meters"),
  49308. name: "Back (Nude)",
  49309. image: {
  49310. source: "./media/characters/misu/back-nude.svg",
  49311. extra: 1762/1618,
  49312. bottom: 146/1908
  49313. }
  49314. },
  49315. frontErect: {
  49316. height: math.unit(1.75, "meters"),
  49317. name: "Front (Erect)",
  49318. image: {
  49319. source: "./media/characters/misu/front-erect.svg",
  49320. extra: 1690/1558,
  49321. bottom: 234/1924
  49322. }
  49323. },
  49324. maw: {
  49325. height: math.unit(0.47, "meters"),
  49326. name: "Maw",
  49327. image: {
  49328. source: "./media/characters/misu/maw.svg"
  49329. }
  49330. },
  49331. head: {
  49332. height: math.unit(0.35, "meters"),
  49333. name: "Head",
  49334. image: {
  49335. source: "./media/characters/misu/head.svg"
  49336. }
  49337. },
  49338. rear: {
  49339. height: math.unit(0.47, "meters"),
  49340. name: "Rear",
  49341. image: {
  49342. source: "./media/characters/misu/rear.svg"
  49343. }
  49344. },
  49345. },
  49346. [
  49347. {
  49348. name: "Normal",
  49349. height: math.unit(1.75, "meters")
  49350. },
  49351. {
  49352. name: "Not good for the people",
  49353. height: math.unit(42, "meters")
  49354. },
  49355. {
  49356. name: "Not good for the neighborhood",
  49357. height: math.unit(135, "meters")
  49358. },
  49359. {
  49360. name: "Bit bigger problem",
  49361. height: math.unit(380, "meters"),
  49362. default: true
  49363. },
  49364. {
  49365. name: "Not good for the city",
  49366. height: math.unit(1.5, "km")
  49367. },
  49368. {
  49369. name: "Not good for the county",
  49370. height: math.unit(5.5, "km")
  49371. },
  49372. {
  49373. name: "Not good for the state",
  49374. height: math.unit(25, "km")
  49375. },
  49376. {
  49377. name: "Not good for the country",
  49378. height: math.unit(125, "km")
  49379. },
  49380. {
  49381. name: "Not good for the continent",
  49382. height: math.unit(2100, "km")
  49383. },
  49384. {
  49385. name: "Not good for the planet",
  49386. height: math.unit(35000, "km")
  49387. },
  49388. {
  49389. name: "Just no",
  49390. height: math.unit(8.5e18, "km")
  49391. },
  49392. ]
  49393. ))
  49394. characterMakers.push(() => makeCharacter(
  49395. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49396. {
  49397. front: {
  49398. height: math.unit(6.5, "feet"),
  49399. name: "Front",
  49400. image: {
  49401. source: "./media/characters/poppy/front.svg",
  49402. extra: 1878/1812,
  49403. bottom: 43/1921
  49404. }
  49405. },
  49406. feet: {
  49407. height: math.unit(1.06, "feet"),
  49408. name: "Feet",
  49409. image: {
  49410. source: "./media/characters/poppy/feet.svg",
  49411. extra: 1083/1083,
  49412. bottom: 87/1170
  49413. }
  49414. },
  49415. },
  49416. [
  49417. {
  49418. name: "Human",
  49419. height: math.unit(6.5, "feet")
  49420. },
  49421. {
  49422. name: "Default",
  49423. height: math.unit(300, "feet"),
  49424. default: true
  49425. },
  49426. {
  49427. name: "Huge",
  49428. height: math.unit(850, "feet")
  49429. },
  49430. {
  49431. name: "Mega",
  49432. height: math.unit(8000, "feet")
  49433. },
  49434. {
  49435. name: "Giga",
  49436. height: math.unit(300, "miles")
  49437. },
  49438. ]
  49439. ))
  49440. characterMakers.push(() => makeCharacter(
  49441. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49442. {
  49443. bipedal: {
  49444. height: math.unit(7, "feet"),
  49445. name: "Bipedal",
  49446. image: {
  49447. source: "./media/characters/zener/bipedal.svg",
  49448. extra: 874/805,
  49449. bottom: 109/983
  49450. }
  49451. },
  49452. quadrupedal: {
  49453. height: math.unit(4.64, "feet"),
  49454. name: "Quadrupedal",
  49455. image: {
  49456. source: "./media/characters/zener/quadrupedal.svg",
  49457. extra: 638/507,
  49458. bottom: 190/828
  49459. }
  49460. },
  49461. cock: {
  49462. height: math.unit(18, "inches"),
  49463. name: "Cock",
  49464. image: {
  49465. source: "./media/characters/zener/cock.svg"
  49466. }
  49467. },
  49468. },
  49469. [
  49470. {
  49471. name: "Normal",
  49472. height: math.unit(7, "feet"),
  49473. default: true
  49474. },
  49475. ]
  49476. ))
  49477. characterMakers.push(() => makeCharacter(
  49478. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49479. {
  49480. nude: {
  49481. height: math.unit(5 + 6/12, "feet"),
  49482. name: "Nude",
  49483. image: {
  49484. source: "./media/characters/charlie-dog/nude.svg",
  49485. extra: 768/734,
  49486. bottom: 26/794
  49487. }
  49488. },
  49489. dressed: {
  49490. height: math.unit(5 + 6/12, "feet"),
  49491. name: "Dressed",
  49492. image: {
  49493. source: "./media/characters/charlie-dog/dressed.svg",
  49494. extra: 768/734,
  49495. bottom: 26/794
  49496. }
  49497. },
  49498. },
  49499. [
  49500. {
  49501. name: "Normal",
  49502. height: math.unit(5 + 6/12, "feet"),
  49503. default: true
  49504. },
  49505. ]
  49506. ))
  49507. characterMakers.push(() => makeCharacter(
  49508. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49509. {
  49510. front: {
  49511. height: math.unit(6 + 4/12, "feet"),
  49512. name: "Front",
  49513. image: {
  49514. source: "./media/characters/ir'istrasz/front.svg",
  49515. extra: 1014/977,
  49516. bottom: 65/1079
  49517. }
  49518. },
  49519. back: {
  49520. height: math.unit(6 + 4/12, "feet"),
  49521. name: "Back",
  49522. image: {
  49523. source: "./media/characters/ir'istrasz/back.svg",
  49524. extra: 1024/992,
  49525. bottom: 34/1058
  49526. }
  49527. },
  49528. },
  49529. [
  49530. {
  49531. name: "Normal",
  49532. height: math.unit(6 + 4/12, "feet"),
  49533. default: true
  49534. },
  49535. ]
  49536. ))
  49537. characterMakers.push(() => makeCharacter(
  49538. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49539. {
  49540. front: {
  49541. height: math.unit(5 + 8/12, "feet"),
  49542. name: "Front",
  49543. image: {
  49544. source: "./media/characters/dee-ditto/front.svg",
  49545. extra: 1874/1785,
  49546. bottom: 68/1942
  49547. }
  49548. },
  49549. back: {
  49550. height: math.unit(5 + 8/12, "feet"),
  49551. name: "Back",
  49552. image: {
  49553. source: "./media/characters/dee-ditto/back.svg",
  49554. extra: 1870/1783,
  49555. bottom: 77/1947
  49556. }
  49557. },
  49558. },
  49559. [
  49560. {
  49561. name: "Normal",
  49562. height: math.unit(5 + 8/12, "feet"),
  49563. default: true
  49564. },
  49565. ]
  49566. ))
  49567. characterMakers.push(() => makeCharacter(
  49568. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49569. {
  49570. front: {
  49571. height: math.unit(7 + 6/12, "feet"),
  49572. name: "Front",
  49573. image: {
  49574. source: "./media/characters/fey/front.svg",
  49575. extra: 995/979,
  49576. bottom: 30/1025
  49577. }
  49578. },
  49579. back: {
  49580. height: math.unit(7 + 6/12, "feet"),
  49581. name: "Back",
  49582. image: {
  49583. source: "./media/characters/fey/back.svg",
  49584. extra: 1079/1008,
  49585. bottom: 5/1084
  49586. }
  49587. },
  49588. dressed: {
  49589. height: math.unit(7 + 6/12, "feet"),
  49590. name: "Dressed",
  49591. image: {
  49592. source: "./media/characters/fey/dressed.svg",
  49593. extra: 995/979,
  49594. bottom: 30/1025
  49595. }
  49596. },
  49597. },
  49598. [
  49599. {
  49600. name: "Normal",
  49601. height: math.unit(7 + 6/12, "feet"),
  49602. default: true
  49603. },
  49604. ]
  49605. ))
  49606. characterMakers.push(() => makeCharacter(
  49607. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49608. {
  49609. standing: {
  49610. height: math.unit(17, "feet"),
  49611. name: "Standing",
  49612. image: {
  49613. source: "./media/characters/aster/standing.svg",
  49614. extra: 1798/1598,
  49615. bottom: 117/1915
  49616. }
  49617. },
  49618. },
  49619. [
  49620. {
  49621. name: "Normal",
  49622. height: math.unit(17, "feet"),
  49623. default: true
  49624. },
  49625. {
  49626. name: "Homewrecker",
  49627. height: math.unit(95, "feet")
  49628. },
  49629. {
  49630. name: "Planet Devourer",
  49631. height: math.unit(1008000, "miles")
  49632. },
  49633. ]
  49634. ))
  49635. characterMakers.push(() => makeCharacter(
  49636. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49637. {
  49638. front: {
  49639. height: math.unit(6 + 5/12, "feet"),
  49640. weight: math.unit(265, "lb"),
  49641. name: "Front",
  49642. image: {
  49643. source: "./media/characters/devon-childs/front.svg",
  49644. extra: 1795/1721,
  49645. bottom: 41/1836
  49646. }
  49647. },
  49648. side: {
  49649. height: math.unit(6 + 5/12, "feet"),
  49650. weight: math.unit(265, "lb"),
  49651. name: "Side",
  49652. image: {
  49653. source: "./media/characters/devon-childs/side.svg",
  49654. extra: 1812/1738,
  49655. bottom: 30/1842
  49656. }
  49657. },
  49658. back: {
  49659. height: math.unit(6 + 5/12, "feet"),
  49660. weight: math.unit(265, "lb"),
  49661. name: "Back",
  49662. image: {
  49663. source: "./media/characters/devon-childs/back.svg",
  49664. extra: 1808/1735,
  49665. bottom: 23/1831
  49666. }
  49667. },
  49668. hand: {
  49669. height: math.unit(1.464, "feet"),
  49670. name: "Hand",
  49671. image: {
  49672. source: "./media/characters/devon-childs/hand.svg"
  49673. }
  49674. },
  49675. foot: {
  49676. height: math.unit(1.6, "feet"),
  49677. name: "Foot",
  49678. image: {
  49679. source: "./media/characters/devon-childs/foot.svg"
  49680. }
  49681. },
  49682. },
  49683. [
  49684. {
  49685. name: "Micro",
  49686. height: math.unit(7, "cm")
  49687. },
  49688. {
  49689. name: "Normal",
  49690. height: math.unit(6 + 5/12, "feet"),
  49691. default: true
  49692. },
  49693. {
  49694. name: "Macro",
  49695. height: math.unit(154, "feet")
  49696. },
  49697. ]
  49698. ))
  49699. characterMakers.push(() => makeCharacter(
  49700. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49701. {
  49702. front: {
  49703. height: math.unit(6, "feet"),
  49704. weight: math.unit(180, "lb"),
  49705. name: "Front",
  49706. image: {
  49707. source: "./media/characters/lydemox-vir/front.svg",
  49708. extra: 1632/1435,
  49709. bottom: 58/1690
  49710. }
  49711. },
  49712. frontSFW: {
  49713. height: math.unit(6, "feet"),
  49714. weight: math.unit(180, "lb"),
  49715. name: "Front (SFW)",
  49716. image: {
  49717. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49718. extra: 1632/1435,
  49719. bottom: 58/1690
  49720. }
  49721. },
  49722. back: {
  49723. height: math.unit(6, "feet"),
  49724. weight: math.unit(180, "lb"),
  49725. name: "Back",
  49726. image: {
  49727. source: "./media/characters/lydemox-vir/back.svg",
  49728. extra: 1593/1408,
  49729. bottom: 31/1624
  49730. }
  49731. },
  49732. paw: {
  49733. height: math.unit(1.85, "feet"),
  49734. name: "Paw",
  49735. image: {
  49736. source: "./media/characters/lydemox-vir/paw.svg"
  49737. }
  49738. },
  49739. dick: {
  49740. height: math.unit(1.8, "feet"),
  49741. name: "Dick",
  49742. image: {
  49743. source: "./media/characters/lydemox-vir/dick.svg"
  49744. }
  49745. },
  49746. },
  49747. [
  49748. {
  49749. name: "Macro",
  49750. height: math.unit(100, "feet"),
  49751. default: true
  49752. },
  49753. {
  49754. name: "Teramacro",
  49755. height: math.unit(1, "earth")
  49756. },
  49757. {
  49758. name: "Planetary",
  49759. height: math.unit(20, "earths")
  49760. },
  49761. ]
  49762. ))
  49763. characterMakers.push(() => makeCharacter(
  49764. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49765. {
  49766. front: {
  49767. height: math.unit(15 + 8/12, "feet"),
  49768. weight: math.unit(1237, "kg"),
  49769. name: "Front",
  49770. image: {
  49771. source: "./media/characters/mia/front.svg",
  49772. extra: 1573/1446,
  49773. bottom: 58/1631
  49774. }
  49775. },
  49776. },
  49777. [
  49778. {
  49779. name: "Small",
  49780. height: math.unit(9 + 5/12, "feet")
  49781. },
  49782. {
  49783. name: "Normal",
  49784. height: math.unit(15 + 8/12, "feet"),
  49785. default: true
  49786. },
  49787. ]
  49788. ))
  49789. characterMakers.push(() => makeCharacter(
  49790. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49791. {
  49792. front: {
  49793. height: math.unit(10 + 6/12, "feet"),
  49794. weight: math.unit(1.3, "tons"),
  49795. name: "Front",
  49796. image: {
  49797. source: "./media/characters/mr-graves/front.svg",
  49798. extra: 1779/1695,
  49799. bottom: 198/1977
  49800. }
  49801. },
  49802. },
  49803. [
  49804. {
  49805. name: "Normal",
  49806. height: math.unit(10 + 6 /12, "feet"),
  49807. default: true
  49808. },
  49809. ]
  49810. ))
  49811. characterMakers.push(() => makeCharacter(
  49812. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49813. {
  49814. dressedFront: {
  49815. height: math.unit(5 + 8/12, "feet"),
  49816. weight: math.unit(125, "lb"),
  49817. name: "Dressed (Front)",
  49818. image: {
  49819. source: "./media/characters/jess/dressed-front.svg",
  49820. extra: 1176/1152,
  49821. bottom: 42/1218
  49822. }
  49823. },
  49824. dressedSide: {
  49825. height: math.unit(5 + 8/12, "feet"),
  49826. weight: math.unit(125, "lb"),
  49827. name: "Dressed (Side)",
  49828. image: {
  49829. source: "./media/characters/jess/dressed-side.svg",
  49830. extra: 1204/1190,
  49831. bottom: 6/1210
  49832. }
  49833. },
  49834. nudeFront: {
  49835. height: math.unit(5 + 8/12, "feet"),
  49836. weight: math.unit(125, "lb"),
  49837. name: "Nude (Front)",
  49838. image: {
  49839. source: "./media/characters/jess/nude-front.svg",
  49840. extra: 1176/1152,
  49841. bottom: 42/1218
  49842. }
  49843. },
  49844. nudeSide: {
  49845. height: math.unit(5 + 8/12, "feet"),
  49846. weight: math.unit(125, "lb"),
  49847. name: "Nude (Side)",
  49848. image: {
  49849. source: "./media/characters/jess/nude-side.svg",
  49850. extra: 1204/1190,
  49851. bottom: 6/1210
  49852. }
  49853. },
  49854. organsFront: {
  49855. height: math.unit(2.83799342105, "feet"),
  49856. name: "Organs (Front)",
  49857. image: {
  49858. source: "./media/characters/jess/organs-front.svg"
  49859. }
  49860. },
  49861. organsSide: {
  49862. height: math.unit(2.64225290474, "feet"),
  49863. name: "Organs (Side)",
  49864. image: {
  49865. source: "./media/characters/jess/organs-side.svg"
  49866. }
  49867. },
  49868. digestiveTractFront: {
  49869. height: math.unit(2.8106580871, "feet"),
  49870. name: "Digestive Tract (Front)",
  49871. image: {
  49872. source: "./media/characters/jess/digestive-tract-front.svg"
  49873. }
  49874. },
  49875. digestiveTractSide: {
  49876. height: math.unit(2.54365045014, "feet"),
  49877. name: "Digestive Tract (Side)",
  49878. image: {
  49879. source: "./media/characters/jess/digestive-tract-side.svg"
  49880. }
  49881. },
  49882. respiratorySystemFront: {
  49883. height: math.unit(1.11196233456, "feet"),
  49884. name: "Respiratory System (Front)",
  49885. image: {
  49886. source: "./media/characters/jess/respiratory-system-front.svg"
  49887. }
  49888. },
  49889. respiratorySystemSide: {
  49890. height: math.unit(0.89327966297, "feet"),
  49891. name: "Respiratory System (Side)",
  49892. image: {
  49893. source: "./media/characters/jess/respiratory-system-side.svg"
  49894. }
  49895. },
  49896. urinaryTractFront: {
  49897. height: math.unit(1.16126356186, "feet"),
  49898. name: "Urinary Tract (Front)",
  49899. image: {
  49900. source: "./media/characters/jess/urinary-tract-front.svg"
  49901. }
  49902. },
  49903. urinaryTractSide: {
  49904. height: math.unit(1.20910039627, "feet"),
  49905. name: "Urinary Tract (Side)",
  49906. image: {
  49907. source: "./media/characters/jess/urinary-tract-side.svg"
  49908. }
  49909. },
  49910. reproductiveOrgansFront: {
  49911. height: math.unit(0.48422591566, "feet"),
  49912. name: "Reproductive Organs (Front)",
  49913. image: {
  49914. source: "./media/characters/jess/reproductive-organs-front.svg"
  49915. }
  49916. },
  49917. reproductiveOrgansSide: {
  49918. height: math.unit(0.61553314481, "feet"),
  49919. name: "Reproductive Organs (Side)",
  49920. image: {
  49921. source: "./media/characters/jess/reproductive-organs-side.svg"
  49922. }
  49923. },
  49924. breastsFront: {
  49925. height: math.unit(0.47690395121, "feet"),
  49926. name: "Breasts (Front)",
  49927. image: {
  49928. source: "./media/characters/jess/breasts-front.svg"
  49929. }
  49930. },
  49931. breastsSide: {
  49932. height: math.unit(0.30556998307, "feet"),
  49933. name: "Breasts (Side)",
  49934. image: {
  49935. source: "./media/characters/jess/breasts-side.svg"
  49936. }
  49937. },
  49938. heartFront: {
  49939. height: math.unit(0.53011022622, "feet"),
  49940. name: "Heart (Front)",
  49941. image: {
  49942. source: "./media/characters/jess/heart-front.svg"
  49943. }
  49944. },
  49945. heartSide: {
  49946. height: math.unit(0.51790695213, "feet"),
  49947. name: "Heart (Side)",
  49948. image: {
  49949. source: "./media/characters/jess/heart-side.svg"
  49950. }
  49951. },
  49952. earsAndNoseFront: {
  49953. height: math.unit(0.29385483995, "feet"),
  49954. name: "Ears and Nose (Front)",
  49955. image: {
  49956. source: "./media/characters/jess/ears-and-nose-front.svg"
  49957. }
  49958. },
  49959. earsAndNoseSide: {
  49960. height: math.unit(0.18109658741, "feet"),
  49961. name: "Ears and Nose (Side)",
  49962. image: {
  49963. source: "./media/characters/jess/ears-and-nose-side.svg"
  49964. }
  49965. },
  49966. },
  49967. [
  49968. {
  49969. name: "Normal",
  49970. height: math.unit(5 + 8/12, "feet"),
  49971. default: true
  49972. },
  49973. ]
  49974. ))
  49975. characterMakers.push(() => makeCharacter(
  49976. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49977. {
  49978. front: {
  49979. height: math.unit(6, "feet"),
  49980. weight: math.unit(6.64467e-7, "grams"),
  49981. name: "Front",
  49982. image: {
  49983. source: "./media/characters/wimpering/front.svg",
  49984. extra: 597/587,
  49985. bottom: 34/631
  49986. }
  49987. },
  49988. },
  49989. [
  49990. {
  49991. name: "Micro",
  49992. height: math.unit(0.4, "mm"),
  49993. default: true
  49994. },
  49995. ]
  49996. ))
  49997. characterMakers.push(() => makeCharacter(
  49998. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49999. {
  50000. front: {
  50001. height: math.unit(5 + 2/12, "feet"),
  50002. weight: math.unit(110, "lb"),
  50003. name: "Front",
  50004. image: {
  50005. source: "./media/characters/keltre/front.svg",
  50006. extra: 1099/1057,
  50007. bottom: 22/1121
  50008. }
  50009. },
  50010. back: {
  50011. height: math.unit(5 + 2/12, "feet"),
  50012. weight: math.unit(110, "lb"),
  50013. name: "Back",
  50014. image: {
  50015. source: "./media/characters/keltre/back.svg",
  50016. extra: 1095/1053,
  50017. bottom: 17/1112
  50018. }
  50019. },
  50020. dressed: {
  50021. height: math.unit(5 + 2/12, "feet"),
  50022. weight: math.unit(110, "lb"),
  50023. name: "Dressed",
  50024. image: {
  50025. source: "./media/characters/keltre/dressed.svg",
  50026. extra: 1099/1057,
  50027. bottom: 22/1121
  50028. }
  50029. },
  50030. winter: {
  50031. height: math.unit(5 + 2/12, "feet"),
  50032. weight: math.unit(110, "lb"),
  50033. name: "Winter",
  50034. image: {
  50035. source: "./media/characters/keltre/winter.svg",
  50036. extra: 1099/1057,
  50037. bottom: 22/1121
  50038. }
  50039. },
  50040. head: {
  50041. height: math.unit(1.61 * 0.86, "feet"),
  50042. name: "Head",
  50043. image: {
  50044. source: "./media/characters/keltre/head.svg",
  50045. extra: 534/421,
  50046. bottom: 0/534
  50047. }
  50048. },
  50049. hand: {
  50050. height: math.unit(1.3 * 0.86, "feet"),
  50051. name: "Hand",
  50052. image: {
  50053. source: "./media/characters/keltre/hand.svg"
  50054. }
  50055. },
  50056. foot: {
  50057. height: math.unit(1.8 * 0.86, "feet"),
  50058. name: "Foot",
  50059. image: {
  50060. source: "./media/characters/keltre/foot.svg"
  50061. }
  50062. },
  50063. },
  50064. [
  50065. {
  50066. name: "Fine",
  50067. height: math.unit(1, "inch")
  50068. },
  50069. {
  50070. name: "Dimnutive",
  50071. height: math.unit(4, "inches")
  50072. },
  50073. {
  50074. name: "Tiny",
  50075. height: math.unit(1, "foot")
  50076. },
  50077. {
  50078. name: "Small",
  50079. height: math.unit(3, "feet")
  50080. },
  50081. {
  50082. name: "Normal",
  50083. height: math.unit(5 + 2/12, "feet"),
  50084. default: true
  50085. },
  50086. ]
  50087. ))
  50088. characterMakers.push(() => makeCharacter(
  50089. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50090. {
  50091. front: {
  50092. height: math.unit(6 + 2/12, "feet"),
  50093. name: "Front",
  50094. image: {
  50095. source: "./media/characters/nox/front.svg",
  50096. extra: 1917/1830,
  50097. bottom: 74/1991
  50098. }
  50099. },
  50100. back: {
  50101. height: math.unit(6 + 2/12, "feet"),
  50102. name: "Back",
  50103. image: {
  50104. source: "./media/characters/nox/back.svg",
  50105. extra: 1896/1815,
  50106. bottom: 21/1917
  50107. }
  50108. },
  50109. head: {
  50110. height: math.unit(1.1, "feet"),
  50111. name: "Head",
  50112. image: {
  50113. source: "./media/characters/nox/head.svg",
  50114. extra: 874/704,
  50115. bottom: 0/874
  50116. }
  50117. },
  50118. tattoo: {
  50119. height: math.unit(0.729, "feet"),
  50120. name: "Tattoo",
  50121. image: {
  50122. source: "./media/characters/nox/tattoo.svg"
  50123. }
  50124. },
  50125. },
  50126. [
  50127. {
  50128. name: "Normal",
  50129. height: math.unit(6 + 2/12, "feet")
  50130. },
  50131. {
  50132. name: "Gigamacro",
  50133. height: math.unit(2, "earths"),
  50134. default: true
  50135. },
  50136. {
  50137. name: "Cosmic",
  50138. height: math.unit(867, "yottameters")
  50139. },
  50140. ]
  50141. ))
  50142. characterMakers.push(() => makeCharacter(
  50143. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50144. {
  50145. front: {
  50146. height: math.unit(6, "feet"),
  50147. weight: math.unit(150, "lb"),
  50148. name: "Front",
  50149. image: {
  50150. source: "./media/characters/caspian/front.svg",
  50151. extra: 1443/1359,
  50152. bottom: 0/1443
  50153. }
  50154. },
  50155. back: {
  50156. height: math.unit(6, "feet"),
  50157. weight: math.unit(150, "lb"),
  50158. name: "Back",
  50159. image: {
  50160. source: "./media/characters/caspian/back.svg",
  50161. extra: 1379/1309,
  50162. bottom: 0/1379
  50163. }
  50164. },
  50165. head: {
  50166. height: math.unit(0.9, "feet"),
  50167. name: "Head",
  50168. image: {
  50169. source: "./media/characters/caspian/head.svg",
  50170. extra: 692/492,
  50171. bottom: 0/692
  50172. }
  50173. },
  50174. headAlt: {
  50175. height: math.unit(0.95, "feet"),
  50176. name: "Head (Alt)",
  50177. image: {
  50178. source: "./media/characters/caspian/head-alt.svg",
  50179. extra: 668/508,
  50180. bottom: 0/668
  50181. }
  50182. },
  50183. hand: {
  50184. height: math.unit(0.8, "feet"),
  50185. name: "Hand",
  50186. image: {
  50187. source: "./media/characters/caspian/hand.svg"
  50188. }
  50189. },
  50190. paw: {
  50191. height: math.unit(0.95, "feet"),
  50192. name: "Paw",
  50193. image: {
  50194. source: "./media/characters/caspian/paw.svg"
  50195. }
  50196. },
  50197. },
  50198. [
  50199. {
  50200. name: "Normal",
  50201. height: math.unit(162, "feet"),
  50202. default: true
  50203. },
  50204. ]
  50205. ))
  50206. characterMakers.push(() => makeCharacter(
  50207. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50208. {
  50209. front: {
  50210. height: math.unit(6, "feet"),
  50211. name: "Front",
  50212. image: {
  50213. source: "./media/characters/myra-aisling/front.svg",
  50214. extra: 1268/1166,
  50215. bottom: 73/1341
  50216. }
  50217. },
  50218. back: {
  50219. height: math.unit(6, "feet"),
  50220. name: "Back",
  50221. image: {
  50222. source: "./media/characters/myra-aisling/back.svg",
  50223. extra: 1249/1149,
  50224. bottom: 79/1328
  50225. }
  50226. },
  50227. dressed: {
  50228. height: math.unit(6, "feet"),
  50229. name: "Dressed",
  50230. image: {
  50231. source: "./media/characters/myra-aisling/dressed.svg",
  50232. extra: 1290/1189,
  50233. bottom: 47/1337
  50234. }
  50235. },
  50236. hand: {
  50237. height: math.unit(1.1, "feet"),
  50238. name: "Hand",
  50239. image: {
  50240. source: "./media/characters/myra-aisling/hand.svg"
  50241. }
  50242. },
  50243. paw: {
  50244. height: math.unit(1.23, "feet"),
  50245. name: "Paw",
  50246. image: {
  50247. source: "./media/characters/myra-aisling/paw.svg"
  50248. }
  50249. },
  50250. },
  50251. [
  50252. {
  50253. name: "Normal",
  50254. height: math.unit(160, "feet"),
  50255. default: true
  50256. },
  50257. ]
  50258. ))
  50259. characterMakers.push(() => makeCharacter(
  50260. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50261. {
  50262. front: {
  50263. height: math.unit(6, "feet"),
  50264. name: "Front",
  50265. image: {
  50266. source: "./media/characters/tenley-sidero/front.svg",
  50267. extra: 1365/1276,
  50268. bottom: 47/1412
  50269. }
  50270. },
  50271. back: {
  50272. height: math.unit(6, "feet"),
  50273. name: "Back",
  50274. image: {
  50275. source: "./media/characters/tenley-sidero/back.svg",
  50276. extra: 1383/1283,
  50277. bottom: 35/1418
  50278. }
  50279. },
  50280. dressed: {
  50281. height: math.unit(6, "feet"),
  50282. name: "Dressed",
  50283. image: {
  50284. source: "./media/characters/tenley-sidero/dressed.svg",
  50285. extra: 1364/1275,
  50286. bottom: 42/1406
  50287. }
  50288. },
  50289. head: {
  50290. height: math.unit(1.47, "feet"),
  50291. name: "Head",
  50292. image: {
  50293. source: "./media/characters/tenley-sidero/head.svg",
  50294. extra: 610/490,
  50295. bottom: 0/610
  50296. }
  50297. },
  50298. },
  50299. [
  50300. {
  50301. name: "Normal",
  50302. height: math.unit(154, "feet"),
  50303. default: true
  50304. },
  50305. ]
  50306. ))
  50307. characterMakers.push(() => makeCharacter(
  50308. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50309. {
  50310. front: {
  50311. height: math.unit(5, "inches"),
  50312. name: "Front",
  50313. image: {
  50314. source: "./media/characters/mallory/front.svg",
  50315. extra: 1919/1678,
  50316. bottom: 29/1948
  50317. }
  50318. },
  50319. hand: {
  50320. height: math.unit(0.73, "inches"),
  50321. name: "Hand",
  50322. image: {
  50323. source: "./media/characters/mallory/hand.svg"
  50324. }
  50325. },
  50326. paw: {
  50327. height: math.unit(0.68, "inches"),
  50328. name: "Paw",
  50329. image: {
  50330. source: "./media/characters/mallory/paw.svg"
  50331. }
  50332. },
  50333. },
  50334. [
  50335. {
  50336. name: "Small",
  50337. height: math.unit(5, "inches"),
  50338. default: true
  50339. },
  50340. ]
  50341. ))
  50342. characterMakers.push(() => makeCharacter(
  50343. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50344. {
  50345. naked: {
  50346. height: math.unit(6, "feet"),
  50347. name: "Naked",
  50348. image: {
  50349. source: "./media/characters/mab/naked.svg",
  50350. extra: 1855/1757,
  50351. bottom: 208/2063
  50352. }
  50353. },
  50354. outside: {
  50355. height: math.unit(6, "feet"),
  50356. name: "Outside",
  50357. image: {
  50358. source: "./media/characters/mab/outside.svg",
  50359. extra: 1855/1757,
  50360. bottom: 208/2063
  50361. }
  50362. },
  50363. party: {
  50364. height: math.unit(6, "feet"),
  50365. name: "Party",
  50366. image: {
  50367. source: "./media/characters/mab/party.svg",
  50368. extra: 1855/1757,
  50369. bottom: 208/2063
  50370. }
  50371. },
  50372. },
  50373. [
  50374. {
  50375. name: "Normal",
  50376. height: math.unit(165, "feet"),
  50377. default: true
  50378. },
  50379. ]
  50380. ))
  50381. characterMakers.push(() => makeCharacter(
  50382. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50383. {
  50384. feral: {
  50385. height: math.unit(12, "feet"),
  50386. weight: math.unit(20000, "lb"),
  50387. name: "Side",
  50388. image: {
  50389. source: "./media/characters/winter/feral.svg",
  50390. extra: 1286/943,
  50391. bottom: 112/1398
  50392. },
  50393. form: "feral",
  50394. default: true
  50395. },
  50396. feralNsfw: {
  50397. height: math.unit(12, "feet"),
  50398. weight: math.unit(20000, "lb"),
  50399. name: "Side (NSFW)",
  50400. image: {
  50401. source: "./media/characters/winter/feral-nsfw.svg",
  50402. extra: 1286/943,
  50403. bottom: 112/1398
  50404. },
  50405. form: "feral"
  50406. },
  50407. dick: {
  50408. height: math.unit(3.79, "feet"),
  50409. name: "Dick",
  50410. image: {
  50411. source: "./media/characters/winter/dick.svg"
  50412. },
  50413. form: "feral"
  50414. },
  50415. anthro: {
  50416. height: math.unit(12, "feet"),
  50417. weight: math.unit(10, "tons"),
  50418. name: "Anthro",
  50419. image: {
  50420. source: "./media/characters/winter/anthro.svg",
  50421. extra: 1701/1553,
  50422. bottom: 64/1765
  50423. },
  50424. form: "anthro",
  50425. default: true
  50426. },
  50427. },
  50428. [
  50429. {
  50430. name: "Big",
  50431. height: math.unit(12, "feet"),
  50432. default: true,
  50433. form: "feral"
  50434. },
  50435. {
  50436. name: "Big",
  50437. height: math.unit(12, "feet"),
  50438. default: true,
  50439. form: "anthro"
  50440. },
  50441. ],
  50442. {
  50443. "feral": {
  50444. name: "Feral",
  50445. default: true
  50446. },
  50447. "anthro": {
  50448. name: "Anthro"
  50449. }
  50450. }
  50451. ))
  50452. characterMakers.push(() => makeCharacter(
  50453. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50454. {
  50455. front: {
  50456. height: math.unit(4.1, "inches"),
  50457. name: "Front",
  50458. image: {
  50459. source: "./media/characters/alto/front.svg",
  50460. extra: 736/627,
  50461. bottom: 90/826
  50462. }
  50463. },
  50464. },
  50465. [
  50466. {
  50467. name: "Normal",
  50468. height: math.unit(4.1, "inches"),
  50469. default: true
  50470. },
  50471. ]
  50472. ))
  50473. characterMakers.push(() => makeCharacter(
  50474. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50475. {
  50476. sitting: {
  50477. height: math.unit(3, "feet"),
  50478. name: "Sitting",
  50479. image: {
  50480. source: "./media/characters/ratstrid-v/sitting.svg",
  50481. extra: 355/310,
  50482. bottom: 136/491
  50483. }
  50484. },
  50485. },
  50486. [
  50487. {
  50488. name: "Normal",
  50489. height: math.unit(3, "feet"),
  50490. default: true
  50491. },
  50492. ]
  50493. ))
  50494. characterMakers.push(() => makeCharacter(
  50495. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50496. {
  50497. back: {
  50498. height: math.unit(6, "feet"),
  50499. weight: math.unit(450, "lb"),
  50500. name: "Back",
  50501. image: {
  50502. source: "./media/characters/siz/back.svg",
  50503. extra: 1449/1274,
  50504. bottom: 13/1462
  50505. }
  50506. },
  50507. },
  50508. [
  50509. {
  50510. name: "Smallest",
  50511. height: math.unit(18 + 3/12, "feet")
  50512. },
  50513. {
  50514. name: "Modest",
  50515. height: math.unit(56 + 8/12, "feet"),
  50516. default: true
  50517. },
  50518. {
  50519. name: "Largest",
  50520. height: math.unit(3590, "feet")
  50521. },
  50522. ]
  50523. ))
  50524. characterMakers.push(() => makeCharacter(
  50525. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50526. {
  50527. front: {
  50528. height: math.unit(5 + 9/12, "feet"),
  50529. weight: math.unit(150, "lb"),
  50530. name: "Front",
  50531. image: {
  50532. source: "./media/characters/ven/front.svg",
  50533. extra: 1372/1320,
  50534. bottom: 73/1445
  50535. }
  50536. },
  50537. side: {
  50538. height: math.unit(5 + 9/12, "feet"),
  50539. weight: math.unit(1150, "lb"),
  50540. name: "Side",
  50541. image: {
  50542. source: "./media/characters/ven/side.svg",
  50543. extra: 1119/1070,
  50544. bottom: 42/1161
  50545. },
  50546. default: true
  50547. },
  50548. },
  50549. [
  50550. {
  50551. name: "Normal",
  50552. height: math.unit(5 + 9/12, "feet"),
  50553. default: true
  50554. },
  50555. ]
  50556. ))
  50557. characterMakers.push(() => makeCharacter(
  50558. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50559. {
  50560. front: {
  50561. height: math.unit(12, "feet"),
  50562. weight: math.unit(1000, "kg"),
  50563. name: "Front",
  50564. image: {
  50565. source: "./media/characters/maple/front.svg",
  50566. extra: 1193/1081,
  50567. bottom: 22/1215
  50568. }
  50569. },
  50570. },
  50571. [
  50572. {
  50573. name: "Compressed",
  50574. height: math.unit(7, "feet")
  50575. },
  50576. {
  50577. name: "Normal",
  50578. height: math.unit(12, "feet"),
  50579. default: true
  50580. },
  50581. ]
  50582. ))
  50583. characterMakers.push(() => makeCharacter(
  50584. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50585. {
  50586. front: {
  50587. height: math.unit(9, "feet"),
  50588. weight: math.unit(1500, "lb"),
  50589. name: "Front",
  50590. image: {
  50591. source: "./media/characters/nora/front.svg",
  50592. extra: 1348/1286,
  50593. bottom: 218/1566
  50594. }
  50595. },
  50596. erect: {
  50597. height: math.unit(9, "feet"),
  50598. weight: math.unit(11500, "lb"),
  50599. name: "Erect",
  50600. image: {
  50601. source: "./media/characters/nora/erect.svg",
  50602. extra: 1488/1433,
  50603. bottom: 133/1621
  50604. }
  50605. },
  50606. },
  50607. [
  50608. {
  50609. name: "Normal",
  50610. height: math.unit(9, "feet"),
  50611. default: true
  50612. },
  50613. ]
  50614. ))
  50615. characterMakers.push(() => makeCharacter(
  50616. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50617. {
  50618. front: {
  50619. height: math.unit(25, "feet"),
  50620. weight: math.unit(27500, "lb"),
  50621. name: "Front",
  50622. image: {
  50623. source: "./media/characters/north-caudin/front.svg",
  50624. extra: 1184/1082,
  50625. bottom: 23/1207
  50626. }
  50627. },
  50628. },
  50629. [
  50630. {
  50631. name: "Compressed",
  50632. height: math.unit(10, "feet")
  50633. },
  50634. {
  50635. name: "Normal",
  50636. height: math.unit(25, "feet"),
  50637. default: true
  50638. },
  50639. ]
  50640. ))
  50641. characterMakers.push(() => makeCharacter(
  50642. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50643. {
  50644. front: {
  50645. height: math.unit(9, "feet"),
  50646. weight: math.unit(1250, "lb"),
  50647. name: "Front",
  50648. image: {
  50649. source: "./media/characters/merrian/front.svg",
  50650. extra: 2393/2304,
  50651. bottom: 40/2433
  50652. }
  50653. },
  50654. },
  50655. [
  50656. {
  50657. name: "Normal",
  50658. height: math.unit(9, "feet"),
  50659. default: true
  50660. },
  50661. ]
  50662. ))
  50663. characterMakers.push(() => makeCharacter(
  50664. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50665. {
  50666. front: {
  50667. height: math.unit(9, "feet"),
  50668. weight: math.unit(1000, "lb"),
  50669. name: "Front",
  50670. image: {
  50671. source: "./media/characters/hazel/front.svg",
  50672. extra: 2351/2298,
  50673. bottom: 38/2389
  50674. }
  50675. },
  50676. },
  50677. [
  50678. {
  50679. name: "Normal",
  50680. height: math.unit(9, "feet"),
  50681. default: true
  50682. },
  50683. ]
  50684. ))
  50685. characterMakers.push(() => makeCharacter(
  50686. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50687. {
  50688. front: {
  50689. height: math.unit(13, "feet"),
  50690. weight: math.unit(3200, "lb"),
  50691. name: "Front",
  50692. image: {
  50693. source: "./media/characters/emma/front.svg",
  50694. extra: 2263/2029,
  50695. bottom: 68/2331
  50696. }
  50697. },
  50698. },
  50699. [
  50700. {
  50701. name: "Normal",
  50702. height: math.unit(13, "feet"),
  50703. default: true
  50704. },
  50705. ]
  50706. ))
  50707. characterMakers.push(() => makeCharacter(
  50708. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50709. {
  50710. front: {
  50711. height: math.unit(11 + 9/12, "feet"),
  50712. weight: math.unit(2500, "lb"),
  50713. name: "Front",
  50714. image: {
  50715. source: "./media/characters/ilumina/front.svg",
  50716. extra: 2248/2209,
  50717. bottom: 164/2412
  50718. }
  50719. },
  50720. },
  50721. [
  50722. {
  50723. name: "Normal",
  50724. height: math.unit(11 + 9/12, "feet"),
  50725. default: true
  50726. },
  50727. ]
  50728. ))
  50729. characterMakers.push(() => makeCharacter(
  50730. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50731. {
  50732. front: {
  50733. height: math.unit(8 + 10/12, "feet"),
  50734. weight: math.unit(1350, "lb"),
  50735. name: "Front",
  50736. image: {
  50737. source: "./media/characters/moonshine/front.svg",
  50738. extra: 2395/2288,
  50739. bottom: 40/2435
  50740. }
  50741. },
  50742. },
  50743. [
  50744. {
  50745. name: "Normal",
  50746. height: math.unit(8 + 10/12, "feet"),
  50747. default: true
  50748. },
  50749. ]
  50750. ))
  50751. characterMakers.push(() => makeCharacter(
  50752. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50753. {
  50754. front: {
  50755. height: math.unit(14, "feet"),
  50756. weight: math.unit(3400, "lb"),
  50757. name: "Front",
  50758. image: {
  50759. source: "./media/characters/aletia/front.svg",
  50760. extra: 1185/1052,
  50761. bottom: 21/1206
  50762. }
  50763. },
  50764. },
  50765. [
  50766. {
  50767. name: "Compressed",
  50768. height: math.unit(8, "feet")
  50769. },
  50770. {
  50771. name: "Normal",
  50772. height: math.unit(14, "feet"),
  50773. default: true
  50774. },
  50775. ]
  50776. ))
  50777. characterMakers.push(() => makeCharacter(
  50778. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50779. {
  50780. front: {
  50781. height: math.unit(17, "feet"),
  50782. weight: math.unit(6500, "lb"),
  50783. name: "Front",
  50784. image: {
  50785. source: "./media/characters/deidra/front.svg",
  50786. extra: 1201/1081,
  50787. bottom: 16/1217
  50788. }
  50789. },
  50790. },
  50791. [
  50792. {
  50793. name: "Compressed",
  50794. height: math.unit(9 + 6/12, "feet")
  50795. },
  50796. {
  50797. name: "Normal",
  50798. height: math.unit(17, "feet"),
  50799. default: true
  50800. },
  50801. ]
  50802. ))
  50803. characterMakers.push(() => makeCharacter(
  50804. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50805. {
  50806. front: {
  50807. height: math.unit(7 + 4/12, "feet"),
  50808. weight: math.unit(280, "lb"),
  50809. name: "Front",
  50810. image: {
  50811. source: "./media/characters/freki-yrmori/front.svg",
  50812. extra: 1286/1182,
  50813. bottom: 29/1315
  50814. }
  50815. },
  50816. maw: {
  50817. height: math.unit(0.9, "feet"),
  50818. name: "Maw",
  50819. image: {
  50820. source: "./media/characters/freki-yrmori/maw.svg"
  50821. }
  50822. },
  50823. },
  50824. [
  50825. {
  50826. name: "Normal",
  50827. height: math.unit(7 + 4/12, "feet"),
  50828. default: true
  50829. },
  50830. {
  50831. name: "Macro",
  50832. height: math.unit(38.5, "meters")
  50833. },
  50834. ]
  50835. ))
  50836. characterMakers.push(() => makeCharacter(
  50837. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50838. {
  50839. side: {
  50840. height: math.unit(47.2, "meters"),
  50841. weight: math.unit(10000, "tons"),
  50842. name: "Side",
  50843. image: {
  50844. source: "./media/characters/aetherios/side.svg",
  50845. extra: 2363/642,
  50846. bottom: 221/2584
  50847. }
  50848. },
  50849. top: {
  50850. height: math.unit(240, "meters"),
  50851. weight: math.unit(10000, "tons"),
  50852. name: "Top",
  50853. image: {
  50854. source: "./media/characters/aetherios/top.svg"
  50855. }
  50856. },
  50857. bottom: {
  50858. height: math.unit(240, "meters"),
  50859. weight: math.unit(10000, "tons"),
  50860. name: "Bottom",
  50861. image: {
  50862. source: "./media/characters/aetherios/bottom.svg"
  50863. }
  50864. },
  50865. head: {
  50866. height: math.unit(38.6, "meters"),
  50867. name: "Head",
  50868. image: {
  50869. source: "./media/characters/aetherios/head.svg",
  50870. extra: 1335/1112,
  50871. bottom: 0/1335
  50872. }
  50873. },
  50874. front: {
  50875. height: math.unit(29, "meters"),
  50876. name: "Front",
  50877. image: {
  50878. source: "./media/characters/aetherios/front.svg",
  50879. extra: 1266/953,
  50880. bottom: 158/1424
  50881. }
  50882. },
  50883. maw: {
  50884. height: math.unit(16.37, "meters"),
  50885. name: "Maw",
  50886. image: {
  50887. source: "./media/characters/aetherios/maw.svg",
  50888. extra: 748/637,
  50889. bottom: 0/748
  50890. },
  50891. extraAttributes: {
  50892. preyCapacity: {
  50893. name: "Capacity",
  50894. power: 3,
  50895. type: "volume",
  50896. base: math.unit(1000, "people")
  50897. },
  50898. tongueSize: {
  50899. name: "Tongue Size",
  50900. power: 2,
  50901. type: "area",
  50902. base: math.unit(21, "m^2")
  50903. }
  50904. }
  50905. },
  50906. forepaw: {
  50907. height: math.unit(18, "meters"),
  50908. name: "Forepaw",
  50909. image: {
  50910. source: "./media/characters/aetherios/forepaw.svg"
  50911. }
  50912. },
  50913. hindpaw: {
  50914. height: math.unit(23, "meters"),
  50915. name: "Hindpaw",
  50916. image: {
  50917. source: "./media/characters/aetherios/hindpaw.svg"
  50918. }
  50919. },
  50920. genitals: {
  50921. height: math.unit(42, "meters"),
  50922. name: "Genitals",
  50923. image: {
  50924. source: "./media/characters/aetherios/genitals.svg"
  50925. }
  50926. },
  50927. },
  50928. [
  50929. {
  50930. name: "Normal",
  50931. height: math.unit(47.2, "meters"),
  50932. default: true
  50933. },
  50934. {
  50935. name: "Macro",
  50936. height: math.unit(160, "meters")
  50937. },
  50938. {
  50939. name: "Mega",
  50940. height: math.unit(1.87, "km")
  50941. },
  50942. {
  50943. name: "Giga",
  50944. height: math.unit(40000, "km")
  50945. },
  50946. {
  50947. name: "Stellar",
  50948. height: math.unit(158000000, "km")
  50949. },
  50950. {
  50951. name: "Cosmic",
  50952. height: math.unit(9.46e12, "km")
  50953. },
  50954. ]
  50955. ))
  50956. characterMakers.push(() => makeCharacter(
  50957. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50958. {
  50959. front: {
  50960. height: math.unit(5 + 4/12, "feet"),
  50961. weight: math.unit(80, "lb"),
  50962. name: "Front",
  50963. image: {
  50964. source: "./media/characters/mizu-gieeg/front.svg",
  50965. extra: 850/709,
  50966. bottom: 52/902
  50967. }
  50968. },
  50969. back: {
  50970. height: math.unit(5 + 4/12, "feet"),
  50971. weight: math.unit(80, "lb"),
  50972. name: "Back",
  50973. image: {
  50974. source: "./media/characters/mizu-gieeg/back.svg",
  50975. extra: 882/745,
  50976. bottom: 25/907
  50977. }
  50978. },
  50979. },
  50980. [
  50981. {
  50982. name: "Normal",
  50983. height: math.unit(5 + 4/12, "feet"),
  50984. default: true
  50985. },
  50986. ]
  50987. ))
  50988. characterMakers.push(() => makeCharacter(
  50989. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50990. {
  50991. front: {
  50992. height: math.unit(6, "feet"),
  50993. name: "Front",
  50994. image: {
  50995. source: "./media/characters/roselle-st-papier/front.svg",
  50996. extra: 1430/1280,
  50997. bottom: 37/1467
  50998. }
  50999. },
  51000. back: {
  51001. height: math.unit(6, "feet"),
  51002. name: "Back",
  51003. image: {
  51004. source: "./media/characters/roselle-st-papier/back.svg",
  51005. extra: 1491/1296,
  51006. bottom: 23/1514
  51007. }
  51008. },
  51009. ear: {
  51010. height: math.unit(1.26, "feet"),
  51011. name: "Ear",
  51012. image: {
  51013. source: "./media/characters/roselle-st-papier/ear.svg"
  51014. }
  51015. },
  51016. },
  51017. [
  51018. {
  51019. name: "Normal",
  51020. height: math.unit(150, "feet"),
  51021. default: true
  51022. },
  51023. ]
  51024. ))
  51025. characterMakers.push(() => makeCharacter(
  51026. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51027. {
  51028. front: {
  51029. height: math.unit(1, "inches"),
  51030. name: "Front",
  51031. image: {
  51032. source: "./media/characters/valargent/front.svg",
  51033. extra: 1825/1694,
  51034. bottom: 62/1887
  51035. }
  51036. },
  51037. back: {
  51038. height: math.unit(1, "inches"),
  51039. name: "Back",
  51040. image: {
  51041. source: "./media/characters/valargent/back.svg",
  51042. extra: 1775/1682,
  51043. bottom: 88/1863
  51044. }
  51045. },
  51046. },
  51047. [
  51048. {
  51049. name: "Micro",
  51050. height: math.unit(1, "inch"),
  51051. default: true
  51052. },
  51053. ]
  51054. ))
  51055. characterMakers.push(() => makeCharacter(
  51056. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51057. {
  51058. front: {
  51059. height: math.unit(3.4, "meters"),
  51060. name: "Front",
  51061. image: {
  51062. source: "./media/characters/zarina/front.svg",
  51063. extra: 1733/1425,
  51064. bottom: 93/1826
  51065. }
  51066. },
  51067. squatting: {
  51068. height: math.unit(2.14, "meters"),
  51069. name: "Squatting",
  51070. image: {
  51071. source: "./media/characters/zarina/squatting.svg",
  51072. extra: 1073/788,
  51073. bottom: 63/1136
  51074. }
  51075. },
  51076. back: {
  51077. height: math.unit(2.14, "meters"),
  51078. name: "Back",
  51079. image: {
  51080. source: "./media/characters/zarina/back.svg",
  51081. extra: 1128/885,
  51082. bottom: 0/1128
  51083. }
  51084. },
  51085. },
  51086. [
  51087. {
  51088. name: "Normal",
  51089. height: math.unit(3.4, "meters"),
  51090. default: true
  51091. },
  51092. {
  51093. name: "Big",
  51094. height: math.unit(5, "meters")
  51095. },
  51096. {
  51097. name: "Macro",
  51098. height: math.unit(110, "meters")
  51099. },
  51100. ]
  51101. ))
  51102. characterMakers.push(() => makeCharacter(
  51103. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51104. {
  51105. front: {
  51106. height: math.unit(7, "feet"),
  51107. name: "Front",
  51108. image: {
  51109. source: "./media/characters/ventus-astro-fox/front.svg",
  51110. extra: 1792/1623,
  51111. bottom: 28/1820
  51112. }
  51113. },
  51114. back: {
  51115. height: math.unit(7, "feet"),
  51116. name: "Back",
  51117. image: {
  51118. source: "./media/characters/ventus-astro-fox/back.svg",
  51119. extra: 1789/1620,
  51120. bottom: 31/1820
  51121. }
  51122. },
  51123. outfit: {
  51124. height: math.unit(7, "feet"),
  51125. name: "Outfit",
  51126. image: {
  51127. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51128. extra: 1054/925,
  51129. bottom: 15/1069
  51130. }
  51131. },
  51132. head: {
  51133. height: math.unit(1.12, "feet"),
  51134. name: "Head",
  51135. image: {
  51136. source: "./media/characters/ventus-astro-fox/head.svg",
  51137. extra: 866/504,
  51138. bottom: 0/866
  51139. }
  51140. },
  51141. hand: {
  51142. height: math.unit(1, "feet"),
  51143. name: "Hand",
  51144. image: {
  51145. source: "./media/characters/ventus-astro-fox/hand.svg"
  51146. }
  51147. },
  51148. paw: {
  51149. height: math.unit(1.5, "feet"),
  51150. name: "Paw",
  51151. image: {
  51152. source: "./media/characters/ventus-astro-fox/paw.svg"
  51153. }
  51154. },
  51155. },
  51156. [
  51157. {
  51158. name: "Normal",
  51159. height: math.unit(7, "feet"),
  51160. default: true
  51161. },
  51162. {
  51163. name: "Macro",
  51164. height: math.unit(200, "feet")
  51165. },
  51166. {
  51167. name: "Cosmic",
  51168. height: math.unit(3, "universes")
  51169. },
  51170. ]
  51171. ))
  51172. characterMakers.push(() => makeCharacter(
  51173. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51174. {
  51175. front: {
  51176. height: math.unit(3, "meters"),
  51177. weight: math.unit(7000, "lb"),
  51178. name: "Front",
  51179. image: {
  51180. source: "./media/characters/core-t/front.svg",
  51181. extra: 5729/4941,
  51182. bottom: 1129/6858
  51183. }
  51184. },
  51185. },
  51186. [
  51187. {
  51188. name: "Big",
  51189. height: math.unit(3, "meters"),
  51190. default: true
  51191. },
  51192. ]
  51193. ))
  51194. characterMakers.push(() => makeCharacter(
  51195. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51196. {
  51197. normal: {
  51198. height: math.unit(6 + 6/12, "feet"),
  51199. weight: math.unit(275, "lb"),
  51200. name: "Front",
  51201. image: {
  51202. source: "./media/characters/cadbunny/normal.svg",
  51203. extra: 1129/947,
  51204. bottom: 93/1222
  51205. },
  51206. default: true,
  51207. form: "normal"
  51208. },
  51209. gigantamax: {
  51210. height: math.unit(26, "feet"),
  51211. weight: math.unit(16000, "lb"),
  51212. name: "Front",
  51213. image: {
  51214. source: "./media/characters/cadbunny/gigantamax.svg",
  51215. extra: 1133/944,
  51216. bottom: 90/1223
  51217. },
  51218. default: true,
  51219. form: "gigantamax"
  51220. },
  51221. },
  51222. [
  51223. {
  51224. name: "Normal",
  51225. height: math.unit(6 + 6/12, "feet"),
  51226. default: true,
  51227. form: "normal"
  51228. },
  51229. {
  51230. name: "Small",
  51231. height: math.unit(26, "feet"),
  51232. default: true,
  51233. form: "gigantamax"
  51234. },
  51235. {
  51236. name: "Large",
  51237. height: math.unit(78, "feet"),
  51238. form: "gigantamax"
  51239. },
  51240. ],
  51241. {
  51242. "normal": {
  51243. name: "Normal",
  51244. default: true
  51245. },
  51246. "gigantamax": {
  51247. name: "Gigantamax"
  51248. }
  51249. }
  51250. ))
  51251. characterMakers.push(() => makeCharacter(
  51252. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51253. {
  51254. anthroFront: {
  51255. height: math.unit(8, "feet"),
  51256. weight: math.unit(300, "lb"),
  51257. name: "Front",
  51258. image: {
  51259. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51260. extra: 1272/1176,
  51261. bottom: 53/1325
  51262. },
  51263. form: "anthro",
  51264. default: true
  51265. },
  51266. feralSide: {
  51267. height: math.unit(4, "feet"),
  51268. weight: math.unit(250, "lb"),
  51269. name: "Side",
  51270. image: {
  51271. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51272. extra: 731/621,
  51273. bottom: 0/731
  51274. },
  51275. form: "feral",
  51276. default: true
  51277. },
  51278. },
  51279. [
  51280. {
  51281. name: "Regular",
  51282. height: math.unit(8, "feet"),
  51283. form: "anthro"
  51284. },
  51285. {
  51286. name: "Macro",
  51287. height: math.unit(250, "feet"),
  51288. form: "anthro",
  51289. default: true
  51290. },
  51291. {
  51292. name: "Regular",
  51293. height: math.unit(4, "feet"),
  51294. form: "feral"
  51295. },
  51296. {
  51297. name: "Macro",
  51298. height: math.unit(125, "feet"),
  51299. form: "feral",
  51300. default: true
  51301. },
  51302. ],
  51303. {
  51304. "anthro": {
  51305. name: "Anthro",
  51306. default: true
  51307. },
  51308. "feral": {
  51309. name: "Feral",
  51310. },
  51311. }
  51312. ))
  51313. characterMakers.push(() => makeCharacter(
  51314. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51315. {
  51316. front: {
  51317. height: math.unit(11 + 10/12, "feet"),
  51318. weight: math.unit(1587, "kg"),
  51319. name: "Front",
  51320. image: {
  51321. source: "./media/characters/maple-javira-dragon/front.svg",
  51322. extra: 1136/744,
  51323. bottom: 73/1209
  51324. }
  51325. },
  51326. side: {
  51327. height: math.unit(11 + 10/12, "feet"),
  51328. weight: math.unit(1587, "kg"),
  51329. name: "Side",
  51330. image: {
  51331. source: "./media/characters/maple-javira-dragon/side.svg",
  51332. extra: 712/505,
  51333. bottom: 17/729
  51334. }
  51335. },
  51336. head: {
  51337. height: math.unit(8.05, "feet"),
  51338. name: "Head",
  51339. image: {
  51340. source: "./media/characters/maple-javira-dragon/head.svg",
  51341. extra: 1420/1344,
  51342. bottom: 0/1420
  51343. }
  51344. },
  51345. },
  51346. [
  51347. {
  51348. name: "Normal",
  51349. height: math.unit(11 + 10/12, "feet"),
  51350. default: true
  51351. },
  51352. ]
  51353. ))
  51354. characterMakers.push(() => makeCharacter(
  51355. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51356. {
  51357. front: {
  51358. height: math.unit(117, "cm"),
  51359. weight: math.unit(50, "kg"),
  51360. name: "Front",
  51361. image: {
  51362. source: "./media/characters/sonia-wyverntail/front.svg",
  51363. extra: 708/592,
  51364. bottom: 25/733
  51365. }
  51366. },
  51367. },
  51368. [
  51369. {
  51370. name: "Normal",
  51371. height: math.unit(117, "cm"),
  51372. default: true
  51373. },
  51374. ]
  51375. ))
  51376. characterMakers.push(() => makeCharacter(
  51377. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51378. {
  51379. front: {
  51380. height: math.unit(6 + 5/12, "feet"),
  51381. name: "Front",
  51382. image: {
  51383. source: "./media/characters/micah/front.svg",
  51384. extra: 1758/1546,
  51385. bottom: 214/1972
  51386. }
  51387. },
  51388. },
  51389. [
  51390. {
  51391. name: "Normal",
  51392. height: math.unit(6 + 5/12, "feet"),
  51393. default: true
  51394. },
  51395. ]
  51396. ))
  51397. characterMakers.push(() => makeCharacter(
  51398. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51399. {
  51400. front: {
  51401. height: math.unit(1.75, "meters"),
  51402. weight: math.unit(100, "kg"),
  51403. name: "Front",
  51404. image: {
  51405. source: "./media/characters/zarya/front.svg",
  51406. extra: 741/735,
  51407. bottom: 44/785
  51408. },
  51409. extraAttributes: {
  51410. "tailLength": {
  51411. name: "Tail Length",
  51412. power: 1,
  51413. type: "length",
  51414. base: math.unit(180, "cm")
  51415. },
  51416. "pawLength": {
  51417. name: "Paw Length",
  51418. power: 1,
  51419. type: "length",
  51420. base: math.unit(31, "cm")
  51421. },
  51422. }
  51423. },
  51424. side: {
  51425. height: math.unit(1.75, "meters"),
  51426. weight: math.unit(100, "kg"),
  51427. name: "Side",
  51428. image: {
  51429. source: "./media/characters/zarya/side.svg",
  51430. extra: 776/770,
  51431. bottom: 17/793
  51432. },
  51433. extraAttributes: {
  51434. "tailLength": {
  51435. name: "Tail Length",
  51436. power: 1,
  51437. type: "length",
  51438. base: math.unit(180, "cm")
  51439. },
  51440. "pawLength": {
  51441. name: "Paw Length",
  51442. power: 1,
  51443. type: "length",
  51444. base: math.unit(31, "cm")
  51445. },
  51446. }
  51447. },
  51448. back: {
  51449. height: math.unit(1.75, "meters"),
  51450. weight: math.unit(100, "kg"),
  51451. name: "Back",
  51452. image: {
  51453. source: "./media/characters/zarya/back.svg",
  51454. extra: 741/735,
  51455. bottom: 44/785
  51456. },
  51457. extraAttributes: {
  51458. "tailLength": {
  51459. name: "Tail Length",
  51460. power: 1,
  51461. type: "length",
  51462. base: math.unit(180, "cm")
  51463. },
  51464. "pawLength": {
  51465. name: "Paw Length",
  51466. power: 1,
  51467. type: "length",
  51468. base: math.unit(31, "cm")
  51469. },
  51470. }
  51471. },
  51472. frontNoTail: {
  51473. height: math.unit(1.75, "meters"),
  51474. weight: math.unit(100, "kg"),
  51475. name: "Front (No Tail)",
  51476. image: {
  51477. source: "./media/characters/zarya/front-no-tail.svg",
  51478. extra: 741/735,
  51479. bottom: 44/785
  51480. },
  51481. extraAttributes: {
  51482. "tailLength": {
  51483. name: "Tail Length",
  51484. power: 1,
  51485. type: "length",
  51486. base: math.unit(180, "cm")
  51487. },
  51488. "pawLength": {
  51489. name: "Paw Length",
  51490. power: 1,
  51491. type: "length",
  51492. base: math.unit(31, "cm")
  51493. },
  51494. }
  51495. },
  51496. dressed: {
  51497. height: math.unit(1.75, "meters"),
  51498. weight: math.unit(100, "kg"),
  51499. name: "Dressed",
  51500. image: {
  51501. source: "./media/characters/zarya/dressed.svg",
  51502. extra: 683/672,
  51503. bottom: 79/762
  51504. },
  51505. extraAttributes: {
  51506. "tailLength": {
  51507. name: "Tail Length",
  51508. power: 1,
  51509. type: "length",
  51510. base: math.unit(180, "cm")
  51511. },
  51512. "pawLength": {
  51513. name: "Paw Length",
  51514. power: 1,
  51515. type: "length",
  51516. base: math.unit(31, "cm")
  51517. },
  51518. }
  51519. },
  51520. },
  51521. [
  51522. {
  51523. name: "Micro",
  51524. height: math.unit(5, "cm")
  51525. },
  51526. {
  51527. name: "Normal",
  51528. height: math.unit(1.75, "meters"),
  51529. default: true
  51530. },
  51531. {
  51532. name: "Macro",
  51533. height: math.unit(122, "meters")
  51534. },
  51535. ]
  51536. ))
  51537. characterMakers.push(() => makeCharacter(
  51538. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51539. {
  51540. front: {
  51541. height: math.unit(7.5, "feet"),
  51542. name: "Front",
  51543. image: {
  51544. source: "./media/characters/sven-hatisson/front.svg",
  51545. extra: 917/857,
  51546. bottom: 42/959
  51547. }
  51548. },
  51549. back: {
  51550. height: math.unit(7.5, "feet"),
  51551. name: "Back",
  51552. image: {
  51553. source: "./media/characters/sven-hatisson/back.svg",
  51554. extra: 903/856,
  51555. bottom: 15/918
  51556. }
  51557. },
  51558. },
  51559. [
  51560. {
  51561. name: "Base Height",
  51562. height: math.unit(7.5, "feet")
  51563. },
  51564. {
  51565. name: "Usual Height",
  51566. height: math.unit(13.5, "feet"),
  51567. default: true
  51568. },
  51569. {
  51570. name: "Smaller Macro",
  51571. height: math.unit(85, "feet")
  51572. },
  51573. {
  51574. name: "Moderate Macro",
  51575. height: math.unit(320, "feet")
  51576. },
  51577. {
  51578. name: "Large Macro",
  51579. height: math.unit(1000, "feet")
  51580. },
  51581. {
  51582. name: "Largest Size",
  51583. height: math.unit(2, "miles")
  51584. },
  51585. ]
  51586. ))
  51587. characterMakers.push(() => makeCharacter(
  51588. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51589. {
  51590. side: {
  51591. height: math.unit(1.8, "meters"),
  51592. weight: math.unit(275, "kg"),
  51593. name: "Side",
  51594. image: {
  51595. source: "./media/characters/terra/side.svg",
  51596. extra: 1273/1147,
  51597. bottom: 0/1273
  51598. }
  51599. },
  51600. },
  51601. [
  51602. {
  51603. name: "Normal",
  51604. height: math.unit(16.2, "meters"),
  51605. default: true
  51606. },
  51607. ]
  51608. ))
  51609. characterMakers.push(() => makeCharacter(
  51610. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51611. {
  51612. borzoiFront: {
  51613. height: math.unit(6 + 9/12, "feet"),
  51614. name: "Front",
  51615. image: {
  51616. source: "./media/characters/rae/borzoi-front.svg",
  51617. extra: 1161/1098,
  51618. bottom: 31/1192
  51619. },
  51620. form: "borzoi",
  51621. default: true
  51622. },
  51623. werewolfFront: {
  51624. height: math.unit(8 + 7/12, "feet"),
  51625. name: "Front",
  51626. image: {
  51627. source: "./media/characters/rae/werewolf-front.svg",
  51628. extra: 1411/1334,
  51629. bottom: 127/1538
  51630. },
  51631. form: "werewolf",
  51632. default: true
  51633. },
  51634. },
  51635. [
  51636. {
  51637. name: "Normal",
  51638. height: math.unit(6 + 9/12, "feet"),
  51639. default: true,
  51640. form: "borzoi"
  51641. },
  51642. {
  51643. name: "Normal",
  51644. height: math.unit(8 + 7/12, "feet"),
  51645. default: true,
  51646. form: "werewolf"
  51647. },
  51648. ],
  51649. {
  51650. "borzoi": {
  51651. name: "Borzoi",
  51652. default: true
  51653. },
  51654. "werewolf": {
  51655. name: "Werewolf",
  51656. },
  51657. }
  51658. ))
  51659. characterMakers.push(() => makeCharacter(
  51660. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51661. {
  51662. front: {
  51663. height: math.unit(8 + 7/12, "feet"),
  51664. weight: math.unit(482, "lb"),
  51665. name: "Front",
  51666. image: {
  51667. source: "./media/characters/kit/front.svg",
  51668. extra: 1247/1103,
  51669. bottom: 41/1288
  51670. }
  51671. },
  51672. back: {
  51673. height: math.unit(8 + 7/12, "feet"),
  51674. weight: math.unit(482, "lb"),
  51675. name: "Back",
  51676. image: {
  51677. source: "./media/characters/kit/back.svg",
  51678. extra: 1252/1123,
  51679. bottom: 21/1273
  51680. }
  51681. },
  51682. paw: {
  51683. height: math.unit(1.46, "feet"),
  51684. name: "Paw",
  51685. image: {
  51686. source: "./media/characters/kit/paw.svg"
  51687. }
  51688. },
  51689. },
  51690. [
  51691. {
  51692. name: "Normal",
  51693. height: math.unit(2.61, "meters"),
  51694. default: true
  51695. },
  51696. {
  51697. name: "\"Tall\"",
  51698. height: math.unit(8.21, "meters")
  51699. },
  51700. {
  51701. name: "Tall",
  51702. height: math.unit(19.6, "meters")
  51703. },
  51704. {
  51705. name: "Very Tall",
  51706. height: math.unit(57.91, "meters")
  51707. },
  51708. {
  51709. name: "Semi-Macro",
  51710. height: math.unit(138.64, "meters")
  51711. },
  51712. {
  51713. name: "Macro",
  51714. height: math.unit(831.99, "meters")
  51715. },
  51716. {
  51717. name: "EX-Macro",
  51718. height: math.unit(96451121, "meters")
  51719. },
  51720. {
  51721. name: "S1-Omnipotent",
  51722. height: math.unit(4.42074e+9, "meters")
  51723. },
  51724. {
  51725. name: "S2-Omnipotent",
  51726. height: math.unit(9.42074e+17, "meters")
  51727. },
  51728. {
  51729. name: "Omnipotent",
  51730. height: math.unit(4.23112e+24, "meters")
  51731. },
  51732. {
  51733. name: "Hypergod",
  51734. height: math.unit(5.05176e+27, "meters")
  51735. },
  51736. {
  51737. name: "Hypergod-EX",
  51738. height: math.unit(9.45532e+49, "meters")
  51739. },
  51740. {
  51741. name: "Hypergod-SP",
  51742. height: math.unit(9.45532e+195, "meters")
  51743. },
  51744. ]
  51745. ))
  51746. characterMakers.push(() => makeCharacter(
  51747. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51748. {
  51749. side: {
  51750. height: math.unit(0.6, "meters"),
  51751. weight: math.unit(24, "kg"),
  51752. name: "Side",
  51753. image: {
  51754. source: "./media/characters/celeste/side.svg",
  51755. extra: 810/517,
  51756. bottom: 53/863
  51757. }
  51758. },
  51759. },
  51760. [
  51761. {
  51762. name: "Velociraptor",
  51763. height: math.unit(0.6, "meters"),
  51764. default: true
  51765. },
  51766. {
  51767. name: "Utahraptor",
  51768. height: math.unit(1.8, "meters")
  51769. },
  51770. {
  51771. name: "Gallimimus",
  51772. height: math.unit(4.0, "meters")
  51773. },
  51774. {
  51775. name: "Large",
  51776. height: math.unit(20, "meters")
  51777. },
  51778. {
  51779. name: "Planetary",
  51780. height: math.unit(50, "megameters")
  51781. },
  51782. {
  51783. name: "Stellar",
  51784. height: math.unit(1.5, "gigameters")
  51785. },
  51786. {
  51787. name: "Galactic",
  51788. height: math.unit(100, "exameters")
  51789. },
  51790. ]
  51791. ))
  51792. characterMakers.push(() => makeCharacter(
  51793. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51794. {
  51795. front: {
  51796. height: math.unit(6, "feet"),
  51797. weight: math.unit(210, "lb"),
  51798. name: "Front",
  51799. image: {
  51800. source: "./media/characters/glacia/front.svg",
  51801. extra: 958/901,
  51802. bottom: 45/1003
  51803. }
  51804. },
  51805. },
  51806. [
  51807. {
  51808. name: "Macro",
  51809. height: math.unit(1000, "meters"),
  51810. default: true
  51811. },
  51812. ]
  51813. ))
  51814. characterMakers.push(() => makeCharacter(
  51815. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51816. {
  51817. front: {
  51818. height: math.unit(4, "meters"),
  51819. name: "Front",
  51820. image: {
  51821. source: "./media/characters/giri/front.svg",
  51822. extra: 966/894,
  51823. bottom: 21/987
  51824. }
  51825. },
  51826. },
  51827. [
  51828. {
  51829. name: "Normal",
  51830. height: math.unit(4, "meters"),
  51831. default: true
  51832. },
  51833. ]
  51834. ))
  51835. characterMakers.push(() => makeCharacter(
  51836. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51837. {
  51838. back: {
  51839. height: math.unit(4, "feet"),
  51840. weight: math.unit(37, "lb"),
  51841. name: "Back",
  51842. image: {
  51843. source: "./media/characters/tin/back.svg",
  51844. extra: 845/780,
  51845. bottom: 28/873
  51846. }
  51847. },
  51848. },
  51849. [
  51850. {
  51851. name: "Normal",
  51852. height: math.unit(4, "feet"),
  51853. default: true
  51854. },
  51855. ]
  51856. ))
  51857. characterMakers.push(() => makeCharacter(
  51858. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51859. {
  51860. front: {
  51861. height: math.unit(25, "feet"),
  51862. name: "Front",
  51863. image: {
  51864. source: "./media/characters/cadenza-vivace/front.svg",
  51865. extra: 1842/1578,
  51866. bottom: 30/1872
  51867. }
  51868. },
  51869. },
  51870. [
  51871. {
  51872. name: "Macro",
  51873. height: math.unit(25, "feet"),
  51874. default: true
  51875. },
  51876. ]
  51877. ))
  51878. characterMakers.push(() => makeCharacter(
  51879. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51880. {
  51881. front: {
  51882. height: math.unit(10, "feet"),
  51883. weight: math.unit(625, "kg"),
  51884. name: "Front",
  51885. image: {
  51886. source: "./media/characters/zain/front.svg",
  51887. extra: 1682/1498,
  51888. bottom: 223/1905
  51889. }
  51890. },
  51891. back: {
  51892. height: math.unit(10, "feet"),
  51893. weight: math.unit(625, "kg"),
  51894. name: "Back",
  51895. image: {
  51896. source: "./media/characters/zain/back.svg",
  51897. extra: 1814/1657,
  51898. bottom: 152/1966
  51899. }
  51900. },
  51901. head: {
  51902. height: math.unit(10, "feet"),
  51903. weight: math.unit(625, "kg"),
  51904. name: "Head",
  51905. image: {
  51906. source: "./media/characters/zain/head.svg",
  51907. extra: 1059/762,
  51908. bottom: 0/1059
  51909. }
  51910. },
  51911. },
  51912. [
  51913. {
  51914. name: "Normal",
  51915. height: math.unit(10, "feet"),
  51916. default: true
  51917. },
  51918. ]
  51919. ))
  51920. characterMakers.push(() => makeCharacter(
  51921. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51922. {
  51923. front: {
  51924. height: math.unit(6 + 5/12, "feet"),
  51925. weight: math.unit(750, "lb"),
  51926. name: "Front",
  51927. image: {
  51928. source: "./media/characters/ruchex/front.svg",
  51929. extra: 877/820,
  51930. bottom: 17/894
  51931. },
  51932. extraAttributes: {
  51933. "width": {
  51934. name: "Width",
  51935. power: 1,
  51936. type: "length",
  51937. base: math.unit(4.757, "feet")
  51938. },
  51939. }
  51940. },
  51941. },
  51942. [
  51943. {
  51944. name: "Normal",
  51945. height: math.unit(6 + 5/12, "feet"),
  51946. default: true
  51947. },
  51948. ]
  51949. ))
  51950. characterMakers.push(() => makeCharacter(
  51951. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51952. {
  51953. dressedFront: {
  51954. height: math.unit(191, "cm"),
  51955. weight: math.unit(80, "kg"),
  51956. name: "Front",
  51957. image: {
  51958. source: "./media/characters/buster/dressed-front.svg",
  51959. extra: 1022/973,
  51960. bottom: 69/1091
  51961. }
  51962. },
  51963. dressedBack: {
  51964. height: math.unit(191, "cm"),
  51965. weight: math.unit(80, "kg"),
  51966. name: "Back",
  51967. image: {
  51968. source: "./media/characters/buster/dressed-back.svg",
  51969. extra: 1018/970,
  51970. bottom: 55/1073
  51971. }
  51972. },
  51973. nudeFront: {
  51974. height: math.unit(191, "cm"),
  51975. weight: math.unit(80, "kg"),
  51976. name: "Front (Nude)",
  51977. image: {
  51978. source: "./media/characters/buster/nude-front.svg",
  51979. extra: 1022/973,
  51980. bottom: 69/1091
  51981. }
  51982. },
  51983. nudeBack: {
  51984. height: math.unit(191, "cm"),
  51985. weight: math.unit(80, "kg"),
  51986. name: "Back (Nude)",
  51987. image: {
  51988. source: "./media/characters/buster/nude-back.svg",
  51989. extra: 1018/970,
  51990. bottom: 55/1073
  51991. }
  51992. },
  51993. dick: {
  51994. height: math.unit(2.59, "feet"),
  51995. name: "Dick",
  51996. image: {
  51997. source: "./media/characters/buster/dick.svg"
  51998. }
  51999. },
  52000. ass: {
  52001. height: math.unit(1.2, "feet"),
  52002. name: "Ass",
  52003. image: {
  52004. source: "./media/characters/buster/ass.svg"
  52005. }
  52006. },
  52007. },
  52008. [
  52009. {
  52010. name: "Normal",
  52011. height: math.unit(191, "cm"),
  52012. default: true
  52013. },
  52014. ]
  52015. ))
  52016. characterMakers.push(() => makeCharacter(
  52017. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52018. {
  52019. side: {
  52020. height: math.unit(8.1, "feet"),
  52021. weight: math.unit(3500, "lb"),
  52022. name: "Side",
  52023. image: {
  52024. source: "./media/characters/sonya/side.svg",
  52025. extra: 1730/1317,
  52026. bottom: 86/1816
  52027. }
  52028. },
  52029. },
  52030. [
  52031. {
  52032. name: "Normal",
  52033. height: math.unit(8.1, "feet"),
  52034. default: true
  52035. },
  52036. ]
  52037. ))
  52038. characterMakers.push(() => makeCharacter(
  52039. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52040. {
  52041. front: {
  52042. height: math.unit(6, "feet"),
  52043. weight: math.unit(150, "lb"),
  52044. name: "Front",
  52045. image: {
  52046. source: "./media/characters/cadence-andrysiak/front.svg",
  52047. extra: 1164/1121,
  52048. bottom: 60/1224
  52049. }
  52050. },
  52051. back: {
  52052. height: math.unit(6, "feet"),
  52053. weight: math.unit(150, "lb"),
  52054. name: "Back",
  52055. image: {
  52056. source: "./media/characters/cadence-andrysiak/back.svg",
  52057. extra: 1200/1165,
  52058. bottom: 9/1209
  52059. }
  52060. },
  52061. dressed: {
  52062. height: math.unit(6, "feet"),
  52063. weight: math.unit(150, "lb"),
  52064. name: "Dressed",
  52065. image: {
  52066. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52067. extra: 1164/1121,
  52068. bottom: 60/1224
  52069. }
  52070. },
  52071. },
  52072. [
  52073. {
  52074. name: "Micro",
  52075. height: math.unit(1, "mm")
  52076. },
  52077. {
  52078. name: "Normal",
  52079. height: math.unit(6, "feet"),
  52080. default: true
  52081. },
  52082. ]
  52083. ))
  52084. characterMakers.push(() => makeCharacter(
  52085. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52086. {
  52087. front: {
  52088. height: math.unit(60, "inches"),
  52089. weight: math.unit(16, "lb"),
  52090. preyCapacity: math.unit(80, "liters"),
  52091. name: "Front",
  52092. image: {
  52093. source: "./media/characters/penny-lynx/front.svg",
  52094. extra: 1959/1769,
  52095. bottom: 49/2008
  52096. }
  52097. },
  52098. },
  52099. [
  52100. {
  52101. name: "Nokia",
  52102. height: math.unit(2, "inches")
  52103. },
  52104. {
  52105. name: "Desktop",
  52106. height: math.unit(24, "inches")
  52107. },
  52108. {
  52109. name: "TV",
  52110. height: math.unit(60, "inches")
  52111. },
  52112. {
  52113. name: "Jumbotron",
  52114. height: math.unit(12, "feet")
  52115. },
  52116. {
  52117. name: "Billboard",
  52118. height: math.unit(48, "feet"),
  52119. default: true
  52120. },
  52121. {
  52122. name: "IMAX",
  52123. height: math.unit(96, "feet")
  52124. },
  52125. {
  52126. name: "SINGULARITY",
  52127. height: math.unit(864938, "miles")
  52128. },
  52129. ]
  52130. ))
  52131. characterMakers.push(() => makeCharacter(
  52132. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52133. {
  52134. front: {
  52135. height: math.unit(5 + 4/12, "feet"),
  52136. weight: math.unit(230, "lb"),
  52137. name: "Front",
  52138. image: {
  52139. source: "./media/characters/sukebe/front.svg",
  52140. extra: 2130/2038,
  52141. bottom: 90/2220
  52142. }
  52143. },
  52144. back: {
  52145. height: math.unit(3.48, "feet"),
  52146. weight: math.unit(230, "lb"),
  52147. name: "Back",
  52148. image: {
  52149. source: "./media/characters/sukebe/back.svg",
  52150. extra: 1670/1604,
  52151. bottom: 0/1670
  52152. }
  52153. },
  52154. },
  52155. [
  52156. {
  52157. name: "Normal",
  52158. height: math.unit(5 + 4/12, "feet"),
  52159. default: true
  52160. },
  52161. ]
  52162. ))
  52163. characterMakers.push(() => makeCharacter(
  52164. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52165. {
  52166. front: {
  52167. height: math.unit(6, "feet"),
  52168. name: "Front",
  52169. image: {
  52170. source: "./media/characters/nylla/front.svg",
  52171. extra: 1868/1699,
  52172. bottom: 97/1965
  52173. }
  52174. },
  52175. back: {
  52176. height: math.unit(6, "feet"),
  52177. name: "Back",
  52178. image: {
  52179. source: "./media/characters/nylla/back.svg",
  52180. extra: 1889/1712,
  52181. bottom: 93/1982
  52182. }
  52183. },
  52184. frontNsfw: {
  52185. height: math.unit(6, "feet"),
  52186. name: "Front (NSFW)",
  52187. image: {
  52188. source: "./media/characters/nylla/front-nsfw.svg",
  52189. extra: 1868/1699,
  52190. bottom: 97/1965
  52191. },
  52192. extraAttributes: {
  52193. "dickLength": {
  52194. name: "Dick Length",
  52195. power: 1,
  52196. type: "length",
  52197. base: math.unit(1.4, "feet")
  52198. },
  52199. "cumVolume": {
  52200. name: "Cum Volume",
  52201. power: 3,
  52202. type: "volume",
  52203. base: math.unit(100, "mL")
  52204. },
  52205. }
  52206. },
  52207. backNsfw: {
  52208. height: math.unit(6, "feet"),
  52209. name: "Back (NSFW)",
  52210. image: {
  52211. source: "./media/characters/nylla/back-nsfw.svg",
  52212. extra: 1889/1712,
  52213. bottom: 93/1982
  52214. }
  52215. },
  52216. maw: {
  52217. height: math.unit(2.10, "feet"),
  52218. name: "Maw",
  52219. image: {
  52220. source: "./media/characters/nylla/maw.svg"
  52221. }
  52222. },
  52223. paws: {
  52224. height: math.unit(2.06, "feet"),
  52225. name: "Paws",
  52226. image: {
  52227. source: "./media/characters/nylla/paws.svg"
  52228. }
  52229. },
  52230. muzzle: {
  52231. height: math.unit(0.61, "feet"),
  52232. name: "Muzzle",
  52233. image: {
  52234. source: "./media/characters/nylla/muzzle.svg"
  52235. }
  52236. },
  52237. sheath: {
  52238. height: math.unit(1.305, "feet"),
  52239. name: "Sheath",
  52240. image: {
  52241. source: "./media/characters/nylla/sheath.svg"
  52242. }
  52243. },
  52244. },
  52245. [
  52246. {
  52247. name: "Micro",
  52248. height: math.unit(7.5, "inches")
  52249. },
  52250. {
  52251. name: "Normal",
  52252. height: math.unit(7, "feet"),
  52253. default: true
  52254. },
  52255. {
  52256. name: "Macro",
  52257. height: math.unit(60, "feet")
  52258. },
  52259. {
  52260. name: "Mega",
  52261. height: math.unit(200, "feet")
  52262. },
  52263. ]
  52264. ))
  52265. characterMakers.push(() => makeCharacter(
  52266. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52267. {
  52268. front: {
  52269. height: math.unit(10, "feet"),
  52270. weight: math.unit(2300, "lb"),
  52271. name: "Front",
  52272. image: {
  52273. source: "./media/characters/hunt3r/front.svg",
  52274. extra: 1909/1742,
  52275. bottom: 46/1955
  52276. }
  52277. },
  52278. },
  52279. [
  52280. {
  52281. name: "Normal",
  52282. height: math.unit(10, "feet"),
  52283. default: true
  52284. },
  52285. ]
  52286. ))
  52287. characterMakers.push(() => makeCharacter(
  52288. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52289. {
  52290. dressed: {
  52291. height: math.unit(11, "feet"),
  52292. weight: math.unit(18500, "lb"),
  52293. preyCapacity: math.unit(9, "people"),
  52294. name: "Dressed",
  52295. image: {
  52296. source: "./media/characters/cylphis/dressed.svg",
  52297. extra: 1028/1003,
  52298. bottom: 75/1103
  52299. },
  52300. },
  52301. undressed: {
  52302. height: math.unit(11, "feet"),
  52303. weight: math.unit(18500, "lb"),
  52304. preyCapacity: math.unit(9, "people"),
  52305. name: "Undressed",
  52306. image: {
  52307. source: "./media/characters/cylphis/undressed.svg",
  52308. extra: 1028/1003,
  52309. bottom: 75/1103
  52310. }
  52311. },
  52312. full: {
  52313. height: math.unit(11, "feet"),
  52314. weight: math.unit(18500 + 150*9, "lb"),
  52315. preyCapacity: math.unit(9, "people"),
  52316. name: "Full",
  52317. image: {
  52318. source: "./media/characters/cylphis/full.svg",
  52319. extra: 1028/1003,
  52320. bottom: 75/1103
  52321. }
  52322. },
  52323. },
  52324. [
  52325. {
  52326. name: "Small",
  52327. height: math.unit(8, "feet")
  52328. },
  52329. {
  52330. name: "Normal",
  52331. height: math.unit(11, "feet"),
  52332. default: true
  52333. },
  52334. ]
  52335. ))
  52336. characterMakers.push(() => makeCharacter(
  52337. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52338. {
  52339. front: {
  52340. height: math.unit(2 + 7/12, "feet"),
  52341. name: "Front",
  52342. image: {
  52343. source: "./media/characters/orishan/front.svg",
  52344. extra: 1058/1023,
  52345. bottom: 23/1081
  52346. }
  52347. },
  52348. back: {
  52349. height: math.unit(2 + 7/12, "feet"),
  52350. name: "Back",
  52351. image: {
  52352. source: "./media/characters/orishan/back.svg",
  52353. extra: 1058/1023,
  52354. bottom: 23/1081
  52355. }
  52356. },
  52357. },
  52358. [
  52359. {
  52360. name: "Micro",
  52361. height: math.unit(2, "cm")
  52362. },
  52363. {
  52364. name: "Normal",
  52365. height: math.unit(2 + 7/12, "feet"),
  52366. default: true
  52367. },
  52368. ]
  52369. ))
  52370. characterMakers.push(() => makeCharacter(
  52371. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52372. {
  52373. front: {
  52374. height: math.unit(3, "meters"),
  52375. weight: math.unit(508, "kg"),
  52376. name: "Front",
  52377. image: {
  52378. source: "./media/characters/seranis/front.svg",
  52379. extra: 1478/1454,
  52380. bottom: 41/1519
  52381. }
  52382. },
  52383. },
  52384. [
  52385. {
  52386. name: "Normal",
  52387. height: math.unit(3, "meters"),
  52388. default: true
  52389. },
  52390. {
  52391. name: "Macro",
  52392. height: math.unit(108, "meters")
  52393. },
  52394. {
  52395. name: "Megamacro",
  52396. height: math.unit(1250, "meters")
  52397. },
  52398. ]
  52399. ))
  52400. characterMakers.push(() => makeCharacter(
  52401. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52402. {
  52403. undressed: {
  52404. height: math.unit(5 + 3/12, "feet"),
  52405. name: "Undressed",
  52406. image: {
  52407. source: "./media/characters/ankou/undressed.svg",
  52408. extra: 1301/1213,
  52409. bottom: 87/1388
  52410. }
  52411. },
  52412. dressed: {
  52413. height: math.unit(5 + 3/12, "feet"),
  52414. name: "Dressed",
  52415. image: {
  52416. source: "./media/characters/ankou/dressed.svg",
  52417. extra: 1301/1213,
  52418. bottom: 87/1388
  52419. }
  52420. },
  52421. head: {
  52422. height: math.unit(1.61, "feet"),
  52423. name: "Head",
  52424. image: {
  52425. source: "./media/characters/ankou/head.svg"
  52426. }
  52427. },
  52428. },
  52429. [
  52430. {
  52431. name: "Normal",
  52432. height: math.unit(5 + 3/12, "feet"),
  52433. default: true
  52434. },
  52435. ]
  52436. ))
  52437. characterMakers.push(() => makeCharacter(
  52438. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52439. {
  52440. side: {
  52441. height: math.unit(6 + 3/12, "feet"),
  52442. weight: math.unit(200, "kg"),
  52443. name: "Side",
  52444. image: {
  52445. source: "./media/characters/juniper-skunktaur/side.svg",
  52446. extra: 1574/1229,
  52447. bottom: 38/1612
  52448. }
  52449. },
  52450. front: {
  52451. height: math.unit(6 + 3/12, "feet"),
  52452. weight: math.unit(200, "kg"),
  52453. name: "Front",
  52454. image: {
  52455. source: "./media/characters/juniper-skunktaur/front.svg",
  52456. extra: 1337/1278,
  52457. bottom: 22/1359
  52458. }
  52459. },
  52460. back: {
  52461. height: math.unit(6 + 3/12, "feet"),
  52462. weight: math.unit(200, "kg"),
  52463. name: "Back",
  52464. image: {
  52465. source: "./media/characters/juniper-skunktaur/back.svg",
  52466. extra: 1618/1273,
  52467. bottom: 13/1631
  52468. }
  52469. },
  52470. top: {
  52471. height: math.unit(2.62, "feet"),
  52472. weight: math.unit(200, "kg"),
  52473. name: "Top",
  52474. image: {
  52475. source: "./media/characters/juniper-skunktaur/top.svg"
  52476. }
  52477. },
  52478. },
  52479. [
  52480. {
  52481. name: "Normal",
  52482. height: math.unit(6 + 3/12, "feet"),
  52483. default: true
  52484. },
  52485. ]
  52486. ))
  52487. characterMakers.push(() => makeCharacter(
  52488. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52489. {
  52490. front: {
  52491. height: math.unit(20.5, "feet"),
  52492. name: "Front",
  52493. image: {
  52494. source: "./media/characters/rei/front.svg",
  52495. extra: 1349/1195,
  52496. bottom: 31/1380
  52497. }
  52498. },
  52499. back: {
  52500. height: math.unit(20.5, "feet"),
  52501. name: "Back",
  52502. image: {
  52503. source: "./media/characters/rei/back.svg",
  52504. extra: 1358/1204,
  52505. bottom: 22/1380
  52506. }
  52507. },
  52508. pawsDigi: {
  52509. height: math.unit(3.45, "feet"),
  52510. name: "Paws (Digi)",
  52511. image: {
  52512. source: "./media/characters/rei/paws-digi.svg"
  52513. }
  52514. },
  52515. pawsPlanti: {
  52516. height: math.unit(3.45, "feet"),
  52517. name: "Paws (Planti)",
  52518. image: {
  52519. source: "./media/characters/rei/paws-planti.svg"
  52520. }
  52521. },
  52522. },
  52523. [
  52524. {
  52525. name: "Normal",
  52526. height: math.unit(20.5, "feet"),
  52527. default: true
  52528. },
  52529. ]
  52530. ))
  52531. characterMakers.push(() => makeCharacter(
  52532. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52533. {
  52534. front: {
  52535. height: math.unit(5 + 11/12, "feet"),
  52536. name: "Front",
  52537. image: {
  52538. source: "./media/characters/carina/front.svg",
  52539. extra: 1720/1449,
  52540. bottom: 14/1734
  52541. }
  52542. },
  52543. back: {
  52544. height: math.unit(5 + 11/12, "feet"),
  52545. name: "Back",
  52546. image: {
  52547. source: "./media/characters/carina/back.svg",
  52548. extra: 1493/1445,
  52549. bottom: 17/1510
  52550. }
  52551. },
  52552. paw: {
  52553. height: math.unit(0.92, "feet"),
  52554. name: "Paw",
  52555. image: {
  52556. source: "./media/characters/carina/paw.svg"
  52557. }
  52558. },
  52559. },
  52560. [
  52561. {
  52562. name: "Normal",
  52563. height: math.unit(5 + 11/12, "feet"),
  52564. default: true
  52565. },
  52566. ]
  52567. ))
  52568. characterMakers.push(() => makeCharacter(
  52569. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52570. {
  52571. normal_front: {
  52572. height: math.unit(4.88, "meters"),
  52573. name: "Front",
  52574. image: {
  52575. source: "./media/characters/maya/normal-front.svg",
  52576. extra: 1222/1145,
  52577. bottom: 57/1279
  52578. },
  52579. form: "normal",
  52580. default: true
  52581. },
  52582. monstrous_front: {
  52583. height: math.unit(10, "meters"),
  52584. name: "Front",
  52585. image: {
  52586. source: "./media/characters/maya/monstrous-front.svg",
  52587. extra: 1523/1109,
  52588. bottom: 113/1636
  52589. },
  52590. form: "monstrous",
  52591. },
  52592. taur_front: {
  52593. height: math.unit(10, "meters"),
  52594. name: "Front",
  52595. image: {
  52596. source: "./media/characters/maya/taur-front.svg",
  52597. extra: 743/506,
  52598. bottom: 101/844
  52599. },
  52600. form: "taur",
  52601. },
  52602. },
  52603. [
  52604. {
  52605. name: "Normal",
  52606. height: math.unit(4.88, "meters"),
  52607. default: true,
  52608. form: "normal"
  52609. },
  52610. {
  52611. name: "Macro",
  52612. height: math.unit(38.1, "meters"),
  52613. form: "normal"
  52614. },
  52615. {
  52616. name: "Macro+",
  52617. height: math.unit(152.4, "meters"),
  52618. form: "normal"
  52619. },
  52620. {
  52621. name: "Macro++",
  52622. height: math.unit(16.09, "km"),
  52623. form: "normal"
  52624. },
  52625. {
  52626. name: "Mega-macro",
  52627. height: math.unit(700, "megameters"),
  52628. form: "normal"
  52629. },
  52630. {
  52631. name: "Satiated",
  52632. height: math.unit(10, "meters"),
  52633. default: true,
  52634. form: "monstrous"
  52635. },
  52636. {
  52637. name: "Hungry",
  52638. height: math.unit(75, "meters"),
  52639. form: "monstrous"
  52640. },
  52641. {
  52642. name: "Ravenous",
  52643. height: math.unit(150, "meters"),
  52644. form: "monstrous"
  52645. },
  52646. {
  52647. name: "\"Normal\"",
  52648. height: math.unit(10, "meters"),
  52649. form: "taur"
  52650. },
  52651. {
  52652. name: "Macro",
  52653. height: math.unit(50, "meters"),
  52654. form: "taur"
  52655. },
  52656. ],
  52657. {
  52658. "normal": {
  52659. name: "Normal",
  52660. default: true
  52661. },
  52662. "monstrous": {
  52663. name: "Monstrous",
  52664. },
  52665. "taur": {
  52666. name: "Taur",
  52667. },
  52668. }
  52669. ))
  52670. characterMakers.push(() => makeCharacter(
  52671. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52672. {
  52673. front: {
  52674. height: math.unit(6 + 2/12, "feet"),
  52675. weight: math.unit(500, "lb"),
  52676. preyCapacity: math.unit(4, "people"),
  52677. name: "Front",
  52678. image: {
  52679. source: "./media/characters/yepir/front.svg"
  52680. }
  52681. },
  52682. side: {
  52683. height: math.unit(6 + 2/12, "feet"),
  52684. weight: math.unit(500, "lb"),
  52685. preyCapacity: math.unit(4, "people"),
  52686. name: "Side",
  52687. image: {
  52688. source: "./media/characters/yepir/side.svg"
  52689. }
  52690. },
  52691. paw: {
  52692. height: math.unit(1.05, "feet"),
  52693. name: "Paw",
  52694. image: {
  52695. source: "./media/characters/yepir/paw.svg"
  52696. }
  52697. },
  52698. },
  52699. [
  52700. {
  52701. name: "Normal",
  52702. height: math.unit(6 + 2/12, "feet"),
  52703. default: true
  52704. },
  52705. ]
  52706. ))
  52707. characterMakers.push(() => makeCharacter(
  52708. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52709. {
  52710. front: {
  52711. height: math.unit(5 + 4/12, "feet"),
  52712. name: "Front",
  52713. image: {
  52714. source: "./media/characters/russec/front.svg",
  52715. extra: 1926/1626,
  52716. bottom: 72/1998
  52717. }
  52718. },
  52719. back: {
  52720. height: math.unit(5 + 4/12, "feet"),
  52721. name: "Back",
  52722. image: {
  52723. source: "./media/characters/russec/back.svg",
  52724. extra: 1910/1591,
  52725. bottom: 48/1958
  52726. }
  52727. },
  52728. },
  52729. [
  52730. {
  52731. name: "Small",
  52732. height: math.unit(5 + 4/12, "feet")
  52733. },
  52734. {
  52735. name: "Normal",
  52736. height: math.unit(72, "feet"),
  52737. default: true
  52738. },
  52739. ]
  52740. ))
  52741. characterMakers.push(() => makeCharacter(
  52742. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52743. {
  52744. side: {
  52745. height: math.unit(12, "feet"),
  52746. name: "Side",
  52747. image: {
  52748. source: "./media/characters/cianus/side.svg",
  52749. extra: 808/526,
  52750. bottom: 61/869
  52751. }
  52752. },
  52753. },
  52754. [
  52755. {
  52756. name: "Normal",
  52757. height: math.unit(12, "feet"),
  52758. default: true
  52759. },
  52760. ]
  52761. ))
  52762. characterMakers.push(() => makeCharacter(
  52763. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52764. {
  52765. front: {
  52766. height: math.unit(9 + 6/12, "feet"),
  52767. weight: math.unit(300, "lb"),
  52768. name: "Front",
  52769. image: {
  52770. source: "./media/characters/ahab/front.svg",
  52771. extra: 1897/1868,
  52772. bottom: 121/2018
  52773. }
  52774. },
  52775. frontNsfw: {
  52776. height: math.unit(9 + 6/12, "feet"),
  52777. weight: math.unit(300, "lb"),
  52778. name: "Front-nsfw",
  52779. image: {
  52780. source: "./media/characters/ahab/front-nsfw.svg",
  52781. extra: 1897/1868,
  52782. bottom: 121/2018
  52783. }
  52784. },
  52785. },
  52786. [
  52787. {
  52788. name: "Normal",
  52789. height: math.unit(9 + 6/12, "feet")
  52790. },
  52791. {
  52792. name: "Macro",
  52793. height: math.unit(657, "feet"),
  52794. default: true
  52795. },
  52796. ]
  52797. ))
  52798. characterMakers.push(() => makeCharacter(
  52799. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52800. {
  52801. front: {
  52802. height: math.unit(2.69, "meters"),
  52803. weight: math.unit(132, "kg"),
  52804. name: "Front",
  52805. image: {
  52806. source: "./media/characters/aarkus/front.svg",
  52807. extra: 1400/1231,
  52808. bottom: 34/1434
  52809. }
  52810. },
  52811. back: {
  52812. height: math.unit(2.69, "meters"),
  52813. weight: math.unit(132, "kg"),
  52814. name: "Back",
  52815. image: {
  52816. source: "./media/characters/aarkus/back.svg",
  52817. extra: 1381/1218,
  52818. bottom: 30/1411
  52819. }
  52820. },
  52821. frontNsfw: {
  52822. height: math.unit(2.69, "meters"),
  52823. weight: math.unit(132, "kg"),
  52824. name: "Front (NSFW)",
  52825. image: {
  52826. source: "./media/characters/aarkus/front-nsfw.svg",
  52827. extra: 1400/1231,
  52828. bottom: 34/1434
  52829. }
  52830. },
  52831. foot: {
  52832. height: math.unit(1.45, "feet"),
  52833. name: "Foot",
  52834. image: {
  52835. source: "./media/characters/aarkus/foot.svg"
  52836. }
  52837. },
  52838. head: {
  52839. height: math.unit(2.85, "feet"),
  52840. name: "Head",
  52841. image: {
  52842. source: "./media/characters/aarkus/head.svg"
  52843. }
  52844. },
  52845. headAlt: {
  52846. height: math.unit(3.07, "feet"),
  52847. name: "Head (Alt)",
  52848. image: {
  52849. source: "./media/characters/aarkus/head-alt.svg"
  52850. }
  52851. },
  52852. mouth: {
  52853. height: math.unit(1.25, "feet"),
  52854. name: "Mouth",
  52855. image: {
  52856. source: "./media/characters/aarkus/mouth.svg"
  52857. }
  52858. },
  52859. dick: {
  52860. height: math.unit(1.77, "feet"),
  52861. name: "Dick",
  52862. image: {
  52863. source: "./media/characters/aarkus/dick.svg"
  52864. }
  52865. },
  52866. },
  52867. [
  52868. {
  52869. name: "Normal",
  52870. height: math.unit(2.69, "meters"),
  52871. default: true
  52872. },
  52873. {
  52874. name: "Macro",
  52875. height: math.unit(269, "meters")
  52876. },
  52877. {
  52878. name: "Macro+",
  52879. height: math.unit(672.5, "meters")
  52880. },
  52881. {
  52882. name: "Megamacro",
  52883. height: math.unit(2.017, "km")
  52884. },
  52885. ]
  52886. ))
  52887. characterMakers.push(() => makeCharacter(
  52888. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52889. {
  52890. front: {
  52891. height: math.unit(23.47, "cm"),
  52892. weight: math.unit(600, "grams"),
  52893. name: "Front",
  52894. image: {
  52895. source: "./media/characters/diode/front.svg",
  52896. extra: 1778/1396,
  52897. bottom: 95/1873
  52898. }
  52899. },
  52900. side: {
  52901. height: math.unit(23.47, "cm"),
  52902. weight: math.unit(600, "grams"),
  52903. name: "Side",
  52904. image: {
  52905. source: "./media/characters/diode/side.svg",
  52906. extra: 1831/1404,
  52907. bottom: 86/1917
  52908. }
  52909. },
  52910. wings: {
  52911. height: math.unit(0.683, "feet"),
  52912. name: "Wings",
  52913. image: {
  52914. source: "./media/characters/diode/wings.svg"
  52915. }
  52916. },
  52917. },
  52918. [
  52919. {
  52920. name: "Normal",
  52921. height: math.unit(23.47, "cm"),
  52922. default: true
  52923. },
  52924. ]
  52925. ))
  52926. characterMakers.push(() => makeCharacter(
  52927. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52928. {
  52929. front: {
  52930. height: math.unit(6 + 3/12, "feet"),
  52931. weight: math.unit(250, "lb"),
  52932. name: "Front",
  52933. image: {
  52934. source: "./media/characters/reika/front.svg",
  52935. extra: 1120/1078,
  52936. bottom: 86/1206
  52937. }
  52938. },
  52939. },
  52940. [
  52941. {
  52942. name: "Normal",
  52943. height: math.unit(6 + 3/12, "feet"),
  52944. default: true
  52945. },
  52946. ]
  52947. ))
  52948. characterMakers.push(() => makeCharacter(
  52949. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52950. {
  52951. front: {
  52952. height: math.unit(16 + 8/12, "feet"),
  52953. weight: math.unit(9000, "lb"),
  52954. name: "Front",
  52955. image: {
  52956. source: "./media/characters/lokuto-takama/front.svg",
  52957. extra: 1774/1632,
  52958. bottom: 147/1921
  52959. },
  52960. extraAttributes: {
  52961. "bustWidth": {
  52962. name: "Bust Width",
  52963. power: 1,
  52964. type: "length",
  52965. base: math.unit(2.4, "meters")
  52966. },
  52967. "breastWeight": {
  52968. name: "Breast Weight",
  52969. power: 3,
  52970. type: "mass",
  52971. base: math.unit(1000, "kg")
  52972. },
  52973. }
  52974. },
  52975. },
  52976. [
  52977. {
  52978. name: "Normal",
  52979. height: math.unit(16 + 8/12, "feet"),
  52980. default: true
  52981. },
  52982. ]
  52983. ))
  52984. characterMakers.push(() => makeCharacter(
  52985. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52986. {
  52987. front: {
  52988. height: math.unit(10, "cm"),
  52989. weight: math.unit(850, "grams"),
  52990. name: "Front",
  52991. image: {
  52992. source: "./media/characters/owak-bone/front.svg",
  52993. extra: 1965/1801,
  52994. bottom: 31/1996
  52995. }
  52996. },
  52997. },
  52998. [
  52999. {
  53000. name: "Normal",
  53001. height: math.unit(10, "cm"),
  53002. default: true
  53003. },
  53004. ]
  53005. ))
  53006. characterMakers.push(() => makeCharacter(
  53007. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53008. {
  53009. front: {
  53010. height: math.unit(2 + 6/12, "feet"),
  53011. weight: math.unit(9, "lb"),
  53012. name: "Front",
  53013. image: {
  53014. source: "./media/characters/muffin/front.svg",
  53015. extra: 1220/1195,
  53016. bottom: 84/1304
  53017. }
  53018. },
  53019. },
  53020. [
  53021. {
  53022. name: "Normal",
  53023. height: math.unit(2 + 6/12, "feet"),
  53024. default: true
  53025. },
  53026. ]
  53027. ))
  53028. characterMakers.push(() => makeCharacter(
  53029. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53030. {
  53031. front: {
  53032. height: math.unit(7, "feet"),
  53033. name: "Front",
  53034. image: {
  53035. source: "./media/characters/chimera/front.svg",
  53036. extra: 1752/1614,
  53037. bottom: 68/1820
  53038. }
  53039. },
  53040. },
  53041. [
  53042. {
  53043. name: "Normal",
  53044. height: math.unit(7, "feet")
  53045. },
  53046. {
  53047. name: "Gigamacro",
  53048. height: math.unit(2.9, "gigameters"),
  53049. default: true
  53050. },
  53051. {
  53052. name: "Universal",
  53053. height: math.unit(1.56e26, "yottameters")
  53054. },
  53055. ]
  53056. ))
  53057. characterMakers.push(() => makeCharacter(
  53058. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53059. {
  53060. front: {
  53061. height: math.unit(3, "feet"),
  53062. weight: math.unit(20, "lb"),
  53063. name: "Front",
  53064. image: {
  53065. source: "./media/characters/kit-fennec-fox/front.svg",
  53066. extra: 1027/932,
  53067. bottom: 16/1043
  53068. }
  53069. },
  53070. back: {
  53071. height: math.unit(3, "feet"),
  53072. weight: math.unit(20, "lb"),
  53073. name: "Back",
  53074. image: {
  53075. source: "./media/characters/kit-fennec-fox/back.svg",
  53076. extra: 1027/932,
  53077. bottom: 16/1043
  53078. }
  53079. },
  53080. },
  53081. [
  53082. {
  53083. name: "Normal",
  53084. height: math.unit(3, "feet"),
  53085. default: true
  53086. },
  53087. ]
  53088. ))
  53089. characterMakers.push(() => makeCharacter(
  53090. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53091. {
  53092. front: {
  53093. height: math.unit(167, "cm"),
  53094. name: "Front",
  53095. image: {
  53096. source: "./media/characters/blue-otter/front.svg",
  53097. extra: 1951/1920,
  53098. bottom: 31/1982
  53099. }
  53100. },
  53101. },
  53102. [
  53103. {
  53104. name: "Otter-Sized",
  53105. height: math.unit(100, "cm")
  53106. },
  53107. {
  53108. name: "Normal",
  53109. height: math.unit(167, "cm"),
  53110. default: true
  53111. },
  53112. ]
  53113. ))
  53114. characterMakers.push(() => makeCharacter(
  53115. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53116. {
  53117. front: {
  53118. height: math.unit(4 + 4/12, "feet"),
  53119. name: "Front",
  53120. image: {
  53121. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53122. extra: 1072/1067,
  53123. bottom: 117/1189
  53124. }
  53125. },
  53126. back: {
  53127. height: math.unit(4 + 4/12, "feet"),
  53128. name: "Back",
  53129. image: {
  53130. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53131. extra: 1135/1129,
  53132. bottom: 57/1192
  53133. }
  53134. },
  53135. head: {
  53136. height: math.unit(1.77, "feet"),
  53137. name: "Head",
  53138. image: {
  53139. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53140. }
  53141. },
  53142. },
  53143. [
  53144. {
  53145. name: "Normal",
  53146. height: math.unit(4 + 4/12, "feet"),
  53147. default: true
  53148. },
  53149. ]
  53150. ))
  53151. characterMakers.push(() => makeCharacter(
  53152. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53153. {
  53154. front: {
  53155. height: math.unit(2, "inches"),
  53156. name: "Front",
  53157. image: {
  53158. source: "./media/characters/carley-hartford/front.svg",
  53159. extra: 1035/988,
  53160. bottom: 23/1058
  53161. }
  53162. },
  53163. back: {
  53164. height: math.unit(2, "inches"),
  53165. name: "Back",
  53166. image: {
  53167. source: "./media/characters/carley-hartford/back.svg",
  53168. extra: 1035/988,
  53169. bottom: 23/1058
  53170. }
  53171. },
  53172. dressed: {
  53173. height: math.unit(2, "inches"),
  53174. name: "Dressed",
  53175. image: {
  53176. source: "./media/characters/carley-hartford/dressed.svg",
  53177. extra: 651/620,
  53178. bottom: 0/651
  53179. }
  53180. },
  53181. },
  53182. [
  53183. {
  53184. name: "Micro",
  53185. height: math.unit(2, "inches"),
  53186. default: true
  53187. },
  53188. {
  53189. name: "Macro",
  53190. height: math.unit(6 + 3/12, "feet")
  53191. },
  53192. ]
  53193. ))
  53194. characterMakers.push(() => makeCharacter(
  53195. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53196. {
  53197. front: {
  53198. height: math.unit(2 + 3/12, "feet"),
  53199. weight: math.unit(15 + 7/16, "lb"),
  53200. name: "Front",
  53201. image: {
  53202. source: "./media/characters/duke/front.svg",
  53203. extra: 910/815,
  53204. bottom: 30/940
  53205. }
  53206. },
  53207. },
  53208. [
  53209. {
  53210. name: "Normal",
  53211. height: math.unit(2 + 3/12, "feet"),
  53212. default: true
  53213. },
  53214. ]
  53215. ))
  53216. characterMakers.push(() => makeCharacter(
  53217. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53218. {
  53219. front: {
  53220. height: math.unit(5 + 4/12, "feet"),
  53221. weight: math.unit(156, "lb"),
  53222. name: "Front",
  53223. image: {
  53224. source: "./media/characters/dein/front.svg",
  53225. extra: 855/815,
  53226. bottom: 48/903
  53227. }
  53228. },
  53229. side: {
  53230. height: math.unit(5 + 4/12, "feet"),
  53231. weight: math.unit(156, "lb"),
  53232. name: "side",
  53233. image: {
  53234. source: "./media/characters/dein/side.svg",
  53235. extra: 846/803,
  53236. bottom: 25/871
  53237. }
  53238. },
  53239. maw: {
  53240. height: math.unit(1.45, "feet"),
  53241. name: "Maw",
  53242. image: {
  53243. source: "./media/characters/dein/maw.svg"
  53244. }
  53245. },
  53246. },
  53247. [
  53248. {
  53249. name: "Ferret Sized",
  53250. height: math.unit(2 + 5/12, "feet")
  53251. },
  53252. {
  53253. name: "Normal",
  53254. height: math.unit(5 + 4/12, "feet"),
  53255. default: true
  53256. },
  53257. ]
  53258. ))
  53259. characterMakers.push(() => makeCharacter(
  53260. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53261. {
  53262. front: {
  53263. height: math.unit(84 + 8/12, "feet"),
  53264. weight: math.unit(942180, "lb"),
  53265. name: "Front",
  53266. image: {
  53267. source: "./media/characters/daurine-arima/front.svg",
  53268. extra: 1989/1782,
  53269. bottom: 37/2026
  53270. }
  53271. },
  53272. side: {
  53273. height: math.unit(84 + 8/12, "feet"),
  53274. weight: math.unit(942180, "lb"),
  53275. name: "Side",
  53276. image: {
  53277. source: "./media/characters/daurine-arima/side.svg",
  53278. extra: 1997/1790,
  53279. bottom: 21/2018
  53280. }
  53281. },
  53282. back: {
  53283. height: math.unit(84 + 8/12, "feet"),
  53284. weight: math.unit(942180, "lb"),
  53285. name: "Back",
  53286. image: {
  53287. source: "./media/characters/daurine-arima/back.svg",
  53288. extra: 1992/1800,
  53289. bottom: 12/2004
  53290. }
  53291. },
  53292. head: {
  53293. height: math.unit(15.5, "feet"),
  53294. name: "Head",
  53295. image: {
  53296. source: "./media/characters/daurine-arima/head.svg"
  53297. }
  53298. },
  53299. headAlt: {
  53300. height: math.unit(19.19, "feet"),
  53301. name: "Head (Alt)",
  53302. image: {
  53303. source: "./media/characters/daurine-arima/head-alt.svg"
  53304. }
  53305. },
  53306. },
  53307. [
  53308. {
  53309. name: "Minimum height",
  53310. height: math.unit(8 + 10/12, "feet")
  53311. },
  53312. {
  53313. name: "Comfort height",
  53314. height: math.unit(19 + 6 /12, "feet")
  53315. },
  53316. {
  53317. name: "\"Normal\" height",
  53318. height: math.unit(28 + 10/12, "feet")
  53319. },
  53320. {
  53321. name: "Base height",
  53322. height: math.unit(84 + 8/12, "feet"),
  53323. default: true
  53324. },
  53325. {
  53326. name: "Mini-macro",
  53327. height: math.unit(2360, "feet")
  53328. },
  53329. {
  53330. name: "Macro",
  53331. height: math.unit(10, "miles")
  53332. },
  53333. {
  53334. name: "Goddess",
  53335. height: math.unit(9.99e40, "yottameters")
  53336. },
  53337. ]
  53338. ))
  53339. characterMakers.push(() => makeCharacter(
  53340. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53341. {
  53342. front: {
  53343. height: math.unit(2.3, "meters"),
  53344. name: "Front",
  53345. image: {
  53346. source: "./media/characters/cilenomon/front.svg",
  53347. extra: 1963/1778,
  53348. bottom: 54/2017
  53349. }
  53350. },
  53351. },
  53352. [
  53353. {
  53354. name: "Normal",
  53355. height: math.unit(2.3, "meters"),
  53356. default: true
  53357. },
  53358. {
  53359. name: "Big",
  53360. height: math.unit(5, "meters")
  53361. },
  53362. {
  53363. name: "Macro",
  53364. height: math.unit(30, "meters")
  53365. },
  53366. {
  53367. name: "True",
  53368. height: math.unit(1, "universe")
  53369. },
  53370. ]
  53371. ))
  53372. characterMakers.push(() => makeCharacter(
  53373. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53374. {
  53375. front: {
  53376. height: math.unit(5, "feet"),
  53377. name: "Front",
  53378. image: {
  53379. source: "./media/characters/sen-mink/front.svg",
  53380. extra: 1727/1675,
  53381. bottom: 35/1762
  53382. }
  53383. },
  53384. },
  53385. [
  53386. {
  53387. name: "Normal",
  53388. height: math.unit(5, "feet"),
  53389. default: true
  53390. },
  53391. ]
  53392. ))
  53393. characterMakers.push(() => makeCharacter(
  53394. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53395. {
  53396. front: {
  53397. height: math.unit(5.42999, "feet"),
  53398. weight: math.unit(100, "lb"),
  53399. name: "Front",
  53400. image: {
  53401. source: "./media/characters/ophois/front.svg",
  53402. extra: 1429/1286,
  53403. bottom: 60/1489
  53404. }
  53405. },
  53406. },
  53407. [
  53408. {
  53409. name: "Normal",
  53410. height: math.unit(5.42999, "feet"),
  53411. default: true
  53412. },
  53413. ]
  53414. ))
  53415. characterMakers.push(() => makeCharacter(
  53416. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53417. {
  53418. front: {
  53419. height: math.unit(2, "meters"),
  53420. name: "Front",
  53421. image: {
  53422. source: "./media/characters/riley/front.svg",
  53423. extra: 1779/1754,
  53424. bottom: 139/1918
  53425. }
  53426. },
  53427. },
  53428. [
  53429. {
  53430. name: "Normal",
  53431. height: math.unit(2, "meters"),
  53432. default: true
  53433. },
  53434. ]
  53435. ))
  53436. characterMakers.push(() => makeCharacter(
  53437. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53438. {
  53439. front: {
  53440. height: math.unit(6 + 2/12, "feet"),
  53441. weight: math.unit(195, "lb"),
  53442. preyCapacity: math.unit(6, "people"),
  53443. name: "Front",
  53444. image: {
  53445. source: "./media/characters/shuken-flash/front.svg",
  53446. extra: 1905/1739,
  53447. bottom: 65/1970
  53448. }
  53449. },
  53450. back: {
  53451. height: math.unit(6 + 2/12, "feet"),
  53452. weight: math.unit(195, "lb"),
  53453. preyCapacity: math.unit(6, "people"),
  53454. name: "Back",
  53455. image: {
  53456. source: "./media/characters/shuken-flash/back.svg",
  53457. extra: 1912/1751,
  53458. bottom: 13/1925
  53459. }
  53460. },
  53461. },
  53462. [
  53463. {
  53464. name: "Normal",
  53465. height: math.unit(6 + 2/12, "feet"),
  53466. default: true
  53467. },
  53468. ]
  53469. ))
  53470. characterMakers.push(() => makeCharacter(
  53471. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53472. {
  53473. front: {
  53474. height: math.unit(5 + 9/12, "feet"),
  53475. weight: math.unit(150, "lb"),
  53476. name: "Front",
  53477. image: {
  53478. source: "./media/characters/plat/front.svg",
  53479. extra: 1816/1703,
  53480. bottom: 43/1859
  53481. }
  53482. },
  53483. side: {
  53484. height: math.unit(5 + 9/12, "feet"),
  53485. weight: math.unit(300, "lb"),
  53486. name: "Side",
  53487. image: {
  53488. source: "./media/characters/plat/side.svg",
  53489. extra: 1824/1699,
  53490. bottom: 18/1842
  53491. }
  53492. },
  53493. },
  53494. [
  53495. {
  53496. name: "Normal",
  53497. height: math.unit(5 + 9/12, "feet"),
  53498. default: true
  53499. },
  53500. ]
  53501. ))
  53502. characterMakers.push(() => makeCharacter(
  53503. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53504. {
  53505. front: {
  53506. height: math.unit(9, "feet"),
  53507. weight: math.unit(1800, "lb"),
  53508. name: "Front",
  53509. image: {
  53510. source: "./media/characters/elaine/front.svg",
  53511. extra: 1833/1354,
  53512. bottom: 25/1858
  53513. }
  53514. },
  53515. back: {
  53516. height: math.unit(8.8, "feet"),
  53517. weight: math.unit(1800, "lb"),
  53518. name: "Back",
  53519. image: {
  53520. source: "./media/characters/elaine/back.svg",
  53521. extra: 1641/1233,
  53522. bottom: 53/1694
  53523. }
  53524. },
  53525. },
  53526. [
  53527. {
  53528. name: "Normal",
  53529. height: math.unit(9, "feet"),
  53530. default: true
  53531. },
  53532. ]
  53533. ))
  53534. characterMakers.push(() => makeCharacter(
  53535. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53536. {
  53537. front: {
  53538. height: math.unit(17 + 9/12, "feet"),
  53539. weight: math.unit(8000, "lb"),
  53540. name: "Front",
  53541. image: {
  53542. source: "./media/characters/vera-raven/front.svg",
  53543. extra: 1457/1412,
  53544. bottom: 121/1578
  53545. }
  53546. },
  53547. side: {
  53548. height: math.unit(17 + 9/12, "feet"),
  53549. weight: math.unit(8000, "lb"),
  53550. name: "Side",
  53551. image: {
  53552. source: "./media/characters/vera-raven/side.svg",
  53553. extra: 1510/1464,
  53554. bottom: 54/1564
  53555. }
  53556. },
  53557. },
  53558. [
  53559. {
  53560. name: "Normal",
  53561. height: math.unit(17 + 9/12, "feet"),
  53562. default: true
  53563. },
  53564. ]
  53565. ))
  53566. characterMakers.push(() => makeCharacter(
  53567. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53568. {
  53569. dressed: {
  53570. height: math.unit(6 + 9/12, "feet"),
  53571. name: "Dressed",
  53572. image: {
  53573. source: "./media/characters/nakisha/dressed.svg",
  53574. extra: 1909/1757,
  53575. bottom: 48/1957
  53576. }
  53577. },
  53578. nude: {
  53579. height: math.unit(6 + 9/12, "feet"),
  53580. name: "Nude",
  53581. image: {
  53582. source: "./media/characters/nakisha/nude.svg",
  53583. extra: 1917/1765,
  53584. bottom: 34/1951
  53585. }
  53586. },
  53587. },
  53588. [
  53589. {
  53590. name: "Normal",
  53591. height: math.unit(6 + 9/12, "feet"),
  53592. default: true
  53593. },
  53594. ]
  53595. ))
  53596. characterMakers.push(() => makeCharacter(
  53597. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53598. {
  53599. front: {
  53600. height: math.unit(87, "meters"),
  53601. name: "Front",
  53602. image: {
  53603. source: "./media/characters/serafin/front.svg",
  53604. extra: 1919/1776,
  53605. bottom: 65/1984
  53606. }
  53607. },
  53608. },
  53609. [
  53610. {
  53611. name: "Normal",
  53612. height: math.unit(87, "meters"),
  53613. default: true
  53614. },
  53615. ]
  53616. ))
  53617. characterMakers.push(() => makeCharacter(
  53618. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53619. {
  53620. front: {
  53621. height: math.unit(6, "feet"),
  53622. weight: math.unit(200, "lb"),
  53623. name: "Front",
  53624. image: {
  53625. source: "./media/characters/poptart/front.svg",
  53626. extra: 615/583,
  53627. bottom: 23/638
  53628. }
  53629. },
  53630. back: {
  53631. height: math.unit(6, "feet"),
  53632. weight: math.unit(200, "lb"),
  53633. name: "Back",
  53634. image: {
  53635. source: "./media/characters/poptart/back.svg",
  53636. extra: 617/584,
  53637. bottom: 22/639
  53638. }
  53639. },
  53640. frontNsfw: {
  53641. height: math.unit(6, "feet"),
  53642. weight: math.unit(200, "lb"),
  53643. name: "Front (NSFW)",
  53644. image: {
  53645. source: "./media/characters/poptart/front-nsfw.svg",
  53646. extra: 615/583,
  53647. bottom: 23/638
  53648. }
  53649. },
  53650. backNsfw: {
  53651. height: math.unit(6, "feet"),
  53652. weight: math.unit(200, "lb"),
  53653. name: "Back (NSFW)",
  53654. image: {
  53655. source: "./media/characters/poptart/back-nsfw.svg",
  53656. extra: 617/584,
  53657. bottom: 22/639
  53658. }
  53659. },
  53660. hand: {
  53661. height: math.unit(1.14, "feet"),
  53662. name: "Hand",
  53663. image: {
  53664. source: "./media/characters/poptart/hand.svg"
  53665. }
  53666. },
  53667. foot: {
  53668. height: math.unit(1.5, "feet"),
  53669. name: "Foot",
  53670. image: {
  53671. source: "./media/characters/poptart/foot.svg"
  53672. }
  53673. },
  53674. },
  53675. [
  53676. {
  53677. name: "Normal",
  53678. height: math.unit(6, "feet"),
  53679. default: true
  53680. },
  53681. {
  53682. name: "Grande",
  53683. height: math.unit(350, "feet")
  53684. },
  53685. {
  53686. name: "Massif",
  53687. height: math.unit(967, "feet")
  53688. },
  53689. ]
  53690. ))
  53691. characterMakers.push(() => makeCharacter(
  53692. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53693. {
  53694. hyenaSide: {
  53695. height: math.unit(120, "cm"),
  53696. weight: math.unit(120, "lb"),
  53697. name: "Side",
  53698. image: {
  53699. source: "./media/characters/trance/hyena-side.svg",
  53700. extra: 998/904,
  53701. bottom: 76/1074
  53702. }
  53703. },
  53704. },
  53705. [
  53706. {
  53707. name: "Normal",
  53708. height: math.unit(120, "cm"),
  53709. default: true
  53710. },
  53711. {
  53712. name: "Dire",
  53713. height: math.unit(230, "cm")
  53714. },
  53715. {
  53716. name: "Macro",
  53717. height: math.unit(37, "feet")
  53718. },
  53719. ]
  53720. ))
  53721. characterMakers.push(() => makeCharacter(
  53722. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53723. {
  53724. front: {
  53725. height: math.unit(6 + 3/12, "feet"),
  53726. name: "Front",
  53727. image: {
  53728. source: "./media/characters/michael-berretta/front.svg",
  53729. extra: 515/494,
  53730. bottom: 20/535
  53731. }
  53732. },
  53733. back: {
  53734. height: math.unit(6 + 3/12, "feet"),
  53735. name: "Back",
  53736. image: {
  53737. source: "./media/characters/michael-berretta/back.svg",
  53738. extra: 520/497,
  53739. bottom: 21/541
  53740. }
  53741. },
  53742. frontNsfw: {
  53743. height: math.unit(6 + 3/12, "feet"),
  53744. name: "Front (NSFW)",
  53745. image: {
  53746. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53747. extra: 515/494,
  53748. bottom: 20/535
  53749. }
  53750. },
  53751. dick: {
  53752. height: math.unit(1, "feet"),
  53753. name: "Dick",
  53754. image: {
  53755. source: "./media/characters/michael-berretta/dick.svg"
  53756. }
  53757. },
  53758. },
  53759. [
  53760. {
  53761. name: "Normal",
  53762. height: math.unit(6 + 3/12, "feet"),
  53763. default: true
  53764. },
  53765. {
  53766. name: "Big",
  53767. height: math.unit(12, "feet")
  53768. },
  53769. {
  53770. name: "Macro",
  53771. height: math.unit(187.5, "feet")
  53772. },
  53773. ]
  53774. ))
  53775. characterMakers.push(() => makeCharacter(
  53776. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53777. {
  53778. front: {
  53779. height: math.unit(9 + 9/12, "feet"),
  53780. weight: math.unit(1244, "lb"),
  53781. name: "Front",
  53782. image: {
  53783. source: "./media/characters/stella-edgecomb/front.svg",
  53784. extra: 1835/1706,
  53785. bottom: 49/1884
  53786. }
  53787. },
  53788. pen: {
  53789. height: math.unit(0.95, "feet"),
  53790. name: "Pen",
  53791. image: {
  53792. source: "./media/characters/stella-edgecomb/pen.svg"
  53793. }
  53794. },
  53795. },
  53796. [
  53797. {
  53798. name: "Cozy Bear",
  53799. height: math.unit(0.5, "inches")
  53800. },
  53801. {
  53802. name: "Normal",
  53803. height: math.unit(9 + 9/12, "feet"),
  53804. default: true
  53805. },
  53806. {
  53807. name: "Giga Bear",
  53808. height: math.unit(1, "mile")
  53809. },
  53810. {
  53811. name: "Great Bear",
  53812. height: math.unit(53, "miles")
  53813. },
  53814. {
  53815. name: "Goddess Bear",
  53816. height: math.unit(40000, "miles")
  53817. },
  53818. {
  53819. name: "Sun Bear",
  53820. height: math.unit(900000, "miles")
  53821. },
  53822. ]
  53823. ))
  53824. characterMakers.push(() => makeCharacter(
  53825. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53826. {
  53827. anthroFront: {
  53828. height: math.unit(556, "cm"),
  53829. weight: math.unit(2650, "kg"),
  53830. preyCapacity: math.unit(3, "people"),
  53831. name: "Front",
  53832. image: {
  53833. source: "./media/characters/ash´iika/front.svg",
  53834. extra: 710/673,
  53835. bottom: 15/725
  53836. },
  53837. form: "anthro",
  53838. default: true
  53839. },
  53840. anthroSide: {
  53841. height: math.unit(556, "cm"),
  53842. weight: math.unit(2650, "kg"),
  53843. preyCapacity: math.unit(3, "people"),
  53844. name: "Side",
  53845. image: {
  53846. source: "./media/characters/ash´iika/side.svg",
  53847. extra: 696/676,
  53848. bottom: 13/709
  53849. },
  53850. form: "anthro"
  53851. },
  53852. anthroDressed: {
  53853. height: math.unit(556, "cm"),
  53854. weight: math.unit(2650, "kg"),
  53855. preyCapacity: math.unit(3, "people"),
  53856. name: "Dressed",
  53857. image: {
  53858. source: "./media/characters/ash´iika/dressed.svg",
  53859. extra: 710/673,
  53860. bottom: 15/725
  53861. },
  53862. form: "anthro"
  53863. },
  53864. anthroHead: {
  53865. height: math.unit(3.5, "feet"),
  53866. name: "Head",
  53867. image: {
  53868. source: "./media/characters/ash´iika/head.svg",
  53869. extra: 348/291,
  53870. bottom: 45/393
  53871. },
  53872. form: "anthro"
  53873. },
  53874. feralSide: {
  53875. height: math.unit(870, "cm"),
  53876. weight: math.unit(17500, "kg"),
  53877. preyCapacity: math.unit(15, "people"),
  53878. name: "Side",
  53879. image: {
  53880. source: "./media/characters/ash´iika/feral.svg",
  53881. extra: 595/199,
  53882. bottom: 7/602
  53883. },
  53884. form: "feral",
  53885. default: true,
  53886. },
  53887. },
  53888. [
  53889. {
  53890. name: "Normal",
  53891. height: math.unit(556, "cm"),
  53892. default: true,
  53893. form: "anthro"
  53894. },
  53895. {
  53896. name: "Macro",
  53897. height: math.unit(88, "meters"),
  53898. form: "anthro"
  53899. },
  53900. {
  53901. name: "Normal",
  53902. height: math.unit(870, "cm"),
  53903. default: true,
  53904. form: "feral"
  53905. },
  53906. {
  53907. name: "Large",
  53908. height: math.unit(25, "meters"),
  53909. form: "feral"
  53910. },
  53911. ],
  53912. {
  53913. "anthro": {
  53914. name: "Anthro",
  53915. default: true
  53916. },
  53917. "feral": {
  53918. name: "Feral",
  53919. },
  53920. }
  53921. ))
  53922. characterMakers.push(() => makeCharacter(
  53923. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53924. {
  53925. front: {
  53926. height: math.unit(10, "feet"),
  53927. weight: math.unit(800, "lb"),
  53928. name: "Front",
  53929. image: {
  53930. source: "./media/characters/yen/front.svg",
  53931. extra: 443/411,
  53932. bottom: 6/449
  53933. }
  53934. },
  53935. sleeping: {
  53936. height: math.unit(10, "feet"),
  53937. weight: math.unit(800, "lb"),
  53938. name: "Sleeping",
  53939. image: {
  53940. source: "./media/characters/yen/sleeping.svg",
  53941. extra: 470/422,
  53942. bottom: 0/470
  53943. }
  53944. },
  53945. head: {
  53946. height: math.unit(2.2, "feet"),
  53947. name: "Head",
  53948. image: {
  53949. source: "./media/characters/yen/head.svg"
  53950. }
  53951. },
  53952. headAlt: {
  53953. height: math.unit(2.1, "feet"),
  53954. name: "Head (Alt)",
  53955. image: {
  53956. source: "./media/characters/yen/head-alt.svg"
  53957. }
  53958. },
  53959. },
  53960. [
  53961. {
  53962. name: "Normal",
  53963. height: math.unit(10, "feet"),
  53964. default: true
  53965. },
  53966. ]
  53967. ))
  53968. characterMakers.push(() => makeCharacter(
  53969. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53970. {
  53971. front: {
  53972. height: math.unit(12, "feet"),
  53973. name: "Front",
  53974. image: {
  53975. source: "./media/characters/citra/front.svg",
  53976. extra: 1950/1710,
  53977. bottom: 47/1997
  53978. }
  53979. },
  53980. },
  53981. [
  53982. {
  53983. name: "Normal",
  53984. height: math.unit(12, "feet"),
  53985. default: true
  53986. },
  53987. ]
  53988. ))
  53989. characterMakers.push(() => makeCharacter(
  53990. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53991. {
  53992. side: {
  53993. height: math.unit(7 + 10/12, "feet"),
  53994. name: "Side",
  53995. image: {
  53996. source: "./media/characters/sholstim/side.svg",
  53997. extra: 786/682,
  53998. bottom: 40/826
  53999. }
  54000. },
  54001. },
  54002. [
  54003. {
  54004. name: "Normal",
  54005. height: math.unit(7 + 10/12, "feet"),
  54006. default: true
  54007. },
  54008. ]
  54009. ))
  54010. characterMakers.push(() => makeCharacter(
  54011. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54012. {
  54013. front: {
  54014. height: math.unit(3.10, "meters"),
  54015. name: "Front",
  54016. image: {
  54017. source: "./media/characters/aggyn/front.svg",
  54018. extra: 1188/963,
  54019. bottom: 24/1212
  54020. }
  54021. },
  54022. },
  54023. [
  54024. {
  54025. name: "Normal",
  54026. height: math.unit(3.10, "meters"),
  54027. default: true
  54028. },
  54029. ]
  54030. ))
  54031. characterMakers.push(() => makeCharacter(
  54032. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54033. {
  54034. front: {
  54035. height: math.unit(7 + 5/12, "feet"),
  54036. weight: math.unit(687, "lb"),
  54037. name: "Front",
  54038. image: {
  54039. source: "./media/characters/alsandair-hergenroether/front.svg",
  54040. extra: 1251/1186,
  54041. bottom: 75/1326
  54042. }
  54043. },
  54044. back: {
  54045. height: math.unit(7 + 5/12, "feet"),
  54046. weight: math.unit(687, "lb"),
  54047. name: "Back",
  54048. image: {
  54049. source: "./media/characters/alsandair-hergenroether/back.svg",
  54050. extra: 1290/1229,
  54051. bottom: 17/1307
  54052. }
  54053. },
  54054. },
  54055. [
  54056. {
  54057. name: "Max Compression",
  54058. height: math.unit(7 + 5/12, "feet"),
  54059. default: true
  54060. },
  54061. {
  54062. name: "\"Normal\"",
  54063. height: math.unit(2, "universes")
  54064. },
  54065. ]
  54066. ))
  54067. characterMakers.push(() => makeCharacter(
  54068. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54069. {
  54070. front: {
  54071. height: math.unit(4 + 1/12, "feet"),
  54072. weight: math.unit(92, "lb"),
  54073. name: "Front",
  54074. image: {
  54075. source: "./media/characters/ie/front.svg",
  54076. extra: 1585/1352,
  54077. bottom: 91/1676
  54078. }
  54079. },
  54080. },
  54081. [
  54082. {
  54083. name: "Normal",
  54084. height: math.unit(4 + 1/12, "feet"),
  54085. default: true
  54086. },
  54087. ]
  54088. ))
  54089. characterMakers.push(() => makeCharacter(
  54090. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54091. {
  54092. anthro: {
  54093. height: math.unit(6, "feet"),
  54094. weight: math.unit(150, "lb"),
  54095. name: "Front",
  54096. image: {
  54097. source: "./media/characters/willow/anthro.svg",
  54098. extra: 1073/986,
  54099. bottom: 34/1107
  54100. },
  54101. form: "anthro",
  54102. default: true
  54103. },
  54104. taur: {
  54105. height: math.unit(6, "feet"),
  54106. weight: math.unit(150, "lb"),
  54107. name: "Side",
  54108. image: {
  54109. source: "./media/characters/willow/taur.svg",
  54110. extra: 647/512,
  54111. bottom: 136/783
  54112. },
  54113. form: "taur",
  54114. default: true
  54115. },
  54116. },
  54117. [
  54118. {
  54119. name: "Humanoid",
  54120. height: math.unit(2.7, "meters"),
  54121. form: "anthro"
  54122. },
  54123. {
  54124. name: "Normal",
  54125. height: math.unit(9, "meters"),
  54126. form: "anthro",
  54127. default: true
  54128. },
  54129. {
  54130. name: "Humanoid",
  54131. height: math.unit(2.1, "meters"),
  54132. form: "taur"
  54133. },
  54134. {
  54135. name: "Normal",
  54136. height: math.unit(7, "meters"),
  54137. form: "taur",
  54138. default: true
  54139. },
  54140. ],
  54141. {
  54142. "anthro": {
  54143. name: "Anthro",
  54144. default: true
  54145. },
  54146. "taur": {
  54147. name: "Taur",
  54148. },
  54149. }
  54150. ))
  54151. characterMakers.push(() => makeCharacter(
  54152. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54153. {
  54154. front: {
  54155. height: math.unit(2 + 5/12, "feet"),
  54156. name: "Front",
  54157. image: {
  54158. source: "./media/characters/kyan/front.svg",
  54159. extra: 460/334,
  54160. bottom: 23/483
  54161. },
  54162. extraAttributes: {
  54163. "toeLength": {
  54164. name: "Toe Length",
  54165. power: 1,
  54166. type: "length",
  54167. base: math.unit(7, "cm")
  54168. },
  54169. "toeclawLength": {
  54170. name: "Toeclaw Length",
  54171. power: 1,
  54172. type: "length",
  54173. base: math.unit(4.7, "cm")
  54174. },
  54175. "earHeight": {
  54176. name: "Ear Height",
  54177. power: 1,
  54178. type: "length",
  54179. base: math.unit(14.1, "cm")
  54180. },
  54181. }
  54182. },
  54183. paws: {
  54184. height: math.unit(0.45, "feet"),
  54185. name: "Paws",
  54186. image: {
  54187. source: "./media/characters/kyan/paws.svg",
  54188. extra: 581/581,
  54189. bottom: 114/695
  54190. }
  54191. },
  54192. },
  54193. [
  54194. {
  54195. name: "Normal",
  54196. height: math.unit(2 + 5/12, "feet"),
  54197. default: true
  54198. },
  54199. ]
  54200. ))
  54201. characterMakers.push(() => makeCharacter(
  54202. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54203. {
  54204. front: {
  54205. height: math.unit(2 + 2/3, "feet"),
  54206. name: "Front",
  54207. image: {
  54208. source: "./media/characters/xazzon/front.svg",
  54209. extra: 1109/984,
  54210. bottom: 42/1151
  54211. }
  54212. },
  54213. back: {
  54214. height: math.unit(2 + 2/3, "feet"),
  54215. name: "Back",
  54216. image: {
  54217. source: "./media/characters/xazzon/back.svg",
  54218. extra: 1095/971,
  54219. bottom: 23/1118
  54220. }
  54221. },
  54222. },
  54223. [
  54224. {
  54225. name: "Normal",
  54226. height: math.unit(2 + 2/3, "feet"),
  54227. default: true
  54228. },
  54229. ]
  54230. ))
  54231. characterMakers.push(() => makeCharacter(
  54232. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54233. {
  54234. dressed: {
  54235. height: math.unit(5 + 7/12, "feet"),
  54236. weight: math.unit(173, "lb"),
  54237. name: "Dressed",
  54238. image: {
  54239. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54240. extra: 3262/2862,
  54241. bottom: 188/3450
  54242. }
  54243. },
  54244. undressed: {
  54245. height: math.unit(5 + 7/12, "feet"),
  54246. weight: math.unit(173, "lb"),
  54247. name: "Undressed",
  54248. image: {
  54249. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54250. extra: 3262/2862,
  54251. bottom: 188/3450
  54252. }
  54253. },
  54254. },
  54255. [
  54256. {
  54257. name: "The void",
  54258. height: math.unit(7.29193e-34, "angstroms")
  54259. },
  54260. {
  54261. name: "Uh-Oh.",
  54262. height: math.unit(5.734e-7, "angstroms")
  54263. },
  54264. {
  54265. name: "Pico",
  54266. height: math.unit(0.876, "angstroms")
  54267. },
  54268. {
  54269. name: "Nano",
  54270. height: math.unit(0.000134200, "mm")
  54271. },
  54272. {
  54273. name: "Micro",
  54274. height: math.unit(0.0673020, "mm")
  54275. },
  54276. {
  54277. name: "Tiny",
  54278. height: math.unit(2.4, "mm")
  54279. },
  54280. {
  54281. name: "Actual Normal",
  54282. height: math.unit(3, "inches"),
  54283. default: true
  54284. },
  54285. {
  54286. name: "Normal",
  54287. height: math.unit(5 + 8/12, "feet")
  54288. },
  54289. {
  54290. name: "Giant",
  54291. height: math.unit(12, "feet")
  54292. },
  54293. {
  54294. name: "City Ruler",
  54295. height: math.unit(270, "meters")
  54296. },
  54297. {
  54298. name: "Giga",
  54299. height: math.unit(1117.6, "km")
  54300. },
  54301. {
  54302. name: "All-Powerful Queen",
  54303. height: math.unit(70.8, "gigameters")
  54304. },
  54305. {
  54306. name: "'Goddess'",
  54307. height: math.unit(600, "yottameters")
  54308. },
  54309. {
  54310. name: "Biggest!",
  54311. height: math.unit(4.23e5, "yottameters")
  54312. },
  54313. ]
  54314. ))
  54315. characterMakers.push(() => makeCharacter(
  54316. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54317. {
  54318. front: {
  54319. height: math.unit(8, "feet"),
  54320. weight: math.unit(300, "lb"),
  54321. name: "Front",
  54322. image: {
  54323. source: "./media/characters/khyla-shadowsong/front.svg",
  54324. extra: 861/798,
  54325. bottom: 32/893
  54326. }
  54327. },
  54328. side: {
  54329. height: math.unit(8, "feet"),
  54330. weight: math.unit(300, "lb"),
  54331. name: "Side",
  54332. image: {
  54333. source: "./media/characters/khyla-shadowsong/side.svg",
  54334. extra: 790/750,
  54335. bottom: 87/877
  54336. }
  54337. },
  54338. back: {
  54339. height: math.unit(8, "feet"),
  54340. weight: math.unit(300, "lb"),
  54341. name: "Back",
  54342. image: {
  54343. source: "./media/characters/khyla-shadowsong/back.svg",
  54344. extra: 855/808,
  54345. bottom: 14/869
  54346. }
  54347. },
  54348. head: {
  54349. height: math.unit(2.7, "feet"),
  54350. name: "Head",
  54351. image: {
  54352. source: "./media/characters/khyla-shadowsong/head.svg"
  54353. }
  54354. },
  54355. },
  54356. [
  54357. {
  54358. name: "Micro",
  54359. height: math.unit(6, "inches")
  54360. },
  54361. {
  54362. name: "Normal",
  54363. height: math.unit(8, "feet"),
  54364. default: true
  54365. },
  54366. ]
  54367. ))
  54368. characterMakers.push(() => makeCharacter(
  54369. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54370. {
  54371. hyperFront: {
  54372. height: math.unit(9 + 4/12, "feet"),
  54373. weight: math.unit(2000, "lb"),
  54374. name: "Front",
  54375. image: {
  54376. source: "./media/characters/tiden/hyper-front.svg",
  54377. extra: 400/382,
  54378. bottom: 6/406
  54379. },
  54380. form: "hyper",
  54381. },
  54382. regularFront: {
  54383. height: math.unit(7 + 10/12, "feet"),
  54384. weight: math.unit(470, "lb"),
  54385. name: "Front",
  54386. image: {
  54387. source: "./media/characters/tiden/regular-front.svg",
  54388. extra: 468/442,
  54389. bottom: 6/474
  54390. },
  54391. form: "regular",
  54392. },
  54393. },
  54394. [
  54395. {
  54396. name: "Normal",
  54397. height: math.unit(9 + 4/12, "feet"),
  54398. default: true,
  54399. form: "hyper"
  54400. },
  54401. {
  54402. name: "Normal",
  54403. height: math.unit(7 + 10/12, "feet"),
  54404. default: true,
  54405. form: "regular"
  54406. },
  54407. ],
  54408. {
  54409. "hyper": {
  54410. name: "Hyper",
  54411. default: true
  54412. },
  54413. "regular": {
  54414. name: "Regular",
  54415. },
  54416. }
  54417. ))
  54418. characterMakers.push(() => makeCharacter(
  54419. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54420. {
  54421. side: {
  54422. height: math.unit(6, "feet"),
  54423. weight: math.unit(150, "lb"),
  54424. name: "Side",
  54425. image: {
  54426. source: "./media/characters/jason-crowe/side.svg",
  54427. extra: 1771/766,
  54428. bottom: 219/1990
  54429. }
  54430. },
  54431. },
  54432. [
  54433. {
  54434. name: "Pocket Gryphon",
  54435. height: math.unit(6, "cm")
  54436. },
  54437. {
  54438. name: "Raven",
  54439. height: math.unit(60, "cm")
  54440. },
  54441. {
  54442. name: "Normal",
  54443. height: math.unit(1, "meter"),
  54444. default: true
  54445. },
  54446. ]
  54447. ))
  54448. characterMakers.push(() => makeCharacter(
  54449. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54450. {
  54451. front: {
  54452. height: math.unit(9 + 6/12, "feet"),
  54453. weight: math.unit(1100, "lb"),
  54454. name: "Front",
  54455. image: {
  54456. source: "./media/characters/django/front.svg",
  54457. extra: 1231/1136,
  54458. bottom: 34/1265
  54459. }
  54460. },
  54461. side: {
  54462. height: math.unit(9 + 6/12, "feet"),
  54463. weight: math.unit(1100, "lb"),
  54464. name: "Side",
  54465. image: {
  54466. source: "./media/characters/django/side.svg",
  54467. extra: 1267/1174,
  54468. bottom: 9/1276
  54469. }
  54470. },
  54471. },
  54472. [
  54473. {
  54474. name: "Normal",
  54475. height: math.unit(9 + 6/12, "feet"),
  54476. default: true
  54477. },
  54478. {
  54479. name: "Macro 1",
  54480. height: math.unit(50, "feet")
  54481. },
  54482. {
  54483. name: "Macro 2",
  54484. height: math.unit(500, "feet")
  54485. },
  54486. {
  54487. name: "Mega Macro",
  54488. height: math.unit(5300, "feet")
  54489. },
  54490. ]
  54491. ))
  54492. characterMakers.push(() => makeCharacter(
  54493. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54494. {
  54495. frontSfw: {
  54496. height: math.unit(120, "cm"),
  54497. weight: math.unit(15, "kg"),
  54498. name: "Front (SFW)",
  54499. image: {
  54500. source: "./media/characters/eri/front-sfw.svg",
  54501. extra: 1014/939,
  54502. bottom: 37/1051
  54503. },
  54504. form: "moth",
  54505. },
  54506. frontNsfw: {
  54507. height: math.unit(120, "cm"),
  54508. weight: math.unit(15, "kg"),
  54509. name: "Front (NSFW)",
  54510. image: {
  54511. source: "./media/characters/eri/front-nsfw.svg",
  54512. extra: 1014/939,
  54513. bottom: 37/1051
  54514. },
  54515. form: "moth",
  54516. default: true
  54517. },
  54518. egg: {
  54519. height: math.unit(10, "cm"),
  54520. name: "Egg",
  54521. image: {
  54522. source: "./media/characters/eri/egg.svg"
  54523. },
  54524. form: "egg",
  54525. default: true
  54526. },
  54527. },
  54528. [
  54529. {
  54530. name: "Normal",
  54531. height: math.unit(120, "cm"),
  54532. default: true,
  54533. form: "moth"
  54534. },
  54535. {
  54536. name: "Normal",
  54537. height: math.unit(10, "cm"),
  54538. default: true,
  54539. form: "egg"
  54540. },
  54541. ],
  54542. {
  54543. "moth": {
  54544. name: "Moth",
  54545. default: true
  54546. },
  54547. "egg": {
  54548. name: "Egg",
  54549. },
  54550. }
  54551. ))
  54552. characterMakers.push(() => makeCharacter(
  54553. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54554. {
  54555. front: {
  54556. height: math.unit(200, "feet"),
  54557. name: "Front",
  54558. image: {
  54559. source: "./media/characters/bishop-dowser/front.svg",
  54560. extra: 933/868,
  54561. bottom: 106/1039
  54562. }
  54563. },
  54564. },
  54565. [
  54566. {
  54567. name: "Giant",
  54568. height: math.unit(200, "feet"),
  54569. default: true
  54570. },
  54571. ]
  54572. ))
  54573. characterMakers.push(() => makeCharacter(
  54574. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54575. {
  54576. front: {
  54577. height: math.unit(2, "meters"),
  54578. preyCapacity: math.unit(3, "people"),
  54579. name: "Front",
  54580. image: {
  54581. source: "./media/characters/fryra/front.svg",
  54582. extra: 1025/948,
  54583. bottom: 30/1055
  54584. },
  54585. extraAttributes: {
  54586. "breastVolume": {
  54587. name: "Breast Volume",
  54588. power: 3,
  54589. type: "volume",
  54590. base: math.unit(8, "liters")
  54591. },
  54592. }
  54593. },
  54594. back: {
  54595. height: math.unit(2, "meters"),
  54596. preyCapacity: math.unit(3, "people"),
  54597. name: "Back",
  54598. image: {
  54599. source: "./media/characters/fryra/back.svg",
  54600. extra: 993/938,
  54601. bottom: 38/1031
  54602. },
  54603. extraAttributes: {
  54604. "breastVolume": {
  54605. name: "Breast Volume",
  54606. power: 3,
  54607. type: "volume",
  54608. base: math.unit(8, "liters")
  54609. },
  54610. }
  54611. },
  54612. head: {
  54613. height: math.unit(1.33, "feet"),
  54614. name: "Head",
  54615. image: {
  54616. source: "./media/characters/fryra/head.svg"
  54617. }
  54618. },
  54619. maw: {
  54620. height: math.unit(0.56, "feet"),
  54621. name: "Maw",
  54622. image: {
  54623. source: "./media/characters/fryra/maw.svg"
  54624. }
  54625. },
  54626. },
  54627. [
  54628. {
  54629. name: "Micro",
  54630. height: math.unit(5, "cm")
  54631. },
  54632. {
  54633. name: "Normal",
  54634. height: math.unit(2, "meters"),
  54635. default: true
  54636. },
  54637. {
  54638. name: "Small Macro",
  54639. height: math.unit(8, "meters")
  54640. },
  54641. {
  54642. name: "Macro",
  54643. height: math.unit(50, "meters")
  54644. },
  54645. {
  54646. name: "Megamacro",
  54647. height: math.unit(1, "km")
  54648. },
  54649. {
  54650. name: "Planetary",
  54651. height: math.unit(300000, "km")
  54652. },
  54653. {
  54654. name: "Universal",
  54655. height: math.unit(250, "lightyears")
  54656. },
  54657. {
  54658. name: "Fabric of Reality",
  54659. height: math.unit(1000, "multiverses")
  54660. },
  54661. ]
  54662. ))
  54663. characterMakers.push(() => makeCharacter(
  54664. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54665. {
  54666. frontDressed: {
  54667. height: math.unit(6 + 2/12, "feet"),
  54668. name: "Front (Dressed)",
  54669. image: {
  54670. source: "./media/characters/fiera/front-dressed.svg",
  54671. extra: 1883/1793,
  54672. bottom: 70/1953
  54673. }
  54674. },
  54675. backDressed: {
  54676. height: math.unit(6 + 2/12, "feet"),
  54677. name: "Back (Dressed)",
  54678. image: {
  54679. source: "./media/characters/fiera/back-dressed.svg",
  54680. extra: 1847/1780,
  54681. bottom: 70/1917
  54682. }
  54683. },
  54684. frontNude: {
  54685. height: math.unit(6 + 2/12, "feet"),
  54686. name: "Front (Nude)",
  54687. image: {
  54688. source: "./media/characters/fiera/front-nude.svg",
  54689. extra: 1875/1785,
  54690. bottom: 66/1941
  54691. }
  54692. },
  54693. backNude: {
  54694. height: math.unit(6 + 2/12, "feet"),
  54695. name: "Back (Nude)",
  54696. image: {
  54697. source: "./media/characters/fiera/back-nude.svg",
  54698. extra: 1855/1788,
  54699. bottom: 44/1899
  54700. }
  54701. },
  54702. maw: {
  54703. height: math.unit(1.3, "feet"),
  54704. name: "Maw",
  54705. image: {
  54706. source: "./media/characters/fiera/maw.svg"
  54707. }
  54708. },
  54709. paw: {
  54710. height: math.unit(1, "feet"),
  54711. name: "Paw",
  54712. image: {
  54713. source: "./media/characters/fiera/paw.svg"
  54714. }
  54715. },
  54716. shoe: {
  54717. height: math.unit(1.05, "feet"),
  54718. name: "Shoe",
  54719. image: {
  54720. source: "./media/characters/fiera/shoe.svg"
  54721. }
  54722. },
  54723. },
  54724. [
  54725. {
  54726. name: "Normal",
  54727. height: math.unit(6 + 2/12, "feet"),
  54728. default: true
  54729. },
  54730. {
  54731. name: "Size Difference",
  54732. height: math.unit(13, "feet")
  54733. },
  54734. {
  54735. name: "Macro",
  54736. height: math.unit(60, "feet")
  54737. },
  54738. {
  54739. name: "Mega Macro",
  54740. height: math.unit(200, "feet")
  54741. },
  54742. ]
  54743. ))
  54744. characterMakers.push(() => makeCharacter(
  54745. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54746. {
  54747. back: {
  54748. height: math.unit(6, "feet"),
  54749. name: "Back",
  54750. image: {
  54751. source: "./media/characters/flare/back.svg",
  54752. extra: 1883/1765,
  54753. bottom: 32/1915
  54754. }
  54755. },
  54756. },
  54757. [
  54758. {
  54759. name: "Normal",
  54760. height: math.unit(6 + 2/12, "feet"),
  54761. default: true
  54762. },
  54763. {
  54764. name: "Size Difference",
  54765. height: math.unit(13, "feet")
  54766. },
  54767. {
  54768. name: "Macro",
  54769. height: math.unit(60, "feet")
  54770. },
  54771. {
  54772. name: "Macro 2",
  54773. height: math.unit(100, "feet")
  54774. },
  54775. {
  54776. name: "Mega Macro",
  54777. height: math.unit(200, "feet")
  54778. },
  54779. ]
  54780. ))
  54781. characterMakers.push(() => makeCharacter(
  54782. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54783. {
  54784. front: {
  54785. height: math.unit(2.2, "m"),
  54786. weight: math.unit(300, "kg"),
  54787. name: "Front",
  54788. image: {
  54789. source: "./media/characters/hanna/front.svg",
  54790. extra: 1696/1502,
  54791. bottom: 206/1902
  54792. }
  54793. },
  54794. },
  54795. [
  54796. {
  54797. name: "Humanoid",
  54798. height: math.unit(2.2, "meters")
  54799. },
  54800. {
  54801. name: "Normal",
  54802. height: math.unit(4.8, "meters"),
  54803. default: true
  54804. },
  54805. ]
  54806. ))
  54807. characterMakers.push(() => makeCharacter(
  54808. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54809. {
  54810. front: {
  54811. height: math.unit(2.8, "meters"),
  54812. name: "Front",
  54813. image: {
  54814. source: "./media/characters/argo/front.svg",
  54815. extra: 731/518,
  54816. bottom: 84/815
  54817. }
  54818. },
  54819. },
  54820. [
  54821. {
  54822. name: "Normal",
  54823. height: math.unit(3, "meters"),
  54824. default: true
  54825. },
  54826. ]
  54827. ))
  54828. characterMakers.push(() => makeCharacter(
  54829. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54830. {
  54831. side: {
  54832. height: math.unit(3.8, "meters"),
  54833. name: "Side",
  54834. image: {
  54835. source: "./media/characters/sybil/side.svg",
  54836. extra: 382/361,
  54837. bottom: 25/407
  54838. }
  54839. },
  54840. },
  54841. [
  54842. {
  54843. name: "Normal",
  54844. height: math.unit(3.8, "meters"),
  54845. default: true
  54846. },
  54847. ]
  54848. ))
  54849. characterMakers.push(() => makeCharacter(
  54850. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54851. {
  54852. side: {
  54853. height: math.unit(6, "meters"),
  54854. name: "Side",
  54855. image: {
  54856. source: "./media/characters/plum/side.svg",
  54857. extra: 858/755,
  54858. bottom: 45/903
  54859. },
  54860. form: "taur",
  54861. default: true
  54862. },
  54863. back: {
  54864. height: math.unit(6.3, "meters"),
  54865. name: "Back",
  54866. image: {
  54867. source: "./media/characters/plum/back.svg",
  54868. extra: 887/813,
  54869. bottom: 32/919
  54870. },
  54871. form: "taur",
  54872. },
  54873. feral: {
  54874. height: math.unit(5.5, "meter"),
  54875. name: "Front",
  54876. image: {
  54877. source: "./media/characters/plum/feral.svg",
  54878. extra: 568/403,
  54879. bottom: 51/619
  54880. },
  54881. form: "feral",
  54882. default: true
  54883. },
  54884. head: {
  54885. height: math.unit(1.46, "meter"),
  54886. name: "Head",
  54887. image: {
  54888. source: "./media/characters/plum/head.svg"
  54889. },
  54890. form: "taur"
  54891. },
  54892. tailTop: {
  54893. height: math.unit(5.6, "meter"),
  54894. name: "Tail (Top)",
  54895. image: {
  54896. source: "./media/characters/plum/tail-top.svg"
  54897. },
  54898. form: "taur",
  54899. },
  54900. tailBottom: {
  54901. height: math.unit(5.6, "meter"),
  54902. name: "Tail (Bottom)",
  54903. image: {
  54904. source: "./media/characters/plum/tail-bottom.svg"
  54905. },
  54906. form: "taur",
  54907. },
  54908. feralHead: {
  54909. height: math.unit(2.56549521, "meter"),
  54910. name: "Head",
  54911. image: {
  54912. source: "./media/characters/plum/head.svg"
  54913. },
  54914. form: "feral"
  54915. },
  54916. feralTailTop: {
  54917. height: math.unit(5.44728435, "meter"),
  54918. name: "Tail (Top)",
  54919. image: {
  54920. source: "./media/characters/plum/tail-top.svg"
  54921. },
  54922. form: "feral",
  54923. },
  54924. feralTailBottom: {
  54925. height: math.unit(5.44728435, "meter"),
  54926. name: "Tail (Bottom)",
  54927. image: {
  54928. source: "./media/characters/plum/tail-bottom.svg"
  54929. },
  54930. form: "feral",
  54931. },
  54932. },
  54933. [
  54934. {
  54935. name: "Normal",
  54936. height: math.unit(6, "meters"),
  54937. default: true,
  54938. form: "taur"
  54939. },
  54940. {
  54941. name: "Normal",
  54942. height: math.unit(5.5, "meters"),
  54943. default: true,
  54944. form: "feral"
  54945. },
  54946. ],
  54947. {
  54948. "taur": {
  54949. name: "Taur",
  54950. default: true
  54951. },
  54952. "feral": {
  54953. name: "Feral",
  54954. },
  54955. }
  54956. ))
  54957. characterMakers.push(() => makeCharacter(
  54958. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54959. {
  54960. front: {
  54961. height: math.unit(6, "feet"),
  54962. weight: math.unit(115, "lb"),
  54963. name: "Front",
  54964. image: {
  54965. source: "./media/characters/celeste-kitsune/front.svg",
  54966. extra: 393/366,
  54967. bottom: 7/400
  54968. }
  54969. },
  54970. side: {
  54971. height: math.unit(6, "feet"),
  54972. weight: math.unit(115, "lb"),
  54973. name: "Side",
  54974. image: {
  54975. source: "./media/characters/celeste-kitsune/side.svg",
  54976. extra: 818/765,
  54977. bottom: 40/858
  54978. }
  54979. },
  54980. },
  54981. [
  54982. {
  54983. name: "Megamacro",
  54984. height: math.unit(1500, "miles"),
  54985. default: true
  54986. },
  54987. ]
  54988. ))
  54989. characterMakers.push(() => makeCharacter(
  54990. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54991. {
  54992. front: {
  54993. height: math.unit(8, "meters"),
  54994. name: "Front",
  54995. image: {
  54996. source: "./media/characters/io/front.svg",
  54997. extra: 865/722,
  54998. bottom: 58/923
  54999. }
  55000. },
  55001. back: {
  55002. height: math.unit(8, "meters"),
  55003. name: "Back",
  55004. image: {
  55005. source: "./media/characters/io/back.svg",
  55006. extra: 920/776,
  55007. bottom: 42/962
  55008. }
  55009. },
  55010. head: {
  55011. height: math.unit(5.09, "meters"),
  55012. name: "Head",
  55013. image: {
  55014. source: "./media/characters/io/head.svg"
  55015. }
  55016. },
  55017. hand: {
  55018. height: math.unit(1.6, "meters"),
  55019. name: "Hand",
  55020. image: {
  55021. source: "./media/characters/io/hand.svg"
  55022. }
  55023. },
  55024. foot: {
  55025. height: math.unit(2.4, "meters"),
  55026. name: "Foot",
  55027. image: {
  55028. source: "./media/characters/io/foot.svg"
  55029. }
  55030. },
  55031. },
  55032. [
  55033. {
  55034. name: "Normal",
  55035. height: math.unit(8, "meters"),
  55036. default: true
  55037. },
  55038. ]
  55039. ))
  55040. characterMakers.push(() => makeCharacter(
  55041. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55042. {
  55043. side: {
  55044. height: math.unit(6 + 3/12, "feet"),
  55045. weight: math.unit(225, "lb"),
  55046. name: "Side",
  55047. image: {
  55048. source: "./media/characters/silas/side.svg",
  55049. extra: 703/653,
  55050. bottom: 23/726
  55051. },
  55052. extraAttributes: {
  55053. "pawLength": {
  55054. name: "Paw Length",
  55055. power: 1,
  55056. type: "length",
  55057. base: math.unit(12, "inches")
  55058. },
  55059. "pawWidth": {
  55060. name: "Paw Width",
  55061. power: 1,
  55062. type: "length",
  55063. base: math.unit(4.5, "inches")
  55064. },
  55065. "pawArea": {
  55066. name: "Paw Area",
  55067. power: 2,
  55068. type: "area",
  55069. base: math.unit(12 * 4.5, "inches^2")
  55070. },
  55071. }
  55072. },
  55073. },
  55074. [
  55075. {
  55076. name: "Normal",
  55077. height: math.unit(6 + 3/12, "feet"),
  55078. default: true
  55079. },
  55080. ]
  55081. ))
  55082. characterMakers.push(() => makeCharacter(
  55083. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55084. {
  55085. back: {
  55086. height: math.unit(1.6, "meters"),
  55087. weight: math.unit(150, "lb"),
  55088. name: "Back",
  55089. image: {
  55090. source: "./media/characters/zari/back.svg",
  55091. extra: 424/411,
  55092. bottom: 32/456
  55093. },
  55094. extraAttributes: {
  55095. "bladderCapacity": {
  55096. name: "Bladder Size",
  55097. power: 3,
  55098. type: "volume",
  55099. base: math.unit(500, "mL")
  55100. },
  55101. "bladderFlow": {
  55102. name: "Flow Rate",
  55103. power: 3,
  55104. type: "volume",
  55105. base: math.unit(25, "mL")
  55106. },
  55107. }
  55108. },
  55109. },
  55110. [
  55111. {
  55112. name: "Normal",
  55113. height: math.unit(1.6, "meters"),
  55114. default: true
  55115. },
  55116. ]
  55117. ))
  55118. characterMakers.push(() => makeCharacter(
  55119. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55120. {
  55121. front: {
  55122. height: math.unit(25, "feet"),
  55123. weight: math.unit(5, "tons"),
  55124. name: "Front",
  55125. image: {
  55126. source: "./media/characters/charlie-human/front.svg",
  55127. extra: 1870/1740,
  55128. bottom: 102/1972
  55129. },
  55130. extraAttributes: {
  55131. "dickLength": {
  55132. name: "Dick Length",
  55133. power: 1,
  55134. type: "length",
  55135. base: math.unit(9, "feet")
  55136. },
  55137. }
  55138. },
  55139. back: {
  55140. height: math.unit(25, "feet"),
  55141. weight: math.unit(5, "tons"),
  55142. name: "Back",
  55143. image: {
  55144. source: "./media/characters/charlie-human/back.svg",
  55145. extra: 1858/1733,
  55146. bottom: 105/1963
  55147. },
  55148. extraAttributes: {
  55149. "dickLength": {
  55150. name: "Dick Length",
  55151. power: 1,
  55152. type: "length",
  55153. base: math.unit(9, "feet")
  55154. },
  55155. }
  55156. },
  55157. },
  55158. [
  55159. {
  55160. name: "\"Normal\"",
  55161. height: math.unit(6 + 4/12, "feet")
  55162. },
  55163. {
  55164. name: "Big",
  55165. height: math.unit(25, "feet"),
  55166. default: true
  55167. },
  55168. ]
  55169. ))
  55170. characterMakers.push(() => makeCharacter(
  55171. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55172. {
  55173. front: {
  55174. height: math.unit(6 + 4/12, "feet"),
  55175. weight: math.unit(320, "lb"),
  55176. name: "Front",
  55177. image: {
  55178. source: "./media/characters/ookitsu/front.svg",
  55179. extra: 1160/976,
  55180. bottom: 38/1198
  55181. }
  55182. },
  55183. frontNsfw: {
  55184. height: math.unit(6 + 4/12, "feet"),
  55185. weight: math.unit(320, "lb"),
  55186. name: "Front (NSFW)",
  55187. image: {
  55188. source: "./media/characters/ookitsu/front-nsfw.svg",
  55189. extra: 1160/976,
  55190. bottom: 38/1198
  55191. }
  55192. },
  55193. back: {
  55194. height: math.unit(6 + 4/12, "feet"),
  55195. weight: math.unit(320, "lb"),
  55196. name: "Back",
  55197. image: {
  55198. source: "./media/characters/ookitsu/back.svg",
  55199. extra: 1030/975,
  55200. bottom: 70/1100
  55201. }
  55202. },
  55203. head: {
  55204. height: math.unit(1.79, "feet"),
  55205. name: "Head",
  55206. image: {
  55207. source: "./media/characters/ookitsu/head.svg"
  55208. }
  55209. },
  55210. hand: {
  55211. height: math.unit(0.92, "feet"),
  55212. name: "Hand",
  55213. image: {
  55214. source: "./media/characters/ookitsu/hand.svg"
  55215. }
  55216. },
  55217. tails: {
  55218. height: math.unit(3.3, "feet"),
  55219. name: "Tails",
  55220. image: {
  55221. source: "./media/characters/ookitsu/tails.svg"
  55222. }
  55223. },
  55224. dick: {
  55225. height: math.unit(1.10833, "feet"),
  55226. name: "Dick",
  55227. image: {
  55228. source: "./media/characters/ookitsu/dick.svg"
  55229. }
  55230. },
  55231. },
  55232. [
  55233. {
  55234. name: "Normal",
  55235. height: math.unit(6 + 4/12, "feet"),
  55236. default: true
  55237. },
  55238. {
  55239. name: "Macro",
  55240. height: math.unit(30, "feet")
  55241. },
  55242. ]
  55243. ))
  55244. characterMakers.push(() => makeCharacter(
  55245. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55246. {
  55247. anthroFront: {
  55248. height: math.unit(6, "feet"),
  55249. weight: math.unit(250, "lb"),
  55250. name: "Front",
  55251. image: {
  55252. source: "./media/characters/jhusky/anthro-front.svg",
  55253. extra: 474/439,
  55254. bottom: 7/481
  55255. },
  55256. form: "anthro",
  55257. default: true
  55258. },
  55259. taurSideSfw: {
  55260. height: math.unit(6 + 4/12, "feet"),
  55261. weight: math.unit(500, "lb"),
  55262. name: "Side (SFW)",
  55263. image: {
  55264. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55265. extra: 1741/1629,
  55266. bottom: 196/1937
  55267. },
  55268. form: "taur",
  55269. default: true
  55270. },
  55271. taurSideNsfw: {
  55272. height: math.unit(6 + 4/12, "feet"),
  55273. weight: math.unit(500, "lb"),
  55274. name: "Taur (NSFW)",
  55275. image: {
  55276. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55277. extra: 1741/1629,
  55278. bottom: 196/1937
  55279. },
  55280. form: "taur",
  55281. },
  55282. },
  55283. [
  55284. {
  55285. name: "Huge",
  55286. height: math.unit(500, "feet"),
  55287. form: "anthro"
  55288. },
  55289. {
  55290. name: "Macro",
  55291. height: math.unit(1000, "feet"),
  55292. default: true,
  55293. form: "anthro"
  55294. },
  55295. {
  55296. name: "Megamacro",
  55297. height: math.unit(10000, "feet"),
  55298. form: "anthro"
  55299. },
  55300. {
  55301. name: "Huge",
  55302. height: math.unit(528, "feet"),
  55303. form: "taur"
  55304. },
  55305. {
  55306. name: "Macro",
  55307. height: math.unit(1056, "feet"),
  55308. default: true,
  55309. form: "taur"
  55310. },
  55311. {
  55312. name: "Megamacro",
  55313. height: math.unit(10556, "feet"),
  55314. form: "taur"
  55315. },
  55316. ],
  55317. {
  55318. "anthro": {
  55319. name: "Anthro",
  55320. default: true
  55321. },
  55322. "taur": {
  55323. name: "Taur",
  55324. },
  55325. }
  55326. ))
  55327. characterMakers.push(() => makeCharacter(
  55328. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55329. {
  55330. front: {
  55331. height: math.unit(8, "feet"),
  55332. weight: math.unit(500, "lb"),
  55333. name: "Front",
  55334. image: {
  55335. source: "./media/characters/armail/front.svg",
  55336. extra: 1753/1669,
  55337. bottom: 155/1908
  55338. }
  55339. },
  55340. back: {
  55341. height: math.unit(8, "feet"),
  55342. weight: math.unit(500, "lb"),
  55343. name: "Back",
  55344. image: {
  55345. source: "./media/characters/armail/back.svg",
  55346. extra: 1872/1803,
  55347. bottom: 63/1935
  55348. }
  55349. },
  55350. },
  55351. [
  55352. {
  55353. name: "Micro",
  55354. height: math.unit(0.25, "feet")
  55355. },
  55356. {
  55357. name: "Normal",
  55358. height: math.unit(8, "feet"),
  55359. default: true
  55360. },
  55361. {
  55362. name: "Mini-macro",
  55363. height: math.unit(30, "feet")
  55364. },
  55365. {
  55366. name: "Macro",
  55367. height: math.unit(400, "feet")
  55368. },
  55369. {
  55370. name: "Mega-macro",
  55371. height: math.unit(6000, "feet")
  55372. },
  55373. ]
  55374. ))
  55375. characterMakers.push(() => makeCharacter(
  55376. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55377. {
  55378. front: {
  55379. height: math.unit(6 + 7/12, "feet"),
  55380. weight: math.unit(210, "lb"),
  55381. name: "Front",
  55382. image: {
  55383. source: "./media/characters/wilfred-t-buxton/front.svg",
  55384. extra: 1068/882,
  55385. bottom: 28/1096
  55386. }
  55387. },
  55388. },
  55389. [
  55390. {
  55391. name: "Normal",
  55392. height: math.unit(6 + 7/12, "feet"),
  55393. default: true
  55394. },
  55395. ]
  55396. ))
  55397. characterMakers.push(() => makeCharacter(
  55398. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55399. {
  55400. front: {
  55401. height: math.unit(5 + 2/12, "feet"),
  55402. weight: math.unit(120, "lb"),
  55403. name: "Front",
  55404. image: {
  55405. source: "./media/characters/leighton-marrow/front.svg",
  55406. extra: 441/409,
  55407. bottom: 37/478
  55408. }
  55409. },
  55410. },
  55411. [
  55412. {
  55413. name: "Normal",
  55414. height: math.unit(5 + 2/12, "feet"),
  55415. default: true
  55416. },
  55417. ]
  55418. ))
  55419. characterMakers.push(() => makeCharacter(
  55420. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55421. {
  55422. front: {
  55423. height: math.unit(4, "meters"),
  55424. weight: math.unit(1200, "kg"),
  55425. name: "Front",
  55426. image: {
  55427. source: "./media/characters/licos/front.svg",
  55428. extra: 1727/1604,
  55429. bottom: 101/1828
  55430. },
  55431. form: "anthro",
  55432. default: true
  55433. },
  55434. taur_side: {
  55435. height: math.unit(20, "meters"),
  55436. weight: math.unit(1100000, "kg"),
  55437. name: "Side",
  55438. image: {
  55439. source: "./media/characters/licos/taur.svg",
  55440. extra: 1158/1091,
  55441. bottom: 80/1238
  55442. },
  55443. form: "taur",
  55444. default: true
  55445. },
  55446. },
  55447. [
  55448. {
  55449. name: "Normal",
  55450. height: math.unit(4, "meters"),
  55451. default: true,
  55452. form: "anthro"
  55453. },
  55454. {
  55455. name: "Normal",
  55456. height: math.unit(20, "meters"),
  55457. default: true,
  55458. form: "taur"
  55459. },
  55460. ],
  55461. {
  55462. "anthro": {
  55463. name: "Anthro",
  55464. default: true
  55465. },
  55466. "taur": {
  55467. name: "Taur",
  55468. },
  55469. }
  55470. ))
  55471. characterMakers.push(() => makeCharacter(
  55472. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55473. {
  55474. front: {
  55475. height: math.unit(10 + 3/12, "feet"),
  55476. name: "Front",
  55477. image: {
  55478. source: "./media/characters/theo-monkey/front.svg",
  55479. extra: 1735/1658,
  55480. bottom: 73/1808
  55481. }
  55482. },
  55483. back: {
  55484. height: math.unit(10 + 3/12, "feet"),
  55485. name: "Back",
  55486. image: {
  55487. source: "./media/characters/theo-monkey/back.svg",
  55488. extra: 1742/1664,
  55489. bottom: 33/1775
  55490. }
  55491. },
  55492. head: {
  55493. height: math.unit(2.29, "feet"),
  55494. name: "Head",
  55495. image: {
  55496. source: "./media/characters/theo-monkey/head.svg"
  55497. }
  55498. },
  55499. handPalm: {
  55500. height: math.unit(1.73, "feet"),
  55501. name: "Hand (Palm)",
  55502. image: {
  55503. source: "./media/characters/theo-monkey/hand-palm.svg"
  55504. }
  55505. },
  55506. handBack: {
  55507. height: math.unit(1.63, "feet"),
  55508. name: "Hand (Back)",
  55509. image: {
  55510. source: "./media/characters/theo-monkey/hand-back.svg"
  55511. }
  55512. },
  55513. footSole: {
  55514. height: math.unit(2.15, "feet"),
  55515. name: "Foot (Sole)",
  55516. image: {
  55517. source: "./media/characters/theo-monkey/foot-sole.svg"
  55518. }
  55519. },
  55520. footSide: {
  55521. height: math.unit(1.6, "feet"),
  55522. name: "Foot (Side)",
  55523. image: {
  55524. source: "./media/characters/theo-monkey/foot-side.svg"
  55525. }
  55526. },
  55527. },
  55528. [
  55529. {
  55530. name: "Normal",
  55531. height: math.unit(10 + 3/12, "feet"),
  55532. default: true
  55533. },
  55534. ]
  55535. ))
  55536. characterMakers.push(() => makeCharacter(
  55537. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55538. {
  55539. front: {
  55540. height: math.unit(11, "feet"),
  55541. weight: math.unit(3000, "lb"),
  55542. preyCapacity: math.unit(10, "people"),
  55543. name: "Front",
  55544. image: {
  55545. source: "./media/characters/brook/front.svg",
  55546. extra: 909/835,
  55547. bottom: 108/1017
  55548. }
  55549. },
  55550. back: {
  55551. height: math.unit(11, "feet"),
  55552. weight: math.unit(3000, "lb"),
  55553. preyCapacity: math.unit(10, "people"),
  55554. name: "Back",
  55555. image: {
  55556. source: "./media/characters/brook/back.svg",
  55557. extra: 976/916,
  55558. bottom: 34/1010
  55559. }
  55560. },
  55561. backAlt: {
  55562. height: math.unit(11, "feet"),
  55563. weight: math.unit(3000, "lb"),
  55564. preyCapacity: math.unit(10, "people"),
  55565. name: "Back (Alt)",
  55566. image: {
  55567. source: "./media/characters/brook/back-alt.svg",
  55568. extra: 1283/1213,
  55569. bottom: 35/1318
  55570. }
  55571. },
  55572. bust: {
  55573. height: math.unit(9.0859030837, "feet"),
  55574. weight: math.unit(3000, "lb"),
  55575. preyCapacity: math.unit(10, "people"),
  55576. name: "Bust",
  55577. image: {
  55578. source: "./media/characters/brook/bust.svg",
  55579. extra: 2043/1923,
  55580. bottom: 0/2043
  55581. }
  55582. },
  55583. },
  55584. [
  55585. {
  55586. name: "Small",
  55587. height: math.unit(11, "feet"),
  55588. default: true
  55589. },
  55590. {
  55591. name: "Towering",
  55592. height: math.unit(5, "km")
  55593. },
  55594. {
  55595. name: "Enormous",
  55596. height: math.unit(25, "earths")
  55597. },
  55598. ]
  55599. ))
  55600. characterMakers.push(() => makeCharacter(
  55601. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55602. {
  55603. front: {
  55604. height: math.unit(4, "feet"),
  55605. weight: math.unit(150, "lb"),
  55606. name: "Front",
  55607. image: {
  55608. source: "./media/characters/squishi/front.svg",
  55609. extra: 1428/1271,
  55610. bottom: 30/1458
  55611. },
  55612. extraAttributes: {
  55613. "pawSize": {
  55614. name: "Paw Size",
  55615. power: 1,
  55616. type: "length",
  55617. base: math.unit(14, "ShoeSizeMensUS"),
  55618. defaultUnit: "ShoeSizeMensUS"
  55619. },
  55620. }
  55621. },
  55622. side: {
  55623. height: math.unit(4, "feet"),
  55624. weight: math.unit(150, "lb"),
  55625. name: "Side",
  55626. image: {
  55627. source: "./media/characters/squishi/side.svg",
  55628. extra: 1428/1271,
  55629. bottom: 30/1458
  55630. },
  55631. extraAttributes: {
  55632. "pawSize": {
  55633. name: "Paw Size",
  55634. power: 1,
  55635. type: "length",
  55636. base: math.unit(14, "ShoeSizeMensUS"),
  55637. defaultUnit: "ShoeSizeMensUS"
  55638. },
  55639. }
  55640. },
  55641. back: {
  55642. height: math.unit(4, "feet"),
  55643. weight: math.unit(150, "lb"),
  55644. name: "Back",
  55645. image: {
  55646. source: "./media/characters/squishi/back.svg",
  55647. extra: 1428/1271,
  55648. bottom: 30/1458
  55649. },
  55650. extraAttributes: {
  55651. "pawSize": {
  55652. name: "Paw Size",
  55653. power: 1,
  55654. type: "length",
  55655. base: math.unit(14, "ShoeSizeMensUS"),
  55656. defaultUnit: "ShoeSizeMensUS"
  55657. },
  55658. }
  55659. },
  55660. },
  55661. [
  55662. {
  55663. name: "Normal",
  55664. height: math.unit(4, "feet"),
  55665. default: true
  55666. },
  55667. ]
  55668. ))
  55669. characterMakers.push(() => makeCharacter(
  55670. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55671. {
  55672. front: {
  55673. height: math.unit(7 + 8/12, "feet"),
  55674. weight: math.unit(333, "lb"),
  55675. name: "Front",
  55676. image: {
  55677. source: "./media/characters/vincent-vasroc/front.svg",
  55678. extra: 1962/1860,
  55679. bottom: 41/2003
  55680. }
  55681. },
  55682. back: {
  55683. height: math.unit(7 + 8/12, "feet"),
  55684. weight: math.unit(333, "lb"),
  55685. name: "Back",
  55686. image: {
  55687. source: "./media/characters/vincent-vasroc/back.svg",
  55688. extra: 1952/1815,
  55689. bottom: 33/1985
  55690. }
  55691. },
  55692. paw: {
  55693. height: math.unit(1.24, "feet"),
  55694. name: "Paw",
  55695. image: {
  55696. source: "./media/characters/vincent-vasroc/paw.svg"
  55697. }
  55698. },
  55699. ear: {
  55700. height: math.unit(0.75, "feet"),
  55701. name: "Ear",
  55702. image: {
  55703. source: "./media/characters/vincent-vasroc/ear.svg"
  55704. }
  55705. },
  55706. },
  55707. [
  55708. {
  55709. name: "Nano",
  55710. height: math.unit(92, "micrometers")
  55711. },
  55712. {
  55713. name: "Normal",
  55714. height: math.unit(7 + 8/12, "feet"),
  55715. default: true
  55716. },
  55717. ]
  55718. ))
  55719. characterMakers.push(() => makeCharacter(
  55720. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55721. {
  55722. frontNsfw: {
  55723. height: math.unit(40, "feet"),
  55724. weight: math.unit(58, "tons"),
  55725. name: "Front (NSFW)",
  55726. image: {
  55727. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55728. extra: 1265/965,
  55729. bottom: 155/1420
  55730. }
  55731. },
  55732. frontSfw: {
  55733. height: math.unit(40, "feet"),
  55734. weight: math.unit(58, "tons"),
  55735. name: "Front (SFW)",
  55736. image: {
  55737. source: "./media/characters/ru-kahn/front-sfw.svg",
  55738. extra: 1265/965,
  55739. bottom: 80/1345
  55740. }
  55741. },
  55742. },
  55743. [
  55744. {
  55745. name: "Small",
  55746. height: math.unit(4, "feet")
  55747. },
  55748. {
  55749. name: "Normal",
  55750. height: math.unit(40, "feet"),
  55751. default: true
  55752. },
  55753. {
  55754. name: "Macro",
  55755. height: math.unit(400, "feet")
  55756. },
  55757. ]
  55758. ))
  55759. characterMakers.push(() => makeCharacter(
  55760. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55761. {
  55762. frontNude: {
  55763. height: math.unit(6 + 5/12, "feet"),
  55764. name: "Front (Nude)",
  55765. image: {
  55766. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55767. extra: 1369/1366,
  55768. bottom: 68/1437
  55769. }
  55770. },
  55771. frontDressed: {
  55772. height: math.unit(6 + 5/12, "feet"),
  55773. name: "Front (Dressed)",
  55774. image: {
  55775. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55776. extra: 1369/1366,
  55777. bottom: 68/1437
  55778. }
  55779. },
  55780. },
  55781. [
  55782. {
  55783. name: "Normal",
  55784. height: math.unit(6 + 5/12, "feet"),
  55785. default: true
  55786. },
  55787. {
  55788. name: "Maximum",
  55789. height: math.unit(1930, "feet")
  55790. },
  55791. ]
  55792. ))
  55793. characterMakers.push(() => makeCharacter(
  55794. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55795. {
  55796. front: {
  55797. height: math.unit(5 + 6/12, "feet"),
  55798. name: "Front",
  55799. image: {
  55800. source: "./media/characters/kaja/front.svg",
  55801. extra: 1874/1514,
  55802. bottom: 117/1991
  55803. }
  55804. },
  55805. },
  55806. [
  55807. {
  55808. name: "Normal",
  55809. height: math.unit(5 + 6/12, "feet"),
  55810. default: true
  55811. },
  55812. ]
  55813. ))
  55814. characterMakers.push(() => makeCharacter(
  55815. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55816. {
  55817. front: {
  55818. height: math.unit(5 + 9/12, "feet"),
  55819. weight: math.unit(200, "lb"),
  55820. name: "Front",
  55821. image: {
  55822. source: "./media/characters/mark-smith/front.svg",
  55823. extra: 1004/943,
  55824. bottom: 58/1062
  55825. }
  55826. },
  55827. back: {
  55828. height: math.unit(5 + 9/12, "feet"),
  55829. weight: math.unit(200, "lb"),
  55830. name: "Back",
  55831. image: {
  55832. source: "./media/characters/mark-smith/back.svg",
  55833. extra: 1023/953,
  55834. bottom: 24/1047
  55835. }
  55836. },
  55837. head: {
  55838. height: math.unit(1.82, "feet"),
  55839. name: "Head",
  55840. image: {
  55841. source: "./media/characters/mark-smith/head.svg"
  55842. }
  55843. },
  55844. hand: {
  55845. height: math.unit(1.4, "feet"),
  55846. name: "Hand",
  55847. image: {
  55848. source: "./media/characters/mark-smith/hand.svg"
  55849. }
  55850. },
  55851. paw: {
  55852. height: math.unit(1.69, "feet"),
  55853. name: "Paw",
  55854. image: {
  55855. source: "./media/characters/mark-smith/paw.svg"
  55856. }
  55857. },
  55858. },
  55859. [
  55860. {
  55861. name: "Micro",
  55862. height: math.unit(0.25, "inches")
  55863. },
  55864. {
  55865. name: "Normal",
  55866. height: math.unit(5 + 9/12, "feet"),
  55867. default: true
  55868. },
  55869. {
  55870. name: "Macro",
  55871. height: math.unit(500, "feet")
  55872. },
  55873. ]
  55874. ))
  55875. characterMakers.push(() => makeCharacter(
  55876. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55877. {
  55878. frontNude: {
  55879. height: math.unit(6, "feet"),
  55880. name: "Front (Nude)",
  55881. image: {
  55882. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55883. extra: 1384/1321,
  55884. bottom: 57/1441
  55885. }
  55886. },
  55887. frontDressed: {
  55888. height: math.unit(6, "feet"),
  55889. name: "Front (Dressed)",
  55890. image: {
  55891. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55892. extra: 1384/1321,
  55893. bottom: 57/1441
  55894. }
  55895. },
  55896. },
  55897. [
  55898. {
  55899. name: "Normal",
  55900. height: math.unit(6, "feet"),
  55901. default: true
  55902. },
  55903. {
  55904. name: "Maximum",
  55905. height: math.unit(1776, "feet")
  55906. },
  55907. ]
  55908. ))
  55909. characterMakers.push(() => makeCharacter(
  55910. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55911. {
  55912. front: {
  55913. height: math.unit(2 + 4/12, "feet"),
  55914. weight: math.unit(350, "lb"),
  55915. name: "Front",
  55916. image: {
  55917. source: "./media/characters/devos/front.svg",
  55918. extra: 958/852,
  55919. bottom: 143/1101
  55920. }
  55921. },
  55922. },
  55923. [
  55924. {
  55925. name: "Base",
  55926. height: math.unit(2 + 4/12, "feet"),
  55927. default: true
  55928. },
  55929. ]
  55930. ))
  55931. characterMakers.push(() => makeCharacter(
  55932. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55933. {
  55934. front: {
  55935. height: math.unit(9 + 2/12, "feet"),
  55936. name: "Front",
  55937. image: {
  55938. source: "./media/characters/hiveheart/front.svg",
  55939. extra: 394/364,
  55940. bottom: 65/459
  55941. }
  55942. },
  55943. back: {
  55944. height: math.unit(9 + 2/12, "feet"),
  55945. name: "Back",
  55946. image: {
  55947. source: "./media/characters/hiveheart/back.svg",
  55948. extra: 374/357,
  55949. bottom: 63/437
  55950. }
  55951. },
  55952. },
  55953. [
  55954. {
  55955. name: "Base",
  55956. height: math.unit(9 + 2/12, "feet"),
  55957. default: true
  55958. },
  55959. ]
  55960. ))
  55961. characterMakers.push(() => makeCharacter(
  55962. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55963. {
  55964. front: {
  55965. height: math.unit(2.5, "inches"),
  55966. weight: math.unit(0.6, "oz"),
  55967. name: "Front",
  55968. image: {
  55969. source: "./media/characters/bryn/front.svg",
  55970. extra: 1480/1205,
  55971. bottom: 27/1507
  55972. }
  55973. },
  55974. back: {
  55975. height: math.unit(2.5, "inches"),
  55976. weight: math.unit(0.6, "oz"),
  55977. name: "Back",
  55978. image: {
  55979. source: "./media/characters/bryn/back.svg",
  55980. extra: 1475/1201,
  55981. bottom: 39/1514
  55982. }
  55983. },
  55984. foot: {
  55985. height: math.unit(0.4, "inches"),
  55986. name: "Foot",
  55987. image: {
  55988. source: "./media/characters/bryn/foot.svg"
  55989. }
  55990. },
  55991. },
  55992. [
  55993. {
  55994. name: "Normal",
  55995. height: math.unit(2.5, "inches"),
  55996. default: true
  55997. },
  55998. ]
  55999. ))
  56000. characterMakers.push(() => makeCharacter(
  56001. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56002. {
  56003. side: {
  56004. height: math.unit(7, "feet"),
  56005. weight: math.unit(657, "kg"),
  56006. name: "Side",
  56007. image: {
  56008. source: "./media/characters/delta/side.svg",
  56009. extra: 781/212,
  56010. bottom: 7/788
  56011. },
  56012. extraAttributes: {
  56013. "wingspan": {
  56014. name: "Wingspan",
  56015. power: 1,
  56016. type: "length",
  56017. base: math.unit(48, "feet")
  56018. },
  56019. "length": {
  56020. name: "Length",
  56021. power: 1,
  56022. type: "length",
  56023. base: math.unit(21, "feet")
  56024. },
  56025. "pawSize": {
  56026. name: "Paw Size",
  56027. power: 2,
  56028. type: "area",
  56029. base: math.unit(1.5*1.4, "feet^2")
  56030. },
  56031. }
  56032. },
  56033. },
  56034. [
  56035. {
  56036. name: "Normal",
  56037. height: math.unit(6, "feet"),
  56038. default: true
  56039. },
  56040. ]
  56041. ))
  56042. characterMakers.push(() => makeCharacter(
  56043. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56044. {
  56045. front: {
  56046. height: math.unit(6, "feet"),
  56047. name: "Front",
  56048. image: {
  56049. source: "./media/characters/pyrow/front.svg",
  56050. extra: 513/486,
  56051. bottom: 14/527
  56052. }
  56053. },
  56054. frontWing: {
  56055. height: math.unit(6, "feet"),
  56056. name: "Front (Wing)",
  56057. image: {
  56058. source: "./media/characters/pyrow/front-wing.svg",
  56059. extra: 539/383,
  56060. bottom: 20/559
  56061. }
  56062. },
  56063. back: {
  56064. height: math.unit(6, "feet"),
  56065. name: "Back",
  56066. image: {
  56067. source: "./media/characters/pyrow/back.svg",
  56068. extra: 500/473,
  56069. bottom: 9/509
  56070. }
  56071. },
  56072. },
  56073. [
  56074. {
  56075. name: "Normal",
  56076. height: math.unit(6, "feet"),
  56077. default: true
  56078. },
  56079. ]
  56080. ))
  56081. characterMakers.push(() => makeCharacter(
  56082. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56083. {
  56084. front: {
  56085. height: math.unit(5, "meters"),
  56086. weight: math.unit(3, "tonnes"),
  56087. name: "Front",
  56088. image: {
  56089. source: "./media/characters/velikan/front.svg",
  56090. extra: 867/744,
  56091. bottom: 71/938
  56092. },
  56093. extraAttributes: {
  56094. "shoeSize": {
  56095. name: "Shoe Size",
  56096. power: 1,
  56097. type: "length",
  56098. base: math.unit(135, "ShoeSizeUK"),
  56099. defaultUnit: "ShoeSizeUK"
  56100. },
  56101. }
  56102. },
  56103. },
  56104. [
  56105. {
  56106. name: "Normal",
  56107. height: math.unit(5, "meters"),
  56108. default: true
  56109. },
  56110. {
  56111. name: "Macro",
  56112. height: math.unit(1, "km")
  56113. },
  56114. {
  56115. name: "Mega Macro",
  56116. height: math.unit(100, "km")
  56117. },
  56118. {
  56119. name: "Giga Macro",
  56120. height: math.unit(2, "megameters")
  56121. },
  56122. {
  56123. name: "Planetary",
  56124. height: math.unit(22, "megameters")
  56125. },
  56126. {
  56127. name: "Solar",
  56128. height: math.unit(8, "gigameters")
  56129. },
  56130. {
  56131. name: "Cosmic",
  56132. height: math.unit(10, "zettameters")
  56133. },
  56134. {
  56135. name: "Omni",
  56136. height: math.unit(9e260, "multiverses")
  56137. },
  56138. ]
  56139. ))
  56140. characterMakers.push(() => makeCharacter(
  56141. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56142. {
  56143. front: {
  56144. height: math.unit(4 + 3/12, "feet"),
  56145. weight: math.unit(90, "lb"),
  56146. name: "Front",
  56147. image: {
  56148. source: "./media/characters/sabiki/front.svg",
  56149. extra: 1662/1423,
  56150. bottom: 65/1727
  56151. }
  56152. },
  56153. },
  56154. [
  56155. {
  56156. name: "Normal",
  56157. height: math.unit(4 + 3/12, "feet"),
  56158. default: true
  56159. },
  56160. ]
  56161. ))
  56162. characterMakers.push(() => makeCharacter(
  56163. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56164. {
  56165. frontSfw: {
  56166. height: math.unit(2, "mm"),
  56167. name: "Front (SFW)",
  56168. image: {
  56169. source: "./media/characters/carmel/front-sfw.svg",
  56170. extra: 1131/1006,
  56171. bottom: 66/1197
  56172. }
  56173. },
  56174. frontNsfw: {
  56175. height: math.unit(2, "mm"),
  56176. name: "Front (NSFW)",
  56177. image: {
  56178. source: "./media/characters/carmel/front-nsfw.svg",
  56179. extra: 1131/1006,
  56180. bottom: 66/1197
  56181. }
  56182. },
  56183. foot: {
  56184. height: math.unit(0.3, "mm"),
  56185. name: "Foot",
  56186. image: {
  56187. source: "./media/characters/carmel/foot.svg"
  56188. }
  56189. },
  56190. tongue: {
  56191. height: math.unit(0.71, "mm"),
  56192. name: "Tongue",
  56193. image: {
  56194. source: "./media/characters/carmel/tongue.svg"
  56195. }
  56196. },
  56197. dick: {
  56198. height: math.unit(0.085, "mm"),
  56199. name: "Dick",
  56200. image: {
  56201. source: "./media/characters/carmel/dick.svg"
  56202. }
  56203. },
  56204. },
  56205. [
  56206. {
  56207. name: "Micro",
  56208. height: math.unit(2, "mm"),
  56209. default: true
  56210. },
  56211. {
  56212. name: "Normal",
  56213. height: math.unit(4 + 8/12, "feet")
  56214. },
  56215. {
  56216. name: "Mega Macro",
  56217. height: math.unit(250, "feet")
  56218. },
  56219. {
  56220. name: "BIGGER",
  56221. height: math.unit(1000, "feet")
  56222. },
  56223. {
  56224. name: "BIGGEST",
  56225. height: math.unit(2, "miles")
  56226. },
  56227. ]
  56228. ))
  56229. characterMakers.push(() => makeCharacter(
  56230. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56231. {
  56232. front: {
  56233. height: math.unit(6.5, "feet"),
  56234. weight: math.unit(198, "lb"),
  56235. name: "Front",
  56236. image: {
  56237. source: "./media/characters/tamani/anthro.svg",
  56238. extra: 930/890,
  56239. bottom: 34/964
  56240. },
  56241. form: "anthro",
  56242. default: true
  56243. },
  56244. side: {
  56245. height: math.unit(6, "feet"),
  56246. weight: math.unit(198*2, "lb"),
  56247. name: "Side",
  56248. image: {
  56249. source: "./media/characters/tamani/feral.svg",
  56250. extra: 559/519,
  56251. bottom: 43/602
  56252. },
  56253. form: "feral"
  56254. },
  56255. },
  56256. [
  56257. {
  56258. name: "Normal",
  56259. height: math.unit(6.5, "feet"),
  56260. default: true,
  56261. form: "anthro"
  56262. },
  56263. {
  56264. name: "Normal",
  56265. height: math.unit(6, "feet"),
  56266. default: true,
  56267. form: "feral"
  56268. },
  56269. ],
  56270. {
  56271. "anthro": {
  56272. name: "Anthro",
  56273. default: true
  56274. },
  56275. "feral": {
  56276. name: "Feral",
  56277. },
  56278. }
  56279. ))
  56280. characterMakers.push(() => makeCharacter(
  56281. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56282. {
  56283. front: {
  56284. height: math.unit(4 + 1/12, "feet"),
  56285. weight: math.unit(114, "lb"),
  56286. name: "Front",
  56287. image: {
  56288. source: "./media/characters/dex/front.svg",
  56289. extra: 787/680,
  56290. bottom: 18/805
  56291. }
  56292. },
  56293. side: {
  56294. height: math.unit(4 + 1/12, "feet"),
  56295. weight: math.unit(114, "lb"),
  56296. name: "Side",
  56297. image: {
  56298. source: "./media/characters/dex/side.svg",
  56299. extra: 785/680,
  56300. bottom: 12/797
  56301. }
  56302. },
  56303. back: {
  56304. height: math.unit(4 + 1/12, "feet"),
  56305. weight: math.unit(114, "lb"),
  56306. name: "Back",
  56307. image: {
  56308. source: "./media/characters/dex/back.svg",
  56309. extra: 785/681,
  56310. bottom: 17/802
  56311. }
  56312. },
  56313. loungewear: {
  56314. height: math.unit(4 + 1/12, "feet"),
  56315. weight: math.unit(114, "lb"),
  56316. name: "Loungewear",
  56317. image: {
  56318. source: "./media/characters/dex/loungewear.svg",
  56319. extra: 787/680,
  56320. bottom: 18/805
  56321. }
  56322. },
  56323. workout: {
  56324. height: math.unit(4 + 1/12, "feet"),
  56325. weight: math.unit(114, "lb"),
  56326. name: "Workout",
  56327. image: {
  56328. source: "./media/characters/dex/workout.svg",
  56329. extra: 787/680,
  56330. bottom: 18/805
  56331. }
  56332. },
  56333. schoolUniform: {
  56334. height: math.unit(4 + 1/12, "feet"),
  56335. weight: math.unit(114, "lb"),
  56336. name: "School-uniform",
  56337. image: {
  56338. source: "./media/characters/dex/school-uniform.svg",
  56339. extra: 787/680,
  56340. bottom: 18/805
  56341. }
  56342. },
  56343. maw: {
  56344. height: math.unit(0.55, "feet"),
  56345. name: "Maw",
  56346. image: {
  56347. source: "./media/characters/dex/maw.svg"
  56348. }
  56349. },
  56350. paw: {
  56351. height: math.unit(0.87, "feet"),
  56352. name: "Paw",
  56353. image: {
  56354. source: "./media/characters/dex/paw.svg"
  56355. }
  56356. },
  56357. bust: {
  56358. height: math.unit(1.67, "feet"),
  56359. name: "Bust",
  56360. image: {
  56361. source: "./media/characters/dex/bust.svg"
  56362. }
  56363. },
  56364. },
  56365. [
  56366. {
  56367. name: "Normal",
  56368. height: math.unit(4 + 1/12, "feet"),
  56369. default: true
  56370. },
  56371. ]
  56372. ))
  56373. characterMakers.push(() => makeCharacter(
  56374. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56375. {
  56376. front: {
  56377. height: math.unit(4 + 3/12, "feet"),
  56378. weight: math.unit(60, "lb"),
  56379. name: "Front",
  56380. image: {
  56381. source: "./media/characters/silke/front.svg",
  56382. extra: 1334/1122,
  56383. bottom: 21/1355
  56384. }
  56385. },
  56386. back: {
  56387. height: math.unit(4 + 3/12, "feet"),
  56388. weight: math.unit(60, "lb"),
  56389. name: "Back",
  56390. image: {
  56391. source: "./media/characters/silke/back.svg",
  56392. extra: 1328/1092,
  56393. bottom: 16/1344
  56394. }
  56395. },
  56396. dressed: {
  56397. height: math.unit(4 + 3/12, "feet"),
  56398. weight: math.unit(60, "lb"),
  56399. name: "Dressed",
  56400. image: {
  56401. source: "./media/characters/silke/dressed.svg",
  56402. extra: 1334/1122,
  56403. bottom: 43/1377
  56404. }
  56405. },
  56406. },
  56407. [
  56408. {
  56409. name: "Normal",
  56410. height: math.unit(4 + 3/12, "feet"),
  56411. default: true
  56412. },
  56413. ]
  56414. ))
  56415. characterMakers.push(() => makeCharacter(
  56416. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56417. {
  56418. front: {
  56419. height: math.unit(1.58, "meters"),
  56420. weight: math.unit(47, "kg"),
  56421. name: "Front",
  56422. image: {
  56423. source: "./media/characters/wireshark/front.svg",
  56424. extra: 883/838,
  56425. bottom: 66/949
  56426. }
  56427. },
  56428. },
  56429. [
  56430. {
  56431. name: "Normal",
  56432. height: math.unit(1.58, "meters"),
  56433. default: true
  56434. },
  56435. ]
  56436. ))
  56437. characterMakers.push(() => makeCharacter(
  56438. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56439. {
  56440. front: {
  56441. height: math.unit(6, "meters"),
  56442. weight: math.unit(15000, "kg"),
  56443. name: "Front",
  56444. image: {
  56445. source: "./media/characters/gallagher/front.svg",
  56446. extra: 532/493,
  56447. bottom: 0/532
  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: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56461. {
  56462. front: {
  56463. height: math.unit(2.4, "meters"),
  56464. weight: math.unit(270, "kg"),
  56465. name: "Front",
  56466. image: {
  56467. source: "./media/characters/alice/front.svg",
  56468. extra: 950/900,
  56469. bottom: 36/986
  56470. }
  56471. },
  56472. side: {
  56473. height: math.unit(2.4, "meters"),
  56474. weight: math.unit(270, "kg"),
  56475. name: "Side",
  56476. image: {
  56477. source: "./media/characters/alice/side.svg",
  56478. extra: 921/876,
  56479. bottom: 19/940
  56480. }
  56481. },
  56482. dressed: {
  56483. height: math.unit(2.4, "meters"),
  56484. weight: math.unit(270, "kg"),
  56485. name: "Dressed",
  56486. image: {
  56487. source: "./media/characters/alice/dressed.svg",
  56488. extra: 905/850,
  56489. bottom: 81/986
  56490. }
  56491. },
  56492. fishnet: {
  56493. height: math.unit(2.4, "meters"),
  56494. weight: math.unit(270, "kg"),
  56495. name: "Fishnet",
  56496. image: {
  56497. source: "./media/characters/alice/fishnet.svg",
  56498. extra: 905/850,
  56499. bottom: 81/986
  56500. }
  56501. },
  56502. },
  56503. [
  56504. {
  56505. name: "Normal",
  56506. height: math.unit(2.4, "meters"),
  56507. default: true
  56508. },
  56509. ]
  56510. ))
  56511. characterMakers.push(() => makeCharacter(
  56512. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56513. {
  56514. front: {
  56515. height: math.unit(175.25, "feet"),
  56516. name: "Front",
  56517. image: {
  56518. source: "./media/characters/fio/front.svg",
  56519. extra: 1883/1591,
  56520. bottom: 34/1917
  56521. }
  56522. },
  56523. },
  56524. [
  56525. {
  56526. name: "Normal",
  56527. height: math.unit(175.25, "cm"),
  56528. default: true
  56529. },
  56530. ]
  56531. ))
  56532. characterMakers.push(() => makeCharacter(
  56533. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56534. {
  56535. side: {
  56536. height: math.unit(6, "meters"),
  56537. weight: math.unit(3400, "kg"),
  56538. preyCapacity: math.unit(1700, "liters"),
  56539. name: "Side",
  56540. image: {
  56541. source: "./media/characters/hass/side.svg",
  56542. extra: 1058/997,
  56543. bottom: 177/1235
  56544. }
  56545. },
  56546. feeding: {
  56547. height: math.unit(6*0.63, "meters"),
  56548. weight: math.unit(3400, "kg"),
  56549. preyCapacity: math.unit(1700, "liters"),
  56550. name: "Feeding",
  56551. image: {
  56552. source: "./media/characters/hass/feeding.svg",
  56553. extra: 689/579,
  56554. bottom: 146/835
  56555. }
  56556. },
  56557. guts: {
  56558. height: math.unit(6, "meters"),
  56559. weight: math.unit(3400, "kg"),
  56560. name: "Guts",
  56561. image: {
  56562. source: "./media/characters/hass/guts.svg",
  56563. extra: 1223/1198,
  56564. bottom: 182/1405
  56565. }
  56566. },
  56567. dickFront: {
  56568. height: math.unit(1.4, "meters"),
  56569. name: "Dick (Front)",
  56570. image: {
  56571. source: "./media/characters/hass/dick-front.svg"
  56572. }
  56573. },
  56574. dickSide: {
  56575. height: math.unit(1.3, "meters"),
  56576. name: "Dick (Side)",
  56577. image: {
  56578. source: "./media/characters/hass/dick-side.svg"
  56579. }
  56580. },
  56581. dickBack: {
  56582. height: math.unit(1.4, "meters"),
  56583. name: "Dick (Back)",
  56584. image: {
  56585. source: "./media/characters/hass/dick-back.svg"
  56586. }
  56587. },
  56588. },
  56589. [
  56590. {
  56591. name: "Normal",
  56592. height: math.unit(6, "meters"),
  56593. default: true
  56594. },
  56595. ]
  56596. ))
  56597. characterMakers.push(() => makeCharacter(
  56598. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56599. {
  56600. front: {
  56601. height: math.unit(4, "feet"),
  56602. weight: math.unit(60, "lb"),
  56603. name: "Front",
  56604. image: {
  56605. source: "./media/characters/hickory-finnegan/front.svg",
  56606. extra: 444/411,
  56607. bottom: 10/454
  56608. }
  56609. },
  56610. side: {
  56611. height: math.unit(4, "feet"),
  56612. weight: math.unit(60, "lb"),
  56613. name: "Side",
  56614. image: {
  56615. source: "./media/characters/hickory-finnegan/side.svg",
  56616. extra: 444/411,
  56617. bottom: 10/454
  56618. }
  56619. },
  56620. back: {
  56621. height: math.unit(4, "feet"),
  56622. weight: math.unit(60, "lb"),
  56623. name: "Back",
  56624. image: {
  56625. source: "./media/characters/hickory-finnegan/back.svg",
  56626. extra: 444/411,
  56627. bottom: 10/454
  56628. }
  56629. },
  56630. },
  56631. [
  56632. {
  56633. name: "Normal",
  56634. height: math.unit(4, "feet"),
  56635. default: true
  56636. },
  56637. ]
  56638. ))
  56639. characterMakers.push(() => makeCharacter(
  56640. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56641. {
  56642. snivy_front: {
  56643. height: math.unit(2, "feet"),
  56644. weight: math.unit(17.9, "lb"),
  56645. name: "Front",
  56646. image: {
  56647. source: "./media/characters/robin-phox/snivy-front.svg",
  56648. extra: 569/504,
  56649. bottom: 33/602
  56650. },
  56651. form: "snivy",
  56652. default: true
  56653. },
  56654. snivy_frontNsfw: {
  56655. height: math.unit(2, "feet"),
  56656. weight: math.unit(17.9, "lb"),
  56657. name: "Front (NSFW)",
  56658. image: {
  56659. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56660. extra: 569/504,
  56661. bottom: 33/602
  56662. },
  56663. form: "snivy",
  56664. },
  56665. snivy_back: {
  56666. height: math.unit(2, "feet"),
  56667. weight: math.unit(17.9, "lb"),
  56668. name: "Back",
  56669. image: {
  56670. source: "./media/characters/robin-phox/snivy-back.svg",
  56671. extra: 577/508,
  56672. bottom: 21/598
  56673. },
  56674. form: "snivy",
  56675. },
  56676. snivy_foot: {
  56677. height: math.unit(0.68, "feet"),
  56678. name: "Foot",
  56679. image: {
  56680. source: "./media/characters/robin-phox/snivy-foot.svg"
  56681. },
  56682. form: "snivy",
  56683. },
  56684. snivy_sole: {
  56685. height: math.unit(0.68, "feet"),
  56686. name: "Sole",
  56687. image: {
  56688. source: "./media/characters/robin-phox/snivy-sole.svg"
  56689. },
  56690. form: "snivy",
  56691. },
  56692. yoshi_front: {
  56693. height: math.unit(6, "feet"),
  56694. weight: math.unit(150, "lb"),
  56695. name: "Front",
  56696. image: {
  56697. source: "./media/characters/robin-phox/yoshi-front.svg",
  56698. extra: 890/792,
  56699. bottom: 29/919
  56700. },
  56701. form: "yoshi",
  56702. default: true
  56703. },
  56704. yoshi_frontNsfw: {
  56705. height: math.unit(6, "feet"),
  56706. weight: math.unit(150, "lb"),
  56707. name: "Front (NSFW)",
  56708. image: {
  56709. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56710. extra: 890/792,
  56711. bottom: 29/919
  56712. },
  56713. form: "yoshi",
  56714. },
  56715. yoshi_back: {
  56716. height: math.unit(6, "feet"),
  56717. weight: math.unit(150, "lb"),
  56718. name: "Back",
  56719. image: {
  56720. source: "./media/characters/robin-phox/yoshi-back.svg",
  56721. extra: 890/792,
  56722. bottom: 29/919
  56723. },
  56724. form: "yoshi",
  56725. },
  56726. yoshi_foot: {
  56727. height: math.unit(1.5, "feet"),
  56728. name: "Foot",
  56729. image: {
  56730. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56731. },
  56732. form: "yoshi",
  56733. },
  56734. delphox_front: {
  56735. height: math.unit(4 + 11/12, "feet"),
  56736. weight: math.unit(86, "lb"),
  56737. name: "Front",
  56738. image: {
  56739. source: "./media/characters/robin-phox/delphox-front.svg",
  56740. extra: 1266/1069,
  56741. bottom: 32/1298
  56742. },
  56743. form: "delphox",
  56744. default: true
  56745. },
  56746. delphox_frontNsfw: {
  56747. height: math.unit(4 + 11/12, "feet"),
  56748. weight: math.unit(86, "lb"),
  56749. name: "Front (NSFW)",
  56750. image: {
  56751. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56752. extra: 1266/1069,
  56753. bottom: 32/1298
  56754. },
  56755. form: "delphox",
  56756. },
  56757. delphox_back: {
  56758. height: math.unit(4 + 11/12, "feet"),
  56759. weight: math.unit(86, "lb"),
  56760. name: "Back",
  56761. image: {
  56762. source: "./media/characters/robin-phox/delphox-back.svg",
  56763. extra: 1269/1083,
  56764. bottom: 15/1284
  56765. },
  56766. form: "delphox",
  56767. },
  56768. mienshao_front: {
  56769. height: math.unit(4 + 7/12, "feet"),
  56770. weight: math.unit(78.3, "lb"),
  56771. name: "Front",
  56772. image: {
  56773. source: "./media/characters/robin-phox/mienshao-front.svg",
  56774. extra: 1052/970,
  56775. bottom: 108/1160
  56776. },
  56777. form: "mienshao",
  56778. default: true
  56779. },
  56780. mienshao_frontNsfw: {
  56781. height: math.unit(4 + 7/12, "feet"),
  56782. weight: math.unit(78.3, "lb"),
  56783. name: "Front (NSFW)",
  56784. image: {
  56785. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56786. extra: 1052/970,
  56787. bottom: 108/1160
  56788. },
  56789. form: "mienshao",
  56790. },
  56791. mienshao_back: {
  56792. height: math.unit(4 + 7/12, "feet"),
  56793. weight: math.unit(78.3, "lb"),
  56794. name: "Back",
  56795. image: {
  56796. source: "./media/characters/robin-phox/mienshao-back.svg",
  56797. extra: 1102/982,
  56798. bottom: 32/1134
  56799. },
  56800. form: "mienshao",
  56801. },
  56802. inteleon_front: {
  56803. height: math.unit(6 + 3/12, "feet"),
  56804. weight: math.unit(99.6, "lb"),
  56805. name: "Front",
  56806. image: {
  56807. source: "./media/characters/robin-phox/inteleon-front.svg",
  56808. extra: 910/799,
  56809. bottom: 76/986
  56810. },
  56811. form: "inteleon",
  56812. default: true
  56813. },
  56814. inteleon_frontNsfw: {
  56815. height: math.unit(6 + 3/12, "feet"),
  56816. weight: math.unit(99.6, "lb"),
  56817. name: "Front (NSFW)",
  56818. image: {
  56819. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56820. extra: 910/799,
  56821. bottom: 76/986
  56822. },
  56823. form: "inteleon",
  56824. },
  56825. inteleon_back: {
  56826. height: math.unit(6 + 3/12, "feet"),
  56827. weight: math.unit(99.6, "lb"),
  56828. name: "Back",
  56829. image: {
  56830. source: "./media/characters/robin-phox/inteleon-back.svg",
  56831. extra: 907/796,
  56832. bottom: 25/932
  56833. },
  56834. form: "inteleon",
  56835. },
  56836. reshiram_front: {
  56837. height: math.unit(10 + 6/12, "feet"),
  56838. weight: math.unit(727.5, "lb"),
  56839. name: "Front",
  56840. image: {
  56841. source: "./media/characters/robin-phox/reshiram-front.svg",
  56842. extra: 1198/940,
  56843. bottom: 123/1321
  56844. },
  56845. form: "reshiram",
  56846. },
  56847. reshiram_frontNsfw: {
  56848. height: math.unit(10 + 6/12, "feet"),
  56849. weight: math.unit(727.5, "lb"),
  56850. name: "Front-nsfw",
  56851. image: {
  56852. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56853. extra: 1198/940,
  56854. bottom: 123/1321
  56855. },
  56856. form: "reshiram",
  56857. },
  56858. reshiram_back: {
  56859. height: math.unit(10 + 6/12, "feet"),
  56860. weight: math.unit(727.5, "lb"),
  56861. name: "Back",
  56862. image: {
  56863. source: "./media/characters/robin-phox/reshiram-back.svg",
  56864. extra: 1024/904,
  56865. bottom: 85/1109
  56866. },
  56867. form: "reshiram",
  56868. },
  56869. samurott_front: {
  56870. height: math.unit(8, "feet"),
  56871. weight: math.unit(208.6, "lb"),
  56872. name: "Front",
  56873. image: {
  56874. source: "./media/characters/robin-phox/samurott-front.svg",
  56875. extra: 1048/984,
  56876. bottom: 100/1148
  56877. },
  56878. form: "samurott",
  56879. },
  56880. samurott_frontNsfw: {
  56881. height: math.unit(8, "feet"),
  56882. weight: math.unit(208.6, "lb"),
  56883. name: "Front-nsfw",
  56884. image: {
  56885. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56886. extra: 1048/984,
  56887. bottom: 100/1148
  56888. },
  56889. form: "samurott",
  56890. },
  56891. samurott_back: {
  56892. height: math.unit(8, "feet"),
  56893. weight: math.unit(208.6, "lb"),
  56894. name: "Back",
  56895. image: {
  56896. source: "./media/characters/robin-phox/samurott-back.svg",
  56897. extra: 1110/1042,
  56898. bottom: 12/1122
  56899. },
  56900. form: "samurott",
  56901. },
  56902. samurott_feral: {
  56903. height: math.unit(4 + 11/12, "feet"),
  56904. weight: math.unit(208.6, "lb"),
  56905. name: "Feral",
  56906. image: {
  56907. source: "./media/characters/robin-phox/samurott-feral.svg",
  56908. extra: 766/681,
  56909. bottom: 108/874
  56910. },
  56911. form: "samurott",
  56912. },
  56913. },
  56914. [
  56915. {
  56916. name: "Normal",
  56917. height: math.unit(2, "feet"),
  56918. default: true,
  56919. form: "snivy"
  56920. },
  56921. {
  56922. name: "Normal",
  56923. height: math.unit(6, "feet"),
  56924. default: true,
  56925. form: "yoshi"
  56926. },
  56927. {
  56928. name: "Normal",
  56929. height: math.unit(4 + 11/12, "feet"),
  56930. default: true,
  56931. form: "delphox"
  56932. },
  56933. {
  56934. name: "Normal",
  56935. height: math.unit(4 + 7/12, "feet"),
  56936. default: true,
  56937. form: "mienshao"
  56938. },
  56939. {
  56940. name: "Normal",
  56941. height: math.unit(6 + 3/12, "feet"),
  56942. default: true,
  56943. form: "inteleon"
  56944. },
  56945. {
  56946. name: "Normal",
  56947. height: math.unit(10 + 6/12, "feet"),
  56948. default: true,
  56949. form: "reshiram"
  56950. },
  56951. {
  56952. name: "Normal",
  56953. height: math.unit(8, "feet"),
  56954. default: true,
  56955. form: "samurott"
  56956. },
  56957. {
  56958. name: "Macro",
  56959. height: math.unit(500, "feet"),
  56960. allForms: true
  56961. },
  56962. {
  56963. name: "Mega Macro",
  56964. height: math.unit(10, "earths"),
  56965. allForms: true
  56966. },
  56967. {
  56968. name: "Giga Macro",
  56969. height: math.unit(1, "galaxy"),
  56970. allForms: true
  56971. },
  56972. {
  56973. name: "Godly Macro",
  56974. height: math.unit(1e10, "multiverses"),
  56975. allForms: true
  56976. },
  56977. ],
  56978. {
  56979. "snivy": {
  56980. name: "Snivy",
  56981. default: true
  56982. },
  56983. "yoshi": {
  56984. name: "Yoshi",
  56985. },
  56986. "delphox": {
  56987. name: "Delphox",
  56988. },
  56989. "mienshao": {
  56990. name: "Mienshao",
  56991. },
  56992. "inteleon": {
  56993. name: "Inteleon",
  56994. },
  56995. "reshiram": {
  56996. name: "Reshiram",
  56997. },
  56998. "samurott": {
  56999. name: "Samurott",
  57000. },
  57001. }
  57002. ))
  57003. characterMakers.push(() => makeCharacter(
  57004. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57005. {
  57006. front: {
  57007. height: math.unit(4, "feet"),
  57008. name: "Front",
  57009. image: {
  57010. source: "./media/characters/ash-leung/front.svg",
  57011. extra: 1916/1792,
  57012. bottom: 50/1966
  57013. }
  57014. },
  57015. },
  57016. [
  57017. {
  57018. name: "Atomic",
  57019. height: math.unit(1, "angstrom")
  57020. },
  57021. {
  57022. name: "Microscopic",
  57023. height: math.unit(4000, "angstroms")
  57024. },
  57025. {
  57026. name: "Speck",
  57027. height: math.unit(1, "mm")
  57028. },
  57029. {
  57030. name: "Small",
  57031. height: math.unit(1, "inch")
  57032. },
  57033. {
  57034. name: "Normal",
  57035. height: math.unit(4, "feet"),
  57036. default: true
  57037. },
  57038. ]
  57039. ))
  57040. characterMakers.push(() => makeCharacter(
  57041. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57042. {
  57043. frontDressed: {
  57044. height: math.unit(2.08, "meters"),
  57045. weight: math.unit(175, "lb"),
  57046. name: "Front (Dressed)",
  57047. image: {
  57048. source: "./media/characters/carie/front-dressed.svg",
  57049. extra: 456/417,
  57050. bottom: 7/463
  57051. }
  57052. },
  57053. backDressed: {
  57054. height: math.unit(2.08, "meters"),
  57055. weight: math.unit(175, "lb"),
  57056. name: "Back (Dressed)",
  57057. image: {
  57058. source: "./media/characters/carie/back-dressed.svg",
  57059. extra: 455/414,
  57060. bottom: 11/466
  57061. }
  57062. },
  57063. front: {
  57064. height: math.unit(2, "meters"),
  57065. weight: math.unit(175, "lb"),
  57066. name: "Front",
  57067. image: {
  57068. source: "./media/characters/carie/front.svg",
  57069. extra: 438/399,
  57070. bottom: 12/450
  57071. }
  57072. },
  57073. back: {
  57074. height: math.unit(2, "meters"),
  57075. weight: math.unit(175, "lb"),
  57076. name: "Back",
  57077. image: {
  57078. source: "./media/characters/carie/back.svg",
  57079. extra: 438/397,
  57080. bottom: 7/445
  57081. }
  57082. },
  57083. },
  57084. [
  57085. {
  57086. name: "Normal",
  57087. height: math.unit(2.08, "meters"),
  57088. default: true
  57089. },
  57090. {
  57091. name: "Macro",
  57092. height: math.unit(2.08e3, "meters")
  57093. },
  57094. {
  57095. name: "Mega Macro",
  57096. height: math.unit(2.08e6, "meters")
  57097. },
  57098. {
  57099. name: "Giga Macro",
  57100. height: math.unit(2.08e9, "meters")
  57101. },
  57102. {
  57103. name: "Tera Macro",
  57104. height: math.unit(2.08e12, "meters")
  57105. },
  57106. {
  57107. name: "Peta Macro",
  57108. height: math.unit(2.08e15, "meters")
  57109. },
  57110. {
  57111. name: "Exa Macro",
  57112. height: math.unit(2.08e18, "meters")
  57113. },
  57114. {
  57115. name: "Zetta Macro",
  57116. height: math.unit(2.08e21, "meters")
  57117. },
  57118. {
  57119. name: "Yotta Macro",
  57120. height: math.unit(2.08e24, "meters")
  57121. },
  57122. ]
  57123. ))
  57124. characterMakers.push(() => makeCharacter(
  57125. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57126. {
  57127. front: {
  57128. height: math.unit(5 + 2/12, "feet"),
  57129. weight: math.unit(120, "lb"),
  57130. name: "Front",
  57131. image: {
  57132. source: "./media/characters/sai-bree/front.svg",
  57133. extra: 1843/1702,
  57134. bottom: 91/1934
  57135. }
  57136. },
  57137. back: {
  57138. height: math.unit(5 + 2/12, "feet"),
  57139. weight: math.unit(120, "lb"),
  57140. name: "Back",
  57141. image: {
  57142. source: "./media/characters/sai-bree/back.svg",
  57143. extra: 1809/1637,
  57144. bottom: 56/1865
  57145. }
  57146. },
  57147. },
  57148. [
  57149. {
  57150. name: "Normal",
  57151. height: math.unit(5 + 2/12, "feet"),
  57152. default: true
  57153. },
  57154. {
  57155. name: "Macro",
  57156. height: math.unit(500, "feet")
  57157. },
  57158. ]
  57159. ))
  57160. characterMakers.push(() => makeCharacter(
  57161. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57162. {
  57163. side: {
  57164. height: math.unit(0.77, "meters"),
  57165. weight: math.unit(120, "lb"),
  57166. name: "Side",
  57167. image: {
  57168. source: "./media/characters/davwyn/side.svg",
  57169. extra: 1557/1225,
  57170. bottom: 131/1688
  57171. }
  57172. },
  57173. front: {
  57174. height: math.unit(0.835410, "meters"),
  57175. weight: math.unit(120, "lb"),
  57176. name: "Front",
  57177. image: {
  57178. source: "./media/characters/davwyn/front.svg",
  57179. extra: 870/843,
  57180. bottom: 175/1045
  57181. }
  57182. },
  57183. },
  57184. [
  57185. {
  57186. name: "Minidrake",
  57187. height: math.unit(0.77/4, "meters")
  57188. },
  57189. {
  57190. name: "Normal",
  57191. height: math.unit(0.77, "meters"),
  57192. default: true
  57193. },
  57194. ]
  57195. ))
  57196. characterMakers.push(() => makeCharacter(
  57197. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57198. {
  57199. front: {
  57200. height: math.unit(10 + 3/12, "feet"),
  57201. weight: math.unit(2857, "lb"),
  57202. name: "Front",
  57203. image: {
  57204. source: "./media/characters/balans/front.svg",
  57205. extra: 427/402,
  57206. bottom: 26/453
  57207. }
  57208. },
  57209. side: {
  57210. height: math.unit(10 + 3/12, "feet"),
  57211. weight: math.unit(2857, "lb"),
  57212. name: "Side",
  57213. image: {
  57214. source: "./media/characters/balans/side.svg",
  57215. extra: 397/371,
  57216. bottom: 17/414
  57217. }
  57218. },
  57219. back: {
  57220. height: math.unit(10 + 3/12, "feet"),
  57221. weight: math.unit(2857, "lb"),
  57222. name: "Back",
  57223. image: {
  57224. source: "./media/characters/balans/back.svg",
  57225. extra: 408/381,
  57226. bottom: 14/422
  57227. }
  57228. },
  57229. hand: {
  57230. height: math.unit(1.15, "feet"),
  57231. name: "Hand",
  57232. image: {
  57233. source: "./media/characters/balans/hand.svg"
  57234. }
  57235. },
  57236. footRest: {
  57237. height: math.unit(3.1, "feet"),
  57238. name: "Foot (Rest)",
  57239. image: {
  57240. source: "./media/characters/balans/foot-rest.svg"
  57241. }
  57242. },
  57243. footActive: {
  57244. height: math.unit(3.5, "feet"),
  57245. name: "Foot (Active)",
  57246. image: {
  57247. source: "./media/characters/balans/foot-active.svg"
  57248. }
  57249. },
  57250. },
  57251. [
  57252. {
  57253. name: "Normal",
  57254. height: math.unit(10 + 3/12, "feet"),
  57255. default: true
  57256. },
  57257. ]
  57258. ))
  57259. characterMakers.push(() => makeCharacter(
  57260. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57261. {
  57262. side: {
  57263. height: math.unit(9, "meters"),
  57264. weight: math.unit(114, "tonnes"),
  57265. name: "Side",
  57266. image: {
  57267. source: "./media/characters/eldkveikir/side.svg",
  57268. extra: 1927/338,
  57269. bottom: 42/1969
  57270. }
  57271. },
  57272. sitting: {
  57273. height: math.unit(13.4, "meters"),
  57274. weight: math.unit(114, "tonnes"),
  57275. name: "Sitting",
  57276. image: {
  57277. source: "./media/characters/eldkveikir/sitting.svg",
  57278. extra: 1108/963,
  57279. bottom: 610/1718
  57280. }
  57281. },
  57282. maw: {
  57283. height: math.unit(8.36, "meters"),
  57284. name: "Maw",
  57285. image: {
  57286. source: "./media/characters/eldkveikir/maw.svg"
  57287. }
  57288. },
  57289. hand: {
  57290. height: math.unit(4.84, "meters"),
  57291. name: "Hand",
  57292. image: {
  57293. source: "./media/characters/eldkveikir/hand.svg"
  57294. }
  57295. },
  57296. foot: {
  57297. height: math.unit(6.9, "meters"),
  57298. name: "Foot",
  57299. image: {
  57300. source: "./media/characters/eldkveikir/foot.svg"
  57301. }
  57302. },
  57303. genitals: {
  57304. height: math.unit(9.6, "meters"),
  57305. name: "Genitals",
  57306. image: {
  57307. source: "./media/characters/eldkveikir/genitals.svg"
  57308. }
  57309. },
  57310. },
  57311. [
  57312. {
  57313. name: "Normal",
  57314. height: math.unit(9, "meters"),
  57315. default: true
  57316. },
  57317. ]
  57318. ))
  57319. characterMakers.push(() => makeCharacter(
  57320. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57321. {
  57322. front: {
  57323. height: math.unit(14, "feet"),
  57324. weight: math.unit(4100, "lb"),
  57325. name: "Front",
  57326. image: {
  57327. source: "./media/characters/arrow/front.svg",
  57328. extra: 330/318,
  57329. bottom: 56/386
  57330. }
  57331. },
  57332. },
  57333. [
  57334. {
  57335. name: "Normal",
  57336. height: math.unit(14, "feet"),
  57337. default: true
  57338. },
  57339. {
  57340. name: "Minimacro",
  57341. height: math.unit(63, "feet")
  57342. },
  57343. {
  57344. name: "Macro",
  57345. height: math.unit(630, "feet")
  57346. },
  57347. {
  57348. name: "Megamacro",
  57349. height: math.unit(12600, "feet")
  57350. },
  57351. {
  57352. name: "Gigamacro",
  57353. height: math.unit(18000, "miles")
  57354. },
  57355. ]
  57356. ))
  57357. characterMakers.push(() => makeCharacter(
  57358. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57359. {
  57360. front: {
  57361. height: math.unit(10, "feet"),
  57362. weight: math.unit(2.4, "tons"),
  57363. name: "Front",
  57364. image: {
  57365. source: "./media/characters/3yk-k0-unit/front.svg",
  57366. extra: 573/561,
  57367. bottom: 33/606
  57368. }
  57369. },
  57370. back: {
  57371. height: math.unit(10, "feet"),
  57372. weight: math.unit(2.4, "tons"),
  57373. name: "Back",
  57374. image: {
  57375. source: "./media/characters/3yk-k0-unit/back.svg",
  57376. extra: 614/573,
  57377. bottom: 32/646
  57378. }
  57379. },
  57380. maw: {
  57381. height: math.unit(2.15, "feet"),
  57382. name: "Maw",
  57383. image: {
  57384. source: "./media/characters/3yk-k0-unit/maw.svg"
  57385. }
  57386. },
  57387. },
  57388. [
  57389. {
  57390. name: "Normal",
  57391. height: math.unit(10, "feet"),
  57392. default: true
  57393. },
  57394. ]
  57395. ))
  57396. characterMakers.push(() => makeCharacter(
  57397. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57398. {
  57399. front: {
  57400. height: math.unit(8 + 8/12, "feet"),
  57401. name: "Front",
  57402. image: {
  57403. source: "./media/characters/nemo/front.svg",
  57404. extra: 1308/1217,
  57405. bottom: 57/1365
  57406. }
  57407. },
  57408. },
  57409. [
  57410. {
  57411. name: "Normal",
  57412. height: math.unit(8 + 8/12, "feet"),
  57413. default: true
  57414. },
  57415. ]
  57416. ))
  57417. characterMakers.push(() => makeCharacter(
  57418. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57419. {
  57420. front: {
  57421. height: math.unit(8, "feet"),
  57422. weight: math.unit(760, "lb"),
  57423. name: "Front",
  57424. image: {
  57425. source: "./media/characters/rexx/front.svg",
  57426. extra: 786/750,
  57427. bottom: 17/803
  57428. },
  57429. extraAttributes: {
  57430. "pawLength": {
  57431. name: "Paw Length",
  57432. power: 1,
  57433. type: "length",
  57434. base: math.unit(27, "inches")
  57435. },
  57436. }
  57437. },
  57438. },
  57439. [
  57440. {
  57441. name: "Micro",
  57442. height: math.unit(2, "inches")
  57443. },
  57444. {
  57445. name: "Normal",
  57446. height: math.unit(8, "feet"),
  57447. default: true
  57448. },
  57449. {
  57450. name: "Macro",
  57451. height: math.unit(150, "feet")
  57452. },
  57453. ]
  57454. ))
  57455. characterMakers.push(() => makeCharacter(
  57456. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57457. {
  57458. front: {
  57459. height: math.unit(18, "feet"),
  57460. weight: math.unit(1975, "lb"),
  57461. name: "Front",
  57462. image: {
  57463. source: "./media/characters/draco/front.svg",
  57464. extra: 1325/1241,
  57465. bottom: 83/1408
  57466. }
  57467. },
  57468. back: {
  57469. height: math.unit(18, "feet"),
  57470. weight: math.unit(1975, "lb"),
  57471. name: "Back",
  57472. image: {
  57473. source: "./media/characters/draco/back.svg",
  57474. extra: 1332/1250,
  57475. bottom: 43/1375
  57476. }
  57477. },
  57478. dick: {
  57479. height: math.unit(7.5, "feet"),
  57480. name: "Dick",
  57481. image: {
  57482. source: "./media/characters/draco/dick.svg"
  57483. }
  57484. },
  57485. },
  57486. [
  57487. {
  57488. name: "Normal",
  57489. height: math.unit(18, "feet"),
  57490. default: true
  57491. },
  57492. ]
  57493. ))
  57494. characterMakers.push(() => makeCharacter(
  57495. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57496. {
  57497. front: {
  57498. height: math.unit(3.2, "meters"),
  57499. name: "Front",
  57500. image: {
  57501. source: "./media/characters/harriett/front.svg",
  57502. extra: 1966/1915,
  57503. bottom: 9/1975
  57504. }
  57505. },
  57506. },
  57507. [
  57508. {
  57509. name: "Normal",
  57510. height: math.unit(3.2, "meters"),
  57511. default: true
  57512. },
  57513. ]
  57514. ))
  57515. characterMakers.push(() => makeCharacter(
  57516. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57517. {
  57518. sitting: {
  57519. height: math.unit(0.8, "meter"),
  57520. name: "Sitting",
  57521. image: {
  57522. source: "./media/characters/serpentus/sitting.svg",
  57523. extra: 293/290,
  57524. bottom: 140/433
  57525. }
  57526. },
  57527. },
  57528. [
  57529. {
  57530. name: "Normal",
  57531. height: math.unit(0.8, "meter"),
  57532. default: true
  57533. },
  57534. ]
  57535. ))
  57536. characterMakers.push(() => makeCharacter(
  57537. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57538. {
  57539. front: {
  57540. height: math.unit(5.7174385736, "feet"),
  57541. name: "Front",
  57542. image: {
  57543. source: "./media/characters/nova-polecat/front.svg",
  57544. extra: 1317/1216,
  57545. bottom: 92/1409
  57546. }
  57547. },
  57548. },
  57549. [
  57550. {
  57551. name: "Normal",
  57552. height: math.unit(5.7174385736, "feet"),
  57553. default: true
  57554. },
  57555. ]
  57556. ))
  57557. characterMakers.push(() => makeCharacter(
  57558. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57559. {
  57560. front: {
  57561. height: math.unit(5 + 4/12, "feet"),
  57562. weight: math.unit(250, "lb"),
  57563. name: "Front",
  57564. image: {
  57565. source: "./media/characters/mook/front.svg",
  57566. extra: 1088/1037,
  57567. bottom: 132/1220
  57568. }
  57569. },
  57570. back: {
  57571. height: math.unit(5 + 1/12, "feet"),
  57572. weight: math.unit(250, "lb"),
  57573. name: "Back",
  57574. image: {
  57575. source: "./media/characters/mook/back.svg",
  57576. extra: 1184/905,
  57577. bottom: 96/1280
  57578. }
  57579. },
  57580. head: {
  57581. height: math.unit(1.85, "feet"),
  57582. name: "Head",
  57583. image: {
  57584. source: "./media/characters/mook/head.svg"
  57585. }
  57586. },
  57587. hand: {
  57588. height: math.unit(1.9, "feet"),
  57589. name: "Hand",
  57590. image: {
  57591. source: "./media/characters/mook/hand.svg"
  57592. }
  57593. },
  57594. palm: {
  57595. height: math.unit(1.84, "feet"),
  57596. name: "Palm",
  57597. image: {
  57598. source: "./media/characters/mook/palm.svg"
  57599. }
  57600. },
  57601. foot: {
  57602. height: math.unit(1.44, "feet"),
  57603. name: "Foot",
  57604. image: {
  57605. source: "./media/characters/mook/foot.svg"
  57606. }
  57607. },
  57608. sole: {
  57609. height: math.unit(1.44, "feet"),
  57610. name: "Sole",
  57611. image: {
  57612. source: "./media/characters/mook/sole.svg"
  57613. }
  57614. },
  57615. },
  57616. [
  57617. {
  57618. name: "Normal",
  57619. height: math.unit(5 + 4/12, "feet"),
  57620. default: true
  57621. },
  57622. {
  57623. name: "Big",
  57624. height: math.unit(12, "feet")
  57625. },
  57626. ]
  57627. ))
  57628. characterMakers.push(() => makeCharacter(
  57629. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57630. {
  57631. front: {
  57632. height: math.unit(6 + 10/12, "feet"),
  57633. weight: math.unit(233, "lb"),
  57634. name: "Front",
  57635. image: {
  57636. source: "./media/characters/kayla/front.svg",
  57637. extra: 1850/1775,
  57638. bottom: 65/1915
  57639. }
  57640. },
  57641. },
  57642. [
  57643. {
  57644. name: "Normal",
  57645. height: math.unit(6 + 10/12, "feet"),
  57646. default: true
  57647. },
  57648. {
  57649. name: "Amazonian",
  57650. height: math.unit(12 + 5/12, "feet")
  57651. },
  57652. {
  57653. name: "Mini Giantess",
  57654. height: math.unit(26, "feet")
  57655. },
  57656. {
  57657. name: "Giantess",
  57658. height: math.unit(200, "feet")
  57659. },
  57660. {
  57661. name: "Mega Giantess",
  57662. height: math.unit(2500, "feet")
  57663. },
  57664. {
  57665. name: "City Sized",
  57666. height: math.unit(50, "miles")
  57667. },
  57668. {
  57669. name: "Country Sized",
  57670. height: math.unit(500, "miles")
  57671. },
  57672. {
  57673. name: "Continent Sized",
  57674. height: math.unit(2500, "miles")
  57675. },
  57676. {
  57677. name: "Planet Sized",
  57678. height: math.unit(10000, "miles")
  57679. },
  57680. {
  57681. name: "Star Sized",
  57682. height: math.unit(5e6, "miles")
  57683. },
  57684. {
  57685. name: "Solar System Sized",
  57686. height: math.unit(125, "AU")
  57687. },
  57688. {
  57689. name: "Galaxy Sized",
  57690. height: math.unit(300e3, "lightyears")
  57691. },
  57692. {
  57693. name: "Universe Sized",
  57694. height: math.unit(200e9, "lightyears")
  57695. },
  57696. {
  57697. name: "Multiverse Sized",
  57698. height: math.unit(20, "exauniverses")
  57699. },
  57700. {
  57701. name: "Mother of Existence",
  57702. height: math.unit(1e6, "yottauniverses")
  57703. },
  57704. ]
  57705. ))
  57706. characterMakers.push(() => makeCharacter(
  57707. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57708. {
  57709. side: {
  57710. height: math.unit(9.5, "meters"),
  57711. name: "Side",
  57712. image: {
  57713. source: "./media/characters/kulve-ragnarok/side.svg",
  57714. extra: 364/326,
  57715. bottom: 50/414
  57716. }
  57717. },
  57718. },
  57719. [
  57720. {
  57721. name: "Normal",
  57722. height: math.unit(9.5, "meters"),
  57723. default: true
  57724. },
  57725. ]
  57726. ))
  57727. characterMakers.push(() => makeCharacter(
  57728. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57729. {
  57730. front: {
  57731. height: math.unit(8 + 9/12, "feet"),
  57732. name: "Front",
  57733. image: {
  57734. source: "./media/characters/atlas-goat/front.svg",
  57735. extra: 1462/1323,
  57736. bottom: 12/1474
  57737. }
  57738. },
  57739. },
  57740. [
  57741. {
  57742. name: "Normal",
  57743. height: math.unit(8 + 9/12, "feet"),
  57744. default: true
  57745. },
  57746. {
  57747. name: "Skyline",
  57748. height: math.unit(845, "feet")
  57749. },
  57750. {
  57751. name: "Orbital",
  57752. height: math.unit(93000, "miles")
  57753. },
  57754. {
  57755. name: "Constellation",
  57756. height: math.unit(27000, "lightyears")
  57757. },
  57758. ]
  57759. ))
  57760. characterMakers.push(() => makeCharacter(
  57761. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57762. {
  57763. side: {
  57764. height: math.unit(1.8, "meters"),
  57765. weight: math.unit(120, "kg"),
  57766. name: "Side",
  57767. image: {
  57768. source: "./media/characters/xie-ling/side.svg",
  57769. extra: 646/574,
  57770. bottom: 44/690
  57771. }
  57772. },
  57773. },
  57774. [
  57775. {
  57776. name: "Tiny",
  57777. height: math.unit(1.80, "meters")
  57778. },
  57779. {
  57780. name: "Small",
  57781. height: math.unit(6, "meters")
  57782. },
  57783. {
  57784. name: "Medium",
  57785. height: math.unit(15, "meters")
  57786. },
  57787. {
  57788. name: "Normal",
  57789. height: math.unit(30, "meters"),
  57790. default: true
  57791. },
  57792. {
  57793. name: "Above Normal",
  57794. height: math.unit(60, "meters")
  57795. },
  57796. {
  57797. name: "Big",
  57798. height: math.unit(220, "meters")
  57799. },
  57800. {
  57801. name: "Giant",
  57802. height: math.unit(2.2, "km")
  57803. },
  57804. {
  57805. name: "Macro",
  57806. height: math.unit(25, "km")
  57807. },
  57808. {
  57809. name: "Mega Macro",
  57810. height: math.unit(350, "km")
  57811. },
  57812. {
  57813. name: "Mega Macro+",
  57814. height: math.unit(5000, "km")
  57815. },
  57816. {
  57817. name: "Goddess",
  57818. height: math.unit(3, "multiverses")
  57819. },
  57820. ]
  57821. ))
  57822. characterMakers.push(() => makeCharacter(
  57823. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  57824. {
  57825. frontSfw: {
  57826. height: math.unit(5 + 11/12, "feet"),
  57827. weight: math.unit(210, "lb"),
  57828. name: "Front",
  57829. image: {
  57830. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  57831. extra: 1928/1821,
  57832. bottom: 45/1973
  57833. }
  57834. },
  57835. backSfw: {
  57836. height: math.unit(5 + 11/12, "feet"),
  57837. weight: math.unit(210, "lb"),
  57838. name: "Back",
  57839. image: {
  57840. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  57841. extra: 1920/1813,
  57842. bottom: 34/1954
  57843. }
  57844. },
  57845. frontNsfw: {
  57846. height: math.unit(5 + 11/12, "feet"),
  57847. weight: math.unit(210, "lb"),
  57848. name: "Front (NSFW)",
  57849. image: {
  57850. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  57851. extra: 1928/1821,
  57852. bottom: 45/1973
  57853. }
  57854. },
  57855. backNsfw: {
  57856. height: math.unit(5 + 11/12, "feet"),
  57857. weight: math.unit(210, "lb"),
  57858. name: "Back (NSFW)",
  57859. image: {
  57860. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  57861. extra: 1920/1813,
  57862. bottom: 34/1954
  57863. }
  57864. },
  57865. },
  57866. [
  57867. {
  57868. name: "Normal",
  57869. height: math.unit(5 + 11/12, "feet"),
  57870. default: true
  57871. },
  57872. {
  57873. name: "Goddess",
  57874. height: math.unit(20 + 3/12, "feet")
  57875. },
  57876. {
  57877. name: "Breaker of Man",
  57878. height: math.unit(329 + 9/12, "feet")
  57879. },
  57880. {
  57881. name: "Solar Justice",
  57882. height: math.unit(0.6, "solarradii")
  57883. },
  57884. {
  57885. name: "She Who Judges",
  57886. height: math.unit(1, "universe")
  57887. },
  57888. ]
  57889. ))
  57890. characterMakers.push(() => makeCharacter(
  57891. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  57892. {
  57893. casual_front: {
  57894. height: math.unit(6 + 1/12, "feet"),
  57895. weight: math.unit(190, "lb"),
  57896. preyCapacity: math.unit(1, "people"),
  57897. name: "Front",
  57898. image: {
  57899. source: "./media/characters/managarmr/casual-front.svg",
  57900. extra: 411/381,
  57901. bottom: 15/426
  57902. },
  57903. extraAttributes: {
  57904. "pawSize": {
  57905. name: "Paw Size",
  57906. power: 1,
  57907. type: "length",
  57908. base: math.unit(0.2, "meters")
  57909. },
  57910. },
  57911. form: "casual",
  57912. },
  57913. casual_back: {
  57914. height: math.unit(6 + 1/12, "feet"),
  57915. weight: math.unit(190, "lb"),
  57916. preyCapacity: math.unit(1, "people"),
  57917. name: "Back",
  57918. image: {
  57919. source: "./media/characters/managarmr/casual-back.svg",
  57920. extra: 413/383,
  57921. bottom: 13/426
  57922. },
  57923. extraAttributes: {
  57924. "pawSize": {
  57925. name: "Paw Size",
  57926. power: 1,
  57927. type: "length",
  57928. base: math.unit(0.2, "meters")
  57929. },
  57930. },
  57931. form: "casual",
  57932. },
  57933. base_front: {
  57934. height: math.unit(7, "feet"),
  57935. weight: math.unit(210, "lb"),
  57936. preyCapacity: math.unit(2, "people"),
  57937. name: "Front",
  57938. image: {
  57939. source: "./media/characters/managarmr/base-front.svg",
  57940. extra: 580/485,
  57941. bottom: 32/612
  57942. },
  57943. extraAttributes: {
  57944. "wingspan": {
  57945. name: "Wingspan",
  57946. power: 1,
  57947. type: "length",
  57948. base: math.unit(4, "meters")
  57949. },
  57950. "pawSize": {
  57951. name: "Paw Size",
  57952. power: 1,
  57953. type: "length",
  57954. base: math.unit(0.2, "meters")
  57955. },
  57956. },
  57957. form: "base",
  57958. },
  57959. "true-divine_front": {
  57960. height: math.unit(40, "feet"),
  57961. weight: math.unit(39000, "lb"),
  57962. preyCapacity: math.unit(375, "people"),
  57963. name: "Front",
  57964. image: {
  57965. source: "./media/characters/managarmr/true-divine-front.svg",
  57966. extra: 725/573,
  57967. bottom: 120/845
  57968. },
  57969. extraAttributes: {
  57970. "wingspan": {
  57971. name: "Wingspan",
  57972. power: 1,
  57973. type: "length",
  57974. base: math.unit(20, "meters")
  57975. },
  57976. "pawSize": {
  57977. name: "Paw Size",
  57978. power: 1,
  57979. type: "length",
  57980. base: math.unit(1.5, "meters")
  57981. },
  57982. },
  57983. form: "true-divine",
  57984. },
  57985. },
  57986. [
  57987. {
  57988. name: "Normal",
  57989. height: math.unit(6 + 1/12, "feet"),
  57990. form: "casual",
  57991. default: true
  57992. },
  57993. {
  57994. name: "Normal",
  57995. height: math.unit(7, "feet"),
  57996. form: "base",
  57997. default: true
  57998. },
  57999. ],
  58000. {
  58001. "casual": {
  58002. name: "Casual",
  58003. default: true
  58004. },
  58005. "base": {
  58006. name: "Base",
  58007. },
  58008. "true-divine": {
  58009. name: "True Divine",
  58010. },
  58011. }
  58012. ))
  58013. characterMakers.push(() => makeCharacter(
  58014. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58015. {
  58016. front: {
  58017. height: math.unit(1.8, "meters"),
  58018. weight: math.unit(110, "kg"),
  58019. name: "Front",
  58020. image: {
  58021. source: "./media/characters/mystra/front.svg",
  58022. extra: 529/442,
  58023. bottom: 31/560
  58024. }
  58025. },
  58026. frontLewd: {
  58027. height: math.unit(1.8, "meters"),
  58028. weight: math.unit(110, "kg"),
  58029. name: "Front (Lewd)",
  58030. image: {
  58031. source: "./media/characters/mystra/front-lewd.svg",
  58032. extra: 529/442,
  58033. bottom: 31/560
  58034. }
  58035. },
  58036. head: {
  58037. height: math.unit(1.63, "feet"),
  58038. name: "Head",
  58039. image: {
  58040. source: "./media/characters/mystra/head.svg"
  58041. }
  58042. },
  58043. paw: {
  58044. height: math.unit(1.9, "feet"),
  58045. name: "Paw",
  58046. image: {
  58047. source: "./media/characters/mystra/paw.svg"
  58048. }
  58049. },
  58050. },
  58051. [
  58052. {
  58053. name: "Incognito",
  58054. height: math.unit(2.3, "meters")
  58055. },
  58056. {
  58057. name: "Small Macro",
  58058. height: math.unit(300, "meters")
  58059. },
  58060. {
  58061. name: "Small Mega",
  58062. height: math.unit(2, "km")
  58063. },
  58064. {
  58065. name: "Mega",
  58066. height: math.unit(30, "km")
  58067. },
  58068. {
  58069. name: "Small Giga",
  58070. height: math.unit(100, "km")
  58071. },
  58072. {
  58073. name: "Giga",
  58074. height: math.unit(1000, "km"),
  58075. default: true
  58076. },
  58077. {
  58078. name: "Continental",
  58079. height: math.unit(5000, "km")
  58080. },
  58081. {
  58082. name: "Terra",
  58083. height: math.unit(20000, "km")
  58084. },
  58085. {
  58086. name: "Solar",
  58087. height: math.unit(2e6, "km")
  58088. },
  58089. {
  58090. name: "Galactic",
  58091. height: math.unit(528502, "lightyears")
  58092. },
  58093. {
  58094. name: "Universal",
  58095. height: math.unit(20, "universes")
  58096. },
  58097. ]
  58098. ))
  58099. characterMakers.push(() => makeCharacter(
  58100. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58101. {
  58102. front: {
  58103. height: math.unit(2, "meters"),
  58104. weight: math.unit(140, "kg"),
  58105. name: "Front",
  58106. image: {
  58107. source: "./media/characters/caleb/front.svg",
  58108. extra: 873/817,
  58109. bottom: 47/920
  58110. }
  58111. },
  58112. back: {
  58113. height: math.unit(2, "meters"),
  58114. weight: math.unit(140, "kg"),
  58115. name: "Back",
  58116. image: {
  58117. source: "./media/characters/caleb/back.svg",
  58118. extra: 877/828,
  58119. bottom: 24/901
  58120. }
  58121. },
  58122. snakeTail: {
  58123. height: math.unit(1.44, "feet"),
  58124. name: "Snake Tail",
  58125. image: {
  58126. source: "./media/characters/caleb/snake-tail.svg"
  58127. }
  58128. },
  58129. dick: {
  58130. height: math.unit(2.6, "feet"),
  58131. name: "Dick",
  58132. image: {
  58133. source: "./media/characters/caleb/dick.svg"
  58134. }
  58135. },
  58136. },
  58137. [
  58138. {
  58139. name: "Incognito",
  58140. height: math.unit(3, "meters")
  58141. },
  58142. {
  58143. name: "Home Size",
  58144. height: math.unit(200, "meters"),
  58145. default: true
  58146. },
  58147. {
  58148. name: "Macro",
  58149. height: math.unit(500, "meters")
  58150. },
  58151. {
  58152. name: "Big Macro",
  58153. height: math.unit(5, "km")
  58154. },
  58155. {
  58156. name: "Giga",
  58157. height: math.unit(250, "km")
  58158. },
  58159. {
  58160. name: "Giga+",
  58161. height: math.unit(5000, "km")
  58162. },
  58163. {
  58164. name: "Small Terra",
  58165. height: math.unit(35e3, "km")
  58166. },
  58167. {
  58168. name: "Terra",
  58169. height: math.unit(2e6, "km")
  58170. },
  58171. {
  58172. name: "Terra+",
  58173. height: math.unit(1.5e6, "km")
  58174. },
  58175. ]
  58176. ))
  58177. characterMakers.push(() => makeCharacter(
  58178. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58179. {
  58180. front: {
  58181. height: math.unit(2, "meters"),
  58182. weight: math.unit(120, "kg"),
  58183. name: "Front",
  58184. image: {
  58185. source: "./media/characters/gilirian/front.svg",
  58186. extra: 805/737,
  58187. bottom: 13/818
  58188. }
  58189. },
  58190. side: {
  58191. height: math.unit(2, "meters"),
  58192. weight: math.unit(120, "kg"),
  58193. name: "Side",
  58194. image: {
  58195. source: "./media/characters/gilirian/side.svg",
  58196. extra: 810/746,
  58197. bottom: 6/816
  58198. }
  58199. },
  58200. back: {
  58201. height: math.unit(2, "meters"),
  58202. weight: math.unit(120, "kg"),
  58203. name: "Back",
  58204. image: {
  58205. source: "./media/characters/gilirian/back.svg",
  58206. extra: 815/745,
  58207. bottom: 15/830
  58208. }
  58209. },
  58210. frontNsfw: {
  58211. height: math.unit(2, "meters"),
  58212. weight: math.unit(120, "kg"),
  58213. name: "Front (NSFW)",
  58214. image: {
  58215. source: "./media/characters/gilirian/front-nsfw.svg",
  58216. extra: 805/737,
  58217. bottom: 13/818
  58218. }
  58219. },
  58220. sideNsfw: {
  58221. height: math.unit(2, "meters"),
  58222. weight: math.unit(120, "kg"),
  58223. name: "Side (NSFW)",
  58224. image: {
  58225. source: "./media/characters/gilirian/side-nsfw.svg",
  58226. extra: 810/746,
  58227. bottom: 6/816
  58228. }
  58229. },
  58230. },
  58231. [
  58232. {
  58233. name: "Incognito",
  58234. height: math.unit(2, "meters"),
  58235. default: true
  58236. },
  58237. {
  58238. name: "Macro",
  58239. height: math.unit(250, "meters")
  58240. },
  58241. {
  58242. name: "Big Macro",
  58243. height: math.unit(1500, "meters")
  58244. },
  58245. {
  58246. name: "Mega",
  58247. height: math.unit(40, "km")
  58248. },
  58249. {
  58250. name: "Giga",
  58251. height: math.unit(300, "km")
  58252. },
  58253. {
  58254. name: "Extra Giga",
  58255. height: math.unit(5000, "km")
  58256. },
  58257. {
  58258. name: "Small Terra",
  58259. height: math.unit(10e3, "km")
  58260. },
  58261. {
  58262. name: "Terra",
  58263. height: math.unit(3e5, "km")
  58264. },
  58265. {
  58266. name: "Galactic",
  58267. height: math.unit(369950, "lightyears")
  58268. },
  58269. ]
  58270. ))
  58271. characterMakers.push(() => makeCharacter(
  58272. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58273. {
  58274. front: {
  58275. height: math.unit(2.5, "meters"),
  58276. weight: math.unit(230, "lb"),
  58277. name: "Front",
  58278. image: {
  58279. source: "./media/characters/tarken/front.svg",
  58280. extra: 764/720,
  58281. bottom: 49/813
  58282. }
  58283. },
  58284. back: {
  58285. height: math.unit(2.5, "meters"),
  58286. weight: math.unit(230, "lb"),
  58287. name: "Back",
  58288. image: {
  58289. source: "./media/characters/tarken/back.svg",
  58290. extra: 756/720,
  58291. bottom: 35/791
  58292. }
  58293. },
  58294. frontNsfw: {
  58295. height: math.unit(2.5, "meters"),
  58296. weight: math.unit(230, "lb"),
  58297. name: "Front (NSFW)",
  58298. image: {
  58299. source: "./media/characters/tarken/front-nsfw.svg",
  58300. extra: 764/720,
  58301. bottom: 49/813
  58302. }
  58303. },
  58304. backNsfw: {
  58305. height: math.unit(2.5, "meters"),
  58306. weight: math.unit(230, "lb"),
  58307. name: "Back (NSFW)",
  58308. image: {
  58309. source: "./media/characters/tarken/back-nsfw.svg",
  58310. extra: 756/720,
  58311. bottom: 35/791
  58312. }
  58313. },
  58314. head: {
  58315. height: math.unit(2.22, "feet"),
  58316. name: "Head",
  58317. image: {
  58318. source: "./media/characters/tarken/head.svg"
  58319. }
  58320. },
  58321. tail: {
  58322. height: math.unit(5.25, "feet"),
  58323. name: "Tail",
  58324. image: {
  58325. source: "./media/characters/tarken/tail.svg"
  58326. }
  58327. },
  58328. dick: {
  58329. height: math.unit(1.95, "feet"),
  58330. name: "Dick",
  58331. image: {
  58332. source: "./media/characters/tarken/dick.svg"
  58333. }
  58334. },
  58335. hand: {
  58336. height: math.unit(1.78, "feet"),
  58337. name: "Hand",
  58338. image: {
  58339. source: "./media/characters/tarken/hand.svg"
  58340. }
  58341. },
  58342. beam: {
  58343. height: math.unit(1.5, "feet"),
  58344. name: "Beam",
  58345. image: {
  58346. source: "./media/characters/tarken/beam.svg"
  58347. }
  58348. },
  58349. },
  58350. [
  58351. {
  58352. name: "Original Size",
  58353. height: math.unit(2.5, "meters")
  58354. },
  58355. {
  58356. name: "Macro",
  58357. height: math.unit(150, "meters"),
  58358. default: true
  58359. },
  58360. {
  58361. name: "Macro+",
  58362. height: math.unit(300, "meters")
  58363. },
  58364. {
  58365. name: "Mega",
  58366. height: math.unit(2, "km")
  58367. },
  58368. {
  58369. name: "Mega+",
  58370. height: math.unit(35, "km")
  58371. },
  58372.  {
  58373. name: "Mega++",
  58374. height: math.unit(60, "km")
  58375. },
  58376. {
  58377. name: "Giga",
  58378. height: math.unit(200, "km")
  58379. },
  58380. {
  58381. name: "Giga+",
  58382. height: math.unit(2500, "km")
  58383. },
  58384. {
  58385. name: "Giga++",
  58386. height: math.unit(6600, "km")
  58387. },
  58388. {
  58389. name: "Terra",
  58390. height: math.unit(20000, "km")
  58391. },
  58392. {
  58393. name: "Terra+",
  58394. height: math.unit(300000, "km")
  58395. },
  58396. ]
  58397. ))
  58398. characterMakers.push(() => makeCharacter(
  58399. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58400. {
  58401. magpie_dressed: {
  58402. height: math.unit(1.7, "meters"),
  58403. weight: math.unit(70, "kg"),
  58404. name: "Dressed",
  58405. image: {
  58406. source: "./media/characters/otreus/magpie-dressed.svg",
  58407. extra: 691/672,
  58408. bottom: 116/807
  58409. },
  58410. form: "magpie",
  58411. default: true
  58412. },
  58413. magpie_nude: {
  58414. height: math.unit(1.7, "meters"),
  58415. weight: math.unit(70, "kg"),
  58416. name: "Nude",
  58417. image: {
  58418. source: "./media/characters/otreus/magpie-nude.svg",
  58419. extra: 691/672,
  58420. bottom: 116/807
  58421. },
  58422. form: "magpie",
  58423. },
  58424. magpie_dressedLewd: {
  58425. height: math.unit(1.7, "meters"),
  58426. weight: math.unit(70, "kg"),
  58427. name: "Dressed (Lewd)",
  58428. image: {
  58429. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58430. extra: 691/672,
  58431. bottom: 116/807
  58432. },
  58433. form: "magpie",
  58434. },
  58435. magpie_nudeLewd: {
  58436. height: math.unit(1.7, "meters"),
  58437. weight: math.unit(70, "kg"),
  58438. name: "Nude (Lewd)",
  58439. image: {
  58440. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58441. extra: 691/672,
  58442. bottom: 116/807
  58443. },
  58444. form: "magpie",
  58445. },
  58446. magpie_leftFoot: {
  58447. height: math.unit(1.58, "feet"),
  58448. name: "Left Foot",
  58449. image: {
  58450. source: "./media/characters/otreus/magpie-left-foot.svg"
  58451. },
  58452. form: "magpie",
  58453. },
  58454. magpie_rightFoot: {
  58455. height: math.unit(1.58, "feet"),
  58456. name: "Right Foot",
  58457. image: {
  58458. source: "./media/characters/otreus/magpie-right-foot.svg"
  58459. },
  58460. form: "magpie",
  58461. },
  58462. magpie_wingspan: {
  58463. height: math.unit(2, "meters"),
  58464. weight: math.unit(70, "kg"),
  58465. name: "Wingspan",
  58466. image: {
  58467. source: "./media/characters/otreus/magpie-wingspan.svg"
  58468. },
  58469. extraAttributes: {
  58470. "wingspan": {
  58471. name: "Wingspan",
  58472. power: 1,
  58473. type: "length",
  58474. base: math.unit(3.35, "meters")
  58475. },
  58476. },
  58477. form: "magpie",
  58478. },
  58479. hippogriff_dressed: {
  58480. height: math.unit(1.7, "meters"),
  58481. weight: math.unit(70, "kg"),
  58482. name: "Dressed",
  58483. image: {
  58484. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58485. extra: 710/689,
  58486. bottom: 67/777
  58487. },
  58488. form: "hippogriff",
  58489. default: true
  58490. },
  58491. hippogriff_nude: {
  58492. height: math.unit(1.7, "meters"),
  58493. weight: math.unit(70, "kg"),
  58494. name: "Nude",
  58495. image: {
  58496. source: "./media/characters/otreus/hippogriff-nude.svg",
  58497. extra: 710/689,
  58498. bottom: 67/777
  58499. },
  58500. form: "hippogriff",
  58501. },
  58502. hippogriff_dressedLewd: {
  58503. height: math.unit(1.7, "meters"),
  58504. weight: math.unit(70, "kg"),
  58505. name: "Dressed (Lewd)",
  58506. image: {
  58507. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58508. extra: 710/689,
  58509. bottom: 67/777
  58510. },
  58511. form: "hippogriff",
  58512. },
  58513. hippogriff_nudeLewd: {
  58514. height: math.unit(1.7, "meters"),
  58515. weight: math.unit(70, "kg"),
  58516. name: "Nude (Lewd)",
  58517. image: {
  58518. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58519. extra: 710/689,
  58520. bottom: 67/777
  58521. },
  58522. form: "hippogriff",
  58523. },
  58524. },
  58525. [
  58526. {
  58527. name: "Original Size",
  58528. height: math.unit(1.7, "meters"),
  58529. allForms: true
  58530. },
  58531. {
  58532. name: "Incognito Size",
  58533. height: math.unit(2, "meters"),
  58534. allForms: true
  58535. },
  58536. {
  58537. name: "Mega",
  58538. height: math.unit(2, "km"),
  58539. allForms: true
  58540. },
  58541. {
  58542. name: "Mega+",
  58543. height: math.unit(40, "km"),
  58544. allForms: true
  58545. },
  58546. {
  58547. name: "Giga",
  58548. height: math.unit(250, "km"),
  58549. allForms: true
  58550. },
  58551. {
  58552. name: "Giga+",
  58553. height: math.unit(3000, "km"),
  58554. allForms: true
  58555. },
  58556. {
  58557. name: "Terra",
  58558. height: math.unit(20000, "km"),
  58559. allForms: true
  58560. },
  58561. {
  58562. name: "Solar (Home Size)",
  58563. height: math.unit(3e6, "km"),
  58564. allForms: true,
  58565. default: true
  58566. },
  58567. ],
  58568. {
  58569. "magpie": {
  58570. name: "Magpie",
  58571. default: true
  58572. },
  58573. "hippogriff": {
  58574. name: "Hippogriff",
  58575. },
  58576. }
  58577. ))
  58578. characterMakers.push(() => makeCharacter(
  58579. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58580. {
  58581. frontDressed: {
  58582. height: math.unit(1.8, "meters"),
  58583. weight: math.unit(90, "kg"),
  58584. name: "Front (Dressed)",
  58585. image: {
  58586. source: "./media/characters/thalia/front-dressed.svg",
  58587. extra: 478/402,
  58588. bottom: 55/533
  58589. }
  58590. },
  58591. backDressed: {
  58592. height: math.unit(1.8, "meters"),
  58593. weight: math.unit(90, "kg"),
  58594. name: "Back (Dressed)",
  58595. image: {
  58596. source: "./media/characters/thalia/back-dressed.svg",
  58597. extra: 500/424,
  58598. bottom: 15/515
  58599. }
  58600. },
  58601. frontNude: {
  58602. height: math.unit(1.8, "meters"),
  58603. weight: math.unit(90, "kg"),
  58604. name: "Front (Nude)",
  58605. image: {
  58606. source: "./media/characters/thalia/front-nude.svg",
  58607. extra: 478/402,
  58608. bottom: 55/533
  58609. }
  58610. },
  58611. backNude: {
  58612. height: math.unit(1.8, "meters"),
  58613. weight: math.unit(90, "kg"),
  58614. name: "Back (Nude)",
  58615. image: {
  58616. source: "./media/characters/thalia/back-nude.svg",
  58617. extra: 500/424,
  58618. bottom: 15/515
  58619. }
  58620. },
  58621. },
  58622. [
  58623. {
  58624. name: "Incognito",
  58625. height: math.unit(3, "meters")
  58626. },
  58627. {
  58628. name: "Macro",
  58629. height: math.unit(500, "meters")
  58630. },
  58631. {
  58632. name: "Mega",
  58633. height: math.unit(5, "km")
  58634. },
  58635. {
  58636. name: "Mega+",
  58637. height: math.unit(30, "km")
  58638. },
  58639. {
  58640. name: "Giga",
  58641. height: math.unit(350, "km")
  58642. },
  58643. {
  58644. name: "Giga+",
  58645. height: math.unit(4000, "km")
  58646. },
  58647. {
  58648. name: "Terra",
  58649. height: math.unit(35000, "km")
  58650. },
  58651. {
  58652. name: "Original Size",
  58653. height: math.unit(130000, "km")
  58654. },
  58655. {
  58656. name: "Solar (Home Size)",
  58657. height: math.unit(4e6, "km"),
  58658. default: true
  58659. },
  58660. ]
  58661. ))
  58662. characterMakers.push(() => makeCharacter(
  58663. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58664. {
  58665. front: {
  58666. height: math.unit(1.8, "meters"),
  58667. weight: math.unit(95, "kg"),
  58668. name: "Front",
  58669. image: {
  58670. source: "./media/characters/shango/front.svg",
  58671. extra: 1925/1774,
  58672. bottom: 67/1992
  58673. }
  58674. },
  58675. back: {
  58676. height: math.unit(1.8, "meters"),
  58677. weight: math.unit(95, "kg"),
  58678. name: "Back",
  58679. image: {
  58680. source: "./media/characters/shango/back.svg",
  58681. extra: 1915/1766,
  58682. bottom: 52/1967
  58683. }
  58684. },
  58685. frontLewd: {
  58686. height: math.unit(1.8, "meters"),
  58687. weight: math.unit(95, "kg"),
  58688. name: "Front (Lewd)",
  58689. image: {
  58690. source: "./media/characters/shango/front-lewd.svg",
  58691. extra: 1925/1774,
  58692. bottom: 67/1992
  58693. }
  58694. },
  58695. backLewd: {
  58696. height: math.unit(1.8, "meters"),
  58697. weight: math.unit(95, "kg"),
  58698. name: "Back (Lewd)",
  58699. image: {
  58700. source: "./media/characters/shango/back-lewd.svg",
  58701. extra: 1915/1766,
  58702. bottom: 52/1967
  58703. }
  58704. },
  58705. maw: {
  58706. height: math.unit(1.64, "feet"),
  58707. name: "Maw",
  58708. image: {
  58709. source: "./media/characters/shango/maw.svg"
  58710. }
  58711. },
  58712. dick: {
  58713. height: math.unit(2.14, "feet"),
  58714. name: "Dick",
  58715. image: {
  58716. source: "./media/characters/shango/dick.svg"
  58717. }
  58718. },
  58719. },
  58720. [
  58721. {
  58722. name: "Incognito",
  58723. height: math.unit(1.8, "meters")
  58724. },
  58725. {
  58726. name: "Home Size",
  58727. height: math.unit(60, "meters"),
  58728. default: true
  58729. },
  58730. {
  58731. name: "Macro",
  58732. height: math.unit(450, "meters")
  58733. },
  58734. {
  58735. name: "Mega",
  58736. height: math.unit(6, "km")
  58737. },
  58738. {
  58739. name: "Mega+",
  58740. height: math.unit(35, "km")
  58741. },
  58742. {
  58743. name: "Giga",
  58744. height: math.unit(500, "km")
  58745. },
  58746. {
  58747. name: "Giga+",
  58748. height: math.unit(5000, "km")
  58749. },
  58750. {
  58751. name: "Terra",
  58752. height: math.unit(60000, "km")
  58753. },
  58754. {
  58755. name: "Terra+",
  58756. height: math.unit(400000, "km")
  58757. },
  58758. ]
  58759. ))
  58760. characterMakers.push(() => makeCharacter(
  58761. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58762. {
  58763. front: {
  58764. height: math.unit(2, "meters"),
  58765. weight: math.unit(95, "kg"),
  58766. name: "Front",
  58767. image: {
  58768. source: "./media/characters/osiris-gryphon/front.svg",
  58769. extra: 1508/1313,
  58770. bottom: 87/1595
  58771. }
  58772. },
  58773. back: {
  58774. height: math.unit(2, "meters"),
  58775. weight: math.unit(95, "kg"),
  58776. name: "Back",
  58777. image: {
  58778. source: "./media/characters/osiris-gryphon/back.svg",
  58779. extra: 1436/1309,
  58780. bottom: 64/1500
  58781. }
  58782. },
  58783. frontLewd: {
  58784. height: math.unit(2, "meters"),
  58785. weight: math.unit(95, "kg"),
  58786. name: "Front-lewd",
  58787. image: {
  58788. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58789. extra: 1508/1313,
  58790. bottom: 87/1595
  58791. }
  58792. },
  58793. wing: {
  58794. height: math.unit(6.3333, "feet"),
  58795. name: "Wing",
  58796. image: {
  58797. source: "./media/characters/osiris-gryphon/wing.svg"
  58798. }
  58799. },
  58800. },
  58801. [
  58802. {
  58803. name: "Incognito",
  58804. height: math.unit(2, "meters")
  58805. },
  58806. {
  58807. name: "Home Size",
  58808. height: math.unit(30, "meters"),
  58809. default: true
  58810. },
  58811. {
  58812. name: "Macro",
  58813. height: math.unit(100, "meters")
  58814. },
  58815. {
  58816. name: "Macro+",
  58817. height: math.unit(350, "meters")
  58818. },
  58819. {
  58820. name: "Mega",
  58821. height: math.unit(40, "km")
  58822. },
  58823. {
  58824. name: "Giga",
  58825. height: math.unit(300, "km")
  58826. },
  58827. {
  58828. name: "Giga+",
  58829. height: math.unit(2000, "km")
  58830. },
  58831. {
  58832. name: "Terra",
  58833. height: math.unit(30000, "km")
  58834. },
  58835. ]
  58836. ))
  58837. characterMakers.push(() => makeCharacter(
  58838. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  58839. {
  58840. front: {
  58841. height: math.unit(2.5, "meters"),
  58842. weight: math.unit(200, "kg"),
  58843. name: "Front",
  58844. image: {
  58845. source: "./media/characters/atlas-dragon/front.svg",
  58846. extra: 745/462,
  58847. bottom: 36/781
  58848. }
  58849. },
  58850. back: {
  58851. height: math.unit(2.5, "meters"),
  58852. weight: math.unit(200, "kg"),
  58853. name: "Back",
  58854. image: {
  58855. source: "./media/characters/atlas-dragon/back.svg",
  58856. extra: 848/822,
  58857. bottom: 57/905
  58858. }
  58859. },
  58860. frontLewd: {
  58861. height: math.unit(2.5, "meters"),
  58862. weight: math.unit(200, "kg"),
  58863. name: "Front (Lewd)",
  58864. image: {
  58865. source: "./media/characters/atlas-dragon/front-lewd.svg",
  58866. extra: 745/462,
  58867. bottom: 36/781
  58868. }
  58869. },
  58870. backLewd: {
  58871. height: math.unit(2.5, "meters"),
  58872. weight: math.unit(200, "kg"),
  58873. name: "Back (Lewd)",
  58874. image: {
  58875. source: "./media/characters/atlas-dragon/back-lewd.svg",
  58876. extra: 848/822,
  58877. bottom: 57/905
  58878. }
  58879. },
  58880. },
  58881. [
  58882. {
  58883. name: "Incognito",
  58884. height: math.unit(2.5, "meters")
  58885. },
  58886. {
  58887. name: "Small Macro",
  58888. height: math.unit(50, "meters")
  58889. },
  58890. {
  58891. name: "Macro",
  58892. height: math.unit(350, "meters")
  58893. },
  58894. {
  58895. name: "Mega",
  58896. height: math.unit(5.5, "kilometers")
  58897. },
  58898. {
  58899. name: "Mega+",
  58900. height: math.unit(50, "km")
  58901. },
  58902. {
  58903. name: "Giga",
  58904. height: math.unit(350, "km")
  58905. },
  58906. {
  58907. name: "Giga+",
  58908. height: math.unit(2000, "km")
  58909. },
  58910. {
  58911. name: "Giga++",
  58912. height: math.unit(6500, "km")
  58913. },
  58914. {
  58915. name: "Terra",
  58916. height: math.unit(30000, "km")
  58917. },
  58918. {
  58919. name: "Terra+",
  58920. height: math.unit(250000, "km")
  58921. },
  58922. {
  58923. name: "True Size",
  58924. height: math.unit(100, "multiverses"),
  58925. default: true
  58926. },
  58927. ]
  58928. ))
  58929. characterMakers.push(() => makeCharacter(
  58930. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  58931. {
  58932. front: {
  58933. height: math.unit(1.8, "m"),
  58934. weight: math.unit(120, "kg"),
  58935. name: "Front",
  58936. image: {
  58937. source: "./media/characters/chey/front.svg",
  58938. extra: 1359/1270,
  58939. bottom: 18/1377
  58940. }
  58941. },
  58942. arm: {
  58943. height: math.unit(2.05, "feet"),
  58944. name: "Arm",
  58945. image: {
  58946. source: "./media/characters/chey/arm.svg"
  58947. }
  58948. },
  58949. head: {
  58950. height: math.unit(1.89, "feet"),
  58951. name: "Head",
  58952. image: {
  58953. source: "./media/characters/chey/head.svg"
  58954. }
  58955. },
  58956. },
  58957. [
  58958. {
  58959. name: "Original Size",
  58960. height: math.unit(5, "cm")
  58961. },
  58962. {
  58963. name: "Incognito Size",
  58964. height: math.unit(2.4, "m")
  58965. },
  58966. {
  58967. name: "Home Size",
  58968. height: math.unit(200, "meters"),
  58969. default: true
  58970. },
  58971. {
  58972. name: "Mega",
  58973. height: math.unit(2, "km")
  58974. },
  58975. {
  58976. name: "Giga (Preferred Size)",
  58977. height: math.unit(2000, "km")
  58978. },
  58979. {
  58980. name: "Giga+",
  58981. height: math.unit(6000, "km")
  58982. },
  58983. {
  58984. name: "Terra",
  58985. height: math.unit(17000, "km")
  58986. },
  58987. {
  58988. name: "Terra+",
  58989. height: math.unit(75000, "km")
  58990. },
  58991. {
  58992. name: "Terra++",
  58993. height: math.unit(225000, "km")
  58994. },
  58995. ]
  58996. ))
  58997. characterMakers.push(() => makeCharacter(
  58998. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  58999. {
  59000. side: {
  59001. height: math.unit(7.8, "meters"),
  59002. name: "Side",
  59003. image: {
  59004. source: "./media/characters/ragnarok/side.svg",
  59005. extra: 725/621,
  59006. bottom: 72/797
  59007. }
  59008. },
  59009. },
  59010. [
  59011. {
  59012. name: "Normal",
  59013. height: math.unit(7.8, "meters"),
  59014. default: true
  59015. },
  59016. ]
  59017. ))
  59018. characterMakers.push(() => makeCharacter(
  59019. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59020. {
  59021. hyena_front: {
  59022. height: math.unit(2.1, "meters"),
  59023. weight: math.unit(110, "kg"),
  59024. name: "Front",
  59025. image: {
  59026. source: "./media/characters/nima/hyena-front.svg",
  59027. extra: 1904/1796,
  59028. bottom: 67/1971
  59029. },
  59030. form: "hyena",
  59031. },
  59032. hyena_back: {
  59033. height: math.unit(2.1, "meters"),
  59034. weight: math.unit(110, "kg"),
  59035. name: "Back",
  59036. image: {
  59037. source: "./media/characters/nima/hyena-back.svg",
  59038. extra: 1964/1884,
  59039. bottom: 35/1999
  59040. },
  59041. form: "hyena",
  59042. },
  59043. shark_front: {
  59044. height: math.unit(1.95, "meters"),
  59045. weight: math.unit(110, "kg"),
  59046. name: "Front",
  59047. image: {
  59048. source: "./media/characters/nima/shark-front.svg",
  59049. extra: 2238/2013,
  59050. bottom: 0/223
  59051. },
  59052. form: "shark",
  59053. },
  59054. paw: {
  59055. height: math.unit(1, "feet"),
  59056. name: "Paw",
  59057. image: {
  59058. source: "./media/characters/nima/paw.svg"
  59059. }
  59060. },
  59061. circlet: {
  59062. height: math.unit(0.3, "feet"),
  59063. name: "Circlet",
  59064. image: {
  59065. source: "./media/characters/nima/circlet.svg"
  59066. }
  59067. },
  59068. necklace: {
  59069. height: math.unit(1.2, "feet"),
  59070. name: "Necklace",
  59071. image: {
  59072. source: "./media/characters/nima/necklace.svg"
  59073. }
  59074. },
  59075. bracelet: {
  59076. height: math.unit(0.51, "feet"),
  59077. name: "Bracelet",
  59078. image: {
  59079. source: "./media/characters/nima/bracelet.svg"
  59080. }
  59081. },
  59082. armband: {
  59083. height: math.unit(1.3, "feet"),
  59084. name: "Armband",
  59085. image: {
  59086. source: "./media/characters/nima/armband.svg"
  59087. }
  59088. },
  59089. },
  59090. [
  59091. {
  59092. name: "Incognito",
  59093. height: math.unit(2.1, "meters"),
  59094. allForms: true
  59095. },
  59096. {
  59097. name: "Small Macro",
  59098. height: math.unit(50, "meters"),
  59099. allForms: true
  59100. },
  59101. {
  59102. name: "Macro",
  59103. height: math.unit(200, "meters"),
  59104. allForms: true
  59105. },
  59106. {
  59107. name: "Mega",
  59108. height: math.unit(2.5, "km"),
  59109. allForms: true
  59110. },
  59111. {
  59112. name: "Mega+",
  59113. height: math.unit(30, "km"),
  59114. allForms: true
  59115. },
  59116. {
  59117. name: "Giga (Home Size)",
  59118. height: math.unit(400, "km"),
  59119. allForms: true,
  59120. default: true
  59121. },
  59122. {
  59123. name: "Giga+",
  59124. height: math.unit(2500, "km"),
  59125. allForms: true
  59126. },
  59127. {
  59128. name: "Giga++",
  59129. height: math.unit(8000, "km"),
  59130. allForms: true
  59131. },
  59132. {
  59133. name: "Terra",
  59134. height: math.unit(20000, "km"),
  59135. allForms: true
  59136. },
  59137. {
  59138. name: "Terra+",
  59139. height: math.unit(70000, "km"),
  59140. allForms: true
  59141. },
  59142. {
  59143. name: "Terra++",
  59144. height: math.unit(600000, "km"),
  59145. allForms: true
  59146. },
  59147. {
  59148. name: "Galactic",
  59149. height: math.unit(40, "galaxies"),
  59150. allForms: true
  59151. },
  59152. {
  59153. name: "Universal",
  59154. height: math.unit(40, "universes"),
  59155. allForms: true
  59156. },
  59157. ],
  59158. {
  59159. "hyena": {
  59160. name: "Hyena",
  59161. default: true
  59162. },
  59163. "shark": {
  59164. name: "Shark",
  59165. },
  59166. }
  59167. ))
  59168. characterMakers.push(() => makeCharacter(
  59169. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59170. {
  59171. anthro_front: {
  59172. height: math.unit(1.5, "meters"),
  59173. name: "Front",
  59174. image: {
  59175. source: "./media/characters/adelaide/anthro-front.svg",
  59176. extra: 860/783,
  59177. bottom: 60/920
  59178. },
  59179. form: "anthro",
  59180. default: true
  59181. },
  59182. hand: {
  59183. height: math.unit(0.65, "feet"),
  59184. name: "Hand",
  59185. image: {
  59186. source: "./media/characters/adelaide/hand.svg"
  59187. },
  59188. form: "anthro"
  59189. },
  59190. foot: {
  59191. height: math.unit(1.38 * 259 / 314, "feet"),
  59192. name: "Foot",
  59193. image: {
  59194. source: "./media/characters/adelaide/foot.svg",
  59195. extra: 259/259,
  59196. bottom: 55/314
  59197. },
  59198. form: "anthro"
  59199. },
  59200. feather: {
  59201. height: math.unit(0.85, "feet"),
  59202. name: "Feather",
  59203. image: {
  59204. source: "./media/characters/adelaide/feather.svg"
  59205. },
  59206. form: "anthro"
  59207. },
  59208. feral_side: {
  59209. height: math.unit(1, "meters"),
  59210. name: "Side",
  59211. image: {
  59212. source: "./media/characters/adelaide/feral-side.svg",
  59213. extra: 550/467,
  59214. bottom: 37/587
  59215. },
  59216. form: "feral",
  59217. default: true
  59218. },
  59219. feral_hand: {
  59220. height: math.unit(0.58, "feet"),
  59221. name: "Hand",
  59222. image: {
  59223. source: "./media/characters/adelaide/hand.svg"
  59224. },
  59225. form: "feral"
  59226. },
  59227. feral_foot: {
  59228. height: math.unit(1.2 * 259 / 314, "feet"),
  59229. name: "Foot",
  59230. image: {
  59231. source: "./media/characters/adelaide/foot.svg",
  59232. extra: 259/259,
  59233. bottom: 55/314
  59234. },
  59235. form: "feral"
  59236. },
  59237. feral_feather: {
  59238. height: math.unit(0.63, "feet"),
  59239. name: "Feather",
  59240. image: {
  59241. source: "./media/characters/adelaide/feather.svg"
  59242. },
  59243. form: "feral"
  59244. },
  59245. },
  59246. [
  59247. {
  59248. name: "Normal",
  59249. height: math.unit(1.5, "meters"),
  59250. form: "anthro",
  59251. default: true
  59252. },
  59253. {
  59254. name: "Normal",
  59255. height: math.unit(1, "meters"),
  59256. form: "feral",
  59257. default: true
  59258. },
  59259. ],
  59260. {
  59261. "anthro": {
  59262. name: "Anthro",
  59263. default: true
  59264. },
  59265. "feral": {
  59266. name: "Feral",
  59267. },
  59268. }
  59269. ))
  59270. characterMakers.push(() => makeCharacter(
  59271. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59272. {
  59273. front: {
  59274. height: math.unit(2.5, "meters"),
  59275. name: "Front",
  59276. image: {
  59277. source: "./media/characters/goa/front.svg",
  59278. extra: 1109/1013,
  59279. bottom: 150/1259
  59280. }
  59281. },
  59282. },
  59283. [
  59284. {
  59285. name: "Normal",
  59286. height: math.unit(2.5, "meters"),
  59287. default: true
  59288. },
  59289. ]
  59290. ))
  59291. characterMakers.push(() => makeCharacter(
  59292. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59293. {
  59294. front: {
  59295. height: math.unit(2, "meters"),
  59296. weight: math.unit(100, "kg"),
  59297. name: "Front",
  59298. image: {
  59299. source: "./media/characters/kiki-weavile/front.svg",
  59300. extra: 357/332,
  59301. bottom: 60/417
  59302. }
  59303. },
  59304. },
  59305. [
  59306. {
  59307. name: "Normal",
  59308. height: math.unit(2, "meters"),
  59309. default: true
  59310. },
  59311. ]
  59312. ))
  59313. characterMakers.push(() => makeCharacter(
  59314. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59315. {
  59316. side: {
  59317. height: math.unit(1.6, "meters"),
  59318. name: "Side",
  59319. image: {
  59320. source: "./media/characters/liza/side.svg",
  59321. extra: 943/915,
  59322. bottom: 72/1015
  59323. }
  59324. },
  59325. },
  59326. [
  59327. {
  59328. name: "Normal",
  59329. height: math.unit(1.6, "meters"),
  59330. default: true
  59331. },
  59332. ]
  59333. ))
  59334. characterMakers.push(() => makeCharacter(
  59335. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59336. {
  59337. side: {
  59338. height: math.unit(2.5, "meters"),
  59339. name: "Side",
  59340. image: {
  59341. source: "./media/characters/persephone-sweetbreath/side.svg",
  59342. extra: 796/700,
  59343. bottom: 44/840
  59344. }
  59345. },
  59346. },
  59347. [
  59348. {
  59349. name: "Normal",
  59350. height: math.unit(2.5, "meters"),
  59351. default: true
  59352. },
  59353. ]
  59354. ))
  59355. characterMakers.push(() => makeCharacter(
  59356. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59357. {
  59358. front: {
  59359. height: math.unit(32, "meters"),
  59360. name: "Front",
  59361. image: {
  59362. source: "./media/characters/pierce/front.svg",
  59363. extra: 1695/1475,
  59364. bottom: 185/1880
  59365. }
  59366. },
  59367. side: {
  59368. height: math.unit(32, "meters"),
  59369. name: "Side",
  59370. image: {
  59371. source: "./media/characters/pierce/side.svg",
  59372. extra: 974/859,
  59373. bottom: 43/1017
  59374. }
  59375. },
  59376. frontWingless: {
  59377. height: math.unit(32, "meters"),
  59378. name: "Front (Wingless)",
  59379. image: {
  59380. source: "./media/characters/pierce/front-wingless.svg",
  59381. extra: 1695/1475,
  59382. bottom: 185/1880
  59383. }
  59384. },
  59385. sideWingless: {
  59386. height: math.unit(32, "meters"),
  59387. name: "Side (Wingless)",
  59388. image: {
  59389. source: "./media/characters/pierce/side-wingless.svg",
  59390. extra: 974/859,
  59391. bottom: 43/1017
  59392. }
  59393. },
  59394. maw: {
  59395. height: math.unit(19.3, "meters"),
  59396. name: "Maw",
  59397. image: {
  59398. source: "./media/characters/pierce/maw.svg"
  59399. }
  59400. },
  59401. },
  59402. [
  59403. {
  59404. name: "Small",
  59405. height: math.unit(8.5, "meters")
  59406. },
  59407. {
  59408. name: "Normal",
  59409. height: math.unit(32, "meters"),
  59410. default: true
  59411. },
  59412. ]
  59413. ))
  59414. characterMakers.push(() => makeCharacter(
  59415. { name: "Shira", species: ["cobra", "deity"], tags: ["anthro"] },
  59416. {
  59417. front: {
  59418. height: math.unit(2.3, "meters"),
  59419. weight: math.unit(165, "kg"),
  59420. name: "Front",
  59421. image: {
  59422. source: "./media/characters/shira/front.svg",
  59423. extra: 924/919,
  59424. bottom: 17/941
  59425. }
  59426. },
  59427. back: {
  59428. height: math.unit(2.3, "meters"),
  59429. weight: math.unit(165, "kg"),
  59430. name: "Back",
  59431. image: {
  59432. source: "./media/characters/shira/back.svg",
  59433. extra: 928/922,
  59434. bottom: 18/946
  59435. }
  59436. },
  59437. frontLewd: {
  59438. height: math.unit(2.3, "meters"),
  59439. weight: math.unit(165, "kg"),
  59440. name: "Front (Lewd)",
  59441. image: {
  59442. source: "./media/characters/shira/front-lewd.svg",
  59443. extra: 924/919,
  59444. bottom: 17/941
  59445. }
  59446. },
  59447. backLewd: {
  59448. height: math.unit(2.3, "meters"),
  59449. weight: math.unit(165, "kg"),
  59450. name: "Back (Lewd)",
  59451. image: {
  59452. source: "./media/characters/shira/back-lewd.svg",
  59453. extra: 928/922,
  59454. bottom: 18/946
  59455. }
  59456. },
  59457. maw: {
  59458. height: math.unit(1.14, "feet"),
  59459. name: "Maw",
  59460. image: {
  59461. source: "./media/characters/shira/maw.svg"
  59462. }
  59463. },
  59464. },
  59465. [
  59466. {
  59467. name: "Incognito",
  59468. height: math.unit(2.3, "meters")
  59469. },
  59470. {
  59471. name: "Home Size",
  59472. height: math.unit(150, "meters"),
  59473. default: true
  59474. },
  59475. {
  59476. name: "Macro",
  59477. height: math.unit(2, "km")
  59478. },
  59479. {
  59480. name: "Mega",
  59481. height: math.unit(30, "km")
  59482. },
  59483. {
  59484. name: "Giga",
  59485. height: math.unit(450, "km")
  59486. },
  59487. {
  59488. name: "Giga+",
  59489. height: math.unit(3000, "km")
  59490. },
  59491. {
  59492. name: "Giga++",
  59493. height: math.unit(6000, "km")
  59494. },
  59495. {
  59496. name: "Terra",
  59497. height: math.unit(80000, "km")
  59498. },
  59499. {
  59500. name: "Terra+",
  59501. height: math.unit(350000, "km")
  59502. },
  59503. {
  59504. name: "Solar",
  59505. height: math.unit(1e6, "km")
  59506. },
  59507. ]
  59508. ))
  59509. characterMakers.push(() => makeCharacter(
  59510. { name: "Daxerios", species: ["wolf", "cerberus"], tags: ["anthro"] },
  59511. {
  59512. front: {
  59513. height: math.unit(2, "meters"),
  59514. weight: math.unit(160, "kg"),
  59515. name: "Front",
  59516. image: {
  59517. source: "./media/characters/daxerios/front.svg",
  59518. extra: 1334/1277,
  59519. bottom: 45/1379
  59520. }
  59521. },
  59522. frontLewd: {
  59523. height: math.unit(2, "meters"),
  59524. weight: math.unit(160, "kg"),
  59525. name: "Front (Lewd)",
  59526. image: {
  59527. source: "./media/characters/daxerios/front-lewd.svg",
  59528. extra: 1334/1277,
  59529. bottom: 45/1379
  59530. }
  59531. },
  59532. dick: {
  59533. height: math.unit(2.35, "feet"),
  59534. name: "Dick",
  59535. image: {
  59536. source: "./media/characters/daxerios/dick.svg"
  59537. }
  59538. },
  59539. },
  59540. [
  59541. {
  59542. name: "\"Small\"",
  59543. height: math.unit(5, "meters")
  59544. },
  59545. {
  59546. name: "Original Size",
  59547. height: math.unit(500, "meters"),
  59548. default: true
  59549. },
  59550. {
  59551. name: "Mega",
  59552. height: math.unit(2, "km")
  59553. },
  59554. {
  59555. name: "Mega+",
  59556. height: math.unit(35, "km")
  59557. },
  59558. {
  59559. name: "Giga",
  59560. height: math.unit(250, "km")
  59561. },
  59562. {
  59563. name: "Giga+",
  59564. height: math.unit(3000, "km")
  59565. },
  59566. {
  59567. name: "Terra",
  59568. height: math.unit(25000, "km")
  59569. },
  59570. {
  59571. name: "Terra+",
  59572. height: math.unit(300000, "km")
  59573. },
  59574. {
  59575. name: "Solar",
  59576. height: math.unit(1e6, "km")
  59577. },
  59578. ]
  59579. ))
  59580. characterMakers.push(() => makeCharacter(
  59581. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59582. {
  59583. front: {
  59584. height: math.unit(8 + 4/12, "feet"),
  59585. weight: math.unit(464, "lb"),
  59586. name: "Front",
  59587. image: {
  59588. source: "./media/characters/caveat/front.svg",
  59589. extra: 1861/1678,
  59590. bottom: 40/1901
  59591. }
  59592. },
  59593. },
  59594. [
  59595. {
  59596. name: "Normal",
  59597. height: math.unit(8 + 4/12, "feet"),
  59598. default: true
  59599. },
  59600. ]
  59601. ))
  59602. characterMakers.push(() => makeCharacter(
  59603. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59604. {
  59605. front: {
  59606. height: math.unit(12, "feet"),
  59607. weight: math.unit(1800, "lb"),
  59608. name: "Front",
  59609. image: {
  59610. source: "./media/characters/centbair/front.svg",
  59611. extra: 781/663,
  59612. bottom: 25/806
  59613. }
  59614. },
  59615. },
  59616. [
  59617. {
  59618. name: "Normal",
  59619. height: math.unit(12, "feet"),
  59620. default: true
  59621. },
  59622. ]
  59623. ))
  59624. //characters
  59625. function makeCharacters() {
  59626. const results = [];
  59627. characterMakers.forEach(character => {
  59628. results.push(character());
  59629. });
  59630. return results;
  59631. }