less copy protection, more size visualization
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

52726 řádky
1.3 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. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "avian"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "avian"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["avian"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["monster-hunter"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["avian"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. }
  2011. //species
  2012. function getSpeciesInfo(speciesList) {
  2013. let result = new Set();
  2014. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2015. result.add(entry)
  2016. });
  2017. return Array.from(result);
  2018. };
  2019. function getSpeciesInfoHelper(species) {
  2020. if (!speciesData[species]) {
  2021. console.warn(species + " doesn't exist");
  2022. return [];
  2023. }
  2024. if (speciesData[species].parents) {
  2025. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2026. } else {
  2027. return [species];
  2028. }
  2029. }
  2030. characterMakers.push(() => makeCharacter(
  2031. {
  2032. name: "Fen",
  2033. species: ["crux"],
  2034. description: {
  2035. title: "Bio",
  2036. text: "Very furry. Sheds on everything."
  2037. },
  2038. tags: [
  2039. "anthro",
  2040. "goo"
  2041. ]
  2042. },
  2043. {
  2044. front: {
  2045. height: math.unit(12, "feet"),
  2046. weight: math.unit(2400, "lb"),
  2047. name: "Front",
  2048. image: {
  2049. source: "./media/characters/fen/front.svg",
  2050. extra: 1804/1562,
  2051. bottom: 205/2009
  2052. },
  2053. extraAttributes: {
  2054. pawSize: {
  2055. name: "Paw Size",
  2056. power: 2,
  2057. type: "area",
  2058. base: math.unit(0.35, "m^2")
  2059. }
  2060. }
  2061. },
  2062. diving: {
  2063. height: math.unit(4.9, "meters"),
  2064. weight: math.unit(2400, "lb"),
  2065. name: "Diving",
  2066. image: {
  2067. source: "./media/characters/fen/diving.svg"
  2068. }
  2069. },
  2070. goo: {
  2071. height: math.unit(12, "feet"),
  2072. weight: math.unit(3600, "lb"),
  2073. volume: math.unit(1000, "liters"),
  2074. preyCapacity: math.unit(6, "people"),
  2075. name: "Goo",
  2076. image: {
  2077. source: "./media/characters/fen/goo.svg",
  2078. extra: 1307/1071,
  2079. bottom: 134/1441
  2080. }
  2081. },
  2082. maw: {
  2083. height: math.unit(5.03, "feet"),
  2084. name: "Maw",
  2085. image: {
  2086. source: "./media/characters/fen/maw.svg"
  2087. }
  2088. },
  2089. gooCeiling: {
  2090. height: math.unit(6.6, "feet"),
  2091. weight: math.unit(3000, "lb"),
  2092. volume: math.unit(1000, "liters"),
  2093. preyCapacity: math.unit(6, "people"),
  2094. name: "Goo (Ceiling)",
  2095. image: {
  2096. source: "./media/characters/fen/goo-ceiling.svg"
  2097. }
  2098. },
  2099. paw: {
  2100. height: math.unit(3.77, "feet"),
  2101. name: "Paw",
  2102. image: {
  2103. source: "./media/characters/fen/paw.svg"
  2104. },
  2105. extraAttributes: {
  2106. "toeSize": {
  2107. name: "Toe Size",
  2108. power: 2,
  2109. type: "area",
  2110. base: math.unit(0.02875, "m^2")
  2111. },
  2112. "pawSize": {
  2113. name: "Paw Size",
  2114. power: 2,
  2115. type: "area",
  2116. base: math.unit(0.378, "m^2")
  2117. },
  2118. }
  2119. },
  2120. tail: {
  2121. height: math.unit(12.1, "feet"),
  2122. name: "Tail",
  2123. image: {
  2124. source: "./media/characters/fen/tail.svg"
  2125. }
  2126. },
  2127. tailFull: {
  2128. height: math.unit(12.1, "feet"),
  2129. name: "Full Tail",
  2130. image: {
  2131. source: "./media/characters/fen/tail-full.svg"
  2132. }
  2133. },
  2134. back: {
  2135. height: math.unit(12, "feet"),
  2136. weight: math.unit(2400, "lb"),
  2137. name: "Back",
  2138. image: {
  2139. source: "./media/characters/fen/back.svg",
  2140. },
  2141. info: {
  2142. description: {
  2143. mode: "append",
  2144. text: "\n\nHe is not currently looking at you."
  2145. }
  2146. }
  2147. },
  2148. full: {
  2149. height: math.unit(1.85, "meter"),
  2150. weight: math.unit(3200, "lb"),
  2151. name: "Full",
  2152. image: {
  2153. source: "./media/characters/fen/full.svg",
  2154. extra: 1133/859,
  2155. bottom: 145/1278
  2156. },
  2157. info: {
  2158. description: {
  2159. mode: "append",
  2160. text: "\n\nMunch."
  2161. }
  2162. }
  2163. },
  2164. gooLounging: {
  2165. height: math.unit(4.53, "feet"),
  2166. weight: math.unit(3000, "lb"),
  2167. preyCapacity: math.unit(6, "people"),
  2168. name: "Goo (Lounging)",
  2169. image: {
  2170. source: "./media/characters/fen/goo-lounging.svg",
  2171. bottom: 116 / 613
  2172. }
  2173. },
  2174. lounging: {
  2175. height: math.unit(10.52, "feet"),
  2176. weight: math.unit(2400, "lb"),
  2177. name: "Lounging",
  2178. image: {
  2179. source: "./media/characters/fen/lounging.svg"
  2180. }
  2181. },
  2182. },
  2183. [
  2184. {
  2185. name: "Small",
  2186. height: math.unit(2.2428, "meter")
  2187. },
  2188. {
  2189. name: "Normal",
  2190. height: math.unit(12, "feet"),
  2191. default: true,
  2192. },
  2193. {
  2194. name: "Big",
  2195. height: math.unit(20, "feet")
  2196. },
  2197. {
  2198. name: "Minimacro",
  2199. height: math.unit(40, "feet"),
  2200. info: {
  2201. description: {
  2202. mode: "append",
  2203. text: "\n\nTOO DAMN BIG"
  2204. }
  2205. }
  2206. },
  2207. {
  2208. name: "Macro",
  2209. height: math.unit(100, "feet"),
  2210. info: {
  2211. description: {
  2212. mode: "append",
  2213. text: "\n\nTOO DAMN BIG"
  2214. }
  2215. }
  2216. },
  2217. {
  2218. name: "Megamacro",
  2219. height: math.unit(2, "miles")
  2220. },
  2221. {
  2222. name: "Gigamacro",
  2223. height: math.unit(10, "earths")
  2224. },
  2225. ]
  2226. ))
  2227. characterMakers.push(() => makeCharacter(
  2228. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2229. {
  2230. front: {
  2231. height: math.unit(183, "cm"),
  2232. weight: math.unit(80, "kg"),
  2233. name: "Front",
  2234. image: {
  2235. source: "./media/characters/sofia-fluttertail/front.svg",
  2236. bottom: 0.01,
  2237. extra: 2154 / 2081
  2238. }
  2239. },
  2240. frontAlt: {
  2241. height: math.unit(183, "cm"),
  2242. weight: math.unit(80, "kg"),
  2243. name: "Front (alt)",
  2244. image: {
  2245. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2246. }
  2247. },
  2248. back: {
  2249. height: math.unit(183, "cm"),
  2250. weight: math.unit(80, "kg"),
  2251. name: "Back",
  2252. image: {
  2253. source: "./media/characters/sofia-fluttertail/back.svg"
  2254. }
  2255. },
  2256. kneeling: {
  2257. height: math.unit(125, "cm"),
  2258. weight: math.unit(80, "kg"),
  2259. name: "Kneeling",
  2260. image: {
  2261. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2262. extra: 1033 / 977,
  2263. bottom: 23.7 / 1057
  2264. }
  2265. },
  2266. maw: {
  2267. height: math.unit(183 / 5, "cm"),
  2268. name: "Maw",
  2269. image: {
  2270. source: "./media/characters/sofia-fluttertail/maw.svg"
  2271. }
  2272. },
  2273. mawcloseup: {
  2274. height: math.unit(183 / 5 * 0.41, "cm"),
  2275. name: "Maw (Closeup)",
  2276. image: {
  2277. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2278. }
  2279. },
  2280. paws: {
  2281. height: math.unit(1.17, "feet"),
  2282. name: "Paws",
  2283. image: {
  2284. source: "./media/characters/sofia-fluttertail/paws.svg",
  2285. extra: 851 / 851,
  2286. bottom: 17 / 868
  2287. }
  2288. },
  2289. },
  2290. [
  2291. {
  2292. name: "Normal",
  2293. height: math.unit(1.83, "meter")
  2294. },
  2295. {
  2296. name: "Size Thief",
  2297. height: math.unit(18, "feet")
  2298. },
  2299. {
  2300. name: "50 Foot Collie",
  2301. height: math.unit(50, "feet")
  2302. },
  2303. {
  2304. name: "Macro",
  2305. height: math.unit(96, "feet"),
  2306. default: true
  2307. },
  2308. {
  2309. name: "Megamerger",
  2310. height: math.unit(650, "feet")
  2311. },
  2312. ]
  2313. ))
  2314. characterMakers.push(() => makeCharacter(
  2315. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2316. {
  2317. front: {
  2318. height: math.unit(7, "feet"),
  2319. weight: math.unit(100, "kg"),
  2320. name: "Front",
  2321. image: {
  2322. source: "./media/characters/march/front.svg",
  2323. extra: 1992/1851,
  2324. bottom: 39/2031
  2325. }
  2326. },
  2327. foot: {
  2328. height: math.unit(0.9, "feet"),
  2329. name: "Foot",
  2330. image: {
  2331. source: "./media/characters/march/foot.svg"
  2332. }
  2333. },
  2334. },
  2335. [
  2336. {
  2337. name: "Normal",
  2338. height: math.unit(7.9, "feet")
  2339. },
  2340. {
  2341. name: "Macro",
  2342. height: math.unit(220, "meters")
  2343. },
  2344. {
  2345. name: "Megamacro",
  2346. height: math.unit(2.98, "km"),
  2347. default: true
  2348. },
  2349. {
  2350. name: "Gigamacro",
  2351. height: math.unit(15963, "km")
  2352. },
  2353. {
  2354. name: "Teramacro",
  2355. height: math.unit(2980000000, "km")
  2356. },
  2357. {
  2358. name: "Examacro",
  2359. height: math.unit(250, "parsecs")
  2360. },
  2361. ]
  2362. ))
  2363. characterMakers.push(() => makeCharacter(
  2364. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2365. {
  2366. front: {
  2367. height: math.unit(6, "feet"),
  2368. weight: math.unit(60, "kg"),
  2369. name: "Front",
  2370. image: {
  2371. source: "./media/characters/noir/front.svg",
  2372. extra: 1,
  2373. bottom: 0.032
  2374. }
  2375. },
  2376. },
  2377. [
  2378. {
  2379. name: "Normal",
  2380. height: math.unit(6.6, "feet")
  2381. },
  2382. {
  2383. name: "Macro",
  2384. height: math.unit(500, "feet")
  2385. },
  2386. {
  2387. name: "Megamacro",
  2388. height: math.unit(2.5, "km"),
  2389. default: true
  2390. },
  2391. {
  2392. name: "Gigamacro",
  2393. height: math.unit(22500, "km")
  2394. },
  2395. {
  2396. name: "Teramacro",
  2397. height: math.unit(2500000000, "km")
  2398. },
  2399. {
  2400. name: "Examacro",
  2401. height: math.unit(200, "parsecs")
  2402. },
  2403. ]
  2404. ))
  2405. characterMakers.push(() => makeCharacter(
  2406. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2407. {
  2408. front: {
  2409. height: math.unit(7, "feet"),
  2410. weight: math.unit(100, "kg"),
  2411. name: "Front",
  2412. image: {
  2413. source: "./media/characters/okuri/front.svg",
  2414. extra: 739/665,
  2415. bottom: 39/778
  2416. }
  2417. },
  2418. back: {
  2419. height: math.unit(7, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Back",
  2422. image: {
  2423. source: "./media/characters/okuri/back.svg",
  2424. extra: 734/653,
  2425. bottom: 13/747
  2426. }
  2427. },
  2428. sitting: {
  2429. height: math.unit(2.95, "feet"),
  2430. weight: math.unit(100, "kg"),
  2431. name: "Sitting",
  2432. image: {
  2433. source: "./media/characters/okuri/sitting.svg",
  2434. extra: 370/318,
  2435. bottom: 99/469
  2436. }
  2437. },
  2438. },
  2439. [
  2440. {
  2441. name: "Smallest",
  2442. height: math.unit(5 + 2/12, "feet")
  2443. },
  2444. {
  2445. name: "Smaller",
  2446. height: math.unit(300, "feet")
  2447. },
  2448. {
  2449. name: "Small",
  2450. height: math.unit(1000, "feet")
  2451. },
  2452. {
  2453. name: "Macro",
  2454. height: math.unit(1, "mile")
  2455. },
  2456. {
  2457. name: "Mega Macro (Small)",
  2458. height: math.unit(20, "km")
  2459. },
  2460. {
  2461. name: "Mega Macro (Large)",
  2462. height: math.unit(600, "km")
  2463. },
  2464. {
  2465. name: "Giga Macro",
  2466. height: math.unit(10000, "km")
  2467. },
  2468. {
  2469. name: "Normal",
  2470. height: math.unit(577560, "km"),
  2471. default: true
  2472. },
  2473. {
  2474. name: "Large",
  2475. height: math.unit(4, "galaxies")
  2476. },
  2477. {
  2478. name: "Largest",
  2479. height: math.unit(15, "multiverses")
  2480. },
  2481. ]
  2482. ))
  2483. characterMakers.push(() => makeCharacter(
  2484. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2485. {
  2486. front: {
  2487. height: math.unit(7, "feet"),
  2488. weight: math.unit(100, "kg"),
  2489. name: "Front",
  2490. image: {
  2491. source: "./media/characters/manny/front.svg",
  2492. extra: 1,
  2493. bottom: 0.06
  2494. }
  2495. },
  2496. back: {
  2497. height: math.unit(7, "feet"),
  2498. weight: math.unit(100, "kg"),
  2499. name: "Back",
  2500. image: {
  2501. source: "./media/characters/manny/back.svg",
  2502. extra: 1,
  2503. bottom: 0.014
  2504. }
  2505. },
  2506. },
  2507. [
  2508. {
  2509. name: "Normal",
  2510. height: math.unit(7, "feet"),
  2511. },
  2512. {
  2513. name: "Macro",
  2514. height: math.unit(78, "feet"),
  2515. default: true
  2516. },
  2517. {
  2518. name: "Macro+",
  2519. height: math.unit(300, "meters")
  2520. },
  2521. {
  2522. name: "Macro++",
  2523. height: math.unit(2400, "meters")
  2524. },
  2525. {
  2526. name: "Megamacro",
  2527. height: math.unit(5167, "meters")
  2528. },
  2529. {
  2530. name: "Gigamacro",
  2531. height: math.unit(41769, "miles")
  2532. },
  2533. ]
  2534. ))
  2535. characterMakers.push(() => makeCharacter(
  2536. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2537. {
  2538. front: {
  2539. height: math.unit(7, "feet"),
  2540. weight: math.unit(100, "kg"),
  2541. name: "Front",
  2542. image: {
  2543. source: "./media/characters/adake/front-1.svg"
  2544. }
  2545. },
  2546. frontAlt: {
  2547. height: math.unit(7, "feet"),
  2548. weight: math.unit(100, "kg"),
  2549. name: "Front (Alt)",
  2550. image: {
  2551. source: "./media/characters/adake/front-2.svg",
  2552. extra: 1,
  2553. bottom: 0.01
  2554. }
  2555. },
  2556. back: {
  2557. height: math.unit(7, "feet"),
  2558. weight: math.unit(100, "kg"),
  2559. name: "Back",
  2560. image: {
  2561. source: "./media/characters/adake/back.svg",
  2562. }
  2563. },
  2564. kneel: {
  2565. height: math.unit(5.385, "feet"),
  2566. weight: math.unit(100, "kg"),
  2567. name: "Kneeling",
  2568. image: {
  2569. source: "./media/characters/adake/kneel.svg",
  2570. bottom: 0.052
  2571. }
  2572. },
  2573. },
  2574. [
  2575. {
  2576. name: "Normal",
  2577. height: math.unit(7, "feet"),
  2578. },
  2579. {
  2580. name: "Macro",
  2581. height: math.unit(78, "feet"),
  2582. default: true
  2583. },
  2584. {
  2585. name: "Macro+",
  2586. height: math.unit(300, "meters")
  2587. },
  2588. {
  2589. name: "Macro++",
  2590. height: math.unit(2400, "meters")
  2591. },
  2592. {
  2593. name: "Megamacro",
  2594. height: math.unit(5167, "meters")
  2595. },
  2596. {
  2597. name: "Gigamacro",
  2598. height: math.unit(41769, "miles")
  2599. },
  2600. ]
  2601. ))
  2602. characterMakers.push(() => makeCharacter(
  2603. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2604. {
  2605. front: {
  2606. height: math.unit(1.65, "meters"),
  2607. weight: math.unit(50, "kg"),
  2608. name: "Front",
  2609. image: {
  2610. source: "./media/characters/elijah/front.svg",
  2611. extra: 858 / 830,
  2612. bottom: 95.5 / 953.8559
  2613. }
  2614. },
  2615. back: {
  2616. height: math.unit(1.65, "meters"),
  2617. weight: math.unit(50, "kg"),
  2618. name: "Back",
  2619. image: {
  2620. source: "./media/characters/elijah/back.svg",
  2621. extra: 895 / 850,
  2622. bottom: 5.3 / 897.956
  2623. }
  2624. },
  2625. frontNsfw: {
  2626. height: math.unit(1.65, "meters"),
  2627. weight: math.unit(50, "kg"),
  2628. name: "Front (NSFW)",
  2629. image: {
  2630. source: "./media/characters/elijah/front-nsfw.svg",
  2631. extra: 858 / 830,
  2632. bottom: 95.5 / 953.8559
  2633. }
  2634. },
  2635. backNsfw: {
  2636. height: math.unit(1.65, "meters"),
  2637. weight: math.unit(50, "kg"),
  2638. name: "Back (NSFW)",
  2639. image: {
  2640. source: "./media/characters/elijah/back-nsfw.svg",
  2641. extra: 895 / 850,
  2642. bottom: 5.3 / 897.956
  2643. }
  2644. },
  2645. dick: {
  2646. height: math.unit(1, "feet"),
  2647. name: "Dick",
  2648. image: {
  2649. source: "./media/characters/elijah/dick.svg"
  2650. }
  2651. },
  2652. beakOpen: {
  2653. height: math.unit(1.25, "feet"),
  2654. name: "Beak (Open)",
  2655. image: {
  2656. source: "./media/characters/elijah/beak-open.svg"
  2657. }
  2658. },
  2659. beakShut: {
  2660. height: math.unit(1.25, "feet"),
  2661. name: "Beak (Shut)",
  2662. image: {
  2663. source: "./media/characters/elijah/beak-shut.svg"
  2664. }
  2665. },
  2666. footFlexing: {
  2667. height: math.unit(1.61, "feet"),
  2668. name: "Foot (Flexing)",
  2669. image: {
  2670. source: "./media/characters/elijah/foot-flexing.svg"
  2671. }
  2672. },
  2673. footStepping: {
  2674. height: math.unit(1.44, "feet"),
  2675. name: "Foot (Stepping)",
  2676. image: {
  2677. source: "./media/characters/elijah/foot-stepping.svg"
  2678. }
  2679. },
  2680. plantigradeLeg: {
  2681. height: math.unit(2.34, "feet"),
  2682. name: "Plantigrade Leg",
  2683. image: {
  2684. source: "./media/characters/elijah/plantigrade-leg.svg"
  2685. }
  2686. },
  2687. plantigradeFootLeft: {
  2688. height: math.unit(0.9, "feet"),
  2689. name: "Plantigrade Foot (Left)",
  2690. image: {
  2691. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2692. }
  2693. },
  2694. plantigradeFootRight: {
  2695. height: math.unit(0.9, "feet"),
  2696. name: "Plantigrade Foot (Right)",
  2697. image: {
  2698. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2699. }
  2700. },
  2701. },
  2702. [
  2703. {
  2704. name: "Normal",
  2705. height: math.unit(1.65, "meters")
  2706. },
  2707. {
  2708. name: "Macro",
  2709. height: math.unit(55, "meters"),
  2710. default: true
  2711. },
  2712. {
  2713. name: "Macro+",
  2714. height: math.unit(105, "meters")
  2715. },
  2716. ]
  2717. ))
  2718. characterMakers.push(() => makeCharacter(
  2719. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2720. {
  2721. front: {
  2722. height: math.unit(7 + 2/12, "feet"),
  2723. weight: math.unit(320, "kg"),
  2724. name: "Front",
  2725. image: {
  2726. source: "./media/characters/rai/front.svg",
  2727. extra: 1802/1696,
  2728. bottom: 68/1870
  2729. }
  2730. },
  2731. frontDressed: {
  2732. height: math.unit(7 + 2/12, "feet"),
  2733. weight: math.unit(320, "kg"),
  2734. name: "Front (Dressed)",
  2735. image: {
  2736. source: "./media/characters/rai/front-dressed.svg",
  2737. extra: 1802/1696,
  2738. bottom: 68/1870
  2739. }
  2740. },
  2741. side: {
  2742. height: math.unit(7 + 2/12, "feet"),
  2743. weight: math.unit(320, "kg"),
  2744. name: "Side",
  2745. image: {
  2746. source: "./media/characters/rai/side.svg",
  2747. extra: 1789/1710,
  2748. bottom: 115/1904
  2749. }
  2750. },
  2751. back: {
  2752. height: math.unit(7 + 2/12, "feet"),
  2753. weight: math.unit(320, "kg"),
  2754. name: "Back",
  2755. image: {
  2756. source: "./media/characters/rai/back.svg",
  2757. extra: 1770/1707,
  2758. bottom: 28/1798
  2759. }
  2760. },
  2761. feral: {
  2762. height: math.unit(9.5, "feet"),
  2763. weight: math.unit(640, "kg"),
  2764. name: "Feral",
  2765. image: {
  2766. source: "./media/characters/rai/feral.svg",
  2767. extra: 945/553,
  2768. bottom: 176/1121
  2769. }
  2770. },
  2771. dragon: {
  2772. height: math.unit(23, "feet"),
  2773. weight: math.unit(50000, "lb"),
  2774. name: "Dragon",
  2775. image: {
  2776. source: "./media/characters/rai/dragon.svg",
  2777. extra: 2498 / 2030,
  2778. bottom: 85.2 / 2584
  2779. }
  2780. },
  2781. maw: {
  2782. height: math.unit(1.69, "feet"),
  2783. name: "Maw",
  2784. image: {
  2785. source: "./media/characters/rai/maw.svg"
  2786. }
  2787. },
  2788. },
  2789. [
  2790. {
  2791. name: "Normal",
  2792. height: math.unit(7 + 2/12, "feet")
  2793. },
  2794. {
  2795. name: "Big",
  2796. height: math.unit(11, "feet")
  2797. },
  2798. {
  2799. name: "Macro",
  2800. height: math.unit(302, "feet"),
  2801. default: true
  2802. },
  2803. ]
  2804. ))
  2805. characterMakers.push(() => makeCharacter(
  2806. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2807. {
  2808. frontDressed: {
  2809. height: math.unit(216, "feet"),
  2810. weight: math.unit(7000000, "lb"),
  2811. name: "Front (Dressed)",
  2812. image: {
  2813. source: "./media/characters/jazzy/front-dressed.svg",
  2814. extra: 2738 / 2651,
  2815. bottom: 41.8 / 2786
  2816. }
  2817. },
  2818. backDressed: {
  2819. height: math.unit(216, "feet"),
  2820. weight: math.unit(7000000, "lb"),
  2821. name: "Back (Dressed)",
  2822. image: {
  2823. source: "./media/characters/jazzy/back-dressed.svg",
  2824. extra: 2775 / 2673,
  2825. bottom: 36.8 / 2817
  2826. }
  2827. },
  2828. front: {
  2829. height: math.unit(216, "feet"),
  2830. weight: math.unit(7000000, "lb"),
  2831. name: "Front",
  2832. image: {
  2833. source: "./media/characters/jazzy/front.svg",
  2834. extra: 2738 / 2651,
  2835. bottom: 41.8 / 2786
  2836. }
  2837. },
  2838. back: {
  2839. height: math.unit(216, "feet"),
  2840. weight: math.unit(7000000, "lb"),
  2841. name: "Back",
  2842. image: {
  2843. source: "./media/characters/jazzy/back.svg",
  2844. extra: 2775 / 2673,
  2845. bottom: 36.8 / 2817
  2846. }
  2847. },
  2848. maw: {
  2849. height: math.unit(20, "feet"),
  2850. name: "Maw",
  2851. image: {
  2852. source: "./media/characters/jazzy/maw.svg"
  2853. }
  2854. },
  2855. paws: {
  2856. height: math.unit(27.5, "feet"),
  2857. name: "Paws",
  2858. image: {
  2859. source: "./media/characters/jazzy/paws.svg"
  2860. }
  2861. },
  2862. eye: {
  2863. height: math.unit(4.4, "feet"),
  2864. name: "Eye",
  2865. image: {
  2866. source: "./media/characters/jazzy/eye.svg"
  2867. }
  2868. },
  2869. droneOffense: {
  2870. height: math.unit(9.5, "inches"),
  2871. name: "Drone (Offense)",
  2872. image: {
  2873. source: "./media/characters/jazzy/drone-offense.svg"
  2874. }
  2875. },
  2876. droneRecon: {
  2877. height: math.unit(9.5, "inches"),
  2878. name: "Drone (Recon)",
  2879. image: {
  2880. source: "./media/characters/jazzy/drone-recon.svg"
  2881. }
  2882. },
  2883. droneDefense: {
  2884. height: math.unit(9.5, "inches"),
  2885. name: "Drone (Defense)",
  2886. image: {
  2887. source: "./media/characters/jazzy/drone-defense.svg"
  2888. }
  2889. },
  2890. },
  2891. [
  2892. {
  2893. name: "Macro",
  2894. height: math.unit(216, "feet"),
  2895. default: true
  2896. },
  2897. ]
  2898. ))
  2899. characterMakers.push(() => makeCharacter(
  2900. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2901. {
  2902. front: {
  2903. height: math.unit(9 + 6/12, "feet"),
  2904. weight: math.unit(700, "lb"),
  2905. name: "Front",
  2906. image: {
  2907. source: "./media/characters/flamm/front.svg",
  2908. extra: 1751/1632,
  2909. bottom: 46/1797
  2910. }
  2911. },
  2912. buff: {
  2913. height: math.unit(9 + 6/12, "feet"),
  2914. weight: math.unit(950, "lb"),
  2915. name: "Buff",
  2916. image: {
  2917. source: "./media/characters/flamm/buff.svg",
  2918. extra: 3018/2874,
  2919. bottom: 221/3239
  2920. }
  2921. },
  2922. },
  2923. [
  2924. {
  2925. name: "Normal",
  2926. height: math.unit(9.5, "feet")
  2927. },
  2928. {
  2929. name: "Macro",
  2930. height: math.unit(200, "feet"),
  2931. default: true
  2932. },
  2933. ]
  2934. ))
  2935. characterMakers.push(() => makeCharacter(
  2936. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2937. {
  2938. front: {
  2939. height: math.unit(5 + 3/12, "feet"),
  2940. weight: math.unit(60, "kg"),
  2941. name: "Front",
  2942. image: {
  2943. source: "./media/characters/zephiro/front.svg",
  2944. extra: 2309 / 2162,
  2945. bottom: 0.069
  2946. }
  2947. },
  2948. side: {
  2949. height: math.unit(5 + 3/12, "feet"),
  2950. weight: math.unit(60, "kg"),
  2951. name: "Side",
  2952. image: {
  2953. source: "./media/characters/zephiro/side.svg",
  2954. extra: 2403 / 2279,
  2955. bottom: 0.015
  2956. }
  2957. },
  2958. back: {
  2959. height: math.unit(5 + 3/12, "feet"),
  2960. weight: math.unit(60, "kg"),
  2961. name: "Back",
  2962. image: {
  2963. source: "./media/characters/zephiro/back.svg",
  2964. extra: 2373 / 2244,
  2965. bottom: 0.013
  2966. }
  2967. },
  2968. hand: {
  2969. height: math.unit(0.68, "feet"),
  2970. name: "Hand",
  2971. image: {
  2972. source: "./media/characters/zephiro/hand.svg"
  2973. }
  2974. },
  2975. paw: {
  2976. height: math.unit(1, "feet"),
  2977. name: "Paw",
  2978. image: {
  2979. source: "./media/characters/zephiro/paw.svg"
  2980. }
  2981. },
  2982. beans: {
  2983. height: math.unit(0.93, "feet"),
  2984. name: "Beans",
  2985. image: {
  2986. source: "./media/characters/zephiro/beans.svg"
  2987. }
  2988. },
  2989. },
  2990. [
  2991. {
  2992. name: "Micro",
  2993. height: math.unit(3, "inches")
  2994. },
  2995. {
  2996. name: "Normal",
  2997. height: math.unit(5 + 3 / 12, "feet"),
  2998. default: true
  2999. },
  3000. {
  3001. name: "Macro",
  3002. height: math.unit(118, "feet")
  3003. },
  3004. ]
  3005. ))
  3006. characterMakers.push(() => makeCharacter(
  3007. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3008. {
  3009. front: {
  3010. height: math.unit(5, "feet"),
  3011. weight: math.unit(90, "kg"),
  3012. name: "Front",
  3013. image: {
  3014. source: "./media/characters/fory/front.svg",
  3015. extra: 2862 / 2674,
  3016. bottom: 180 / 3043.8
  3017. }
  3018. },
  3019. back: {
  3020. height: math.unit(5, "feet"),
  3021. weight: math.unit(90, "kg"),
  3022. name: "Back",
  3023. image: {
  3024. source: "./media/characters/fory/back.svg",
  3025. extra: 2962 / 2791,
  3026. bottom: 106 / 3071.8
  3027. }
  3028. },
  3029. foot: {
  3030. height: math.unit(2.14, "feet"),
  3031. name: "Foot",
  3032. image: {
  3033. source: "./media/characters/fory/foot.svg"
  3034. }
  3035. },
  3036. },
  3037. [
  3038. {
  3039. name: "Normal",
  3040. height: math.unit(5, "feet")
  3041. },
  3042. {
  3043. name: "Macro",
  3044. height: math.unit(50, "feet"),
  3045. default: true
  3046. },
  3047. {
  3048. name: "Megamacro",
  3049. height: math.unit(10, "miles")
  3050. },
  3051. {
  3052. name: "Gigamacro",
  3053. height: math.unit(5, "earths")
  3054. },
  3055. ]
  3056. ))
  3057. characterMakers.push(() => makeCharacter(
  3058. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3059. {
  3060. front: {
  3061. height: math.unit(7, "feet"),
  3062. weight: math.unit(90, "kg"),
  3063. name: "Front",
  3064. image: {
  3065. source: "./media/characters/kurrikage/front.svg",
  3066. extra: 1845/1733,
  3067. bottom: 119/1964
  3068. }
  3069. },
  3070. back: {
  3071. height: math.unit(7, "feet"),
  3072. weight: math.unit(90, "kg"),
  3073. name: "Back",
  3074. image: {
  3075. source: "./media/characters/kurrikage/back.svg",
  3076. extra: 1790/1677,
  3077. bottom: 61/1851
  3078. }
  3079. },
  3080. dressed: {
  3081. height: math.unit(7, "feet"),
  3082. weight: math.unit(90, "kg"),
  3083. name: "Dressed",
  3084. image: {
  3085. source: "./media/characters/kurrikage/dressed.svg",
  3086. extra: 1845/1733,
  3087. bottom: 119/1964
  3088. }
  3089. },
  3090. foot: {
  3091. height: math.unit(1.5, "feet"),
  3092. name: "Foot",
  3093. image: {
  3094. source: "./media/characters/kurrikage/foot.svg"
  3095. }
  3096. },
  3097. staff: {
  3098. height: math.unit(6.7, "feet"),
  3099. name: "Staff",
  3100. image: {
  3101. source: "./media/characters/kurrikage/staff.svg"
  3102. }
  3103. },
  3104. peek: {
  3105. height: math.unit(1.05, "feet"),
  3106. name: "Peeking",
  3107. image: {
  3108. source: "./media/characters/kurrikage/peek.svg",
  3109. bottom: 0.08
  3110. }
  3111. },
  3112. },
  3113. [
  3114. {
  3115. name: "Normal",
  3116. height: math.unit(12, "feet"),
  3117. default: true
  3118. },
  3119. {
  3120. name: "Big",
  3121. height: math.unit(20, "feet")
  3122. },
  3123. {
  3124. name: "Macro",
  3125. height: math.unit(500, "feet")
  3126. },
  3127. {
  3128. name: "Megamacro",
  3129. height: math.unit(20, "miles")
  3130. },
  3131. ]
  3132. ))
  3133. characterMakers.push(() => makeCharacter(
  3134. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3135. {
  3136. front: {
  3137. height: math.unit(6, "feet"),
  3138. weight: math.unit(75, "kg"),
  3139. name: "Front",
  3140. image: {
  3141. source: "./media/characters/shingo/front.svg",
  3142. extra: 1900/1825,
  3143. bottom: 82/1982
  3144. }
  3145. },
  3146. side: {
  3147. height: math.unit(6, "feet"),
  3148. weight: math.unit(75, "kg"),
  3149. name: "Side",
  3150. image: {
  3151. source: "./media/characters/shingo/side.svg",
  3152. extra: 1930/1865,
  3153. bottom: 16/1946
  3154. }
  3155. },
  3156. back: {
  3157. height: math.unit(6, "feet"),
  3158. weight: math.unit(75, "kg"),
  3159. name: "Back",
  3160. image: {
  3161. source: "./media/characters/shingo/back.svg",
  3162. extra: 1922/1852,
  3163. bottom: 16/1938
  3164. }
  3165. },
  3166. frontDressed: {
  3167. height: math.unit(6, "feet"),
  3168. weight: math.unit(150, "lb"),
  3169. name: "Front-dressed",
  3170. image: {
  3171. source: "./media/characters/shingo/front-dressed.svg",
  3172. extra: 1900/1825,
  3173. bottom: 82/1982
  3174. }
  3175. },
  3176. paw: {
  3177. height: math.unit(1.29, "feet"),
  3178. name: "Paw",
  3179. image: {
  3180. source: "./media/characters/shingo/paw.svg"
  3181. }
  3182. },
  3183. hand: {
  3184. height: math.unit(1.07, "feet"),
  3185. name: "Hand",
  3186. image: {
  3187. source: "./media/characters/shingo/hand.svg"
  3188. }
  3189. },
  3190. frontAlt: {
  3191. height: math.unit(6, "feet"),
  3192. weight: math.unit(75, "kg"),
  3193. name: "Front (Alt)",
  3194. image: {
  3195. source: "./media/characters/shingo/front-alt.svg",
  3196. extra: 3511 / 3338,
  3197. bottom: 0.005
  3198. }
  3199. },
  3200. frontAlt2: {
  3201. height: math.unit(6, "feet"),
  3202. weight: math.unit(75, "kg"),
  3203. name: "Front (Alt 2)",
  3204. image: {
  3205. source: "./media/characters/shingo/front-alt-2.svg",
  3206. extra: 706/681,
  3207. bottom: 11/717
  3208. }
  3209. },
  3210. pawAlt: {
  3211. height: math.unit(1, "feet"),
  3212. name: "Paw (Alt)",
  3213. image: {
  3214. source: "./media/characters/shingo/paw-alt.svg"
  3215. }
  3216. },
  3217. },
  3218. [
  3219. {
  3220. name: "Micro",
  3221. height: math.unit(4, "inches")
  3222. },
  3223. {
  3224. name: "Normal",
  3225. height: math.unit(6, "feet"),
  3226. default: true
  3227. },
  3228. {
  3229. name: "Macro",
  3230. height: math.unit(108, "feet")
  3231. },
  3232. {
  3233. name: "Macro+",
  3234. height: math.unit(1500, "feet")
  3235. },
  3236. ]
  3237. ))
  3238. characterMakers.push(() => makeCharacter(
  3239. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3240. {
  3241. side: {
  3242. height: math.unit(6, "feet"),
  3243. weight: math.unit(75, "kg"),
  3244. name: "Side",
  3245. image: {
  3246. source: "./media/characters/aigey/side.svg"
  3247. }
  3248. },
  3249. },
  3250. [
  3251. {
  3252. name: "Macro",
  3253. height: math.unit(200, "feet"),
  3254. default: true
  3255. },
  3256. {
  3257. name: "Megamacro",
  3258. height: math.unit(100, "miles")
  3259. },
  3260. ]
  3261. )
  3262. )
  3263. characterMakers.push(() => makeCharacter(
  3264. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3265. {
  3266. front: {
  3267. height: math.unit(5 + 5 / 12, "feet"),
  3268. weight: math.unit(75, "kg"),
  3269. name: "Front",
  3270. image: {
  3271. source: "./media/characters/natasha/front.svg",
  3272. extra: 859 / 824,
  3273. bottom: 23 / 879.6
  3274. }
  3275. },
  3276. frontNsfw: {
  3277. height: math.unit(5 + 5 / 12, "feet"),
  3278. weight: math.unit(75, "kg"),
  3279. name: "Front (NSFW)",
  3280. image: {
  3281. source: "./media/characters/natasha/front-nsfw.svg",
  3282. extra: 859 / 824,
  3283. bottom: 23 / 879.6
  3284. }
  3285. },
  3286. frontErect: {
  3287. height: math.unit(5 + 5 / 12, "feet"),
  3288. weight: math.unit(75, "kg"),
  3289. name: "Front (Erect)",
  3290. image: {
  3291. source: "./media/characters/natasha/front-erect.svg",
  3292. extra: 859 / 824,
  3293. bottom: 23 / 879.6
  3294. }
  3295. },
  3296. back: {
  3297. height: math.unit(5 + 5 / 12, "feet"),
  3298. weight: math.unit(75, "kg"),
  3299. name: "Back",
  3300. image: {
  3301. source: "./media/characters/natasha/back.svg",
  3302. extra: 887.9 / 852.6,
  3303. bottom: 9.7 / 896.4
  3304. }
  3305. },
  3306. backAlt: {
  3307. height: math.unit(5 + 5 / 12, "feet"),
  3308. weight: math.unit(75, "kg"),
  3309. name: "Back (Alt)",
  3310. image: {
  3311. source: "./media/characters/natasha/back-alt.svg",
  3312. extra: 1236.7 / 1192,
  3313. bottom: 22.3 / 1258.2
  3314. }
  3315. },
  3316. dick: {
  3317. height: math.unit(1.772, "feet"),
  3318. name: "Dick",
  3319. image: {
  3320. source: "./media/characters/natasha/dick.svg"
  3321. }
  3322. },
  3323. paw: {
  3324. height: math.unit(0.250, "meters"),
  3325. name: "Paw",
  3326. image: {
  3327. source: "./media/characters/natasha/paw.svg"
  3328. },
  3329. extraAttributes: {
  3330. "toeSize": {
  3331. name: "Toe Size",
  3332. power: 2,
  3333. type: "area",
  3334. base: math.unit(0.0024, "m^2")
  3335. },
  3336. "padSize": {
  3337. name: "Pad Size",
  3338. power: 2,
  3339. type: "area",
  3340. base: math.unit(0.00889, "m^2")
  3341. },
  3342. "pawSize": {
  3343. name: "Paw Size",
  3344. power: 2,
  3345. type: "area",
  3346. base: math.unit(0.023667, "m^2")
  3347. },
  3348. }
  3349. },
  3350. },
  3351. [
  3352. {
  3353. name: "Normal",
  3354. height: math.unit(5 + 5 / 12, "feet")
  3355. },
  3356. {
  3357. name: "Large",
  3358. height: math.unit(12, "feet")
  3359. },
  3360. {
  3361. name: "Macro",
  3362. height: math.unit(100, "feet"),
  3363. default: true
  3364. },
  3365. {
  3366. name: "Macro+",
  3367. height: math.unit(260, "feet")
  3368. },
  3369. {
  3370. name: "Macro++",
  3371. height: math.unit(1, "mile")
  3372. },
  3373. ]
  3374. ))
  3375. characterMakers.push(() => makeCharacter(
  3376. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3377. {
  3378. front: {
  3379. height: math.unit(6, "feet"),
  3380. weight: math.unit(75, "kg"),
  3381. name: "Front",
  3382. image: {
  3383. source: "./media/characters/malik/front.svg",
  3384. extra: 1750/1561,
  3385. bottom: 80/1830
  3386. },
  3387. extraAttributes: {
  3388. "toeSize": {
  3389. name: "Toe Size",
  3390. power: 2,
  3391. type: "area",
  3392. base: math.unit(0.0159, "m^2")
  3393. },
  3394. "pawSize": {
  3395. name: "Paw Size",
  3396. power: 2,
  3397. type: "area",
  3398. base: math.unit(0.09834, "m^2")
  3399. },
  3400. }
  3401. },
  3402. side: {
  3403. height: math.unit(6, "feet"),
  3404. weight: math.unit(75, "kg"),
  3405. name: "Side",
  3406. image: {
  3407. source: "./media/characters/malik/side.svg",
  3408. extra: 1802/1685,
  3409. bottom: 42/1844
  3410. },
  3411. extraAttributes: {
  3412. "toeSize": {
  3413. name: "Toe Size",
  3414. power: 2,
  3415. type: "area",
  3416. base: math.unit(0.0159, "m^2")
  3417. },
  3418. "pawSize": {
  3419. name: "Paw Size",
  3420. power: 2,
  3421. type: "area",
  3422. base: math.unit(0.09834, "m^2")
  3423. },
  3424. }
  3425. },
  3426. back: {
  3427. height: math.unit(6, "feet"),
  3428. weight: math.unit(75, "kg"),
  3429. name: "Back",
  3430. image: {
  3431. source: "./media/characters/malik/back.svg",
  3432. extra: 1803/1607,
  3433. bottom: 33/1836
  3434. },
  3435. extraAttributes: {
  3436. "toeSize": {
  3437. name: "Toe Size",
  3438. power: 2,
  3439. type: "area",
  3440. base: math.unit(0.0159, "m^2")
  3441. },
  3442. "pawSize": {
  3443. name: "Paw Size",
  3444. power: 2,
  3445. type: "area",
  3446. base: math.unit(0.09834, "m^2")
  3447. },
  3448. }
  3449. },
  3450. },
  3451. [
  3452. {
  3453. name: "Macro",
  3454. height: math.unit(156, "feet"),
  3455. default: true
  3456. },
  3457. {
  3458. name: "Macro+",
  3459. height: math.unit(1188, "feet")
  3460. },
  3461. ]
  3462. ))
  3463. characterMakers.push(() => makeCharacter(
  3464. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3465. {
  3466. front: {
  3467. height: math.unit(6, "feet"),
  3468. weight: math.unit(75, "kg"),
  3469. name: "Front",
  3470. image: {
  3471. source: "./media/characters/sefer/front.svg",
  3472. extra: 848 / 659,
  3473. bottom: 28.3 / 876.442
  3474. }
  3475. },
  3476. back: {
  3477. height: math.unit(6, "feet"),
  3478. weight: math.unit(75, "kg"),
  3479. name: "Back",
  3480. image: {
  3481. source: "./media/characters/sefer/back.svg",
  3482. extra: 864 / 695,
  3483. bottom: 10 / 871
  3484. }
  3485. },
  3486. frontDressed: {
  3487. height: math.unit(6, "feet"),
  3488. weight: math.unit(75, "kg"),
  3489. name: "Front (Dressed)",
  3490. image: {
  3491. source: "./media/characters/sefer/front-dressed.svg",
  3492. extra: 839 / 653,
  3493. bottom: 37.6 / 878
  3494. }
  3495. },
  3496. },
  3497. [
  3498. {
  3499. name: "Normal",
  3500. height: math.unit(6, "feet"),
  3501. default: true
  3502. },
  3503. ]
  3504. ))
  3505. characterMakers.push(() => makeCharacter(
  3506. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3507. {
  3508. body: {
  3509. height: math.unit(2.2428, "meter"),
  3510. weight: math.unit(124.738, "kg"),
  3511. name: "Body",
  3512. image: {
  3513. extra: 1225 / 1050,
  3514. source: "./media/characters/north/front.svg"
  3515. }
  3516. }
  3517. },
  3518. [
  3519. {
  3520. name: "Micro",
  3521. height: math.unit(4, "inches")
  3522. },
  3523. {
  3524. name: "Macro",
  3525. height: math.unit(63, "meters")
  3526. },
  3527. {
  3528. name: "Megamacro",
  3529. height: math.unit(101, "miles"),
  3530. default: true
  3531. }
  3532. ]
  3533. ))
  3534. characterMakers.push(() => makeCharacter(
  3535. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3536. {
  3537. angled: {
  3538. height: math.unit(4, "meter"),
  3539. weight: math.unit(150, "kg"),
  3540. name: "Angled",
  3541. image: {
  3542. source: "./media/characters/talan/angled-sfw.svg",
  3543. bottom: 29 / 3734
  3544. }
  3545. },
  3546. angledNsfw: {
  3547. height: math.unit(4, "meter"),
  3548. weight: math.unit(150, "kg"),
  3549. name: "Angled (NSFW)",
  3550. image: {
  3551. source: "./media/characters/talan/angled-nsfw.svg",
  3552. bottom: 29 / 3734
  3553. }
  3554. },
  3555. frontNsfw: {
  3556. height: math.unit(4, "meter"),
  3557. weight: math.unit(150, "kg"),
  3558. name: "Front (NSFW)",
  3559. image: {
  3560. source: "./media/characters/talan/front-nsfw.svg",
  3561. bottom: 29 / 3734
  3562. }
  3563. },
  3564. sideNsfw: {
  3565. height: math.unit(4, "meter"),
  3566. weight: math.unit(150, "kg"),
  3567. name: "Side (NSFW)",
  3568. image: {
  3569. source: "./media/characters/talan/side-nsfw.svg",
  3570. bottom: 29 / 3734
  3571. }
  3572. },
  3573. back: {
  3574. height: math.unit(4, "meter"),
  3575. weight: math.unit(150, "kg"),
  3576. name: "Back",
  3577. image: {
  3578. source: "./media/characters/talan/back.svg"
  3579. }
  3580. },
  3581. dickBottom: {
  3582. height: math.unit(0.621, "meter"),
  3583. name: "Dick (Bottom)",
  3584. image: {
  3585. source: "./media/characters/talan/dick-bottom.svg"
  3586. }
  3587. },
  3588. dickTop: {
  3589. height: math.unit(0.621, "meter"),
  3590. name: "Dick (Top)",
  3591. image: {
  3592. source: "./media/characters/talan/dick-top.svg"
  3593. }
  3594. },
  3595. dickSide: {
  3596. height: math.unit(0.305, "meter"),
  3597. name: "Dick (Side)",
  3598. image: {
  3599. source: "./media/characters/talan/dick-side.svg"
  3600. }
  3601. },
  3602. dickFront: {
  3603. height: math.unit(0.305, "meter"),
  3604. name: "Dick (Front)",
  3605. image: {
  3606. source: "./media/characters/talan/dick-front.svg"
  3607. }
  3608. },
  3609. },
  3610. [
  3611. {
  3612. name: "Normal",
  3613. height: math.unit(4, "meters")
  3614. },
  3615. {
  3616. name: "Macro",
  3617. height: math.unit(100, "meters")
  3618. },
  3619. {
  3620. name: "Megamacro",
  3621. height: math.unit(2, "miles"),
  3622. default: true
  3623. },
  3624. {
  3625. name: "Gigamacro",
  3626. height: math.unit(5000, "miles")
  3627. },
  3628. {
  3629. name: "Teramacro",
  3630. height: math.unit(100, "parsecs")
  3631. }
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3636. {
  3637. front: {
  3638. height: math.unit(2, "meter"),
  3639. weight: math.unit(90, "kg"),
  3640. name: "Front",
  3641. image: {
  3642. source: "./media/characters/gael'rathus/front.svg"
  3643. }
  3644. },
  3645. frontAlt: {
  3646. height: math.unit(2, "meter"),
  3647. weight: math.unit(90, "kg"),
  3648. name: "Front (alt)",
  3649. image: {
  3650. source: "./media/characters/gael'rathus/front-alt.svg"
  3651. }
  3652. },
  3653. frontAlt2: {
  3654. height: math.unit(2, "meter"),
  3655. weight: math.unit(90, "kg"),
  3656. name: "Front (alt 2)",
  3657. image: {
  3658. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3659. }
  3660. }
  3661. },
  3662. [
  3663. {
  3664. name: "Normal",
  3665. height: math.unit(9, "feet"),
  3666. default: true
  3667. },
  3668. {
  3669. name: "Large",
  3670. height: math.unit(25, "feet")
  3671. },
  3672. {
  3673. name: "Macro",
  3674. height: math.unit(0.25, "miles")
  3675. },
  3676. {
  3677. name: "Megamacro",
  3678. height: math.unit(10, "miles")
  3679. }
  3680. ]
  3681. ))
  3682. characterMakers.push(() => makeCharacter(
  3683. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3684. {
  3685. side: {
  3686. height: math.unit(2, "meter"),
  3687. weight: math.unit(140, "kg"),
  3688. name: "Side",
  3689. image: {
  3690. source: "./media/characters/sosha/side.svg",
  3691. extra: 1170/1006,
  3692. bottom: 94/1264
  3693. }
  3694. },
  3695. maw: {
  3696. height: math.unit(2.87, "feet"),
  3697. name: "Maw",
  3698. image: {
  3699. source: "./media/characters/sosha/maw.svg",
  3700. extra: 966/865,
  3701. bottom: 0/966
  3702. }
  3703. },
  3704. cooch: {
  3705. height: math.unit(5.6, "feet"),
  3706. name: "Cooch",
  3707. image: {
  3708. source: "./media/characters/sosha/cooch.svg"
  3709. }
  3710. },
  3711. },
  3712. [
  3713. {
  3714. name: "Normal",
  3715. height: math.unit(12, "feet"),
  3716. default: true
  3717. }
  3718. ]
  3719. ))
  3720. characterMakers.push(() => makeCharacter(
  3721. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3722. {
  3723. side: {
  3724. height: math.unit(5 + 5 / 12, "feet"),
  3725. weight: math.unit(170, "kg"),
  3726. name: "Side",
  3727. image: {
  3728. source: "./media/characters/runnola/side.svg",
  3729. extra: 741 / 448,
  3730. bottom: 0.05
  3731. }
  3732. },
  3733. },
  3734. [
  3735. {
  3736. name: "Small",
  3737. height: math.unit(3, "feet")
  3738. },
  3739. {
  3740. name: "Normal",
  3741. height: math.unit(5 + 5 / 12, "feet"),
  3742. default: true
  3743. },
  3744. {
  3745. name: "Big",
  3746. height: math.unit(10, "feet")
  3747. },
  3748. ]
  3749. ))
  3750. characterMakers.push(() => makeCharacter(
  3751. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3752. {
  3753. front: {
  3754. height: math.unit(2, "meter"),
  3755. weight: math.unit(50, "kg"),
  3756. name: "Front",
  3757. image: {
  3758. source: "./media/characters/kurribird/front.svg",
  3759. bottom: 0.015
  3760. }
  3761. },
  3762. frontAlt: {
  3763. height: math.unit(1.5, "meter"),
  3764. weight: math.unit(50, "kg"),
  3765. name: "Front (Alt)",
  3766. image: {
  3767. source: "./media/characters/kurribird/front-alt.svg",
  3768. extra: 1.45
  3769. }
  3770. },
  3771. },
  3772. [
  3773. {
  3774. name: "Normal",
  3775. height: math.unit(7, "feet")
  3776. },
  3777. {
  3778. name: "Big",
  3779. height: math.unit(12, "feet"),
  3780. default: true
  3781. },
  3782. {
  3783. name: "Macro",
  3784. height: math.unit(1500, "feet")
  3785. },
  3786. {
  3787. name: "Megamacro",
  3788. height: math.unit(2, "miles")
  3789. }
  3790. ]
  3791. ))
  3792. characterMakers.push(() => makeCharacter(
  3793. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3794. {
  3795. front: {
  3796. height: math.unit(2, "meter"),
  3797. weight: math.unit(80, "kg"),
  3798. name: "Front",
  3799. image: {
  3800. source: "./media/characters/elbial/front.svg",
  3801. extra: 1643 / 1556,
  3802. bottom: 60.2 / 1696
  3803. }
  3804. },
  3805. side: {
  3806. height: math.unit(2, "meter"),
  3807. weight: math.unit(80, "kg"),
  3808. name: "Side",
  3809. image: {
  3810. source: "./media/characters/elbial/side.svg",
  3811. extra: 1601/1528,
  3812. bottom: 97/1698
  3813. }
  3814. },
  3815. back: {
  3816. height: math.unit(2, "meter"),
  3817. weight: math.unit(80, "kg"),
  3818. name: "Back",
  3819. image: {
  3820. source: "./media/characters/elbial/back.svg",
  3821. extra: 1653/1569,
  3822. bottom: 20/1673
  3823. }
  3824. },
  3825. frontDressed: {
  3826. height: math.unit(2, "meter"),
  3827. weight: math.unit(80, "kg"),
  3828. name: "Front (Dressed)",
  3829. image: {
  3830. source: "./media/characters/elbial/front-dressed.svg",
  3831. extra: 1638/1569,
  3832. bottom: 70/1708
  3833. }
  3834. },
  3835. genitals: {
  3836. height: math.unit(2 / 3.367, "meter"),
  3837. name: "Genitals",
  3838. image: {
  3839. source: "./media/characters/elbial/genitals.svg"
  3840. }
  3841. },
  3842. },
  3843. [
  3844. {
  3845. name: "Large",
  3846. height: math.unit(100, "feet")
  3847. },
  3848. {
  3849. name: "Macro",
  3850. height: math.unit(500, "feet"),
  3851. default: true
  3852. },
  3853. {
  3854. name: "Megamacro",
  3855. height: math.unit(10, "miles")
  3856. },
  3857. {
  3858. name: "Gigamacro",
  3859. height: math.unit(25000, "miles")
  3860. },
  3861. {
  3862. name: "Full-Size",
  3863. height: math.unit(8000000, "gigaparsecs")
  3864. }
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3869. {
  3870. front: {
  3871. height: math.unit(2, "meter"),
  3872. weight: math.unit(60, "kg"),
  3873. name: "Front",
  3874. image: {
  3875. source: "./media/characters/noah/front.svg"
  3876. }
  3877. },
  3878. talons: {
  3879. height: math.unit(0.315, "meter"),
  3880. name: "Talons",
  3881. image: {
  3882. source: "./media/characters/noah/talons.svg"
  3883. }
  3884. }
  3885. },
  3886. [
  3887. {
  3888. name: "Large",
  3889. height: math.unit(50, "feet")
  3890. },
  3891. {
  3892. name: "Macro",
  3893. height: math.unit(750, "feet"),
  3894. default: true
  3895. },
  3896. {
  3897. name: "Megamacro",
  3898. height: math.unit(50, "miles")
  3899. },
  3900. {
  3901. name: "Gigamacro",
  3902. height: math.unit(100000, "miles")
  3903. },
  3904. {
  3905. name: "Full-Size",
  3906. height: math.unit(3000000000, "miles")
  3907. }
  3908. ]
  3909. ))
  3910. characterMakers.push(() => makeCharacter(
  3911. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3912. {
  3913. front: {
  3914. height: math.unit(2, "meter"),
  3915. weight: math.unit(80, "kg"),
  3916. name: "Front",
  3917. image: {
  3918. source: "./media/characters/natalya/front.svg"
  3919. }
  3920. },
  3921. back: {
  3922. height: math.unit(2, "meter"),
  3923. weight: math.unit(80, "kg"),
  3924. name: "Back",
  3925. image: {
  3926. source: "./media/characters/natalya/back.svg"
  3927. }
  3928. }
  3929. },
  3930. [
  3931. {
  3932. name: "Normal",
  3933. height: math.unit(150, "feet"),
  3934. default: true
  3935. },
  3936. {
  3937. name: "Megamacro",
  3938. height: math.unit(5, "miles")
  3939. },
  3940. {
  3941. name: "Full-Size",
  3942. height: math.unit(600, "kiloparsecs")
  3943. }
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(2, "meter"),
  3951. weight: math.unit(50, "kg"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/erestrebah/front.svg",
  3955. extra: 1262/1162,
  3956. bottom: 96/1358
  3957. }
  3958. },
  3959. back: {
  3960. height: math.unit(2, "meter"),
  3961. weight: math.unit(50, "kg"),
  3962. name: "Back",
  3963. image: {
  3964. source: "./media/characters/erestrebah/back.svg",
  3965. extra: 1257/1139,
  3966. bottom: 13/1270
  3967. }
  3968. },
  3969. wing: {
  3970. height: math.unit(2, "meter"),
  3971. weight: math.unit(50, "kg"),
  3972. name: "Wing",
  3973. image: {
  3974. source: "./media/characters/erestrebah/wing.svg",
  3975. extra: 1262/1162,
  3976. bottom: 96/1358
  3977. }
  3978. },
  3979. mouth: {
  3980. height: math.unit(0.39, "feet"),
  3981. name: "Mouth",
  3982. image: {
  3983. source: "./media/characters/erestrebah/mouth.svg"
  3984. }
  3985. }
  3986. },
  3987. [
  3988. {
  3989. name: "Normal",
  3990. height: math.unit(10, "feet")
  3991. },
  3992. {
  3993. name: "Large",
  3994. height: math.unit(50, "feet"),
  3995. default: true
  3996. },
  3997. {
  3998. name: "Macro",
  3999. height: math.unit(300, "feet")
  4000. },
  4001. {
  4002. name: "Macro+",
  4003. height: math.unit(750, "feet")
  4004. },
  4005. {
  4006. name: "Megamacro",
  4007. height: math.unit(3, "miles")
  4008. }
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(2, "meter"),
  4016. weight: math.unit(80, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/jennifer/front.svg",
  4020. bottom: 0.11,
  4021. extra: 1.16
  4022. }
  4023. },
  4024. frontAlt: {
  4025. height: math.unit(2, "meter"),
  4026. weight: math.unit(80, "kg"),
  4027. name: "Front (Alt)",
  4028. image: {
  4029. source: "./media/characters/jennifer/front-alt.svg"
  4030. }
  4031. }
  4032. },
  4033. [
  4034. {
  4035. name: "Canon Height",
  4036. height: math.unit(120, "feet"),
  4037. default: true
  4038. },
  4039. {
  4040. name: "Macro+",
  4041. height: math.unit(300, "feet")
  4042. },
  4043. {
  4044. name: "Megamacro",
  4045. height: math.unit(20000, "feet")
  4046. }
  4047. ]
  4048. ))
  4049. characterMakers.push(() => makeCharacter(
  4050. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4051. {
  4052. front: {
  4053. height: math.unit(2, "meter"),
  4054. weight: math.unit(50, "kg"),
  4055. name: "Front",
  4056. image: {
  4057. source: "./media/characters/kalista/front.svg",
  4058. extra: 1314/1145,
  4059. bottom: 101/1415
  4060. }
  4061. },
  4062. back: {
  4063. height: math.unit(2, "meter"),
  4064. weight: math.unit(50, "kg"),
  4065. name: "Back",
  4066. image: {
  4067. source: "./media/characters/kalista/back.svg",
  4068. extra: 1366 / 1156,
  4069. bottom: 33.9 / 1362.78
  4070. }
  4071. }
  4072. },
  4073. [
  4074. {
  4075. name: "Uncomfortably Small",
  4076. height: math.unit(10, "feet")
  4077. },
  4078. {
  4079. name: "Small",
  4080. height: math.unit(30, "feet")
  4081. },
  4082. {
  4083. name: "Macro",
  4084. height: math.unit(100, "feet"),
  4085. default: true
  4086. },
  4087. {
  4088. name: "Macro+",
  4089. height: math.unit(2000, "feet")
  4090. },
  4091. {
  4092. name: "True Form",
  4093. height: math.unit(8924, "miles")
  4094. }
  4095. ]
  4096. ))
  4097. characterMakers.push(() => makeCharacter(
  4098. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4099. {
  4100. front: {
  4101. height: math.unit(2, "meter"),
  4102. weight: math.unit(120, "kg"),
  4103. name: "Front",
  4104. image: {
  4105. source: "./media/characters/ggv/front.svg"
  4106. }
  4107. },
  4108. side: {
  4109. height: math.unit(2, "meter"),
  4110. weight: math.unit(120, "kg"),
  4111. name: "Side",
  4112. image: {
  4113. source: "./media/characters/ggv/side.svg"
  4114. }
  4115. }
  4116. },
  4117. [
  4118. {
  4119. name: "Extremely Puny",
  4120. height: math.unit(9 + 5 / 12, "feet")
  4121. },
  4122. {
  4123. name: "Horribly Small",
  4124. height: math.unit(47.7, "miles"),
  4125. default: true
  4126. },
  4127. {
  4128. name: "Reasonably Sized",
  4129. height: math.unit(25000, "parsecs")
  4130. },
  4131. {
  4132. name: "Slightly Uncompressed",
  4133. height: math.unit(7.77e31, "parsecs")
  4134. },
  4135. {
  4136. name: "Omniversal",
  4137. height: math.unit(1e300, "meters")
  4138. },
  4139. ]
  4140. ))
  4141. characterMakers.push(() => makeCharacter(
  4142. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4143. {
  4144. front: {
  4145. height: math.unit(2, "meter"),
  4146. weight: math.unit(75, "lb"),
  4147. name: "Front",
  4148. image: {
  4149. source: "./media/characters/napalm/front.svg"
  4150. }
  4151. },
  4152. back: {
  4153. height: math.unit(2, "meter"),
  4154. weight: math.unit(75, "lb"),
  4155. name: "Back",
  4156. image: {
  4157. source: "./media/characters/napalm/back.svg"
  4158. }
  4159. }
  4160. },
  4161. [
  4162. {
  4163. name: "Standard",
  4164. height: math.unit(55, "feet"),
  4165. default: true
  4166. }
  4167. ]
  4168. ))
  4169. characterMakers.push(() => makeCharacter(
  4170. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4171. {
  4172. front: {
  4173. height: math.unit(7 + 5 / 6, "feet"),
  4174. weight: math.unit(325, "lb"),
  4175. name: "Front",
  4176. image: {
  4177. source: "./media/characters/asana/front.svg",
  4178. extra: 1133 / 1060,
  4179. bottom: 15.2 / 1148.6
  4180. }
  4181. },
  4182. back: {
  4183. height: math.unit(7 + 5 / 6, "feet"),
  4184. weight: math.unit(325, "lb"),
  4185. name: "Back",
  4186. image: {
  4187. source: "./media/characters/asana/back.svg",
  4188. extra: 1114 / 1043,
  4189. bottom: 5 / 1120
  4190. }
  4191. },
  4192. dressedDark: {
  4193. height: math.unit(7 + 5 / 6, "feet"),
  4194. weight: math.unit(325, "lb"),
  4195. name: "Dressed (Dark)",
  4196. image: {
  4197. source: "./media/characters/asana/dressed-dark.svg",
  4198. extra: 1133 / 1060,
  4199. bottom: 15.2 / 1148.6
  4200. }
  4201. },
  4202. dressedLight: {
  4203. height: math.unit(7 + 5 / 6, "feet"),
  4204. weight: math.unit(325, "lb"),
  4205. name: "Dressed (Light)",
  4206. image: {
  4207. source: "./media/characters/asana/dressed-light.svg",
  4208. extra: 1133 / 1060,
  4209. bottom: 15.2 / 1148.6
  4210. }
  4211. },
  4212. },
  4213. [
  4214. {
  4215. name: "Standard",
  4216. height: math.unit(7 + 5 / 6, "feet"),
  4217. default: true
  4218. },
  4219. {
  4220. name: "Large",
  4221. height: math.unit(10, "meters")
  4222. },
  4223. {
  4224. name: "Macro",
  4225. height: math.unit(2500, "meters")
  4226. },
  4227. {
  4228. name: "Megamacro",
  4229. height: math.unit(5e6, "meters")
  4230. },
  4231. {
  4232. name: "Examacro",
  4233. height: math.unit(5e12, "lightyears")
  4234. },
  4235. {
  4236. name: "Max Size",
  4237. height: math.unit(1e31, "lightyears")
  4238. }
  4239. ]
  4240. ))
  4241. characterMakers.push(() => makeCharacter(
  4242. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4243. {
  4244. front: {
  4245. height: math.unit(2, "meter"),
  4246. weight: math.unit(60, "kg"),
  4247. name: "Front",
  4248. image: {
  4249. source: "./media/characters/ebony/front.svg",
  4250. bottom: 0.03,
  4251. extra: 1045 / 810 + 0.03
  4252. }
  4253. },
  4254. side: {
  4255. height: math.unit(2, "meter"),
  4256. weight: math.unit(60, "kg"),
  4257. name: "Side",
  4258. image: {
  4259. source: "./media/characters/ebony/side.svg",
  4260. bottom: 0.03,
  4261. extra: 1045 / 810 + 0.03
  4262. }
  4263. },
  4264. back: {
  4265. height: math.unit(2, "meter"),
  4266. weight: math.unit(60, "kg"),
  4267. name: "Back",
  4268. image: {
  4269. source: "./media/characters/ebony/back.svg",
  4270. bottom: 0.01,
  4271. extra: 1045 / 810 + 0.01
  4272. }
  4273. },
  4274. },
  4275. [
  4276. // TODO check why I did this lol
  4277. {
  4278. name: "Standard",
  4279. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4280. default: true
  4281. },
  4282. {
  4283. name: "Macro",
  4284. height: math.unit(200, "feet")
  4285. },
  4286. {
  4287. name: "Gigamacro",
  4288. height: math.unit(13000, "km")
  4289. }
  4290. ]
  4291. ))
  4292. characterMakers.push(() => makeCharacter(
  4293. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4294. {
  4295. front: {
  4296. height: math.unit(6, "feet"),
  4297. weight: math.unit(175, "lb"),
  4298. name: "Front",
  4299. image: {
  4300. source: "./media/characters/mountain/front.svg",
  4301. extra: 972 / 955,
  4302. bottom: 64 / 1036.6
  4303. }
  4304. },
  4305. back: {
  4306. height: math.unit(6, "feet"),
  4307. weight: math.unit(175, "lb"),
  4308. name: "Back",
  4309. image: {
  4310. source: "./media/characters/mountain/back.svg",
  4311. extra: 970 / 950,
  4312. bottom: 28.25 / 999
  4313. }
  4314. },
  4315. },
  4316. [
  4317. {
  4318. name: "Large",
  4319. height: math.unit(20, "meters")
  4320. },
  4321. {
  4322. name: "Macro",
  4323. height: math.unit(300, "meters")
  4324. },
  4325. {
  4326. name: "Gigamacro",
  4327. height: math.unit(10000, "km"),
  4328. default: true
  4329. },
  4330. {
  4331. name: "Examacro",
  4332. height: math.unit(10e9, "lightyears")
  4333. }
  4334. ]
  4335. ))
  4336. characterMakers.push(() => makeCharacter(
  4337. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4338. {
  4339. front: {
  4340. height: math.unit(8, "feet"),
  4341. weight: math.unit(500, "lb"),
  4342. name: "Front",
  4343. image: {
  4344. source: "./media/characters/rick/front.svg"
  4345. }
  4346. }
  4347. },
  4348. [
  4349. {
  4350. name: "Normal",
  4351. height: math.unit(8, "feet"),
  4352. default: true
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(5, "km")
  4357. }
  4358. ]
  4359. ))
  4360. characterMakers.push(() => makeCharacter(
  4361. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4362. {
  4363. front: {
  4364. height: math.unit(8, "feet"),
  4365. weight: math.unit(120, "lb"),
  4366. name: "Front",
  4367. image: {
  4368. source: "./media/characters/ona/front.svg"
  4369. }
  4370. },
  4371. frontAlt: {
  4372. height: math.unit(8, "feet"),
  4373. weight: math.unit(120, "lb"),
  4374. name: "Front (Alt)",
  4375. image: {
  4376. source: "./media/characters/ona/front-alt.svg"
  4377. }
  4378. },
  4379. back: {
  4380. height: math.unit(8, "feet"),
  4381. weight: math.unit(120, "lb"),
  4382. name: "Back",
  4383. image: {
  4384. source: "./media/characters/ona/back.svg"
  4385. }
  4386. },
  4387. foot: {
  4388. height: math.unit(1.1, "feet"),
  4389. name: "Foot",
  4390. image: {
  4391. source: "./media/characters/ona/foot.svg"
  4392. }
  4393. }
  4394. },
  4395. [
  4396. {
  4397. name: "Megamacro",
  4398. height: math.unit(70, "km"),
  4399. default: true
  4400. },
  4401. {
  4402. name: "Gigamacro",
  4403. height: math.unit(681818, "miles")
  4404. },
  4405. {
  4406. name: "Examacro",
  4407. height: math.unit(3800000, "lightyears")
  4408. },
  4409. ]
  4410. ))
  4411. characterMakers.push(() => makeCharacter(
  4412. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4413. {
  4414. front: {
  4415. height: math.unit(12, "feet"),
  4416. weight: math.unit(3000, "lb"),
  4417. name: "Front",
  4418. image: {
  4419. source: "./media/characters/mech/front.svg",
  4420. extra: 2900 / 2770,
  4421. bottom: 110 / 3010
  4422. }
  4423. },
  4424. back: {
  4425. height: math.unit(12, "feet"),
  4426. weight: math.unit(3000, "lb"),
  4427. name: "Back",
  4428. image: {
  4429. source: "./media/characters/mech/back.svg",
  4430. extra: 3011 / 2890,
  4431. bottom: 94 / 3105
  4432. }
  4433. },
  4434. maw: {
  4435. height: math.unit(3.07, "feet"),
  4436. name: "Maw",
  4437. image: {
  4438. source: "./media/characters/mech/maw.svg"
  4439. }
  4440. },
  4441. head: {
  4442. height: math.unit(3.07, "feet"),
  4443. name: "Head",
  4444. image: {
  4445. source: "./media/characters/mech/head.svg"
  4446. }
  4447. },
  4448. dick: {
  4449. height: math.unit(1.43, "feet"),
  4450. name: "Dick",
  4451. image: {
  4452. source: "./media/characters/mech/dick.svg"
  4453. }
  4454. },
  4455. },
  4456. [
  4457. {
  4458. name: "Normal",
  4459. height: math.unit(12, "feet")
  4460. },
  4461. {
  4462. name: "Macro",
  4463. height: math.unit(300, "feet"),
  4464. default: true
  4465. },
  4466. {
  4467. name: "Macro+",
  4468. height: math.unit(1500, "feet")
  4469. },
  4470. ]
  4471. ))
  4472. characterMakers.push(() => makeCharacter(
  4473. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4474. {
  4475. front: {
  4476. height: math.unit(1.3, "meter"),
  4477. weight: math.unit(30, "kg"),
  4478. name: "Front",
  4479. image: {
  4480. source: "./media/characters/gregory/front.svg",
  4481. }
  4482. }
  4483. },
  4484. [
  4485. {
  4486. name: "Normal",
  4487. height: math.unit(1.3, "meter"),
  4488. default: true
  4489. },
  4490. {
  4491. name: "Macro",
  4492. height: math.unit(20, "meter")
  4493. }
  4494. ]
  4495. ))
  4496. characterMakers.push(() => makeCharacter(
  4497. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4498. {
  4499. front: {
  4500. height: math.unit(2.8, "meter"),
  4501. weight: math.unit(200, "kg"),
  4502. name: "Front",
  4503. image: {
  4504. source: "./media/characters/elory/front.svg",
  4505. }
  4506. }
  4507. },
  4508. [
  4509. {
  4510. name: "Normal",
  4511. height: math.unit(2.8, "meter"),
  4512. default: true
  4513. },
  4514. {
  4515. name: "Macro",
  4516. height: math.unit(38, "meter")
  4517. }
  4518. ]
  4519. ))
  4520. characterMakers.push(() => makeCharacter(
  4521. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4522. {
  4523. front: {
  4524. height: math.unit(470, "feet"),
  4525. weight: math.unit(924, "tons"),
  4526. name: "Front",
  4527. image: {
  4528. source: "./media/characters/angelpatamon/front.svg",
  4529. }
  4530. }
  4531. },
  4532. [
  4533. {
  4534. name: "Normal",
  4535. height: math.unit(470, "feet"),
  4536. default: true
  4537. },
  4538. {
  4539. name: "Deity Size I",
  4540. height: math.unit(28651.2, "km")
  4541. },
  4542. {
  4543. name: "Deity Size II",
  4544. height: math.unit(171907.2, "km")
  4545. }
  4546. ]
  4547. ))
  4548. characterMakers.push(() => makeCharacter(
  4549. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4550. {
  4551. side: {
  4552. height: math.unit(7.2, "meter"),
  4553. weight: math.unit(8.2, "tons"),
  4554. name: "Side",
  4555. image: {
  4556. source: "./media/characters/cryae/side.svg",
  4557. extra: 3500 / 1500
  4558. }
  4559. }
  4560. },
  4561. [
  4562. {
  4563. name: "Normal",
  4564. height: math.unit(7.2, "meter"),
  4565. default: true
  4566. }
  4567. ]
  4568. ))
  4569. characterMakers.push(() => makeCharacter(
  4570. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4571. {
  4572. front: {
  4573. height: math.unit(6, "feet"),
  4574. weight: math.unit(175, "lb"),
  4575. name: "Front",
  4576. image: {
  4577. source: "./media/characters/xera/front.svg",
  4578. extra: 2377 / 1972,
  4579. bottom: 75.5 / 2452
  4580. }
  4581. },
  4582. side: {
  4583. height: math.unit(6, "feet"),
  4584. weight: math.unit(175, "lb"),
  4585. name: "Side",
  4586. image: {
  4587. source: "./media/characters/xera/side.svg",
  4588. extra: 2345 / 2019,
  4589. bottom: 39.7 / 2384
  4590. }
  4591. },
  4592. back: {
  4593. height: math.unit(6, "feet"),
  4594. weight: math.unit(175, "lb"),
  4595. name: "Back",
  4596. image: {
  4597. source: "./media/characters/xera/back.svg",
  4598. extra: 2095 / 1984,
  4599. bottom: 67 / 2166
  4600. }
  4601. },
  4602. },
  4603. [
  4604. {
  4605. name: "Small",
  4606. height: math.unit(10, "feet")
  4607. },
  4608. {
  4609. name: "Macro",
  4610. height: math.unit(500, "meters"),
  4611. default: true
  4612. },
  4613. {
  4614. name: "Macro+",
  4615. height: math.unit(10, "km")
  4616. },
  4617. {
  4618. name: "Gigamacro",
  4619. height: math.unit(25000, "km")
  4620. },
  4621. {
  4622. name: "Teramacro",
  4623. height: math.unit(3e6, "km")
  4624. }
  4625. ]
  4626. ))
  4627. characterMakers.push(() => makeCharacter(
  4628. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4629. {
  4630. front: {
  4631. height: math.unit(6, "feet"),
  4632. weight: math.unit(175, "lb"),
  4633. name: "Front",
  4634. image: {
  4635. source: "./media/characters/nebula/front.svg",
  4636. extra: 2566 / 2362,
  4637. bottom: 81 / 2644
  4638. }
  4639. }
  4640. },
  4641. [
  4642. {
  4643. name: "Small",
  4644. height: math.unit(4.5, "meters")
  4645. },
  4646. {
  4647. name: "Macro",
  4648. height: math.unit(1500, "meters"),
  4649. default: true
  4650. },
  4651. {
  4652. name: "Megamacro",
  4653. height: math.unit(150, "km")
  4654. },
  4655. {
  4656. name: "Gigamacro",
  4657. height: math.unit(27000, "km")
  4658. }
  4659. ]
  4660. ))
  4661. characterMakers.push(() => makeCharacter(
  4662. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4663. {
  4664. front: {
  4665. height: math.unit(6, "feet"),
  4666. weight: math.unit(225, "lb"),
  4667. name: "Front",
  4668. image: {
  4669. source: "./media/characters/abysgar/front.svg",
  4670. extra: 1739/1614,
  4671. bottom: 71/1810
  4672. }
  4673. },
  4674. frontNsfw: {
  4675. height: math.unit(6, "feet"),
  4676. weight: math.unit(225, "lb"),
  4677. name: "Front (NSFW)",
  4678. image: {
  4679. source: "./media/characters/abysgar/front-nsfw.svg",
  4680. extra: 1739/1614,
  4681. bottom: 71/1810
  4682. }
  4683. },
  4684. back: {
  4685. height: math.unit(4.6, "feet"),
  4686. weight: math.unit(225, "lb"),
  4687. name: "Back",
  4688. image: {
  4689. source: "./media/characters/abysgar/back.svg",
  4690. extra: 1384/1327,
  4691. bottom: 0/1384
  4692. }
  4693. },
  4694. head: {
  4695. height: math.unit(1.25, "feet"),
  4696. name: "Head",
  4697. image: {
  4698. source: "./media/characters/abysgar/head.svg",
  4699. extra: 669/569,
  4700. bottom: 0/669
  4701. }
  4702. },
  4703. },
  4704. [
  4705. {
  4706. name: "Small",
  4707. height: math.unit(4.5, "meters")
  4708. },
  4709. {
  4710. name: "Macro",
  4711. height: math.unit(1250, "meters"),
  4712. default: true
  4713. },
  4714. {
  4715. name: "Megamacro",
  4716. height: math.unit(125, "km")
  4717. },
  4718. {
  4719. name: "Gigamacro",
  4720. height: math.unit(26000, "km")
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(6, "feet"),
  4729. weight: math.unit(180, "lb"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/yakuz/front.svg"
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Small",
  4739. height: math.unit(5, "meters")
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(1500, "meters"),
  4744. default: true
  4745. },
  4746. {
  4747. name: "Megamacro",
  4748. height: math.unit(200, "km")
  4749. },
  4750. {
  4751. name: "Gigamacro",
  4752. height: math.unit(100000, "km")
  4753. }
  4754. ]
  4755. ))
  4756. characterMakers.push(() => makeCharacter(
  4757. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4758. {
  4759. front: {
  4760. height: math.unit(6, "feet"),
  4761. weight: math.unit(175, "lb"),
  4762. name: "Front",
  4763. image: {
  4764. source: "./media/characters/mirova/front.svg",
  4765. extra: 3334 / 3071,
  4766. bottom: 42 / 3375.6
  4767. }
  4768. }
  4769. },
  4770. [
  4771. {
  4772. name: "Small",
  4773. height: math.unit(5, "meters")
  4774. },
  4775. {
  4776. name: "Macro",
  4777. height: math.unit(900, "meters"),
  4778. default: true
  4779. },
  4780. {
  4781. name: "Megamacro",
  4782. height: math.unit(135, "km")
  4783. },
  4784. {
  4785. name: "Gigamacro",
  4786. height: math.unit(20000, "km")
  4787. }
  4788. ]
  4789. ))
  4790. characterMakers.push(() => makeCharacter(
  4791. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4792. {
  4793. side: {
  4794. height: math.unit(28.35, "feet"),
  4795. weight: math.unit(99.75, "tons"),
  4796. name: "Side",
  4797. image: {
  4798. source: "./media/characters/asana-mech/side.svg",
  4799. extra: 923 / 699,
  4800. bottom: 50 / 975
  4801. }
  4802. },
  4803. chaingun: {
  4804. height: math.unit(7, "feet"),
  4805. weight: math.unit(2400, "lb"),
  4806. name: "Chaingun",
  4807. image: {
  4808. source: "./media/characters/asana-mech/chaingun.svg"
  4809. }
  4810. },
  4811. laser: {
  4812. height: math.unit(7.12, "feet"),
  4813. weight: math.unit(2000, "lb"),
  4814. name: "Laser",
  4815. image: {
  4816. source: "./media/characters/asana-mech/laser.svg"
  4817. }
  4818. },
  4819. },
  4820. [
  4821. {
  4822. name: "Normal",
  4823. height: math.unit(28.35, "feet"),
  4824. default: true
  4825. },
  4826. {
  4827. name: "Macro",
  4828. height: math.unit(2500, "feet")
  4829. },
  4830. {
  4831. name: "Megamacro",
  4832. height: math.unit(25, "miles")
  4833. },
  4834. {
  4835. name: "Examacro",
  4836. height: math.unit(6e8, "lightyears")
  4837. },
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4842. {
  4843. front: {
  4844. height: math.unit(5, "meters"),
  4845. weight: math.unit(1000, "kg"),
  4846. name: "Front",
  4847. image: {
  4848. source: "./media/characters/asche/front.svg",
  4849. extra: 1258 / 1190,
  4850. bottom: 47 / 1305
  4851. }
  4852. },
  4853. frontUnderwear: {
  4854. height: math.unit(5, "meters"),
  4855. weight: math.unit(1000, "kg"),
  4856. name: "Front (Underwear)",
  4857. image: {
  4858. source: "./media/characters/asche/front-underwear.svg",
  4859. extra: 1258 / 1190,
  4860. bottom: 47 / 1305
  4861. }
  4862. },
  4863. frontDressed: {
  4864. height: math.unit(5, "meters"),
  4865. weight: math.unit(1000, "kg"),
  4866. name: "Front (Dressed)",
  4867. image: {
  4868. source: "./media/characters/asche/front-dressed.svg",
  4869. extra: 1258 / 1190,
  4870. bottom: 47 / 1305
  4871. }
  4872. },
  4873. frontArmor: {
  4874. height: math.unit(5, "meters"),
  4875. weight: math.unit(1000, "kg"),
  4876. name: "Front (Armored)",
  4877. image: {
  4878. source: "./media/characters/asche/front-armored.svg",
  4879. extra: 1374 / 1308,
  4880. bottom: 23 / 1397
  4881. }
  4882. },
  4883. mp724: {
  4884. height: math.unit(0.96, "meters"),
  4885. weight: math.unit(38, "kg"),
  4886. name: "H&K MP724",
  4887. image: {
  4888. source: "./media/characters/asche/h&k-mp724.svg"
  4889. }
  4890. },
  4891. side: {
  4892. height: math.unit(5, "meters"),
  4893. weight: math.unit(1000, "kg"),
  4894. name: "Side",
  4895. image: {
  4896. source: "./media/characters/asche/side.svg",
  4897. extra: 1717 / 1609,
  4898. bottom: 0.005
  4899. }
  4900. },
  4901. back: {
  4902. height: math.unit(5, "meters"),
  4903. weight: math.unit(1000, "kg"),
  4904. name: "Back",
  4905. image: {
  4906. source: "./media/characters/asche/back.svg",
  4907. extra: 1570 / 1501
  4908. }
  4909. },
  4910. },
  4911. [
  4912. {
  4913. name: "DEFCON 5",
  4914. height: math.unit(5, "meters")
  4915. },
  4916. {
  4917. name: "DEFCON 4",
  4918. height: math.unit(500, "meters"),
  4919. default: true
  4920. },
  4921. {
  4922. name: "DEFCON 3",
  4923. height: math.unit(5, "km")
  4924. },
  4925. {
  4926. name: "DEFCON 2",
  4927. height: math.unit(500, "km")
  4928. },
  4929. {
  4930. name: "DEFCON 1",
  4931. height: math.unit(500000, "km")
  4932. },
  4933. {
  4934. name: "DEFCON 0",
  4935. height: math.unit(3, "gigaparsecs")
  4936. },
  4937. ]
  4938. ))
  4939. characterMakers.push(() => makeCharacter(
  4940. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4941. {
  4942. front: {
  4943. height: math.unit(2, "meters"),
  4944. weight: math.unit(76, "kg"),
  4945. name: "Front",
  4946. image: {
  4947. source: "./media/characters/gale/front.svg"
  4948. }
  4949. },
  4950. frontAlt1: {
  4951. height: math.unit(2, "meters"),
  4952. weight: math.unit(76, "kg"),
  4953. name: "Front (Alt 1)",
  4954. image: {
  4955. source: "./media/characters/gale/front-alt-1.svg"
  4956. }
  4957. },
  4958. frontAlt2: {
  4959. height: math.unit(2, "meters"),
  4960. weight: math.unit(76, "kg"),
  4961. name: "Front (Alt 2)",
  4962. image: {
  4963. source: "./media/characters/gale/front-alt-2.svg"
  4964. }
  4965. },
  4966. },
  4967. [
  4968. {
  4969. name: "Normal",
  4970. height: math.unit(7, "feet")
  4971. },
  4972. {
  4973. name: "Macro",
  4974. height: math.unit(150, "feet"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Macro+",
  4979. height: math.unit(300, "feet")
  4980. },
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4985. {
  4986. front: {
  4987. height: math.unit(5 + 10/12, "feet"),
  4988. weight: math.unit(67, "kg"),
  4989. name: "Front",
  4990. image: {
  4991. source: "./media/characters/draylen/front.svg",
  4992. extra: 832/777,
  4993. bottom: 85/917
  4994. }
  4995. }
  4996. },
  4997. [
  4998. {
  4999. name: "Normal",
  5000. height: math.unit(5 + 10/12, "feet")
  5001. },
  5002. {
  5003. name: "Macro",
  5004. height: math.unit(150, "feet"),
  5005. default: true
  5006. }
  5007. ]
  5008. ))
  5009. characterMakers.push(() => makeCharacter(
  5010. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5011. {
  5012. front: {
  5013. height: math.unit(7 + 9 / 12, "feet"),
  5014. weight: math.unit(379, "lbs"),
  5015. name: "Front",
  5016. image: {
  5017. source: "./media/characters/chez/front.svg"
  5018. }
  5019. },
  5020. side: {
  5021. height: math.unit(7 + 9 / 12, "feet"),
  5022. weight: math.unit(379, "lbs"),
  5023. name: "Side",
  5024. image: {
  5025. source: "./media/characters/chez/side.svg"
  5026. }
  5027. }
  5028. },
  5029. [
  5030. {
  5031. name: "Normal",
  5032. height: math.unit(7 + 9 / 12, "feet"),
  5033. default: true
  5034. },
  5035. {
  5036. name: "God King",
  5037. height: math.unit(9750000, "meters")
  5038. }
  5039. ]
  5040. ))
  5041. characterMakers.push(() => makeCharacter(
  5042. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5043. {
  5044. front: {
  5045. height: math.unit(6, "feet"),
  5046. weight: math.unit(275, "lbs"),
  5047. name: "Front",
  5048. image: {
  5049. source: "./media/characters/kaylum/front.svg",
  5050. bottom: 0.01,
  5051. extra: 1166 / 1031
  5052. }
  5053. },
  5054. frontWingless: {
  5055. height: math.unit(6, "feet"),
  5056. weight: math.unit(275, "lbs"),
  5057. name: "Front (Wingless)",
  5058. image: {
  5059. source: "./media/characters/kaylum/front-wingless.svg",
  5060. bottom: 0.01,
  5061. extra: 1117 / 1031
  5062. }
  5063. }
  5064. },
  5065. [
  5066. {
  5067. name: "Normal",
  5068. height: math.unit(3.05, "meters")
  5069. },
  5070. {
  5071. name: "Master",
  5072. height: math.unit(5.5, "meters")
  5073. },
  5074. {
  5075. name: "Rampage",
  5076. height: math.unit(19, "meters")
  5077. },
  5078. {
  5079. name: "Macro Lite",
  5080. height: math.unit(37, "meters")
  5081. },
  5082. {
  5083. name: "Hyper Predator",
  5084. height: math.unit(61, "meters")
  5085. },
  5086. {
  5087. name: "Macro",
  5088. height: math.unit(138, "meters"),
  5089. default: true
  5090. }
  5091. ]
  5092. ))
  5093. characterMakers.push(() => makeCharacter(
  5094. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5095. {
  5096. front: {
  5097. height: math.unit(5 + 5 / 12, "feet"),
  5098. weight: math.unit(120, "lbs"),
  5099. name: "Front",
  5100. image: {
  5101. source: "./media/characters/geta/front.svg",
  5102. extra: 1003/933,
  5103. bottom: 21/1024
  5104. }
  5105. },
  5106. paw: {
  5107. height: math.unit(0.35, "feet"),
  5108. name: "Paw",
  5109. image: {
  5110. source: "./media/characters/geta/paw.svg"
  5111. }
  5112. },
  5113. },
  5114. [
  5115. {
  5116. name: "Micro",
  5117. height: math.unit(3, "inches"),
  5118. default: true
  5119. },
  5120. {
  5121. name: "Normal",
  5122. height: math.unit(5 + 5 / 12, "feet")
  5123. }
  5124. ]
  5125. ))
  5126. characterMakers.push(() => makeCharacter(
  5127. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5128. {
  5129. front: {
  5130. height: math.unit(6, "feet"),
  5131. weight: math.unit(300, "lbs"),
  5132. name: "Front",
  5133. image: {
  5134. source: "./media/characters/tyrnn/front.svg"
  5135. }
  5136. }
  5137. },
  5138. [
  5139. {
  5140. name: "Main Height",
  5141. height: math.unit(355, "feet"),
  5142. default: true
  5143. },
  5144. {
  5145. name: "Fave. Height",
  5146. height: math.unit(2400, "feet")
  5147. }
  5148. ]
  5149. ))
  5150. characterMakers.push(() => makeCharacter(
  5151. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5152. {
  5153. front: {
  5154. height: math.unit(6, "feet"),
  5155. weight: math.unit(300, "lbs"),
  5156. name: "Front",
  5157. image: {
  5158. source: "./media/characters/appledectomy/front.svg"
  5159. }
  5160. }
  5161. },
  5162. [
  5163. {
  5164. name: "Macro",
  5165. height: math.unit(2500, "feet")
  5166. },
  5167. {
  5168. name: "Megamacro",
  5169. height: math.unit(50, "miles"),
  5170. default: true
  5171. },
  5172. {
  5173. name: "Gigamacro",
  5174. height: math.unit(5000, "miles")
  5175. },
  5176. {
  5177. name: "Teramacro",
  5178. height: math.unit(250000, "miles")
  5179. },
  5180. ]
  5181. ))
  5182. characterMakers.push(() => makeCharacter(
  5183. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5184. {
  5185. front: {
  5186. height: math.unit(6, "feet"),
  5187. weight: math.unit(200, "lbs"),
  5188. name: "Front",
  5189. image: {
  5190. source: "./media/characters/vulpes/front.svg",
  5191. extra: 573 / 543,
  5192. bottom: 0.033
  5193. }
  5194. },
  5195. side: {
  5196. height: math.unit(6, "feet"),
  5197. weight: math.unit(200, "lbs"),
  5198. name: "Side",
  5199. image: {
  5200. source: "./media/characters/vulpes/side.svg",
  5201. extra: 577 / 549,
  5202. bottom: 11 / 588
  5203. }
  5204. },
  5205. back: {
  5206. height: math.unit(6, "feet"),
  5207. weight: math.unit(200, "lbs"),
  5208. name: "Back",
  5209. image: {
  5210. source: "./media/characters/vulpes/back.svg",
  5211. extra: 573 / 549,
  5212. bottom: 20 / 593
  5213. }
  5214. },
  5215. feet: {
  5216. height: math.unit(1.276, "feet"),
  5217. name: "Feet",
  5218. image: {
  5219. source: "./media/characters/vulpes/feet.svg"
  5220. }
  5221. },
  5222. maw: {
  5223. height: math.unit(1.18, "feet"),
  5224. name: "Maw",
  5225. image: {
  5226. source: "./media/characters/vulpes/maw.svg"
  5227. }
  5228. },
  5229. },
  5230. [
  5231. {
  5232. name: "Micro",
  5233. height: math.unit(2, "inches")
  5234. },
  5235. {
  5236. name: "Normal",
  5237. height: math.unit(6.3, "feet")
  5238. },
  5239. {
  5240. name: "Macro",
  5241. height: math.unit(850, "feet")
  5242. },
  5243. {
  5244. name: "Megamacro",
  5245. height: math.unit(7500, "feet"),
  5246. default: true
  5247. },
  5248. {
  5249. name: "Gigamacro",
  5250. height: math.unit(570000, "miles")
  5251. }
  5252. ]
  5253. ))
  5254. characterMakers.push(() => makeCharacter(
  5255. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5256. {
  5257. front: {
  5258. height: math.unit(6, "feet"),
  5259. weight: math.unit(210, "lbs"),
  5260. name: "Front",
  5261. image: {
  5262. source: "./media/characters/rain-fallen/front.svg"
  5263. }
  5264. },
  5265. side: {
  5266. height: math.unit(6, "feet"),
  5267. weight: math.unit(210, "lbs"),
  5268. name: "Side",
  5269. image: {
  5270. source: "./media/characters/rain-fallen/side.svg"
  5271. }
  5272. },
  5273. back: {
  5274. height: math.unit(6, "feet"),
  5275. weight: math.unit(210, "lbs"),
  5276. name: "Back",
  5277. image: {
  5278. source: "./media/characters/rain-fallen/back.svg"
  5279. }
  5280. },
  5281. feral: {
  5282. height: math.unit(9, "feet"),
  5283. weight: math.unit(700, "lbs"),
  5284. name: "Feral",
  5285. image: {
  5286. source: "./media/characters/rain-fallen/feral.svg"
  5287. }
  5288. },
  5289. },
  5290. [
  5291. {
  5292. name: "Meddling with Mortals",
  5293. height: math.unit(8 + 8/12, "feet")
  5294. },
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(5, "meter")
  5298. },
  5299. {
  5300. name: "Macro",
  5301. height: math.unit(150, "meter"),
  5302. default: true
  5303. },
  5304. {
  5305. name: "Megamacro",
  5306. height: math.unit(278e6, "meter")
  5307. },
  5308. {
  5309. name: "Gigamacro",
  5310. height: math.unit(2e9, "meter")
  5311. },
  5312. {
  5313. name: "Teramacro",
  5314. height: math.unit(8e12, "meter")
  5315. },
  5316. {
  5317. name: "Devourer",
  5318. height: math.unit(14, "zettameters")
  5319. },
  5320. {
  5321. name: "Scarlet King",
  5322. height: math.unit(18, "yottameters")
  5323. },
  5324. {
  5325. name: "Void",
  5326. height: math.unit(1e88, "yottameters")
  5327. }
  5328. ]
  5329. ))
  5330. characterMakers.push(() => makeCharacter(
  5331. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5332. {
  5333. standing: {
  5334. height: math.unit(6, "feet"),
  5335. weight: math.unit(180, "lbs"),
  5336. name: "Standing",
  5337. image: {
  5338. source: "./media/characters/zaakira/standing.svg",
  5339. extra: 1599/1504,
  5340. bottom: 39/1638
  5341. }
  5342. },
  5343. laying: {
  5344. height: math.unit(3.3, "feet"),
  5345. weight: math.unit(180, "lbs"),
  5346. name: "Laying",
  5347. image: {
  5348. source: "./media/characters/zaakira/laying.svg"
  5349. }
  5350. },
  5351. },
  5352. [
  5353. {
  5354. name: "Normal",
  5355. height: math.unit(12, "feet")
  5356. },
  5357. {
  5358. name: "Macro",
  5359. height: math.unit(279, "feet"),
  5360. default: true
  5361. }
  5362. ]
  5363. ))
  5364. characterMakers.push(() => makeCharacter(
  5365. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5366. {
  5367. femSfw: {
  5368. height: math.unit(8, "feet"),
  5369. weight: math.unit(350, "lb"),
  5370. name: "Fem",
  5371. image: {
  5372. source: "./media/characters/sigvald/fem-sfw.svg",
  5373. extra: 182 / 164,
  5374. bottom: 8.7 / 190.5
  5375. }
  5376. },
  5377. femNsfw: {
  5378. height: math.unit(8, "feet"),
  5379. weight: math.unit(350, "lb"),
  5380. name: "Fem (NSFW)",
  5381. image: {
  5382. source: "./media/characters/sigvald/fem-nsfw.svg",
  5383. extra: 182 / 164,
  5384. bottom: 8.7 / 190.5
  5385. }
  5386. },
  5387. maleNsfw: {
  5388. height: math.unit(8, "feet"),
  5389. weight: math.unit(350, "lb"),
  5390. name: "Male (NSFW)",
  5391. image: {
  5392. source: "./media/characters/sigvald/male-nsfw.svg",
  5393. extra: 182 / 164,
  5394. bottom: 8.7 / 190.5
  5395. }
  5396. },
  5397. hermNsfw: {
  5398. height: math.unit(8, "feet"),
  5399. weight: math.unit(350, "lb"),
  5400. name: "Herm (NSFW)",
  5401. image: {
  5402. source: "./media/characters/sigvald/herm-nsfw.svg",
  5403. extra: 182 / 164,
  5404. bottom: 8.7 / 190.5
  5405. }
  5406. },
  5407. dick: {
  5408. height: math.unit(2.36, "feet"),
  5409. name: "Dick",
  5410. image: {
  5411. source: "./media/characters/sigvald/dick.svg"
  5412. }
  5413. },
  5414. eye: {
  5415. height: math.unit(0.31, "feet"),
  5416. name: "Eye",
  5417. image: {
  5418. source: "./media/characters/sigvald/eye.svg"
  5419. }
  5420. },
  5421. mouth: {
  5422. height: math.unit(0.92, "feet"),
  5423. name: "Mouth",
  5424. image: {
  5425. source: "./media/characters/sigvald/mouth.svg"
  5426. }
  5427. },
  5428. paws: {
  5429. height: math.unit(2.2, "feet"),
  5430. name: "Paws",
  5431. image: {
  5432. source: "./media/characters/sigvald/paws.svg"
  5433. }
  5434. }
  5435. },
  5436. [
  5437. {
  5438. name: "Normal",
  5439. height: math.unit(8, "feet")
  5440. },
  5441. {
  5442. name: "Large",
  5443. height: math.unit(12, "feet")
  5444. },
  5445. {
  5446. name: "Larger",
  5447. height: math.unit(20, "feet")
  5448. },
  5449. {
  5450. name: "Macro",
  5451. height: math.unit(150, "feet")
  5452. },
  5453. {
  5454. name: "Macro+",
  5455. height: math.unit(200, "feet"),
  5456. default: true
  5457. },
  5458. ]
  5459. ))
  5460. characterMakers.push(() => makeCharacter(
  5461. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5462. {
  5463. side: {
  5464. height: math.unit(12, "feet"),
  5465. weight: math.unit(2000, "kg"),
  5466. name: "Side",
  5467. image: {
  5468. source: "./media/characters/scott/side.svg",
  5469. extra: 754 / 724,
  5470. bottom: 0.069
  5471. }
  5472. },
  5473. upright: {
  5474. height: math.unit(12, "feet"),
  5475. weight: math.unit(2000, "kg"),
  5476. name: "Upright",
  5477. image: {
  5478. source: "./media/characters/scott/upright.svg",
  5479. extra: 3881 / 3722,
  5480. bottom: 0.05
  5481. }
  5482. },
  5483. },
  5484. [
  5485. {
  5486. name: "Normal",
  5487. height: math.unit(12, "feet"),
  5488. default: true
  5489. },
  5490. ]
  5491. ))
  5492. characterMakers.push(() => makeCharacter(
  5493. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5494. {
  5495. side: {
  5496. height: math.unit(8, "meters"),
  5497. weight: math.unit(84755, "lbs"),
  5498. name: "Side",
  5499. image: {
  5500. source: "./media/characters/tobias/side.svg",
  5501. extra: 1474 / 1096,
  5502. bottom: 38.9 / 1513.1235
  5503. }
  5504. },
  5505. },
  5506. [
  5507. {
  5508. name: "Normal",
  5509. height: math.unit(8, "meters"),
  5510. default: true
  5511. },
  5512. ]
  5513. ))
  5514. characterMakers.push(() => makeCharacter(
  5515. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5516. {
  5517. front: {
  5518. height: math.unit(5.5, "feet"),
  5519. weight: math.unit(400, "lbs"),
  5520. name: "Front",
  5521. image: {
  5522. source: "./media/characters/kieran/front.svg",
  5523. extra: 2694 / 2364,
  5524. bottom: 217 / 2908
  5525. }
  5526. },
  5527. side: {
  5528. height: math.unit(5.5, "feet"),
  5529. weight: math.unit(400, "lbs"),
  5530. name: "Side",
  5531. image: {
  5532. source: "./media/characters/kieran/side.svg",
  5533. extra: 875 / 777,
  5534. bottom: 84.6 / 959
  5535. }
  5536. },
  5537. },
  5538. [
  5539. {
  5540. name: "Normal",
  5541. height: math.unit(5.5, "feet"),
  5542. default: true
  5543. },
  5544. ]
  5545. ))
  5546. characterMakers.push(() => makeCharacter(
  5547. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5548. {
  5549. side: {
  5550. height: math.unit(2, "meters"),
  5551. weight: math.unit(70, "kg"),
  5552. name: "Side",
  5553. image: {
  5554. source: "./media/characters/sanya/side.svg",
  5555. bottom: 0.02,
  5556. extra: 1.02
  5557. }
  5558. },
  5559. },
  5560. [
  5561. {
  5562. name: "Small",
  5563. height: math.unit(2, "meters")
  5564. },
  5565. {
  5566. name: "Normal",
  5567. height: math.unit(3, "meters")
  5568. },
  5569. {
  5570. name: "Macro",
  5571. height: math.unit(16, "meters"),
  5572. default: true
  5573. },
  5574. ]
  5575. ))
  5576. characterMakers.push(() => makeCharacter(
  5577. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5578. {
  5579. front: {
  5580. height: math.unit(2, "meters"),
  5581. weight: math.unit(120, "kg"),
  5582. name: "Front",
  5583. image: {
  5584. source: "./media/characters/miranda/front.svg",
  5585. extra: 195 / 185,
  5586. bottom: 10.9 / 206.5
  5587. }
  5588. },
  5589. back: {
  5590. height: math.unit(2, "meters"),
  5591. weight: math.unit(120, "kg"),
  5592. name: "Back",
  5593. image: {
  5594. source: "./media/characters/miranda/back.svg",
  5595. extra: 201 / 193,
  5596. bottom: 2.3 / 203.7
  5597. }
  5598. },
  5599. },
  5600. [
  5601. {
  5602. name: "Normal",
  5603. height: math.unit(10, "feet"),
  5604. default: true
  5605. }
  5606. ]
  5607. ))
  5608. characterMakers.push(() => makeCharacter(
  5609. { name: "James", species: ["deer"], tags: ["anthro"] },
  5610. {
  5611. side: {
  5612. height: math.unit(2, "meters"),
  5613. weight: math.unit(100, "kg"),
  5614. name: "Front",
  5615. image: {
  5616. source: "./media/characters/james/front.svg",
  5617. extra: 10 / 8.5
  5618. }
  5619. },
  5620. },
  5621. [
  5622. {
  5623. name: "Normal",
  5624. height: math.unit(8.5, "feet"),
  5625. default: true
  5626. }
  5627. ]
  5628. ))
  5629. characterMakers.push(() => makeCharacter(
  5630. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5631. {
  5632. side: {
  5633. height: math.unit(9.5, "feet"),
  5634. weight: math.unit(2500, "lbs"),
  5635. name: "Side",
  5636. image: {
  5637. source: "./media/characters/heather/side.svg"
  5638. }
  5639. },
  5640. },
  5641. [
  5642. {
  5643. name: "Normal",
  5644. height: math.unit(9.5, "feet"),
  5645. default: true
  5646. }
  5647. ]
  5648. ))
  5649. characterMakers.push(() => makeCharacter(
  5650. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5651. {
  5652. side: {
  5653. height: math.unit(6.5, "feet"),
  5654. weight: math.unit(400, "lbs"),
  5655. name: "Side",
  5656. image: {
  5657. source: "./media/characters/lukas/side.svg",
  5658. extra: 7.25 / 6.5
  5659. }
  5660. },
  5661. },
  5662. [
  5663. {
  5664. name: "Normal",
  5665. height: math.unit(6.5, "feet"),
  5666. default: true
  5667. }
  5668. ]
  5669. ))
  5670. characterMakers.push(() => makeCharacter(
  5671. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5672. {
  5673. side: {
  5674. height: math.unit(5, "feet"),
  5675. weight: math.unit(3000, "lbs"),
  5676. name: "Side",
  5677. image: {
  5678. source: "./media/characters/louise/side.svg"
  5679. }
  5680. },
  5681. },
  5682. [
  5683. {
  5684. name: "Normal",
  5685. height: math.unit(5, "feet"),
  5686. default: true
  5687. }
  5688. ]
  5689. ))
  5690. characterMakers.push(() => makeCharacter(
  5691. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5692. {
  5693. side: {
  5694. height: math.unit(6, "feet"),
  5695. weight: math.unit(150, "lbs"),
  5696. name: "Side",
  5697. image: {
  5698. source: "./media/characters/ramona/side.svg",
  5699. extra: 871/854,
  5700. bottom: 41/912
  5701. }
  5702. },
  5703. },
  5704. [
  5705. {
  5706. name: "Normal",
  5707. height: math.unit(6 + 4/12, "feet")
  5708. },
  5709. {
  5710. name: "Minimacro",
  5711. height: math.unit(5.3, "meters"),
  5712. default: true
  5713. },
  5714. {
  5715. name: "Macro",
  5716. height: math.unit(20, "stories")
  5717. },
  5718. {
  5719. name: "Macro+",
  5720. height: math.unit(50, "stories")
  5721. },
  5722. ]
  5723. ))
  5724. characterMakers.push(() => makeCharacter(
  5725. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5726. {
  5727. standing: {
  5728. height: math.unit(5.75, "feet"),
  5729. weight: math.unit(160, "lbs"),
  5730. name: "Standing",
  5731. image: {
  5732. source: "./media/characters/deerpuff/standing.svg",
  5733. extra: 682 / 624
  5734. }
  5735. },
  5736. sitting: {
  5737. height: math.unit(5.75 / 1.79, "feet"),
  5738. weight: math.unit(160, "lbs"),
  5739. name: "Sitting",
  5740. image: {
  5741. source: "./media/characters/deerpuff/sitting.svg",
  5742. bottom: 44 / 400,
  5743. extra: 1
  5744. }
  5745. },
  5746. taurLaying: {
  5747. height: math.unit(6, "feet"),
  5748. weight: math.unit(400, "lbs"),
  5749. name: "Taur (Laying)",
  5750. image: {
  5751. source: "./media/characters/deerpuff/taur-laying.svg"
  5752. }
  5753. },
  5754. },
  5755. [
  5756. {
  5757. name: "Puffball",
  5758. height: math.unit(6, "inches")
  5759. },
  5760. {
  5761. name: "Normalpuff",
  5762. height: math.unit(5.75, "feet")
  5763. },
  5764. {
  5765. name: "Macropuff",
  5766. height: math.unit(1500, "feet"),
  5767. default: true
  5768. },
  5769. {
  5770. name: "Megapuff",
  5771. height: math.unit(500, "miles")
  5772. },
  5773. {
  5774. name: "Gigapuff",
  5775. height: math.unit(250000, "miles")
  5776. },
  5777. {
  5778. name: "Omegapuff",
  5779. height: math.unit(1000, "lightyears")
  5780. },
  5781. ]
  5782. ))
  5783. characterMakers.push(() => makeCharacter(
  5784. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5785. {
  5786. stomping: {
  5787. height: math.unit(6, "feet"),
  5788. weight: math.unit(170, "lbs"),
  5789. name: "Stomping",
  5790. image: {
  5791. source: "./media/characters/vivian/stomping.svg"
  5792. }
  5793. },
  5794. sitting: {
  5795. height: math.unit(6 / 1.75, "feet"),
  5796. weight: math.unit(170, "lbs"),
  5797. name: "Sitting",
  5798. image: {
  5799. source: "./media/characters/vivian/sitting.svg",
  5800. bottom: 1 / 6.4,
  5801. extra: 1,
  5802. }
  5803. },
  5804. },
  5805. [
  5806. {
  5807. name: "Normal",
  5808. height: math.unit(7, "feet"),
  5809. default: true
  5810. },
  5811. {
  5812. name: "Macro",
  5813. height: math.unit(10, "stories")
  5814. },
  5815. {
  5816. name: "Macro+",
  5817. height: math.unit(30, "stories")
  5818. },
  5819. {
  5820. name: "Megamacro",
  5821. height: math.unit(10, "miles")
  5822. },
  5823. {
  5824. name: "Megamacro+",
  5825. height: math.unit(2750000, "meters")
  5826. },
  5827. ]
  5828. ))
  5829. characterMakers.push(() => makeCharacter(
  5830. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5831. {
  5832. front: {
  5833. height: math.unit(6, "feet"),
  5834. weight: math.unit(160, "lbs"),
  5835. name: "Front",
  5836. image: {
  5837. source: "./media/characters/prince/front.svg",
  5838. extra: 3400 / 3000
  5839. }
  5840. },
  5841. jumping: {
  5842. height: math.unit(6, "feet"),
  5843. weight: math.unit(160, "lbs"),
  5844. name: "Jumping",
  5845. image: {
  5846. source: "./media/characters/prince/jump.svg",
  5847. extra: 2555 / 2134
  5848. }
  5849. },
  5850. },
  5851. [
  5852. {
  5853. name: "Normal",
  5854. height: math.unit(7.75, "feet"),
  5855. default: true
  5856. },
  5857. {
  5858. name: "Not cute",
  5859. height: math.unit(17, "feet")
  5860. },
  5861. {
  5862. name: "I said NOT",
  5863. height: math.unit(91, "feet")
  5864. },
  5865. {
  5866. name: "Please stop",
  5867. height: math.unit(560, "feet")
  5868. },
  5869. {
  5870. name: "What have you done",
  5871. height: math.unit(2200, "feet")
  5872. },
  5873. {
  5874. name: "Deer God",
  5875. height: math.unit(3.6, "miles")
  5876. },
  5877. ]
  5878. ))
  5879. characterMakers.push(() => makeCharacter(
  5880. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5881. {
  5882. standing: {
  5883. height: math.unit(6, "feet"),
  5884. weight: math.unit(300, "lbs"),
  5885. name: "Standing",
  5886. image: {
  5887. source: "./media/characters/psymon/standing.svg",
  5888. extra: 1888 / 1810,
  5889. bottom: 0.05
  5890. }
  5891. },
  5892. slithering: {
  5893. height: math.unit(6, "feet"),
  5894. weight: math.unit(300, "lbs"),
  5895. name: "Slithering",
  5896. image: {
  5897. source: "./media/characters/psymon/slithering.svg",
  5898. extra: 1330 / 1224
  5899. }
  5900. },
  5901. slitheringAlt: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(300, "lbs"),
  5904. name: "Slithering (Alt)",
  5905. image: {
  5906. source: "./media/characters/psymon/slithering-alt.svg",
  5907. extra: 1330 / 1224
  5908. }
  5909. },
  5910. },
  5911. [
  5912. {
  5913. name: "Normal",
  5914. height: math.unit(11.25, "feet"),
  5915. default: true
  5916. },
  5917. {
  5918. name: "Large",
  5919. height: math.unit(27, "feet")
  5920. },
  5921. {
  5922. name: "Giant",
  5923. height: math.unit(87, "feet")
  5924. },
  5925. {
  5926. name: "Macro",
  5927. height: math.unit(365, "feet")
  5928. },
  5929. {
  5930. name: "Megamacro",
  5931. height: math.unit(3, "miles")
  5932. },
  5933. {
  5934. name: "World Serpent",
  5935. height: math.unit(8000, "miles")
  5936. },
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5941. {
  5942. front: {
  5943. height: math.unit(6, "feet"),
  5944. weight: math.unit(180, "lbs"),
  5945. name: "Front",
  5946. image: {
  5947. source: "./media/characters/daimos/front.svg",
  5948. extra: 4160 / 3897,
  5949. bottom: 0.021
  5950. }
  5951. }
  5952. },
  5953. [
  5954. {
  5955. name: "Normal",
  5956. height: math.unit(8, "feet"),
  5957. default: true
  5958. },
  5959. {
  5960. name: "Big Dog",
  5961. height: math.unit(22, "feet")
  5962. },
  5963. {
  5964. name: "Macro",
  5965. height: math.unit(127, "feet")
  5966. },
  5967. {
  5968. name: "Megamacro",
  5969. height: math.unit(3600, "feet")
  5970. },
  5971. ]
  5972. ))
  5973. characterMakers.push(() => makeCharacter(
  5974. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5975. {
  5976. side: {
  5977. height: math.unit(6, "feet"),
  5978. weight: math.unit(180, "lbs"),
  5979. name: "Side",
  5980. image: {
  5981. source: "./media/characters/blake/side.svg",
  5982. extra: 1212 / 1120,
  5983. bottom: 0.05
  5984. }
  5985. },
  5986. crouched: {
  5987. height: math.unit(6 * 0.57, "feet"),
  5988. weight: math.unit(180, "lbs"),
  5989. name: "Crouched",
  5990. image: {
  5991. source: "./media/characters/blake/crouched.svg",
  5992. extra: 840 / 587,
  5993. bottom: 0.04
  5994. }
  5995. },
  5996. bent: {
  5997. height: math.unit(6 * 0.75, "feet"),
  5998. weight: math.unit(180, "lbs"),
  5999. name: "Bent",
  6000. image: {
  6001. source: "./media/characters/blake/bent.svg",
  6002. extra: 592 / 544,
  6003. bottom: 0.035
  6004. }
  6005. },
  6006. },
  6007. [
  6008. {
  6009. name: "Normal",
  6010. height: math.unit(8 + 1 / 6, "feet"),
  6011. default: true
  6012. },
  6013. {
  6014. name: "Big Backside",
  6015. height: math.unit(37, "feet")
  6016. },
  6017. {
  6018. name: "Subway Shredder",
  6019. height: math.unit(72, "feet")
  6020. },
  6021. {
  6022. name: "City Carver",
  6023. height: math.unit(1675, "feet")
  6024. },
  6025. {
  6026. name: "Tectonic Tweaker",
  6027. height: math.unit(2300, "miles")
  6028. },
  6029. ]
  6030. ))
  6031. characterMakers.push(() => makeCharacter(
  6032. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6033. {
  6034. front: {
  6035. height: math.unit(6, "feet"),
  6036. weight: math.unit(180, "lbs"),
  6037. name: "Front",
  6038. image: {
  6039. source: "./media/characters/guisetto/front.svg",
  6040. extra: 856 / 817,
  6041. bottom: 0.06
  6042. }
  6043. },
  6044. airborne: {
  6045. height: math.unit(6, "feet"),
  6046. weight: math.unit(180, "lbs"),
  6047. name: "Airborne",
  6048. image: {
  6049. source: "./media/characters/guisetto/airborne.svg",
  6050. extra: 584 / 525
  6051. }
  6052. },
  6053. },
  6054. [
  6055. {
  6056. name: "Normal",
  6057. height: math.unit(10 + 11 / 12, "feet"),
  6058. default: true
  6059. },
  6060. {
  6061. name: "Large",
  6062. height: math.unit(35, "feet")
  6063. },
  6064. {
  6065. name: "Macro",
  6066. height: math.unit(475, "feet")
  6067. },
  6068. ]
  6069. ))
  6070. characterMakers.push(() => makeCharacter(
  6071. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6072. {
  6073. front: {
  6074. height: math.unit(6, "feet"),
  6075. weight: math.unit(180, "lbs"),
  6076. name: "Front",
  6077. image: {
  6078. source: "./media/characters/luxor/front.svg",
  6079. extra: 2940 / 2152
  6080. }
  6081. },
  6082. back: {
  6083. height: math.unit(6, "feet"),
  6084. weight: math.unit(180, "lbs"),
  6085. name: "Back",
  6086. image: {
  6087. source: "./media/characters/luxor/back.svg",
  6088. extra: 1083 / 960
  6089. }
  6090. },
  6091. },
  6092. [
  6093. {
  6094. name: "Normal",
  6095. height: math.unit(5 + 5 / 6, "feet"),
  6096. default: true
  6097. },
  6098. {
  6099. name: "Lamp",
  6100. height: math.unit(50, "feet")
  6101. },
  6102. {
  6103. name: "Lämp",
  6104. height: math.unit(300, "feet")
  6105. },
  6106. {
  6107. name: "The sun is a lamp",
  6108. height: math.unit(250000, "miles")
  6109. },
  6110. ]
  6111. ))
  6112. characterMakers.push(() => makeCharacter(
  6113. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6114. {
  6115. front: {
  6116. height: math.unit(6, "feet"),
  6117. weight: math.unit(50, "lbs"),
  6118. name: "Front",
  6119. image: {
  6120. source: "./media/characters/huoyan/front.svg"
  6121. }
  6122. },
  6123. side: {
  6124. height: math.unit(6, "feet"),
  6125. weight: math.unit(180, "lbs"),
  6126. name: "Side",
  6127. image: {
  6128. source: "./media/characters/huoyan/side.svg"
  6129. }
  6130. },
  6131. },
  6132. [
  6133. {
  6134. name: "Chef",
  6135. height: math.unit(9, "feet")
  6136. },
  6137. {
  6138. name: "Normal",
  6139. height: math.unit(65, "feet"),
  6140. default: true
  6141. },
  6142. {
  6143. name: "Macro",
  6144. height: math.unit(780, "feet")
  6145. },
  6146. {
  6147. name: "Flaming Mountain",
  6148. height: math.unit(4.8, "miles")
  6149. },
  6150. {
  6151. name: "Celestial",
  6152. height: math.unit(765000, "miles")
  6153. },
  6154. ]
  6155. ))
  6156. characterMakers.push(() => makeCharacter(
  6157. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6158. {
  6159. front: {
  6160. height: math.unit(5 + 3 / 4, "feet"),
  6161. weight: math.unit(120, "lbs"),
  6162. name: "Front",
  6163. image: {
  6164. source: "./media/characters/tails/front.svg"
  6165. }
  6166. }
  6167. },
  6168. [
  6169. {
  6170. name: "Normal",
  6171. height: math.unit(5 + 3 / 4, "feet"),
  6172. default: true
  6173. }
  6174. ]
  6175. ))
  6176. characterMakers.push(() => makeCharacter(
  6177. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6178. {
  6179. front: {
  6180. height: math.unit(4, "feet"),
  6181. weight: math.unit(50, "lbs"),
  6182. name: "Front",
  6183. image: {
  6184. source: "./media/characters/rainy/front.svg"
  6185. }
  6186. }
  6187. },
  6188. [
  6189. {
  6190. name: "Macro",
  6191. height: math.unit(800, "feet"),
  6192. default: true
  6193. }
  6194. ]
  6195. ))
  6196. characterMakers.push(() => makeCharacter(
  6197. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6198. {
  6199. front: {
  6200. height: math.unit(6, "feet"),
  6201. weight: math.unit(150, "lbs"),
  6202. name: "Front",
  6203. image: {
  6204. source: "./media/characters/rainier/front.svg"
  6205. }
  6206. }
  6207. },
  6208. [
  6209. {
  6210. name: "Micro",
  6211. height: math.unit(2, "mm"),
  6212. default: true
  6213. }
  6214. ]
  6215. ))
  6216. characterMakers.push(() => makeCharacter(
  6217. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6218. {
  6219. front: {
  6220. height: math.unit(8 + 4/12, "feet"),
  6221. weight: math.unit(450, "kilograms"),
  6222. volume: math.unit(5, "cups"),
  6223. name: "Front",
  6224. image: {
  6225. source: "./media/characters/andy-renard/front.svg",
  6226. extra: 1839/1726,
  6227. bottom: 134/1973
  6228. }
  6229. },
  6230. back: {
  6231. height: math.unit(8 + 4/12, "feet"),
  6232. weight: math.unit(450, "kilograms"),
  6233. volume: math.unit(5, "cups"),
  6234. name: "Back",
  6235. image: {
  6236. source: "./media/characters/andy-renard/back.svg",
  6237. extra: 1838/1710,
  6238. bottom: 105/1943
  6239. }
  6240. },
  6241. },
  6242. [
  6243. {
  6244. name: "Tall",
  6245. height: math.unit(8 + 4/12, "feet")
  6246. },
  6247. {
  6248. name: "Mini Macro",
  6249. height: math.unit(15, "feet"),
  6250. default: true
  6251. },
  6252. {
  6253. name: "Macro",
  6254. height: math.unit(100, "feet")
  6255. },
  6256. {
  6257. name: "Mega Macro",
  6258. height: math.unit(1000, "feet")
  6259. },
  6260. {
  6261. name: "Giga Macro",
  6262. height: math.unit(10, "miles")
  6263. },
  6264. {
  6265. name: "God Macro",
  6266. height: math.unit(1, "multiverse")
  6267. },
  6268. ]
  6269. ))
  6270. characterMakers.push(() => makeCharacter(
  6271. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6272. {
  6273. front: {
  6274. height: math.unit(6, "feet"),
  6275. weight: math.unit(210, "lbs"),
  6276. name: "Front",
  6277. image: {
  6278. source: "./media/characters/cimmaron/front-sfw.svg",
  6279. extra: 701 / 676,
  6280. bottom: 0.046
  6281. }
  6282. },
  6283. back: {
  6284. height: math.unit(6, "feet"),
  6285. weight: math.unit(210, "lbs"),
  6286. name: "Back",
  6287. image: {
  6288. source: "./media/characters/cimmaron/back-sfw.svg",
  6289. extra: 701 / 676,
  6290. bottom: 0.046
  6291. }
  6292. },
  6293. frontNsfw: {
  6294. height: math.unit(6, "feet"),
  6295. weight: math.unit(210, "lbs"),
  6296. name: "Front (NSFW)",
  6297. image: {
  6298. source: "./media/characters/cimmaron/front-nsfw.svg",
  6299. extra: 701 / 676,
  6300. bottom: 0.046
  6301. }
  6302. },
  6303. backNsfw: {
  6304. height: math.unit(6, "feet"),
  6305. weight: math.unit(210, "lbs"),
  6306. name: "Back (NSFW)",
  6307. image: {
  6308. source: "./media/characters/cimmaron/back-nsfw.svg",
  6309. extra: 701 / 676,
  6310. bottom: 0.046
  6311. }
  6312. },
  6313. dick: {
  6314. height: math.unit(1.714, "feet"),
  6315. name: "Dick",
  6316. image: {
  6317. source: "./media/characters/cimmaron/dick.svg"
  6318. }
  6319. },
  6320. },
  6321. [
  6322. {
  6323. name: "Normal",
  6324. height: math.unit(6, "feet"),
  6325. default: true
  6326. },
  6327. {
  6328. name: "Macro Mayor",
  6329. height: math.unit(350, "meters")
  6330. },
  6331. ]
  6332. ))
  6333. characterMakers.push(() => makeCharacter(
  6334. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6335. {
  6336. front: {
  6337. height: math.unit(6, "feet"),
  6338. weight: math.unit(200, "lbs"),
  6339. name: "Front",
  6340. image: {
  6341. source: "./media/characters/akari/front.svg",
  6342. extra: 962 / 901,
  6343. bottom: 0.04
  6344. }
  6345. }
  6346. },
  6347. [
  6348. {
  6349. name: "Micro",
  6350. height: math.unit(5, "inches"),
  6351. default: true
  6352. },
  6353. {
  6354. name: "Normal",
  6355. height: math.unit(7, "feet")
  6356. },
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6361. {
  6362. front: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(140, "lbs"),
  6365. name: "Front",
  6366. image: {
  6367. source: "./media/characters/cynosura/front.svg",
  6368. extra: 896 / 847
  6369. }
  6370. },
  6371. back: {
  6372. height: math.unit(6, "feet"),
  6373. weight: math.unit(140, "lbs"),
  6374. name: "Back",
  6375. image: {
  6376. source: "./media/characters/cynosura/back.svg",
  6377. extra: 1365 / 1250
  6378. }
  6379. },
  6380. },
  6381. [
  6382. {
  6383. name: "Micro",
  6384. height: math.unit(4, "inches")
  6385. },
  6386. {
  6387. name: "Normal",
  6388. height: math.unit(5.75, "feet"),
  6389. default: true
  6390. },
  6391. {
  6392. name: "Tall",
  6393. height: math.unit(10, "feet")
  6394. },
  6395. {
  6396. name: "Big",
  6397. height: math.unit(20, "feet")
  6398. },
  6399. {
  6400. name: "Macro",
  6401. height: math.unit(50, "feet")
  6402. },
  6403. ]
  6404. ))
  6405. characterMakers.push(() => makeCharacter(
  6406. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6407. {
  6408. front: {
  6409. height: math.unit(13 + 2/12, "feet"),
  6410. weight: math.unit(800, "kg"),
  6411. name: "Front",
  6412. image: {
  6413. source: "./media/characters/gin/front.svg",
  6414. extra: 1312/1191,
  6415. bottom: 45/1357
  6416. }
  6417. },
  6418. mouth: {
  6419. height: math.unit(2.39 * 1.8, "feet"),
  6420. name: "Mouth",
  6421. image: {
  6422. source: "./media/characters/gin/mouth.svg"
  6423. }
  6424. },
  6425. hand: {
  6426. height: math.unit(1.57 * 2.19, "feet"),
  6427. name: "Hand",
  6428. image: {
  6429. source: "./media/characters/gin/hand.svg"
  6430. }
  6431. },
  6432. foot: {
  6433. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6434. name: "Foot",
  6435. image: {
  6436. source: "./media/characters/gin/foot.svg"
  6437. }
  6438. },
  6439. sole: {
  6440. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6441. name: "Sole",
  6442. image: {
  6443. source: "./media/characters/gin/sole.svg"
  6444. }
  6445. },
  6446. },
  6447. [
  6448. {
  6449. name: "Very Small",
  6450. height: math.unit(13 + 2 / 12, "feet")
  6451. },
  6452. {
  6453. name: "Micro",
  6454. height: math.unit(600, "miles")
  6455. },
  6456. {
  6457. name: "Regular",
  6458. height: math.unit(20, "earths"),
  6459. default: true
  6460. },
  6461. {
  6462. name: "Macro",
  6463. height: math.unit(2.2, "solarradii")
  6464. },
  6465. {
  6466. name: "Teramacro",
  6467. height: math.unit(1.2, "galaxies")
  6468. },
  6469. {
  6470. name: "Omegamacro",
  6471. height: math.unit(200, "universes")
  6472. },
  6473. ]
  6474. ))
  6475. characterMakers.push(() => makeCharacter(
  6476. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6477. {
  6478. front: {
  6479. height: math.unit(6 + 1 / 6, "feet"),
  6480. weight: math.unit(178, "lbs"),
  6481. name: "Front",
  6482. image: {
  6483. source: "./media/characters/guy/front.svg"
  6484. }
  6485. }
  6486. },
  6487. [
  6488. {
  6489. name: "Normal",
  6490. height: math.unit(6 + 1 / 6, "feet"),
  6491. default: true
  6492. },
  6493. {
  6494. name: "Large",
  6495. height: math.unit(25 + 7 / 12, "feet")
  6496. },
  6497. {
  6498. name: "Macro",
  6499. height: math.unit(60 + 9 / 12, "feet")
  6500. },
  6501. {
  6502. name: "Macro+",
  6503. height: math.unit(246, "feet")
  6504. },
  6505. {
  6506. name: "Macro++",
  6507. height: math.unit(878, "feet")
  6508. }
  6509. ]
  6510. ))
  6511. characterMakers.push(() => makeCharacter(
  6512. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6513. {
  6514. front: {
  6515. height: math.unit(9, "feet"),
  6516. weight: math.unit(800, "lbs"),
  6517. name: "Front",
  6518. image: {
  6519. source: "./media/characters/tiberius/front.svg",
  6520. extra: 2295 / 2071
  6521. }
  6522. },
  6523. back: {
  6524. height: math.unit(9, "feet"),
  6525. weight: math.unit(800, "lbs"),
  6526. name: "Back",
  6527. image: {
  6528. source: "./media/characters/tiberius/back.svg",
  6529. extra: 2373 / 2160
  6530. }
  6531. },
  6532. },
  6533. [
  6534. {
  6535. name: "Normal",
  6536. height: math.unit(9, "feet"),
  6537. default: true
  6538. }
  6539. ]
  6540. ))
  6541. characterMakers.push(() => makeCharacter(
  6542. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6543. {
  6544. front: {
  6545. height: math.unit(6, "feet"),
  6546. weight: math.unit(600, "lbs"),
  6547. name: "Front",
  6548. image: {
  6549. source: "./media/characters/surgo/front.svg",
  6550. extra: 3591 / 2227
  6551. }
  6552. },
  6553. back: {
  6554. height: math.unit(6, "feet"),
  6555. weight: math.unit(600, "lbs"),
  6556. name: "Back",
  6557. image: {
  6558. source: "./media/characters/surgo/back.svg",
  6559. extra: 3557 / 2228
  6560. }
  6561. },
  6562. laying: {
  6563. height: math.unit(6 * 0.85, "feet"),
  6564. weight: math.unit(600, "lbs"),
  6565. name: "Laying",
  6566. image: {
  6567. source: "./media/characters/surgo/laying.svg"
  6568. }
  6569. },
  6570. },
  6571. [
  6572. {
  6573. name: "Normal",
  6574. height: math.unit(6, "feet"),
  6575. default: true
  6576. }
  6577. ]
  6578. ))
  6579. characterMakers.push(() => makeCharacter(
  6580. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6581. {
  6582. side: {
  6583. height: math.unit(6, "feet"),
  6584. weight: math.unit(150, "lbs"),
  6585. name: "Side",
  6586. image: {
  6587. source: "./media/characters/cibus/side.svg",
  6588. extra: 800 / 400
  6589. }
  6590. },
  6591. },
  6592. [
  6593. {
  6594. name: "Normal",
  6595. height: math.unit(6, "feet"),
  6596. default: true
  6597. }
  6598. ]
  6599. ))
  6600. characterMakers.push(() => makeCharacter(
  6601. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6602. {
  6603. front: {
  6604. height: math.unit(6, "feet"),
  6605. weight: math.unit(240, "lbs"),
  6606. name: "Front",
  6607. image: {
  6608. source: "./media/characters/nibbles/front.svg"
  6609. }
  6610. },
  6611. side: {
  6612. height: math.unit(6, "feet"),
  6613. weight: math.unit(240, "lbs"),
  6614. name: "Side",
  6615. image: {
  6616. source: "./media/characters/nibbles/side.svg"
  6617. }
  6618. },
  6619. },
  6620. [
  6621. {
  6622. name: "Normal",
  6623. height: math.unit(9, "feet"),
  6624. default: true
  6625. }
  6626. ]
  6627. ))
  6628. characterMakers.push(() => makeCharacter(
  6629. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6630. {
  6631. side: {
  6632. height: math.unit(5 + 1 / 6, "feet"),
  6633. weight: math.unit(130, "lbs"),
  6634. name: "Side",
  6635. image: {
  6636. source: "./media/characters/rikky/side.svg",
  6637. extra: 851 / 801
  6638. }
  6639. },
  6640. },
  6641. [
  6642. {
  6643. name: "Normal",
  6644. height: math.unit(5 + 1 / 6, "feet")
  6645. },
  6646. {
  6647. name: "Macro",
  6648. height: math.unit(152, "feet"),
  6649. default: true
  6650. },
  6651. {
  6652. name: "Megamacro",
  6653. height: math.unit(7, "miles")
  6654. }
  6655. ]
  6656. ))
  6657. characterMakers.push(() => makeCharacter(
  6658. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6659. {
  6660. side: {
  6661. height: math.unit(370, "cm"),
  6662. weight: math.unit(350, "lbs"),
  6663. name: "Side",
  6664. image: {
  6665. source: "./media/characters/malfressa/side.svg"
  6666. }
  6667. },
  6668. walking: {
  6669. height: math.unit(370, "cm"),
  6670. weight: math.unit(350, "lbs"),
  6671. name: "Walking",
  6672. image: {
  6673. source: "./media/characters/malfressa/walking.svg"
  6674. }
  6675. },
  6676. feral: {
  6677. height: math.unit(2500, "cm"),
  6678. weight: math.unit(100000, "lbs"),
  6679. name: "Feral",
  6680. image: {
  6681. source: "./media/characters/malfressa/feral.svg",
  6682. extra: 2108 / 837,
  6683. bottom: 0.02
  6684. }
  6685. },
  6686. },
  6687. [
  6688. {
  6689. name: "Normal",
  6690. height: math.unit(370, "cm")
  6691. },
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(300, "meters"),
  6695. default: true
  6696. }
  6697. ]
  6698. ))
  6699. characterMakers.push(() => makeCharacter(
  6700. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6701. {
  6702. front: {
  6703. height: math.unit(6, "feet"),
  6704. weight: math.unit(60, "kg"),
  6705. name: "Front",
  6706. image: {
  6707. source: "./media/characters/jaro/front.svg",
  6708. extra: 845/817,
  6709. bottom: 45/890
  6710. }
  6711. },
  6712. back: {
  6713. height: math.unit(6, "feet"),
  6714. weight: math.unit(60, "kg"),
  6715. name: "Back",
  6716. image: {
  6717. source: "./media/characters/jaro/back.svg",
  6718. extra: 847/817,
  6719. bottom: 34/881
  6720. }
  6721. },
  6722. },
  6723. [
  6724. {
  6725. name: "Micro",
  6726. height: math.unit(7, "inches")
  6727. },
  6728. {
  6729. name: "Normal",
  6730. height: math.unit(5.5, "feet"),
  6731. default: true
  6732. },
  6733. {
  6734. name: "Minimacro",
  6735. height: math.unit(20, "feet")
  6736. },
  6737. {
  6738. name: "Macro",
  6739. height: math.unit(200, "meters")
  6740. }
  6741. ]
  6742. ))
  6743. characterMakers.push(() => makeCharacter(
  6744. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6745. {
  6746. front: {
  6747. height: math.unit(6, "feet"),
  6748. weight: math.unit(195, "lb"),
  6749. name: "Front",
  6750. image: {
  6751. source: "./media/characters/rogue/front.svg"
  6752. }
  6753. },
  6754. },
  6755. [
  6756. {
  6757. name: "Macro",
  6758. height: math.unit(90, "feet"),
  6759. default: true
  6760. },
  6761. ]
  6762. ))
  6763. characterMakers.push(() => makeCharacter(
  6764. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6765. {
  6766. standing: {
  6767. height: math.unit(5 + 8 / 12, "feet"),
  6768. weight: math.unit(140, "lb"),
  6769. name: "Standing",
  6770. image: {
  6771. source: "./media/characters/piper/standing.svg",
  6772. extra: 1440/1284,
  6773. bottom: 66/1506
  6774. }
  6775. },
  6776. running: {
  6777. height: math.unit(5 + 8 / 12, "feet"),
  6778. weight: math.unit(140, "lb"),
  6779. name: "Running",
  6780. image: {
  6781. source: "./media/characters/piper/running.svg",
  6782. extra: 3948/3655,
  6783. bottom: 0/3948
  6784. }
  6785. },
  6786. sole: {
  6787. height: math.unit(0.81, "feet"),
  6788. weight: math.unit(2, "kg"),
  6789. name: "Sole",
  6790. image: {
  6791. source: "./media/characters/piper/sole.svg"
  6792. }
  6793. },
  6794. nipple: {
  6795. height: math.unit(0.25, "feet"),
  6796. weight: math.unit(1.5, "lb"),
  6797. name: "Nipple",
  6798. image: {
  6799. source: "./media/characters/piper/nipple.svg"
  6800. }
  6801. },
  6802. head: {
  6803. height: math.unit(1.1, "feet"),
  6804. name: "Head",
  6805. image: {
  6806. source: "./media/characters/piper/head.svg"
  6807. }
  6808. },
  6809. },
  6810. [
  6811. {
  6812. name: "Micro",
  6813. height: math.unit(2, "inches")
  6814. },
  6815. {
  6816. name: "Normal",
  6817. height: math.unit(5 + 8 / 12, "feet")
  6818. },
  6819. {
  6820. name: "Macro",
  6821. height: math.unit(250, "feet"),
  6822. default: true
  6823. },
  6824. {
  6825. name: "Megamacro",
  6826. height: math.unit(7, "miles")
  6827. },
  6828. ]
  6829. ))
  6830. characterMakers.push(() => makeCharacter(
  6831. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6832. {
  6833. front: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(220, "lb"),
  6836. name: "Front",
  6837. image: {
  6838. source: "./media/characters/gemini/front.svg"
  6839. }
  6840. },
  6841. back: {
  6842. height: math.unit(6, "feet"),
  6843. weight: math.unit(220, "lb"),
  6844. name: "Back",
  6845. image: {
  6846. source: "./media/characters/gemini/back.svg"
  6847. }
  6848. },
  6849. kneeling: {
  6850. height: math.unit(6 / 1.5, "feet"),
  6851. weight: math.unit(220, "lb"),
  6852. name: "Kneeling",
  6853. image: {
  6854. source: "./media/characters/gemini/kneeling.svg",
  6855. bottom: 0.02
  6856. }
  6857. },
  6858. },
  6859. [
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(300, "meters"),
  6863. default: true
  6864. },
  6865. {
  6866. name: "Megamacro",
  6867. height: math.unit(6900, "meters")
  6868. },
  6869. ]
  6870. ))
  6871. characterMakers.push(() => makeCharacter(
  6872. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6873. {
  6874. anthro: {
  6875. height: math.unit(2.35, "meters"),
  6876. weight: math.unit(73, "kg"),
  6877. name: "Anthro",
  6878. image: {
  6879. source: "./media/characters/alicia/anthro.svg",
  6880. extra: 2571 / 2385,
  6881. bottom: 75 / 2648
  6882. }
  6883. },
  6884. paw: {
  6885. height: math.unit(1.32, "feet"),
  6886. name: "Paw",
  6887. image: {
  6888. source: "./media/characters/alicia/paw.svg"
  6889. }
  6890. },
  6891. feral: {
  6892. height: math.unit(1.69, "meters"),
  6893. weight: math.unit(73, "kg"),
  6894. name: "Feral",
  6895. image: {
  6896. source: "./media/characters/alicia/feral.svg",
  6897. extra: 2123 / 1715,
  6898. bottom: 222 / 2349
  6899. }
  6900. },
  6901. },
  6902. [
  6903. {
  6904. name: "Normal",
  6905. height: math.unit(2.35, "meters")
  6906. },
  6907. {
  6908. name: "Macro",
  6909. height: math.unit(60, "meters"),
  6910. default: true
  6911. },
  6912. {
  6913. name: "Megamacro",
  6914. height: math.unit(10000, "kilometers")
  6915. },
  6916. ]
  6917. ))
  6918. characterMakers.push(() => makeCharacter(
  6919. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6920. {
  6921. front: {
  6922. height: math.unit(7, "feet"),
  6923. weight: math.unit(250, "lbs"),
  6924. name: "Front",
  6925. image: {
  6926. source: "./media/characters/archy/front.svg"
  6927. }
  6928. }
  6929. },
  6930. [
  6931. {
  6932. name: "Micro",
  6933. height: math.unit(1, "inch")
  6934. },
  6935. {
  6936. name: "Shorty",
  6937. height: math.unit(5, "feet")
  6938. },
  6939. {
  6940. name: "Normal",
  6941. height: math.unit(7, "feet")
  6942. },
  6943. {
  6944. name: "Macro",
  6945. height: math.unit(600, "meters"),
  6946. default: true
  6947. },
  6948. {
  6949. name: "Megamacro",
  6950. height: math.unit(1, "mile")
  6951. },
  6952. ]
  6953. ))
  6954. characterMakers.push(() => makeCharacter(
  6955. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6956. {
  6957. front: {
  6958. height: math.unit(1.65, "meters"),
  6959. weight: math.unit(74, "kg"),
  6960. name: "Front",
  6961. image: {
  6962. source: "./media/characters/berri/front.svg",
  6963. extra: 857 / 837,
  6964. bottom: 18 / 877
  6965. }
  6966. },
  6967. bum: {
  6968. height: math.unit(1.46, "feet"),
  6969. name: "Bum",
  6970. image: {
  6971. source: "./media/characters/berri/bum.svg"
  6972. }
  6973. },
  6974. mouth: {
  6975. height: math.unit(0.44, "feet"),
  6976. name: "Mouth",
  6977. image: {
  6978. source: "./media/characters/berri/mouth.svg"
  6979. }
  6980. },
  6981. paw: {
  6982. height: math.unit(0.826, "feet"),
  6983. name: "Paw",
  6984. image: {
  6985. source: "./media/characters/berri/paw.svg"
  6986. }
  6987. },
  6988. },
  6989. [
  6990. {
  6991. name: "Normal",
  6992. height: math.unit(1.65, "meters")
  6993. },
  6994. {
  6995. name: "Macro",
  6996. height: math.unit(60, "m"),
  6997. default: true
  6998. },
  6999. {
  7000. name: "Megamacro",
  7001. height: math.unit(9.213, "km")
  7002. },
  7003. {
  7004. name: "Planet Eater",
  7005. height: math.unit(489, "megameters")
  7006. },
  7007. {
  7008. name: "Teramacro",
  7009. height: math.unit(2471635000000, "meters")
  7010. },
  7011. {
  7012. name: "Examacro",
  7013. height: math.unit(8.0624e+26, "meters")
  7014. }
  7015. ]
  7016. ))
  7017. characterMakers.push(() => makeCharacter(
  7018. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7019. {
  7020. front: {
  7021. height: math.unit(1.72, "meters"),
  7022. weight: math.unit(68, "kg"),
  7023. name: "Front",
  7024. image: {
  7025. source: "./media/characters/lexi/front.svg"
  7026. }
  7027. }
  7028. },
  7029. [
  7030. {
  7031. name: "Very Smol",
  7032. height: math.unit(10, "mm")
  7033. },
  7034. {
  7035. name: "Micro",
  7036. height: math.unit(6.8, "cm"),
  7037. default: true
  7038. },
  7039. {
  7040. name: "Normal",
  7041. height: math.unit(1.72, "m")
  7042. }
  7043. ]
  7044. ))
  7045. characterMakers.push(() => makeCharacter(
  7046. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7047. {
  7048. front: {
  7049. height: math.unit(1.69, "meters"),
  7050. weight: math.unit(68, "kg"),
  7051. name: "Front",
  7052. image: {
  7053. source: "./media/characters/martin/front.svg",
  7054. extra: 596 / 581
  7055. }
  7056. }
  7057. },
  7058. [
  7059. {
  7060. name: "Micro",
  7061. height: math.unit(6.85, "cm"),
  7062. default: true
  7063. },
  7064. {
  7065. name: "Normal",
  7066. height: math.unit(1.69, "m")
  7067. }
  7068. ]
  7069. ))
  7070. characterMakers.push(() => makeCharacter(
  7071. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7072. {
  7073. front: {
  7074. height: math.unit(1.69, "meters"),
  7075. weight: math.unit(68, "kg"),
  7076. name: "Front",
  7077. image: {
  7078. source: "./media/characters/juno/front.svg"
  7079. }
  7080. }
  7081. },
  7082. [
  7083. {
  7084. name: "Micro",
  7085. height: math.unit(7, "cm")
  7086. },
  7087. {
  7088. name: "Normal",
  7089. height: math.unit(1.89, "m")
  7090. },
  7091. {
  7092. name: "Macro",
  7093. height: math.unit(353, "meters"),
  7094. default: true
  7095. }
  7096. ]
  7097. ))
  7098. characterMakers.push(() => makeCharacter(
  7099. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7100. {
  7101. front: {
  7102. height: math.unit(1.93, "meters"),
  7103. weight: math.unit(83, "kg"),
  7104. name: "Front",
  7105. image: {
  7106. source: "./media/characters/samantha/front.svg"
  7107. }
  7108. },
  7109. frontClothed: {
  7110. height: math.unit(1.93, "meters"),
  7111. weight: math.unit(83, "kg"),
  7112. name: "Front (Clothed)",
  7113. image: {
  7114. source: "./media/characters/samantha/front-clothed.svg"
  7115. }
  7116. },
  7117. back: {
  7118. height: math.unit(1.93, "meters"),
  7119. weight: math.unit(83, "kg"),
  7120. name: "Back",
  7121. image: {
  7122. source: "./media/characters/samantha/back.svg"
  7123. }
  7124. },
  7125. },
  7126. [
  7127. {
  7128. name: "Normal",
  7129. height: math.unit(1.93, "m")
  7130. },
  7131. {
  7132. name: "Macro",
  7133. height: math.unit(74, "meters"),
  7134. default: true
  7135. },
  7136. {
  7137. name: "Macro+",
  7138. height: math.unit(223, "meters"),
  7139. },
  7140. {
  7141. name: "Megamacro",
  7142. height: math.unit(8381, "meters"),
  7143. },
  7144. {
  7145. name: "Megamacro+",
  7146. height: math.unit(12000, "kilometers")
  7147. },
  7148. ]
  7149. ))
  7150. characterMakers.push(() => makeCharacter(
  7151. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7152. {
  7153. front: {
  7154. height: math.unit(1.92, "meters"),
  7155. weight: math.unit(80, "kg"),
  7156. name: "Front",
  7157. image: {
  7158. source: "./media/characters/dr-clay/front.svg"
  7159. }
  7160. },
  7161. frontClothed: {
  7162. height: math.unit(1.92, "meters"),
  7163. weight: math.unit(80, "kg"),
  7164. name: "Front (Clothed)",
  7165. image: {
  7166. source: "./media/characters/dr-clay/front-clothed.svg"
  7167. }
  7168. }
  7169. },
  7170. [
  7171. {
  7172. name: "Normal",
  7173. height: math.unit(1.92, "m")
  7174. },
  7175. {
  7176. name: "Macro",
  7177. height: math.unit(214, "meters"),
  7178. default: true
  7179. },
  7180. {
  7181. name: "Macro+",
  7182. height: math.unit(12.237, "meters"),
  7183. },
  7184. {
  7185. name: "Megamacro",
  7186. height: math.unit(557, "megameters"),
  7187. },
  7188. {
  7189. name: "Unimaginable",
  7190. height: math.unit(120e9, "lightyears")
  7191. },
  7192. ]
  7193. ))
  7194. characterMakers.push(() => makeCharacter(
  7195. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7196. {
  7197. front: {
  7198. height: math.unit(2, "meters"),
  7199. weight: math.unit(80, "kg"),
  7200. name: "Front",
  7201. image: {
  7202. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7203. }
  7204. }
  7205. },
  7206. [
  7207. {
  7208. name: "Teramacro",
  7209. height: math.unit(500000, "lightyears"),
  7210. default: true
  7211. },
  7212. ]
  7213. ))
  7214. characterMakers.push(() => makeCharacter(
  7215. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7216. {
  7217. crux: {
  7218. height: math.unit(2, "meters"),
  7219. weight: math.unit(150, "kg"),
  7220. name: "Crux",
  7221. image: {
  7222. source: "./media/characters/vemus/crux.svg",
  7223. extra: 1074/936,
  7224. bottom: 23/1097
  7225. }
  7226. },
  7227. skunkTanuki: {
  7228. height: math.unit(2, "meters"),
  7229. weight: math.unit(150, "kg"),
  7230. name: "Skunk-Tanuki",
  7231. image: {
  7232. source: "./media/characters/vemus/skunk-tanuki.svg",
  7233. extra: 926/893,
  7234. bottom: 20/946
  7235. }
  7236. },
  7237. },
  7238. [
  7239. {
  7240. name: "Normal",
  7241. height: math.unit(4, "meters"),
  7242. default: true
  7243. },
  7244. {
  7245. name: "Big",
  7246. height: math.unit(8, "meters")
  7247. },
  7248. {
  7249. name: "Macro",
  7250. height: math.unit(100, "meters")
  7251. },
  7252. {
  7253. name: "Macro+",
  7254. height: math.unit(1500, "meters")
  7255. },
  7256. {
  7257. name: "Stellar",
  7258. height: math.unit(14e8, "meters")
  7259. },
  7260. ]
  7261. ))
  7262. characterMakers.push(() => makeCharacter(
  7263. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7264. {
  7265. front: {
  7266. height: math.unit(2, "meters"),
  7267. weight: math.unit(70, "kg"),
  7268. name: "Front",
  7269. image: {
  7270. source: "./media/characters/beherit/front.svg",
  7271. extra: 1234/1109,
  7272. bottom: 55/1289
  7273. }
  7274. }
  7275. },
  7276. [
  7277. {
  7278. name: "Normal",
  7279. height: math.unit(6, "feet")
  7280. },
  7281. {
  7282. name: "Lorg",
  7283. height: math.unit(25, "feet"),
  7284. default: true
  7285. },
  7286. {
  7287. name: "Lorger",
  7288. height: math.unit(75, "feet")
  7289. },
  7290. {
  7291. name: "Macro",
  7292. height: math.unit(200, "meters")
  7293. },
  7294. ]
  7295. ))
  7296. characterMakers.push(() => makeCharacter(
  7297. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7298. {
  7299. front: {
  7300. height: math.unit(2, "meters"),
  7301. weight: math.unit(150, "kg"),
  7302. name: "Front",
  7303. image: {
  7304. source: "./media/characters/everett/front.svg",
  7305. extra: 1017/866,
  7306. bottom: 86/1103
  7307. }
  7308. },
  7309. paw: {
  7310. height: math.unit(2 / 3.6, "meters"),
  7311. name: "Paw",
  7312. image: {
  7313. source: "./media/characters/everett/paw.svg"
  7314. }
  7315. },
  7316. },
  7317. [
  7318. {
  7319. name: "Normal",
  7320. height: math.unit(15, "feet"),
  7321. default: true
  7322. },
  7323. {
  7324. name: "Lorg",
  7325. height: math.unit(70, "feet"),
  7326. default: true
  7327. },
  7328. {
  7329. name: "Lorger",
  7330. height: math.unit(250, "feet")
  7331. },
  7332. {
  7333. name: "Macro",
  7334. height: math.unit(500, "meters")
  7335. },
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7340. {
  7341. front: {
  7342. height: math.unit(2, "meters"),
  7343. weight: math.unit(86, "kg"),
  7344. name: "Front",
  7345. image: {
  7346. source: "./media/characters/rose/front.svg",
  7347. extra: 1785/1636,
  7348. bottom: 30/1815
  7349. },
  7350. form: "liom",
  7351. default: true
  7352. },
  7353. frontSporty: {
  7354. height: math.unit(2, "meters"),
  7355. weight: math.unit(86, "kg"),
  7356. name: "Front (Sporty)",
  7357. image: {
  7358. source: "./media/characters/rose/front-sporty.svg",
  7359. extra: 350/335,
  7360. bottom: 10/360
  7361. },
  7362. form: "liom"
  7363. },
  7364. frontAlt: {
  7365. height: math.unit(1.6, "meters"),
  7366. weight: math.unit(86, "kg"),
  7367. name: "Front (Alt)",
  7368. image: {
  7369. source: "./media/characters/rose/front-alt.svg",
  7370. extra: 299/283,
  7371. bottom: 3/302
  7372. },
  7373. form: "liom"
  7374. },
  7375. plush: {
  7376. height: math.unit(2, "meters"),
  7377. weight: math.unit(86/3, "kg"),
  7378. name: "Plush",
  7379. image: {
  7380. source: "./media/characters/rose/plush.svg",
  7381. extra: 361/337,
  7382. bottom: 11/372
  7383. },
  7384. form: "plush",
  7385. default: true
  7386. },
  7387. faeStanding: {
  7388. height: math.unit(10, "cm"),
  7389. weight: math.unit(10, "grams"),
  7390. name: "Standing",
  7391. image: {
  7392. source: "./media/characters/rose/fae-standing.svg",
  7393. extra: 1189/1060,
  7394. bottom: 27/1216
  7395. },
  7396. form: "fae",
  7397. default: true
  7398. },
  7399. faeSitting: {
  7400. height: math.unit(5, "cm"),
  7401. weight: math.unit(10, "grams"),
  7402. name: "Sitting",
  7403. image: {
  7404. source: "./media/characters/rose/fae-sitting.svg",
  7405. extra: 737/577,
  7406. bottom: 356/1093
  7407. },
  7408. form: "fae"
  7409. },
  7410. faePaw: {
  7411. height: math.unit(1.35, "cm"),
  7412. name: "Paw",
  7413. image: {
  7414. source: "./media/characters/rose/fae-paw.svg"
  7415. },
  7416. form: "fae"
  7417. },
  7418. },
  7419. [
  7420. {
  7421. name: "True Micro",
  7422. height: math.unit(9, "cm"),
  7423. form: "liom"
  7424. },
  7425. {
  7426. name: "Micro",
  7427. height: math.unit(16, "cm"),
  7428. form: "liom"
  7429. },
  7430. {
  7431. name: "Normal",
  7432. height: math.unit(1.85, "meters"),
  7433. default: true,
  7434. form: "liom"
  7435. },
  7436. {
  7437. name: "Mini-Macro",
  7438. height: math.unit(5, "meters"),
  7439. form: "liom"
  7440. },
  7441. {
  7442. name: "Macro",
  7443. height: math.unit(15, "meters"),
  7444. form: "liom"
  7445. },
  7446. {
  7447. name: "True Macro",
  7448. height: math.unit(40, "meters"),
  7449. form: "liom"
  7450. },
  7451. {
  7452. name: "City Scale",
  7453. height: math.unit(1, "km"),
  7454. form: "liom"
  7455. },
  7456. {
  7457. name: "Plushie",
  7458. height: math.unit(9, "cm"),
  7459. form: "plush",
  7460. default: true
  7461. },
  7462. {
  7463. name: "Fae",
  7464. height: math.unit(10, "cm"),
  7465. form: "fae",
  7466. default: true
  7467. },
  7468. ],
  7469. {
  7470. "liom": {
  7471. name: "Liom"
  7472. },
  7473. "plush": {
  7474. name: "Plush"
  7475. },
  7476. "fae": {
  7477. name: "Fae Fox",
  7478. default: true
  7479. }
  7480. }
  7481. ))
  7482. characterMakers.push(() => makeCharacter(
  7483. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7484. {
  7485. front: {
  7486. height: math.unit(2, "meters"),
  7487. weight: math.unit(350, "lbs"),
  7488. name: "Front",
  7489. image: {
  7490. source: "./media/characters/regal/front.svg"
  7491. }
  7492. },
  7493. back: {
  7494. height: math.unit(2, "meters"),
  7495. weight: math.unit(350, "lbs"),
  7496. name: "Back",
  7497. image: {
  7498. source: "./media/characters/regal/back.svg"
  7499. }
  7500. },
  7501. },
  7502. [
  7503. {
  7504. name: "Macro",
  7505. height: math.unit(350, "feet"),
  7506. default: true
  7507. }
  7508. ]
  7509. ))
  7510. characterMakers.push(() => makeCharacter(
  7511. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7512. {
  7513. front: {
  7514. height: math.unit(4 + 11 / 12, "feet"),
  7515. weight: math.unit(100, "lbs"),
  7516. name: "Front",
  7517. image: {
  7518. source: "./media/characters/opal/front.svg"
  7519. }
  7520. },
  7521. frontAlt: {
  7522. height: math.unit(4 + 11 / 12, "feet"),
  7523. weight: math.unit(100, "lbs"),
  7524. name: "Front (Alt)",
  7525. image: {
  7526. source: "./media/characters/opal/front-alt.svg"
  7527. }
  7528. },
  7529. },
  7530. [
  7531. {
  7532. name: "Small",
  7533. height: math.unit(4 + 11 / 12, "feet")
  7534. },
  7535. {
  7536. name: "Normal",
  7537. height: math.unit(20, "feet"),
  7538. default: true
  7539. },
  7540. {
  7541. name: "Macro",
  7542. height: math.unit(120, "feet")
  7543. },
  7544. {
  7545. name: "Megamacro",
  7546. height: math.unit(80, "miles")
  7547. },
  7548. {
  7549. name: "True Size",
  7550. height: math.unit(100000, "lightyears")
  7551. },
  7552. ]
  7553. ))
  7554. characterMakers.push(() => makeCharacter(
  7555. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7556. {
  7557. front: {
  7558. height: math.unit(6, "feet"),
  7559. weight: math.unit(200, "lbs"),
  7560. name: "Front",
  7561. image: {
  7562. source: "./media/characters/vector-wuff/front.svg"
  7563. }
  7564. }
  7565. },
  7566. [
  7567. {
  7568. name: "Normal",
  7569. height: math.unit(2.8, "meters")
  7570. },
  7571. {
  7572. name: "Macro",
  7573. height: math.unit(450, "meters"),
  7574. default: true
  7575. },
  7576. {
  7577. name: "Megamacro",
  7578. height: math.unit(15, "kilometers")
  7579. }
  7580. ]
  7581. ))
  7582. characterMakers.push(() => makeCharacter(
  7583. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7584. {
  7585. front: {
  7586. height: math.unit(6, "feet"),
  7587. weight: math.unit(256, "lbs"),
  7588. name: "Front",
  7589. image: {
  7590. source: "./media/characters/dannik/front.svg"
  7591. }
  7592. }
  7593. },
  7594. [
  7595. {
  7596. name: "Macro",
  7597. height: math.unit(69.57, "meters"),
  7598. default: true
  7599. },
  7600. ]
  7601. ))
  7602. characterMakers.push(() => makeCharacter(
  7603. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7604. {
  7605. front: {
  7606. height: math.unit(6, "feet"),
  7607. weight: math.unit(120, "lbs"),
  7608. name: "Front",
  7609. image: {
  7610. source: "./media/characters/azura-saharah/front.svg"
  7611. }
  7612. },
  7613. back: {
  7614. height: math.unit(6, "feet"),
  7615. weight: math.unit(120, "lbs"),
  7616. name: "Back",
  7617. image: {
  7618. source: "./media/characters/azura-saharah/back.svg"
  7619. }
  7620. },
  7621. },
  7622. [
  7623. {
  7624. name: "Macro",
  7625. height: math.unit(100, "feet"),
  7626. default: true
  7627. },
  7628. ]
  7629. ))
  7630. characterMakers.push(() => makeCharacter(
  7631. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7632. {
  7633. side: {
  7634. height: math.unit(5 + 4 / 12, "feet"),
  7635. weight: math.unit(163, "lbs"),
  7636. name: "Side",
  7637. image: {
  7638. source: "./media/characters/kennedy/side.svg"
  7639. }
  7640. }
  7641. },
  7642. [
  7643. {
  7644. name: "Standard Doggo",
  7645. height: math.unit(5 + 4 / 12, "feet")
  7646. },
  7647. {
  7648. name: "Big Doggo",
  7649. height: math.unit(25 + 3 / 12, "feet"),
  7650. default: true
  7651. },
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7656. {
  7657. front: {
  7658. height: math.unit(5 + 5/12, "feet"),
  7659. weight: math.unit(100, "lbs"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/odios-de-lunar/front.svg",
  7663. extra: 1468/1323,
  7664. bottom: 22/1490
  7665. }
  7666. }
  7667. },
  7668. [
  7669. {
  7670. name: "Micro",
  7671. height: math.unit(3, "inches")
  7672. },
  7673. {
  7674. name: "Normal",
  7675. height: math.unit(5.5, "feet"),
  7676. default: true
  7677. },
  7678. {
  7679. name: "Macro",
  7680. height: math.unit(100, "feet")
  7681. },
  7682. ]
  7683. ))
  7684. characterMakers.push(() => makeCharacter(
  7685. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7686. {
  7687. back: {
  7688. height: math.unit(6, "feet"),
  7689. weight: math.unit(220, "lbs"),
  7690. name: "Back",
  7691. image: {
  7692. source: "./media/characters/mandake/back.svg"
  7693. }
  7694. }
  7695. },
  7696. [
  7697. {
  7698. name: "Normal",
  7699. height: math.unit(7, "feet"),
  7700. default: true
  7701. },
  7702. {
  7703. name: "Macro",
  7704. height: math.unit(78, "feet")
  7705. },
  7706. {
  7707. name: "Macro+",
  7708. height: math.unit(300, "meters")
  7709. },
  7710. {
  7711. name: "Macro++",
  7712. height: math.unit(2400, "feet")
  7713. },
  7714. {
  7715. name: "Megamacro",
  7716. height: math.unit(5167, "meters")
  7717. },
  7718. {
  7719. name: "Gigamacro",
  7720. height: math.unit(41769, "miles")
  7721. },
  7722. ]
  7723. ))
  7724. characterMakers.push(() => makeCharacter(
  7725. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7726. {
  7727. front: {
  7728. height: math.unit(6, "feet"),
  7729. weight: math.unit(120, "lbs"),
  7730. name: "Front",
  7731. image: {
  7732. source: "./media/characters/yozey/front.svg"
  7733. }
  7734. },
  7735. frontAlt: {
  7736. height: math.unit(6, "feet"),
  7737. weight: math.unit(120, "lbs"),
  7738. name: "Front (Alt)",
  7739. image: {
  7740. source: "./media/characters/yozey/front-alt.svg"
  7741. }
  7742. },
  7743. side: {
  7744. height: math.unit(6, "feet"),
  7745. weight: math.unit(120, "lbs"),
  7746. name: "Side",
  7747. image: {
  7748. source: "./media/characters/yozey/side.svg"
  7749. }
  7750. },
  7751. },
  7752. [
  7753. {
  7754. name: "Micro",
  7755. height: math.unit(3, "inches"),
  7756. default: true
  7757. },
  7758. {
  7759. name: "Normal",
  7760. height: math.unit(6, "feet")
  7761. }
  7762. ]
  7763. ))
  7764. characterMakers.push(() => makeCharacter(
  7765. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7766. {
  7767. front: {
  7768. height: math.unit(6, "feet"),
  7769. weight: math.unit(103, "lbs"),
  7770. name: "Front",
  7771. image: {
  7772. source: "./media/characters/valeska-voss/front.svg"
  7773. }
  7774. }
  7775. },
  7776. [
  7777. {
  7778. name: "Mini-Sized Sub",
  7779. height: math.unit(3.1, "inches")
  7780. },
  7781. {
  7782. name: "Mid-Sized Sub",
  7783. height: math.unit(6.2, "inches")
  7784. },
  7785. {
  7786. name: "Full-Sized Sub",
  7787. height: math.unit(9.3, "inches")
  7788. },
  7789. {
  7790. name: "Normal",
  7791. height: math.unit(5 + 2 / 12, "foot"),
  7792. default: true
  7793. },
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(160, "lbs"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/gene-zeta/front.svg",
  7805. extra: 3006 / 2826,
  7806. bottom: 182 / 3188
  7807. }
  7808. }
  7809. },
  7810. [
  7811. {
  7812. name: "Micro",
  7813. height: math.unit(6, "inches")
  7814. },
  7815. {
  7816. name: "Normal",
  7817. height: math.unit(5 + 11 / 12, "foot"),
  7818. default: true
  7819. },
  7820. {
  7821. name: "Macro",
  7822. height: math.unit(140, "feet")
  7823. },
  7824. {
  7825. name: "Supercharged",
  7826. height: math.unit(2500, "feet")
  7827. },
  7828. ]
  7829. ))
  7830. characterMakers.push(() => makeCharacter(
  7831. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7832. {
  7833. front: {
  7834. height: math.unit(6, "feet"),
  7835. weight: math.unit(350, "lbs"),
  7836. name: "Front",
  7837. image: {
  7838. source: "./media/characters/razinox/front.svg",
  7839. extra: 1686 / 1548,
  7840. bottom: 28.2 / 1868
  7841. }
  7842. },
  7843. back: {
  7844. height: math.unit(6, "feet"),
  7845. weight: math.unit(350, "lbs"),
  7846. name: "Back",
  7847. image: {
  7848. source: "./media/characters/razinox/back.svg",
  7849. extra: 1660 / 1590,
  7850. bottom: 15 / 1665
  7851. }
  7852. },
  7853. },
  7854. [
  7855. {
  7856. name: "Normal",
  7857. height: math.unit(10 + 8 / 12, "foot")
  7858. },
  7859. {
  7860. name: "Minimacro",
  7861. height: math.unit(15, "foot")
  7862. },
  7863. {
  7864. name: "Macro",
  7865. height: math.unit(60, "foot"),
  7866. default: true
  7867. },
  7868. {
  7869. name: "Megamacro",
  7870. height: math.unit(5, "miles")
  7871. },
  7872. {
  7873. name: "Gigamacro",
  7874. height: math.unit(6000, "miles")
  7875. },
  7876. ]
  7877. ))
  7878. characterMakers.push(() => makeCharacter(
  7879. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7880. {
  7881. front: {
  7882. height: math.unit(6, "feet"),
  7883. weight: math.unit(150, "lbs"),
  7884. name: "Front",
  7885. image: {
  7886. source: "./media/characters/cobalt/front.svg"
  7887. }
  7888. }
  7889. },
  7890. [
  7891. {
  7892. name: "Normal",
  7893. height: math.unit(8 + 1 / 12, "foot")
  7894. },
  7895. {
  7896. name: "Macro",
  7897. height: math.unit(111, "foot"),
  7898. default: true
  7899. },
  7900. {
  7901. name: "Supracosmic",
  7902. height: math.unit(1e42, "feet")
  7903. },
  7904. ]
  7905. ))
  7906. characterMakers.push(() => makeCharacter(
  7907. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7908. {
  7909. front: {
  7910. height: math.unit(5, "inches"),
  7911. name: "Front",
  7912. image: {
  7913. source: "./media/characters/amanda/front.svg",
  7914. extra: 926/791,
  7915. bottom: 38/964
  7916. }
  7917. },
  7918. back: {
  7919. height: math.unit(5, "inches"),
  7920. name: "Back",
  7921. image: {
  7922. source: "./media/characters/amanda/back.svg",
  7923. extra: 909/805,
  7924. bottom: 43/952
  7925. }
  7926. },
  7927. },
  7928. [
  7929. {
  7930. name: "Micro",
  7931. height: math.unit(5, "inches"),
  7932. default: true
  7933. },
  7934. ]
  7935. ))
  7936. characterMakers.push(() => makeCharacter(
  7937. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7938. {
  7939. front: {
  7940. height: math.unit(2.75, "meters"),
  7941. weight: math.unit(1200, "lb"),
  7942. name: "Front",
  7943. image: {
  7944. source: "./media/characters/teal/front.svg",
  7945. extra: 2463 / 2320,
  7946. bottom: 166 / 2629
  7947. }
  7948. },
  7949. back: {
  7950. height: math.unit(2.75, "meters"),
  7951. weight: math.unit(1200, "lb"),
  7952. name: "Back",
  7953. image: {
  7954. source: "./media/characters/teal/back.svg",
  7955. extra: 2580 / 2489,
  7956. bottom: 151 / 2731
  7957. }
  7958. },
  7959. sitting: {
  7960. height: math.unit(1.9, "meters"),
  7961. weight: math.unit(1200, "lb"),
  7962. name: "Sitting",
  7963. image: {
  7964. source: "./media/characters/teal/sitting.svg",
  7965. extra: 623 / 590,
  7966. bottom: 121 / 744
  7967. }
  7968. },
  7969. standing: {
  7970. height: math.unit(2.75, "meters"),
  7971. weight: math.unit(1200, "lb"),
  7972. name: "Standing",
  7973. image: {
  7974. source: "./media/characters/teal/standing.svg",
  7975. extra: 923 / 893,
  7976. bottom: 60 / 983
  7977. }
  7978. },
  7979. stretching: {
  7980. height: math.unit(3.65, "meters"),
  7981. weight: math.unit(1200, "lb"),
  7982. name: "Stretching",
  7983. image: {
  7984. source: "./media/characters/teal/stretching.svg",
  7985. extra: 1276 / 1244,
  7986. bottom: 0 / 1276
  7987. }
  7988. },
  7989. legged: {
  7990. height: math.unit(1.3, "meters"),
  7991. weight: math.unit(100, "lb"),
  7992. name: "Legged",
  7993. image: {
  7994. source: "./media/characters/teal/legged.svg",
  7995. extra: 462 / 437,
  7996. bottom: 24 / 486
  7997. }
  7998. },
  7999. naga: {
  8000. height: math.unit(5.4, "meters"),
  8001. weight: math.unit(4000, "lb"),
  8002. name: "Naga",
  8003. image: {
  8004. source: "./media/characters/teal/naga.svg",
  8005. extra: 1902 / 1858,
  8006. bottom: 0 / 1902
  8007. }
  8008. },
  8009. hand: {
  8010. height: math.unit(0.52, "meters"),
  8011. name: "Hand",
  8012. image: {
  8013. source: "./media/characters/teal/hand.svg"
  8014. }
  8015. },
  8016. maw: {
  8017. height: math.unit(0.43, "meters"),
  8018. name: "Maw",
  8019. image: {
  8020. source: "./media/characters/teal/maw.svg"
  8021. }
  8022. },
  8023. slit: {
  8024. height: math.unit(0.25, "meters"),
  8025. name: "Slit",
  8026. image: {
  8027. source: "./media/characters/teal/slit.svg"
  8028. }
  8029. },
  8030. },
  8031. [
  8032. {
  8033. name: "Normal",
  8034. height: math.unit(2.75, "meters"),
  8035. default: true
  8036. },
  8037. {
  8038. name: "Macro",
  8039. height: math.unit(300, "feet")
  8040. },
  8041. {
  8042. name: "Macro+",
  8043. height: math.unit(2000, "feet")
  8044. },
  8045. ]
  8046. ))
  8047. characterMakers.push(() => makeCharacter(
  8048. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8049. {
  8050. frontCat: {
  8051. height: math.unit(6, "feet"),
  8052. weight: math.unit(180, "lbs"),
  8053. name: "Front (Cat)",
  8054. image: {
  8055. source: "./media/characters/ravin-amulet/front-cat.svg"
  8056. }
  8057. },
  8058. frontCatAlt: {
  8059. height: math.unit(6, "feet"),
  8060. weight: math.unit(180, "lbs"),
  8061. name: "Front (Alt, Cat)",
  8062. image: {
  8063. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8064. }
  8065. },
  8066. frontWerewolf: {
  8067. height: math.unit(6 * 1.2, "feet"),
  8068. weight: math.unit(225, "lbs"),
  8069. name: "Front (Werewolf)",
  8070. image: {
  8071. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8072. }
  8073. },
  8074. backWerewolf: {
  8075. height: math.unit(6 * 1.2, "feet"),
  8076. weight: math.unit(225, "lbs"),
  8077. name: "Back (Werewolf)",
  8078. image: {
  8079. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8080. }
  8081. },
  8082. },
  8083. [
  8084. {
  8085. name: "Nano",
  8086. height: math.unit(1, "micrometer")
  8087. },
  8088. {
  8089. name: "Micro",
  8090. height: math.unit(1, "inch")
  8091. },
  8092. {
  8093. name: "Normal",
  8094. height: math.unit(6, "feet"),
  8095. default: true
  8096. },
  8097. {
  8098. name: "Macro",
  8099. height: math.unit(60, "feet")
  8100. }
  8101. ]
  8102. ))
  8103. characterMakers.push(() => makeCharacter(
  8104. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8105. {
  8106. front: {
  8107. height: math.unit(6, "feet"),
  8108. weight: math.unit(165, "lbs"),
  8109. name: "Front",
  8110. image: {
  8111. source: "./media/characters/fluoresce/front.svg"
  8112. }
  8113. }
  8114. },
  8115. [
  8116. {
  8117. name: "Micro",
  8118. height: math.unit(6, "cm")
  8119. },
  8120. {
  8121. name: "Normal",
  8122. height: math.unit(5 + 7 / 12, "feet"),
  8123. default: true
  8124. },
  8125. {
  8126. name: "Macro",
  8127. height: math.unit(56, "feet")
  8128. },
  8129. {
  8130. name: "Megamacro",
  8131. height: math.unit(1.9, "miles")
  8132. },
  8133. ]
  8134. ))
  8135. characterMakers.push(() => makeCharacter(
  8136. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8137. {
  8138. front: {
  8139. height: math.unit(9 + 6 / 12, "feet"),
  8140. weight: math.unit(523, "lbs"),
  8141. name: "Side",
  8142. image: {
  8143. source: "./media/characters/aurora/side.svg"
  8144. }
  8145. }
  8146. },
  8147. [
  8148. {
  8149. name: "Normal",
  8150. height: math.unit(9 + 6 / 12, "feet")
  8151. },
  8152. {
  8153. name: "Macro",
  8154. height: math.unit(96, "feet"),
  8155. default: true
  8156. },
  8157. {
  8158. name: "Macro+",
  8159. height: math.unit(243, "feet")
  8160. },
  8161. ]
  8162. ))
  8163. characterMakers.push(() => makeCharacter(
  8164. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8165. {
  8166. front: {
  8167. height: math.unit(194, "cm"),
  8168. weight: math.unit(90, "kg"),
  8169. name: "Front",
  8170. image: {
  8171. source: "./media/characters/ranek/front.svg",
  8172. extra: 1862/1791,
  8173. bottom: 80/1942
  8174. }
  8175. },
  8176. back: {
  8177. height: math.unit(194, "cm"),
  8178. weight: math.unit(90, "kg"),
  8179. name: "Back",
  8180. image: {
  8181. source: "./media/characters/ranek/back.svg",
  8182. extra: 1853/1787,
  8183. bottom: 74/1927
  8184. }
  8185. },
  8186. feral: {
  8187. height: math.unit(30, "cm"),
  8188. weight: math.unit(1.6, "lbs"),
  8189. name: "Feral",
  8190. image: {
  8191. source: "./media/characters/ranek/feral.svg",
  8192. extra: 990/631,
  8193. bottom: 29/1019
  8194. }
  8195. },
  8196. },
  8197. [
  8198. {
  8199. name: "Normal",
  8200. height: math.unit(194, "cm"),
  8201. default: true
  8202. },
  8203. {
  8204. name: "Macro",
  8205. height: math.unit(100, "meters")
  8206. },
  8207. ]
  8208. ))
  8209. characterMakers.push(() => makeCharacter(
  8210. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8211. {
  8212. front: {
  8213. height: math.unit(5 + 6 / 12, "feet"),
  8214. weight: math.unit(153, "lbs"),
  8215. name: "Front",
  8216. image: {
  8217. source: "./media/characters/andrew-cooper/front.svg"
  8218. }
  8219. },
  8220. },
  8221. [
  8222. {
  8223. name: "Nano",
  8224. height: math.unit(1, "mm")
  8225. },
  8226. {
  8227. name: "Micro",
  8228. height: math.unit(2, "inches")
  8229. },
  8230. {
  8231. name: "Normal",
  8232. height: math.unit(5 + 6 / 12, "feet"),
  8233. default: true
  8234. }
  8235. ]
  8236. ))
  8237. characterMakers.push(() => makeCharacter(
  8238. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8239. {
  8240. front: {
  8241. height: math.unit(6, "feet"),
  8242. weight: math.unit(180, "lbs"),
  8243. name: "Front",
  8244. image: {
  8245. source: "./media/characters/akane-sato/front.svg",
  8246. extra: 1219 / 1140
  8247. }
  8248. },
  8249. back: {
  8250. height: math.unit(6, "feet"),
  8251. weight: math.unit(180, "lbs"),
  8252. name: "Back",
  8253. image: {
  8254. source: "./media/characters/akane-sato/back.svg",
  8255. extra: 1219 / 1170
  8256. }
  8257. },
  8258. },
  8259. [
  8260. {
  8261. name: "Normal",
  8262. height: math.unit(2.5, "meters")
  8263. },
  8264. {
  8265. name: "Macro",
  8266. height: math.unit(250, "meters"),
  8267. default: true
  8268. },
  8269. {
  8270. name: "Megamacro",
  8271. height: math.unit(25, "km")
  8272. },
  8273. ]
  8274. ))
  8275. characterMakers.push(() => makeCharacter(
  8276. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8277. {
  8278. front: {
  8279. height: math.unit(6, "feet"),
  8280. weight: math.unit(65, "kg"),
  8281. name: "Front",
  8282. image: {
  8283. source: "./media/characters/rook/front.svg",
  8284. extra: 960 / 950
  8285. }
  8286. }
  8287. },
  8288. [
  8289. {
  8290. name: "Normal",
  8291. height: math.unit(8.8, "feet")
  8292. },
  8293. {
  8294. name: "Macro",
  8295. height: math.unit(88, "feet"),
  8296. default: true
  8297. },
  8298. {
  8299. name: "Megamacro",
  8300. height: math.unit(8, "miles")
  8301. },
  8302. ]
  8303. ))
  8304. characterMakers.push(() => makeCharacter(
  8305. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8306. {
  8307. front: {
  8308. height: math.unit(12 + 2 / 12, "feet"),
  8309. weight: math.unit(808, "lbs"),
  8310. name: "Front",
  8311. image: {
  8312. source: "./media/characters/prodigy/front.svg"
  8313. }
  8314. }
  8315. },
  8316. [
  8317. {
  8318. name: "Normal",
  8319. height: math.unit(12 + 2 / 12, "feet"),
  8320. default: true
  8321. },
  8322. {
  8323. name: "Macro",
  8324. height: math.unit(143, "feet")
  8325. },
  8326. {
  8327. name: "Macro+",
  8328. height: math.unit(400, "feet")
  8329. },
  8330. ]
  8331. ))
  8332. characterMakers.push(() => makeCharacter(
  8333. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8334. {
  8335. front: {
  8336. height: math.unit(6, "feet"),
  8337. weight: math.unit(225, "lbs"),
  8338. name: "Front",
  8339. image: {
  8340. source: "./media/characters/daniel/front.svg"
  8341. }
  8342. },
  8343. leaning: {
  8344. height: math.unit(6, "feet"),
  8345. weight: math.unit(225, "lbs"),
  8346. name: "Leaning",
  8347. image: {
  8348. source: "./media/characters/daniel/leaning.svg"
  8349. }
  8350. },
  8351. },
  8352. [
  8353. {
  8354. name: "Macro",
  8355. height: math.unit(1000, "feet"),
  8356. default: true
  8357. },
  8358. ]
  8359. ))
  8360. characterMakers.push(() => makeCharacter(
  8361. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8362. {
  8363. front: {
  8364. height: math.unit(6, "feet"),
  8365. weight: math.unit(88, "lbs"),
  8366. name: "Front",
  8367. image: {
  8368. source: "./media/characters/chiros/front.svg",
  8369. extra: 306 / 226
  8370. }
  8371. },
  8372. side: {
  8373. height: math.unit(6, "feet"),
  8374. weight: math.unit(88, "lbs"),
  8375. name: "Side",
  8376. image: {
  8377. source: "./media/characters/chiros/side.svg",
  8378. extra: 306 / 226
  8379. }
  8380. },
  8381. },
  8382. [
  8383. {
  8384. name: "Normal",
  8385. height: math.unit(6, "cm"),
  8386. default: true
  8387. },
  8388. ]
  8389. ))
  8390. characterMakers.push(() => makeCharacter(
  8391. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8392. {
  8393. front: {
  8394. height: math.unit(6, "feet"),
  8395. weight: math.unit(100, "lbs"),
  8396. name: "Front",
  8397. image: {
  8398. source: "./media/characters/selka/front.svg",
  8399. extra: 947 / 887
  8400. }
  8401. }
  8402. },
  8403. [
  8404. {
  8405. name: "Normal",
  8406. height: math.unit(5, "cm"),
  8407. default: true
  8408. },
  8409. ]
  8410. ))
  8411. characterMakers.push(() => makeCharacter(
  8412. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8413. {
  8414. front: {
  8415. height: math.unit(8 + 3 / 12, "feet"),
  8416. weight: math.unit(424, "lbs"),
  8417. name: "Front",
  8418. image: {
  8419. source: "./media/characters/verin/front.svg",
  8420. extra: 1845 / 1550
  8421. }
  8422. },
  8423. frontArmored: {
  8424. height: math.unit(8 + 3 / 12, "feet"),
  8425. weight: math.unit(424, "lbs"),
  8426. name: "Front (Armored)",
  8427. image: {
  8428. source: "./media/characters/verin/front-armor.svg",
  8429. extra: 1845 / 1550,
  8430. bottom: 0.01
  8431. }
  8432. },
  8433. back: {
  8434. height: math.unit(8 + 3 / 12, "feet"),
  8435. weight: math.unit(424, "lbs"),
  8436. name: "Back",
  8437. image: {
  8438. source: "./media/characters/verin/back.svg",
  8439. bottom: 0.1,
  8440. extra: 1
  8441. }
  8442. },
  8443. foot: {
  8444. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8445. name: "Foot",
  8446. image: {
  8447. source: "./media/characters/verin/foot.svg"
  8448. }
  8449. },
  8450. },
  8451. [
  8452. {
  8453. name: "Normal",
  8454. height: math.unit(8 + 3 / 12, "feet")
  8455. },
  8456. {
  8457. name: "Minimacro",
  8458. height: math.unit(21, "feet"),
  8459. default: true
  8460. },
  8461. {
  8462. name: "Macro",
  8463. height: math.unit(626, "feet")
  8464. },
  8465. ]
  8466. ))
  8467. characterMakers.push(() => makeCharacter(
  8468. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8469. {
  8470. front: {
  8471. height: math.unit(2.718, "meters"),
  8472. weight: math.unit(150, "lbs"),
  8473. name: "Front",
  8474. image: {
  8475. source: "./media/characters/sovrim-terraquian/front.svg",
  8476. extra: 1752/1689,
  8477. bottom: 36/1788
  8478. }
  8479. },
  8480. back: {
  8481. height: math.unit(2.718, "meters"),
  8482. weight: math.unit(150, "lbs"),
  8483. name: "Back",
  8484. image: {
  8485. source: "./media/characters/sovrim-terraquian/back.svg",
  8486. extra: 1698/1657,
  8487. bottom: 58/1756
  8488. }
  8489. },
  8490. tongue: {
  8491. height: math.unit(2.865, "feet"),
  8492. name: "Tongue",
  8493. image: {
  8494. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8495. }
  8496. },
  8497. hand: {
  8498. height: math.unit(1.61, "feet"),
  8499. name: "Hand",
  8500. image: {
  8501. source: "./media/characters/sovrim-terraquian/hand.svg"
  8502. }
  8503. },
  8504. foot: {
  8505. height: math.unit(1.05, "feet"),
  8506. name: "Foot",
  8507. image: {
  8508. source: "./media/characters/sovrim-terraquian/foot.svg"
  8509. }
  8510. },
  8511. footAlt: {
  8512. height: math.unit(0.88, "feet"),
  8513. name: "Foot (Alt)",
  8514. image: {
  8515. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8516. }
  8517. },
  8518. },
  8519. [
  8520. {
  8521. name: "Micro",
  8522. height: math.unit(2, "inches")
  8523. },
  8524. {
  8525. name: "Small",
  8526. height: math.unit(1, "meter")
  8527. },
  8528. {
  8529. name: "Normal",
  8530. height: math.unit(Math.E, "meters"),
  8531. default: true
  8532. },
  8533. {
  8534. name: "Macro",
  8535. height: math.unit(20, "meters")
  8536. },
  8537. {
  8538. name: "Macro+",
  8539. height: math.unit(400, "meters")
  8540. },
  8541. ]
  8542. ))
  8543. characterMakers.push(() => makeCharacter(
  8544. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8545. {
  8546. front: {
  8547. height: math.unit(7, "feet"),
  8548. weight: math.unit(489, "lbs"),
  8549. name: "Front",
  8550. image: {
  8551. source: "./media/characters/reece-silvermane/front.svg",
  8552. bottom: 0.02,
  8553. extra: 1
  8554. }
  8555. },
  8556. },
  8557. [
  8558. {
  8559. name: "Macro",
  8560. height: math.unit(1.5, "miles"),
  8561. default: true
  8562. },
  8563. ]
  8564. ))
  8565. characterMakers.push(() => makeCharacter(
  8566. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8567. {
  8568. front: {
  8569. height: math.unit(6, "feet"),
  8570. weight: math.unit(78, "kg"),
  8571. name: "Front",
  8572. image: {
  8573. source: "./media/characters/kane/front.svg",
  8574. extra: 978 / 899
  8575. }
  8576. },
  8577. },
  8578. [
  8579. {
  8580. name: "Normal",
  8581. height: math.unit(2.1, "m"),
  8582. },
  8583. {
  8584. name: "Macro",
  8585. height: math.unit(1, "km"),
  8586. default: true
  8587. },
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8592. {
  8593. front: {
  8594. height: math.unit(6, "feet"),
  8595. weight: math.unit(200, "kg"),
  8596. name: "Front",
  8597. image: {
  8598. source: "./media/characters/tegon/front.svg",
  8599. bottom: 0.01,
  8600. extra: 1
  8601. }
  8602. },
  8603. },
  8604. [
  8605. {
  8606. name: "Micro",
  8607. height: math.unit(1, "inch")
  8608. },
  8609. {
  8610. name: "Normal",
  8611. height: math.unit(6 + 3 / 12, "feet"),
  8612. default: true
  8613. },
  8614. {
  8615. name: "Macro",
  8616. height: math.unit(300, "feet")
  8617. },
  8618. {
  8619. name: "Megamacro",
  8620. height: math.unit(69, "miles")
  8621. },
  8622. ]
  8623. ))
  8624. characterMakers.push(() => makeCharacter(
  8625. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8626. {
  8627. side: {
  8628. height: math.unit(6, "feet"),
  8629. weight: math.unit(2304, "lbs"),
  8630. name: "Side",
  8631. image: {
  8632. source: "./media/characters/arcturax/side.svg",
  8633. extra: 790 / 376,
  8634. bottom: 0.01
  8635. }
  8636. },
  8637. },
  8638. [
  8639. {
  8640. name: "Micro",
  8641. height: math.unit(2, "inch")
  8642. },
  8643. {
  8644. name: "Normal",
  8645. height: math.unit(6, "feet")
  8646. },
  8647. {
  8648. name: "Macro",
  8649. height: math.unit(39, "feet"),
  8650. default: true
  8651. },
  8652. {
  8653. name: "Megamacro",
  8654. height: math.unit(7, "miles")
  8655. },
  8656. ]
  8657. ))
  8658. characterMakers.push(() => makeCharacter(
  8659. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8660. {
  8661. front: {
  8662. height: math.unit(6, "feet"),
  8663. weight: math.unit(50, "lbs"),
  8664. name: "Front",
  8665. image: {
  8666. source: "./media/characters/sentri/front.svg",
  8667. extra: 1750 / 1570,
  8668. bottom: 0.025
  8669. }
  8670. },
  8671. frontAlt: {
  8672. height: math.unit(6, "feet"),
  8673. weight: math.unit(50, "lbs"),
  8674. name: "Front (Alt)",
  8675. image: {
  8676. source: "./media/characters/sentri/front-alt.svg",
  8677. extra: 1750 / 1570,
  8678. bottom: 0.025
  8679. }
  8680. },
  8681. },
  8682. [
  8683. {
  8684. name: "Normal",
  8685. height: math.unit(15, "feet"),
  8686. default: true
  8687. },
  8688. {
  8689. name: "Macro",
  8690. height: math.unit(2500, "feet")
  8691. }
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(5 + 8 / 12, "feet"),
  8699. weight: math.unit(130, "lbs"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/corvin/front.svg",
  8703. extra: 1803 / 1629
  8704. }
  8705. },
  8706. frontShirt: {
  8707. height: math.unit(5 + 8 / 12, "feet"),
  8708. weight: math.unit(130, "lbs"),
  8709. name: "Front (Shirt)",
  8710. image: {
  8711. source: "./media/characters/corvin/front-shirt.svg",
  8712. extra: 1803 / 1629
  8713. }
  8714. },
  8715. frontPoncho: {
  8716. height: math.unit(5 + 8 / 12, "feet"),
  8717. weight: math.unit(130, "lbs"),
  8718. name: "Front (Poncho)",
  8719. image: {
  8720. source: "./media/characters/corvin/front-poncho.svg",
  8721. extra: 1803 / 1629
  8722. }
  8723. },
  8724. side: {
  8725. height: math.unit(5 + 8 / 12, "feet"),
  8726. weight: math.unit(130, "lbs"),
  8727. name: "Side",
  8728. image: {
  8729. source: "./media/characters/corvin/side.svg",
  8730. extra: 1012 / 945
  8731. }
  8732. },
  8733. back: {
  8734. height: math.unit(5 + 8 / 12, "feet"),
  8735. weight: math.unit(130, "lbs"),
  8736. name: "Back",
  8737. image: {
  8738. source: "./media/characters/corvin/back.svg",
  8739. extra: 1803 / 1629
  8740. }
  8741. },
  8742. },
  8743. [
  8744. {
  8745. name: "Micro",
  8746. height: math.unit(3, "inches")
  8747. },
  8748. {
  8749. name: "Normal",
  8750. height: math.unit(5 + 8 / 12, "feet")
  8751. },
  8752. {
  8753. name: "Macro",
  8754. height: math.unit(300, "feet"),
  8755. default: true
  8756. },
  8757. {
  8758. name: "Megamacro",
  8759. height: math.unit(500, "miles")
  8760. }
  8761. ]
  8762. ))
  8763. characterMakers.push(() => makeCharacter(
  8764. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8765. {
  8766. front: {
  8767. height: math.unit(6, "feet"),
  8768. weight: math.unit(135, "lbs"),
  8769. name: "Front",
  8770. image: {
  8771. source: "./media/characters/q/front.svg",
  8772. extra: 854 / 752,
  8773. bottom: 0.005
  8774. }
  8775. },
  8776. back: {
  8777. height: math.unit(6, "feet"),
  8778. weight: math.unit(130, "lbs"),
  8779. name: "Back",
  8780. image: {
  8781. source: "./media/characters/q/back.svg",
  8782. extra: 854 / 752
  8783. }
  8784. },
  8785. },
  8786. [
  8787. {
  8788. name: "Macro",
  8789. height: math.unit(90, "feet"),
  8790. default: true
  8791. },
  8792. {
  8793. name: "Extra Macro",
  8794. height: math.unit(300, "feet"),
  8795. },
  8796. {
  8797. name: "BIG WALF",
  8798. height: math.unit(750, "feet"),
  8799. },
  8800. ]
  8801. ))
  8802. characterMakers.push(() => makeCharacter(
  8803. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8804. {
  8805. front: {
  8806. height: math.unit(6, "feet"),
  8807. weight: math.unit(150, "lbs"),
  8808. name: "Front",
  8809. image: {
  8810. source: "./media/characters/carley/front.svg",
  8811. extra: 3927 / 3540,
  8812. bottom: 29.2 / 735
  8813. }
  8814. }
  8815. },
  8816. [
  8817. {
  8818. name: "Normal",
  8819. height: math.unit(6 + 3 / 12, "feet")
  8820. },
  8821. {
  8822. name: "Macro",
  8823. height: math.unit(185, "feet"),
  8824. default: true
  8825. },
  8826. {
  8827. name: "Megamacro",
  8828. height: math.unit(8, "miles"),
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(3, "feet"),
  8837. weight: math.unit(28, "lbs"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/citrine/front.svg"
  8841. }
  8842. }
  8843. },
  8844. [
  8845. {
  8846. name: "Normal",
  8847. height: math.unit(3, "feet"),
  8848. default: true
  8849. }
  8850. ]
  8851. ))
  8852. characterMakers.push(() => makeCharacter(
  8853. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8854. {
  8855. front: {
  8856. height: math.unit(14, "feet"),
  8857. weight: math.unit(1450, "kg"),
  8858. preyCapacity: math.unit(15, "people"),
  8859. name: "Front",
  8860. image: {
  8861. source: "./media/characters/aura-starwind/front.svg",
  8862. extra: 1440/1327,
  8863. bottom: 11/1451
  8864. }
  8865. },
  8866. side: {
  8867. height: math.unit(14, "feet"),
  8868. weight: math.unit(1450, "kg"),
  8869. preyCapacity: math.unit(15, "people"),
  8870. name: "Side",
  8871. image: {
  8872. source: "./media/characters/aura-starwind/side.svg",
  8873. extra: 1654 / 1497
  8874. }
  8875. },
  8876. taur: {
  8877. height: math.unit(18, "feet"),
  8878. weight: math.unit(5500, "kg"),
  8879. preyCapacity: math.unit(50, "people"),
  8880. name: "Taur",
  8881. image: {
  8882. source: "./media/characters/aura-starwind/taur.svg",
  8883. extra: 1760 / 1650
  8884. }
  8885. },
  8886. feral: {
  8887. height: math.unit(46, "feet"),
  8888. weight: math.unit(25000, "kg"),
  8889. preyCapacity: math.unit(120, "people"),
  8890. name: "Feral",
  8891. image: {
  8892. source: "./media/characters/aura-starwind/feral.svg"
  8893. }
  8894. },
  8895. },
  8896. [
  8897. {
  8898. name: "Normal",
  8899. height: math.unit(14, "feet"),
  8900. default: true
  8901. },
  8902. {
  8903. name: "Macro",
  8904. height: math.unit(50, "meters")
  8905. },
  8906. {
  8907. name: "Megamacro",
  8908. height: math.unit(5000, "meters")
  8909. },
  8910. {
  8911. name: "Gigamacro",
  8912. height: math.unit(100000, "kilometers")
  8913. },
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8918. {
  8919. front: {
  8920. height: math.unit(2 + 7 / 12, "feet"),
  8921. weight: math.unit(32, "lbs"),
  8922. name: "Front",
  8923. image: {
  8924. source: "./media/characters/rivet/front.svg",
  8925. extra: 1716 / 1658,
  8926. bottom: 0.03
  8927. }
  8928. },
  8929. foot: {
  8930. height: math.unit(0.551, "feet"),
  8931. name: "Rivet's Foot",
  8932. image: {
  8933. source: "./media/characters/rivet/foot.svg"
  8934. },
  8935. rename: true
  8936. }
  8937. },
  8938. [
  8939. {
  8940. name: "Micro",
  8941. height: math.unit(1.5, "inches"),
  8942. },
  8943. {
  8944. name: "Normal",
  8945. height: math.unit(2 + 7 / 12, "feet"),
  8946. default: true
  8947. },
  8948. {
  8949. name: "Macro",
  8950. height: math.unit(85, "feet")
  8951. },
  8952. {
  8953. name: "Megamacro",
  8954. height: math.unit(2.2, "km")
  8955. }
  8956. ]
  8957. ))
  8958. characterMakers.push(() => makeCharacter(
  8959. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8960. {
  8961. front: {
  8962. height: math.unit(5 + 9 / 12, "feet"),
  8963. weight: math.unit(150, "lbs"),
  8964. name: "Front",
  8965. image: {
  8966. source: "./media/characters/coffee/front.svg",
  8967. extra: 3666 / 3032,
  8968. bottom: 0.04
  8969. }
  8970. },
  8971. foot: {
  8972. height: math.unit(1.29, "feet"),
  8973. name: "Foot",
  8974. image: {
  8975. source: "./media/characters/coffee/foot.svg"
  8976. }
  8977. },
  8978. },
  8979. [
  8980. {
  8981. name: "Micro",
  8982. height: math.unit(2, "inches"),
  8983. },
  8984. {
  8985. name: "Normal",
  8986. height: math.unit(5 + 9 / 12, "feet"),
  8987. default: true
  8988. },
  8989. {
  8990. name: "Macro",
  8991. height: math.unit(800, "feet")
  8992. },
  8993. {
  8994. name: "Megamacro",
  8995. height: math.unit(25, "miles")
  8996. }
  8997. ]
  8998. ))
  8999. characterMakers.push(() => makeCharacter(
  9000. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9001. {
  9002. front: {
  9003. height: math.unit(6, "feet"),
  9004. weight: math.unit(200, "lbs"),
  9005. name: "Front",
  9006. image: {
  9007. source: "./media/characters/chari-gal/front.svg",
  9008. extra: 1568 / 1385,
  9009. bottom: 0.047
  9010. }
  9011. },
  9012. gigantamax: {
  9013. height: math.unit(6 * 16, "feet"),
  9014. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9015. name: "Gigantamax",
  9016. image: {
  9017. source: "./media/characters/chari-gal/gigantamax.svg",
  9018. extra: 1124 / 888,
  9019. bottom: 0.03
  9020. }
  9021. },
  9022. },
  9023. [
  9024. {
  9025. name: "Normal",
  9026. height: math.unit(5 + 7 / 12, "feet")
  9027. },
  9028. {
  9029. name: "Macro",
  9030. height: math.unit(200, "feet"),
  9031. default: true
  9032. }
  9033. ]
  9034. ))
  9035. characterMakers.push(() => makeCharacter(
  9036. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9037. {
  9038. front: {
  9039. height: math.unit(6, "feet"),
  9040. weight: math.unit(150, "lbs"),
  9041. name: "Front",
  9042. image: {
  9043. source: "./media/characters/nova/front.svg",
  9044. extra: 5000 / 4722,
  9045. bottom: 0.02
  9046. }
  9047. }
  9048. },
  9049. [
  9050. {
  9051. name: "Micro-",
  9052. height: math.unit(0.8, "inches")
  9053. },
  9054. {
  9055. name: "Micro",
  9056. height: math.unit(2, "inches"),
  9057. default: true
  9058. },
  9059. ]
  9060. ))
  9061. characterMakers.push(() => makeCharacter(
  9062. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9063. {
  9064. front: {
  9065. height: math.unit(3 + 1 / 12, "feet"),
  9066. weight: math.unit(21.7, "lbs"),
  9067. name: "Front",
  9068. image: {
  9069. source: "./media/characters/argent/front.svg",
  9070. extra: 1471 / 1331,
  9071. bottom: 100.8 / 1575.5
  9072. }
  9073. }
  9074. },
  9075. [
  9076. {
  9077. name: "Micro",
  9078. height: math.unit(2, "inches")
  9079. },
  9080. {
  9081. name: "Normal",
  9082. height: math.unit(3 + 1 / 12, "feet"),
  9083. default: true
  9084. },
  9085. {
  9086. name: "Macro",
  9087. height: math.unit(120, "feet")
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9093. {
  9094. lamp: {
  9095. height: math.unit(7 * 1559 / 989, "feet"),
  9096. name: "Magic Lamp",
  9097. image: {
  9098. source: "./media/characters/mira-al-cul/lamp.svg",
  9099. extra: 1617 / 1559
  9100. }
  9101. },
  9102. front: {
  9103. height: math.unit(7, "feet"),
  9104. name: "Front",
  9105. image: {
  9106. source: "./media/characters/mira-al-cul/front.svg",
  9107. extra: 1044 / 990
  9108. }
  9109. },
  9110. },
  9111. [
  9112. {
  9113. name: "Heavily Restricted",
  9114. height: math.unit(7 * 1559 / 989, "feet")
  9115. },
  9116. {
  9117. name: "Freshly Freed",
  9118. height: math.unit(50 * 1559 / 989, "feet")
  9119. },
  9120. {
  9121. name: "World Encompassing",
  9122. height: math.unit(10000 * 1559 / 989, "miles")
  9123. },
  9124. {
  9125. name: "Galactic",
  9126. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9127. },
  9128. {
  9129. name: "Palmed Universe",
  9130. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9131. default: true
  9132. },
  9133. {
  9134. name: "Multiversal Matriarch",
  9135. height: math.unit(8.87e10, "yottameters")
  9136. },
  9137. {
  9138. name: "Void Mother",
  9139. height: math.unit(3.14e110, "yottaparsecs")
  9140. },
  9141. {
  9142. name: "Toying with Transcendence",
  9143. height: math.unit(1e307, "meters")
  9144. },
  9145. ]
  9146. ))
  9147. characterMakers.push(() => makeCharacter(
  9148. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9149. {
  9150. front: {
  9151. height: math.unit(17 + 1 / 12, "feet"),
  9152. weight: math.unit(476.2 * 5, "lbs"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/kuro-shi-uchū/front.svg",
  9156. extra: 2329 / 1835,
  9157. bottom: 0.02
  9158. }
  9159. },
  9160. },
  9161. [
  9162. {
  9163. name: "Micro",
  9164. height: math.unit(2, "inches")
  9165. },
  9166. {
  9167. name: "Normal",
  9168. height: math.unit(12, "meters")
  9169. },
  9170. {
  9171. name: "Planetary",
  9172. height: math.unit(0.00929, "AU"),
  9173. default: true
  9174. },
  9175. {
  9176. name: "Universal",
  9177. height: math.unit(20, "gigaparsecs")
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9183. {
  9184. front: {
  9185. height: math.unit(5 + 2 / 12, "feet"),
  9186. weight: math.unit(120, "lbs"),
  9187. name: "Front",
  9188. image: {
  9189. source: "./media/characters/katherine/front.svg",
  9190. extra: 2075 / 1969
  9191. }
  9192. },
  9193. dress: {
  9194. height: math.unit(5 + 2 / 12, "feet"),
  9195. weight: math.unit(120, "lbs"),
  9196. name: "Dress",
  9197. image: {
  9198. source: "./media/characters/katherine/dress.svg",
  9199. extra: 2258 / 2064
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Micro",
  9206. height: math.unit(1, "inches"),
  9207. default: true
  9208. },
  9209. {
  9210. name: "Normal",
  9211. height: math.unit(5 + 2 / 12, "feet")
  9212. },
  9213. {
  9214. name: "Macro",
  9215. height: math.unit(100, "meters")
  9216. },
  9217. {
  9218. name: "Megamacro",
  9219. height: math.unit(80, "miles")
  9220. },
  9221. ]
  9222. ))
  9223. characterMakers.push(() => makeCharacter(
  9224. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9225. {
  9226. front: {
  9227. height: math.unit(7 + 8 / 12, "feet"),
  9228. weight: math.unit(250, "lbs"),
  9229. name: "Front",
  9230. image: {
  9231. source: "./media/characters/yevis/front.svg",
  9232. extra: 1938 / 1755
  9233. }
  9234. }
  9235. },
  9236. [
  9237. {
  9238. name: "Mortal",
  9239. height: math.unit(7 + 8 / 12, "feet")
  9240. },
  9241. {
  9242. name: "Battle",
  9243. height: math.unit(25 + 11 / 12, "feet")
  9244. },
  9245. {
  9246. name: "Wrath",
  9247. height: math.unit(1654 + 11 / 12, "feet")
  9248. },
  9249. {
  9250. name: "Planet Destroyer",
  9251. height: math.unit(12000, "miles")
  9252. },
  9253. {
  9254. name: "Galaxy Conqueror",
  9255. height: math.unit(1.45, "zettameters"),
  9256. default: true
  9257. },
  9258. {
  9259. name: "Universal War",
  9260. height: math.unit(184, "gigaparsecs")
  9261. },
  9262. {
  9263. name: "Eternity War",
  9264. height: math.unit(1.98e55, "yottaparsecs")
  9265. },
  9266. ]
  9267. ))
  9268. characterMakers.push(() => makeCharacter(
  9269. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9270. {
  9271. front: {
  9272. height: math.unit(5 + 8 / 12, "feet"),
  9273. weight: math.unit(63, "kg"),
  9274. name: "Front",
  9275. image: {
  9276. source: "./media/characters/xavier/front.svg",
  9277. extra: 944 / 883
  9278. }
  9279. },
  9280. frontStretch: {
  9281. height: math.unit(5 + 8 / 12, "feet"),
  9282. weight: math.unit(63, "kg"),
  9283. name: "Stretching",
  9284. image: {
  9285. source: "./media/characters/xavier/front-stretch.svg",
  9286. extra: 962 / 820
  9287. }
  9288. },
  9289. },
  9290. [
  9291. {
  9292. name: "Normal",
  9293. height: math.unit(5 + 8 / 12, "feet")
  9294. },
  9295. {
  9296. name: "Macro",
  9297. height: math.unit(100, "meters"),
  9298. default: true
  9299. },
  9300. {
  9301. name: "McLargeHuge",
  9302. height: math.unit(10, "miles")
  9303. },
  9304. ]
  9305. ))
  9306. characterMakers.push(() => makeCharacter(
  9307. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9308. {
  9309. front: {
  9310. height: math.unit(5 + 5 / 12, "feet"),
  9311. weight: math.unit(150, "lb"),
  9312. name: "Front",
  9313. image: {
  9314. source: "./media/characters/joshii/front.svg",
  9315. extra: 765 / 653,
  9316. bottom: 51 / 816
  9317. }
  9318. },
  9319. foot: {
  9320. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9321. name: "Foot",
  9322. image: {
  9323. source: "./media/characters/joshii/foot.svg"
  9324. }
  9325. },
  9326. },
  9327. [
  9328. {
  9329. name: "Micro",
  9330. height: math.unit(2, "inches"),
  9331. default: true
  9332. },
  9333. {
  9334. name: "Normal",
  9335. height: math.unit(5 + 5 / 12, "feet")
  9336. },
  9337. {
  9338. name: "Macro",
  9339. height: math.unit(785, "feet")
  9340. },
  9341. {
  9342. name: "Megamacro",
  9343. height: math.unit(24.5, "miles")
  9344. },
  9345. ]
  9346. ))
  9347. characterMakers.push(() => makeCharacter(
  9348. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9349. {
  9350. front: {
  9351. height: math.unit(6, "feet"),
  9352. weight: math.unit(150, "lb"),
  9353. name: "Front",
  9354. image: {
  9355. source: "./media/characters/goddess-elizabeth/front.svg",
  9356. extra: 1800 / 1525,
  9357. bottom: 0.005
  9358. }
  9359. },
  9360. foot: {
  9361. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9362. name: "Foot",
  9363. image: {
  9364. source: "./media/characters/goddess-elizabeth/foot.svg"
  9365. }
  9366. },
  9367. mouth: {
  9368. height: math.unit(6, "feet"),
  9369. name: "Mouth",
  9370. image: {
  9371. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9372. }
  9373. },
  9374. },
  9375. [
  9376. {
  9377. name: "Micro",
  9378. height: math.unit(12, "feet")
  9379. },
  9380. {
  9381. name: "Normal",
  9382. height: math.unit(80, "miles"),
  9383. default: true
  9384. },
  9385. {
  9386. name: "Macro",
  9387. height: math.unit(15000, "parsecs")
  9388. },
  9389. ]
  9390. ))
  9391. characterMakers.push(() => makeCharacter(
  9392. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9393. {
  9394. front: {
  9395. height: math.unit(5 + 9 / 12, "feet"),
  9396. weight: math.unit(144, "lb"),
  9397. name: "Front",
  9398. image: {
  9399. source: "./media/characters/kara/front.svg"
  9400. }
  9401. },
  9402. feet: {
  9403. height: math.unit(6 / 6.765, "feet"),
  9404. name: "Kara's Feet",
  9405. rename: true,
  9406. image: {
  9407. source: "./media/characters/kara/feet.svg"
  9408. }
  9409. },
  9410. },
  9411. [
  9412. {
  9413. name: "Normal",
  9414. height: math.unit(5 + 9 / 12, "feet")
  9415. },
  9416. {
  9417. name: "Macro",
  9418. height: math.unit(174, "feet"),
  9419. default: true
  9420. },
  9421. ]
  9422. ))
  9423. characterMakers.push(() => makeCharacter(
  9424. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9425. {
  9426. front: {
  9427. height: math.unit(18, "feet"),
  9428. weight: math.unit(4050, "lb"),
  9429. name: "Front",
  9430. image: {
  9431. source: "./media/characters/tyrone/front.svg",
  9432. extra: 2405 / 2270,
  9433. bottom: 182 / 2587
  9434. }
  9435. },
  9436. },
  9437. [
  9438. {
  9439. name: "Normal",
  9440. height: math.unit(18, "feet"),
  9441. default: true
  9442. },
  9443. {
  9444. name: "Macro",
  9445. height: math.unit(300, "feet")
  9446. },
  9447. {
  9448. name: "Megamacro",
  9449. height: math.unit(15, "km")
  9450. },
  9451. {
  9452. name: "Gigamacro",
  9453. height: math.unit(500, "km")
  9454. },
  9455. {
  9456. name: "Teramacro",
  9457. height: math.unit(0.5, "gigameters")
  9458. },
  9459. {
  9460. name: "Omnimacro",
  9461. height: math.unit(1e252, "yottauniverse")
  9462. },
  9463. ]
  9464. ))
  9465. characterMakers.push(() => makeCharacter(
  9466. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9467. {
  9468. front: {
  9469. height: math.unit(7 + 8 / 12, "feet"),
  9470. weight: math.unit(120, "lb"),
  9471. name: "Front",
  9472. image: {
  9473. source: "./media/characters/danny/front.svg",
  9474. extra: 1490 / 1350
  9475. }
  9476. },
  9477. back: {
  9478. height: math.unit(7 + 8 / 12, "feet"),
  9479. weight: math.unit(120, "lb"),
  9480. name: "Back",
  9481. image: {
  9482. source: "./media/characters/danny/back.svg",
  9483. extra: 1490 / 1350
  9484. }
  9485. },
  9486. },
  9487. [
  9488. {
  9489. name: "Normal",
  9490. height: math.unit(7 + 8 / 12, "feet"),
  9491. default: true
  9492. },
  9493. ]
  9494. ))
  9495. characterMakers.push(() => makeCharacter(
  9496. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9497. {
  9498. front: {
  9499. height: math.unit(3.5, "inches"),
  9500. weight: math.unit(19, "grams"),
  9501. name: "Front",
  9502. image: {
  9503. source: "./media/characters/mallow/front.svg",
  9504. extra: 471 / 431
  9505. }
  9506. },
  9507. back: {
  9508. height: math.unit(3.5, "inches"),
  9509. weight: math.unit(19, "grams"),
  9510. name: "Back",
  9511. image: {
  9512. source: "./media/characters/mallow/back.svg",
  9513. extra: 471 / 431
  9514. }
  9515. },
  9516. },
  9517. [
  9518. {
  9519. name: "Normal",
  9520. height: math.unit(3.5, "inches"),
  9521. default: true
  9522. },
  9523. ]
  9524. ))
  9525. characterMakers.push(() => makeCharacter(
  9526. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9527. {
  9528. front: {
  9529. height: math.unit(9, "feet"),
  9530. weight: math.unit(230, "kg"),
  9531. name: "Front",
  9532. image: {
  9533. source: "./media/characters/starry-aqua/front.svg"
  9534. }
  9535. },
  9536. back: {
  9537. height: math.unit(9, "feet"),
  9538. weight: math.unit(230, "kg"),
  9539. name: "Back",
  9540. image: {
  9541. source: "./media/characters/starry-aqua/back.svg"
  9542. }
  9543. },
  9544. hand: {
  9545. height: math.unit(9 * 0.1168, "feet"),
  9546. name: "Hand",
  9547. image: {
  9548. source: "./media/characters/starry-aqua/hand.svg"
  9549. }
  9550. },
  9551. foot: {
  9552. height: math.unit(9 * 0.18, "feet"),
  9553. name: "Foot",
  9554. image: {
  9555. source: "./media/characters/starry-aqua/foot.svg"
  9556. }
  9557. }
  9558. },
  9559. [
  9560. {
  9561. name: "Micro",
  9562. height: math.unit(3, "inches")
  9563. },
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(9, "feet")
  9567. },
  9568. {
  9569. name: "Macro",
  9570. height: math.unit(300, "feet"),
  9571. default: true
  9572. },
  9573. {
  9574. name: "Megamacro",
  9575. height: math.unit(3200, "feet")
  9576. }
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9581. {
  9582. front: {
  9583. height: math.unit(15, "feet"),
  9584. weight: math.unit(5026, "lb"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/luka-towers/front.svg",
  9588. extra: 1269/1133,
  9589. bottom: 51/1320
  9590. }
  9591. },
  9592. },
  9593. [
  9594. {
  9595. name: "Normal",
  9596. height: math.unit(15, "feet"),
  9597. default: true
  9598. },
  9599. {
  9600. name: "Minimacro",
  9601. height: math.unit(25, "feet")
  9602. },
  9603. {
  9604. name: "Macro",
  9605. height: math.unit(320, "feet")
  9606. },
  9607. {
  9608. name: "Megamacro",
  9609. height: math.unit(35000, "feet")
  9610. },
  9611. {
  9612. name: "Gigamacro",
  9613. height: math.unit(4000, "miles")
  9614. },
  9615. {
  9616. name: "Teramacro",
  9617. height: math.unit(15000, "miles")
  9618. },
  9619. ]
  9620. ))
  9621. characterMakers.push(() => makeCharacter(
  9622. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9623. {
  9624. front: {
  9625. height: math.unit(6, "feet"),
  9626. weight: math.unit(150, "lb"),
  9627. name: "Front",
  9628. image: {
  9629. source: "./media/characters/natalie-nightring/front.svg",
  9630. extra: 1,
  9631. bottom: 0.06
  9632. }
  9633. },
  9634. },
  9635. [
  9636. {
  9637. name: "Uh Oh",
  9638. height: math.unit(0.1, "mm")
  9639. },
  9640. {
  9641. name: "Small",
  9642. height: math.unit(3, "inches")
  9643. },
  9644. {
  9645. name: "Human Scale",
  9646. height: math.unit(6, "feet")
  9647. },
  9648. {
  9649. name: "Librarian",
  9650. height: math.unit(50, "feet"),
  9651. default: true
  9652. },
  9653. {
  9654. name: "Immense",
  9655. height: math.unit(200, "miles")
  9656. },
  9657. ]
  9658. ))
  9659. characterMakers.push(() => makeCharacter(
  9660. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9661. {
  9662. front: {
  9663. height: math.unit(6, "feet"),
  9664. weight: math.unit(180, "lbs"),
  9665. name: "Front",
  9666. image: {
  9667. source: "./media/characters/danni-rosie/front.svg",
  9668. extra: 1260 / 1128,
  9669. bottom: 0.022
  9670. }
  9671. },
  9672. },
  9673. [
  9674. {
  9675. name: "Micro",
  9676. height: math.unit(2, "inches"),
  9677. default: true
  9678. },
  9679. ]
  9680. ))
  9681. characterMakers.push(() => makeCharacter(
  9682. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9683. {
  9684. front: {
  9685. height: math.unit(5 + 9 / 12, "feet"),
  9686. weight: math.unit(220, "lb"),
  9687. name: "Front",
  9688. image: {
  9689. source: "./media/characters/samantha-kruse/front.svg",
  9690. extra: (985 / 935),
  9691. bottom: 0.03
  9692. }
  9693. },
  9694. frontUndressed: {
  9695. height: math.unit(5 + 9 / 12, "feet"),
  9696. weight: math.unit(220, "lb"),
  9697. name: "Front (Undressed)",
  9698. image: {
  9699. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9700. extra: (973 / 923),
  9701. bottom: 0.025
  9702. }
  9703. },
  9704. fat: {
  9705. height: math.unit(5 + 9 / 12, "feet"),
  9706. weight: math.unit(900, "lb"),
  9707. name: "Front (Fat)",
  9708. image: {
  9709. source: "./media/characters/samantha-kruse/fat.svg",
  9710. extra: 2688 / 2561
  9711. }
  9712. },
  9713. },
  9714. [
  9715. {
  9716. name: "Normal",
  9717. height: math.unit(5 + 9 / 12, "feet"),
  9718. default: true
  9719. }
  9720. ]
  9721. ))
  9722. characterMakers.push(() => makeCharacter(
  9723. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9724. {
  9725. back: {
  9726. height: math.unit(5 + 4 / 12, "feet"),
  9727. weight: math.unit(4963, "lb"),
  9728. name: "Back",
  9729. image: {
  9730. source: "./media/characters/amelia-rosie/back.svg",
  9731. extra: 1113 / 963,
  9732. bottom: 0.01
  9733. }
  9734. },
  9735. },
  9736. [
  9737. {
  9738. name: "Level 0",
  9739. height: math.unit(5 + 4 / 12, "feet")
  9740. },
  9741. {
  9742. name: "Level 1",
  9743. height: math.unit(164597, "feet"),
  9744. default: true
  9745. },
  9746. {
  9747. name: "Level 2",
  9748. height: math.unit(956243, "miles")
  9749. },
  9750. {
  9751. name: "Level 3",
  9752. height: math.unit(29421709423, "miles")
  9753. },
  9754. {
  9755. name: "Level 4",
  9756. height: math.unit(154, "lightyears")
  9757. },
  9758. {
  9759. name: "Level 5",
  9760. height: math.unit(4738272, "lightyears")
  9761. },
  9762. {
  9763. name: "Level 6",
  9764. height: math.unit(145787152896, "lightyears")
  9765. },
  9766. ]
  9767. ))
  9768. characterMakers.push(() => makeCharacter(
  9769. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9770. {
  9771. front: {
  9772. height: math.unit(5 + 11 / 12, "feet"),
  9773. weight: math.unit(65, "kg"),
  9774. name: "Front",
  9775. image: {
  9776. source: "./media/characters/rook-kitara/front.svg",
  9777. extra: 1347 / 1274,
  9778. bottom: 0.005
  9779. }
  9780. },
  9781. },
  9782. [
  9783. {
  9784. name: "Totally Unfair",
  9785. height: math.unit(1.8, "mm")
  9786. },
  9787. {
  9788. name: "Lap Rookie",
  9789. height: math.unit(1.4, "feet")
  9790. },
  9791. {
  9792. name: "Normal",
  9793. height: math.unit(5 + 11 / 12, "feet"),
  9794. default: true
  9795. },
  9796. {
  9797. name: "How Did This Happen",
  9798. height: math.unit(80, "miles")
  9799. }
  9800. ]
  9801. ))
  9802. characterMakers.push(() => makeCharacter(
  9803. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9804. {
  9805. front: {
  9806. height: math.unit(7, "feet"),
  9807. weight: math.unit(300, "lb"),
  9808. name: "Front",
  9809. image: {
  9810. source: "./media/characters/pisces/front.svg",
  9811. extra: 2255 / 2115,
  9812. bottom: 0.03
  9813. }
  9814. },
  9815. back: {
  9816. height: math.unit(7, "feet"),
  9817. weight: math.unit(300, "lb"),
  9818. name: "Back",
  9819. image: {
  9820. source: "./media/characters/pisces/back.svg",
  9821. extra: 2146 / 2055,
  9822. bottom: 0.04
  9823. }
  9824. },
  9825. },
  9826. [
  9827. {
  9828. name: "Normal",
  9829. height: math.unit(7, "feet"),
  9830. default: true
  9831. },
  9832. {
  9833. name: "Swimming Pool",
  9834. height: math.unit(12.2, "meters")
  9835. },
  9836. {
  9837. name: "Olympic Swimming Pool",
  9838. height: math.unit(56.3, "meters")
  9839. },
  9840. {
  9841. name: "Lake Superior",
  9842. height: math.unit(93900, "meters")
  9843. },
  9844. {
  9845. name: "Mediterranean Sea",
  9846. height: math.unit(644457, "meters")
  9847. },
  9848. {
  9849. name: "World's Oceans",
  9850. height: math.unit(4567491, "meters")
  9851. },
  9852. ]
  9853. ))
  9854. characterMakers.push(() => makeCharacter(
  9855. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9856. {
  9857. front: {
  9858. height: math.unit(2.3, "meters"),
  9859. weight: math.unit(120, "kg"),
  9860. name: "Front",
  9861. image: {
  9862. source: "./media/characters/zelas/front.svg"
  9863. }
  9864. },
  9865. side: {
  9866. height: math.unit(2.3, "meters"),
  9867. weight: math.unit(120, "kg"),
  9868. name: "Side",
  9869. image: {
  9870. source: "./media/characters/zelas/side.svg"
  9871. }
  9872. },
  9873. back: {
  9874. height: math.unit(2.3, "meters"),
  9875. weight: math.unit(120, "kg"),
  9876. name: "Back",
  9877. image: {
  9878. source: "./media/characters/zelas/back.svg"
  9879. }
  9880. },
  9881. foot: {
  9882. height: math.unit(1.116, "feet"),
  9883. name: "Foot",
  9884. image: {
  9885. source: "./media/characters/zelas/foot.svg"
  9886. }
  9887. },
  9888. },
  9889. [
  9890. {
  9891. name: "Normal",
  9892. height: math.unit(2.3, "meters")
  9893. },
  9894. {
  9895. name: "Macro",
  9896. height: math.unit(30, "meters"),
  9897. default: true
  9898. },
  9899. ]
  9900. ))
  9901. characterMakers.push(() => makeCharacter(
  9902. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9903. {
  9904. front: {
  9905. height: math.unit(1, "inch"),
  9906. weight: math.unit(0.21, "grams"),
  9907. name: "Front",
  9908. image: {
  9909. source: "./media/characters/talbot/front.svg",
  9910. extra: 594 / 544
  9911. }
  9912. },
  9913. },
  9914. [
  9915. {
  9916. name: "Micro",
  9917. height: math.unit(1, "inch"),
  9918. default: true
  9919. },
  9920. ]
  9921. ))
  9922. characterMakers.push(() => makeCharacter(
  9923. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9924. {
  9925. front: {
  9926. height: math.unit(3 + 3 / 12, "feet"),
  9927. weight: math.unit(51.8, "lb"),
  9928. name: "Front",
  9929. image: {
  9930. source: "./media/characters/fliss/front.svg",
  9931. extra: 840 / 640
  9932. }
  9933. },
  9934. },
  9935. [
  9936. {
  9937. name: "Teeny Tiny",
  9938. height: math.unit(1, "mm")
  9939. },
  9940. {
  9941. name: "Small",
  9942. height: math.unit(1, "inch"),
  9943. default: true
  9944. },
  9945. {
  9946. name: "Standard Sylveon",
  9947. height: math.unit(3 + 3 / 12, "feet")
  9948. },
  9949. {
  9950. name: "Large Nuisance",
  9951. height: math.unit(33, "feet")
  9952. },
  9953. {
  9954. name: "City Filler",
  9955. height: math.unit(3000, "feet")
  9956. },
  9957. {
  9958. name: "New Horizon",
  9959. height: math.unit(6000, "miles")
  9960. },
  9961. ]
  9962. ))
  9963. characterMakers.push(() => makeCharacter(
  9964. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9965. {
  9966. front: {
  9967. height: math.unit(5, "cm"),
  9968. weight: math.unit(1.94, "g"),
  9969. name: "Front",
  9970. image: {
  9971. source: "./media/characters/fleta/front.svg",
  9972. extra: 835 / 803
  9973. }
  9974. },
  9975. back: {
  9976. height: math.unit(5, "cm"),
  9977. weight: math.unit(1.94, "g"),
  9978. name: "Back",
  9979. image: {
  9980. source: "./media/characters/fleta/back.svg",
  9981. extra: 835 / 803
  9982. }
  9983. },
  9984. },
  9985. [
  9986. {
  9987. name: "Micro",
  9988. height: math.unit(5, "cm"),
  9989. default: true
  9990. },
  9991. ]
  9992. ))
  9993. characterMakers.push(() => makeCharacter(
  9994. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9995. {
  9996. front: {
  9997. height: math.unit(6, "feet"),
  9998. weight: math.unit(225, "lb"),
  9999. name: "Front",
  10000. image: {
  10001. source: "./media/characters/dominic/front.svg",
  10002. extra: 1770 / 1620,
  10003. bottom: 0.025
  10004. }
  10005. },
  10006. back: {
  10007. height: math.unit(6, "feet"),
  10008. weight: math.unit(225, "lb"),
  10009. name: "Back",
  10010. image: {
  10011. source: "./media/characters/dominic/back.svg",
  10012. extra: 1745 / 1620,
  10013. bottom: 0.065
  10014. }
  10015. },
  10016. },
  10017. [
  10018. {
  10019. name: "Nano",
  10020. height: math.unit(0.1, "mm")
  10021. },
  10022. {
  10023. name: "Micro-",
  10024. height: math.unit(1, "mm")
  10025. },
  10026. {
  10027. name: "Micro",
  10028. height: math.unit(4, "inches")
  10029. },
  10030. {
  10031. name: "Normal",
  10032. height: math.unit(6 + 4 / 12, "feet"),
  10033. default: true
  10034. },
  10035. {
  10036. name: "Macro",
  10037. height: math.unit(115, "feet")
  10038. },
  10039. {
  10040. name: "Macro+",
  10041. height: math.unit(955, "feet")
  10042. },
  10043. {
  10044. name: "Megamacro",
  10045. height: math.unit(8990, "feet")
  10046. },
  10047. {
  10048. name: "Gigmacro",
  10049. height: math.unit(9310, "miles")
  10050. },
  10051. {
  10052. name: "Teramacro",
  10053. height: math.unit(1567005010, "miles")
  10054. },
  10055. {
  10056. name: "Examacro",
  10057. height: math.unit(1425, "parsecs")
  10058. },
  10059. ]
  10060. ))
  10061. characterMakers.push(() => makeCharacter(
  10062. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10063. {
  10064. front: {
  10065. height: math.unit(400, "feet"),
  10066. weight: math.unit(44444444, "lb"),
  10067. name: "Front",
  10068. image: {
  10069. source: "./media/characters/major-colonel/front.svg"
  10070. }
  10071. },
  10072. back: {
  10073. height: math.unit(400, "feet"),
  10074. weight: math.unit(44444444, "lb"),
  10075. name: "Back",
  10076. image: {
  10077. source: "./media/characters/major-colonel/back.svg"
  10078. }
  10079. },
  10080. },
  10081. [
  10082. {
  10083. name: "Macro",
  10084. height: math.unit(400, "feet"),
  10085. default: true
  10086. },
  10087. ]
  10088. ))
  10089. characterMakers.push(() => makeCharacter(
  10090. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10091. {
  10092. catFront: {
  10093. height: math.unit(6, "feet"),
  10094. weight: math.unit(120, "lb"),
  10095. name: "Front (Cat Side)",
  10096. image: {
  10097. source: "./media/characters/axel-lycan/cat-front.svg",
  10098. extra: 430 / 402,
  10099. bottom: 43 / 472.35
  10100. }
  10101. },
  10102. catBack: {
  10103. height: math.unit(6, "feet"),
  10104. weight: math.unit(120, "lb"),
  10105. name: "Back (Cat Side)",
  10106. image: {
  10107. source: "./media/characters/axel-lycan/cat-back.svg",
  10108. extra: 447 / 419,
  10109. bottom: 23.3 / 469
  10110. }
  10111. },
  10112. wolfFront: {
  10113. height: math.unit(6, "feet"),
  10114. weight: math.unit(120, "lb"),
  10115. name: "Front (Wolf Side)",
  10116. image: {
  10117. source: "./media/characters/axel-lycan/wolf-front.svg",
  10118. extra: 485 / 456,
  10119. bottom: 19 / 504
  10120. }
  10121. },
  10122. wolfBack: {
  10123. height: math.unit(6, "feet"),
  10124. weight: math.unit(120, "lb"),
  10125. name: "Back (Wolf Side)",
  10126. image: {
  10127. source: "./media/characters/axel-lycan/wolf-back.svg",
  10128. extra: 475 / 438,
  10129. bottom: 39.2 / 514
  10130. }
  10131. },
  10132. },
  10133. [
  10134. {
  10135. name: "Macro",
  10136. height: math.unit(1, "km"),
  10137. default: true
  10138. },
  10139. ]
  10140. ))
  10141. characterMakers.push(() => makeCharacter(
  10142. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10143. {
  10144. front: {
  10145. height: math.unit(5 + 9 / 12, "feet"),
  10146. weight: math.unit(175, "lb"),
  10147. name: "Front",
  10148. image: {
  10149. source: "./media/characters/vanrel-hyena/front.svg",
  10150. extra: 1086 / 1010,
  10151. bottom: 0.04
  10152. }
  10153. },
  10154. },
  10155. [
  10156. {
  10157. name: "Normal",
  10158. height: math.unit(5 + 9 / 12, "feet"),
  10159. default: true
  10160. },
  10161. ]
  10162. ))
  10163. characterMakers.push(() => makeCharacter(
  10164. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10165. {
  10166. front: {
  10167. height: math.unit(6, "feet"),
  10168. weight: math.unit(103, "lb"),
  10169. name: "Front",
  10170. image: {
  10171. source: "./media/characters/abbott-absol/front.svg",
  10172. extra: 2010 / 1842
  10173. }
  10174. },
  10175. },
  10176. [
  10177. {
  10178. name: "Megamicro",
  10179. height: math.unit(0.1, "mm")
  10180. },
  10181. {
  10182. name: "Micro",
  10183. height: math.unit(1, "inch")
  10184. },
  10185. {
  10186. name: "Normal",
  10187. height: math.unit(6, "feet"),
  10188. default: true
  10189. },
  10190. ]
  10191. ))
  10192. characterMakers.push(() => makeCharacter(
  10193. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10194. {
  10195. front: {
  10196. height: math.unit(6, "feet"),
  10197. weight: math.unit(264, "lb"),
  10198. name: "Front",
  10199. image: {
  10200. source: "./media/characters/hector/front.svg",
  10201. extra: 2280 / 2130,
  10202. bottom: 0.07
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Normal",
  10209. height: math.unit(12.25, "foot"),
  10210. default: true
  10211. },
  10212. {
  10213. name: "Macro",
  10214. height: math.unit(160, "feet")
  10215. },
  10216. ]
  10217. ))
  10218. characterMakers.push(() => makeCharacter(
  10219. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10220. {
  10221. front: {
  10222. height: math.unit(6, "feet"),
  10223. weight: math.unit(150, "lb"),
  10224. name: "Front",
  10225. image: {
  10226. source: "./media/characters/sal/front.svg",
  10227. extra: 1846 / 1699,
  10228. bottom: 0.04
  10229. }
  10230. },
  10231. },
  10232. [
  10233. {
  10234. name: "Megamacro",
  10235. height: math.unit(10, "miles"),
  10236. default: true
  10237. },
  10238. ]
  10239. ))
  10240. characterMakers.push(() => makeCharacter(
  10241. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10242. {
  10243. front: {
  10244. height: math.unit(3, "meters"),
  10245. weight: math.unit(450, "kg"),
  10246. name: "front",
  10247. image: {
  10248. source: "./media/characters/ranger/front.svg",
  10249. extra: 2401 / 2243,
  10250. bottom: 0.05
  10251. }
  10252. },
  10253. },
  10254. [
  10255. {
  10256. name: "Normal",
  10257. height: math.unit(3, "meters"),
  10258. default: true
  10259. },
  10260. ]
  10261. ))
  10262. characterMakers.push(() => makeCharacter(
  10263. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10264. {
  10265. front: {
  10266. height: math.unit(14, "feet"),
  10267. weight: math.unit(800, "kg"),
  10268. name: "Front",
  10269. image: {
  10270. source: "./media/characters/theresa/front.svg",
  10271. extra: 3575 / 3346,
  10272. bottom: 0.03
  10273. }
  10274. },
  10275. },
  10276. [
  10277. {
  10278. name: "Normal",
  10279. height: math.unit(14, "feet"),
  10280. default: true
  10281. },
  10282. ]
  10283. ))
  10284. characterMakers.push(() => makeCharacter(
  10285. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10286. {
  10287. front: {
  10288. height: math.unit(6, "feet"),
  10289. weight: math.unit(3, "kg"),
  10290. name: "Front",
  10291. image: {
  10292. source: "./media/characters/ine/front.svg",
  10293. extra: 678 / 539,
  10294. bottom: 0.023
  10295. }
  10296. },
  10297. },
  10298. [
  10299. {
  10300. name: "Normal",
  10301. height: math.unit(2.265, "feet"),
  10302. default: true
  10303. },
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10308. {
  10309. front: {
  10310. height: math.unit(5, "feet"),
  10311. weight: math.unit(30, "kg"),
  10312. name: "Front",
  10313. image: {
  10314. source: "./media/characters/vial/front.svg",
  10315. extra: 1365 / 1277,
  10316. bottom: 0.04
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Normal",
  10323. height: math.unit(5, "feet"),
  10324. default: true
  10325. },
  10326. ]
  10327. ))
  10328. characterMakers.push(() => makeCharacter(
  10329. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10330. {
  10331. side: {
  10332. height: math.unit(3.4, "meters"),
  10333. weight: math.unit(1000, "lb"),
  10334. name: "Side",
  10335. image: {
  10336. source: "./media/characters/rovoska/side.svg",
  10337. extra: 4403 / 1515
  10338. }
  10339. },
  10340. },
  10341. [
  10342. {
  10343. name: "Normal",
  10344. height: math.unit(3.4, "meters"),
  10345. default: true
  10346. },
  10347. ]
  10348. ))
  10349. characterMakers.push(() => makeCharacter(
  10350. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10351. {
  10352. front: {
  10353. height: math.unit(8, "feet"),
  10354. weight: math.unit(315, "lb"),
  10355. name: "Front",
  10356. image: {
  10357. source: "./media/characters/gunner-rotthbauer/front.svg"
  10358. }
  10359. },
  10360. back: {
  10361. height: math.unit(8, "feet"),
  10362. weight: math.unit(315, "lb"),
  10363. name: "Back",
  10364. image: {
  10365. source: "./media/characters/gunner-rotthbauer/back.svg"
  10366. }
  10367. },
  10368. },
  10369. [
  10370. {
  10371. name: "Micro",
  10372. height: math.unit(3.5, "inches")
  10373. },
  10374. {
  10375. name: "Normal",
  10376. height: math.unit(8, "feet"),
  10377. default: true
  10378. },
  10379. {
  10380. name: "Macro",
  10381. height: math.unit(250, "feet")
  10382. },
  10383. {
  10384. name: "Megamacro",
  10385. height: math.unit(1, "AU")
  10386. },
  10387. ]
  10388. ))
  10389. characterMakers.push(() => makeCharacter(
  10390. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10391. {
  10392. front: {
  10393. height: math.unit(5 + 5 / 12, "feet"),
  10394. weight: math.unit(140, "lb"),
  10395. name: "Front",
  10396. image: {
  10397. source: "./media/characters/allatia/front.svg",
  10398. extra: 1227 / 1180,
  10399. bottom: 0.027
  10400. }
  10401. },
  10402. },
  10403. [
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(5 + 5 / 12, "feet")
  10407. },
  10408. {
  10409. name: "Macro",
  10410. height: math.unit(250, "feet"),
  10411. default: true
  10412. },
  10413. {
  10414. name: "Megamacro",
  10415. height: math.unit(8, "miles")
  10416. }
  10417. ]
  10418. ))
  10419. characterMakers.push(() => makeCharacter(
  10420. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10421. {
  10422. front: {
  10423. height: math.unit(6, "feet"),
  10424. weight: math.unit(120, "lb"),
  10425. name: "Front",
  10426. image: {
  10427. source: "./media/characters/tene/front.svg",
  10428. extra: 814/750,
  10429. bottom: 36/850
  10430. }
  10431. },
  10432. stomping: {
  10433. height: math.unit(2.025, "meters"),
  10434. weight: math.unit(120, "lb"),
  10435. name: "Stomping",
  10436. image: {
  10437. source: "./media/characters/tene/stomping.svg",
  10438. extra: 885/821,
  10439. bottom: 15/900
  10440. }
  10441. },
  10442. sitting: {
  10443. height: math.unit(1, "meter"),
  10444. weight: math.unit(120, "lb"),
  10445. name: "Sitting",
  10446. image: {
  10447. source: "./media/characters/tene/sitting.svg",
  10448. extra: 396/366,
  10449. bottom: 79/475
  10450. }
  10451. },
  10452. smiling: {
  10453. height: math.unit(1.2, "feet"),
  10454. name: "Smiling",
  10455. image: {
  10456. source: "./media/characters/tene/smiling.svg",
  10457. extra: 1364/1071,
  10458. bottom: 0/1364
  10459. }
  10460. },
  10461. smug: {
  10462. height: math.unit(1.3, "feet"),
  10463. name: "Smug",
  10464. image: {
  10465. source: "./media/characters/tene/smug.svg",
  10466. extra: 1323/1082,
  10467. bottom: 0/1323
  10468. }
  10469. },
  10470. feral: {
  10471. height: math.unit(3.9, "feet"),
  10472. weight: math.unit(250, "lb"),
  10473. name: "Feral",
  10474. image: {
  10475. source: "./media/characters/tene/feral.svg",
  10476. extra: 717 / 458,
  10477. bottom: 0.179
  10478. }
  10479. },
  10480. },
  10481. [
  10482. {
  10483. name: "Normal",
  10484. height: math.unit(6, "feet")
  10485. },
  10486. {
  10487. name: "Macro",
  10488. height: math.unit(300, "feet"),
  10489. default: true
  10490. },
  10491. {
  10492. name: "Megamacro",
  10493. height: math.unit(5, "miles")
  10494. },
  10495. ]
  10496. ))
  10497. characterMakers.push(() => makeCharacter(
  10498. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10499. {
  10500. side: {
  10501. height: math.unit(6, "feet"),
  10502. name: "Side",
  10503. image: {
  10504. source: "./media/characters/evander/side.svg",
  10505. extra: 877 / 477
  10506. }
  10507. },
  10508. },
  10509. [
  10510. {
  10511. name: "Normal",
  10512. height: math.unit(0.83, "meters"),
  10513. default: true
  10514. },
  10515. ]
  10516. ))
  10517. characterMakers.push(() => makeCharacter(
  10518. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10519. {
  10520. front: {
  10521. height: math.unit(12, "feet"),
  10522. weight: math.unit(1000, "lb"),
  10523. name: "Front",
  10524. image: {
  10525. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10526. extra: 1762 / 1611
  10527. }
  10528. },
  10529. back: {
  10530. height: math.unit(12, "feet"),
  10531. weight: math.unit(1000, "lb"),
  10532. name: "Back",
  10533. image: {
  10534. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10535. extra: 1762 / 1611
  10536. }
  10537. },
  10538. },
  10539. [
  10540. {
  10541. name: "Normal",
  10542. height: math.unit(12, "feet"),
  10543. default: true
  10544. },
  10545. {
  10546. name: "Kaiju",
  10547. height: math.unit(150, "feet")
  10548. },
  10549. ]
  10550. ))
  10551. characterMakers.push(() => makeCharacter(
  10552. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10553. {
  10554. front: {
  10555. height: math.unit(6, "feet"),
  10556. weight: math.unit(150, "lb"),
  10557. name: "Front",
  10558. image: {
  10559. source: "./media/characters/zero-alurus/front.svg"
  10560. }
  10561. },
  10562. back: {
  10563. height: math.unit(6, "feet"),
  10564. weight: math.unit(150, "lb"),
  10565. name: "Back",
  10566. image: {
  10567. source: "./media/characters/zero-alurus/back.svg"
  10568. }
  10569. },
  10570. },
  10571. [
  10572. {
  10573. name: "Normal",
  10574. height: math.unit(5 + 10 / 12, "feet")
  10575. },
  10576. {
  10577. name: "Macro",
  10578. height: math.unit(60, "feet"),
  10579. default: true
  10580. },
  10581. {
  10582. name: "Macro+",
  10583. height: math.unit(450, "feet")
  10584. },
  10585. ]
  10586. ))
  10587. characterMakers.push(() => makeCharacter(
  10588. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10589. {
  10590. front: {
  10591. height: math.unit(6, "feet"),
  10592. weight: math.unit(200, "lb"),
  10593. name: "Front",
  10594. image: {
  10595. source: "./media/characters/mega-shi/front.svg",
  10596. extra: 1279 / 1250,
  10597. bottom: 0.02
  10598. }
  10599. },
  10600. back: {
  10601. height: math.unit(6, "feet"),
  10602. weight: math.unit(200, "lb"),
  10603. name: "Back",
  10604. image: {
  10605. source: "./media/characters/mega-shi/back.svg",
  10606. extra: 1279 / 1250,
  10607. bottom: 0.02
  10608. }
  10609. },
  10610. },
  10611. [
  10612. {
  10613. name: "Micro",
  10614. height: math.unit(16 + 6 / 12, "feet")
  10615. },
  10616. {
  10617. name: "Third Dimension",
  10618. height: math.unit(40, "meters")
  10619. },
  10620. {
  10621. name: "Normal",
  10622. height: math.unit(660, "feet"),
  10623. default: true
  10624. },
  10625. {
  10626. name: "Megamacro",
  10627. height: math.unit(10, "miles")
  10628. },
  10629. {
  10630. name: "Planetary Launch",
  10631. height: math.unit(500, "miles")
  10632. },
  10633. {
  10634. name: "Interstellar",
  10635. height: math.unit(1e9, "miles")
  10636. },
  10637. {
  10638. name: "Leaving the Universe",
  10639. height: math.unit(1, "gigaparsec")
  10640. },
  10641. {
  10642. name: "Travelling Universes",
  10643. height: math.unit(30e15, "parsecs")
  10644. },
  10645. ]
  10646. ))
  10647. characterMakers.push(() => makeCharacter(
  10648. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10649. {
  10650. front: {
  10651. height: math.unit(5 + 4/12, "feet"),
  10652. weight: math.unit(120, "lb"),
  10653. name: "Front",
  10654. image: {
  10655. source: "./media/characters/odyssey/front.svg",
  10656. extra: 1747/1571,
  10657. bottom: 47/1794
  10658. }
  10659. },
  10660. side: {
  10661. height: math.unit(5.1, "feet"),
  10662. weight: math.unit(120, "lb"),
  10663. name: "Side",
  10664. image: {
  10665. source: "./media/characters/odyssey/side.svg",
  10666. extra: 1847/1619,
  10667. bottom: 47/1894
  10668. }
  10669. },
  10670. lounging: {
  10671. height: math.unit(1.464, "feet"),
  10672. weight: math.unit(120, "lb"),
  10673. name: "Lounging",
  10674. image: {
  10675. source: "./media/characters/odyssey/lounging.svg",
  10676. extra: 1235/837,
  10677. bottom: 551/1786
  10678. }
  10679. },
  10680. },
  10681. [
  10682. {
  10683. name: "Normal",
  10684. height: math.unit(5 + 4 / 12, "feet")
  10685. },
  10686. {
  10687. name: "Macro",
  10688. height: math.unit(1, "km")
  10689. },
  10690. {
  10691. name: "Megamacro",
  10692. height: math.unit(3000, "km")
  10693. },
  10694. {
  10695. name: "Gigamacro",
  10696. height: math.unit(1, "AU"),
  10697. default: true
  10698. },
  10699. {
  10700. name: "Omniversal",
  10701. height: math.unit(100e14, "lightyears")
  10702. },
  10703. ]
  10704. ))
  10705. characterMakers.push(() => makeCharacter(
  10706. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10707. {
  10708. front: {
  10709. height: math.unit(6, "feet"),
  10710. weight: math.unit(300, "lb"),
  10711. name: "Front",
  10712. image: {
  10713. source: "./media/characters/mekuto/front.svg",
  10714. extra: 921 / 832,
  10715. bottom: 0.03
  10716. }
  10717. },
  10718. hand: {
  10719. height: math.unit(6 / 10.24, "feet"),
  10720. name: "Hand",
  10721. image: {
  10722. source: "./media/characters/mekuto/hand.svg"
  10723. }
  10724. },
  10725. foot: {
  10726. height: math.unit(6 / 5.05, "feet"),
  10727. name: "Foot",
  10728. image: {
  10729. source: "./media/characters/mekuto/foot.svg"
  10730. }
  10731. },
  10732. },
  10733. [
  10734. {
  10735. name: "Minimicro",
  10736. height: math.unit(0.2, "inches")
  10737. },
  10738. {
  10739. name: "Micro",
  10740. height: math.unit(1.5, "inches")
  10741. },
  10742. {
  10743. name: "Normal",
  10744. height: math.unit(5 + 11 / 12, "feet"),
  10745. default: true
  10746. },
  10747. {
  10748. name: "Minimacro",
  10749. height: math.unit(17 + 9 / 12, "feet")
  10750. },
  10751. {
  10752. name: "Macro",
  10753. height: math.unit(177.5, "feet")
  10754. },
  10755. {
  10756. name: "Megamacro",
  10757. height: math.unit(152, "miles")
  10758. },
  10759. ]
  10760. ))
  10761. characterMakers.push(() => makeCharacter(
  10762. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10763. {
  10764. front: {
  10765. height: math.unit(6.5, "inches"),
  10766. weight: math.unit(13, "oz"),
  10767. name: "Front",
  10768. image: {
  10769. source: "./media/characters/dafydd-tomos/front.svg",
  10770. extra: 2990 / 2603,
  10771. bottom: 0.03
  10772. }
  10773. },
  10774. },
  10775. [
  10776. {
  10777. name: "Micro",
  10778. height: math.unit(6.5, "inches"),
  10779. default: true
  10780. },
  10781. ]
  10782. ))
  10783. characterMakers.push(() => makeCharacter(
  10784. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10785. {
  10786. front: {
  10787. height: math.unit(6, "feet"),
  10788. weight: math.unit(150, "lb"),
  10789. name: "Front",
  10790. image: {
  10791. source: "./media/characters/splinter/front.svg",
  10792. extra: 2990 / 2882,
  10793. bottom: 0.04
  10794. }
  10795. },
  10796. back: {
  10797. height: math.unit(6, "feet"),
  10798. weight: math.unit(150, "lb"),
  10799. name: "Back",
  10800. image: {
  10801. source: "./media/characters/splinter/back.svg",
  10802. extra: 2990 / 2882,
  10803. bottom: 0.04
  10804. }
  10805. },
  10806. },
  10807. [
  10808. {
  10809. name: "Normal",
  10810. height: math.unit(6, "feet")
  10811. },
  10812. {
  10813. name: "Macro",
  10814. height: math.unit(230, "meters"),
  10815. default: true
  10816. },
  10817. ]
  10818. ))
  10819. characterMakers.push(() => makeCharacter(
  10820. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10821. {
  10822. front: {
  10823. height: math.unit(4 + 10 / 12, "feet"),
  10824. weight: math.unit(480, "lb"),
  10825. name: "Front",
  10826. image: {
  10827. source: "./media/characters/snow-gabumon/front.svg",
  10828. extra: 1140 / 963,
  10829. bottom: 0.058
  10830. }
  10831. },
  10832. back: {
  10833. height: math.unit(4 + 10 / 12, "feet"),
  10834. weight: math.unit(480, "lb"),
  10835. name: "Back",
  10836. image: {
  10837. source: "./media/characters/snow-gabumon/back.svg",
  10838. extra: 1115 / 962,
  10839. bottom: 0.041
  10840. }
  10841. },
  10842. frontUndresed: {
  10843. height: math.unit(4 + 10 / 12, "feet"),
  10844. weight: math.unit(480, "lb"),
  10845. name: "Front (Undressed)",
  10846. image: {
  10847. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10848. extra: 1061 / 960,
  10849. bottom: 0.045
  10850. }
  10851. },
  10852. },
  10853. [
  10854. {
  10855. name: "Micro",
  10856. height: math.unit(1, "inch")
  10857. },
  10858. {
  10859. name: "Normal",
  10860. height: math.unit(4 + 10 / 12, "feet"),
  10861. default: true
  10862. },
  10863. {
  10864. name: "Macro",
  10865. height: math.unit(200, "feet")
  10866. },
  10867. {
  10868. name: "Megamacro",
  10869. height: math.unit(120, "miles")
  10870. },
  10871. {
  10872. name: "Gigamacro",
  10873. height: math.unit(9800, "miles")
  10874. },
  10875. ]
  10876. ))
  10877. characterMakers.push(() => makeCharacter(
  10878. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10879. {
  10880. front: {
  10881. height: math.unit(1.7, "meters"),
  10882. weight: math.unit(140, "lb"),
  10883. name: "Front",
  10884. image: {
  10885. source: "./media/characters/moody/front.svg",
  10886. extra: 3226 / 3007,
  10887. bottom: 0.087
  10888. }
  10889. },
  10890. },
  10891. [
  10892. {
  10893. name: "Micro",
  10894. height: math.unit(1, "mm")
  10895. },
  10896. {
  10897. name: "Normal",
  10898. height: math.unit(1.7, "meters"),
  10899. default: true
  10900. },
  10901. {
  10902. name: "Macro",
  10903. height: math.unit(80, "meters")
  10904. },
  10905. {
  10906. name: "Macro+",
  10907. height: math.unit(500, "meters")
  10908. },
  10909. ]
  10910. ))
  10911. characterMakers.push(() => makeCharacter(
  10912. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10913. {
  10914. front: {
  10915. height: math.unit(6, "feet"),
  10916. weight: math.unit(150, "lb"),
  10917. name: "Front",
  10918. image: {
  10919. source: "./media/characters/zyas/front.svg",
  10920. extra: 1180 / 1120,
  10921. bottom: 0.045
  10922. }
  10923. },
  10924. },
  10925. [
  10926. {
  10927. name: "Normal",
  10928. height: math.unit(10, "feet"),
  10929. default: true
  10930. },
  10931. {
  10932. name: "Macro",
  10933. height: math.unit(500, "feet")
  10934. },
  10935. {
  10936. name: "Megamacro",
  10937. height: math.unit(5, "miles")
  10938. },
  10939. {
  10940. name: "Teramacro",
  10941. height: math.unit(150000, "miles")
  10942. },
  10943. ]
  10944. ))
  10945. characterMakers.push(() => makeCharacter(
  10946. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10947. {
  10948. front: {
  10949. height: math.unit(6, "feet"),
  10950. weight: math.unit(150, "lb"),
  10951. name: "Front",
  10952. image: {
  10953. source: "./media/characters/cuon/front.svg",
  10954. extra: 1390 / 1320,
  10955. bottom: 0.008
  10956. }
  10957. },
  10958. },
  10959. [
  10960. {
  10961. name: "Micro",
  10962. height: math.unit(3, "inches")
  10963. },
  10964. {
  10965. name: "Normal",
  10966. height: math.unit(18 + 9 / 12, "feet"),
  10967. default: true
  10968. },
  10969. {
  10970. name: "Macro",
  10971. height: math.unit(360, "feet")
  10972. },
  10973. {
  10974. name: "Megamacro",
  10975. height: math.unit(360, "miles")
  10976. },
  10977. ]
  10978. ))
  10979. characterMakers.push(() => makeCharacter(
  10980. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10981. {
  10982. front: {
  10983. height: math.unit(2.4, "meters"),
  10984. weight: math.unit(70, "kg"),
  10985. name: "Front",
  10986. image: {
  10987. source: "./media/characters/nyanuxk/front.svg",
  10988. extra: 1172 / 1084,
  10989. bottom: 0.065
  10990. }
  10991. },
  10992. side: {
  10993. height: math.unit(2.4, "meters"),
  10994. weight: math.unit(70, "kg"),
  10995. name: "Side",
  10996. image: {
  10997. source: "./media/characters/nyanuxk/side.svg",
  10998. extra: 1190 / 1132,
  10999. bottom: 0.007
  11000. }
  11001. },
  11002. back: {
  11003. height: math.unit(2.4, "meters"),
  11004. weight: math.unit(70, "kg"),
  11005. name: "Back",
  11006. image: {
  11007. source: "./media/characters/nyanuxk/back.svg",
  11008. extra: 1200 / 1141,
  11009. bottom: 0.015
  11010. }
  11011. },
  11012. foot: {
  11013. height: math.unit(0.52, "meters"),
  11014. name: "Foot",
  11015. image: {
  11016. source: "./media/characters/nyanuxk/foot.svg"
  11017. }
  11018. },
  11019. },
  11020. [
  11021. {
  11022. name: "Micro",
  11023. height: math.unit(2, "cm")
  11024. },
  11025. {
  11026. name: "Normal",
  11027. height: math.unit(2.4, "meters"),
  11028. default: true
  11029. },
  11030. {
  11031. name: "Smaller Macro",
  11032. height: math.unit(120, "meters")
  11033. },
  11034. {
  11035. name: "Bigger Macro",
  11036. height: math.unit(1.2, "km")
  11037. },
  11038. {
  11039. name: "Megamacro",
  11040. height: math.unit(15, "kilometers")
  11041. },
  11042. {
  11043. name: "Gigamacro",
  11044. height: math.unit(2000, "km")
  11045. },
  11046. {
  11047. name: "Teramacro",
  11048. height: math.unit(500000, "km")
  11049. },
  11050. ]
  11051. ))
  11052. characterMakers.push(() => makeCharacter(
  11053. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11054. {
  11055. side: {
  11056. height: math.unit(6, "feet"),
  11057. name: "Side",
  11058. image: {
  11059. source: "./media/characters/ailbhe/side.svg",
  11060. extra: 757 / 464,
  11061. bottom: 0.041
  11062. }
  11063. },
  11064. },
  11065. [
  11066. {
  11067. name: "Normal",
  11068. height: math.unit(1.07, "meters"),
  11069. default: true
  11070. },
  11071. ]
  11072. ))
  11073. characterMakers.push(() => makeCharacter(
  11074. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11075. {
  11076. front: {
  11077. height: math.unit(6, "feet"),
  11078. weight: math.unit(120, "kg"),
  11079. name: "Front",
  11080. image: {
  11081. source: "./media/characters/zevulfius/front.svg",
  11082. extra: 965 / 903
  11083. }
  11084. },
  11085. side: {
  11086. height: math.unit(6, "feet"),
  11087. weight: math.unit(120, "kg"),
  11088. name: "Side",
  11089. image: {
  11090. source: "./media/characters/zevulfius/side.svg",
  11091. extra: 939 / 900
  11092. }
  11093. },
  11094. back: {
  11095. height: math.unit(6, "feet"),
  11096. weight: math.unit(120, "kg"),
  11097. name: "Back",
  11098. image: {
  11099. source: "./media/characters/zevulfius/back.svg",
  11100. extra: 918 / 854,
  11101. bottom: 0.005
  11102. }
  11103. },
  11104. foot: {
  11105. height: math.unit(6 / 3.72, "feet"),
  11106. name: "Foot",
  11107. image: {
  11108. source: "./media/characters/zevulfius/foot.svg"
  11109. }
  11110. },
  11111. },
  11112. [
  11113. {
  11114. name: "Macro",
  11115. height: math.unit(750, "meters")
  11116. },
  11117. {
  11118. name: "Megamacro",
  11119. height: math.unit(20, "km"),
  11120. default: true
  11121. },
  11122. {
  11123. name: "Gigamacro",
  11124. height: math.unit(2000, "km")
  11125. },
  11126. {
  11127. name: "Teramacro",
  11128. height: math.unit(250000, "km")
  11129. },
  11130. ]
  11131. ))
  11132. characterMakers.push(() => makeCharacter(
  11133. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11134. {
  11135. front: {
  11136. height: math.unit(100, "feet"),
  11137. weight: math.unit(350, "kg"),
  11138. name: "Front",
  11139. image: {
  11140. source: "./media/characters/rikes/front.svg",
  11141. extra: 1565 / 1483,
  11142. bottom: 0.017
  11143. }
  11144. },
  11145. },
  11146. [
  11147. {
  11148. name: "Macro",
  11149. height: math.unit(100, "feet"),
  11150. default: true
  11151. },
  11152. ]
  11153. ))
  11154. characterMakers.push(() => makeCharacter(
  11155. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11156. {
  11157. front: {
  11158. height: math.unit(8, "feet"),
  11159. weight: math.unit(356, "lb"),
  11160. name: "Front",
  11161. image: {
  11162. source: "./media/characters/adam-silver-mane/front.svg",
  11163. extra: 1036/937,
  11164. bottom: 63/1099
  11165. }
  11166. },
  11167. side: {
  11168. height: math.unit(8, "feet"),
  11169. weight: math.unit(356, "lb"),
  11170. name: "Side",
  11171. image: {
  11172. source: "./media/characters/adam-silver-mane/side.svg",
  11173. extra: 997/901,
  11174. bottom: 59/1056
  11175. }
  11176. },
  11177. frontNsfw: {
  11178. height: math.unit(8, "feet"),
  11179. weight: math.unit(356, "lb"),
  11180. name: "Front (NSFW)",
  11181. image: {
  11182. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11183. extra: 1036/937,
  11184. bottom: 63/1099
  11185. }
  11186. },
  11187. sideNsfw: {
  11188. height: math.unit(8, "feet"),
  11189. weight: math.unit(356, "lb"),
  11190. name: "Side (NSFW)",
  11191. image: {
  11192. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11193. extra: 997/901,
  11194. bottom: 59/1056
  11195. }
  11196. },
  11197. dick: {
  11198. height: math.unit(2.1, "feet"),
  11199. name: "Dick",
  11200. image: {
  11201. source: "./media/characters/adam-silver-mane/dick.svg"
  11202. }
  11203. },
  11204. taur: {
  11205. height: math.unit(16, "feet"),
  11206. weight: math.unit(1500, "kg"),
  11207. name: "Taur",
  11208. image: {
  11209. source: "./media/characters/adam-silver-mane/taur.svg",
  11210. extra: 1713 / 1571,
  11211. bottom: 0.01
  11212. }
  11213. },
  11214. },
  11215. [
  11216. {
  11217. name: "Normal",
  11218. height: math.unit(8, "feet")
  11219. },
  11220. {
  11221. name: "Minimacro",
  11222. height: math.unit(80, "feet")
  11223. },
  11224. {
  11225. name: "MDA",
  11226. height: math.unit(80, "meters")
  11227. },
  11228. {
  11229. name: "Macro",
  11230. height: math.unit(800, "feet"),
  11231. default: true
  11232. },
  11233. {
  11234. name: "Megamacro",
  11235. height: math.unit(8000, "feet")
  11236. },
  11237. {
  11238. name: "Gigamacro",
  11239. height: math.unit(800, "miles")
  11240. },
  11241. {
  11242. name: "Teramacro",
  11243. height: math.unit(80000, "miles")
  11244. },
  11245. {
  11246. name: "Celestial",
  11247. height: math.unit(8e6, "miles")
  11248. },
  11249. {
  11250. name: "Star Dragon",
  11251. height: math.unit(800000, "parsecs")
  11252. },
  11253. {
  11254. name: "Godly",
  11255. height: math.unit(800, "teraparsecs")
  11256. },
  11257. ]
  11258. ))
  11259. characterMakers.push(() => makeCharacter(
  11260. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11261. {
  11262. front: {
  11263. height: math.unit(6, "feet"),
  11264. weight: math.unit(150, "lb"),
  11265. name: "Front",
  11266. image: {
  11267. source: "./media/characters/ky'owin/front.svg",
  11268. extra: 3888 / 3068,
  11269. bottom: 0.015
  11270. }
  11271. },
  11272. },
  11273. [
  11274. {
  11275. name: "Normal",
  11276. height: math.unit(6 + 8 / 12, "feet")
  11277. },
  11278. {
  11279. name: "Large",
  11280. height: math.unit(68, "feet")
  11281. },
  11282. {
  11283. name: "Macro",
  11284. height: math.unit(132, "feet")
  11285. },
  11286. {
  11287. name: "Macro+",
  11288. height: math.unit(340, "feet")
  11289. },
  11290. {
  11291. name: "Macro++",
  11292. height: math.unit(680, "feet"),
  11293. default: true
  11294. },
  11295. {
  11296. name: "Megamacro",
  11297. height: math.unit(1, "mile")
  11298. },
  11299. {
  11300. name: "Megamacro+",
  11301. height: math.unit(10, "miles")
  11302. },
  11303. ]
  11304. ))
  11305. characterMakers.push(() => makeCharacter(
  11306. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11307. {
  11308. front: {
  11309. height: math.unit(4, "feet"),
  11310. weight: math.unit(50, "lb"),
  11311. name: "Front",
  11312. image: {
  11313. source: "./media/characters/mal/front.svg",
  11314. extra: 785 / 724,
  11315. bottom: 0.07
  11316. }
  11317. },
  11318. },
  11319. [
  11320. {
  11321. name: "Micro",
  11322. height: math.unit(4, "inches")
  11323. },
  11324. {
  11325. name: "Normal",
  11326. height: math.unit(4, "feet"),
  11327. default: true
  11328. },
  11329. {
  11330. name: "Macro",
  11331. height: math.unit(200, "feet")
  11332. },
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11337. {
  11338. front: {
  11339. height: math.unit(6, "feet"),
  11340. weight: math.unit(150, "lb"),
  11341. name: "Front",
  11342. image: {
  11343. source: "./media/characters/jordan-deware/front.svg",
  11344. extra: 1191 / 1012
  11345. }
  11346. },
  11347. },
  11348. [
  11349. {
  11350. name: "Nano",
  11351. height: math.unit(0.01, "mm")
  11352. },
  11353. {
  11354. name: "Minimicro",
  11355. height: math.unit(1, "mm")
  11356. },
  11357. {
  11358. name: "Micro",
  11359. height: math.unit(0.5, "inches")
  11360. },
  11361. {
  11362. name: "Normal",
  11363. height: math.unit(4, "feet"),
  11364. default: true
  11365. },
  11366. {
  11367. name: "Minimacro",
  11368. height: math.unit(40, "meters")
  11369. },
  11370. {
  11371. name: "Small Macro",
  11372. height: math.unit(400, "meters")
  11373. },
  11374. {
  11375. name: "Macro",
  11376. height: math.unit(4, "miles")
  11377. },
  11378. {
  11379. name: "Megamacro",
  11380. height: math.unit(40, "miles")
  11381. },
  11382. {
  11383. name: "Megamacro+",
  11384. height: math.unit(400, "miles")
  11385. },
  11386. {
  11387. name: "Gigamacro",
  11388. height: math.unit(400000, "miles")
  11389. },
  11390. ]
  11391. ))
  11392. characterMakers.push(() => makeCharacter(
  11393. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11394. {
  11395. side: {
  11396. height: math.unit(6, "feet"),
  11397. weight: math.unit(150, "lb"),
  11398. name: "Side",
  11399. image: {
  11400. source: "./media/characters/kimiko/side.svg",
  11401. extra: 600 / 358
  11402. }
  11403. },
  11404. },
  11405. [
  11406. {
  11407. name: "Normal",
  11408. height: math.unit(15, "feet"),
  11409. default: true
  11410. },
  11411. {
  11412. name: "Macro",
  11413. height: math.unit(220, "feet")
  11414. },
  11415. {
  11416. name: "Macro+",
  11417. height: math.unit(1450, "feet")
  11418. },
  11419. {
  11420. name: "Megamacro",
  11421. height: math.unit(11500, "feet")
  11422. },
  11423. {
  11424. name: "Gigamacro",
  11425. height: math.unit(9500, "miles")
  11426. },
  11427. {
  11428. name: "Teramacro",
  11429. height: math.unit(2208005005, "miles")
  11430. },
  11431. {
  11432. name: "Examacro",
  11433. height: math.unit(2750, "parsecs")
  11434. },
  11435. {
  11436. name: "Zettamacro",
  11437. height: math.unit(101500, "parsecs")
  11438. },
  11439. ]
  11440. ))
  11441. characterMakers.push(() => makeCharacter(
  11442. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11443. {
  11444. front: {
  11445. height: math.unit(6, "feet"),
  11446. weight: math.unit(70, "kg"),
  11447. name: "Front",
  11448. image: {
  11449. source: "./media/characters/andrew-sleepy/front.svg"
  11450. }
  11451. },
  11452. side: {
  11453. height: math.unit(6, "feet"),
  11454. weight: math.unit(70, "kg"),
  11455. name: "Side",
  11456. image: {
  11457. source: "./media/characters/andrew-sleepy/side.svg"
  11458. }
  11459. },
  11460. },
  11461. [
  11462. {
  11463. name: "Micro",
  11464. height: math.unit(1, "mm"),
  11465. default: true
  11466. },
  11467. ]
  11468. ))
  11469. characterMakers.push(() => makeCharacter(
  11470. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11471. {
  11472. front: {
  11473. height: math.unit(6, "feet"),
  11474. weight: math.unit(150, "lb"),
  11475. name: "Front",
  11476. image: {
  11477. source: "./media/characters/judio/front.svg",
  11478. extra: 1258 / 1110
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(5 + 6 / 12, "feet")
  11486. },
  11487. {
  11488. name: "Macro",
  11489. height: math.unit(1000, "feet"),
  11490. default: true
  11491. },
  11492. {
  11493. name: "Megamacro",
  11494. height: math.unit(10, "miles")
  11495. },
  11496. ]
  11497. ))
  11498. characterMakers.push(() => makeCharacter(
  11499. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11500. {
  11501. frontDressed: {
  11502. height: math.unit(6, "feet"),
  11503. weight: math.unit(68, "kg"),
  11504. name: "Front (Dressed)",
  11505. image: {
  11506. source: "./media/characters/nomaxice/front-dressed.svg",
  11507. extra: 1137/824,
  11508. bottom: 74/1211
  11509. }
  11510. },
  11511. frontShorts: {
  11512. height: math.unit(6, "feet"),
  11513. weight: math.unit(68, "kg"),
  11514. name: "Front (Shorts)",
  11515. image: {
  11516. source: "./media/characters/nomaxice/front-shorts.svg",
  11517. extra: 1137/824,
  11518. bottom: 74/1211
  11519. }
  11520. },
  11521. back: {
  11522. height: math.unit(6, "feet"),
  11523. weight: math.unit(68, "kg"),
  11524. name: "Back",
  11525. image: {
  11526. source: "./media/characters/nomaxice/back.svg",
  11527. extra: 822/786,
  11528. bottom: 39/861
  11529. }
  11530. },
  11531. hand: {
  11532. height: math.unit(0.565, "feet"),
  11533. name: "Hand",
  11534. image: {
  11535. source: "./media/characters/nomaxice/hand.svg"
  11536. }
  11537. },
  11538. foot: {
  11539. height: math.unit(1, "feet"),
  11540. name: "Foot",
  11541. image: {
  11542. source: "./media/characters/nomaxice/foot.svg"
  11543. }
  11544. },
  11545. },
  11546. [
  11547. {
  11548. name: "Micro",
  11549. height: math.unit(8, "cm")
  11550. },
  11551. {
  11552. name: "Norm",
  11553. height: math.unit(1.82, "m")
  11554. },
  11555. {
  11556. name: "Norm+",
  11557. height: math.unit(8.8, "feet"),
  11558. default: true
  11559. },
  11560. {
  11561. name: "Big",
  11562. height: math.unit(8, "meters")
  11563. },
  11564. {
  11565. name: "Macro",
  11566. height: math.unit(18, "meters")
  11567. },
  11568. {
  11569. name: "Macro+",
  11570. height: math.unit(88, "meters")
  11571. },
  11572. ]
  11573. ))
  11574. characterMakers.push(() => makeCharacter(
  11575. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11576. {
  11577. front: {
  11578. height: math.unit(12, "feet"),
  11579. weight: math.unit(1.5, "tons"),
  11580. name: "Front",
  11581. image: {
  11582. source: "./media/characters/dydros/front.svg",
  11583. extra: 863 / 800,
  11584. bottom: 0.015
  11585. }
  11586. },
  11587. back: {
  11588. height: math.unit(12, "feet"),
  11589. weight: math.unit(1.5, "tons"),
  11590. name: "Back",
  11591. image: {
  11592. source: "./media/characters/dydros/back.svg",
  11593. extra: 900 / 843,
  11594. bottom: 0.005
  11595. }
  11596. },
  11597. },
  11598. [
  11599. {
  11600. name: "Normal",
  11601. height: math.unit(12, "feet"),
  11602. default: true
  11603. },
  11604. ]
  11605. ))
  11606. characterMakers.push(() => makeCharacter(
  11607. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11608. {
  11609. front: {
  11610. height: math.unit(6, "feet"),
  11611. weight: math.unit(100, "kg"),
  11612. name: "Front",
  11613. image: {
  11614. source: "./media/characters/riggi/front.svg",
  11615. extra: 5787 / 5303
  11616. }
  11617. },
  11618. hyper: {
  11619. height: math.unit(6 * 5 / 3, "feet"),
  11620. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11621. name: "Hyper",
  11622. image: {
  11623. source: "./media/characters/riggi/hyper.svg",
  11624. extra: 3595 / 3485
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Small Macro",
  11631. height: math.unit(50, "feet")
  11632. },
  11633. {
  11634. name: "Default",
  11635. height: math.unit(200, "feet"),
  11636. default: true
  11637. },
  11638. {
  11639. name: "Loom",
  11640. height: math.unit(10000, "feet")
  11641. },
  11642. {
  11643. name: "Cruising Altitude",
  11644. height: math.unit(30000, "feet")
  11645. },
  11646. {
  11647. name: "Megamacro",
  11648. height: math.unit(100, "miles")
  11649. },
  11650. {
  11651. name: "Continent Sized",
  11652. height: math.unit(2800, "miles")
  11653. },
  11654. {
  11655. name: "Earth Sized",
  11656. height: math.unit(8000, "miles")
  11657. },
  11658. ]
  11659. ))
  11660. characterMakers.push(() => makeCharacter(
  11661. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11662. {
  11663. front: {
  11664. height: math.unit(6, "feet"),
  11665. weight: math.unit(250, "lb"),
  11666. name: "Front",
  11667. image: {
  11668. source: "./media/characters/alexi/front.svg",
  11669. extra: 3483 / 3291,
  11670. bottom: 0.04
  11671. }
  11672. },
  11673. back: {
  11674. height: math.unit(6, "feet"),
  11675. weight: math.unit(250, "lb"),
  11676. name: "Back",
  11677. image: {
  11678. source: "./media/characters/alexi/back.svg",
  11679. extra: 3533 / 3356,
  11680. bottom: 0.021
  11681. }
  11682. },
  11683. frontTransforming: {
  11684. height: math.unit(8.58, "feet"),
  11685. weight: math.unit(1300, "lb"),
  11686. name: "Transforming",
  11687. image: {
  11688. source: "./media/characters/alexi/front-transforming.svg",
  11689. extra: 437 / 409,
  11690. bottom: 19 / 458.66
  11691. }
  11692. },
  11693. frontTransformed: {
  11694. height: math.unit(12.5, "feet"),
  11695. weight: math.unit(4000, "lb"),
  11696. name: "Transformed",
  11697. image: {
  11698. source: "./media/characters/alexi/front-transformed.svg",
  11699. extra: 639 / 614,
  11700. bottom: 30.55 / 671
  11701. }
  11702. },
  11703. },
  11704. [
  11705. {
  11706. name: "Normal",
  11707. height: math.unit(14, "feet"),
  11708. default: true
  11709. },
  11710. {
  11711. name: "Minimacro",
  11712. height: math.unit(30, "meters")
  11713. },
  11714. {
  11715. name: "Macro",
  11716. height: math.unit(500, "meters")
  11717. },
  11718. {
  11719. name: "Megamacro",
  11720. height: math.unit(9000, "km")
  11721. },
  11722. {
  11723. name: "Teramacro",
  11724. height: math.unit(384000, "km")
  11725. },
  11726. ]
  11727. ))
  11728. characterMakers.push(() => makeCharacter(
  11729. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11730. {
  11731. front: {
  11732. height: math.unit(6, "feet"),
  11733. weight: math.unit(150, "lb"),
  11734. name: "Front",
  11735. image: {
  11736. source: "./media/characters/kayroo/front.svg",
  11737. extra: 1153 / 1038,
  11738. bottom: 0.06
  11739. }
  11740. },
  11741. foot: {
  11742. height: math.unit(6, "feet"),
  11743. weight: math.unit(150, "lb"),
  11744. name: "Foot",
  11745. image: {
  11746. source: "./media/characters/kayroo/foot.svg"
  11747. }
  11748. },
  11749. },
  11750. [
  11751. {
  11752. name: "Normal",
  11753. height: math.unit(8, "feet"),
  11754. default: true
  11755. },
  11756. {
  11757. name: "Minimacro",
  11758. height: math.unit(250, "feet")
  11759. },
  11760. {
  11761. name: "Macro",
  11762. height: math.unit(2800, "feet")
  11763. },
  11764. {
  11765. name: "Megamacro",
  11766. height: math.unit(5200, "feet")
  11767. },
  11768. {
  11769. name: "Gigamacro",
  11770. height: math.unit(27000, "feet")
  11771. },
  11772. {
  11773. name: "Omega",
  11774. height: math.unit(45000, "feet")
  11775. },
  11776. ]
  11777. ))
  11778. characterMakers.push(() => makeCharacter(
  11779. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11780. {
  11781. front: {
  11782. height: math.unit(18, "feet"),
  11783. weight: math.unit(5800, "lb"),
  11784. name: "Front",
  11785. image: {
  11786. source: "./media/characters/rhys/front.svg",
  11787. extra: 3386 / 3090,
  11788. bottom: 0.07
  11789. }
  11790. },
  11791. },
  11792. [
  11793. {
  11794. name: "Normal",
  11795. height: math.unit(18, "feet"),
  11796. default: true
  11797. },
  11798. {
  11799. name: "Working Size",
  11800. height: math.unit(200, "feet")
  11801. },
  11802. {
  11803. name: "Demolition Size",
  11804. height: math.unit(2000, "feet")
  11805. },
  11806. {
  11807. name: "Maximum Licensed Size",
  11808. height: math.unit(5, "miles")
  11809. },
  11810. {
  11811. name: "Maximum Observed Size",
  11812. height: math.unit(10, "yottameters")
  11813. },
  11814. ]
  11815. ))
  11816. characterMakers.push(() => makeCharacter(
  11817. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11818. {
  11819. front: {
  11820. height: math.unit(6, "feet"),
  11821. weight: math.unit(250, "lb"),
  11822. name: "Front",
  11823. image: {
  11824. source: "./media/characters/toto/front.svg",
  11825. extra: 527 / 479,
  11826. bottom: 0.05
  11827. }
  11828. },
  11829. },
  11830. [
  11831. {
  11832. name: "Micro",
  11833. height: math.unit(3, "feet")
  11834. },
  11835. {
  11836. name: "Normal",
  11837. height: math.unit(10, "feet")
  11838. },
  11839. {
  11840. name: "Macro",
  11841. height: math.unit(150, "feet"),
  11842. default: true
  11843. },
  11844. {
  11845. name: "Megamacro",
  11846. height: math.unit(1200, "feet")
  11847. },
  11848. ]
  11849. ))
  11850. characterMakers.push(() => makeCharacter(
  11851. { name: "King", species: ["lion"], tags: ["anthro"] },
  11852. {
  11853. back: {
  11854. height: math.unit(6, "feet"),
  11855. weight: math.unit(150, "lb"),
  11856. name: "Back",
  11857. image: {
  11858. source: "./media/characters/king/back.svg"
  11859. }
  11860. },
  11861. },
  11862. [
  11863. {
  11864. name: "Micro",
  11865. height: math.unit(2, "inches")
  11866. },
  11867. {
  11868. name: "Normal",
  11869. height: math.unit(8, "feet")
  11870. },
  11871. {
  11872. name: "Macro",
  11873. height: math.unit(200, "feet"),
  11874. default: true
  11875. },
  11876. {
  11877. name: "Megamacro",
  11878. height: math.unit(50, "miles")
  11879. },
  11880. ]
  11881. ))
  11882. characterMakers.push(() => makeCharacter(
  11883. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11884. {
  11885. front: {
  11886. height: math.unit(11, "feet"),
  11887. weight: math.unit(1400, "lb"),
  11888. name: "Front",
  11889. image: {
  11890. source: "./media/characters/cordite/front.svg",
  11891. extra: 1919/1827,
  11892. bottom: 40/1959
  11893. }
  11894. },
  11895. side: {
  11896. height: math.unit(11, "feet"),
  11897. weight: math.unit(1400, "lb"),
  11898. name: "Side",
  11899. image: {
  11900. source: "./media/characters/cordite/side.svg",
  11901. extra: 1908/1793,
  11902. bottom: 38/1946
  11903. }
  11904. },
  11905. back: {
  11906. height: math.unit(11, "feet"),
  11907. weight: math.unit(1400, "lb"),
  11908. name: "Back",
  11909. image: {
  11910. source: "./media/characters/cordite/back.svg",
  11911. extra: 1938/1837,
  11912. bottom: 10/1948
  11913. }
  11914. },
  11915. feral: {
  11916. height: math.unit(2, "feet"),
  11917. weight: math.unit(90, "lb"),
  11918. name: "Feral",
  11919. image: {
  11920. source: "./media/characters/cordite/feral.svg",
  11921. extra: 1260 / 755,
  11922. bottom: 0.05
  11923. }
  11924. },
  11925. },
  11926. [
  11927. {
  11928. name: "Normal",
  11929. height: math.unit(11, "feet"),
  11930. default: true
  11931. },
  11932. ]
  11933. ))
  11934. characterMakers.push(() => makeCharacter(
  11935. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11936. {
  11937. front: {
  11938. height: math.unit(6, "feet"),
  11939. weight: math.unit(150, "lb"),
  11940. name: "Front",
  11941. image: {
  11942. source: "./media/characters/pianostrong/front.svg",
  11943. extra: 6577 / 6254,
  11944. bottom: 0.02
  11945. }
  11946. },
  11947. side: {
  11948. height: math.unit(6, "feet"),
  11949. weight: math.unit(150, "lb"),
  11950. name: "Side",
  11951. image: {
  11952. source: "./media/characters/pianostrong/side.svg",
  11953. extra: 6106 / 5730
  11954. }
  11955. },
  11956. back: {
  11957. height: math.unit(6, "feet"),
  11958. weight: math.unit(150, "lb"),
  11959. name: "Back",
  11960. image: {
  11961. source: "./media/characters/pianostrong/back.svg",
  11962. extra: 6085 / 5733,
  11963. bottom: 0.01
  11964. }
  11965. },
  11966. },
  11967. [
  11968. {
  11969. name: "Macro",
  11970. height: math.unit(100, "feet")
  11971. },
  11972. {
  11973. name: "Macro+",
  11974. height: math.unit(300, "feet"),
  11975. default: true
  11976. },
  11977. {
  11978. name: "Macro++",
  11979. height: math.unit(1000, "feet")
  11980. },
  11981. ]
  11982. ))
  11983. characterMakers.push(() => makeCharacter(
  11984. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11985. {
  11986. front: {
  11987. height: math.unit(6, "feet"),
  11988. weight: math.unit(150, "lb"),
  11989. name: "Front",
  11990. image: {
  11991. source: "./media/characters/kona/front.svg",
  11992. extra: 2960 / 2629,
  11993. bottom: 0.005
  11994. }
  11995. },
  11996. },
  11997. [
  11998. {
  11999. name: "Normal",
  12000. height: math.unit(11 + 8 / 12, "feet")
  12001. },
  12002. {
  12003. name: "Macro",
  12004. height: math.unit(850, "feet"),
  12005. default: true
  12006. },
  12007. {
  12008. name: "Macro+",
  12009. height: math.unit(1.5, "km"),
  12010. default: true
  12011. },
  12012. {
  12013. name: "Megamacro",
  12014. height: math.unit(80, "miles")
  12015. },
  12016. {
  12017. name: "Gigamacro",
  12018. height: math.unit(3500, "miles")
  12019. },
  12020. ]
  12021. ))
  12022. characterMakers.push(() => makeCharacter(
  12023. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12024. {
  12025. side: {
  12026. height: math.unit(1.9, "meters"),
  12027. weight: math.unit(326, "kg"),
  12028. name: "Side",
  12029. image: {
  12030. source: "./media/characters/levi/side.svg",
  12031. extra: 1704 / 1334,
  12032. bottom: 0.02
  12033. }
  12034. },
  12035. },
  12036. [
  12037. {
  12038. name: "Normal",
  12039. height: math.unit(1.9, "meters"),
  12040. default: true
  12041. },
  12042. {
  12043. name: "Macro",
  12044. height: math.unit(20, "meters")
  12045. },
  12046. {
  12047. name: "Macro+",
  12048. height: math.unit(200, "meters")
  12049. },
  12050. {
  12051. name: "Megamacro",
  12052. height: math.unit(2, "km")
  12053. },
  12054. {
  12055. name: "Megamacro+",
  12056. height: math.unit(20, "km")
  12057. },
  12058. {
  12059. name: "Gigamacro",
  12060. height: math.unit(2500, "km")
  12061. },
  12062. {
  12063. name: "Gigamacro+",
  12064. height: math.unit(120000, "km")
  12065. },
  12066. {
  12067. name: "Teramacro",
  12068. height: math.unit(7.77e6, "km")
  12069. },
  12070. ]
  12071. ))
  12072. characterMakers.push(() => makeCharacter(
  12073. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12074. {
  12075. front: {
  12076. height: math.unit(6 + 4/12, "feet"),
  12077. weight: math.unit(190, "lb"),
  12078. name: "Front",
  12079. image: {
  12080. source: "./media/characters/bmc/front.svg",
  12081. extra: 1626/1472,
  12082. bottom: 79/1705
  12083. }
  12084. },
  12085. back: {
  12086. height: math.unit(6 + 4/12, "feet"),
  12087. weight: math.unit(190, "lb"),
  12088. name: "Back",
  12089. image: {
  12090. source: "./media/characters/bmc/back.svg",
  12091. extra: 1640/1479,
  12092. bottom: 45/1685
  12093. }
  12094. },
  12095. frontArmor: {
  12096. height: math.unit(6 + 4/12, "feet"),
  12097. weight: math.unit(190, "lb"),
  12098. name: "Front-armor",
  12099. image: {
  12100. source: "./media/characters/bmc/front-armor.svg",
  12101. extra: 1538/1468,
  12102. bottom: 79/1617
  12103. }
  12104. },
  12105. },
  12106. [
  12107. {
  12108. name: "Human-sized",
  12109. height: math.unit(6 + 4 / 12, "feet")
  12110. },
  12111. {
  12112. name: "Interactive Size",
  12113. height: math.unit(25, "feet")
  12114. },
  12115. {
  12116. name: "Small",
  12117. height: math.unit(250, "feet")
  12118. },
  12119. {
  12120. name: "Normal",
  12121. height: math.unit(1250, "feet"),
  12122. default: true
  12123. },
  12124. {
  12125. name: "Good Day",
  12126. height: math.unit(88, "miles")
  12127. },
  12128. {
  12129. name: "Largest Measured Size",
  12130. height: math.unit(105.960, "galaxies")
  12131. },
  12132. ]
  12133. ))
  12134. characterMakers.push(() => makeCharacter(
  12135. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12136. {
  12137. front: {
  12138. height: math.unit(20, "feet"),
  12139. weight: math.unit(2016, "kg"),
  12140. name: "Front",
  12141. image: {
  12142. source: "./media/characters/sven-the-kaiju/front.svg",
  12143. extra: 1277/1250,
  12144. bottom: 35/1312
  12145. }
  12146. },
  12147. mouth: {
  12148. height: math.unit(1.85, "feet"),
  12149. name: "Mouth",
  12150. image: {
  12151. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12152. }
  12153. },
  12154. },
  12155. [
  12156. {
  12157. name: "Fairy",
  12158. height: math.unit(6, "inches")
  12159. },
  12160. {
  12161. name: "Normal",
  12162. height: math.unit(20, "feet"),
  12163. default: true
  12164. },
  12165. {
  12166. name: "Rampage",
  12167. height: math.unit(200, "feet")
  12168. },
  12169. {
  12170. name: "Archfey Forest Guardian",
  12171. height: math.unit(1, "mile")
  12172. },
  12173. ]
  12174. ))
  12175. characterMakers.push(() => makeCharacter(
  12176. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12177. {
  12178. front: {
  12179. height: math.unit(4, "meters"),
  12180. weight: math.unit(2, "tons"),
  12181. name: "Front",
  12182. image: {
  12183. source: "./media/characters/marik/front.svg",
  12184. extra: 1057 / 1003,
  12185. bottom: 0.08
  12186. }
  12187. },
  12188. },
  12189. [
  12190. {
  12191. name: "Normal",
  12192. height: math.unit(4, "meters"),
  12193. default: true
  12194. },
  12195. {
  12196. name: "Macro",
  12197. height: math.unit(20, "meters")
  12198. },
  12199. {
  12200. name: "Megamacro",
  12201. height: math.unit(50, "km")
  12202. },
  12203. {
  12204. name: "Gigamacro",
  12205. height: math.unit(100, "km")
  12206. },
  12207. {
  12208. name: "Alpha Macro",
  12209. height: math.unit(7.88e7, "yottameters")
  12210. },
  12211. ]
  12212. ))
  12213. characterMakers.push(() => makeCharacter(
  12214. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12215. {
  12216. front: {
  12217. height: math.unit(6, "feet"),
  12218. weight: math.unit(110, "lb"),
  12219. name: "Front",
  12220. image: {
  12221. source: "./media/characters/mel/front.svg",
  12222. extra: 736 / 617,
  12223. bottom: 0.017
  12224. }
  12225. },
  12226. },
  12227. [
  12228. {
  12229. name: "Pico",
  12230. height: math.unit(3, "pm")
  12231. },
  12232. {
  12233. name: "Nano",
  12234. height: math.unit(3, "nm")
  12235. },
  12236. {
  12237. name: "Micro",
  12238. height: math.unit(0.3, "mm"),
  12239. default: true
  12240. },
  12241. {
  12242. name: "Micro+",
  12243. height: math.unit(3, "mm")
  12244. },
  12245. {
  12246. name: "Normal",
  12247. height: math.unit(5 + 10.5 / 12, "feet")
  12248. },
  12249. ]
  12250. ))
  12251. characterMakers.push(() => makeCharacter(
  12252. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12253. {
  12254. kaiju: {
  12255. height: math.unit(1.75, "meters"),
  12256. weight: math.unit(55, "kg"),
  12257. name: "Kaiju",
  12258. image: {
  12259. source: "./media/characters/lykonous/kaiju.svg",
  12260. extra: 1055 / 946,
  12261. bottom: 0.135
  12262. }
  12263. },
  12264. },
  12265. [
  12266. {
  12267. name: "Normal",
  12268. height: math.unit(2.5, "meters"),
  12269. default: true
  12270. },
  12271. {
  12272. name: "Kaiju Dragon",
  12273. height: math.unit(60, "meters")
  12274. },
  12275. {
  12276. name: "Mega Kaiju",
  12277. height: math.unit(120, "km")
  12278. },
  12279. {
  12280. name: "Giga Kaiju",
  12281. height: math.unit(200, "megameters")
  12282. },
  12283. {
  12284. name: "Terra Kaiju",
  12285. height: math.unit(400, "gigameters")
  12286. },
  12287. {
  12288. name: "Kaiju Dragon God",
  12289. height: math.unit(13000, "exaparsecs")
  12290. },
  12291. ]
  12292. ))
  12293. characterMakers.push(() => makeCharacter(
  12294. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12295. {
  12296. front: {
  12297. height: math.unit(6, "feet"),
  12298. weight: math.unit(150, "lb"),
  12299. name: "Front",
  12300. image: {
  12301. source: "./media/characters/blü/front.svg",
  12302. extra: 1883 / 1564,
  12303. bottom: 0.031
  12304. }
  12305. },
  12306. },
  12307. [
  12308. {
  12309. name: "Normal",
  12310. height: math.unit(13, "feet"),
  12311. default: true
  12312. },
  12313. {
  12314. name: "Big Boi",
  12315. height: math.unit(150, "meters")
  12316. },
  12317. {
  12318. name: "Mini Stomper",
  12319. height: math.unit(300, "meters")
  12320. },
  12321. {
  12322. name: "Macro",
  12323. height: math.unit(1000, "meters")
  12324. },
  12325. {
  12326. name: "Megamacro",
  12327. height: math.unit(11000, "meters")
  12328. },
  12329. {
  12330. name: "Gigamacro",
  12331. height: math.unit(11000, "km")
  12332. },
  12333. {
  12334. name: "Teramacro",
  12335. height: math.unit(420000, "km")
  12336. },
  12337. {
  12338. name: "Examacro",
  12339. height: math.unit(120, "parsecs")
  12340. },
  12341. {
  12342. name: "God Tho",
  12343. height: math.unit(98000000000, "parsecs")
  12344. },
  12345. ]
  12346. ))
  12347. characterMakers.push(() => makeCharacter(
  12348. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12349. {
  12350. taurFront: {
  12351. height: math.unit(6, "feet"),
  12352. weight: math.unit(200, "lb"),
  12353. name: "Taur (Front)",
  12354. image: {
  12355. source: "./media/characters/scales/taur-front.svg",
  12356. extra: 1,
  12357. bottom: 0.05
  12358. }
  12359. },
  12360. taurBack: {
  12361. height: math.unit(6, "feet"),
  12362. weight: math.unit(200, "lb"),
  12363. name: "Taur (Back)",
  12364. image: {
  12365. source: "./media/characters/scales/taur-back.svg",
  12366. extra: 1,
  12367. bottom: 0.08
  12368. }
  12369. },
  12370. anthro: {
  12371. height: math.unit(6 * 7 / 12, "feet"),
  12372. weight: math.unit(100, "lb"),
  12373. name: "Anthro",
  12374. image: {
  12375. source: "./media/characters/scales/anthro.svg",
  12376. extra: 1,
  12377. bottom: 0.06
  12378. }
  12379. },
  12380. },
  12381. [
  12382. {
  12383. name: "Normal",
  12384. height: math.unit(12, "feet"),
  12385. default: true
  12386. },
  12387. ]
  12388. ))
  12389. characterMakers.push(() => makeCharacter(
  12390. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12391. {
  12392. front: {
  12393. height: math.unit(6, "feet"),
  12394. weight: math.unit(150, "lb"),
  12395. name: "Front",
  12396. image: {
  12397. source: "./media/characters/koragos/front.svg",
  12398. extra: 841 / 794,
  12399. bottom: 0.035
  12400. }
  12401. },
  12402. back: {
  12403. height: math.unit(6, "feet"),
  12404. weight: math.unit(150, "lb"),
  12405. name: "Back",
  12406. image: {
  12407. source: "./media/characters/koragos/back.svg",
  12408. extra: 841 / 810,
  12409. bottom: 0.022
  12410. }
  12411. },
  12412. },
  12413. [
  12414. {
  12415. name: "Normal",
  12416. height: math.unit(6 + 11 / 12, "feet"),
  12417. default: true
  12418. },
  12419. {
  12420. name: "Macro",
  12421. height: math.unit(490, "feet")
  12422. },
  12423. {
  12424. name: "Megamacro",
  12425. height: math.unit(10, "miles")
  12426. },
  12427. {
  12428. name: "Gigamacro",
  12429. height: math.unit(50, "miles")
  12430. },
  12431. ]
  12432. ))
  12433. characterMakers.push(() => makeCharacter(
  12434. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12435. {
  12436. front: {
  12437. height: math.unit(6, "feet"),
  12438. weight: math.unit(250, "lb"),
  12439. name: "Front",
  12440. image: {
  12441. source: "./media/characters/xylrem/front.svg",
  12442. extra: 3323 / 3050,
  12443. bottom: 0.065
  12444. }
  12445. },
  12446. },
  12447. [
  12448. {
  12449. name: "Micro",
  12450. height: math.unit(4, "feet")
  12451. },
  12452. {
  12453. name: "Normal",
  12454. height: math.unit(16, "feet"),
  12455. default: true
  12456. },
  12457. {
  12458. name: "Macro",
  12459. height: math.unit(2720, "feet")
  12460. },
  12461. {
  12462. name: "Megamacro",
  12463. height: math.unit(25000, "miles")
  12464. },
  12465. ]
  12466. ))
  12467. characterMakers.push(() => makeCharacter(
  12468. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12469. {
  12470. front: {
  12471. height: math.unit(8, "feet"),
  12472. weight: math.unit(250, "kg"),
  12473. name: "Front",
  12474. image: {
  12475. source: "./media/characters/ikideru/front.svg",
  12476. extra: 930 / 870,
  12477. bottom: 0.087
  12478. }
  12479. },
  12480. back: {
  12481. height: math.unit(8, "feet"),
  12482. weight: math.unit(250, "kg"),
  12483. name: "Back",
  12484. image: {
  12485. source: "./media/characters/ikideru/back.svg",
  12486. extra: 919 / 852,
  12487. bottom: 0.055
  12488. }
  12489. },
  12490. },
  12491. [
  12492. {
  12493. name: "Rare",
  12494. height: math.unit(8, "feet"),
  12495. default: true
  12496. },
  12497. {
  12498. name: "Playful Loom",
  12499. height: math.unit(80, "feet")
  12500. },
  12501. {
  12502. name: "City Leaner",
  12503. height: math.unit(230, "feet")
  12504. },
  12505. {
  12506. name: "Megamacro",
  12507. height: math.unit(2500, "feet")
  12508. },
  12509. {
  12510. name: "Gigamacro",
  12511. height: math.unit(26400, "feet")
  12512. },
  12513. {
  12514. name: "Tectonic Shifter",
  12515. height: math.unit(1.7, "megameters")
  12516. },
  12517. {
  12518. name: "Planet Carer",
  12519. height: math.unit(21, "megameters")
  12520. },
  12521. {
  12522. name: "God",
  12523. height: math.unit(11157.22, "parsecs")
  12524. },
  12525. ]
  12526. ))
  12527. characterMakers.push(() => makeCharacter(
  12528. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12529. {
  12530. front: {
  12531. height: math.unit(6, "feet"),
  12532. weight: math.unit(120, "lb"),
  12533. name: "Front",
  12534. image: {
  12535. source: "./media/characters/neo/front.svg"
  12536. }
  12537. },
  12538. },
  12539. [
  12540. {
  12541. name: "Micro",
  12542. height: math.unit(2, "inches"),
  12543. default: true
  12544. },
  12545. {
  12546. name: "Human Size",
  12547. height: math.unit(5 + 8 / 12, "feet")
  12548. },
  12549. ]
  12550. ))
  12551. characterMakers.push(() => makeCharacter(
  12552. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12553. {
  12554. front: {
  12555. height: math.unit(13 + 10 / 12, "feet"),
  12556. weight: math.unit(5320, "lb"),
  12557. name: "Front",
  12558. image: {
  12559. source: "./media/characters/chauncey-chantz/front.svg",
  12560. extra: 1587 / 1435,
  12561. bottom: 0.02
  12562. }
  12563. },
  12564. },
  12565. [
  12566. {
  12567. name: "Normal",
  12568. height: math.unit(13 + 10 / 12, "feet"),
  12569. default: true
  12570. },
  12571. {
  12572. name: "Macro",
  12573. height: math.unit(45, "feet")
  12574. },
  12575. {
  12576. name: "Megamacro",
  12577. height: math.unit(250, "miles")
  12578. },
  12579. {
  12580. name: "Planetary",
  12581. height: math.unit(10000, "miles")
  12582. },
  12583. {
  12584. name: "Galactic",
  12585. height: math.unit(40000, "parsecs")
  12586. },
  12587. {
  12588. name: "Universal",
  12589. height: math.unit(1, "yottameter")
  12590. },
  12591. ]
  12592. ))
  12593. characterMakers.push(() => makeCharacter(
  12594. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12595. {
  12596. front: {
  12597. height: math.unit(6, "feet"),
  12598. weight: math.unit(150, "lb"),
  12599. name: "Front",
  12600. image: {
  12601. source: "./media/characters/epifox/front.svg",
  12602. extra: 1,
  12603. bottom: 0.075
  12604. }
  12605. },
  12606. },
  12607. [
  12608. {
  12609. name: "Micro",
  12610. height: math.unit(6, "inches")
  12611. },
  12612. {
  12613. name: "Normal",
  12614. height: math.unit(12, "feet"),
  12615. default: true
  12616. },
  12617. {
  12618. name: "Macro",
  12619. height: math.unit(3810, "feet")
  12620. },
  12621. {
  12622. name: "Megamacro",
  12623. height: math.unit(500, "miles")
  12624. },
  12625. ]
  12626. ))
  12627. characterMakers.push(() => makeCharacter(
  12628. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12629. {
  12630. front: {
  12631. height: math.unit(1.8796, "m"),
  12632. weight: math.unit(230, "lb"),
  12633. name: "Front",
  12634. image: {
  12635. source: "./media/characters/colin-t/front.svg",
  12636. extra: 1272 / 1193,
  12637. bottom: 0.07
  12638. }
  12639. },
  12640. },
  12641. [
  12642. {
  12643. name: "Micro",
  12644. height: math.unit(0.571, "meters")
  12645. },
  12646. {
  12647. name: "Normal",
  12648. height: math.unit(1.8796, "meters"),
  12649. default: true
  12650. },
  12651. {
  12652. name: "Tall",
  12653. height: math.unit(4, "meters")
  12654. },
  12655. {
  12656. name: "Macro",
  12657. height: math.unit(67.241, "meters")
  12658. },
  12659. {
  12660. name: "Megamacro",
  12661. height: math.unit(371.856, "meters")
  12662. },
  12663. {
  12664. name: "Planetary",
  12665. height: math.unit(12631.5689, "km")
  12666. },
  12667. ]
  12668. ))
  12669. characterMakers.push(() => makeCharacter(
  12670. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12671. {
  12672. front: {
  12673. height: math.unit(1.85, "meters"),
  12674. weight: math.unit(80, "kg"),
  12675. name: "Front",
  12676. image: {
  12677. source: "./media/characters/matvei/front.svg",
  12678. extra: 614 / 594,
  12679. bottom: 0.01
  12680. }
  12681. },
  12682. },
  12683. [
  12684. {
  12685. name: "Normal",
  12686. height: math.unit(1.85, "meters"),
  12687. default: true
  12688. },
  12689. ]
  12690. ))
  12691. characterMakers.push(() => makeCharacter(
  12692. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12693. {
  12694. front: {
  12695. height: math.unit(5 + 9 / 12, "feet"),
  12696. weight: math.unit(70, "lb"),
  12697. name: "Front",
  12698. image: {
  12699. source: "./media/characters/quincy/front.svg",
  12700. extra: 3041 / 2751
  12701. }
  12702. },
  12703. back: {
  12704. height: math.unit(5 + 9 / 12, "feet"),
  12705. weight: math.unit(70, "lb"),
  12706. name: "Back",
  12707. image: {
  12708. source: "./media/characters/quincy/back.svg",
  12709. extra: 3041 / 2751
  12710. }
  12711. },
  12712. flying: {
  12713. height: math.unit(5 + 4 / 12, "feet"),
  12714. weight: math.unit(70, "lb"),
  12715. name: "Flying",
  12716. image: {
  12717. source: "./media/characters/quincy/flying.svg",
  12718. extra: 1044 / 930
  12719. }
  12720. },
  12721. },
  12722. [
  12723. {
  12724. name: "Micro",
  12725. height: math.unit(3, "cm")
  12726. },
  12727. {
  12728. name: "Normal",
  12729. height: math.unit(5 + 9 / 12, "feet")
  12730. },
  12731. {
  12732. name: "Macro",
  12733. height: math.unit(200, "meters"),
  12734. default: true
  12735. },
  12736. {
  12737. name: "Megamacro",
  12738. height: math.unit(1000, "meters")
  12739. },
  12740. ]
  12741. ))
  12742. characterMakers.push(() => makeCharacter(
  12743. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12744. {
  12745. front: {
  12746. height: math.unit(3 + 11/12, "feet"),
  12747. weight: math.unit(50, "lb"),
  12748. name: "Front",
  12749. image: {
  12750. source: "./media/characters/vanrel/front.svg",
  12751. extra: 1104/949,
  12752. bottom: 52/1156
  12753. }
  12754. },
  12755. back: {
  12756. height: math.unit(3 + 11/12, "feet"),
  12757. weight: math.unit(50, "lb"),
  12758. name: "Back",
  12759. image: {
  12760. source: "./media/characters/vanrel/back.svg",
  12761. extra: 1119/976,
  12762. bottom: 37/1156
  12763. }
  12764. },
  12765. tome: {
  12766. height: math.unit(1.35, "feet"),
  12767. weight: math.unit(10, "lb"),
  12768. name: "Vanrel's Tome",
  12769. rename: true,
  12770. image: {
  12771. source: "./media/characters/vanrel/tome.svg"
  12772. }
  12773. },
  12774. beans: {
  12775. height: math.unit(0.89, "feet"),
  12776. name: "Beans",
  12777. image: {
  12778. source: "./media/characters/vanrel/beans.svg"
  12779. }
  12780. },
  12781. },
  12782. [
  12783. {
  12784. name: "Normal",
  12785. height: math.unit(3 + 11/12, "feet"),
  12786. default: true
  12787. },
  12788. ]
  12789. ))
  12790. characterMakers.push(() => makeCharacter(
  12791. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12792. {
  12793. front: {
  12794. height: math.unit(7 + 5 / 12, "feet"),
  12795. name: "Front",
  12796. image: {
  12797. source: "./media/characters/kuiper-vanrel/front.svg",
  12798. extra: 1219/1169,
  12799. bottom: 69/1288
  12800. }
  12801. },
  12802. back: {
  12803. height: math.unit(7 + 5 / 12, "feet"),
  12804. name: "Back",
  12805. image: {
  12806. source: "./media/characters/kuiper-vanrel/back.svg",
  12807. extra: 1236/1193,
  12808. bottom: 27/1263
  12809. }
  12810. },
  12811. foot: {
  12812. height: math.unit(0.55, "meters"),
  12813. name: "Foot",
  12814. image: {
  12815. source: "./media/characters/kuiper-vanrel/foot.svg",
  12816. }
  12817. },
  12818. battle: {
  12819. height: math.unit(6.824, "feet"),
  12820. name: "Battle",
  12821. image: {
  12822. source: "./media/characters/kuiper-vanrel/battle.svg",
  12823. extra: 1466 / 1327,
  12824. bottom: 29 / 1492.5
  12825. }
  12826. },
  12827. meerkui: {
  12828. height: math.unit(18, "inches"),
  12829. name: "Meerkui",
  12830. image: {
  12831. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12832. extra: 1354/1289,
  12833. bottom: 69/1423
  12834. }
  12835. },
  12836. },
  12837. [
  12838. {
  12839. name: "Normal",
  12840. height: math.unit(7 + 5 / 12, "feet"),
  12841. default: true
  12842. },
  12843. ]
  12844. ))
  12845. characterMakers.push(() => makeCharacter(
  12846. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12847. {
  12848. front: {
  12849. height: math.unit(8 + 5 / 12, "feet"),
  12850. name: "Front",
  12851. image: {
  12852. source: "./media/characters/keset-vanrel/front.svg",
  12853. extra: 1231/1148,
  12854. bottom: 82/1313
  12855. }
  12856. },
  12857. back: {
  12858. height: math.unit(8 + 5 / 12, "feet"),
  12859. name: "Back",
  12860. image: {
  12861. source: "./media/characters/keset-vanrel/back.svg",
  12862. extra: 1240/1174,
  12863. bottom: 33/1273
  12864. }
  12865. },
  12866. hand: {
  12867. height: math.unit(0.6, "meters"),
  12868. name: "Hand",
  12869. image: {
  12870. source: "./media/characters/keset-vanrel/hand.svg"
  12871. }
  12872. },
  12873. foot: {
  12874. height: math.unit(0.94978, "meters"),
  12875. name: "Foot",
  12876. image: {
  12877. source: "./media/characters/keset-vanrel/foot.svg"
  12878. }
  12879. },
  12880. battle: {
  12881. height: math.unit(7.408, "feet"),
  12882. name: "Battle",
  12883. image: {
  12884. source: "./media/characters/keset-vanrel/battle.svg",
  12885. extra: 1890 / 1386,
  12886. bottom: 73.28 / 1970
  12887. }
  12888. },
  12889. },
  12890. [
  12891. {
  12892. name: "Normal",
  12893. height: math.unit(8 + 5 / 12, "feet"),
  12894. default: true
  12895. },
  12896. ]
  12897. ))
  12898. characterMakers.push(() => makeCharacter(
  12899. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12900. {
  12901. front: {
  12902. height: math.unit(6, "feet"),
  12903. weight: math.unit(150, "lb"),
  12904. name: "Front",
  12905. image: {
  12906. source: "./media/characters/neos/front.svg",
  12907. extra: 1696 / 992,
  12908. bottom: 0.14
  12909. }
  12910. },
  12911. },
  12912. [
  12913. {
  12914. name: "Normal",
  12915. height: math.unit(54, "cm"),
  12916. default: true
  12917. },
  12918. {
  12919. name: "Macro",
  12920. height: math.unit(100, "m")
  12921. },
  12922. {
  12923. name: "Megamacro",
  12924. height: math.unit(10, "km")
  12925. },
  12926. {
  12927. name: "Megamacro+",
  12928. height: math.unit(100, "km")
  12929. },
  12930. {
  12931. name: "Gigamacro",
  12932. height: math.unit(100, "Mm")
  12933. },
  12934. {
  12935. name: "Teramacro",
  12936. height: math.unit(100, "Gm")
  12937. },
  12938. {
  12939. name: "Examacro",
  12940. height: math.unit(100, "Em")
  12941. },
  12942. {
  12943. name: "Godly",
  12944. height: math.unit(10000, "Ym")
  12945. },
  12946. {
  12947. name: "Beyond Godly",
  12948. height: math.unit(25, "multiverses")
  12949. },
  12950. ]
  12951. ))
  12952. characterMakers.push(() => makeCharacter(
  12953. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12954. {
  12955. feminine: {
  12956. height: math.unit(5, "feet"),
  12957. weight: math.unit(100, "lb"),
  12958. name: "Feminine",
  12959. image: {
  12960. source: "./media/characters/sammy-mouse/feminine.svg",
  12961. extra: 2526 / 2425,
  12962. bottom: 0.123
  12963. }
  12964. },
  12965. masculine: {
  12966. height: math.unit(5, "feet"),
  12967. weight: math.unit(100, "lb"),
  12968. name: "Masculine",
  12969. image: {
  12970. source: "./media/characters/sammy-mouse/masculine.svg",
  12971. extra: 2526 / 2425,
  12972. bottom: 0.123
  12973. }
  12974. },
  12975. },
  12976. [
  12977. {
  12978. name: "Micro",
  12979. height: math.unit(5, "inches")
  12980. },
  12981. {
  12982. name: "Normal",
  12983. height: math.unit(5, "feet"),
  12984. default: true
  12985. },
  12986. {
  12987. name: "Macro",
  12988. height: math.unit(60, "feet")
  12989. },
  12990. ]
  12991. ))
  12992. characterMakers.push(() => makeCharacter(
  12993. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12994. {
  12995. front: {
  12996. height: math.unit(4, "feet"),
  12997. weight: math.unit(50, "lb"),
  12998. name: "Front",
  12999. image: {
  13000. source: "./media/characters/kole/front.svg",
  13001. extra: 1423 / 1303,
  13002. bottom: 0.025
  13003. }
  13004. },
  13005. back: {
  13006. height: math.unit(4, "feet"),
  13007. weight: math.unit(50, "lb"),
  13008. name: "Back",
  13009. image: {
  13010. source: "./media/characters/kole/back.svg",
  13011. extra: 1426 / 1280,
  13012. bottom: 0.02
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Normal",
  13019. height: math.unit(4, "feet"),
  13020. default: true
  13021. },
  13022. ]
  13023. ))
  13024. characterMakers.push(() => makeCharacter(
  13025. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13026. {
  13027. front: {
  13028. height: math.unit(2.5, "feet"),
  13029. weight: math.unit(32, "lb"),
  13030. name: "Front",
  13031. image: {
  13032. source: "./media/characters/rufran/front.svg",
  13033. extra: 1313/885,
  13034. bottom: 94/1407
  13035. }
  13036. },
  13037. side: {
  13038. height: math.unit(2.5, "feet"),
  13039. weight: math.unit(32, "lb"),
  13040. name: "Side",
  13041. image: {
  13042. source: "./media/characters/rufran/side.svg",
  13043. extra: 1109/852,
  13044. bottom: 118/1227
  13045. }
  13046. },
  13047. back: {
  13048. height: math.unit(2.5, "feet"),
  13049. weight: math.unit(32, "lb"),
  13050. name: "Back",
  13051. image: {
  13052. source: "./media/characters/rufran/back.svg",
  13053. extra: 1280/878,
  13054. bottom: 131/1411
  13055. }
  13056. },
  13057. mouth: {
  13058. height: math.unit(1.13, "feet"),
  13059. name: "Mouth",
  13060. image: {
  13061. source: "./media/characters/rufran/mouth.svg"
  13062. }
  13063. },
  13064. foot: {
  13065. height: math.unit(1.33, "feet"),
  13066. name: "Foot",
  13067. image: {
  13068. source: "./media/characters/rufran/foot.svg"
  13069. }
  13070. },
  13071. koboldFront: {
  13072. height: math.unit(2 + 6 / 12, "feet"),
  13073. weight: math.unit(20, "lb"),
  13074. name: "Front (Kobold)",
  13075. image: {
  13076. source: "./media/characters/rufran/kobold-front.svg",
  13077. extra: 2041 / 1839,
  13078. bottom: 0.055
  13079. }
  13080. },
  13081. koboldBack: {
  13082. height: math.unit(2 + 6 / 12, "feet"),
  13083. weight: math.unit(20, "lb"),
  13084. name: "Back (Kobold)",
  13085. image: {
  13086. source: "./media/characters/rufran/kobold-back.svg",
  13087. extra: 2054 / 1839,
  13088. bottom: 0.01
  13089. }
  13090. },
  13091. koboldHand: {
  13092. height: math.unit(0.2166, "meters"),
  13093. name: "Hand (Kobold)",
  13094. image: {
  13095. source: "./media/characters/rufran/kobold-hand.svg"
  13096. }
  13097. },
  13098. koboldFoot: {
  13099. height: math.unit(0.185, "meters"),
  13100. name: "Foot (Kobold)",
  13101. image: {
  13102. source: "./media/characters/rufran/kobold-foot.svg"
  13103. }
  13104. },
  13105. },
  13106. [
  13107. {
  13108. name: "Micro",
  13109. height: math.unit(1, "inch")
  13110. },
  13111. {
  13112. name: "Normal",
  13113. height: math.unit(2 + 6 / 12, "feet"),
  13114. default: true
  13115. },
  13116. {
  13117. name: "Big",
  13118. height: math.unit(60, "feet")
  13119. },
  13120. {
  13121. name: "Macro",
  13122. height: math.unit(325, "feet")
  13123. },
  13124. ]
  13125. ))
  13126. characterMakers.push(() => makeCharacter(
  13127. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13128. {
  13129. front: {
  13130. height: math.unit(0.3, "meters"),
  13131. weight: math.unit(3.5, "kg"),
  13132. name: "Front",
  13133. image: {
  13134. source: "./media/characters/chip/front.svg",
  13135. extra: 748 / 674
  13136. }
  13137. },
  13138. },
  13139. [
  13140. {
  13141. name: "Micro",
  13142. height: math.unit(1, "inch"),
  13143. default: true
  13144. },
  13145. ]
  13146. ))
  13147. characterMakers.push(() => makeCharacter(
  13148. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13149. {
  13150. side: {
  13151. height: math.unit(2.3, "meters"),
  13152. weight: math.unit(3500, "lb"),
  13153. name: "Side",
  13154. image: {
  13155. source: "./media/characters/torvid/side.svg",
  13156. extra: 1972 / 722,
  13157. bottom: 0.035
  13158. }
  13159. },
  13160. },
  13161. [
  13162. {
  13163. name: "Normal",
  13164. height: math.unit(2.3, "meters"),
  13165. default: true
  13166. },
  13167. ]
  13168. ))
  13169. characterMakers.push(() => makeCharacter(
  13170. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13171. {
  13172. front: {
  13173. height: math.unit(2, "meters"),
  13174. weight: math.unit(150.5, "kg"),
  13175. name: "Front",
  13176. image: {
  13177. source: "./media/characters/susan/front.svg",
  13178. extra: 693 / 635,
  13179. bottom: 0.05
  13180. }
  13181. },
  13182. },
  13183. [
  13184. {
  13185. name: "Megamacro",
  13186. height: math.unit(505, "miles"),
  13187. default: true
  13188. },
  13189. ]
  13190. ))
  13191. characterMakers.push(() => makeCharacter(
  13192. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13193. {
  13194. front: {
  13195. height: math.unit(6, "feet"),
  13196. weight: math.unit(150, "lb"),
  13197. name: "Front",
  13198. image: {
  13199. source: "./media/characters/raindrops/front.svg",
  13200. extra: 2655 / 2461,
  13201. bottom: 49 / 2705
  13202. }
  13203. },
  13204. back: {
  13205. height: math.unit(6, "feet"),
  13206. weight: math.unit(150, "lb"),
  13207. name: "Back",
  13208. image: {
  13209. source: "./media/characters/raindrops/back.svg",
  13210. extra: 2574 / 2400,
  13211. bottom: 65 / 2634
  13212. }
  13213. },
  13214. },
  13215. [
  13216. {
  13217. name: "Micro",
  13218. height: math.unit(6, "inches")
  13219. },
  13220. {
  13221. name: "Normal",
  13222. height: math.unit(6 + 2 / 12, "feet")
  13223. },
  13224. {
  13225. name: "Macro",
  13226. height: math.unit(131, "feet"),
  13227. default: true
  13228. },
  13229. {
  13230. name: "Megamacro",
  13231. height: math.unit(15, "miles")
  13232. },
  13233. {
  13234. name: "Gigamacro",
  13235. height: math.unit(4000, "miles")
  13236. },
  13237. {
  13238. name: "Teramacro",
  13239. height: math.unit(315000, "miles")
  13240. },
  13241. ]
  13242. ))
  13243. characterMakers.push(() => makeCharacter(
  13244. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13245. {
  13246. front: {
  13247. height: math.unit(2.794, "meters"),
  13248. weight: math.unit(325, "kg"),
  13249. name: "Front",
  13250. image: {
  13251. source: "./media/characters/tezwa/front.svg",
  13252. extra: 2083 / 1906,
  13253. bottom: 0.031
  13254. }
  13255. },
  13256. foot: {
  13257. height: math.unit(0.687, "meters"),
  13258. name: "Foot",
  13259. image: {
  13260. source: "./media/characters/tezwa/foot.svg"
  13261. }
  13262. },
  13263. },
  13264. [
  13265. {
  13266. name: "Normal",
  13267. height: math.unit(9 + 2 / 12, "feet"),
  13268. default: true
  13269. },
  13270. ]
  13271. ))
  13272. characterMakers.push(() => makeCharacter(
  13273. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13274. {
  13275. front: {
  13276. height: math.unit(58, "feet"),
  13277. weight: math.unit(89000, "lb"),
  13278. name: "Front",
  13279. image: {
  13280. source: "./media/characters/typhus/front.svg",
  13281. extra: 816 / 800,
  13282. bottom: 0.065
  13283. }
  13284. },
  13285. },
  13286. [
  13287. {
  13288. name: "Macro",
  13289. height: math.unit(58, "feet"),
  13290. default: true
  13291. },
  13292. ]
  13293. ))
  13294. characterMakers.push(() => makeCharacter(
  13295. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13296. {
  13297. front: {
  13298. height: math.unit(12, "feet"),
  13299. weight: math.unit(6, "tonnes"),
  13300. name: "Front",
  13301. image: {
  13302. source: "./media/characters/lyra-von-wulf/front.svg",
  13303. extra: 1,
  13304. bottom: 0.10
  13305. }
  13306. },
  13307. frontMecha: {
  13308. height: math.unit(12, "feet"),
  13309. weight: math.unit(12, "tonnes"),
  13310. name: "Front (Mecha)",
  13311. image: {
  13312. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13313. extra: 1,
  13314. bottom: 0.042
  13315. }
  13316. },
  13317. maw: {
  13318. height: math.unit(2.2, "feet"),
  13319. name: "Maw",
  13320. image: {
  13321. source: "./media/characters/lyra-von-wulf/maw.svg"
  13322. }
  13323. },
  13324. },
  13325. [
  13326. {
  13327. name: "Normal",
  13328. height: math.unit(12, "feet"),
  13329. default: true
  13330. },
  13331. {
  13332. name: "Classic",
  13333. height: math.unit(50, "feet")
  13334. },
  13335. {
  13336. name: "Macro",
  13337. height: math.unit(500, "feet")
  13338. },
  13339. {
  13340. name: "Megamacro",
  13341. height: math.unit(1, "mile")
  13342. },
  13343. {
  13344. name: "Gigamacro",
  13345. height: math.unit(400, "miles")
  13346. },
  13347. {
  13348. name: "Teramacro",
  13349. height: math.unit(22000, "miles")
  13350. },
  13351. {
  13352. name: "Solarmacro",
  13353. height: math.unit(8600000, "miles")
  13354. },
  13355. {
  13356. name: "Galactic",
  13357. height: math.unit(1057000, "lightyears")
  13358. },
  13359. ]
  13360. ))
  13361. characterMakers.push(() => makeCharacter(
  13362. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13363. {
  13364. front: {
  13365. height: math.unit(6 + 10 / 12, "feet"),
  13366. weight: math.unit(150, "lb"),
  13367. name: "Front",
  13368. image: {
  13369. source: "./media/characters/dixon/front.svg",
  13370. extra: 3361 / 3209,
  13371. bottom: 0.01
  13372. }
  13373. },
  13374. },
  13375. [
  13376. {
  13377. name: "Normal",
  13378. height: math.unit(6 + 10 / 12, "feet"),
  13379. default: true
  13380. },
  13381. {
  13382. name: "Big",
  13383. height: math.unit(12, "meters")
  13384. },
  13385. {
  13386. name: "Macro",
  13387. height: math.unit(500, "meters")
  13388. },
  13389. {
  13390. name: "Megamacro",
  13391. height: math.unit(2, "km")
  13392. },
  13393. ]
  13394. ))
  13395. characterMakers.push(() => makeCharacter(
  13396. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13397. {
  13398. front: {
  13399. height: math.unit(185, "cm"),
  13400. weight: math.unit(68, "kg"),
  13401. name: "Front",
  13402. image: {
  13403. source: "./media/characters/kauko/front.svg",
  13404. extra: 1455 / 1421,
  13405. bottom: 0.03
  13406. }
  13407. },
  13408. back: {
  13409. height: math.unit(185, "cm"),
  13410. weight: math.unit(68, "kg"),
  13411. name: "Back",
  13412. image: {
  13413. source: "./media/characters/kauko/back.svg",
  13414. extra: 1455 / 1421,
  13415. bottom: 0.004
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Normal",
  13422. height: math.unit(185, "cm"),
  13423. default: true
  13424. },
  13425. ]
  13426. ))
  13427. characterMakers.push(() => makeCharacter(
  13428. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13429. {
  13430. front: {
  13431. height: math.unit(6, "feet"),
  13432. weight: math.unit(150, "kg"),
  13433. name: "Front",
  13434. image: {
  13435. source: "./media/characters/varg/front.svg",
  13436. extra: 1108 / 1018,
  13437. bottom: 0.0375
  13438. }
  13439. },
  13440. },
  13441. [
  13442. {
  13443. name: "Normal",
  13444. height: math.unit(5, "meters")
  13445. },
  13446. {
  13447. name: "Macro",
  13448. height: math.unit(200, "meters")
  13449. },
  13450. {
  13451. name: "Megamacro",
  13452. height: math.unit(20, "kilometers")
  13453. },
  13454. {
  13455. name: "True Size",
  13456. height: math.unit(211, "km"),
  13457. default: true
  13458. },
  13459. {
  13460. name: "Gigamacro",
  13461. height: math.unit(1000, "km")
  13462. },
  13463. {
  13464. name: "Gigamacro+",
  13465. height: math.unit(8000, "km")
  13466. },
  13467. {
  13468. name: "Teramacro",
  13469. height: math.unit(1000000, "km")
  13470. },
  13471. ]
  13472. ))
  13473. characterMakers.push(() => makeCharacter(
  13474. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13475. {
  13476. front: {
  13477. height: math.unit(7 + 7 / 12, "feet"),
  13478. weight: math.unit(267, "lb"),
  13479. name: "Front",
  13480. image: {
  13481. source: "./media/characters/dayza/front.svg",
  13482. extra: 1262 / 1200,
  13483. bottom: 0.035
  13484. }
  13485. },
  13486. side: {
  13487. height: math.unit(7 + 7 / 12, "feet"),
  13488. weight: math.unit(267, "lb"),
  13489. name: "Side",
  13490. image: {
  13491. source: "./media/characters/dayza/side.svg",
  13492. extra: 1295 / 1245,
  13493. bottom: 0.05
  13494. }
  13495. },
  13496. back: {
  13497. height: math.unit(7 + 7 / 12, "feet"),
  13498. weight: math.unit(267, "lb"),
  13499. name: "Back",
  13500. image: {
  13501. source: "./media/characters/dayza/back.svg",
  13502. extra: 1241 / 1170
  13503. }
  13504. },
  13505. },
  13506. [
  13507. {
  13508. name: "Normal",
  13509. height: math.unit(7 + 7 / 12, "feet"),
  13510. default: true
  13511. },
  13512. {
  13513. name: "Macro",
  13514. height: math.unit(155, "feet")
  13515. },
  13516. ]
  13517. ))
  13518. characterMakers.push(() => makeCharacter(
  13519. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13520. {
  13521. front: {
  13522. height: math.unit(6 + 5 / 12, "feet"),
  13523. weight: math.unit(160, "lb"),
  13524. name: "Front",
  13525. image: {
  13526. source: "./media/characters/xanthos/front.svg",
  13527. extra: 1,
  13528. bottom: 0.04
  13529. }
  13530. },
  13531. back: {
  13532. height: math.unit(6 + 5 / 12, "feet"),
  13533. weight: math.unit(160, "lb"),
  13534. name: "Back",
  13535. image: {
  13536. source: "./media/characters/xanthos/back.svg",
  13537. extra: 1,
  13538. bottom: 0.03
  13539. }
  13540. },
  13541. hand: {
  13542. height: math.unit(0.928, "feet"),
  13543. name: "Hand",
  13544. image: {
  13545. source: "./media/characters/xanthos/hand.svg"
  13546. }
  13547. },
  13548. foot: {
  13549. height: math.unit(1.286, "feet"),
  13550. name: "Foot",
  13551. image: {
  13552. source: "./media/characters/xanthos/foot.svg"
  13553. }
  13554. },
  13555. },
  13556. [
  13557. {
  13558. name: "Normal",
  13559. height: math.unit(6 + 5 / 12, "feet"),
  13560. default: true
  13561. },
  13562. {
  13563. name: "Normal+",
  13564. height: math.unit(6, "meters")
  13565. },
  13566. {
  13567. name: "Macro",
  13568. height: math.unit(40, "feet")
  13569. },
  13570. {
  13571. name: "Macro+",
  13572. height: math.unit(200, "meters")
  13573. },
  13574. {
  13575. name: "Megamacro",
  13576. height: math.unit(20, "km")
  13577. },
  13578. {
  13579. name: "Megamacro+",
  13580. height: math.unit(100, "km")
  13581. },
  13582. {
  13583. name: "Gigamacro",
  13584. height: math.unit(200, "megameters")
  13585. },
  13586. {
  13587. name: "Gigamacro+",
  13588. height: math.unit(1.5, "gigameters")
  13589. },
  13590. ]
  13591. ))
  13592. characterMakers.push(() => makeCharacter(
  13593. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13594. {
  13595. front: {
  13596. height: math.unit(6 + 3 / 12, "feet"),
  13597. weight: math.unit(215, "lb"),
  13598. name: "Front",
  13599. image: {
  13600. source: "./media/characters/grynn/front.svg",
  13601. extra: 4627 / 4209,
  13602. bottom: 0.047
  13603. }
  13604. },
  13605. },
  13606. [
  13607. {
  13608. name: "Micro",
  13609. height: math.unit(6, "inches")
  13610. },
  13611. {
  13612. name: "Normal",
  13613. height: math.unit(6 + 3 / 12, "feet"),
  13614. default: true
  13615. },
  13616. {
  13617. name: "Big",
  13618. height: math.unit(104, "feet")
  13619. },
  13620. {
  13621. name: "Macro",
  13622. height: math.unit(944, "feet")
  13623. },
  13624. {
  13625. name: "Macro+",
  13626. height: math.unit(9480, "feet")
  13627. },
  13628. {
  13629. name: "Megamacro",
  13630. height: math.unit(78752, "feet")
  13631. },
  13632. {
  13633. name: "Megamacro+",
  13634. height: math.unit(630128, "feet")
  13635. },
  13636. {
  13637. name: "Megamacro++",
  13638. height: math.unit(3150695, "feet")
  13639. },
  13640. ]
  13641. ))
  13642. characterMakers.push(() => makeCharacter(
  13643. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13644. {
  13645. front: {
  13646. height: math.unit(7 + 5 / 12, "feet"),
  13647. weight: math.unit(450, "lb"),
  13648. name: "Front",
  13649. image: {
  13650. source: "./media/characters/mocha-aura/front.svg",
  13651. extra: 1907 / 1817,
  13652. bottom: 0.04
  13653. }
  13654. },
  13655. back: {
  13656. height: math.unit(7 + 5 / 12, "feet"),
  13657. weight: math.unit(450, "lb"),
  13658. name: "Back",
  13659. image: {
  13660. source: "./media/characters/mocha-aura/back.svg",
  13661. extra: 1900 / 1825,
  13662. bottom: 0.045
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Nano",
  13669. height: math.unit(1, "nm")
  13670. },
  13671. {
  13672. name: "Megamicro",
  13673. height: math.unit(1, "mm")
  13674. },
  13675. {
  13676. name: "Micro",
  13677. height: math.unit(3, "inches")
  13678. },
  13679. {
  13680. name: "Normal",
  13681. height: math.unit(7 + 5 / 12, "feet"),
  13682. default: true
  13683. },
  13684. {
  13685. name: "Macro",
  13686. height: math.unit(30, "feet")
  13687. },
  13688. {
  13689. name: "Megamacro",
  13690. height: math.unit(3500, "feet")
  13691. },
  13692. {
  13693. name: "Teramacro",
  13694. height: math.unit(500000, "miles")
  13695. },
  13696. {
  13697. name: "Petamacro",
  13698. height: math.unit(50000000000000000, "parsecs")
  13699. },
  13700. ]
  13701. ))
  13702. characterMakers.push(() => makeCharacter(
  13703. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13704. {
  13705. front: {
  13706. height: math.unit(6, "feet"),
  13707. weight: math.unit(150, "lb"),
  13708. name: "Front",
  13709. image: {
  13710. source: "./media/characters/ilisha-devya/front.svg",
  13711. extra: 1053/1049,
  13712. bottom: 270/1323
  13713. }
  13714. },
  13715. back: {
  13716. height: math.unit(6, "feet"),
  13717. weight: math.unit(150, "lb"),
  13718. name: "Back",
  13719. image: {
  13720. source: "./media/characters/ilisha-devya/back.svg",
  13721. extra: 1131/1128,
  13722. bottom: 39/1170
  13723. }
  13724. },
  13725. },
  13726. [
  13727. {
  13728. name: "Macro",
  13729. height: math.unit(500, "feet"),
  13730. default: true
  13731. },
  13732. {
  13733. name: "Megamacro",
  13734. height: math.unit(10, "miles")
  13735. },
  13736. {
  13737. name: "Gigamacro",
  13738. height: math.unit(100000, "miles")
  13739. },
  13740. {
  13741. name: "Examacro",
  13742. height: math.unit(1e9, "lightyears")
  13743. },
  13744. {
  13745. name: "Omniversal",
  13746. height: math.unit(1e33, "lightyears")
  13747. },
  13748. {
  13749. name: "Beyond Infinite",
  13750. height: math.unit(1e100, "lightyears")
  13751. },
  13752. ]
  13753. ))
  13754. characterMakers.push(() => makeCharacter(
  13755. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13756. {
  13757. Side: {
  13758. height: math.unit(6, "feet"),
  13759. weight: math.unit(150, "lb"),
  13760. name: "Side",
  13761. image: {
  13762. source: "./media/characters/mira/side.svg",
  13763. extra: 900 / 799,
  13764. bottom: 0.02
  13765. }
  13766. },
  13767. },
  13768. [
  13769. {
  13770. name: "Human Size",
  13771. height: math.unit(6, "feet")
  13772. },
  13773. {
  13774. name: "Macro",
  13775. height: math.unit(100, "feet"),
  13776. default: true
  13777. },
  13778. {
  13779. name: "Megamacro",
  13780. height: math.unit(10, "miles")
  13781. },
  13782. {
  13783. name: "Gigamacro",
  13784. height: math.unit(25000, "miles")
  13785. },
  13786. {
  13787. name: "Teramacro",
  13788. height: math.unit(300, "AU")
  13789. },
  13790. {
  13791. name: "Full Size",
  13792. height: math.unit(4.5e10, "lightyears")
  13793. },
  13794. ]
  13795. ))
  13796. characterMakers.push(() => makeCharacter(
  13797. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13798. {
  13799. front: {
  13800. height: math.unit(6, "feet"),
  13801. weight: math.unit(150, "lb"),
  13802. name: "Front",
  13803. image: {
  13804. source: "./media/characters/holly/front.svg",
  13805. extra: 639 / 606
  13806. }
  13807. },
  13808. back: {
  13809. height: math.unit(6, "feet"),
  13810. weight: math.unit(150, "lb"),
  13811. name: "Back",
  13812. image: {
  13813. source: "./media/characters/holly/back.svg",
  13814. extra: 623 / 598
  13815. }
  13816. },
  13817. frontWorking: {
  13818. height: math.unit(6, "feet"),
  13819. weight: math.unit(150, "lb"),
  13820. name: "Front (Working)",
  13821. image: {
  13822. source: "./media/characters/holly/front-working.svg",
  13823. extra: 607 / 577,
  13824. bottom: 0.048
  13825. }
  13826. },
  13827. },
  13828. [
  13829. {
  13830. name: "Normal",
  13831. height: math.unit(12 + 3 / 12, "feet"),
  13832. default: true
  13833. },
  13834. ]
  13835. ))
  13836. characterMakers.push(() => makeCharacter(
  13837. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13838. {
  13839. front: {
  13840. height: math.unit(6, "feet"),
  13841. weight: math.unit(150, "lb"),
  13842. name: "Front",
  13843. image: {
  13844. source: "./media/characters/porter/front.svg",
  13845. extra: 1,
  13846. bottom: 0.01
  13847. }
  13848. },
  13849. frontRobes: {
  13850. height: math.unit(6, "feet"),
  13851. weight: math.unit(150, "lb"),
  13852. name: "Front (Robes)",
  13853. image: {
  13854. source: "./media/characters/porter/front-robes.svg",
  13855. extra: 1.01,
  13856. bottom: 0.01
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Normal",
  13863. height: math.unit(11 + 9 / 12, "feet"),
  13864. default: true
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13870. {
  13871. legendary: {
  13872. height: math.unit(6, "feet"),
  13873. weight: math.unit(150, "lb"),
  13874. name: "Legendary",
  13875. image: {
  13876. source: "./media/characters/lucy/legendary.svg",
  13877. extra: 1355 / 1100,
  13878. bottom: 0.045
  13879. }
  13880. },
  13881. },
  13882. [
  13883. {
  13884. name: "Legendary",
  13885. height: math.unit(86882 * 2, "miles"),
  13886. default: true
  13887. },
  13888. ]
  13889. ))
  13890. characterMakers.push(() => makeCharacter(
  13891. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13892. {
  13893. front: {
  13894. height: math.unit(6, "feet"),
  13895. weight: math.unit(150, "lb"),
  13896. name: "Front",
  13897. image: {
  13898. source: "./media/characters/drusilla/front.svg",
  13899. extra: 678 / 635,
  13900. bottom: 0.03
  13901. }
  13902. },
  13903. back: {
  13904. height: math.unit(6, "feet"),
  13905. weight: math.unit(150, "lb"),
  13906. name: "Back",
  13907. image: {
  13908. source: "./media/characters/drusilla/back.svg",
  13909. extra: 678 / 635,
  13910. bottom: 0.005
  13911. }
  13912. },
  13913. },
  13914. [
  13915. {
  13916. name: "Macro",
  13917. height: math.unit(100, "feet")
  13918. },
  13919. {
  13920. name: "Canon Height",
  13921. height: math.unit(2000, "feet"),
  13922. default: true
  13923. },
  13924. ]
  13925. ))
  13926. characterMakers.push(() => makeCharacter(
  13927. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13928. {
  13929. front: {
  13930. height: math.unit(6, "feet"),
  13931. weight: math.unit(180, "lb"),
  13932. name: "Front",
  13933. image: {
  13934. source: "./media/characters/renard-thatch/front.svg",
  13935. extra: 2411 / 2275,
  13936. bottom: 0.01
  13937. }
  13938. },
  13939. frontPosing: {
  13940. height: math.unit(6, "feet"),
  13941. weight: math.unit(180, "lb"),
  13942. name: "Front (Posing)",
  13943. image: {
  13944. source: "./media/characters/renard-thatch/front-posing.svg",
  13945. extra: 2381 / 2261,
  13946. bottom: 0.01
  13947. }
  13948. },
  13949. back: {
  13950. height: math.unit(6, "feet"),
  13951. weight: math.unit(180, "lb"),
  13952. name: "Back",
  13953. image: {
  13954. source: "./media/characters/renard-thatch/back.svg",
  13955. extra: 2428 / 2288
  13956. }
  13957. },
  13958. },
  13959. [
  13960. {
  13961. name: "Micro",
  13962. height: math.unit(3, "inches")
  13963. },
  13964. {
  13965. name: "Default",
  13966. height: math.unit(6, "feet"),
  13967. default: true
  13968. },
  13969. {
  13970. name: "Macro",
  13971. height: math.unit(75, "feet")
  13972. },
  13973. ]
  13974. ))
  13975. characterMakers.push(() => makeCharacter(
  13976. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13977. {
  13978. front: {
  13979. height: math.unit(1450, "feet"),
  13980. weight: math.unit(1.21e6, "tons"),
  13981. name: "Front",
  13982. image: {
  13983. source: "./media/characters/sekvra/front.svg",
  13984. extra: 1193/1190,
  13985. bottom: 78/1271
  13986. }
  13987. },
  13988. side: {
  13989. height: math.unit(1450, "feet"),
  13990. weight: math.unit(1.21e6, "tons"),
  13991. name: "Side",
  13992. image: {
  13993. source: "./media/characters/sekvra/side.svg",
  13994. extra: 1193/1190,
  13995. bottom: 52/1245
  13996. }
  13997. },
  13998. back: {
  13999. height: math.unit(1450, "feet"),
  14000. weight: math.unit(1.21e6, "tons"),
  14001. name: "Back",
  14002. image: {
  14003. source: "./media/characters/sekvra/back.svg",
  14004. extra: 1219/1216,
  14005. bottom: 21/1240
  14006. }
  14007. },
  14008. frontClothed: {
  14009. height: math.unit(1450, "feet"),
  14010. weight: math.unit(1.21e6, "tons"),
  14011. name: "Front (Clothed)",
  14012. image: {
  14013. source: "./media/characters/sekvra/front-clothed.svg",
  14014. extra: 1192/1189,
  14015. bottom: 79/1271
  14016. }
  14017. },
  14018. },
  14019. [
  14020. {
  14021. name: "Macro",
  14022. height: math.unit(1450, "feet"),
  14023. default: true
  14024. },
  14025. {
  14026. name: "Megamacro",
  14027. height: math.unit(15000, "feet")
  14028. },
  14029. ]
  14030. ))
  14031. characterMakers.push(() => makeCharacter(
  14032. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14033. {
  14034. front: {
  14035. height: math.unit(6, "feet"),
  14036. weight: math.unit(150, "lb"),
  14037. name: "Front",
  14038. image: {
  14039. source: "./media/characters/carmine/front.svg",
  14040. extra: 1,
  14041. bottom: 0.035
  14042. }
  14043. },
  14044. frontArmor: {
  14045. height: math.unit(6, "feet"),
  14046. weight: math.unit(150, "lb"),
  14047. name: "Front (Armor)",
  14048. image: {
  14049. source: "./media/characters/carmine/front-armor.svg",
  14050. extra: 1,
  14051. bottom: 0.035
  14052. }
  14053. },
  14054. },
  14055. [
  14056. {
  14057. name: "Large",
  14058. height: math.unit(1, "mile")
  14059. },
  14060. {
  14061. name: "Huge",
  14062. height: math.unit(40, "miles"),
  14063. default: true
  14064. },
  14065. {
  14066. name: "Colossal",
  14067. height: math.unit(2500, "miles")
  14068. },
  14069. ]
  14070. ))
  14071. characterMakers.push(() => makeCharacter(
  14072. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14073. {
  14074. front: {
  14075. height: math.unit(6, "feet"),
  14076. weight: math.unit(150, "lb"),
  14077. name: "Front",
  14078. image: {
  14079. source: "./media/characters/elyssia/front.svg",
  14080. extra: 2201 / 2035,
  14081. bottom: 0.05
  14082. }
  14083. },
  14084. frontClothed: {
  14085. height: math.unit(6, "feet"),
  14086. weight: math.unit(150, "lb"),
  14087. name: "Front (Clothed)",
  14088. image: {
  14089. source: "./media/characters/elyssia/front-clothed.svg",
  14090. extra: 2201 / 2035,
  14091. bottom: 0.05
  14092. }
  14093. },
  14094. back: {
  14095. height: math.unit(6, "feet"),
  14096. weight: math.unit(150, "lb"),
  14097. name: "Back",
  14098. image: {
  14099. source: "./media/characters/elyssia/back.svg",
  14100. extra: 2201 / 2035,
  14101. bottom: 0.013
  14102. }
  14103. },
  14104. },
  14105. [
  14106. {
  14107. name: "Smaller",
  14108. height: math.unit(150, "feet")
  14109. },
  14110. {
  14111. name: "Standard",
  14112. height: math.unit(1400, "feet"),
  14113. default: true
  14114. },
  14115. {
  14116. name: "Distracted",
  14117. height: math.unit(15000, "feet")
  14118. },
  14119. ]
  14120. ))
  14121. characterMakers.push(() => makeCharacter(
  14122. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14123. {
  14124. front: {
  14125. height: math.unit(7 + 4/12, "feet"),
  14126. weight: math.unit(690, "lb"),
  14127. name: "Front",
  14128. image: {
  14129. source: "./media/characters/geno-maxwell/front.svg",
  14130. extra: 984/856,
  14131. bottom: 87/1071
  14132. }
  14133. },
  14134. back: {
  14135. height: math.unit(7 + 4/12, "feet"),
  14136. weight: math.unit(690, "lb"),
  14137. name: "Back",
  14138. image: {
  14139. source: "./media/characters/geno-maxwell/back.svg",
  14140. extra: 981/854,
  14141. bottom: 57/1038
  14142. }
  14143. },
  14144. frontCostume: {
  14145. height: math.unit(7 + 4/12, "feet"),
  14146. weight: math.unit(690, "lb"),
  14147. name: "Front (Costume)",
  14148. image: {
  14149. source: "./media/characters/geno-maxwell/front-costume.svg",
  14150. extra: 984/856,
  14151. bottom: 87/1071
  14152. }
  14153. },
  14154. backcostume: {
  14155. height: math.unit(7 + 4/12, "feet"),
  14156. weight: math.unit(690, "lb"),
  14157. name: "Back (Costume)",
  14158. image: {
  14159. source: "./media/characters/geno-maxwell/back-costume.svg",
  14160. extra: 981/854,
  14161. bottom: 57/1038
  14162. }
  14163. },
  14164. },
  14165. [
  14166. {
  14167. name: "Micro",
  14168. height: math.unit(3, "inches")
  14169. },
  14170. {
  14171. name: "Normal",
  14172. height: math.unit(7 + 4 / 12, "feet"),
  14173. default: true
  14174. },
  14175. {
  14176. name: "Macro",
  14177. height: math.unit(220, "feet")
  14178. },
  14179. {
  14180. name: "Megamacro",
  14181. height: math.unit(11, "miles")
  14182. },
  14183. ]
  14184. ))
  14185. characterMakers.push(() => makeCharacter(
  14186. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14187. {
  14188. front: {
  14189. height: math.unit(7 + 4/12, "feet"),
  14190. weight: math.unit(750, "lb"),
  14191. name: "Front",
  14192. image: {
  14193. source: "./media/characters/regena-maxwell/front.svg",
  14194. extra: 984/856,
  14195. bottom: 87/1071
  14196. }
  14197. },
  14198. back: {
  14199. height: math.unit(7 + 4/12, "feet"),
  14200. weight: math.unit(750, "lb"),
  14201. name: "Back",
  14202. image: {
  14203. source: "./media/characters/regena-maxwell/back.svg",
  14204. extra: 981/854,
  14205. bottom: 57/1038
  14206. }
  14207. },
  14208. frontCostume: {
  14209. height: math.unit(7 + 4/12, "feet"),
  14210. weight: math.unit(750, "lb"),
  14211. name: "Front (Costume)",
  14212. image: {
  14213. source: "./media/characters/regena-maxwell/front-costume.svg",
  14214. extra: 984/856,
  14215. bottom: 87/1071
  14216. }
  14217. },
  14218. backcostume: {
  14219. height: math.unit(7 + 4/12, "feet"),
  14220. weight: math.unit(750, "lb"),
  14221. name: "Back (Costume)",
  14222. image: {
  14223. source: "./media/characters/regena-maxwell/back-costume.svg",
  14224. extra: 981/854,
  14225. bottom: 57/1038
  14226. }
  14227. },
  14228. },
  14229. [
  14230. {
  14231. name: "Normal",
  14232. height: math.unit(7 + 4 / 12, "feet"),
  14233. default: true
  14234. },
  14235. {
  14236. name: "Macro",
  14237. height: math.unit(220, "feet")
  14238. },
  14239. {
  14240. name: "Megamacro",
  14241. height: math.unit(11, "miles")
  14242. },
  14243. ]
  14244. ))
  14245. characterMakers.push(() => makeCharacter(
  14246. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14247. {
  14248. front: {
  14249. height: math.unit(6, "feet"),
  14250. weight: math.unit(150, "lb"),
  14251. name: "Front",
  14252. image: {
  14253. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14254. extra: 860 / 690,
  14255. bottom: 0.03
  14256. }
  14257. },
  14258. },
  14259. [
  14260. {
  14261. name: "Normal",
  14262. height: math.unit(1.7, "meters"),
  14263. default: true
  14264. },
  14265. ]
  14266. ))
  14267. characterMakers.push(() => makeCharacter(
  14268. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14269. {
  14270. front: {
  14271. height: math.unit(6, "feet"),
  14272. weight: math.unit(150, "lb"),
  14273. name: "Front",
  14274. image: {
  14275. source: "./media/characters/quilly/front.svg",
  14276. extra: 890 / 776
  14277. }
  14278. },
  14279. },
  14280. [
  14281. {
  14282. name: "Gigamacro",
  14283. height: math.unit(404090, "miles"),
  14284. default: true
  14285. },
  14286. ]
  14287. ))
  14288. characterMakers.push(() => makeCharacter(
  14289. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14290. {
  14291. front: {
  14292. height: math.unit(7 + 8 / 12, "feet"),
  14293. weight: math.unit(350, "lb"),
  14294. name: "Front",
  14295. image: {
  14296. source: "./media/characters/tempest/front.svg",
  14297. extra: 1175 / 1086,
  14298. bottom: 0.02
  14299. }
  14300. },
  14301. },
  14302. [
  14303. {
  14304. name: "Normal",
  14305. height: math.unit(7 + 8 / 12, "feet"),
  14306. default: true
  14307. },
  14308. ]
  14309. ))
  14310. characterMakers.push(() => makeCharacter(
  14311. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14312. {
  14313. side: {
  14314. height: math.unit(4 + 5 / 12, "feet"),
  14315. weight: math.unit(80, "lb"),
  14316. name: "Side",
  14317. image: {
  14318. source: "./media/characters/rodger/side.svg",
  14319. extra: 1235 / 1118
  14320. }
  14321. },
  14322. },
  14323. [
  14324. {
  14325. name: "Micro",
  14326. height: math.unit(1, "inch")
  14327. },
  14328. {
  14329. name: "Normal",
  14330. height: math.unit(4 + 5 / 12, "feet"),
  14331. default: true
  14332. },
  14333. {
  14334. name: "Macro",
  14335. height: math.unit(120, "feet")
  14336. },
  14337. ]
  14338. ))
  14339. characterMakers.push(() => makeCharacter(
  14340. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14341. {
  14342. front: {
  14343. height: math.unit(6, "feet"),
  14344. weight: math.unit(150, "lb"),
  14345. name: "Front",
  14346. image: {
  14347. source: "./media/characters/danyel/front.svg",
  14348. extra: 1185 / 1123,
  14349. bottom: 0.05
  14350. }
  14351. },
  14352. },
  14353. [
  14354. {
  14355. name: "Shrunken",
  14356. height: math.unit(0.5, "mm")
  14357. },
  14358. {
  14359. name: "Micro",
  14360. height: math.unit(1, "mm"),
  14361. default: true
  14362. },
  14363. {
  14364. name: "Upsized",
  14365. height: math.unit(5 + 5 / 12, "feet")
  14366. },
  14367. ]
  14368. ))
  14369. characterMakers.push(() => makeCharacter(
  14370. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14371. {
  14372. front: {
  14373. height: math.unit(5 + 6 / 12, "feet"),
  14374. weight: math.unit(200, "lb"),
  14375. name: "Front",
  14376. image: {
  14377. source: "./media/characters/vivian-bijoux/front.svg",
  14378. extra: 1217/1209,
  14379. bottom: 76/1293
  14380. }
  14381. },
  14382. back: {
  14383. height: math.unit(5 + 6 / 12, "feet"),
  14384. weight: math.unit(200, "lb"),
  14385. name: "Back",
  14386. image: {
  14387. source: "./media/characters/vivian-bijoux/back.svg",
  14388. extra: 1214/1208,
  14389. bottom: 51/1265
  14390. }
  14391. },
  14392. dressed: {
  14393. height: math.unit(5 + 6 / 12, "feet"),
  14394. weight: math.unit(200, "lb"),
  14395. name: "Dressed",
  14396. image: {
  14397. source: "./media/characters/vivian-bijoux/dressed.svg",
  14398. extra: 1217/1209,
  14399. bottom: 76/1293
  14400. }
  14401. },
  14402. },
  14403. [
  14404. {
  14405. name: "Normal",
  14406. height: math.unit(5 + 6 / 12, "feet"),
  14407. default: true
  14408. },
  14409. {
  14410. name: "Bad Dream",
  14411. height: math.unit(500, "feet")
  14412. },
  14413. {
  14414. name: "Nightmare",
  14415. height: math.unit(500, "miles")
  14416. },
  14417. ]
  14418. ))
  14419. characterMakers.push(() => makeCharacter(
  14420. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14421. {
  14422. front: {
  14423. height: math.unit(6 + 1 / 12, "feet"),
  14424. weight: math.unit(260, "lb"),
  14425. name: "Front",
  14426. image: {
  14427. source: "./media/characters/zeta/front.svg",
  14428. extra: 1968 / 1889,
  14429. bottom: 0.06
  14430. }
  14431. },
  14432. back: {
  14433. height: math.unit(6 + 1 / 12, "feet"),
  14434. weight: math.unit(260, "lb"),
  14435. name: "Back",
  14436. image: {
  14437. source: "./media/characters/zeta/back.svg",
  14438. extra: 1944 / 1858,
  14439. bottom: 0.03
  14440. }
  14441. },
  14442. hand: {
  14443. height: math.unit(1.112, "feet"),
  14444. name: "Hand",
  14445. image: {
  14446. source: "./media/characters/zeta/hand.svg"
  14447. }
  14448. },
  14449. foot: {
  14450. height: math.unit(1.48, "feet"),
  14451. name: "Foot",
  14452. image: {
  14453. source: "./media/characters/zeta/foot.svg"
  14454. }
  14455. },
  14456. },
  14457. [
  14458. {
  14459. name: "Micro",
  14460. height: math.unit(6, "inches")
  14461. },
  14462. {
  14463. name: "Normal",
  14464. height: math.unit(6 + 1 / 12, "feet"),
  14465. default: true
  14466. },
  14467. {
  14468. name: "Macro",
  14469. height: math.unit(20, "feet")
  14470. },
  14471. ]
  14472. ))
  14473. characterMakers.push(() => makeCharacter(
  14474. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14475. {
  14476. front: {
  14477. height: math.unit(6, "feet"),
  14478. weight: math.unit(150, "lb"),
  14479. name: "Front",
  14480. image: {
  14481. source: "./media/characters/jamie-larsen/front.svg",
  14482. extra: 962 / 933,
  14483. bottom: 0.02
  14484. }
  14485. },
  14486. back: {
  14487. height: math.unit(6, "feet"),
  14488. weight: math.unit(150, "lb"),
  14489. name: "Back",
  14490. image: {
  14491. source: "./media/characters/jamie-larsen/back.svg",
  14492. extra: 997 / 946
  14493. }
  14494. },
  14495. },
  14496. [
  14497. {
  14498. name: "Macro",
  14499. height: math.unit(28 + 7 / 12, "feet"),
  14500. default: true
  14501. },
  14502. {
  14503. name: "Macro+",
  14504. height: math.unit(180, "feet")
  14505. },
  14506. {
  14507. name: "Megamacro",
  14508. height: math.unit(10, "miles")
  14509. },
  14510. {
  14511. name: "Gigamacro",
  14512. height: math.unit(200000, "miles")
  14513. },
  14514. ]
  14515. ))
  14516. characterMakers.push(() => makeCharacter(
  14517. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14518. {
  14519. front: {
  14520. height: math.unit(6, "feet"),
  14521. weight: math.unit(120, "lb"),
  14522. name: "Front",
  14523. image: {
  14524. source: "./media/characters/vance/front.svg",
  14525. extra: 1980 / 1890,
  14526. bottom: 0.09
  14527. }
  14528. },
  14529. back: {
  14530. height: math.unit(6, "feet"),
  14531. weight: math.unit(120, "lb"),
  14532. name: "Back",
  14533. image: {
  14534. source: "./media/characters/vance/back.svg",
  14535. extra: 2081 / 1994,
  14536. bottom: 0.014
  14537. }
  14538. },
  14539. hand: {
  14540. height: math.unit(0.88, "feet"),
  14541. name: "Hand",
  14542. image: {
  14543. source: "./media/characters/vance/hand.svg"
  14544. }
  14545. },
  14546. foot: {
  14547. height: math.unit(0.64, "feet"),
  14548. name: "Foot",
  14549. image: {
  14550. source: "./media/characters/vance/foot.svg"
  14551. }
  14552. },
  14553. },
  14554. [
  14555. {
  14556. name: "Small",
  14557. height: math.unit(90, "feet"),
  14558. default: true
  14559. },
  14560. {
  14561. name: "Macro",
  14562. height: math.unit(100, "meters")
  14563. },
  14564. {
  14565. name: "Megamacro",
  14566. height: math.unit(15, "miles")
  14567. },
  14568. ]
  14569. ))
  14570. characterMakers.push(() => makeCharacter(
  14571. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14572. {
  14573. front: {
  14574. height: math.unit(6, "feet"),
  14575. weight: math.unit(180, "lb"),
  14576. name: "Front",
  14577. image: {
  14578. source: "./media/characters/xochitl/front.svg",
  14579. extra: 2297 / 2261,
  14580. bottom: 0.065
  14581. }
  14582. },
  14583. back: {
  14584. height: math.unit(6, "feet"),
  14585. weight: math.unit(180, "lb"),
  14586. name: "Back",
  14587. image: {
  14588. source: "./media/characters/xochitl/back.svg",
  14589. extra: 2386 / 2354,
  14590. bottom: 0.01
  14591. }
  14592. },
  14593. foot: {
  14594. height: math.unit(6 / 5 * 1.15, "feet"),
  14595. weight: math.unit(150, "lb"),
  14596. name: "Foot",
  14597. image: {
  14598. source: "./media/characters/xochitl/foot.svg"
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Macro",
  14605. height: math.unit(80, "feet")
  14606. },
  14607. {
  14608. name: "Macro+",
  14609. height: math.unit(400, "feet"),
  14610. default: true
  14611. },
  14612. {
  14613. name: "Gigamacro",
  14614. height: math.unit(80000, "miles")
  14615. },
  14616. {
  14617. name: "Gigamacro+",
  14618. height: math.unit(400000, "miles")
  14619. },
  14620. {
  14621. name: "Teramacro",
  14622. height: math.unit(300, "AU")
  14623. },
  14624. ]
  14625. ))
  14626. characterMakers.push(() => makeCharacter(
  14627. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14628. {
  14629. front: {
  14630. height: math.unit(6, "feet"),
  14631. weight: math.unit(150, "lb"),
  14632. name: "Front",
  14633. image: {
  14634. source: "./media/characters/vincent/front.svg",
  14635. extra: 1130 / 1080,
  14636. bottom: 0.055
  14637. }
  14638. },
  14639. beak: {
  14640. height: math.unit(6 * 0.1, "feet"),
  14641. name: "Beak",
  14642. image: {
  14643. source: "./media/characters/vincent/beak.svg"
  14644. }
  14645. },
  14646. hand: {
  14647. height: math.unit(6 * 0.85, "feet"),
  14648. weight: math.unit(150, "lb"),
  14649. name: "Hand",
  14650. image: {
  14651. source: "./media/characters/vincent/hand.svg"
  14652. }
  14653. },
  14654. foot: {
  14655. height: math.unit(6 * 0.19, "feet"),
  14656. weight: math.unit(150, "lb"),
  14657. name: "Foot",
  14658. image: {
  14659. source: "./media/characters/vincent/foot.svg"
  14660. }
  14661. },
  14662. },
  14663. [
  14664. {
  14665. name: "Base",
  14666. height: math.unit(6 + 5 / 12, "feet"),
  14667. default: true
  14668. },
  14669. {
  14670. name: "Macro",
  14671. height: math.unit(300, "feet")
  14672. },
  14673. {
  14674. name: "Megamacro",
  14675. height: math.unit(2, "miles")
  14676. },
  14677. {
  14678. name: "Gigamacro",
  14679. height: math.unit(1000, "miles")
  14680. },
  14681. ]
  14682. ))
  14683. characterMakers.push(() => makeCharacter(
  14684. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14685. {
  14686. front: {
  14687. height: math.unit(2, "meters"),
  14688. weight: math.unit(500, "kg"),
  14689. name: "Front",
  14690. image: {
  14691. source: "./media/characters/coatl/front.svg",
  14692. extra: 3948 / 3500,
  14693. bottom: 0.082
  14694. }
  14695. },
  14696. },
  14697. [
  14698. {
  14699. name: "Normal",
  14700. height: math.unit(4, "meters")
  14701. },
  14702. {
  14703. name: "Macro",
  14704. height: math.unit(100, "meters"),
  14705. default: true
  14706. },
  14707. {
  14708. name: "Macro+",
  14709. height: math.unit(300, "meters")
  14710. },
  14711. {
  14712. name: "Megamacro",
  14713. height: math.unit(3, "gigameters")
  14714. },
  14715. {
  14716. name: "Megamacro+",
  14717. height: math.unit(300, "terameters")
  14718. },
  14719. {
  14720. name: "Megamacro++",
  14721. height: math.unit(3, "lightyears")
  14722. },
  14723. ]
  14724. ))
  14725. characterMakers.push(() => makeCharacter(
  14726. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14727. {
  14728. front: {
  14729. height: math.unit(6, "feet"),
  14730. weight: math.unit(50, "kg"),
  14731. name: "front",
  14732. image: {
  14733. source: "./media/characters/shiroryu/front.svg",
  14734. extra: 1990 / 1935
  14735. }
  14736. },
  14737. },
  14738. [
  14739. {
  14740. name: "Mortal Mingling",
  14741. height: math.unit(3, "meters")
  14742. },
  14743. {
  14744. name: "Kaiju-ish",
  14745. height: math.unit(250, "meters")
  14746. },
  14747. {
  14748. name: "Somewhat Godly",
  14749. height: math.unit(400, "km"),
  14750. default: true
  14751. },
  14752. {
  14753. name: "Planetary",
  14754. height: math.unit(300, "megameters")
  14755. },
  14756. {
  14757. name: "Galaxy-dwarfing",
  14758. height: math.unit(450, "kiloparsecs")
  14759. },
  14760. {
  14761. name: "Universe Eater",
  14762. height: math.unit(150, "gigaparsecs")
  14763. },
  14764. {
  14765. name: "Almost Immeasurable",
  14766. height: math.unit(1.3e266, "yottaparsecs")
  14767. },
  14768. ]
  14769. ))
  14770. characterMakers.push(() => makeCharacter(
  14771. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14772. {
  14773. front: {
  14774. height: math.unit(6, "feet"),
  14775. weight: math.unit(150, "lb"),
  14776. name: "Front",
  14777. image: {
  14778. source: "./media/characters/umeko/front.svg",
  14779. extra: 1,
  14780. bottom: 0.019
  14781. }
  14782. },
  14783. frontArmored: {
  14784. height: math.unit(6, "feet"),
  14785. weight: math.unit(150, "lb"),
  14786. name: "Front (Armored)",
  14787. image: {
  14788. source: "./media/characters/umeko/front-armored.svg",
  14789. extra: 1,
  14790. bottom: 0.021
  14791. }
  14792. },
  14793. },
  14794. [
  14795. {
  14796. name: "Macro",
  14797. height: math.unit(220, "feet"),
  14798. default: true
  14799. },
  14800. {
  14801. name: "Guardian Dragon",
  14802. height: math.unit(50, "miles")
  14803. },
  14804. {
  14805. name: "Cosmic",
  14806. height: math.unit(800000, "miles")
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14812. {
  14813. front: {
  14814. height: math.unit(6, "feet"),
  14815. weight: math.unit(150, "lb"),
  14816. name: "Front",
  14817. image: {
  14818. source: "./media/characters/cassidy/front.svg",
  14819. extra: 810/808,
  14820. bottom: 41/851
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Canon Height",
  14827. height: math.unit(120, "feet"),
  14828. default: true
  14829. },
  14830. {
  14831. name: "Macro+",
  14832. height: math.unit(400, "feet")
  14833. },
  14834. {
  14835. name: "Macro++",
  14836. height: math.unit(4000, "feet")
  14837. },
  14838. {
  14839. name: "Megamacro",
  14840. height: math.unit(3, "miles")
  14841. },
  14842. ]
  14843. ))
  14844. characterMakers.push(() => makeCharacter(
  14845. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14846. {
  14847. front: {
  14848. height: math.unit(6, "feet"),
  14849. weight: math.unit(150, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/isaac/front.svg",
  14853. extra: 896 / 815,
  14854. bottom: 0.11
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Human Size",
  14861. height: math.unit(8, "feet"),
  14862. default: true
  14863. },
  14864. {
  14865. name: "Macro",
  14866. height: math.unit(400, "feet")
  14867. },
  14868. {
  14869. name: "Megamacro",
  14870. height: math.unit(50, "miles")
  14871. },
  14872. {
  14873. name: "Canon Height",
  14874. height: math.unit(200, "AU")
  14875. },
  14876. ]
  14877. ))
  14878. characterMakers.push(() => makeCharacter(
  14879. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14880. {
  14881. front: {
  14882. height: math.unit(6, "feet"),
  14883. weight: math.unit(72, "kg"),
  14884. name: "Front",
  14885. image: {
  14886. source: "./media/characters/sleekit/front.svg",
  14887. extra: 4693 / 4487,
  14888. bottom: 0.012
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Minimum Height",
  14895. height: math.unit(10, "meters")
  14896. },
  14897. {
  14898. name: "Smaller",
  14899. height: math.unit(25, "meters")
  14900. },
  14901. {
  14902. name: "Larger",
  14903. height: math.unit(38, "meters"),
  14904. default: true
  14905. },
  14906. {
  14907. name: "Maximum height",
  14908. height: math.unit(100, "meters")
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14914. {
  14915. front: {
  14916. height: math.unit(6, "feet"),
  14917. weight: math.unit(150, "lb"),
  14918. name: "Front",
  14919. image: {
  14920. source: "./media/characters/nillia/front.svg",
  14921. extra: 2195 / 2037,
  14922. bottom: 0.005
  14923. }
  14924. },
  14925. back: {
  14926. height: math.unit(6, "feet"),
  14927. weight: math.unit(150, "lb"),
  14928. name: "Back",
  14929. image: {
  14930. source: "./media/characters/nillia/back.svg",
  14931. extra: 2195 / 2037,
  14932. bottom: 0.005
  14933. }
  14934. },
  14935. },
  14936. [
  14937. {
  14938. name: "Canon Height",
  14939. height: math.unit(489, "feet"),
  14940. default: true
  14941. }
  14942. ]
  14943. ))
  14944. characterMakers.push(() => makeCharacter(
  14945. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14946. {
  14947. front: {
  14948. height: math.unit(6, "feet"),
  14949. weight: math.unit(150, "lb"),
  14950. name: "Front",
  14951. image: {
  14952. source: "./media/characters/mesmyriza/front.svg",
  14953. extra: 2067 / 1784,
  14954. bottom: 0.035
  14955. }
  14956. },
  14957. foot: {
  14958. height: math.unit(6 / (250 / 35), "feet"),
  14959. name: "Foot",
  14960. image: {
  14961. source: "./media/characters/mesmyriza/foot.svg"
  14962. }
  14963. },
  14964. },
  14965. [
  14966. {
  14967. name: "Macro",
  14968. height: math.unit(457, "meters"),
  14969. default: true
  14970. },
  14971. {
  14972. name: "Megamacro",
  14973. height: math.unit(8, "megameters")
  14974. },
  14975. ]
  14976. ))
  14977. characterMakers.push(() => makeCharacter(
  14978. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14979. {
  14980. front: {
  14981. height: math.unit(6, "feet"),
  14982. weight: math.unit(250, "lb"),
  14983. name: "Front",
  14984. image: {
  14985. source: "./media/characters/saudade/front.svg",
  14986. extra: 1172 / 1139,
  14987. bottom: 0.035
  14988. }
  14989. },
  14990. },
  14991. [
  14992. {
  14993. name: "Micro",
  14994. height: math.unit(3, "inches")
  14995. },
  14996. {
  14997. name: "Normal",
  14998. height: math.unit(6, "feet"),
  14999. default: true
  15000. },
  15001. {
  15002. name: "Macro",
  15003. height: math.unit(50, "feet")
  15004. },
  15005. {
  15006. name: "Megamacro",
  15007. height: math.unit(2800, "feet")
  15008. },
  15009. ]
  15010. ))
  15011. characterMakers.push(() => makeCharacter(
  15012. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15013. {
  15014. front: {
  15015. height: math.unit(5 + 4 / 12, "feet"),
  15016. weight: math.unit(100, "lb"),
  15017. name: "Front",
  15018. image: {
  15019. source: "./media/characters/keireer/front.svg",
  15020. extra: 716 / 666,
  15021. bottom: 0.05
  15022. }
  15023. },
  15024. },
  15025. [
  15026. {
  15027. name: "Normal",
  15028. height: math.unit(5 + 4 / 12, "feet"),
  15029. default: true
  15030. },
  15031. ]
  15032. ))
  15033. characterMakers.push(() => makeCharacter(
  15034. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15035. {
  15036. front: {
  15037. height: math.unit(6, "feet"),
  15038. weight: math.unit(90, "kg"),
  15039. name: "Front",
  15040. image: {
  15041. source: "./media/characters/mirja/front.svg",
  15042. extra: 1789 / 1683,
  15043. bottom: 0.05
  15044. }
  15045. },
  15046. frontDressed: {
  15047. height: math.unit(6, "feet"),
  15048. weight: math.unit(90, "lb"),
  15049. name: "Front (Dressed)",
  15050. image: {
  15051. source: "./media/characters/mirja/front-dressed.svg",
  15052. extra: 1789 / 1683,
  15053. bottom: 0.05
  15054. }
  15055. },
  15056. back: {
  15057. height: math.unit(6, "feet"),
  15058. weight: math.unit(90, "lb"),
  15059. name: "Back",
  15060. image: {
  15061. source: "./media/characters/mirja/back.svg",
  15062. extra: 953 / 917,
  15063. bottom: 0.017
  15064. }
  15065. },
  15066. },
  15067. [
  15068. {
  15069. name: "\"Incognito\"",
  15070. height: math.unit(3, "meters")
  15071. },
  15072. {
  15073. name: "Strolling Size",
  15074. height: math.unit(15, "km")
  15075. },
  15076. {
  15077. name: "Larger Strolling Size",
  15078. height: math.unit(400, "km")
  15079. },
  15080. {
  15081. name: "Preferred Size",
  15082. height: math.unit(5000, "km")
  15083. },
  15084. {
  15085. name: "True Size",
  15086. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15087. default: true
  15088. },
  15089. ]
  15090. ))
  15091. characterMakers.push(() => makeCharacter(
  15092. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15093. {
  15094. front: {
  15095. height: math.unit(15, "feet"),
  15096. weight: math.unit(880, "kg"),
  15097. name: "Front",
  15098. image: {
  15099. source: "./media/characters/nightraver/front.svg",
  15100. extra: 2444 / 2160,
  15101. bottom: 0.027
  15102. }
  15103. },
  15104. back: {
  15105. height: math.unit(15, "feet"),
  15106. weight: math.unit(880, "kg"),
  15107. name: "Back",
  15108. image: {
  15109. source: "./media/characters/nightraver/back.svg",
  15110. extra: 2309 / 2180,
  15111. bottom: 0.005
  15112. }
  15113. },
  15114. sole: {
  15115. height: math.unit(2.878, "feet"),
  15116. name: "Sole",
  15117. image: {
  15118. source: "./media/characters/nightraver/sole.svg"
  15119. }
  15120. },
  15121. foot: {
  15122. height: math.unit(2.285, "feet"),
  15123. name: "Foot",
  15124. image: {
  15125. source: "./media/characters/nightraver/foot.svg"
  15126. }
  15127. },
  15128. maw: {
  15129. height: math.unit(2.67, "feet"),
  15130. name: "Maw",
  15131. image: {
  15132. source: "./media/characters/nightraver/maw.svg"
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Micro",
  15139. height: math.unit(1, "cm")
  15140. },
  15141. {
  15142. name: "Normal",
  15143. height: math.unit(15, "feet"),
  15144. default: true
  15145. },
  15146. {
  15147. name: "Macro",
  15148. height: math.unit(300, "feet")
  15149. },
  15150. {
  15151. name: "Megamacro",
  15152. height: math.unit(300, "miles")
  15153. },
  15154. {
  15155. name: "Gigamacro",
  15156. height: math.unit(10000, "miles")
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15162. {
  15163. side: {
  15164. height: math.unit(2, "inches"),
  15165. weight: math.unit(5, "grams"),
  15166. name: "Side",
  15167. image: {
  15168. source: "./media/characters/arc/side.svg"
  15169. }
  15170. },
  15171. },
  15172. [
  15173. {
  15174. name: "Micro",
  15175. height: math.unit(2, "inches"),
  15176. default: true
  15177. },
  15178. ]
  15179. ))
  15180. characterMakers.push(() => makeCharacter(
  15181. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15182. {
  15183. front: {
  15184. height: math.unit(1.1938, "meters"),
  15185. weight: math.unit(54, "kg"),
  15186. name: "Front",
  15187. image: {
  15188. source: "./media/characters/nebula-shahar/front.svg",
  15189. extra: 1642 / 1436,
  15190. bottom: 0.06
  15191. }
  15192. },
  15193. },
  15194. [
  15195. {
  15196. name: "Megamicro",
  15197. height: math.unit(0.3, "mm")
  15198. },
  15199. {
  15200. name: "Micro",
  15201. height: math.unit(3, "cm")
  15202. },
  15203. {
  15204. name: "Normal",
  15205. height: math.unit(138, "cm"),
  15206. default: true
  15207. },
  15208. {
  15209. name: "Macro",
  15210. height: math.unit(30, "m")
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15216. {
  15217. front: {
  15218. height: math.unit(5.24, "feet"),
  15219. weight: math.unit(150, "lb"),
  15220. name: "Front",
  15221. image: {
  15222. source: "./media/characters/shayla/front.svg",
  15223. extra: 1512 / 1414,
  15224. bottom: 0.01
  15225. }
  15226. },
  15227. back: {
  15228. height: math.unit(5.24, "feet"),
  15229. weight: math.unit(150, "lb"),
  15230. name: "Back",
  15231. image: {
  15232. source: "./media/characters/shayla/back.svg",
  15233. extra: 1512 / 1414
  15234. }
  15235. },
  15236. hand: {
  15237. height: math.unit(0.7781496062992126, "feet"),
  15238. name: "Hand",
  15239. image: {
  15240. source: "./media/characters/shayla/hand.svg"
  15241. }
  15242. },
  15243. foot: {
  15244. height: math.unit(1.4206036745406823, "feet"),
  15245. name: "Foot",
  15246. image: {
  15247. source: "./media/characters/shayla/foot.svg"
  15248. }
  15249. },
  15250. },
  15251. [
  15252. {
  15253. name: "Micro",
  15254. height: math.unit(0.32, "feet")
  15255. },
  15256. {
  15257. name: "Normal",
  15258. height: math.unit(5.24, "feet"),
  15259. default: true
  15260. },
  15261. {
  15262. name: "Macro",
  15263. height: math.unit(492.12, "feet")
  15264. },
  15265. {
  15266. name: "Megamacro",
  15267. height: math.unit(186.41, "miles")
  15268. },
  15269. ]
  15270. ))
  15271. characterMakers.push(() => makeCharacter(
  15272. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15273. {
  15274. front: {
  15275. height: math.unit(2.2, "m"),
  15276. weight: math.unit(120, "kg"),
  15277. name: "Front",
  15278. image: {
  15279. source: "./media/characters/pia-jr/front.svg",
  15280. extra: 1000 / 970,
  15281. bottom: 0.035
  15282. }
  15283. },
  15284. hand: {
  15285. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15286. name: "Hand",
  15287. image: {
  15288. source: "./media/characters/pia-jr/hand.svg"
  15289. }
  15290. },
  15291. paw: {
  15292. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15293. name: "Paw",
  15294. image: {
  15295. source: "./media/characters/pia-jr/paw.svg"
  15296. }
  15297. },
  15298. },
  15299. [
  15300. {
  15301. name: "Micro",
  15302. height: math.unit(1.2, "cm")
  15303. },
  15304. {
  15305. name: "Normal",
  15306. height: math.unit(2.2, "m"),
  15307. default: true
  15308. },
  15309. {
  15310. name: "Macro",
  15311. height: math.unit(180, "m")
  15312. },
  15313. {
  15314. name: "Megamacro",
  15315. height: math.unit(420, "km")
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15321. {
  15322. front: {
  15323. height: math.unit(2, "m"),
  15324. weight: math.unit(115, "kg"),
  15325. name: "Front",
  15326. image: {
  15327. source: "./media/characters/pia-sr/front.svg",
  15328. extra: 760 / 730,
  15329. bottom: 0.015
  15330. }
  15331. },
  15332. back: {
  15333. height: math.unit(2, "m"),
  15334. weight: math.unit(115, "kg"),
  15335. name: "Back",
  15336. image: {
  15337. source: "./media/characters/pia-sr/back.svg",
  15338. extra: 760 / 730,
  15339. bottom: 0.01
  15340. }
  15341. },
  15342. hand: {
  15343. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15344. name: "Hand",
  15345. image: {
  15346. source: "./media/characters/pia-sr/hand.svg"
  15347. }
  15348. },
  15349. foot: {
  15350. height: math.unit(1.83, "feet"),
  15351. name: "Foot",
  15352. image: {
  15353. source: "./media/characters/pia-sr/foot.svg"
  15354. }
  15355. },
  15356. },
  15357. [
  15358. {
  15359. name: "Micro",
  15360. height: math.unit(88, "mm")
  15361. },
  15362. {
  15363. name: "Normal",
  15364. height: math.unit(2, "m"),
  15365. default: true
  15366. },
  15367. {
  15368. name: "Macro",
  15369. height: math.unit(200, "m")
  15370. },
  15371. {
  15372. name: "Megamacro",
  15373. height: math.unit(420, "km")
  15374. },
  15375. ]
  15376. ))
  15377. characterMakers.push(() => makeCharacter(
  15378. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15379. {
  15380. front: {
  15381. height: math.unit(8 + 2 / 12, "feet"),
  15382. weight: math.unit(300, "lb"),
  15383. name: "Front",
  15384. image: {
  15385. source: "./media/characters/kibibyte/front.svg",
  15386. extra: 2221 / 2098,
  15387. bottom: 0.04
  15388. }
  15389. },
  15390. },
  15391. [
  15392. {
  15393. name: "Normal",
  15394. height: math.unit(8 + 2 / 12, "feet"),
  15395. default: true
  15396. },
  15397. {
  15398. name: "Socialable Macro",
  15399. height: math.unit(50, "feet")
  15400. },
  15401. {
  15402. name: "Macro",
  15403. height: math.unit(300, "feet")
  15404. },
  15405. {
  15406. name: "Megamacro",
  15407. height: math.unit(500, "miles")
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(6, "feet"),
  15416. weight: math.unit(150, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/felix/front.svg",
  15420. extra: 762 / 722,
  15421. bottom: 0.02
  15422. }
  15423. },
  15424. frontClothed: {
  15425. height: math.unit(6, "feet"),
  15426. weight: math.unit(150, "lb"),
  15427. name: "Front (Clothed)",
  15428. image: {
  15429. source: "./media/characters/felix/front-clothed.svg",
  15430. extra: 762 / 722,
  15431. bottom: 0.02
  15432. }
  15433. },
  15434. },
  15435. [
  15436. {
  15437. name: "Normal",
  15438. height: math.unit(6 + 8 / 12, "feet"),
  15439. default: true
  15440. },
  15441. {
  15442. name: "Macro",
  15443. height: math.unit(2600, "feet")
  15444. },
  15445. {
  15446. name: "Megamacro",
  15447. height: math.unit(450, "miles")
  15448. },
  15449. ]
  15450. ))
  15451. characterMakers.push(() => makeCharacter(
  15452. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15453. {
  15454. front: {
  15455. height: math.unit(6 + 1 / 12, "feet"),
  15456. weight: math.unit(250, "lb"),
  15457. name: "Front",
  15458. image: {
  15459. source: "./media/characters/tobo/front.svg",
  15460. extra: 608 / 586,
  15461. bottom: 0.023
  15462. }
  15463. },
  15464. back: {
  15465. height: math.unit(6 + 1 / 12, "feet"),
  15466. weight: math.unit(250, "lb"),
  15467. name: "Back",
  15468. image: {
  15469. source: "./media/characters/tobo/back.svg",
  15470. extra: 608 / 586
  15471. }
  15472. },
  15473. },
  15474. [
  15475. {
  15476. name: "Nano",
  15477. height: math.unit(2, "nm")
  15478. },
  15479. {
  15480. name: "Megamicro",
  15481. height: math.unit(0.1, "mm")
  15482. },
  15483. {
  15484. name: "Micro",
  15485. height: math.unit(1, "inch"),
  15486. default: true
  15487. },
  15488. {
  15489. name: "Human-sized",
  15490. height: math.unit(6 + 1 / 12, "feet")
  15491. },
  15492. {
  15493. name: "Macro",
  15494. height: math.unit(250, "feet")
  15495. },
  15496. {
  15497. name: "Megamacro",
  15498. height: math.unit(75, "miles")
  15499. },
  15500. {
  15501. name: "Texas-sized",
  15502. height: math.unit(750, "miles")
  15503. },
  15504. {
  15505. name: "Teramacro",
  15506. height: math.unit(50000, "miles")
  15507. },
  15508. ]
  15509. ))
  15510. characterMakers.push(() => makeCharacter(
  15511. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15512. {
  15513. front: {
  15514. height: math.unit(6, "feet"),
  15515. weight: math.unit(269, "lb"),
  15516. name: "Front",
  15517. image: {
  15518. source: "./media/characters/danny-kapowsky/front.svg",
  15519. extra: 766 / 736,
  15520. bottom: 0.044
  15521. }
  15522. },
  15523. back: {
  15524. height: math.unit(6, "feet"),
  15525. weight: math.unit(269, "lb"),
  15526. name: "Back",
  15527. image: {
  15528. source: "./media/characters/danny-kapowsky/back.svg",
  15529. extra: 797 / 760,
  15530. bottom: 0.025
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Macro",
  15537. height: math.unit(150, "feet"),
  15538. default: true
  15539. },
  15540. {
  15541. name: "Macro+",
  15542. height: math.unit(200, "feet")
  15543. },
  15544. {
  15545. name: "Macro++",
  15546. height: math.unit(300, "feet")
  15547. },
  15548. {
  15549. name: "Macro+++",
  15550. height: math.unit(400, "feet")
  15551. },
  15552. ]
  15553. ))
  15554. characterMakers.push(() => makeCharacter(
  15555. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15556. {
  15557. side: {
  15558. height: math.unit(6, "feet"),
  15559. weight: math.unit(170, "lb"),
  15560. name: "Side",
  15561. image: {
  15562. source: "./media/characters/finn/side.svg",
  15563. extra: 1953 / 1807,
  15564. bottom: 0.057
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Megamacro",
  15571. height: math.unit(14445, "feet"),
  15572. default: true
  15573. },
  15574. ]
  15575. ))
  15576. characterMakers.push(() => makeCharacter(
  15577. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15578. {
  15579. front: {
  15580. height: math.unit(5 + 6 / 12, "feet"),
  15581. weight: math.unit(125, "lb"),
  15582. name: "Front",
  15583. image: {
  15584. source: "./media/characters/roy/front.svg",
  15585. extra: 1,
  15586. bottom: 0.11
  15587. }
  15588. },
  15589. },
  15590. [
  15591. {
  15592. name: "Micro",
  15593. height: math.unit(3, "inches"),
  15594. default: true
  15595. },
  15596. {
  15597. name: "Normal",
  15598. height: math.unit(5 + 6 / 12, "feet")
  15599. },
  15600. {
  15601. name: "Lesser Macro",
  15602. height: math.unit(60, "feet")
  15603. },
  15604. {
  15605. name: "Greater Macro",
  15606. height: math.unit(120, "feet")
  15607. },
  15608. ]
  15609. ))
  15610. characterMakers.push(() => makeCharacter(
  15611. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15612. {
  15613. front: {
  15614. height: math.unit(6, "feet"),
  15615. weight: math.unit(100, "lb"),
  15616. name: "Front",
  15617. image: {
  15618. source: "./media/characters/aevsivs/front.svg",
  15619. extra: 1,
  15620. bottom: 0.03
  15621. }
  15622. },
  15623. back: {
  15624. height: math.unit(6, "feet"),
  15625. weight: math.unit(100, "lb"),
  15626. name: "Back",
  15627. image: {
  15628. source: "./media/characters/aevsivs/back.svg"
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Micro",
  15635. height: math.unit(2, "inches"),
  15636. default: true
  15637. },
  15638. {
  15639. name: "Normal",
  15640. height: math.unit(5, "feet")
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15646. {
  15647. front: {
  15648. height: math.unit(5 + 7 / 12, "feet"),
  15649. weight: math.unit(159, "lb"),
  15650. name: "Front",
  15651. image: {
  15652. source: "./media/characters/hildegard/front.svg",
  15653. extra: 289 / 269,
  15654. bottom: 7.63 / 297.8
  15655. }
  15656. },
  15657. back: {
  15658. height: math.unit(5 + 7 / 12, "feet"),
  15659. weight: math.unit(159, "lb"),
  15660. name: "Back",
  15661. image: {
  15662. source: "./media/characters/hildegard/back.svg",
  15663. extra: 280 / 260,
  15664. bottom: 2.3 / 282
  15665. }
  15666. },
  15667. },
  15668. [
  15669. {
  15670. name: "Normal",
  15671. height: math.unit(5 + 7 / 12, "feet"),
  15672. default: true
  15673. },
  15674. ]
  15675. ))
  15676. characterMakers.push(() => makeCharacter(
  15677. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15678. {
  15679. bernard: {
  15680. height: math.unit(2 + 7 / 12, "feet"),
  15681. weight: math.unit(66, "lb"),
  15682. name: "Bernard",
  15683. rename: true,
  15684. image: {
  15685. source: "./media/characters/bernard-wilder/bernard.svg",
  15686. extra: 192 / 128,
  15687. bottom: 0.05
  15688. }
  15689. },
  15690. wilder: {
  15691. height: math.unit(5 + 8 / 12, "feet"),
  15692. weight: math.unit(143, "lb"),
  15693. name: "Wilder",
  15694. rename: true,
  15695. image: {
  15696. source: "./media/characters/bernard-wilder/wilder.svg",
  15697. extra: 361 / 312,
  15698. bottom: 0.02
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(2 + 7 / 12, "feet"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15712. {
  15713. anthro: {
  15714. height: math.unit(6 + 1 / 12, "feet"),
  15715. weight: math.unit(155, "lb"),
  15716. name: "Anthro",
  15717. image: {
  15718. source: "./media/characters/hearth/anthro.svg",
  15719. extra: 1178/1136,
  15720. bottom: 28/1206
  15721. }
  15722. },
  15723. feral: {
  15724. height: math.unit(3.78, "feet"),
  15725. weight: math.unit(35, "kg"),
  15726. name: "Feral",
  15727. image: {
  15728. source: "./media/characters/hearth/feral.svg",
  15729. extra: 153 / 135,
  15730. bottom: 0.03
  15731. }
  15732. },
  15733. },
  15734. [
  15735. {
  15736. name: "Normal",
  15737. height: math.unit(6 + 1 / 12, "feet"),
  15738. default: true
  15739. },
  15740. ]
  15741. ))
  15742. characterMakers.push(() => makeCharacter(
  15743. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15744. {
  15745. front: {
  15746. height: math.unit(6, "feet"),
  15747. weight: math.unit(182, "lb"),
  15748. name: "Front",
  15749. image: {
  15750. source: "./media/characters/ingrid/front.svg",
  15751. extra: 294 / 268,
  15752. bottom: 0.027
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Normal",
  15759. height: math.unit(6, "feet"),
  15760. default: true
  15761. },
  15762. ]
  15763. ))
  15764. characterMakers.push(() => makeCharacter(
  15765. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15766. {
  15767. eevee: {
  15768. height: math.unit(2 + 10 / 12, "feet"),
  15769. weight: math.unit(86, "lb"),
  15770. name: "Malgam",
  15771. image: {
  15772. source: "./media/characters/malgam/eevee.svg",
  15773. extra: 952/784,
  15774. bottom: 38/990
  15775. }
  15776. },
  15777. sylveon: {
  15778. height: math.unit(4, "feet"),
  15779. weight: math.unit(101, "lb"),
  15780. name: "Future Malgam",
  15781. rename: true,
  15782. image: {
  15783. source: "./media/characters/malgam/sylveon.svg",
  15784. extra: 371 / 325,
  15785. bottom: 0.015
  15786. }
  15787. },
  15788. gigantamax: {
  15789. height: math.unit(50, "feet"),
  15790. name: "Gigantamax Malgam",
  15791. rename: true,
  15792. image: {
  15793. source: "./media/characters/malgam/gigantamax.svg"
  15794. }
  15795. },
  15796. },
  15797. [
  15798. {
  15799. name: "Normal",
  15800. height: math.unit(2 + 10 / 12, "feet"),
  15801. default: true
  15802. },
  15803. ]
  15804. ))
  15805. characterMakers.push(() => makeCharacter(
  15806. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15807. {
  15808. front: {
  15809. height: math.unit(5 + 11 / 12, "feet"),
  15810. weight: math.unit(188, "lb"),
  15811. name: "Front",
  15812. image: {
  15813. source: "./media/characters/fleur/front.svg",
  15814. extra: 309 / 283,
  15815. bottom: 0.007
  15816. }
  15817. },
  15818. },
  15819. [
  15820. {
  15821. name: "Normal",
  15822. height: math.unit(5 + 11 / 12, "feet"),
  15823. default: true
  15824. },
  15825. ]
  15826. ))
  15827. characterMakers.push(() => makeCharacter(
  15828. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15829. {
  15830. front: {
  15831. height: math.unit(5 + 4 / 12, "feet"),
  15832. weight: math.unit(122, "lb"),
  15833. name: "Front",
  15834. image: {
  15835. source: "./media/characters/jude/front.svg",
  15836. extra: 288 / 273,
  15837. bottom: 0.03
  15838. }
  15839. },
  15840. },
  15841. [
  15842. {
  15843. name: "Normal",
  15844. height: math.unit(5 + 4 / 12, "feet"),
  15845. default: true
  15846. },
  15847. ]
  15848. ))
  15849. characterMakers.push(() => makeCharacter(
  15850. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15851. {
  15852. front: {
  15853. height: math.unit(5 + 11 / 12, "feet"),
  15854. weight: math.unit(190, "lb"),
  15855. name: "Front",
  15856. image: {
  15857. source: "./media/characters/seara/front.svg",
  15858. extra: 1,
  15859. bottom: 0.05
  15860. }
  15861. },
  15862. },
  15863. [
  15864. {
  15865. name: "Normal",
  15866. height: math.unit(5 + 11 / 12, "feet"),
  15867. default: true
  15868. },
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15873. {
  15874. front: {
  15875. height: math.unit(16 + 5 / 12, "feet"),
  15876. weight: math.unit(524, "lb"),
  15877. name: "Front",
  15878. image: {
  15879. source: "./media/characters/caspian-lugia/front.svg",
  15880. extra: 1,
  15881. bottom: 0.04
  15882. }
  15883. },
  15884. },
  15885. [
  15886. {
  15887. name: "Normal",
  15888. height: math.unit(16 + 5 / 12, "feet"),
  15889. default: true
  15890. },
  15891. ]
  15892. ))
  15893. characterMakers.push(() => makeCharacter(
  15894. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15895. {
  15896. front: {
  15897. height: math.unit(5 + 7 / 12, "feet"),
  15898. weight: math.unit(170, "lb"),
  15899. name: "Front",
  15900. image: {
  15901. source: "./media/characters/mika/front.svg",
  15902. extra: 1,
  15903. bottom: 0.016
  15904. }
  15905. },
  15906. },
  15907. [
  15908. {
  15909. name: "Normal",
  15910. height: math.unit(5 + 7 / 12, "feet"),
  15911. default: true
  15912. },
  15913. ]
  15914. ))
  15915. characterMakers.push(() => makeCharacter(
  15916. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15917. {
  15918. front: {
  15919. height: math.unit(6 + 2 / 12, "feet"),
  15920. weight: math.unit(268, "lb"),
  15921. name: "Front",
  15922. image: {
  15923. source: "./media/characters/sol/front.svg",
  15924. extra: 247 / 231,
  15925. bottom: 0.05
  15926. }
  15927. },
  15928. },
  15929. [
  15930. {
  15931. name: "Normal",
  15932. height: math.unit(6 + 2 / 12, "feet"),
  15933. default: true
  15934. },
  15935. ]
  15936. ))
  15937. characterMakers.push(() => makeCharacter(
  15938. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15939. {
  15940. buizel: {
  15941. height: math.unit(2 + 5 / 12, "feet"),
  15942. weight: math.unit(87, "lb"),
  15943. name: "Front",
  15944. image: {
  15945. source: "./media/characters/umiko/buizel.svg",
  15946. extra: 172 / 157,
  15947. bottom: 0.01
  15948. },
  15949. form: "buizel",
  15950. default: true
  15951. },
  15952. floatzel: {
  15953. height: math.unit(5 + 9 / 12, "feet"),
  15954. weight: math.unit(250, "lb"),
  15955. name: "Front",
  15956. image: {
  15957. source: "./media/characters/umiko/floatzel.svg",
  15958. extra: 1076/1006,
  15959. bottom: 15/1091
  15960. },
  15961. form: "floatzel",
  15962. default: true
  15963. },
  15964. },
  15965. [
  15966. {
  15967. name: "Normal",
  15968. height: math.unit(2 + 5 / 12, "feet"),
  15969. form: "buizel",
  15970. default: true
  15971. },
  15972. {
  15973. name: "Normal",
  15974. height: math.unit(5 + 9 / 12, "feet"),
  15975. form: "floatzel",
  15976. default: true
  15977. },
  15978. ],
  15979. {
  15980. "buizel": {
  15981. name: "Buizel"
  15982. },
  15983. "floatzel": {
  15984. name: "Floatzel",
  15985. default: true
  15986. }
  15987. }
  15988. ))
  15989. characterMakers.push(() => makeCharacter(
  15990. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15991. {
  15992. front: {
  15993. height: math.unit(6 + 2 / 12, "feet"),
  15994. weight: math.unit(146, "lb"),
  15995. name: "Front",
  15996. image: {
  15997. source: "./media/characters/iliac/front.svg",
  15998. extra: 389 / 365,
  15999. bottom: 0.035
  16000. }
  16001. },
  16002. },
  16003. [
  16004. {
  16005. name: "Normal",
  16006. height: math.unit(6 + 2 / 12, "feet"),
  16007. default: true
  16008. },
  16009. ]
  16010. ))
  16011. characterMakers.push(() => makeCharacter(
  16012. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16013. {
  16014. front: {
  16015. height: math.unit(6, "feet"),
  16016. weight: math.unit(170, "lb"),
  16017. name: "Front",
  16018. image: {
  16019. source: "./media/characters/topaz/front.svg",
  16020. extra: 317 / 303,
  16021. bottom: 0.055
  16022. }
  16023. },
  16024. },
  16025. [
  16026. {
  16027. name: "Normal",
  16028. height: math.unit(6, "feet"),
  16029. default: true
  16030. },
  16031. ]
  16032. ))
  16033. characterMakers.push(() => makeCharacter(
  16034. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16035. {
  16036. front: {
  16037. height: math.unit(5 + 11 / 12, "feet"),
  16038. weight: math.unit(144, "lb"),
  16039. name: "Front",
  16040. image: {
  16041. source: "./media/characters/gabriel/front.svg",
  16042. extra: 285 / 262,
  16043. bottom: 0.004
  16044. }
  16045. },
  16046. },
  16047. [
  16048. {
  16049. name: "Normal",
  16050. height: math.unit(5 + 11 / 12, "feet"),
  16051. default: true
  16052. },
  16053. ]
  16054. ))
  16055. characterMakers.push(() => makeCharacter(
  16056. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16057. {
  16058. side: {
  16059. height: math.unit(6 + 5 / 12, "feet"),
  16060. weight: math.unit(300, "lb"),
  16061. name: "Side",
  16062. image: {
  16063. source: "./media/characters/tempest-suicune/side.svg",
  16064. extra: 195 / 154,
  16065. bottom: 0.04
  16066. }
  16067. },
  16068. },
  16069. [
  16070. {
  16071. name: "Normal",
  16072. height: math.unit(6 + 5 / 12, "feet"),
  16073. default: true
  16074. },
  16075. ]
  16076. ))
  16077. characterMakers.push(() => makeCharacter(
  16078. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16079. {
  16080. front: {
  16081. height: math.unit(7 + 2 / 12, "feet"),
  16082. weight: math.unit(322, "lb"),
  16083. name: "Front",
  16084. image: {
  16085. source: "./media/characters/vulcan/front.svg",
  16086. extra: 154 / 147,
  16087. bottom: 0.04
  16088. }
  16089. },
  16090. },
  16091. [
  16092. {
  16093. name: "Normal",
  16094. height: math.unit(7 + 2 / 12, "feet"),
  16095. default: true
  16096. },
  16097. ]
  16098. ))
  16099. characterMakers.push(() => makeCharacter(
  16100. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16101. {
  16102. front: {
  16103. height: math.unit(5 + 10 / 12, "feet"),
  16104. weight: math.unit(264, "lb"),
  16105. name: "Front",
  16106. image: {
  16107. source: "./media/characters/gault/front.svg",
  16108. extra: 161 / 140,
  16109. bottom: 0.028
  16110. }
  16111. },
  16112. },
  16113. [
  16114. {
  16115. name: "Normal",
  16116. height: math.unit(5 + 10 / 12, "feet"),
  16117. default: true
  16118. },
  16119. ]
  16120. ))
  16121. characterMakers.push(() => makeCharacter(
  16122. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16123. {
  16124. front: {
  16125. height: math.unit(6, "feet"),
  16126. weight: math.unit(150, "lb"),
  16127. name: "Front",
  16128. image: {
  16129. source: "./media/characters/shard/front.svg",
  16130. extra: 273 / 238,
  16131. bottom: 0.02
  16132. }
  16133. },
  16134. },
  16135. [
  16136. {
  16137. name: "Normal",
  16138. height: math.unit(3 + 6 / 12, "feet"),
  16139. default: true
  16140. },
  16141. ]
  16142. ))
  16143. characterMakers.push(() => makeCharacter(
  16144. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16145. {
  16146. front: {
  16147. height: math.unit(5 + 11 / 12, "feet"),
  16148. weight: math.unit(146, "lb"),
  16149. name: "Front",
  16150. image: {
  16151. source: "./media/characters/ashe/front.svg",
  16152. extra: 400 / 373,
  16153. bottom: 0.01
  16154. }
  16155. },
  16156. },
  16157. [
  16158. {
  16159. name: "Normal",
  16160. height: math.unit(5 + 11 / 12, "feet"),
  16161. default: true
  16162. },
  16163. ]
  16164. ))
  16165. characterMakers.push(() => makeCharacter(
  16166. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16167. {
  16168. front: {
  16169. height: math.unit(5 + 5 / 12, "feet"),
  16170. weight: math.unit(135, "lb"),
  16171. name: "Front",
  16172. image: {
  16173. source: "./media/characters/beatrix/front.svg",
  16174. extra: 392 / 379,
  16175. bottom: 0.01
  16176. }
  16177. },
  16178. },
  16179. [
  16180. {
  16181. name: "Normal",
  16182. height: math.unit(6, "feet"),
  16183. default: true
  16184. },
  16185. ]
  16186. ))
  16187. characterMakers.push(() => makeCharacter(
  16188. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16189. {
  16190. front: {
  16191. height: math.unit(6 + 2/12, "feet"),
  16192. weight: math.unit(135, "lb"),
  16193. name: "Front",
  16194. image: {
  16195. source: "./media/characters/ignatius/front.svg",
  16196. extra: 1380/1259,
  16197. bottom: 27/1407
  16198. }
  16199. },
  16200. },
  16201. [
  16202. {
  16203. name: "Normal",
  16204. height: math.unit(6 + 2/12, "feet"),
  16205. default: true
  16206. },
  16207. ]
  16208. ))
  16209. characterMakers.push(() => makeCharacter(
  16210. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16211. {
  16212. front: {
  16213. height: math.unit(6 + 2 / 12, "feet"),
  16214. weight: math.unit(138, "lb"),
  16215. name: "Front",
  16216. image: {
  16217. source: "./media/characters/mei-li/front.svg",
  16218. extra: 237 / 229,
  16219. bottom: 0.03
  16220. }
  16221. },
  16222. },
  16223. [
  16224. {
  16225. name: "Normal",
  16226. height: math.unit(6 + 2 / 12, "feet"),
  16227. default: true
  16228. },
  16229. ]
  16230. ))
  16231. characterMakers.push(() => makeCharacter(
  16232. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16233. {
  16234. front: {
  16235. height: math.unit(2 + 4 / 12, "feet"),
  16236. weight: math.unit(62, "lb"),
  16237. name: "Front",
  16238. image: {
  16239. source: "./media/characters/puru/front.svg",
  16240. extra: 206 / 149,
  16241. bottom: 0.06
  16242. }
  16243. },
  16244. },
  16245. [
  16246. {
  16247. name: "Normal",
  16248. height: math.unit(2 + 4 / 12, "feet"),
  16249. default: true
  16250. },
  16251. ]
  16252. ))
  16253. characterMakers.push(() => makeCharacter(
  16254. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16255. {
  16256. anthro: {
  16257. height: math.unit(5 + 8/12, "feet"),
  16258. weight: math.unit(200, "lb"),
  16259. energyNeed: math.unit(2000, "kcal"),
  16260. name: "Anthro",
  16261. image: {
  16262. source: "./media/characters/kee/anthro.svg",
  16263. extra: 3251/3184,
  16264. bottom: 250/3501
  16265. }
  16266. },
  16267. taur: {
  16268. height: math.unit(11, "feet"),
  16269. weight: math.unit(500, "lb"),
  16270. energyNeed: math.unit(5000, "kcal"),
  16271. name: "Taur",
  16272. image: {
  16273. source: "./media/characters/kee/taur.svg",
  16274. extra: 1362/1320,
  16275. bottom: 83/1445
  16276. }
  16277. },
  16278. },
  16279. [
  16280. {
  16281. name: "Normal",
  16282. height: math.unit(5 + 8/12, "feet"),
  16283. default: true
  16284. },
  16285. {
  16286. name: "Macro",
  16287. height: math.unit(35, "feet")
  16288. },
  16289. ]
  16290. ))
  16291. characterMakers.push(() => makeCharacter(
  16292. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16293. {
  16294. anthro: {
  16295. height: math.unit(7, "feet"),
  16296. weight: math.unit(190, "lb"),
  16297. name: "Anthro",
  16298. image: {
  16299. source: "./media/characters/cobalt-dracha/anthro.svg",
  16300. extra: 231 / 225,
  16301. bottom: 0.04
  16302. }
  16303. },
  16304. feral: {
  16305. height: math.unit(9 + 7 / 12, "feet"),
  16306. weight: math.unit(294, "lb"),
  16307. name: "Feral",
  16308. image: {
  16309. source: "./media/characters/cobalt-dracha/feral.svg",
  16310. extra: 692 / 633,
  16311. bottom: 0.05
  16312. }
  16313. },
  16314. },
  16315. [
  16316. {
  16317. name: "Normal",
  16318. height: math.unit(7, "feet"),
  16319. default: true
  16320. },
  16321. ]
  16322. ))
  16323. characterMakers.push(() => makeCharacter(
  16324. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16325. {
  16326. fallen: {
  16327. height: math.unit(11 + 8 / 12, "feet"),
  16328. weight: math.unit(485, "lb"),
  16329. name: "Java (Fallen)",
  16330. rename: true,
  16331. image: {
  16332. source: "./media/characters/java/fallen.svg",
  16333. extra: 226 / 208,
  16334. bottom: 0.005
  16335. }
  16336. },
  16337. godkin: {
  16338. height: math.unit(10 + 6 / 12, "feet"),
  16339. weight: math.unit(328, "lb"),
  16340. name: "Java (Godkin)",
  16341. rename: true,
  16342. image: {
  16343. source: "./media/characters/java/godkin.svg",
  16344. extra: 1104/1068,
  16345. bottom: 36/1140
  16346. }
  16347. },
  16348. },
  16349. [
  16350. {
  16351. name: "Normal",
  16352. height: math.unit(11 + 8 / 12, "feet"),
  16353. default: true
  16354. },
  16355. ]
  16356. ))
  16357. characterMakers.push(() => makeCharacter(
  16358. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16359. {
  16360. front: {
  16361. height: math.unit(5 + 9 / 12, "feet"),
  16362. weight: math.unit(170, "lb"),
  16363. name: "Front",
  16364. image: {
  16365. source: "./media/characters/purna/front.svg",
  16366. extra: 239 / 229,
  16367. bottom: 0.01
  16368. }
  16369. },
  16370. },
  16371. [
  16372. {
  16373. name: "Normal",
  16374. height: math.unit(5 + 9 / 12, "feet"),
  16375. default: true
  16376. },
  16377. ]
  16378. ))
  16379. characterMakers.push(() => makeCharacter(
  16380. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16381. {
  16382. front: {
  16383. height: math.unit(5 + 9 / 12, "feet"),
  16384. weight: math.unit(142, "lb"),
  16385. name: "Front",
  16386. image: {
  16387. source: "./media/characters/kuva/front.svg",
  16388. extra: 281 / 271,
  16389. bottom: 0.006
  16390. }
  16391. },
  16392. },
  16393. [
  16394. {
  16395. name: "Normal",
  16396. height: math.unit(5 + 9 / 12, "feet"),
  16397. default: true
  16398. },
  16399. ]
  16400. ))
  16401. characterMakers.push(() => makeCharacter(
  16402. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16403. {
  16404. anthro: {
  16405. height: math.unit(9 + 2 / 12, "feet"),
  16406. weight: math.unit(270, "lb"),
  16407. name: "Anthro",
  16408. image: {
  16409. source: "./media/characters/embra/anthro.svg",
  16410. extra: 200 / 187,
  16411. bottom: 0.02
  16412. }
  16413. },
  16414. feral: {
  16415. height: math.unit(18 + 8 / 12, "feet"),
  16416. weight: math.unit(576, "lb"),
  16417. name: "Feral",
  16418. image: {
  16419. source: "./media/characters/embra/feral.svg",
  16420. extra: 152 / 137,
  16421. bottom: 0.037
  16422. }
  16423. },
  16424. },
  16425. [
  16426. {
  16427. name: "Normal",
  16428. height: math.unit(9 + 2 / 12, "feet"),
  16429. default: true
  16430. },
  16431. ]
  16432. ))
  16433. characterMakers.push(() => makeCharacter(
  16434. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16435. {
  16436. anthro: {
  16437. height: math.unit(10 + 9 / 12, "feet"),
  16438. weight: math.unit(224, "lb"),
  16439. name: "Anthro",
  16440. image: {
  16441. source: "./media/characters/grottos/anthro.svg",
  16442. extra: 350 / 332,
  16443. bottom: 0.045
  16444. }
  16445. },
  16446. feral: {
  16447. height: math.unit(20 + 7 / 12, "feet"),
  16448. weight: math.unit(629, "lb"),
  16449. name: "Feral",
  16450. image: {
  16451. source: "./media/characters/grottos/feral.svg",
  16452. extra: 207 / 190,
  16453. bottom: 0.05
  16454. }
  16455. },
  16456. },
  16457. [
  16458. {
  16459. name: "Normal",
  16460. height: math.unit(10 + 9 / 12, "feet"),
  16461. default: true
  16462. },
  16463. ]
  16464. ))
  16465. characterMakers.push(() => makeCharacter(
  16466. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16467. {
  16468. anthro: {
  16469. height: math.unit(9 + 6 / 12, "feet"),
  16470. weight: math.unit(298, "lb"),
  16471. name: "Anthro",
  16472. image: {
  16473. source: "./media/characters/frifna/anthro.svg",
  16474. extra: 282 / 269,
  16475. bottom: 0.015
  16476. }
  16477. },
  16478. feral: {
  16479. height: math.unit(16 + 2 / 12, "feet"),
  16480. weight: math.unit(624, "lb"),
  16481. name: "Feral",
  16482. image: {
  16483. source: "./media/characters/frifna/feral.svg"
  16484. }
  16485. },
  16486. },
  16487. [
  16488. {
  16489. name: "Normal",
  16490. height: math.unit(9 + 6 / 12, "feet"),
  16491. default: true
  16492. },
  16493. ]
  16494. ))
  16495. characterMakers.push(() => makeCharacter(
  16496. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16497. {
  16498. front: {
  16499. height: math.unit(6 + 2 / 12, "feet"),
  16500. weight: math.unit(168, "lb"),
  16501. name: "Front",
  16502. image: {
  16503. source: "./media/characters/elise/front.svg",
  16504. extra: 276 / 271
  16505. }
  16506. },
  16507. },
  16508. [
  16509. {
  16510. name: "Normal",
  16511. height: math.unit(6 + 2 / 12, "feet"),
  16512. default: true
  16513. },
  16514. ]
  16515. ))
  16516. characterMakers.push(() => makeCharacter(
  16517. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16518. {
  16519. front: {
  16520. height: math.unit(5 + 10 / 12, "feet"),
  16521. weight: math.unit(210, "lb"),
  16522. name: "Front",
  16523. image: {
  16524. source: "./media/characters/glade/front.svg",
  16525. extra: 258 / 247,
  16526. bottom: 0.008
  16527. }
  16528. },
  16529. },
  16530. [
  16531. {
  16532. name: "Normal",
  16533. height: math.unit(5 + 10 / 12, "feet"),
  16534. default: true
  16535. },
  16536. ]
  16537. ))
  16538. characterMakers.push(() => makeCharacter(
  16539. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16540. {
  16541. front: {
  16542. height: math.unit(5 + 10 / 12, "feet"),
  16543. weight: math.unit(129, "lb"),
  16544. name: "Front",
  16545. image: {
  16546. source: "./media/characters/rina/front.svg",
  16547. extra: 266 / 255,
  16548. bottom: 0.005
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Normal",
  16555. height: math.unit(5 + 10 / 12, "feet"),
  16556. default: true
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16562. {
  16563. front: {
  16564. height: math.unit(6 + 1 / 12, "feet"),
  16565. weight: math.unit(192, "lb"),
  16566. name: "Front",
  16567. image: {
  16568. source: "./media/characters/veronica/front.svg",
  16569. extra: 319 / 309,
  16570. bottom: 0.005
  16571. }
  16572. },
  16573. },
  16574. [
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(6 + 1 / 12, "feet"),
  16578. default: true
  16579. },
  16580. ]
  16581. ))
  16582. characterMakers.push(() => makeCharacter(
  16583. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16584. {
  16585. front: {
  16586. height: math.unit(9 + 3 / 12, "feet"),
  16587. weight: math.unit(1100, "lb"),
  16588. name: "Front",
  16589. image: {
  16590. source: "./media/characters/braxton/front.svg",
  16591. extra: 1057 / 984,
  16592. bottom: 0.05
  16593. }
  16594. },
  16595. },
  16596. [
  16597. {
  16598. name: "Normal",
  16599. height: math.unit(9 + 3 / 12, "feet")
  16600. },
  16601. {
  16602. name: "Giant",
  16603. height: math.unit(300, "feet"),
  16604. default: true
  16605. },
  16606. {
  16607. name: "Macro",
  16608. height: math.unit(700, "feet")
  16609. },
  16610. {
  16611. name: "Megamacro",
  16612. height: math.unit(6000, "feet")
  16613. },
  16614. ]
  16615. ))
  16616. characterMakers.push(() => makeCharacter(
  16617. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16618. {
  16619. front: {
  16620. height: math.unit(6 + 7 / 12, "feet"),
  16621. weight: math.unit(150, "lb"),
  16622. name: "Front",
  16623. image: {
  16624. source: "./media/characters/blue-feyonics/front.svg",
  16625. extra: 1403 / 1306,
  16626. bottom: 0.047
  16627. }
  16628. },
  16629. },
  16630. [
  16631. {
  16632. name: "Normal",
  16633. height: math.unit(6 + 7 / 12, "feet"),
  16634. default: true
  16635. },
  16636. ]
  16637. ))
  16638. characterMakers.push(() => makeCharacter(
  16639. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16640. {
  16641. front: {
  16642. height: math.unit(1.8, "meters"),
  16643. weight: math.unit(60, "kg"),
  16644. name: "Front",
  16645. image: {
  16646. source: "./media/characters/maxwell/front.svg",
  16647. extra: 2060 / 1873
  16648. }
  16649. },
  16650. },
  16651. [
  16652. {
  16653. name: "Micro",
  16654. height: math.unit(1, "mm")
  16655. },
  16656. {
  16657. name: "Normal",
  16658. height: math.unit(1.8, "meter"),
  16659. default: true
  16660. },
  16661. {
  16662. name: "Macro",
  16663. height: math.unit(30, "meters")
  16664. },
  16665. {
  16666. name: "Megamacro",
  16667. height: math.unit(10, "km")
  16668. },
  16669. ]
  16670. ))
  16671. characterMakers.push(() => makeCharacter(
  16672. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16673. {
  16674. front: {
  16675. height: math.unit(6, "feet"),
  16676. weight: math.unit(150, "lb"),
  16677. name: "Front",
  16678. image: {
  16679. source: "./media/characters/jack/front.svg",
  16680. extra: 1754 / 1640,
  16681. bottom: 0.01
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(80000, "feet"),
  16689. default: true
  16690. },
  16691. {
  16692. name: "Max size",
  16693. height: math.unit(10, "lightyears")
  16694. },
  16695. ]
  16696. ))
  16697. characterMakers.push(() => makeCharacter(
  16698. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16699. {
  16700. urban: {
  16701. height: math.unit(5, "feet"),
  16702. weight: math.unit(240, "lb"),
  16703. name: "Urban",
  16704. image: {
  16705. source: "./media/characters/cafat/urban.svg",
  16706. extra: 1223/1126,
  16707. bottom: 205/1428
  16708. }
  16709. },
  16710. summer: {
  16711. height: math.unit(5, "feet"),
  16712. weight: math.unit(240, "lb"),
  16713. name: "Summer",
  16714. image: {
  16715. source: "./media/characters/cafat/summer.svg",
  16716. extra: 1223/1126,
  16717. bottom: 205/1428
  16718. }
  16719. },
  16720. winter: {
  16721. height: math.unit(5, "feet"),
  16722. weight: math.unit(240, "lb"),
  16723. name: "Winter",
  16724. image: {
  16725. source: "./media/characters/cafat/winter.svg",
  16726. extra: 1223/1126,
  16727. bottom: 205/1428
  16728. }
  16729. },
  16730. lingerie: {
  16731. height: math.unit(5, "feet"),
  16732. weight: math.unit(240, "lb"),
  16733. name: "Lingerie",
  16734. image: {
  16735. source: "./media/characters/cafat/lingerie.svg",
  16736. extra: 1223/1126,
  16737. bottom: 205/1428
  16738. }
  16739. },
  16740. upright: {
  16741. height: math.unit(6.3, "feet"),
  16742. weight: math.unit(240, "lb"),
  16743. name: "Upright",
  16744. image: {
  16745. source: "./media/characters/cafat/upright.svg",
  16746. bottom: 0.01
  16747. }
  16748. },
  16749. uprightFull: {
  16750. height: math.unit(6.3, "feet"),
  16751. weight: math.unit(240, "lb"),
  16752. name: "Upright (Full)",
  16753. image: {
  16754. source: "./media/characters/cafat/upright-full.svg",
  16755. bottom: 0.01
  16756. }
  16757. },
  16758. },
  16759. [
  16760. {
  16761. name: "Small",
  16762. height: math.unit(5, "feet"),
  16763. default: true
  16764. },
  16765. {
  16766. name: "Large",
  16767. height: math.unit(13, "feet")
  16768. },
  16769. ]
  16770. ))
  16771. characterMakers.push(() => makeCharacter(
  16772. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16773. {
  16774. front: {
  16775. height: math.unit(6, "feet"),
  16776. weight: math.unit(150, "lb"),
  16777. name: "Front",
  16778. image: {
  16779. source: "./media/characters/verin-raharra/front.svg",
  16780. extra: 5019 / 4835,
  16781. bottom: 0.023
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Normal",
  16788. height: math.unit(7 + 5 / 12, "feet"),
  16789. default: true
  16790. },
  16791. {
  16792. name: "Upsized",
  16793. height: math.unit(20, "feet")
  16794. },
  16795. ]
  16796. ))
  16797. characterMakers.push(() => makeCharacter(
  16798. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16799. {
  16800. front: {
  16801. height: math.unit(7, "feet"),
  16802. weight: math.unit(230, "lb"),
  16803. name: "Front",
  16804. image: {
  16805. source: "./media/characters/nakata/front.svg",
  16806. extra: 1.005,
  16807. bottom: 0.01
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(7, "feet"),
  16815. default: true
  16816. },
  16817. {
  16818. name: "Big",
  16819. height: math.unit(14, "feet")
  16820. },
  16821. {
  16822. name: "Macro",
  16823. height: math.unit(400, "feet")
  16824. },
  16825. ]
  16826. ))
  16827. characterMakers.push(() => makeCharacter(
  16828. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16829. {
  16830. front: {
  16831. height: math.unit(4.91, "feet"),
  16832. weight: math.unit(100, "lb"),
  16833. name: "Front",
  16834. image: {
  16835. source: "./media/characters/lily/front.svg",
  16836. extra: 1585 / 1415,
  16837. bottom: 0.02
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(4.91, "feet"),
  16845. default: true
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16851. {
  16852. laying: {
  16853. height: math.unit(4 + 4 / 12, "feet"),
  16854. weight: math.unit(600, "lb"),
  16855. name: "Laying",
  16856. image: {
  16857. source: "./media/characters/sheila/laying.svg",
  16858. extra: 1333 / 1265,
  16859. bottom: 0.16
  16860. }
  16861. },
  16862. },
  16863. [
  16864. {
  16865. name: "Normal",
  16866. height: math.unit(4 + 4 / 12, "feet"),
  16867. default: true
  16868. },
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16873. {
  16874. front: {
  16875. height: math.unit(6, "feet"),
  16876. weight: math.unit(190, "lb"),
  16877. name: "Front",
  16878. image: {
  16879. source: "./media/characters/sax/front.svg",
  16880. extra: 1187 / 973,
  16881. bottom: 0.042
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Micro",
  16888. height: math.unit(4, "inches"),
  16889. default: true
  16890. },
  16891. ]
  16892. ))
  16893. characterMakers.push(() => makeCharacter(
  16894. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16895. {
  16896. front: {
  16897. height: math.unit(6, "feet"),
  16898. weight: math.unit(150, "lb"),
  16899. name: "Front",
  16900. image: {
  16901. source: "./media/characters/pandora/front.svg",
  16902. extra: 2720 / 2556,
  16903. bottom: 0.015
  16904. }
  16905. },
  16906. back: {
  16907. height: math.unit(6, "feet"),
  16908. weight: math.unit(150, "lb"),
  16909. name: "Back",
  16910. image: {
  16911. source: "./media/characters/pandora/back.svg",
  16912. extra: 2720 / 2556,
  16913. bottom: 0.01
  16914. }
  16915. },
  16916. beans: {
  16917. height: math.unit(6 / 8, "feet"),
  16918. name: "Beans",
  16919. image: {
  16920. source: "./media/characters/pandora/beans.svg"
  16921. }
  16922. },
  16923. collar: {
  16924. height: math.unit(0.31, "feet"),
  16925. name: "Collar",
  16926. image: {
  16927. source: "./media/characters/pandora/collar.svg"
  16928. }
  16929. },
  16930. skirt: {
  16931. height: math.unit(6, "feet"),
  16932. weight: math.unit(150, "lb"),
  16933. name: "Skirt",
  16934. image: {
  16935. source: "./media/characters/pandora/skirt.svg",
  16936. extra: 1622 / 1525,
  16937. bottom: 0.015
  16938. }
  16939. },
  16940. hoodie: {
  16941. height: math.unit(6, "feet"),
  16942. weight: math.unit(150, "lb"),
  16943. name: "Hoodie",
  16944. image: {
  16945. source: "./media/characters/pandora/hoodie.svg",
  16946. extra: 1622 / 1525,
  16947. bottom: 0.015
  16948. }
  16949. },
  16950. casual: {
  16951. height: math.unit(6, "feet"),
  16952. weight: math.unit(150, "lb"),
  16953. name: "Casual",
  16954. image: {
  16955. source: "./media/characters/pandora/casual.svg",
  16956. extra: 1622 / 1525,
  16957. bottom: 0.015
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Normal",
  16964. height: math.unit(6, "feet")
  16965. },
  16966. {
  16967. name: "Big Steppy",
  16968. height: math.unit(1, "km"),
  16969. default: true
  16970. },
  16971. {
  16972. name: "Galactic Steppy",
  16973. height: math.unit(2, "gigameters")
  16974. },
  16975. ]
  16976. ))
  16977. characterMakers.push(() => makeCharacter(
  16978. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16979. {
  16980. side: {
  16981. height: math.unit(10, "feet"),
  16982. weight: math.unit(800, "kg"),
  16983. name: "Side",
  16984. image: {
  16985. source: "./media/characters/venio-darcony/side.svg",
  16986. extra: 1373 / 1003,
  16987. bottom: 0.037
  16988. }
  16989. },
  16990. front: {
  16991. height: math.unit(19, "feet"),
  16992. weight: math.unit(800, "kg"),
  16993. name: "Front",
  16994. image: {
  16995. source: "./media/characters/venio-darcony/front.svg"
  16996. }
  16997. },
  16998. back: {
  16999. height: math.unit(19, "feet"),
  17000. weight: math.unit(800, "kg"),
  17001. name: "Back",
  17002. image: {
  17003. source: "./media/characters/venio-darcony/back.svg"
  17004. }
  17005. },
  17006. sideNsfw: {
  17007. height: math.unit(10, "feet"),
  17008. weight: math.unit(800, "kg"),
  17009. name: "Side (NSFW)",
  17010. image: {
  17011. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17012. extra: 1373 / 1003,
  17013. bottom: 0.037
  17014. }
  17015. },
  17016. frontNsfw: {
  17017. height: math.unit(19, "feet"),
  17018. weight: math.unit(800, "kg"),
  17019. name: "Front (NSFW)",
  17020. image: {
  17021. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17022. }
  17023. },
  17024. backNsfw: {
  17025. height: math.unit(19, "feet"),
  17026. weight: math.unit(800, "kg"),
  17027. name: "Back (NSFW)",
  17028. image: {
  17029. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17030. }
  17031. },
  17032. sideArmored: {
  17033. height: math.unit(10, "feet"),
  17034. weight: math.unit(800, "kg"),
  17035. name: "Side (Armored)",
  17036. image: {
  17037. source: "./media/characters/venio-darcony/side-armored.svg",
  17038. extra: 1373 / 1003,
  17039. bottom: 0.037
  17040. }
  17041. },
  17042. frontArmored: {
  17043. height: math.unit(19, "feet"),
  17044. weight: math.unit(900, "kg"),
  17045. name: "Front (Armored)",
  17046. image: {
  17047. source: "./media/characters/venio-darcony/front-armored.svg"
  17048. }
  17049. },
  17050. backArmored: {
  17051. height: math.unit(19, "feet"),
  17052. weight: math.unit(900, "kg"),
  17053. name: "Back (Armored)",
  17054. image: {
  17055. source: "./media/characters/venio-darcony/back-armored.svg"
  17056. }
  17057. },
  17058. sword: {
  17059. height: math.unit(10, "feet"),
  17060. weight: math.unit(50, "lb"),
  17061. name: "Sword",
  17062. image: {
  17063. source: "./media/characters/venio-darcony/sword.svg"
  17064. }
  17065. },
  17066. },
  17067. [
  17068. {
  17069. name: "Normal",
  17070. height: math.unit(10, "feet")
  17071. },
  17072. {
  17073. name: "Macro",
  17074. height: math.unit(130, "feet"),
  17075. default: true
  17076. },
  17077. {
  17078. name: "Macro+",
  17079. height: math.unit(240, "feet")
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17085. {
  17086. front: {
  17087. height: math.unit(6, "feet"),
  17088. weight: math.unit(150, "lb"),
  17089. name: "Front",
  17090. image: {
  17091. source: "./media/characters/veski/front.svg",
  17092. extra: 1299 / 1225,
  17093. bottom: 0.04
  17094. }
  17095. },
  17096. back: {
  17097. height: math.unit(6, "feet"),
  17098. weight: math.unit(150, "lb"),
  17099. name: "Back",
  17100. image: {
  17101. source: "./media/characters/veski/back.svg",
  17102. extra: 1299 / 1225,
  17103. bottom: 0.008
  17104. }
  17105. },
  17106. maw: {
  17107. height: math.unit(1.5 * 1.21, "feet"),
  17108. name: "Maw",
  17109. image: {
  17110. source: "./media/characters/veski/maw.svg"
  17111. }
  17112. },
  17113. },
  17114. [
  17115. {
  17116. name: "Macro",
  17117. height: math.unit(2, "km"),
  17118. default: true
  17119. },
  17120. ]
  17121. ))
  17122. characterMakers.push(() => makeCharacter(
  17123. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17124. {
  17125. front: {
  17126. height: math.unit(5 + 7 / 12, "feet"),
  17127. name: "Front",
  17128. image: {
  17129. source: "./media/characters/isabelle/front.svg",
  17130. extra: 2130 / 1976,
  17131. bottom: 0.05
  17132. }
  17133. },
  17134. },
  17135. [
  17136. {
  17137. name: "Supermicro",
  17138. height: math.unit(10, "micrometers")
  17139. },
  17140. {
  17141. name: "Micro",
  17142. height: math.unit(1, "inch")
  17143. },
  17144. {
  17145. name: "Tiny",
  17146. height: math.unit(5, "inches")
  17147. },
  17148. {
  17149. name: "Standard",
  17150. height: math.unit(5 + 7 / 12, "inches")
  17151. },
  17152. {
  17153. name: "Macro",
  17154. height: math.unit(80, "meters"),
  17155. default: true
  17156. },
  17157. {
  17158. name: "Megamacro",
  17159. height: math.unit(250, "meters")
  17160. },
  17161. {
  17162. name: "Gigamacro",
  17163. height: math.unit(5, "km")
  17164. },
  17165. {
  17166. name: "Cosmic",
  17167. height: math.unit(2.5e6, "miles")
  17168. },
  17169. ]
  17170. ))
  17171. characterMakers.push(() => makeCharacter(
  17172. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17173. {
  17174. front: {
  17175. height: math.unit(6, "feet"),
  17176. weight: math.unit(150, "lb"),
  17177. name: "Front",
  17178. image: {
  17179. source: "./media/characters/hanzo/front.svg",
  17180. extra: 374 / 344,
  17181. bottom: 0.02
  17182. }
  17183. },
  17184. },
  17185. [
  17186. {
  17187. name: "Normal",
  17188. height: math.unit(8, "feet"),
  17189. default: true
  17190. },
  17191. ]
  17192. ))
  17193. characterMakers.push(() => makeCharacter(
  17194. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17195. {
  17196. front: {
  17197. height: math.unit(7, "feet"),
  17198. weight: math.unit(130, "lb"),
  17199. name: "Front",
  17200. image: {
  17201. source: "./media/characters/anna/front.svg",
  17202. extra: 169 / 145,
  17203. bottom: 0.06
  17204. }
  17205. },
  17206. full: {
  17207. height: math.unit(4.96, "feet"),
  17208. weight: math.unit(220, "lb"),
  17209. name: "Full",
  17210. image: {
  17211. source: "./media/characters/anna/full.svg",
  17212. extra: 138 / 114,
  17213. bottom: 0.15
  17214. }
  17215. },
  17216. tongue: {
  17217. height: math.unit(2.53, "feet"),
  17218. name: "Tongue",
  17219. image: {
  17220. source: "./media/characters/anna/tongue.svg"
  17221. }
  17222. },
  17223. },
  17224. [
  17225. {
  17226. name: "Normal",
  17227. height: math.unit(7, "feet"),
  17228. default: true
  17229. },
  17230. ]
  17231. ))
  17232. characterMakers.push(() => makeCharacter(
  17233. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17234. {
  17235. front: {
  17236. height: math.unit(7, "feet"),
  17237. weight: math.unit(150, "lb"),
  17238. name: "Front",
  17239. image: {
  17240. source: "./media/characters/ian-corvid/front.svg",
  17241. extra: 150 / 142,
  17242. bottom: 0.02
  17243. }
  17244. },
  17245. back: {
  17246. height: math.unit(7, "feet"),
  17247. weight: math.unit(150, "lb"),
  17248. name: "Back",
  17249. image: {
  17250. source: "./media/characters/ian-corvid/back.svg",
  17251. extra: 150 / 143,
  17252. bottom: 0.01
  17253. }
  17254. },
  17255. stomping: {
  17256. height: math.unit(7, "feet"),
  17257. weight: math.unit(150, "lb"),
  17258. name: "Stomping",
  17259. image: {
  17260. source: "./media/characters/ian-corvid/stomping.svg",
  17261. extra: 76 / 72
  17262. }
  17263. },
  17264. sitting: {
  17265. height: math.unit(7 / 1.8, "feet"),
  17266. weight: math.unit(150, "lb"),
  17267. name: "Sitting",
  17268. image: {
  17269. source: "./media/characters/ian-corvid/sitting.svg",
  17270. extra: 1400 / 1269,
  17271. bottom: 0.15
  17272. }
  17273. },
  17274. },
  17275. [
  17276. {
  17277. name: "Tiny Microw",
  17278. height: math.unit(1, "inch")
  17279. },
  17280. {
  17281. name: "Microw",
  17282. height: math.unit(6, "inches")
  17283. },
  17284. {
  17285. name: "Crow",
  17286. height: math.unit(7 + 1 / 12, "feet"),
  17287. default: true
  17288. },
  17289. {
  17290. name: "Macrow",
  17291. height: math.unit(176, "feet")
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17297. {
  17298. front: {
  17299. height: math.unit(5 + 7 / 12, "feet"),
  17300. weight: math.unit(147, "lb"),
  17301. name: "Front",
  17302. image: {
  17303. source: "./media/characters/natalie-kellon/front.svg",
  17304. extra: 1214 / 1141,
  17305. bottom: 0.02
  17306. }
  17307. },
  17308. },
  17309. [
  17310. {
  17311. name: "Micro",
  17312. height: math.unit(1 / 16, "inch")
  17313. },
  17314. {
  17315. name: "Tiny",
  17316. height: math.unit(4, "inches")
  17317. },
  17318. {
  17319. name: "Normal",
  17320. height: math.unit(5 + 7 / 12, "feet"),
  17321. default: true
  17322. },
  17323. {
  17324. name: "Amazon",
  17325. height: math.unit(12, "feet")
  17326. },
  17327. {
  17328. name: "Giantess",
  17329. height: math.unit(160, "meters")
  17330. },
  17331. {
  17332. name: "Titaness",
  17333. height: math.unit(800, "meters")
  17334. },
  17335. ]
  17336. ))
  17337. characterMakers.push(() => makeCharacter(
  17338. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17339. {
  17340. front: {
  17341. height: math.unit(6, "feet"),
  17342. weight: math.unit(150, "lb"),
  17343. name: "Front",
  17344. image: {
  17345. source: "./media/characters/alluria/front.svg",
  17346. extra: 806 / 738,
  17347. bottom: 0.01
  17348. }
  17349. },
  17350. side: {
  17351. height: math.unit(6, "feet"),
  17352. weight: math.unit(150, "lb"),
  17353. name: "Side",
  17354. image: {
  17355. source: "./media/characters/alluria/side.svg",
  17356. extra: 800 / 750,
  17357. }
  17358. },
  17359. back: {
  17360. height: math.unit(6, "feet"),
  17361. weight: math.unit(150, "lb"),
  17362. name: "Back",
  17363. image: {
  17364. source: "./media/characters/alluria/back.svg",
  17365. extra: 806 / 738,
  17366. }
  17367. },
  17368. frontMaid: {
  17369. height: math.unit(6, "feet"),
  17370. weight: math.unit(150, "lb"),
  17371. name: "Front (Maid)",
  17372. image: {
  17373. source: "./media/characters/alluria/front-maid.svg",
  17374. extra: 806 / 738,
  17375. bottom: 0.01
  17376. }
  17377. },
  17378. sideMaid: {
  17379. height: math.unit(6, "feet"),
  17380. weight: math.unit(150, "lb"),
  17381. name: "Side (Maid)",
  17382. image: {
  17383. source: "./media/characters/alluria/side-maid.svg",
  17384. extra: 800 / 750,
  17385. bottom: 0.005
  17386. }
  17387. },
  17388. backMaid: {
  17389. height: math.unit(6, "feet"),
  17390. weight: math.unit(150, "lb"),
  17391. name: "Back (Maid)",
  17392. image: {
  17393. source: "./media/characters/alluria/back-maid.svg",
  17394. extra: 806 / 738,
  17395. }
  17396. },
  17397. },
  17398. [
  17399. {
  17400. name: "Micro",
  17401. height: math.unit(6, "inches"),
  17402. default: true
  17403. },
  17404. ]
  17405. ))
  17406. characterMakers.push(() => makeCharacter(
  17407. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17408. {
  17409. front: {
  17410. height: math.unit(6, "feet"),
  17411. weight: math.unit(150, "lb"),
  17412. name: "Front",
  17413. image: {
  17414. source: "./media/characters/kyle/front.svg",
  17415. extra: 1069 / 962,
  17416. bottom: 77.228 / 1727.45
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Macro",
  17423. height: math.unit(150, "feet"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(6, "feet"),
  17433. weight: math.unit(300, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/duncan/front.svg",
  17437. extra: 1650 / 1482,
  17438. bottom: 0.05
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Macro",
  17445. height: math.unit(100, "feet"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(5 + 4 / 12, "feet"),
  17455. weight: math.unit(220, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/memory/front.svg",
  17459. extra: 3641 / 3545,
  17460. bottom: 0.03
  17461. }
  17462. },
  17463. back: {
  17464. height: math.unit(5 + 4 / 12, "feet"),
  17465. weight: math.unit(220, "lb"),
  17466. name: "Back",
  17467. image: {
  17468. source: "./media/characters/memory/back.svg",
  17469. extra: 3641 / 3545,
  17470. bottom: 0.025
  17471. }
  17472. },
  17473. frontSkirt: {
  17474. height: math.unit(5 + 4 / 12, "feet"),
  17475. weight: math.unit(220, "lb"),
  17476. name: "Front (Skirt)",
  17477. image: {
  17478. source: "./media/characters/memory/front-skirt.svg",
  17479. extra: 3641 / 3545,
  17480. bottom: 0.03
  17481. }
  17482. },
  17483. frontDress: {
  17484. height: math.unit(5 + 4 / 12, "feet"),
  17485. weight: math.unit(220, "lb"),
  17486. name: "Front (Dress)",
  17487. image: {
  17488. source: "./media/characters/memory/front-dress.svg",
  17489. extra: 3641 / 3545,
  17490. bottom: 0.03
  17491. }
  17492. },
  17493. },
  17494. [
  17495. {
  17496. name: "Micro",
  17497. height: math.unit(6, "inches"),
  17498. default: true
  17499. },
  17500. {
  17501. name: "Normal",
  17502. height: math.unit(5 + 4 / 12, "feet")
  17503. },
  17504. ]
  17505. ))
  17506. characterMakers.push(() => makeCharacter(
  17507. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17508. {
  17509. front: {
  17510. height: math.unit(4 + 11 / 12, "feet"),
  17511. weight: math.unit(100, "lb"),
  17512. name: "Front",
  17513. image: {
  17514. source: "./media/characters/luno/front.svg",
  17515. extra: 1535 / 1487,
  17516. bottom: 0.03
  17517. }
  17518. },
  17519. },
  17520. [
  17521. {
  17522. name: "Micro",
  17523. height: math.unit(3, "inches")
  17524. },
  17525. {
  17526. name: "Normal",
  17527. height: math.unit(4 + 11 / 12, "feet"),
  17528. default: true
  17529. },
  17530. {
  17531. name: "Macro",
  17532. height: math.unit(300, "feet")
  17533. },
  17534. {
  17535. name: "Megamacro",
  17536. height: math.unit(700, "miles")
  17537. },
  17538. ]
  17539. ))
  17540. characterMakers.push(() => makeCharacter(
  17541. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17542. {
  17543. front: {
  17544. height: math.unit(6 + 2 / 12, "feet"),
  17545. weight: math.unit(170, "lb"),
  17546. name: "Front",
  17547. image: {
  17548. source: "./media/characters/jamesy/front.svg",
  17549. extra: 440 / 382,
  17550. bottom: 0.005
  17551. }
  17552. },
  17553. },
  17554. [
  17555. {
  17556. name: "Micro",
  17557. height: math.unit(3, "inches")
  17558. },
  17559. {
  17560. name: "Normal",
  17561. height: math.unit(6 + 2 / 12, "feet"),
  17562. default: true
  17563. },
  17564. {
  17565. name: "Macro",
  17566. height: math.unit(300, "feet")
  17567. },
  17568. {
  17569. name: "Megamacro",
  17570. height: math.unit(700, "miles")
  17571. },
  17572. ]
  17573. ))
  17574. characterMakers.push(() => makeCharacter(
  17575. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17576. {
  17577. front: {
  17578. height: math.unit(6, "feet"),
  17579. weight: math.unit(160, "lb"),
  17580. name: "Front",
  17581. image: {
  17582. source: "./media/characters/mark/front.svg",
  17583. extra: 3300 / 3100,
  17584. bottom: 136.42 / 3440.47
  17585. }
  17586. },
  17587. },
  17588. [
  17589. {
  17590. name: "Macro",
  17591. height: math.unit(120, "meters")
  17592. },
  17593. {
  17594. name: "Bigger Macro",
  17595. height: math.unit(350, "meters")
  17596. },
  17597. {
  17598. name: "Megamacro",
  17599. height: math.unit(8, "km"),
  17600. default: true
  17601. },
  17602. {
  17603. name: "Continental",
  17604. height: math.unit(4550, "km")
  17605. },
  17606. {
  17607. name: "Planetary",
  17608. height: math.unit(65000, "km")
  17609. },
  17610. ]
  17611. ))
  17612. characterMakers.push(() => makeCharacter(
  17613. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17614. {
  17615. front: {
  17616. height: math.unit(6, "feet"),
  17617. weight: math.unit(400, "lb"),
  17618. name: "Front",
  17619. image: {
  17620. source: "./media/characters/mac/front.svg",
  17621. extra: 1048 / 987.7,
  17622. bottom: 60 / 1107.6,
  17623. }
  17624. },
  17625. },
  17626. [
  17627. {
  17628. name: "Macro",
  17629. height: math.unit(500, "feet"),
  17630. default: true
  17631. },
  17632. ]
  17633. ))
  17634. characterMakers.push(() => makeCharacter(
  17635. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17636. {
  17637. front: {
  17638. height: math.unit(5 + 2 / 12, "feet"),
  17639. weight: math.unit(190, "lb"),
  17640. name: "Front",
  17641. image: {
  17642. source: "./media/characters/bari/front.svg",
  17643. extra: 3156 / 2880,
  17644. bottom: 0.03
  17645. }
  17646. },
  17647. back: {
  17648. height: math.unit(5 + 2 / 12, "feet"),
  17649. weight: math.unit(190, "lb"),
  17650. name: "Back",
  17651. image: {
  17652. source: "./media/characters/bari/back.svg",
  17653. extra: 3260 / 2834,
  17654. bottom: 0.025
  17655. }
  17656. },
  17657. frontPlush: {
  17658. height: math.unit(5 + 2 / 12, "feet"),
  17659. weight: math.unit(190, "lb"),
  17660. name: "Front (Plush)",
  17661. image: {
  17662. source: "./media/characters/bari/front-plush.svg",
  17663. extra: 1112 / 1061,
  17664. bottom: 0.002
  17665. }
  17666. },
  17667. },
  17668. [
  17669. {
  17670. name: "Micro",
  17671. height: math.unit(3, "inches")
  17672. },
  17673. {
  17674. name: "Normal",
  17675. height: math.unit(5 + 2 / 12, "feet"),
  17676. default: true
  17677. },
  17678. {
  17679. name: "Macro",
  17680. height: math.unit(20, "feet")
  17681. },
  17682. ]
  17683. ))
  17684. characterMakers.push(() => makeCharacter(
  17685. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17686. {
  17687. front: {
  17688. height: math.unit(6 + 1 / 12, "feet"),
  17689. weight: math.unit(275, "lb"),
  17690. name: "Front",
  17691. image: {
  17692. source: "./media/characters/hunter-misha-raven/front.svg"
  17693. }
  17694. },
  17695. },
  17696. [
  17697. {
  17698. name: "Mortal",
  17699. height: math.unit(6 + 1 / 12, "feet")
  17700. },
  17701. {
  17702. name: "Divine",
  17703. height: math.unit(1.12134e34, "parsecs"),
  17704. default: true
  17705. },
  17706. ]
  17707. ))
  17708. characterMakers.push(() => makeCharacter(
  17709. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17710. {
  17711. front: {
  17712. height: math.unit(6 + 3 / 12, "feet"),
  17713. weight: math.unit(220, "lb"),
  17714. name: "Front",
  17715. image: {
  17716. source: "./media/characters/max-calore/front.svg",
  17717. extra: 1700 / 1648,
  17718. bottom: 0.01
  17719. }
  17720. },
  17721. back: {
  17722. height: math.unit(6 + 3 / 12, "feet"),
  17723. weight: math.unit(220, "lb"),
  17724. name: "Back",
  17725. image: {
  17726. source: "./media/characters/max-calore/back.svg",
  17727. extra: 1700 / 1648,
  17728. bottom: 0.01
  17729. }
  17730. },
  17731. },
  17732. [
  17733. {
  17734. name: "Normal",
  17735. height: math.unit(6 + 3 / 12, "feet"),
  17736. default: true
  17737. },
  17738. ]
  17739. ))
  17740. characterMakers.push(() => makeCharacter(
  17741. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17742. {
  17743. side: {
  17744. height: math.unit(2 + 8 / 12, "feet"),
  17745. weight: math.unit(99, "lb"),
  17746. name: "Side",
  17747. image: {
  17748. source: "./media/characters/aspen/side.svg",
  17749. extra: 152 / 138,
  17750. bottom: 0.032
  17751. }
  17752. },
  17753. },
  17754. [
  17755. {
  17756. name: "Normal",
  17757. height: math.unit(2 + 8 / 12, "feet"),
  17758. default: true
  17759. },
  17760. ]
  17761. ))
  17762. characterMakers.push(() => makeCharacter(
  17763. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17764. {
  17765. side: {
  17766. height: math.unit(3 + 2 / 12, "feet"),
  17767. weight: math.unit(224, "lb"),
  17768. name: "Side",
  17769. image: {
  17770. source: "./media/characters/sheila-feral-wolf/side.svg",
  17771. extra: 179 / 166,
  17772. bottom: 0.03
  17773. }
  17774. },
  17775. },
  17776. [
  17777. {
  17778. name: "Normal",
  17779. height: math.unit(3 + 2 / 12, "feet"),
  17780. default: true
  17781. },
  17782. ]
  17783. ))
  17784. characterMakers.push(() => makeCharacter(
  17785. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17786. {
  17787. side: {
  17788. height: math.unit(1 + 9 / 12, "feet"),
  17789. weight: math.unit(38, "lb"),
  17790. name: "Side",
  17791. image: {
  17792. source: "./media/characters/michelle/side.svg",
  17793. extra: 147 / 136.7,
  17794. bottom: 0.03
  17795. }
  17796. },
  17797. },
  17798. [
  17799. {
  17800. name: "Normal",
  17801. height: math.unit(1 + 9 / 12, "feet"),
  17802. default: true
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17808. {
  17809. front: {
  17810. height: math.unit(1.54, "feet"),
  17811. weight: math.unit(50, "lb"),
  17812. name: "Front",
  17813. image: {
  17814. source: "./media/characters/nino/front.svg"
  17815. }
  17816. },
  17817. },
  17818. [
  17819. {
  17820. name: "Normal",
  17821. height: math.unit(1.54, "feet"),
  17822. default: true
  17823. },
  17824. ]
  17825. ))
  17826. characterMakers.push(() => makeCharacter(
  17827. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17828. {
  17829. front: {
  17830. height: math.unit(1.49, "feet"),
  17831. weight: math.unit(45, "lb"),
  17832. name: "Front",
  17833. image: {
  17834. source: "./media/characters/viola/front.svg"
  17835. }
  17836. },
  17837. },
  17838. [
  17839. {
  17840. name: "Normal",
  17841. height: math.unit(1.49, "feet"),
  17842. default: true
  17843. },
  17844. ]
  17845. ))
  17846. characterMakers.push(() => makeCharacter(
  17847. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17848. {
  17849. front: {
  17850. height: math.unit(6 + 5 / 12, "feet"),
  17851. weight: math.unit(580, "lb"),
  17852. name: "Front",
  17853. image: {
  17854. source: "./media/characters/atlas/front.svg",
  17855. extra: 298.5 / 290,
  17856. bottom: 0.015
  17857. }
  17858. },
  17859. },
  17860. [
  17861. {
  17862. name: "Normal",
  17863. height: math.unit(6 + 5 / 12, "feet"),
  17864. default: true
  17865. },
  17866. ]
  17867. ))
  17868. characterMakers.push(() => makeCharacter(
  17869. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17870. {
  17871. side: {
  17872. height: math.unit(15.6, "inches"),
  17873. weight: math.unit(10, "lb"),
  17874. name: "Side",
  17875. image: {
  17876. source: "./media/characters/davy/side.svg",
  17877. extra: 200 / 170,
  17878. bottom: 0.01
  17879. }
  17880. },
  17881. },
  17882. [
  17883. {
  17884. name: "Normal",
  17885. height: math.unit(15.6, "inches"),
  17886. default: true
  17887. },
  17888. ]
  17889. ))
  17890. characterMakers.push(() => makeCharacter(
  17891. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17892. {
  17893. side: {
  17894. height: math.unit(4 + 8 / 12, "feet"),
  17895. weight: math.unit(166, "lb"),
  17896. name: "Side",
  17897. image: {
  17898. source: "./media/characters/fiona/side.svg",
  17899. extra: 232 / 220,
  17900. bottom: 0.03
  17901. }
  17902. },
  17903. },
  17904. [
  17905. {
  17906. name: "Normal",
  17907. height: math.unit(4 + 8 / 12, "feet"),
  17908. default: true
  17909. },
  17910. ]
  17911. ))
  17912. characterMakers.push(() => makeCharacter(
  17913. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17914. {
  17915. front: {
  17916. height: math.unit(26, "inches"),
  17917. weight: math.unit(35, "lb"),
  17918. name: "Front",
  17919. image: {
  17920. source: "./media/characters/lyla/front.svg",
  17921. bottom: 0.1
  17922. }
  17923. },
  17924. },
  17925. [
  17926. {
  17927. name: "Normal",
  17928. height: math.unit(3, "feet"),
  17929. default: true
  17930. },
  17931. ]
  17932. ))
  17933. characterMakers.push(() => makeCharacter(
  17934. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17935. {
  17936. side: {
  17937. height: math.unit(1.8, "feet"),
  17938. weight: math.unit(44, "lb"),
  17939. name: "Side",
  17940. image: {
  17941. source: "./media/characters/perseus/side.svg",
  17942. bottom: 0.21
  17943. }
  17944. },
  17945. },
  17946. [
  17947. {
  17948. name: "Normal",
  17949. height: math.unit(1.8, "feet"),
  17950. default: true
  17951. },
  17952. ]
  17953. ))
  17954. characterMakers.push(() => makeCharacter(
  17955. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17956. {
  17957. side: {
  17958. height: math.unit(4 + 2 / 12, "feet"),
  17959. weight: math.unit(20, "lb"),
  17960. name: "Side",
  17961. image: {
  17962. source: "./media/characters/remus/side.svg"
  17963. }
  17964. },
  17965. },
  17966. [
  17967. {
  17968. name: "Normal",
  17969. height: math.unit(4 + 2 / 12, "feet"),
  17970. default: true
  17971. },
  17972. ]
  17973. ))
  17974. characterMakers.push(() => makeCharacter(
  17975. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17976. {
  17977. front: {
  17978. height: math.unit(4 + 11 / 12, "feet"),
  17979. weight: math.unit(114, "lb"),
  17980. name: "Front",
  17981. image: {
  17982. source: "./media/characters/raf/front.svg",
  17983. extra: 1504/1339,
  17984. bottom: 26/1530
  17985. }
  17986. },
  17987. side: {
  17988. height: math.unit(4 + 11 / 12, "feet"),
  17989. weight: math.unit(114, "lb"),
  17990. name: "Side",
  17991. image: {
  17992. source: "./media/characters/raf/side.svg",
  17993. extra: 1466/1316,
  17994. bottom: 29/1495
  17995. }
  17996. },
  17997. paw: {
  17998. height: math.unit(1.45, "feet"),
  17999. name: "Paw",
  18000. image: {
  18001. source: "./media/characters/raf/paw.svg"
  18002. },
  18003. extraAttributes: {
  18004. "toeSize": {
  18005. name: "Toe Size",
  18006. power: 2,
  18007. type: "area",
  18008. base: math.unit(0.004, "m^2")
  18009. },
  18010. "padSize": {
  18011. name: "Pad Size",
  18012. power: 2,
  18013. type: "area",
  18014. base: math.unit(0.04, "m^2")
  18015. },
  18016. "footSize": {
  18017. name: "Foot Size",
  18018. power: 2,
  18019. type: "area",
  18020. base: math.unit(0.08, "m^2")
  18021. },
  18022. }
  18023. },
  18024. },
  18025. [
  18026. {
  18027. name: "Micro",
  18028. height: math.unit(2, "inches")
  18029. },
  18030. {
  18031. name: "Normal",
  18032. height: math.unit(4 + 11 / 12, "feet"),
  18033. default: true
  18034. },
  18035. {
  18036. name: "Macro",
  18037. height: math.unit(70, "feet")
  18038. },
  18039. ]
  18040. ))
  18041. characterMakers.push(() => makeCharacter(
  18042. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18043. {
  18044. front: {
  18045. height: math.unit(1.5, "meters"),
  18046. weight: math.unit(68, "kg"),
  18047. name: "Front",
  18048. image: {
  18049. source: "./media/characters/liam-einarr/front.svg",
  18050. extra: 2822 / 2666
  18051. }
  18052. },
  18053. back: {
  18054. height: math.unit(1.5, "meters"),
  18055. weight: math.unit(68, "kg"),
  18056. name: "Back",
  18057. image: {
  18058. source: "./media/characters/liam-einarr/back.svg",
  18059. extra: 2822 / 2666,
  18060. bottom: 0.015
  18061. }
  18062. },
  18063. },
  18064. [
  18065. {
  18066. name: "Normal",
  18067. height: math.unit(1.5, "meters"),
  18068. default: true
  18069. },
  18070. {
  18071. name: "Macro",
  18072. height: math.unit(150, "meters")
  18073. },
  18074. {
  18075. name: "Megamacro",
  18076. height: math.unit(35, "km")
  18077. },
  18078. ]
  18079. ))
  18080. characterMakers.push(() => makeCharacter(
  18081. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18082. {
  18083. front: {
  18084. height: math.unit(6, "feet"),
  18085. weight: math.unit(75, "kg"),
  18086. name: "Front",
  18087. image: {
  18088. source: "./media/characters/linda/front.svg",
  18089. extra: 930 / 874,
  18090. bottom: 0.004
  18091. }
  18092. },
  18093. },
  18094. [
  18095. {
  18096. name: "Normal",
  18097. height: math.unit(6, "feet"),
  18098. default: true
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18104. {
  18105. front: {
  18106. height: math.unit(6 + 8 / 12, "feet"),
  18107. weight: math.unit(220, "lb"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/caylex/front.svg",
  18111. extra: 821 / 772,
  18112. bottom: 0.07
  18113. }
  18114. },
  18115. back: {
  18116. height: math.unit(6 + 8 / 12, "feet"),
  18117. weight: math.unit(220, "lb"),
  18118. name: "Back",
  18119. image: {
  18120. source: "./media/characters/caylex/back.svg",
  18121. extra: 821 / 772,
  18122. bottom: 0.022
  18123. }
  18124. },
  18125. hand: {
  18126. height: math.unit(1.25, "feet"),
  18127. name: "Hand",
  18128. image: {
  18129. source: "./media/characters/caylex/hand.svg"
  18130. }
  18131. },
  18132. foot: {
  18133. height: math.unit(1.6, "feet"),
  18134. name: "Foot",
  18135. image: {
  18136. source: "./media/characters/caylex/foot.svg"
  18137. }
  18138. },
  18139. armored: {
  18140. height: math.unit(6 + 8 / 12, "feet"),
  18141. weight: math.unit(250, "lb"),
  18142. name: "Armored",
  18143. image: {
  18144. source: "./media/characters/caylex/armored.svg",
  18145. extra: 1420 / 1310,
  18146. bottom: 0.045
  18147. }
  18148. },
  18149. },
  18150. [
  18151. {
  18152. name: "Normal",
  18153. height: math.unit(6 + 8 / 12, "feet"),
  18154. default: true
  18155. },
  18156. {
  18157. name: "Normal+",
  18158. height: math.unit(12, "feet")
  18159. },
  18160. ]
  18161. ))
  18162. characterMakers.push(() => makeCharacter(
  18163. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18164. {
  18165. front: {
  18166. height: math.unit(7 + 6 / 12, "feet"),
  18167. weight: math.unit(288, "lb"),
  18168. name: "Front",
  18169. image: {
  18170. source: "./media/characters/alana/front.svg",
  18171. extra: 679 / 653,
  18172. bottom: 22.5 / 701
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Normal",
  18179. height: math.unit(7 + 6 / 12, "feet")
  18180. },
  18181. {
  18182. name: "Large",
  18183. height: math.unit(50, "feet")
  18184. },
  18185. {
  18186. name: "Macro",
  18187. height: math.unit(100, "feet"),
  18188. default: true
  18189. },
  18190. {
  18191. name: "Macro+",
  18192. height: math.unit(200, "feet")
  18193. },
  18194. ]
  18195. ))
  18196. characterMakers.push(() => makeCharacter(
  18197. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18198. {
  18199. front: {
  18200. height: math.unit(6 + 1 / 12, "feet"),
  18201. weight: math.unit(210, "lb"),
  18202. name: "Front",
  18203. image: {
  18204. source: "./media/characters/hasani/front.svg",
  18205. extra: 244 / 232,
  18206. bottom: 0.01
  18207. }
  18208. },
  18209. back: {
  18210. height: math.unit(6 + 1 / 12, "feet"),
  18211. weight: math.unit(210, "lb"),
  18212. name: "Back",
  18213. image: {
  18214. source: "./media/characters/hasani/back.svg",
  18215. extra: 244 / 232,
  18216. bottom: 0.01
  18217. }
  18218. },
  18219. },
  18220. [
  18221. {
  18222. name: "Normal",
  18223. height: math.unit(6 + 1 / 12, "feet")
  18224. },
  18225. {
  18226. name: "Macro",
  18227. height: math.unit(175, "feet"),
  18228. default: true
  18229. },
  18230. ]
  18231. ))
  18232. characterMakers.push(() => makeCharacter(
  18233. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18234. {
  18235. front: {
  18236. height: math.unit(1.82, "meters"),
  18237. weight: math.unit(140, "lb"),
  18238. name: "Front",
  18239. image: {
  18240. source: "./media/characters/nita/front.svg",
  18241. extra: 2473 / 2363,
  18242. bottom: 0.01
  18243. }
  18244. },
  18245. },
  18246. [
  18247. {
  18248. name: "Normal",
  18249. height: math.unit(1.82, "m")
  18250. },
  18251. {
  18252. name: "Macro",
  18253. height: math.unit(300, "m")
  18254. },
  18255. {
  18256. name: "Mistake Canon",
  18257. height: math.unit(0.5, "miles"),
  18258. default: true
  18259. },
  18260. {
  18261. name: "Big Mistake",
  18262. height: math.unit(13, "miles")
  18263. },
  18264. {
  18265. name: "Playing God",
  18266. height: math.unit(2450, "miles")
  18267. },
  18268. ]
  18269. ))
  18270. characterMakers.push(() => makeCharacter(
  18271. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18272. {
  18273. front: {
  18274. height: math.unit(4, "feet"),
  18275. weight: math.unit(120, "lb"),
  18276. name: "Front",
  18277. image: {
  18278. source: "./media/characters/shiriko/front.svg",
  18279. extra: 970/934,
  18280. bottom: 5/975
  18281. }
  18282. },
  18283. },
  18284. [
  18285. {
  18286. name: "Normal",
  18287. height: math.unit(4, "feet"),
  18288. default: true
  18289. },
  18290. ]
  18291. ))
  18292. characterMakers.push(() => makeCharacter(
  18293. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18294. {
  18295. front: {
  18296. height: math.unit(6, "feet"),
  18297. name: "front",
  18298. image: {
  18299. source: "./media/characters/deja/front.svg",
  18300. extra: 926 / 840,
  18301. bottom: 0.07
  18302. }
  18303. },
  18304. },
  18305. [
  18306. {
  18307. name: "Planck Length",
  18308. height: math.unit(1.6e-35, "meters")
  18309. },
  18310. {
  18311. name: "Normal",
  18312. height: math.unit(30.48, "meters"),
  18313. default: true
  18314. },
  18315. {
  18316. name: "Universal",
  18317. height: math.unit(8.8e26, "meters")
  18318. },
  18319. ]
  18320. ))
  18321. characterMakers.push(() => makeCharacter(
  18322. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18323. {
  18324. side: {
  18325. height: math.unit(8, "feet"),
  18326. weight: math.unit(6300, "lb"),
  18327. name: "Side",
  18328. image: {
  18329. source: "./media/characters/anima/side.svg",
  18330. bottom: 0.035
  18331. }
  18332. },
  18333. },
  18334. [
  18335. {
  18336. name: "Normal",
  18337. height: math.unit(8, "feet"),
  18338. default: true
  18339. },
  18340. ]
  18341. ))
  18342. characterMakers.push(() => makeCharacter(
  18343. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18344. {
  18345. front: {
  18346. height: math.unit(8, "feet"),
  18347. weight: math.unit(350, "lb"),
  18348. name: "Front",
  18349. image: {
  18350. source: "./media/characters/bianca/front.svg",
  18351. extra: 234 / 225,
  18352. bottom: 0.03
  18353. }
  18354. },
  18355. },
  18356. [
  18357. {
  18358. name: "Normal",
  18359. height: math.unit(8, "feet"),
  18360. default: true
  18361. },
  18362. ]
  18363. ))
  18364. characterMakers.push(() => makeCharacter(
  18365. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18366. {
  18367. front: {
  18368. height: math.unit(11 + 5/12, "feet"),
  18369. weight: math.unit(1200, "lb"),
  18370. name: "Front",
  18371. image: {
  18372. source: "./media/characters/adinia/front.svg",
  18373. extra: 1767/1641,
  18374. bottom: 44/1811
  18375. },
  18376. extraAttributes: {
  18377. "energyIntake": {
  18378. name: "Energy Intake",
  18379. power: 3,
  18380. type: "energy",
  18381. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18382. },
  18383. }
  18384. },
  18385. back: {
  18386. height: math.unit(11 + 5/12, "feet"),
  18387. weight: math.unit(1200, "lb"),
  18388. name: "Back",
  18389. image: {
  18390. source: "./media/characters/adinia/back.svg",
  18391. extra: 1834/1684,
  18392. bottom: 14/1848
  18393. },
  18394. extraAttributes: {
  18395. "energyIntake": {
  18396. name: "Energy Intake",
  18397. power: 3,
  18398. type: "energy",
  18399. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18400. },
  18401. }
  18402. },
  18403. maw: {
  18404. height: math.unit(3.79, "feet"),
  18405. name: "Maw",
  18406. image: {
  18407. source: "./media/characters/adinia/maw.svg"
  18408. }
  18409. },
  18410. rump: {
  18411. height: math.unit(4.6, "feet"),
  18412. name: "Rump",
  18413. image: {
  18414. source: "./media/characters/adinia/rump.svg"
  18415. }
  18416. },
  18417. },
  18418. [
  18419. {
  18420. name: "Normal",
  18421. height: math.unit(11 + 5 / 12, "feet"),
  18422. default: true
  18423. },
  18424. ]
  18425. ))
  18426. characterMakers.push(() => makeCharacter(
  18427. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18428. {
  18429. front: {
  18430. height: math.unit(3, "meters"),
  18431. weight: math.unit(200, "kg"),
  18432. name: "Front",
  18433. image: {
  18434. source: "./media/characters/lykasa/front.svg",
  18435. extra: 1076 / 976,
  18436. bottom: 0.06
  18437. }
  18438. },
  18439. },
  18440. [
  18441. {
  18442. name: "Normal",
  18443. height: math.unit(3, "meters")
  18444. },
  18445. {
  18446. name: "Kaiju",
  18447. height: math.unit(120, "meters"),
  18448. default: true
  18449. },
  18450. {
  18451. name: "Mega Kaiju",
  18452. height: math.unit(240, "km")
  18453. },
  18454. {
  18455. name: "Giga Kaiju",
  18456. height: math.unit(400, "megameters")
  18457. },
  18458. {
  18459. name: "Tera Kaiju",
  18460. height: math.unit(800, "gigameters")
  18461. },
  18462. {
  18463. name: "Kaiju Dragon Goddess",
  18464. height: math.unit(26, "zettaparsecs")
  18465. },
  18466. ]
  18467. ))
  18468. characterMakers.push(() => makeCharacter(
  18469. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18470. {
  18471. side: {
  18472. height: math.unit(283 / 124 * 6, "feet"),
  18473. weight: math.unit(35000, "lb"),
  18474. name: "Side",
  18475. image: {
  18476. source: "./media/characters/malfaren/side.svg",
  18477. extra: 1310/529,
  18478. bottom: 24/1334
  18479. }
  18480. },
  18481. front: {
  18482. height: math.unit(22.36, "feet"),
  18483. weight: math.unit(35000, "lb"),
  18484. name: "Front",
  18485. image: {
  18486. source: "./media/characters/malfaren/front.svg",
  18487. extra: 1237/1115,
  18488. bottom: 32/1269
  18489. }
  18490. },
  18491. maw: {
  18492. height: math.unit(6.9, "feet"),
  18493. name: "Maw",
  18494. image: {
  18495. source: "./media/characters/malfaren/maw.svg"
  18496. }
  18497. },
  18498. dick: {
  18499. height: math.unit(6.19, "feet"),
  18500. name: "Dick",
  18501. image: {
  18502. source: "./media/characters/malfaren/dick.svg"
  18503. }
  18504. },
  18505. eye: {
  18506. height: math.unit(0.69, "feet"),
  18507. name: "Eye",
  18508. image: {
  18509. source: "./media/characters/malfaren/eye.svg"
  18510. }
  18511. },
  18512. },
  18513. [
  18514. {
  18515. name: "Big",
  18516. height: math.unit(283 / 162 * 6, "feet"),
  18517. },
  18518. {
  18519. name: "Bigger",
  18520. height: math.unit(283 / 124 * 6, "feet")
  18521. },
  18522. {
  18523. name: "Massive",
  18524. height: math.unit(283 / 92 * 6, "feet"),
  18525. default: true
  18526. },
  18527. {
  18528. name: "👀💦",
  18529. height: math.unit(283 / 73 * 6, "feet"),
  18530. },
  18531. ]
  18532. ))
  18533. characterMakers.push(() => makeCharacter(
  18534. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18535. {
  18536. front: {
  18537. height: math.unit(1.7, "m"),
  18538. weight: math.unit(70, "kg"),
  18539. name: "Front",
  18540. image: {
  18541. source: "./media/characters/kernel/front.svg",
  18542. extra: 222 / 210,
  18543. bottom: 0.007
  18544. }
  18545. },
  18546. },
  18547. [
  18548. {
  18549. name: "Nano",
  18550. height: math.unit(17, "micrometers")
  18551. },
  18552. {
  18553. name: "Micro",
  18554. height: math.unit(1.7, "mm")
  18555. },
  18556. {
  18557. name: "Small",
  18558. height: math.unit(1.7, "cm")
  18559. },
  18560. {
  18561. name: "Normal",
  18562. height: math.unit(1.7, "m"),
  18563. default: true
  18564. },
  18565. ]
  18566. ))
  18567. characterMakers.push(() => makeCharacter(
  18568. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18569. {
  18570. front: {
  18571. height: math.unit(1.75, "meters"),
  18572. weight: math.unit(65, "kg"),
  18573. name: "Front",
  18574. image: {
  18575. source: "./media/characters/jayne-folest/front.svg",
  18576. extra: 2115 / 2007,
  18577. bottom: 0.02
  18578. }
  18579. },
  18580. back: {
  18581. height: math.unit(1.75, "meters"),
  18582. weight: math.unit(65, "kg"),
  18583. name: "Back",
  18584. image: {
  18585. source: "./media/characters/jayne-folest/back.svg",
  18586. extra: 2115 / 2007,
  18587. bottom: 0.005
  18588. }
  18589. },
  18590. frontClothed: {
  18591. height: math.unit(1.75, "meters"),
  18592. weight: math.unit(65, "kg"),
  18593. name: "Front (Clothed)",
  18594. image: {
  18595. source: "./media/characters/jayne-folest/front-clothed.svg",
  18596. extra: 2115 / 2007,
  18597. bottom: 0.035
  18598. }
  18599. },
  18600. hand: {
  18601. height: math.unit(1 / 1.260, "feet"),
  18602. name: "Hand",
  18603. image: {
  18604. source: "./media/characters/jayne-folest/hand.svg"
  18605. }
  18606. },
  18607. foot: {
  18608. height: math.unit(1 / 0.918, "feet"),
  18609. name: "Foot",
  18610. image: {
  18611. source: "./media/characters/jayne-folest/foot.svg"
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Micro",
  18618. height: math.unit(4, "cm")
  18619. },
  18620. {
  18621. name: "Normal",
  18622. height: math.unit(1.75, "meters")
  18623. },
  18624. {
  18625. name: "Macro",
  18626. height: math.unit(47.5, "meters"),
  18627. default: true
  18628. },
  18629. ]
  18630. ))
  18631. characterMakers.push(() => makeCharacter(
  18632. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18633. {
  18634. front: {
  18635. height: math.unit(180, "cm"),
  18636. weight: math.unit(70, "kg"),
  18637. name: "Front",
  18638. image: {
  18639. source: "./media/characters/algier/front.svg",
  18640. extra: 596 / 572,
  18641. bottom: 0.04
  18642. }
  18643. },
  18644. back: {
  18645. height: math.unit(180, "cm"),
  18646. weight: math.unit(70, "kg"),
  18647. name: "Back",
  18648. image: {
  18649. source: "./media/characters/algier/back.svg",
  18650. extra: 596 / 572,
  18651. bottom: 0.025
  18652. }
  18653. },
  18654. frontdressed: {
  18655. height: math.unit(180, "cm"),
  18656. weight: math.unit(150, "kg"),
  18657. name: "Front-dressed",
  18658. image: {
  18659. source: "./media/characters/algier/front-dressed.svg",
  18660. extra: 596 / 572,
  18661. bottom: 0.038
  18662. }
  18663. },
  18664. },
  18665. [
  18666. {
  18667. name: "Micro",
  18668. height: math.unit(5, "cm")
  18669. },
  18670. {
  18671. name: "Normal",
  18672. height: math.unit(180, "cm"),
  18673. default: true
  18674. },
  18675. {
  18676. name: "Macro",
  18677. height: math.unit(64, "m")
  18678. },
  18679. ]
  18680. ))
  18681. characterMakers.push(() => makeCharacter(
  18682. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18683. {
  18684. upright: {
  18685. height: math.unit(7, "feet"),
  18686. weight: math.unit(300, "lb"),
  18687. name: "Upright",
  18688. image: {
  18689. source: "./media/characters/pretzel/upright.svg",
  18690. extra: 534 / 522,
  18691. bottom: 0.065
  18692. }
  18693. },
  18694. sprawling: {
  18695. height: math.unit(3.75, "feet"),
  18696. weight: math.unit(300, "lb"),
  18697. name: "Sprawling",
  18698. image: {
  18699. source: "./media/characters/pretzel/sprawling.svg",
  18700. extra: 314 / 281,
  18701. bottom: 0.1
  18702. }
  18703. },
  18704. tongue: {
  18705. height: math.unit(2, "feet"),
  18706. name: "Tongue",
  18707. image: {
  18708. source: "./media/characters/pretzel/tongue.svg"
  18709. }
  18710. },
  18711. },
  18712. [
  18713. {
  18714. name: "Normal",
  18715. height: math.unit(7, "feet"),
  18716. default: true
  18717. },
  18718. {
  18719. name: "Oversized",
  18720. height: math.unit(15, "feet")
  18721. },
  18722. {
  18723. name: "Huge",
  18724. height: math.unit(30, "feet")
  18725. },
  18726. {
  18727. name: "Macro",
  18728. height: math.unit(250, "feet")
  18729. },
  18730. ]
  18731. ))
  18732. characterMakers.push(() => makeCharacter(
  18733. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18734. {
  18735. sideFront: {
  18736. height: math.unit(5 + 2 / 12, "feet"),
  18737. weight: math.unit(120, "lb"),
  18738. name: "Front Side",
  18739. image: {
  18740. source: "./media/characters/roxi/side-front.svg",
  18741. extra: 2924 / 2717,
  18742. bottom: 0.08
  18743. }
  18744. },
  18745. sideBack: {
  18746. height: math.unit(5 + 2 / 12, "feet"),
  18747. weight: math.unit(120, "lb"),
  18748. name: "Back Side",
  18749. image: {
  18750. source: "./media/characters/roxi/side-back.svg",
  18751. extra: 2904 / 2693,
  18752. bottom: 0.06
  18753. }
  18754. },
  18755. front: {
  18756. height: math.unit(5 + 2 / 12, "feet"),
  18757. weight: math.unit(120, "lb"),
  18758. name: "Front",
  18759. image: {
  18760. source: "./media/characters/roxi/front.svg",
  18761. extra: 2028 / 1907,
  18762. bottom: 0.01
  18763. }
  18764. },
  18765. frontAlt: {
  18766. height: math.unit(5 + 2 / 12, "feet"),
  18767. weight: math.unit(120, "lb"),
  18768. name: "Front (Alt)",
  18769. image: {
  18770. source: "./media/characters/roxi/front-alt.svg",
  18771. extra: 1828 / 1798,
  18772. bottom: 0.01
  18773. }
  18774. },
  18775. sitting: {
  18776. height: math.unit(2.8, "feet"),
  18777. weight: math.unit(120, "lb"),
  18778. name: "Sitting",
  18779. image: {
  18780. source: "./media/characters/roxi/sitting.svg",
  18781. extra: 2660 / 2462,
  18782. bottom: 0.1
  18783. }
  18784. },
  18785. },
  18786. [
  18787. {
  18788. name: "Normal",
  18789. height: math.unit(5 + 2 / 12, "feet"),
  18790. default: true
  18791. },
  18792. ]
  18793. ))
  18794. characterMakers.push(() => makeCharacter(
  18795. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18796. {
  18797. side: {
  18798. height: math.unit(55, "feet"),
  18799. weight: math.unit(153, "tons"),
  18800. name: "Side",
  18801. image: {
  18802. source: "./media/characters/shadow/side.svg",
  18803. extra: 701 / 628,
  18804. bottom: 0.02
  18805. }
  18806. },
  18807. flying: {
  18808. height: math.unit(145, "feet"),
  18809. weight: math.unit(153, "tons"),
  18810. name: "Flying",
  18811. image: {
  18812. source: "./media/characters/shadow/flying.svg"
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(55, "feet"),
  18820. default: true
  18821. },
  18822. ]
  18823. ))
  18824. characterMakers.push(() => makeCharacter(
  18825. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18826. {
  18827. front: {
  18828. height: math.unit(6, "feet"),
  18829. weight: math.unit(200, "lb"),
  18830. name: "Front",
  18831. image: {
  18832. source: "./media/characters/marcie/front.svg",
  18833. extra: 960 / 876,
  18834. bottom: 58 / 1017.87
  18835. }
  18836. },
  18837. },
  18838. [
  18839. {
  18840. name: "Macro",
  18841. height: math.unit(1, "mile"),
  18842. default: true
  18843. },
  18844. ]
  18845. ))
  18846. characterMakers.push(() => makeCharacter(
  18847. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18848. {
  18849. front: {
  18850. height: math.unit(7, "feet"),
  18851. weight: math.unit(200, "lb"),
  18852. name: "Front",
  18853. image: {
  18854. source: "./media/characters/kachina/front.svg",
  18855. extra: 1290.68 / 1119,
  18856. bottom: 36.5 / 1327.18
  18857. }
  18858. },
  18859. },
  18860. [
  18861. {
  18862. name: "Normal",
  18863. height: math.unit(7, "feet"),
  18864. default: true
  18865. },
  18866. ]
  18867. ))
  18868. characterMakers.push(() => makeCharacter(
  18869. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18870. {
  18871. looking: {
  18872. height: math.unit(2, "meters"),
  18873. weight: math.unit(300, "kg"),
  18874. name: "Looking",
  18875. image: {
  18876. source: "./media/characters/kash/looking.svg",
  18877. extra: 474 / 344,
  18878. bottom: 0.03
  18879. }
  18880. },
  18881. side: {
  18882. height: math.unit(2, "meters"),
  18883. weight: math.unit(300, "kg"),
  18884. name: "Side",
  18885. image: {
  18886. source: "./media/characters/kash/side.svg",
  18887. extra: 302 / 251,
  18888. bottom: 0.03
  18889. }
  18890. },
  18891. front: {
  18892. height: math.unit(2, "meters"),
  18893. weight: math.unit(300, "kg"),
  18894. name: "Front",
  18895. image: {
  18896. source: "./media/characters/kash/front.svg",
  18897. extra: 495 / 360,
  18898. bottom: 0.015
  18899. }
  18900. },
  18901. },
  18902. [
  18903. {
  18904. name: "Normal",
  18905. height: math.unit(2, "meters"),
  18906. default: true
  18907. },
  18908. {
  18909. name: "Big",
  18910. height: math.unit(3, "meters")
  18911. },
  18912. {
  18913. name: "Large",
  18914. height: math.unit(5, "meters")
  18915. },
  18916. ]
  18917. ))
  18918. characterMakers.push(() => makeCharacter(
  18919. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18920. {
  18921. feeding: {
  18922. height: math.unit(6.7, "feet"),
  18923. weight: math.unit(350, "lb"),
  18924. name: "Feeding",
  18925. image: {
  18926. source: "./media/characters/lalim/feeding.svg",
  18927. }
  18928. },
  18929. },
  18930. [
  18931. {
  18932. name: "Normal",
  18933. height: math.unit(6.7, "feet"),
  18934. default: true
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18940. {
  18941. front: {
  18942. height: math.unit(9.5, "feet"),
  18943. weight: math.unit(600, "lb"),
  18944. name: "Front",
  18945. image: {
  18946. source: "./media/characters/de'vout/front.svg",
  18947. extra: 1443 / 1328,
  18948. bottom: 0.025
  18949. }
  18950. },
  18951. back: {
  18952. height: math.unit(9.5, "feet"),
  18953. weight: math.unit(600, "lb"),
  18954. name: "Back",
  18955. image: {
  18956. source: "./media/characters/de'vout/back.svg",
  18957. extra: 1443 / 1328
  18958. }
  18959. },
  18960. frontDressed: {
  18961. height: math.unit(9.5, "feet"),
  18962. weight: math.unit(600, "lb"),
  18963. name: "Front (Dressed",
  18964. image: {
  18965. source: "./media/characters/de'vout/front-dressed.svg",
  18966. extra: 1443 / 1328,
  18967. bottom: 0.025
  18968. }
  18969. },
  18970. backDressed: {
  18971. height: math.unit(9.5, "feet"),
  18972. weight: math.unit(600, "lb"),
  18973. name: "Back (Dressed",
  18974. image: {
  18975. source: "./media/characters/de'vout/back-dressed.svg",
  18976. extra: 1443 / 1328
  18977. }
  18978. },
  18979. },
  18980. [
  18981. {
  18982. name: "Normal",
  18983. height: math.unit(9.5, "feet"),
  18984. default: true
  18985. },
  18986. ]
  18987. ))
  18988. characterMakers.push(() => makeCharacter(
  18989. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18990. {
  18991. front: {
  18992. height: math.unit(8, "feet"),
  18993. weight: math.unit(225, "lb"),
  18994. name: "Front",
  18995. image: {
  18996. source: "./media/characters/talana/front.svg",
  18997. extra: 1410 / 1300,
  18998. bottom: 0.015
  18999. }
  19000. },
  19001. frontDressed: {
  19002. height: math.unit(8, "feet"),
  19003. weight: math.unit(225, "lb"),
  19004. name: "Front (Dressed",
  19005. image: {
  19006. source: "./media/characters/talana/front-dressed.svg",
  19007. extra: 1410 / 1300,
  19008. bottom: 0.015
  19009. }
  19010. },
  19011. },
  19012. [
  19013. {
  19014. name: "Normal",
  19015. height: math.unit(8, "feet"),
  19016. default: true
  19017. },
  19018. ]
  19019. ))
  19020. characterMakers.push(() => makeCharacter(
  19021. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19022. {
  19023. side: {
  19024. height: math.unit(7.2, "feet"),
  19025. weight: math.unit(150, "lb"),
  19026. name: "Side",
  19027. image: {
  19028. source: "./media/characters/xeauvok/side.svg",
  19029. extra: 1975 / 1523,
  19030. bottom: 0.07
  19031. }
  19032. },
  19033. },
  19034. [
  19035. {
  19036. name: "Normal",
  19037. height: math.unit(7.2, "feet"),
  19038. default: true
  19039. },
  19040. ]
  19041. ))
  19042. characterMakers.push(() => makeCharacter(
  19043. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19044. {
  19045. side: {
  19046. height: math.unit(4, "meters"),
  19047. weight: math.unit(2200, "kg"),
  19048. name: "Side",
  19049. image: {
  19050. source: "./media/characters/zara/side.svg",
  19051. extra: 765/744,
  19052. bottom: 156/921
  19053. }
  19054. },
  19055. },
  19056. [
  19057. {
  19058. name: "Normal",
  19059. height: math.unit(4, "meters"),
  19060. default: true
  19061. },
  19062. ]
  19063. ))
  19064. characterMakers.push(() => makeCharacter(
  19065. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19066. {
  19067. side: {
  19068. height: math.unit(6, "feet"),
  19069. weight: math.unit(150, "lb"),
  19070. name: "Side",
  19071. image: {
  19072. source: "./media/characters/richard-dragon/side.svg",
  19073. extra: 845 / 340,
  19074. bottom: 0.017
  19075. }
  19076. },
  19077. maw: {
  19078. height: math.unit(2.97, "feet"),
  19079. name: "Maw",
  19080. image: {
  19081. source: "./media/characters/richard-dragon/maw.svg"
  19082. }
  19083. },
  19084. },
  19085. [
  19086. ]
  19087. ))
  19088. characterMakers.push(() => makeCharacter(
  19089. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19090. {
  19091. front: {
  19092. height: math.unit(4, "feet"),
  19093. weight: math.unit(100, "lb"),
  19094. name: "Front",
  19095. image: {
  19096. source: "./media/characters/richard-smeargle/front.svg",
  19097. extra: 2952 / 2820,
  19098. bottom: 0.028
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Normal",
  19105. height: math.unit(4, "feet"),
  19106. default: true
  19107. },
  19108. {
  19109. name: "Dynamax",
  19110. height: math.unit(20, "meters")
  19111. },
  19112. ]
  19113. ))
  19114. characterMakers.push(() => makeCharacter(
  19115. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19116. {
  19117. front: {
  19118. height: math.unit(6, "feet"),
  19119. weight: math.unit(110, "lb"),
  19120. name: "Front",
  19121. image: {
  19122. source: "./media/characters/klay/front.svg",
  19123. extra: 962 / 883,
  19124. bottom: 0.04
  19125. }
  19126. },
  19127. back: {
  19128. height: math.unit(6, "feet"),
  19129. weight: math.unit(110, "lb"),
  19130. name: "Back",
  19131. image: {
  19132. source: "./media/characters/klay/back.svg",
  19133. extra: 962 / 883
  19134. }
  19135. },
  19136. beans: {
  19137. height: math.unit(1.15, "feet"),
  19138. name: "Beans",
  19139. image: {
  19140. source: "./media/characters/klay/beans.svg"
  19141. }
  19142. },
  19143. },
  19144. [
  19145. {
  19146. name: "Micro",
  19147. height: math.unit(6, "inches")
  19148. },
  19149. {
  19150. name: "Mini",
  19151. height: math.unit(3, "feet")
  19152. },
  19153. {
  19154. name: "Normal",
  19155. height: math.unit(6, "feet"),
  19156. default: true
  19157. },
  19158. {
  19159. name: "Big",
  19160. height: math.unit(25, "feet")
  19161. },
  19162. {
  19163. name: "Macro",
  19164. height: math.unit(100, "feet")
  19165. },
  19166. {
  19167. name: "Megamacro",
  19168. height: math.unit(400, "feet")
  19169. },
  19170. ]
  19171. ))
  19172. characterMakers.push(() => makeCharacter(
  19173. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19174. {
  19175. front: {
  19176. height: math.unit(6, "feet"),
  19177. weight: math.unit(160, "lb"),
  19178. name: "Front",
  19179. image: {
  19180. source: "./media/characters/marcus/front.svg",
  19181. extra: 734 / 676,
  19182. bottom: 0.03
  19183. }
  19184. },
  19185. },
  19186. [
  19187. {
  19188. name: "Little",
  19189. height: math.unit(6, "feet")
  19190. },
  19191. {
  19192. name: "Normal",
  19193. height: math.unit(110, "feet"),
  19194. default: true
  19195. },
  19196. {
  19197. name: "Macro",
  19198. height: math.unit(250, "feet")
  19199. },
  19200. {
  19201. name: "Megamacro",
  19202. height: math.unit(1000, "feet")
  19203. },
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19208. {
  19209. front: {
  19210. height: math.unit(7, "feet"),
  19211. weight: math.unit(275, "lb"),
  19212. name: "Front",
  19213. image: {
  19214. source: "./media/characters/claude-delroute/front.svg",
  19215. extra: 902/827,
  19216. bottom: 26/928
  19217. }
  19218. },
  19219. side: {
  19220. height: math.unit(7, "feet"),
  19221. weight: math.unit(275, "lb"),
  19222. name: "Side",
  19223. image: {
  19224. source: "./media/characters/claude-delroute/side.svg",
  19225. extra: 908/853,
  19226. bottom: 16/924
  19227. }
  19228. },
  19229. back: {
  19230. height: math.unit(7, "feet"),
  19231. weight: math.unit(275, "lb"),
  19232. name: "Back",
  19233. image: {
  19234. source: "./media/characters/claude-delroute/back.svg",
  19235. extra: 911/829,
  19236. bottom: 18/929
  19237. }
  19238. },
  19239. maw: {
  19240. height: math.unit(0.6407, "meters"),
  19241. name: "Maw",
  19242. image: {
  19243. source: "./media/characters/claude-delroute/maw.svg"
  19244. }
  19245. },
  19246. },
  19247. [
  19248. {
  19249. name: "Normal",
  19250. height: math.unit(7, "feet"),
  19251. default: true
  19252. },
  19253. {
  19254. name: "Lorge",
  19255. height: math.unit(20, "feet")
  19256. },
  19257. ]
  19258. ))
  19259. characterMakers.push(() => makeCharacter(
  19260. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19261. {
  19262. front: {
  19263. height: math.unit(8 + 4 / 12, "feet"),
  19264. weight: math.unit(600, "lb"),
  19265. name: "Front",
  19266. image: {
  19267. source: "./media/characters/dragonien/front.svg",
  19268. extra: 100 / 94,
  19269. bottom: 3.3 / 103.3445
  19270. }
  19271. },
  19272. back: {
  19273. height: math.unit(8 + 4 / 12, "feet"),
  19274. weight: math.unit(600, "lb"),
  19275. name: "Back",
  19276. image: {
  19277. source: "./media/characters/dragonien/back.svg",
  19278. extra: 776 / 746,
  19279. bottom: 6.4 / 782.0616
  19280. }
  19281. },
  19282. foot: {
  19283. height: math.unit(1.54, "feet"),
  19284. name: "Foot",
  19285. image: {
  19286. source: "./media/characters/dragonien/foot.svg",
  19287. }
  19288. },
  19289. },
  19290. [
  19291. {
  19292. name: "Normal",
  19293. height: math.unit(8 + 4 / 12, "feet"),
  19294. default: true
  19295. },
  19296. {
  19297. name: "Macro",
  19298. height: math.unit(200, "feet")
  19299. },
  19300. {
  19301. name: "Megamacro",
  19302. height: math.unit(1, "mile")
  19303. },
  19304. {
  19305. name: "Gigamacro",
  19306. height: math.unit(1000, "miles")
  19307. },
  19308. ]
  19309. ))
  19310. characterMakers.push(() => makeCharacter(
  19311. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19312. {
  19313. front: {
  19314. height: math.unit(5 + 2 / 12, "feet"),
  19315. weight: math.unit(110, "lb"),
  19316. name: "Front",
  19317. image: {
  19318. source: "./media/characters/desta/front.svg",
  19319. extra: 767 / 726,
  19320. bottom: 11.7 / 779
  19321. }
  19322. },
  19323. back: {
  19324. height: math.unit(5 + 2 / 12, "feet"),
  19325. weight: math.unit(110, "lb"),
  19326. name: "Back",
  19327. image: {
  19328. source: "./media/characters/desta/back.svg",
  19329. extra: 777 / 728,
  19330. bottom: 6 / 784
  19331. }
  19332. },
  19333. frontAlt: {
  19334. height: math.unit(5 + 2 / 12, "feet"),
  19335. weight: math.unit(110, "lb"),
  19336. name: "Front",
  19337. image: {
  19338. source: "./media/characters/desta/front-alt.svg",
  19339. extra: 1482 / 1417
  19340. }
  19341. },
  19342. side: {
  19343. height: math.unit(5 + 2 / 12, "feet"),
  19344. weight: math.unit(110, "lb"),
  19345. name: "Side",
  19346. image: {
  19347. source: "./media/characters/desta/side.svg",
  19348. extra: 2579 / 2491,
  19349. bottom: 0.053
  19350. }
  19351. },
  19352. },
  19353. [
  19354. {
  19355. name: "Micro",
  19356. height: math.unit(6, "inches")
  19357. },
  19358. {
  19359. name: "Normal",
  19360. height: math.unit(5 + 2 / 12, "feet"),
  19361. default: true
  19362. },
  19363. {
  19364. name: "Macro",
  19365. height: math.unit(62, "feet")
  19366. },
  19367. {
  19368. name: "Megamacro",
  19369. height: math.unit(1800, "feet")
  19370. },
  19371. ]
  19372. ))
  19373. characterMakers.push(() => makeCharacter(
  19374. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19375. {
  19376. front: {
  19377. height: math.unit(10, "feet"),
  19378. weight: math.unit(700, "lb"),
  19379. name: "Front",
  19380. image: {
  19381. source: "./media/characters/storm-alystar/front.svg",
  19382. extra: 2112 / 1898,
  19383. bottom: 0.034
  19384. }
  19385. },
  19386. },
  19387. [
  19388. {
  19389. name: "Micro",
  19390. height: math.unit(3.5, "inches")
  19391. },
  19392. {
  19393. name: "Normal",
  19394. height: math.unit(10, "feet"),
  19395. default: true
  19396. },
  19397. {
  19398. name: "Macro",
  19399. height: math.unit(400, "feet")
  19400. },
  19401. {
  19402. name: "Deific",
  19403. height: math.unit(60, "miles")
  19404. },
  19405. ]
  19406. ))
  19407. characterMakers.push(() => makeCharacter(
  19408. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19409. {
  19410. front: {
  19411. height: math.unit(2.35, "meters"),
  19412. weight: math.unit(119, "kg"),
  19413. name: "Front",
  19414. image: {
  19415. source: "./media/characters/ilia/front.svg",
  19416. extra: 1285 / 1255,
  19417. bottom: 0.06
  19418. }
  19419. },
  19420. },
  19421. [
  19422. {
  19423. name: "Normal",
  19424. height: math.unit(2.35, "meters")
  19425. },
  19426. {
  19427. name: "Macro",
  19428. height: math.unit(140, "meters"),
  19429. default: true
  19430. },
  19431. {
  19432. name: "Megamacro",
  19433. height: math.unit(100, "miles")
  19434. },
  19435. ]
  19436. ))
  19437. characterMakers.push(() => makeCharacter(
  19438. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19439. {
  19440. front: {
  19441. height: math.unit(6 + 5 / 12, "feet"),
  19442. weight: math.unit(190, "lb"),
  19443. name: "Front",
  19444. image: {
  19445. source: "./media/characters/kingdead/front.svg",
  19446. extra: 1228 / 1177
  19447. }
  19448. },
  19449. },
  19450. [
  19451. {
  19452. name: "Micro",
  19453. height: math.unit(7, "inches")
  19454. },
  19455. {
  19456. name: "Normal",
  19457. height: math.unit(6 + 5 / 12, "feet")
  19458. },
  19459. {
  19460. name: "Macro",
  19461. height: math.unit(150, "feet"),
  19462. default: true
  19463. },
  19464. {
  19465. name: "Megamacro",
  19466. height: math.unit(200, "miles")
  19467. },
  19468. ]
  19469. ))
  19470. characterMakers.push(() => makeCharacter(
  19471. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19472. {
  19473. front: {
  19474. height: math.unit(8, "feet"),
  19475. weight: math.unit(600, "lb"),
  19476. name: "Front",
  19477. image: {
  19478. source: "./media/characters/kyrehx/front.svg",
  19479. extra: 1195 / 1095,
  19480. bottom: 0.034
  19481. }
  19482. },
  19483. },
  19484. [
  19485. {
  19486. name: "Micro",
  19487. height: math.unit(2, "inches")
  19488. },
  19489. {
  19490. name: "Normal",
  19491. height: math.unit(8, "feet"),
  19492. default: true
  19493. },
  19494. {
  19495. name: "Macro",
  19496. height: math.unit(255, "feet")
  19497. },
  19498. ]
  19499. ))
  19500. characterMakers.push(() => makeCharacter(
  19501. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19502. {
  19503. front: {
  19504. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19505. weight: math.unit(184, "lb"),
  19506. name: "Front",
  19507. image: {
  19508. source: "./media/characters/xang/front.svg",
  19509. extra: 845 / 755
  19510. }
  19511. },
  19512. },
  19513. [
  19514. {
  19515. name: "Normal",
  19516. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19517. default: true
  19518. },
  19519. {
  19520. name: "Macro",
  19521. height: math.unit(0.935 * 146, "feet")
  19522. },
  19523. {
  19524. name: "Megamacro",
  19525. height: math.unit(0.935 * 3, "miles")
  19526. },
  19527. ]
  19528. ))
  19529. characterMakers.push(() => makeCharacter(
  19530. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19531. {
  19532. frontDressed: {
  19533. height: math.unit(5 + 7 / 12, "feet"),
  19534. weight: math.unit(140, "lb"),
  19535. name: "Front (Dressed)",
  19536. image: {
  19537. source: "./media/characters/doc-weardno/front-dressed.svg",
  19538. extra: 263 / 234
  19539. }
  19540. },
  19541. backDressed: {
  19542. height: math.unit(5 + 7 / 12, "feet"),
  19543. weight: math.unit(140, "lb"),
  19544. name: "Back (Dressed)",
  19545. image: {
  19546. source: "./media/characters/doc-weardno/back-dressed.svg",
  19547. extra: 266 / 238
  19548. }
  19549. },
  19550. front: {
  19551. height: math.unit(5 + 7 / 12, "feet"),
  19552. weight: math.unit(140, "lb"),
  19553. name: "Front",
  19554. image: {
  19555. source: "./media/characters/doc-weardno/front.svg",
  19556. extra: 254 / 233
  19557. }
  19558. },
  19559. },
  19560. [
  19561. {
  19562. name: "Micro",
  19563. height: math.unit(3, "inches")
  19564. },
  19565. {
  19566. name: "Normal",
  19567. height: math.unit(5 + 7 / 12, "feet"),
  19568. default: true
  19569. },
  19570. {
  19571. name: "Macro",
  19572. height: math.unit(25, "feet")
  19573. },
  19574. {
  19575. name: "Megamacro",
  19576. height: math.unit(2, "miles")
  19577. },
  19578. ]
  19579. ))
  19580. characterMakers.push(() => makeCharacter(
  19581. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19582. {
  19583. front: {
  19584. height: math.unit(6 + 2 / 12, "feet"),
  19585. weight: math.unit(153, "lb"),
  19586. name: "Front",
  19587. image: {
  19588. source: "./media/characters/seth-whilst/front.svg",
  19589. bottom: 0.07
  19590. }
  19591. },
  19592. },
  19593. [
  19594. {
  19595. name: "Micro",
  19596. height: math.unit(5, "inches")
  19597. },
  19598. {
  19599. name: "Normal",
  19600. height: math.unit(6 + 2 / 12, "feet"),
  19601. default: true
  19602. },
  19603. ]
  19604. ))
  19605. characterMakers.push(() => makeCharacter(
  19606. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19607. {
  19608. front: {
  19609. height: math.unit(3, "inches"),
  19610. weight: math.unit(8, "grams"),
  19611. name: "Front",
  19612. image: {
  19613. source: "./media/characters/pocket-jabari/front.svg",
  19614. extra: 1024 / 974,
  19615. bottom: 0.039
  19616. }
  19617. },
  19618. },
  19619. [
  19620. {
  19621. name: "Minimicro",
  19622. height: math.unit(8, "mm")
  19623. },
  19624. {
  19625. name: "Micro",
  19626. height: math.unit(3, "inches"),
  19627. default: true
  19628. },
  19629. {
  19630. name: "Normal",
  19631. height: math.unit(3, "feet")
  19632. },
  19633. ]
  19634. ))
  19635. characterMakers.push(() => makeCharacter(
  19636. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19637. {
  19638. frontDressed: {
  19639. height: math.unit(15, "feet"),
  19640. weight: math.unit(3280, "lb"),
  19641. name: "Front (Dressed)",
  19642. image: {
  19643. source: "./media/characters/sapphy/front-dressed.svg",
  19644. extra: 1951/1654,
  19645. bottom: 194/2145
  19646. },
  19647. form: "anthro",
  19648. default: true
  19649. },
  19650. backDressed: {
  19651. height: math.unit(15, "feet"),
  19652. weight: math.unit(3280, "lb"),
  19653. name: "Back (Dressed)",
  19654. image: {
  19655. source: "./media/characters/sapphy/back-dressed.svg",
  19656. extra: 2058/1918,
  19657. bottom: 125/2183
  19658. },
  19659. form: "anthro"
  19660. },
  19661. frontNude: {
  19662. height: math.unit(15, "feet"),
  19663. weight: math.unit(3280, "lb"),
  19664. name: "Front (Nude)",
  19665. image: {
  19666. source: "./media/characters/sapphy/front-nude.svg",
  19667. extra: 1951/1654,
  19668. bottom: 194/2145
  19669. },
  19670. form: "anthro"
  19671. },
  19672. backNude: {
  19673. height: math.unit(15, "feet"),
  19674. weight: math.unit(3280, "lb"),
  19675. name: "Back (Nude)",
  19676. image: {
  19677. source: "./media/characters/sapphy/back-nude.svg",
  19678. extra: 2058/1918,
  19679. bottom: 125/2183
  19680. },
  19681. form: "anthro"
  19682. },
  19683. full: {
  19684. height: math.unit(15, "feet"),
  19685. weight: math.unit(3280, "lb"),
  19686. name: "Full",
  19687. image: {
  19688. source: "./media/characters/sapphy/full.svg",
  19689. extra: 1396/1317,
  19690. bottom: 44/1440
  19691. },
  19692. form: "anthro"
  19693. },
  19694. dick: {
  19695. height: math.unit(3.8, "feet"),
  19696. name: "Dick",
  19697. image: {
  19698. source: "./media/characters/sapphy/dick.svg"
  19699. },
  19700. form: "anthro"
  19701. },
  19702. feral: {
  19703. height: math.unit(35, "feet"),
  19704. weight: math.unit(160, "tons"),
  19705. name: "Feral",
  19706. image: {
  19707. source: "./media/characters/sapphy/feral.svg",
  19708. extra: 1050/573,
  19709. bottom: 60/1110
  19710. },
  19711. form: "feral",
  19712. default: true
  19713. },
  19714. },
  19715. [
  19716. {
  19717. name: "Normal",
  19718. height: math.unit(15, "feet"),
  19719. form: "anthro"
  19720. },
  19721. {
  19722. name: "Casual Macro",
  19723. height: math.unit(120, "feet"),
  19724. form: "anthro"
  19725. },
  19726. {
  19727. name: "Macro",
  19728. height: math.unit(2150, "feet"),
  19729. default: true,
  19730. form: "anthro"
  19731. },
  19732. {
  19733. name: "Megamacro",
  19734. height: math.unit(8, "miles"),
  19735. form: "anthro"
  19736. },
  19737. {
  19738. name: "Galaxy Mom",
  19739. height: math.unit(6, "megalightyears"),
  19740. form: "anthro"
  19741. },
  19742. {
  19743. name: "Normal",
  19744. height: math.unit(35, "feet"),
  19745. form: "feral",
  19746. default: true
  19747. },
  19748. {
  19749. name: "Macro",
  19750. height: math.unit(300, "feet"),
  19751. form: "feral"
  19752. },
  19753. {
  19754. name: "Galaxy Mom",
  19755. height: math.unit(10, "megalightyears"),
  19756. form: "feral"
  19757. },
  19758. ],
  19759. {
  19760. "anthro": {
  19761. name: "Anthro",
  19762. default: true
  19763. },
  19764. "feral": {
  19765. name: "Feral"
  19766. }
  19767. }
  19768. ))
  19769. characterMakers.push(() => makeCharacter(
  19770. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19771. {
  19772. front: {
  19773. height: math.unit(6, "feet"),
  19774. weight: math.unit(170, "lb"),
  19775. name: "Front",
  19776. image: {
  19777. source: "./media/characters/kiro/front.svg",
  19778. extra: 1064 / 1012,
  19779. bottom: 0.052
  19780. }
  19781. },
  19782. },
  19783. [
  19784. {
  19785. name: "Micro",
  19786. height: math.unit(6, "inches")
  19787. },
  19788. {
  19789. name: "Normal",
  19790. height: math.unit(6, "feet"),
  19791. default: true
  19792. },
  19793. {
  19794. name: "Macro",
  19795. height: math.unit(72, "feet")
  19796. },
  19797. ]
  19798. ))
  19799. characterMakers.push(() => makeCharacter(
  19800. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19801. {
  19802. front: {
  19803. height: math.unit(5 + 9 / 12, "feet"),
  19804. weight: math.unit(175, "lb"),
  19805. name: "Front",
  19806. image: {
  19807. source: "./media/characters/irishfox/front.svg",
  19808. extra: 1912 / 1680,
  19809. bottom: 0.02
  19810. }
  19811. },
  19812. },
  19813. [
  19814. {
  19815. name: "Nano",
  19816. height: math.unit(1, "mm")
  19817. },
  19818. {
  19819. name: "Micro",
  19820. height: math.unit(2, "inches")
  19821. },
  19822. {
  19823. name: "Normal",
  19824. height: math.unit(5 + 9 / 12, "feet"),
  19825. default: true
  19826. },
  19827. {
  19828. name: "Macro",
  19829. height: math.unit(45, "feet")
  19830. },
  19831. ]
  19832. ))
  19833. characterMakers.push(() => makeCharacter(
  19834. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19835. {
  19836. front: {
  19837. height: math.unit(6 + 1 / 12, "feet"),
  19838. weight: math.unit(75, "lb"),
  19839. name: "Front",
  19840. image: {
  19841. source: "./media/characters/aronai-sieyes/front.svg",
  19842. extra: 1532/1450,
  19843. bottom: 42/1574
  19844. }
  19845. },
  19846. side: {
  19847. height: math.unit(6 + 1 / 12, "feet"),
  19848. weight: math.unit(75, "lb"),
  19849. name: "Side",
  19850. image: {
  19851. source: "./media/characters/aronai-sieyes/side.svg",
  19852. extra: 1422/1365,
  19853. bottom: 148/1570
  19854. }
  19855. },
  19856. back: {
  19857. height: math.unit(6 + 1 / 12, "feet"),
  19858. weight: math.unit(75, "lb"),
  19859. name: "Back",
  19860. image: {
  19861. source: "./media/characters/aronai-sieyes/back.svg",
  19862. extra: 1526/1464,
  19863. bottom: 51/1577
  19864. }
  19865. },
  19866. dressed: {
  19867. height: math.unit(6 + 1 / 12, "feet"),
  19868. weight: math.unit(75, "lb"),
  19869. name: "Dressed",
  19870. image: {
  19871. source: "./media/characters/aronai-sieyes/dressed.svg",
  19872. extra: 1559/1483,
  19873. bottom: 39/1598
  19874. }
  19875. },
  19876. slit: {
  19877. height: math.unit(1.3, "feet"),
  19878. name: "Slit",
  19879. image: {
  19880. source: "./media/characters/aronai-sieyes/slit.svg"
  19881. }
  19882. },
  19883. slitSpread: {
  19884. height: math.unit(0.9, "feet"),
  19885. name: "Slit (Spread)",
  19886. image: {
  19887. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19888. }
  19889. },
  19890. rump: {
  19891. height: math.unit(1.3, "feet"),
  19892. name: "Rump",
  19893. image: {
  19894. source: "./media/characters/aronai-sieyes/rump.svg"
  19895. }
  19896. },
  19897. maw: {
  19898. height: math.unit(1.25, "feet"),
  19899. name: "Maw",
  19900. image: {
  19901. source: "./media/characters/aronai-sieyes/maw.svg"
  19902. }
  19903. },
  19904. feral: {
  19905. height: math.unit(18, "feet"),
  19906. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19907. name: "Feral",
  19908. image: {
  19909. source: "./media/characters/aronai-sieyes/feral.svg",
  19910. extra: 1530 / 1240,
  19911. bottom: 0.035
  19912. }
  19913. },
  19914. },
  19915. [
  19916. {
  19917. name: "Micro",
  19918. height: math.unit(2, "inches")
  19919. },
  19920. {
  19921. name: "Normal",
  19922. height: math.unit(6 + 1 / 12, "feet"),
  19923. default: true
  19924. }
  19925. ]
  19926. ))
  19927. characterMakers.push(() => makeCharacter(
  19928. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19929. {
  19930. front: {
  19931. height: math.unit(12, "feet"),
  19932. weight: math.unit(410, "kg"),
  19933. name: "Front",
  19934. image: {
  19935. source: "./media/characters/xuna/front.svg",
  19936. extra: 2184 / 1980
  19937. }
  19938. },
  19939. side: {
  19940. height: math.unit(12, "feet"),
  19941. weight: math.unit(410, "kg"),
  19942. name: "Side",
  19943. image: {
  19944. source: "./media/characters/xuna/side.svg",
  19945. extra: 2184 / 1980
  19946. }
  19947. },
  19948. back: {
  19949. height: math.unit(12, "feet"),
  19950. weight: math.unit(410, "kg"),
  19951. name: "Back",
  19952. image: {
  19953. source: "./media/characters/xuna/back.svg",
  19954. extra: 2184 / 1980
  19955. }
  19956. },
  19957. },
  19958. [
  19959. {
  19960. name: "Nano glow",
  19961. height: math.unit(10, "nm")
  19962. },
  19963. {
  19964. name: "Micro floof",
  19965. height: math.unit(0.3, "m")
  19966. },
  19967. {
  19968. name: "Huggable softy boi",
  19969. height: math.unit(3.6576, "m"),
  19970. default: true
  19971. },
  19972. {
  19973. name: "Admirable floof",
  19974. height: math.unit(80, "meters")
  19975. },
  19976. {
  19977. name: "Gentle macro",
  19978. height: math.unit(300, "meters")
  19979. },
  19980. {
  19981. name: "Very careful floof",
  19982. height: math.unit(3200, "meters")
  19983. },
  19984. {
  19985. name: "The mega floof",
  19986. height: math.unit(36000, "meters")
  19987. },
  19988. {
  19989. name: "Giga-fur-Wicker",
  19990. height: math.unit(4800000, "meters")
  19991. },
  19992. {
  19993. name: "Licky world",
  19994. height: math.unit(20000000, "meters")
  19995. },
  19996. {
  19997. name: "Floofy cyan sun",
  19998. height: math.unit(1500000000, "meters")
  19999. },
  20000. {
  20001. name: "Milky Wicker",
  20002. height: math.unit(1000000000000000000000, "meters")
  20003. },
  20004. {
  20005. name: "The observing Wicker",
  20006. height: math.unit(999999999999999999999999999, "meters")
  20007. },
  20008. ]
  20009. ))
  20010. characterMakers.push(() => makeCharacter(
  20011. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20012. {
  20013. front: {
  20014. height: math.unit(5 + 9 / 12, "feet"),
  20015. weight: math.unit(150, "lb"),
  20016. name: "Front",
  20017. image: {
  20018. source: "./media/characters/arokha-sieyes/front.svg",
  20019. extra: 1425 / 1284,
  20020. bottom: 0.05
  20021. }
  20022. },
  20023. },
  20024. [
  20025. {
  20026. name: "Normal",
  20027. height: math.unit(5 + 9 / 12, "feet")
  20028. },
  20029. {
  20030. name: "Macro",
  20031. height: math.unit(30, "meters"),
  20032. default: true
  20033. },
  20034. ]
  20035. ))
  20036. characterMakers.push(() => makeCharacter(
  20037. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20038. {
  20039. front: {
  20040. height: math.unit(6, "feet"),
  20041. weight: math.unit(180, "lb"),
  20042. name: "Front",
  20043. image: {
  20044. source: "./media/characters/arokh-sieyes/front.svg",
  20045. extra: 1830 / 1769,
  20046. bottom: 0.01
  20047. }
  20048. },
  20049. },
  20050. [
  20051. {
  20052. name: "Normal",
  20053. height: math.unit(6, "feet")
  20054. },
  20055. {
  20056. name: "Macro",
  20057. height: math.unit(30, "meters"),
  20058. default: true
  20059. },
  20060. ]
  20061. ))
  20062. characterMakers.push(() => makeCharacter(
  20063. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20064. {
  20065. side: {
  20066. height: math.unit(13 + 1 / 12, "feet"),
  20067. weight: math.unit(8.5, "tonnes"),
  20068. name: "Side",
  20069. image: {
  20070. source: "./media/characters/goldeneye/side.svg",
  20071. extra: 1182 / 778,
  20072. bottom: 0.067
  20073. }
  20074. },
  20075. paw: {
  20076. height: math.unit(3.4, "feet"),
  20077. name: "Paw",
  20078. image: {
  20079. source: "./media/characters/goldeneye/paw.svg"
  20080. }
  20081. },
  20082. },
  20083. [
  20084. {
  20085. name: "Normal",
  20086. height: math.unit(13 + 1 / 12, "feet"),
  20087. default: true
  20088. },
  20089. ]
  20090. ))
  20091. characterMakers.push(() => makeCharacter(
  20092. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20093. {
  20094. front: {
  20095. height: math.unit(6 + 1 / 12, "feet"),
  20096. weight: math.unit(210, "lb"),
  20097. name: "Front",
  20098. image: {
  20099. source: "./media/characters/leonardo-lycheborne/front.svg",
  20100. extra: 776/723,
  20101. bottom: 34/810
  20102. }
  20103. },
  20104. side: {
  20105. height: math.unit(6 + 1 / 12, "feet"),
  20106. weight: math.unit(210, "lb"),
  20107. name: "Side",
  20108. image: {
  20109. source: "./media/characters/leonardo-lycheborne/side.svg",
  20110. extra: 780/728,
  20111. bottom: 12/792
  20112. }
  20113. },
  20114. back: {
  20115. height: math.unit(6 + 1 / 12, "feet"),
  20116. weight: math.unit(210, "lb"),
  20117. name: "Back",
  20118. image: {
  20119. source: "./media/characters/leonardo-lycheborne/back.svg",
  20120. extra: 775/721,
  20121. bottom: 17/792
  20122. }
  20123. },
  20124. hand: {
  20125. height: math.unit(1.08, "feet"),
  20126. name: "Hand",
  20127. image: {
  20128. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20129. }
  20130. },
  20131. foot: {
  20132. height: math.unit(1.32, "feet"),
  20133. name: "Foot",
  20134. image: {
  20135. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20136. }
  20137. },
  20138. maw: {
  20139. height: math.unit(1, "feet"),
  20140. name: "Maw",
  20141. image: {
  20142. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20143. }
  20144. },
  20145. were: {
  20146. height: math.unit(20, "feet"),
  20147. weight: math.unit(7800, "lb"),
  20148. name: "Were",
  20149. image: {
  20150. source: "./media/characters/leonardo-lycheborne/were.svg",
  20151. extra: 1224/1165,
  20152. bottom: 72/1296
  20153. }
  20154. },
  20155. feral: {
  20156. height: math.unit(7.5, "feet"),
  20157. weight: math.unit(600, "lb"),
  20158. name: "Feral",
  20159. image: {
  20160. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20161. extra: 797/702,
  20162. bottom: 139/936
  20163. }
  20164. },
  20165. taur: {
  20166. height: math.unit(11, "feet"),
  20167. weight: math.unit(3300, "lb"),
  20168. name: "Taur",
  20169. image: {
  20170. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20171. extra: 1271/1197,
  20172. bottom: 47/1318
  20173. }
  20174. },
  20175. barghest: {
  20176. height: math.unit(11, "feet"),
  20177. weight: math.unit(1300, "lb"),
  20178. name: "Barghest",
  20179. image: {
  20180. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20181. extra: 1291/1204,
  20182. bottom: 37/1328
  20183. }
  20184. },
  20185. dick: {
  20186. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20187. name: "Dick",
  20188. image: {
  20189. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20190. }
  20191. },
  20192. dickWere: {
  20193. height: math.unit((20) / 3.8, "feet"),
  20194. name: "Dick (Were)",
  20195. image: {
  20196. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20197. }
  20198. },
  20199. },
  20200. [
  20201. {
  20202. name: "Normal",
  20203. height: math.unit(6 + 1 / 12, "feet"),
  20204. default: true
  20205. },
  20206. ]
  20207. ))
  20208. characterMakers.push(() => makeCharacter(
  20209. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20210. {
  20211. front: {
  20212. height: math.unit(10, "feet"),
  20213. weight: math.unit(350, "lb"),
  20214. name: "Front",
  20215. image: {
  20216. source: "./media/characters/jet/front.svg",
  20217. extra: 2050 / 1980,
  20218. bottom: 0.013
  20219. }
  20220. },
  20221. back: {
  20222. height: math.unit(10, "feet"),
  20223. weight: math.unit(350, "lb"),
  20224. name: "Back",
  20225. image: {
  20226. source: "./media/characters/jet/back.svg",
  20227. extra: 2050 / 1980,
  20228. bottom: 0.013
  20229. }
  20230. },
  20231. },
  20232. [
  20233. {
  20234. name: "Micro",
  20235. height: math.unit(6, "inches")
  20236. },
  20237. {
  20238. name: "Normal",
  20239. height: math.unit(10, "feet"),
  20240. default: true
  20241. },
  20242. {
  20243. name: "Macro",
  20244. height: math.unit(100, "feet")
  20245. },
  20246. ]
  20247. ))
  20248. characterMakers.push(() => makeCharacter(
  20249. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20250. {
  20251. front: {
  20252. height: math.unit(15, "feet"),
  20253. weight: math.unit(2800, "lb"),
  20254. name: "Front",
  20255. image: {
  20256. source: "./media/characters/tanarath/front.svg",
  20257. extra: 2392 / 2220,
  20258. bottom: 0.03
  20259. }
  20260. },
  20261. back: {
  20262. height: math.unit(15, "feet"),
  20263. weight: math.unit(2800, "lb"),
  20264. name: "Back",
  20265. image: {
  20266. source: "./media/characters/tanarath/back.svg",
  20267. extra: 2392 / 2220,
  20268. bottom: 0.03
  20269. }
  20270. },
  20271. },
  20272. [
  20273. {
  20274. name: "Normal",
  20275. height: math.unit(15, "feet"),
  20276. default: true
  20277. },
  20278. ]
  20279. ))
  20280. characterMakers.push(() => makeCharacter(
  20281. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20282. {
  20283. front: {
  20284. height: math.unit(7 + 1 / 12, "feet"),
  20285. weight: math.unit(175, "lb"),
  20286. name: "Front",
  20287. image: {
  20288. source: "./media/characters/patty-cattybatty/front.svg",
  20289. extra: 908 / 874,
  20290. bottom: 0.025
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Micro",
  20297. height: math.unit(1, "inch")
  20298. },
  20299. {
  20300. name: "Normal",
  20301. height: math.unit(7 + 1 / 12, "feet")
  20302. },
  20303. {
  20304. name: "Mini Macro",
  20305. height: math.unit(155, "feet")
  20306. },
  20307. {
  20308. name: "Macro",
  20309. height: math.unit(1077, "feet")
  20310. },
  20311. {
  20312. name: "Mega Macro",
  20313. height: math.unit(47650, "feet"),
  20314. default: true
  20315. },
  20316. {
  20317. name: "Giga Macro",
  20318. height: math.unit(440, "miles")
  20319. },
  20320. {
  20321. name: "Tera Macro",
  20322. height: math.unit(8700, "miles")
  20323. },
  20324. {
  20325. name: "Planetary Macro",
  20326. height: math.unit(32700, "miles")
  20327. },
  20328. {
  20329. name: "Solar Macro",
  20330. height: math.unit(550000, "miles")
  20331. },
  20332. {
  20333. name: "Celestial Macro",
  20334. height: math.unit(2.5, "AU")
  20335. },
  20336. ]
  20337. ))
  20338. characterMakers.push(() => makeCharacter(
  20339. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20340. {
  20341. front: {
  20342. height: math.unit(4 + 5 / 12, "feet"),
  20343. weight: math.unit(90, "lb"),
  20344. name: "Front",
  20345. image: {
  20346. source: "./media/characters/cappu/front.svg",
  20347. extra: 1247 / 1152,
  20348. bottom: 0.012
  20349. }
  20350. },
  20351. },
  20352. [
  20353. {
  20354. name: "Normal",
  20355. height: math.unit(4 + 5 / 12, "feet"),
  20356. default: true
  20357. },
  20358. ]
  20359. ))
  20360. characterMakers.push(() => makeCharacter(
  20361. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20362. {
  20363. frontDressed: {
  20364. height: math.unit(70, "cm"),
  20365. weight: math.unit(6, "kg"),
  20366. name: "Front (Dressed)",
  20367. image: {
  20368. source: "./media/characters/sebi/front-dressed.svg",
  20369. extra: 713.5 / 686.5,
  20370. bottom: 0.003
  20371. }
  20372. },
  20373. front: {
  20374. height: math.unit(70, "cm"),
  20375. weight: math.unit(5, "kg"),
  20376. name: "Front",
  20377. image: {
  20378. source: "./media/characters/sebi/front.svg",
  20379. extra: 713.5 / 686.5,
  20380. bottom: 0.003
  20381. }
  20382. }
  20383. },
  20384. [
  20385. {
  20386. name: "Normal",
  20387. height: math.unit(70, "cm"),
  20388. default: true
  20389. },
  20390. {
  20391. name: "Macro",
  20392. height: math.unit(8, "meters")
  20393. },
  20394. ]
  20395. ))
  20396. characterMakers.push(() => makeCharacter(
  20397. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20398. {
  20399. front: {
  20400. height: math.unit(6, "feet"),
  20401. weight: math.unit(150, "lb"),
  20402. name: "Front",
  20403. image: {
  20404. source: "./media/characters/typhek/front.svg",
  20405. extra: 1948 / 1929,
  20406. bottom: 0.025
  20407. }
  20408. },
  20409. side: {
  20410. height: math.unit(6, "feet"),
  20411. weight: math.unit(150, "lb"),
  20412. name: "Side",
  20413. image: {
  20414. source: "./media/characters/typhek/side.svg",
  20415. extra: 2034 / 2010,
  20416. bottom: 0.003
  20417. }
  20418. },
  20419. back: {
  20420. height: math.unit(6, "feet"),
  20421. weight: math.unit(150, "lb"),
  20422. name: "Back",
  20423. image: {
  20424. source: "./media/characters/typhek/back.svg",
  20425. extra: 2005 / 1978,
  20426. bottom: 0.004
  20427. }
  20428. },
  20429. palm: {
  20430. height: math.unit(1.2, "feet"),
  20431. name: "Palm",
  20432. image: {
  20433. source: "./media/characters/typhek/palm.svg"
  20434. }
  20435. },
  20436. fist: {
  20437. height: math.unit(1.1, "feet"),
  20438. name: "Fist",
  20439. image: {
  20440. source: "./media/characters/typhek/fist.svg"
  20441. }
  20442. },
  20443. foot: {
  20444. height: math.unit(1.57, "feet"),
  20445. name: "Foot",
  20446. image: {
  20447. source: "./media/characters/typhek/foot.svg"
  20448. }
  20449. },
  20450. sole: {
  20451. height: math.unit(2.05, "feet"),
  20452. name: "Sole",
  20453. image: {
  20454. source: "./media/characters/typhek/sole.svg"
  20455. }
  20456. },
  20457. },
  20458. [
  20459. {
  20460. name: "Macro",
  20461. height: math.unit(40, "stories"),
  20462. default: true
  20463. },
  20464. {
  20465. name: "Megamacro",
  20466. height: math.unit(1, "mile")
  20467. },
  20468. {
  20469. name: "Gigamacro",
  20470. height: math.unit(4000, "solarradii")
  20471. },
  20472. {
  20473. name: "Universal",
  20474. height: math.unit(1.1, "universes")
  20475. }
  20476. ]
  20477. ))
  20478. characterMakers.push(() => makeCharacter(
  20479. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20480. {
  20481. side: {
  20482. height: math.unit(5 + 7 / 12, "feet"),
  20483. weight: math.unit(150, "lb"),
  20484. name: "Side",
  20485. image: {
  20486. source: "./media/characters/kassy/side.svg",
  20487. extra: 1280 / 1225,
  20488. bottom: 0.002
  20489. }
  20490. },
  20491. front: {
  20492. height: math.unit(5 + 7 / 12, "feet"),
  20493. weight: math.unit(150, "lb"),
  20494. name: "Front",
  20495. image: {
  20496. source: "./media/characters/kassy/front.svg",
  20497. extra: 1280 / 1225,
  20498. bottom: 0.025
  20499. }
  20500. },
  20501. back: {
  20502. height: math.unit(5 + 7 / 12, "feet"),
  20503. weight: math.unit(150, "lb"),
  20504. name: "Back",
  20505. image: {
  20506. source: "./media/characters/kassy/back.svg",
  20507. extra: 1280 / 1225,
  20508. bottom: 0.002
  20509. }
  20510. },
  20511. foot: {
  20512. height: math.unit(1.266, "feet"),
  20513. name: "Foot",
  20514. image: {
  20515. source: "./media/characters/kassy/foot.svg"
  20516. }
  20517. },
  20518. },
  20519. [
  20520. {
  20521. name: "Normal",
  20522. height: math.unit(5 + 7 / 12, "feet")
  20523. },
  20524. {
  20525. name: "Macro",
  20526. height: math.unit(137, "feet"),
  20527. default: true
  20528. },
  20529. {
  20530. name: "Megamacro",
  20531. height: math.unit(1, "mile")
  20532. },
  20533. ]
  20534. ))
  20535. characterMakers.push(() => makeCharacter(
  20536. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20537. {
  20538. front: {
  20539. height: math.unit(6 + 1 / 12, "feet"),
  20540. weight: math.unit(200, "lb"),
  20541. name: "Front",
  20542. image: {
  20543. source: "./media/characters/neil/front.svg",
  20544. extra: 1326 / 1250,
  20545. bottom: 0.023
  20546. }
  20547. },
  20548. },
  20549. [
  20550. {
  20551. name: "Normal",
  20552. height: math.unit(6 + 1 / 12, "feet"),
  20553. default: true
  20554. },
  20555. {
  20556. name: "Macro",
  20557. height: math.unit(200, "feet")
  20558. },
  20559. ]
  20560. ))
  20561. characterMakers.push(() => makeCharacter(
  20562. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20563. {
  20564. front: {
  20565. height: math.unit(5 + 9 / 12, "feet"),
  20566. weight: math.unit(190, "lb"),
  20567. name: "Front",
  20568. image: {
  20569. source: "./media/characters/atticus/front.svg",
  20570. extra: 2934 / 2785,
  20571. bottom: 0.025
  20572. }
  20573. },
  20574. },
  20575. [
  20576. {
  20577. name: "Normal",
  20578. height: math.unit(5 + 9 / 12, "feet"),
  20579. default: true
  20580. },
  20581. {
  20582. name: "Macro",
  20583. height: math.unit(180, "feet")
  20584. },
  20585. ]
  20586. ))
  20587. characterMakers.push(() => makeCharacter(
  20588. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20589. {
  20590. side: {
  20591. height: math.unit(9, "feet"),
  20592. weight: math.unit(650, "lb"),
  20593. name: "Side",
  20594. image: {
  20595. source: "./media/characters/milo/side.svg",
  20596. extra: 2644 / 2310,
  20597. bottom: 0.032
  20598. }
  20599. },
  20600. },
  20601. [
  20602. {
  20603. name: "Normal",
  20604. height: math.unit(9, "feet"),
  20605. default: true
  20606. },
  20607. {
  20608. name: "Macro",
  20609. height: math.unit(300, "feet")
  20610. },
  20611. ]
  20612. ))
  20613. characterMakers.push(() => makeCharacter(
  20614. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20615. {
  20616. side: {
  20617. height: math.unit(8, "meters"),
  20618. weight: math.unit(90000, "kg"),
  20619. name: "Side",
  20620. image: {
  20621. source: "./media/characters/ijzer/side.svg",
  20622. extra: 2756 / 1600,
  20623. bottom: 0.01
  20624. }
  20625. },
  20626. },
  20627. [
  20628. {
  20629. name: "Small",
  20630. height: math.unit(3, "meters")
  20631. },
  20632. {
  20633. name: "Normal",
  20634. height: math.unit(8, "meters"),
  20635. default: true
  20636. },
  20637. {
  20638. name: "Normal+",
  20639. height: math.unit(10, "meters")
  20640. },
  20641. {
  20642. name: "Bigger",
  20643. height: math.unit(24, "meters")
  20644. },
  20645. {
  20646. name: "Huge",
  20647. height: math.unit(80, "meters")
  20648. },
  20649. ]
  20650. ))
  20651. characterMakers.push(() => makeCharacter(
  20652. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20653. {
  20654. front: {
  20655. height: math.unit(6 + 2 / 12, "feet"),
  20656. weight: math.unit(153, "lb"),
  20657. name: "Front",
  20658. image: {
  20659. source: "./media/characters/luca-cervicum/front.svg",
  20660. extra: 370 / 327,
  20661. bottom: 0.015
  20662. }
  20663. },
  20664. back: {
  20665. height: math.unit(6 + 2 / 12, "feet"),
  20666. weight: math.unit(153, "lb"),
  20667. name: "Back",
  20668. image: {
  20669. source: "./media/characters/luca-cervicum/back.svg",
  20670. extra: 367 / 333,
  20671. bottom: 0.005
  20672. }
  20673. },
  20674. frontGear: {
  20675. height: math.unit(6 + 2 / 12, "feet"),
  20676. weight: math.unit(173, "lb"),
  20677. name: "Front (Gear)",
  20678. image: {
  20679. source: "./media/characters/luca-cervicum/front-gear.svg",
  20680. extra: 377 / 333,
  20681. bottom: 0.006
  20682. }
  20683. },
  20684. },
  20685. [
  20686. {
  20687. name: "Normal",
  20688. height: math.unit(6 + 2 / 12, "feet"),
  20689. default: true
  20690. },
  20691. ]
  20692. ))
  20693. characterMakers.push(() => makeCharacter(
  20694. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20695. {
  20696. front: {
  20697. height: math.unit(6 + 1 / 12, "feet"),
  20698. weight: math.unit(304, "lb"),
  20699. name: "Front",
  20700. image: {
  20701. source: "./media/characters/oliver/front.svg",
  20702. extra: 157 / 143,
  20703. bottom: 0.08
  20704. }
  20705. },
  20706. },
  20707. [
  20708. {
  20709. name: "Normal",
  20710. height: math.unit(6 + 1 / 12, "feet"),
  20711. default: true
  20712. },
  20713. ]
  20714. ))
  20715. characterMakers.push(() => makeCharacter(
  20716. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20717. {
  20718. front: {
  20719. height: math.unit(5 + 7 / 12, "feet"),
  20720. weight: math.unit(140, "lb"),
  20721. name: "Front",
  20722. image: {
  20723. source: "./media/characters/shane/front.svg",
  20724. extra: 304 / 289,
  20725. bottom: 0.005
  20726. }
  20727. },
  20728. },
  20729. [
  20730. {
  20731. name: "Normal",
  20732. height: math.unit(5 + 7 / 12, "feet"),
  20733. default: true
  20734. },
  20735. ]
  20736. ))
  20737. characterMakers.push(() => makeCharacter(
  20738. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20739. {
  20740. front: {
  20741. height: math.unit(5 + 9 / 12, "feet"),
  20742. weight: math.unit(178, "lb"),
  20743. name: "Front",
  20744. image: {
  20745. source: "./media/characters/shin/front.svg",
  20746. extra: 159 / 151,
  20747. bottom: 0.015
  20748. }
  20749. },
  20750. },
  20751. [
  20752. {
  20753. name: "Normal",
  20754. height: math.unit(5 + 9 / 12, "feet"),
  20755. default: true
  20756. },
  20757. ]
  20758. ))
  20759. characterMakers.push(() => makeCharacter(
  20760. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20761. {
  20762. front: {
  20763. height: math.unit(5 + 10 / 12, "feet"),
  20764. weight: math.unit(168, "lb"),
  20765. name: "Front",
  20766. image: {
  20767. source: "./media/characters/xerxes/front.svg",
  20768. extra: 282 / 260,
  20769. bottom: 0.045
  20770. }
  20771. },
  20772. },
  20773. [
  20774. {
  20775. name: "Normal",
  20776. height: math.unit(5 + 10 / 12, "feet"),
  20777. default: true
  20778. },
  20779. ]
  20780. ))
  20781. characterMakers.push(() => makeCharacter(
  20782. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20783. {
  20784. front: {
  20785. height: math.unit(6 + 7 / 12, "feet"),
  20786. weight: math.unit(208, "lb"),
  20787. name: "Front",
  20788. image: {
  20789. source: "./media/characters/chaska/front.svg",
  20790. extra: 332 / 319,
  20791. bottom: 0.015
  20792. }
  20793. },
  20794. },
  20795. [
  20796. {
  20797. name: "Normal",
  20798. height: math.unit(6 + 7 / 12, "feet"),
  20799. default: true
  20800. },
  20801. ]
  20802. ))
  20803. characterMakers.push(() => makeCharacter(
  20804. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20805. {
  20806. front: {
  20807. height: math.unit(5 + 8 / 12, "feet"),
  20808. weight: math.unit(208, "lb"),
  20809. name: "Front",
  20810. image: {
  20811. source: "./media/characters/enuk/front.svg",
  20812. extra: 437 / 406,
  20813. bottom: 0.02
  20814. }
  20815. },
  20816. },
  20817. [
  20818. {
  20819. name: "Normal",
  20820. height: math.unit(5 + 8 / 12, "feet"),
  20821. default: true
  20822. },
  20823. ]
  20824. ))
  20825. characterMakers.push(() => makeCharacter(
  20826. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20827. {
  20828. front: {
  20829. height: math.unit(5 + 10 / 12, "feet"),
  20830. weight: math.unit(252, "lb"),
  20831. name: "Front",
  20832. image: {
  20833. source: "./media/characters/bruun/front.svg",
  20834. extra: 197 / 187,
  20835. bottom: 0.012
  20836. }
  20837. },
  20838. },
  20839. [
  20840. {
  20841. name: "Normal",
  20842. height: math.unit(5 + 10 / 12, "feet"),
  20843. default: true
  20844. },
  20845. ]
  20846. ))
  20847. characterMakers.push(() => makeCharacter(
  20848. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20849. {
  20850. front: {
  20851. height: math.unit(6 + 10 / 12, "feet"),
  20852. weight: math.unit(255, "lb"),
  20853. name: "Front",
  20854. image: {
  20855. source: "./media/characters/alexeev/front.svg",
  20856. extra: 213 / 200,
  20857. bottom: 0.05
  20858. }
  20859. },
  20860. },
  20861. [
  20862. {
  20863. name: "Normal",
  20864. height: math.unit(6 + 10 / 12, "feet"),
  20865. default: true
  20866. },
  20867. ]
  20868. ))
  20869. characterMakers.push(() => makeCharacter(
  20870. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20871. {
  20872. front: {
  20873. height: math.unit(2 + 8 / 12, "feet"),
  20874. weight: math.unit(22, "lb"),
  20875. name: "Front",
  20876. image: {
  20877. source: "./media/characters/evelyn/front.svg",
  20878. extra: 208 / 180
  20879. }
  20880. },
  20881. },
  20882. [
  20883. {
  20884. name: "Normal",
  20885. height: math.unit(2 + 8 / 12, "feet"),
  20886. default: true
  20887. },
  20888. ]
  20889. ))
  20890. characterMakers.push(() => makeCharacter(
  20891. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20892. {
  20893. front: {
  20894. height: math.unit(5 + 9 / 12, "feet"),
  20895. weight: math.unit(139, "lb"),
  20896. name: "Front",
  20897. image: {
  20898. source: "./media/characters/inca/front.svg",
  20899. extra: 294 / 291,
  20900. bottom: 0.03
  20901. }
  20902. },
  20903. },
  20904. [
  20905. {
  20906. name: "Normal",
  20907. height: math.unit(5 + 9 / 12, "feet"),
  20908. default: true
  20909. },
  20910. ]
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20914. {
  20915. front: {
  20916. height: math.unit(6 + 3 / 12, "feet"),
  20917. weight: math.unit(185, "lb"),
  20918. name: "Front",
  20919. image: {
  20920. source: "./media/characters/mera/front.svg",
  20921. extra: 291 / 277,
  20922. bottom: 0.03
  20923. }
  20924. },
  20925. },
  20926. [
  20927. {
  20928. name: "Normal",
  20929. height: math.unit(6 + 3 / 12, "feet"),
  20930. default: true
  20931. },
  20932. ]
  20933. ))
  20934. characterMakers.push(() => makeCharacter(
  20935. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20936. {
  20937. front: {
  20938. height: math.unit(6 + 7 / 12, "feet"),
  20939. weight: math.unit(160, "lb"),
  20940. name: "Front",
  20941. image: {
  20942. source: "./media/characters/ceres/front.svg",
  20943. extra: 1023 / 950,
  20944. bottom: 0.027
  20945. }
  20946. },
  20947. back: {
  20948. height: math.unit(6 + 7 / 12, "feet"),
  20949. weight: math.unit(160, "lb"),
  20950. name: "Back",
  20951. image: {
  20952. source: "./media/characters/ceres/back.svg",
  20953. extra: 1023 / 950
  20954. }
  20955. },
  20956. },
  20957. [
  20958. {
  20959. name: "Normal",
  20960. height: math.unit(6 + 7 / 12, "feet"),
  20961. default: true
  20962. },
  20963. ]
  20964. ))
  20965. characterMakers.push(() => makeCharacter(
  20966. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20967. {
  20968. front: {
  20969. height: math.unit(5 + 10 / 12, "feet"),
  20970. weight: math.unit(150, "lb"),
  20971. name: "Front",
  20972. image: {
  20973. source: "./media/characters/kris/front.svg",
  20974. extra: 885 / 803,
  20975. bottom: 0.03
  20976. }
  20977. },
  20978. },
  20979. [
  20980. {
  20981. name: "Normal",
  20982. height: math.unit(5 + 10 / 12, "feet"),
  20983. default: true
  20984. },
  20985. ]
  20986. ))
  20987. characterMakers.push(() => makeCharacter(
  20988. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20989. {
  20990. front: {
  20991. height: math.unit(7, "feet"),
  20992. weight: math.unit(120, "kg"),
  20993. name: "Front",
  20994. image: {
  20995. source: "./media/characters/taluthus/front.svg",
  20996. extra: 903 / 833,
  20997. bottom: 0.015
  20998. }
  20999. },
  21000. },
  21001. [
  21002. {
  21003. name: "Normal",
  21004. height: math.unit(7, "feet"),
  21005. default: true
  21006. },
  21007. {
  21008. name: "Macro",
  21009. height: math.unit(300, "feet")
  21010. },
  21011. ]
  21012. ))
  21013. characterMakers.push(() => makeCharacter(
  21014. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21015. {
  21016. front: {
  21017. height: math.unit(5 + 9 / 12, "feet"),
  21018. weight: math.unit(145, "lb"),
  21019. name: "Front",
  21020. image: {
  21021. source: "./media/characters/dawn/front.svg",
  21022. extra: 2094 / 2016,
  21023. bottom: 0.025
  21024. }
  21025. },
  21026. back: {
  21027. height: math.unit(5 + 9 / 12, "feet"),
  21028. weight: math.unit(160, "lb"),
  21029. name: "Back",
  21030. image: {
  21031. source: "./media/characters/dawn/back.svg",
  21032. extra: 2112 / 2080,
  21033. bottom: 0.005
  21034. }
  21035. },
  21036. },
  21037. [
  21038. {
  21039. name: "Normal",
  21040. height: math.unit(6 + 7 / 12, "feet"),
  21041. default: true
  21042. },
  21043. ]
  21044. ))
  21045. characterMakers.push(() => makeCharacter(
  21046. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21047. {
  21048. anthro: {
  21049. height: math.unit(8 + 3 / 12, "feet"),
  21050. weight: math.unit(450, "lb"),
  21051. name: "Anthro",
  21052. image: {
  21053. source: "./media/characters/arador/anthro.svg",
  21054. extra: 1835 / 1718,
  21055. bottom: 0.025
  21056. }
  21057. },
  21058. feral: {
  21059. height: math.unit(4, "feet"),
  21060. weight: math.unit(200, "lb"),
  21061. name: "Feral",
  21062. image: {
  21063. source: "./media/characters/arador/feral.svg",
  21064. extra: 1683 / 1514,
  21065. bottom: 0.07
  21066. }
  21067. },
  21068. },
  21069. [
  21070. {
  21071. name: "Normal",
  21072. height: math.unit(8 + 3 / 12, "feet")
  21073. },
  21074. {
  21075. name: "Macro",
  21076. height: math.unit(82.5, "feet"),
  21077. default: true
  21078. },
  21079. ]
  21080. ))
  21081. characterMakers.push(() => makeCharacter(
  21082. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21083. {
  21084. front: {
  21085. height: math.unit(5 + 10 / 12, "feet"),
  21086. weight: math.unit(125, "lb"),
  21087. name: "Front",
  21088. image: {
  21089. source: "./media/characters/dharsi/front.svg",
  21090. extra: 716 / 630,
  21091. bottom: 0.035
  21092. }
  21093. },
  21094. },
  21095. [
  21096. {
  21097. name: "Nano",
  21098. height: math.unit(100, "nm")
  21099. },
  21100. {
  21101. name: "Micro",
  21102. height: math.unit(2, "inches")
  21103. },
  21104. {
  21105. name: "Normal",
  21106. height: math.unit(5 + 10 / 12, "feet"),
  21107. default: true
  21108. },
  21109. {
  21110. name: "Macro",
  21111. height: math.unit(1000, "feet")
  21112. },
  21113. {
  21114. name: "Megamacro",
  21115. height: math.unit(10, "miles")
  21116. },
  21117. {
  21118. name: "Gigamacro",
  21119. height: math.unit(3000, "miles")
  21120. },
  21121. {
  21122. name: "Teramacro",
  21123. height: math.unit(500000, "miles")
  21124. },
  21125. {
  21126. name: "Teramacro+",
  21127. height: math.unit(30, "galaxies")
  21128. },
  21129. ]
  21130. ))
  21131. characterMakers.push(() => makeCharacter(
  21132. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21133. {
  21134. front: {
  21135. height: math.unit(6, "feet"),
  21136. weight: math.unit(150, "lb"),
  21137. name: "Front",
  21138. image: {
  21139. source: "./media/characters/deathy/front.svg",
  21140. extra: 1552 / 1463,
  21141. bottom: 0.025
  21142. }
  21143. },
  21144. side: {
  21145. height: math.unit(6, "feet"),
  21146. weight: math.unit(150, "lb"),
  21147. name: "Side",
  21148. image: {
  21149. source: "./media/characters/deathy/side.svg",
  21150. extra: 1604 / 1455,
  21151. bottom: 0.025
  21152. }
  21153. },
  21154. back: {
  21155. height: math.unit(6, "feet"),
  21156. weight: math.unit(150, "lb"),
  21157. name: "Back",
  21158. image: {
  21159. source: "./media/characters/deathy/back.svg",
  21160. extra: 1580 / 1463,
  21161. bottom: 0.005
  21162. }
  21163. },
  21164. },
  21165. [
  21166. {
  21167. name: "Micro",
  21168. height: math.unit(5, "millimeters")
  21169. },
  21170. {
  21171. name: "Normal",
  21172. height: math.unit(6 + 5 / 12, "feet"),
  21173. default: true
  21174. },
  21175. ]
  21176. ))
  21177. characterMakers.push(() => makeCharacter(
  21178. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21179. {
  21180. front: {
  21181. height: math.unit(16, "feet"),
  21182. weight: math.unit(4000, "lb"),
  21183. name: "Front",
  21184. image: {
  21185. source: "./media/characters/juniper/front.svg",
  21186. bottom: 0.04
  21187. }
  21188. },
  21189. },
  21190. [
  21191. {
  21192. name: "Normal",
  21193. height: math.unit(16, "feet"),
  21194. default: true
  21195. },
  21196. ]
  21197. ))
  21198. characterMakers.push(() => makeCharacter(
  21199. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21200. {
  21201. front: {
  21202. height: math.unit(6, "feet"),
  21203. weight: math.unit(150, "lb"),
  21204. name: "Front",
  21205. image: {
  21206. source: "./media/characters/hipster/front.svg",
  21207. extra: 1312 / 1209,
  21208. bottom: 0.025
  21209. }
  21210. },
  21211. back: {
  21212. height: math.unit(6, "feet"),
  21213. weight: math.unit(150, "lb"),
  21214. name: "Back",
  21215. image: {
  21216. source: "./media/characters/hipster/back.svg",
  21217. extra: 1281 / 1196,
  21218. bottom: 0.01
  21219. }
  21220. },
  21221. },
  21222. [
  21223. {
  21224. name: "Micro",
  21225. height: math.unit(1, "mm")
  21226. },
  21227. {
  21228. name: "Normal",
  21229. height: math.unit(4, "inches"),
  21230. default: true
  21231. },
  21232. {
  21233. name: "Macro",
  21234. height: math.unit(500, "feet")
  21235. },
  21236. {
  21237. name: "Megamacro",
  21238. height: math.unit(1000, "miles")
  21239. },
  21240. ]
  21241. ))
  21242. characterMakers.push(() => makeCharacter(
  21243. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21244. {
  21245. front: {
  21246. height: math.unit(6, "feet"),
  21247. weight: math.unit(150, "lb"),
  21248. name: "Front",
  21249. image: {
  21250. source: "./media/characters/tendirmuldr/front.svg",
  21251. extra: 1878 / 1772,
  21252. bottom: 0.015
  21253. }
  21254. },
  21255. },
  21256. [
  21257. {
  21258. name: "Megamacro",
  21259. height: math.unit(1500, "miles"),
  21260. default: true
  21261. },
  21262. ]
  21263. ))
  21264. characterMakers.push(() => makeCharacter(
  21265. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21266. {
  21267. front: {
  21268. height: math.unit(14, "feet"),
  21269. weight: math.unit(12000, "lb"),
  21270. name: "Front",
  21271. image: {
  21272. source: "./media/characters/mort/front.svg",
  21273. extra: 365 / 318,
  21274. bottom: 0.01
  21275. }
  21276. },
  21277. side: {
  21278. height: math.unit(14, "feet"),
  21279. weight: math.unit(12000, "lb"),
  21280. name: "Side",
  21281. image: {
  21282. source: "./media/characters/mort/side.svg",
  21283. extra: 365 / 318,
  21284. bottom: 0.052
  21285. },
  21286. default: true
  21287. },
  21288. back: {
  21289. height: math.unit(14, "feet"),
  21290. weight: math.unit(12000, "lb"),
  21291. name: "Back",
  21292. image: {
  21293. source: "./media/characters/mort/back.svg",
  21294. extra: 371 / 332,
  21295. bottom: 0.18
  21296. }
  21297. },
  21298. },
  21299. [
  21300. {
  21301. name: "Normal",
  21302. height: math.unit(14, "feet"),
  21303. default: true
  21304. },
  21305. ]
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21309. {
  21310. front: {
  21311. height: math.unit(8, "feet"),
  21312. weight: math.unit(1, "ton"),
  21313. name: "Front",
  21314. image: {
  21315. source: "./media/characters/lycoa/front.svg",
  21316. extra: 1836/1728,
  21317. bottom: 81/1917
  21318. }
  21319. },
  21320. back: {
  21321. height: math.unit(8, "feet"),
  21322. weight: math.unit(1, "ton"),
  21323. name: "Back",
  21324. image: {
  21325. source: "./media/characters/lycoa/back.svg",
  21326. extra: 1785/1720,
  21327. bottom: 91/1876
  21328. }
  21329. },
  21330. head: {
  21331. height: math.unit(1.6243, "feet"),
  21332. name: "Head",
  21333. image: {
  21334. source: "./media/characters/lycoa/head.svg",
  21335. extra: 1011/782,
  21336. bottom: 0/1011
  21337. }
  21338. },
  21339. tailmaw: {
  21340. height: math.unit(1.9, "feet"),
  21341. name: "Tailmaw",
  21342. image: {
  21343. source: "./media/characters/lycoa/tailmaw.svg"
  21344. }
  21345. },
  21346. tentacles: {
  21347. height: math.unit(2.1, "feet"),
  21348. name: "Tentacles",
  21349. image: {
  21350. source: "./media/characters/lycoa/tentacles.svg"
  21351. }
  21352. },
  21353. dick: {
  21354. height: math.unit(1.73, "feet"),
  21355. name: "Dick",
  21356. image: {
  21357. source: "./media/characters/lycoa/dick.svg"
  21358. }
  21359. },
  21360. },
  21361. [
  21362. {
  21363. name: "Normal",
  21364. height: math.unit(8, "feet"),
  21365. default: true
  21366. },
  21367. {
  21368. name: "Macro",
  21369. height: math.unit(30, "feet")
  21370. },
  21371. ]
  21372. ))
  21373. characterMakers.push(() => makeCharacter(
  21374. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21375. {
  21376. front: {
  21377. height: math.unit(4 + 2 / 12, "feet"),
  21378. weight: math.unit(70, "lb"),
  21379. name: "Front",
  21380. image: {
  21381. source: "./media/characters/naldara/front.svg",
  21382. extra: 1664/1387,
  21383. bottom: 81/1745
  21384. },
  21385. form: "anthro",
  21386. default: true
  21387. },
  21388. naga: {
  21389. height: math.unit(20, "feet"),
  21390. weight: math.unit(15000, "kg"),
  21391. name: "Front",
  21392. image: {
  21393. source: "./media/characters/naldara/naga.svg",
  21394. extra: 1590/1396,
  21395. bottom: 285/1875
  21396. },
  21397. form: "naga",
  21398. default: true
  21399. },
  21400. },
  21401. [
  21402. {
  21403. name: "Normal",
  21404. height: math.unit(4 + 2 / 12, "feet"),
  21405. form: "anthro",
  21406. default: true
  21407. },
  21408. {
  21409. name: "Normal",
  21410. height: math.unit(20, "feet"),
  21411. form: "naga",
  21412. default: true
  21413. },
  21414. ],
  21415. {
  21416. "anthro": {
  21417. name: "Anthro",
  21418. default: true
  21419. },
  21420. "naga": {
  21421. name: "Naga"
  21422. }
  21423. }
  21424. ))
  21425. characterMakers.push(() => makeCharacter(
  21426. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21427. {
  21428. front: {
  21429. height: math.unit(13 + 7 / 12, "feet"),
  21430. weight: math.unit(1500, "lb"),
  21431. name: "Front",
  21432. image: {
  21433. source: "./media/characters/briar/front.svg",
  21434. extra: 1223/1157,
  21435. bottom: 123/1346
  21436. }
  21437. },
  21438. },
  21439. [
  21440. {
  21441. name: "Normal",
  21442. height: math.unit(13 + 7 / 12, "feet"),
  21443. default: true
  21444. },
  21445. ]
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21449. {
  21450. side: {
  21451. height: math.unit(16, "feet"),
  21452. weight: math.unit(500, "lb"),
  21453. name: "Side",
  21454. image: {
  21455. source: "./media/characters/vanguard/side.svg",
  21456. extra: 1022/914,
  21457. bottom: 30/1052
  21458. }
  21459. },
  21460. sideAlt: {
  21461. height: math.unit(10, "feet"),
  21462. weight: math.unit(500, "lb"),
  21463. name: "Side (Alt)",
  21464. image: {
  21465. source: "./media/characters/vanguard/side-alt.svg",
  21466. extra: 502 / 425,
  21467. bottom: 0.087
  21468. }
  21469. },
  21470. },
  21471. [
  21472. {
  21473. name: "Normal",
  21474. height: math.unit(17.71, "feet"),
  21475. default: true
  21476. },
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21481. {
  21482. front: {
  21483. height: math.unit(7.5, "feet"),
  21484. weight: math.unit(2, "lb"),
  21485. name: "Front",
  21486. image: {
  21487. source: "./media/characters/artemis/work-safe-front.svg",
  21488. extra: 1192 / 1075,
  21489. bottom: 0.07
  21490. },
  21491. form: "work-safe",
  21492. default: true
  21493. },
  21494. frontNsfw: {
  21495. height: math.unit(7.5, "feet"),
  21496. weight: math.unit(2, "lb"),
  21497. name: "Front",
  21498. image: {
  21499. source: "./media/characters/artemis/calibrating-front.svg",
  21500. extra: 1192 / 1075,
  21501. bottom: 0.07
  21502. },
  21503. form: "calibrating",
  21504. default: true
  21505. },
  21506. frontNsfwer: {
  21507. height: math.unit(7.5, "feet"),
  21508. weight: math.unit(2, "lb"),
  21509. name: "Front",
  21510. image: {
  21511. source: "./media/characters/artemis/oversize-load-front.svg",
  21512. extra: 1192 / 1075,
  21513. bottom: 0.07
  21514. },
  21515. form: "oversize-load",
  21516. default: true
  21517. },
  21518. side: {
  21519. height: math.unit(7.5, "feet"),
  21520. weight: math.unit(2, "lb"),
  21521. name: "Side",
  21522. image: {
  21523. source: "./media/characters/artemis/work-safe-side.svg",
  21524. extra: 1192 / 1075,
  21525. bottom: 0.07
  21526. },
  21527. form: "work-safe"
  21528. },
  21529. sideNsfw: {
  21530. height: math.unit(7.5, "feet"),
  21531. weight: math.unit(2, "lb"),
  21532. name: "Side",
  21533. image: {
  21534. source: "./media/characters/artemis/calibrating-side.svg",
  21535. extra: 1192 / 1075,
  21536. bottom: 0.07
  21537. },
  21538. form: "calibrating"
  21539. },
  21540. sideNsfwer: {
  21541. height: math.unit(7.5, "feet"),
  21542. weight: math.unit(2, "lb"),
  21543. name: "Side",
  21544. image: {
  21545. source: "./media/characters/artemis/oversize-load-side.svg",
  21546. extra: 1192 / 1075,
  21547. bottom: 0.07
  21548. },
  21549. form: "oversize-load"
  21550. },
  21551. maw: {
  21552. height: math.unit(1.1, "feet"),
  21553. name: "Maw",
  21554. image: {
  21555. source: "./media/characters/artemis/maw.svg"
  21556. },
  21557. form: "work-safe"
  21558. },
  21559. stomach: {
  21560. height: math.unit(0.95, "feet"),
  21561. name: "Stomach",
  21562. image: {
  21563. source: "./media/characters/artemis/stomach.svg"
  21564. },
  21565. form: "work-safe"
  21566. },
  21567. dickCanine: {
  21568. height: math.unit(1, "feet"),
  21569. name: "Dick (Canine)",
  21570. image: {
  21571. source: "./media/characters/artemis/dick-canine.svg"
  21572. },
  21573. form: "calibrating"
  21574. },
  21575. dickEquine: {
  21576. height: math.unit(0.85, "feet"),
  21577. name: "Dick (Equine)",
  21578. image: {
  21579. source: "./media/characters/artemis/dick-equine.svg"
  21580. },
  21581. form: "calibrating"
  21582. },
  21583. dickExotic: {
  21584. height: math.unit(0.85, "feet"),
  21585. name: "Dick (Exotic)",
  21586. image: {
  21587. source: "./media/characters/artemis/dick-exotic.svg"
  21588. },
  21589. form: "calibrating"
  21590. },
  21591. dickCanineBigger: {
  21592. height: math.unit(1 * 1.33, "feet"),
  21593. name: "Dick (Canine)",
  21594. image: {
  21595. source: "./media/characters/artemis/dick-canine.svg"
  21596. },
  21597. form: "oversize-load"
  21598. },
  21599. dickEquineBigger: {
  21600. height: math.unit(0.85 * 1.33, "feet"),
  21601. name: "Dick (Equine)",
  21602. image: {
  21603. source: "./media/characters/artemis/dick-equine.svg"
  21604. },
  21605. form: "oversize-load"
  21606. },
  21607. dickExoticBigger: {
  21608. height: math.unit(0.85 * 1.33, "feet"),
  21609. name: "Dick (Exotic)",
  21610. image: {
  21611. source: "./media/characters/artemis/dick-exotic.svg"
  21612. },
  21613. form: "oversize-load"
  21614. },
  21615. },
  21616. [
  21617. {
  21618. name: "Normal",
  21619. height: math.unit(7.5, "feet"),
  21620. form: "work-safe",
  21621. default: true
  21622. },
  21623. {
  21624. name: "Normal",
  21625. height: math.unit(7.5, "feet"),
  21626. form: "calibrating",
  21627. default: true
  21628. },
  21629. {
  21630. name: "Normal",
  21631. height: math.unit(7.5, "feet"),
  21632. form: "oversize-load",
  21633. default: true
  21634. },
  21635. {
  21636. name: "Enlarged",
  21637. height: math.unit(12, "feet"),
  21638. form: "work-safe",
  21639. },
  21640. {
  21641. name: "Enlarged",
  21642. height: math.unit(12, "feet"),
  21643. form: "calibrating",
  21644. },
  21645. {
  21646. name: "Enlarged",
  21647. height: math.unit(12, "feet"),
  21648. form: "oversize-load",
  21649. },
  21650. ],
  21651. {
  21652. "work-safe": {
  21653. name: "Work-Safe",
  21654. default: true
  21655. },
  21656. "calibrating": {
  21657. name: "Calibrating"
  21658. },
  21659. "oversize-load": {
  21660. name: "Oversize Load"
  21661. }
  21662. }
  21663. ))
  21664. characterMakers.push(() => makeCharacter(
  21665. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21666. {
  21667. front: {
  21668. height: math.unit(5 + 3 / 12, "feet"),
  21669. weight: math.unit(160, "lb"),
  21670. name: "Front",
  21671. image: {
  21672. source: "./media/characters/kira/front.svg",
  21673. extra: 906 / 786,
  21674. bottom: 0.01
  21675. }
  21676. },
  21677. back: {
  21678. height: math.unit(5 + 3 / 12, "feet"),
  21679. weight: math.unit(160, "lb"),
  21680. name: "Back",
  21681. image: {
  21682. source: "./media/characters/kira/back.svg",
  21683. extra: 882 / 757,
  21684. bottom: 0.005
  21685. }
  21686. },
  21687. frontDressed: {
  21688. height: math.unit(5 + 3 / 12, "feet"),
  21689. weight: math.unit(160, "lb"),
  21690. name: "Front (Dressed)",
  21691. image: {
  21692. source: "./media/characters/kira/front-dressed.svg",
  21693. extra: 906 / 786,
  21694. bottom: 0.01
  21695. }
  21696. },
  21697. beans: {
  21698. height: math.unit(0.92, "feet"),
  21699. name: "Beans",
  21700. image: {
  21701. source: "./media/characters/kira/beans.svg"
  21702. }
  21703. },
  21704. },
  21705. [
  21706. {
  21707. name: "Normal",
  21708. height: math.unit(5 + 3 / 12, "feet"),
  21709. default: true
  21710. },
  21711. ]
  21712. ))
  21713. characterMakers.push(() => makeCharacter(
  21714. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21715. {
  21716. front: {
  21717. height: math.unit(5 + 4 / 12, "feet"),
  21718. weight: math.unit(145, "lb"),
  21719. name: "Front",
  21720. image: {
  21721. source: "./media/characters/scramble/front.svg",
  21722. extra: 763 / 727,
  21723. bottom: 0.05
  21724. }
  21725. },
  21726. back: {
  21727. height: math.unit(5 + 4 / 12, "feet"),
  21728. weight: math.unit(145, "lb"),
  21729. name: "Back",
  21730. image: {
  21731. source: "./media/characters/scramble/back.svg",
  21732. extra: 826 / 737,
  21733. bottom: 0.002
  21734. }
  21735. },
  21736. },
  21737. [
  21738. {
  21739. name: "Normal",
  21740. height: math.unit(5 + 4 / 12, "feet"),
  21741. default: true
  21742. },
  21743. ]
  21744. ))
  21745. characterMakers.push(() => makeCharacter(
  21746. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21747. {
  21748. side: {
  21749. height: math.unit(6 + 2 / 12, "feet"),
  21750. weight: math.unit(190, "lb"),
  21751. name: "Side",
  21752. image: {
  21753. source: "./media/characters/biscuit/side.svg",
  21754. extra: 858 / 791,
  21755. bottom: 0.044
  21756. }
  21757. },
  21758. },
  21759. [
  21760. {
  21761. name: "Normal",
  21762. height: math.unit(6 + 2 / 12, "feet"),
  21763. default: true
  21764. },
  21765. ]
  21766. ))
  21767. characterMakers.push(() => makeCharacter(
  21768. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21769. {
  21770. front: {
  21771. height: math.unit(5 + 2 / 12, "feet"),
  21772. weight: math.unit(120, "lb"),
  21773. name: "Front",
  21774. image: {
  21775. source: "./media/characters/poffin/front.svg",
  21776. extra: 786 / 680,
  21777. bottom: 0.005
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(5 + 2 / 12, "feet"),
  21785. default: true
  21786. },
  21787. ]
  21788. ))
  21789. characterMakers.push(() => makeCharacter(
  21790. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21791. {
  21792. front: {
  21793. height: math.unit(6 + 3 / 12, "feet"),
  21794. weight: math.unit(519, "lb"),
  21795. name: "Front",
  21796. image: {
  21797. source: "./media/characters/dhari/front.svg",
  21798. extra: 1048 / 946,
  21799. bottom: 0.015
  21800. }
  21801. },
  21802. back: {
  21803. height: math.unit(6 + 3 / 12, "feet"),
  21804. weight: math.unit(519, "lb"),
  21805. name: "Back",
  21806. image: {
  21807. source: "./media/characters/dhari/back.svg",
  21808. extra: 1048 / 931,
  21809. bottom: 0.005
  21810. }
  21811. },
  21812. frontDressed: {
  21813. height: math.unit(6 + 3 / 12, "feet"),
  21814. weight: math.unit(519, "lb"),
  21815. name: "Front (Dressed)",
  21816. image: {
  21817. source: "./media/characters/dhari/front-dressed.svg",
  21818. extra: 1713 / 1546,
  21819. bottom: 0.02
  21820. }
  21821. },
  21822. backDressed: {
  21823. height: math.unit(6 + 3 / 12, "feet"),
  21824. weight: math.unit(519, "lb"),
  21825. name: "Back (Dressed)",
  21826. image: {
  21827. source: "./media/characters/dhari/back-dressed.svg",
  21828. extra: 1699 / 1537,
  21829. bottom: 0.01
  21830. }
  21831. },
  21832. maw: {
  21833. height: math.unit(0.95, "feet"),
  21834. name: "Maw",
  21835. image: {
  21836. source: "./media/characters/dhari/maw.svg"
  21837. }
  21838. },
  21839. wereFront: {
  21840. height: math.unit(12 + 8 / 12, "feet"),
  21841. weight: math.unit(4000, "lb"),
  21842. name: "Front (Were)",
  21843. image: {
  21844. source: "./media/characters/dhari/were-front.svg",
  21845. extra: 1065 / 969,
  21846. bottom: 0.015
  21847. }
  21848. },
  21849. wereBack: {
  21850. height: math.unit(12 + 8 / 12, "feet"),
  21851. weight: math.unit(4000, "lb"),
  21852. name: "Back (Were)",
  21853. image: {
  21854. source: "./media/characters/dhari/were-back.svg",
  21855. extra: 1065 / 969,
  21856. bottom: 0.012
  21857. }
  21858. },
  21859. wereMaw: {
  21860. height: math.unit(0.625, "meters"),
  21861. name: "Maw (Were)",
  21862. image: {
  21863. source: "./media/characters/dhari/were-maw.svg"
  21864. }
  21865. },
  21866. },
  21867. [
  21868. {
  21869. name: "Normal",
  21870. height: math.unit(6 + 3 / 12, "feet"),
  21871. default: true
  21872. },
  21873. ]
  21874. ))
  21875. characterMakers.push(() => makeCharacter(
  21876. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21877. {
  21878. anthro: {
  21879. height: math.unit(5 + 7 / 12, "feet"),
  21880. weight: math.unit(175, "lb"),
  21881. name: "Anthro",
  21882. image: {
  21883. source: "./media/characters/rena-dyne/anthro.svg",
  21884. extra: 1849 / 1785,
  21885. bottom: 0.005
  21886. }
  21887. },
  21888. taur: {
  21889. height: math.unit(15 + 6 / 12, "feet"),
  21890. weight: math.unit(8000, "lb"),
  21891. name: "Taur",
  21892. image: {
  21893. source: "./media/characters/rena-dyne/taur.svg",
  21894. extra: 2315 / 2234,
  21895. bottom: 0.033
  21896. }
  21897. },
  21898. },
  21899. [
  21900. {
  21901. name: "Normal",
  21902. height: math.unit(5 + 7 / 12, "feet"),
  21903. default: true
  21904. },
  21905. ]
  21906. ))
  21907. characterMakers.push(() => makeCharacter(
  21908. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21909. {
  21910. front: {
  21911. height: math.unit(8, "feet"),
  21912. weight: math.unit(600, "lb"),
  21913. name: "Front",
  21914. image: {
  21915. source: "./media/characters/weremeep/front.svg",
  21916. extra: 970/849,
  21917. bottom: 7/977
  21918. }
  21919. },
  21920. },
  21921. [
  21922. {
  21923. name: "Normal",
  21924. height: math.unit(8, "feet"),
  21925. default: true
  21926. },
  21927. {
  21928. name: "Lorg",
  21929. height: math.unit(12, "feet")
  21930. },
  21931. {
  21932. name: "Oh Lawd She Comin'",
  21933. height: math.unit(20, "feet")
  21934. },
  21935. ]
  21936. ))
  21937. characterMakers.push(() => makeCharacter(
  21938. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21939. {
  21940. front: {
  21941. height: math.unit(4, "feet"),
  21942. weight: math.unit(90, "lb"),
  21943. name: "Front",
  21944. image: {
  21945. source: "./media/characters/reza/front.svg",
  21946. extra: 1183 / 1111,
  21947. bottom: 0.017
  21948. }
  21949. },
  21950. back: {
  21951. height: math.unit(4, "feet"),
  21952. weight: math.unit(90, "lb"),
  21953. name: "Back",
  21954. image: {
  21955. source: "./media/characters/reza/back.svg",
  21956. extra: 1183 / 1111,
  21957. bottom: 0.01
  21958. }
  21959. },
  21960. drake: {
  21961. height: math.unit(30, "feet"),
  21962. weight: math.unit(246960, "lb"),
  21963. name: "Drake",
  21964. image: {
  21965. source: "./media/characters/reza/drake.svg",
  21966. extra: 2350 / 2024,
  21967. bottom: 60.7 / 2403
  21968. }
  21969. },
  21970. },
  21971. [
  21972. {
  21973. name: "Normal",
  21974. height: math.unit(4, "feet"),
  21975. default: true
  21976. },
  21977. ]
  21978. ))
  21979. characterMakers.push(() => makeCharacter(
  21980. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21981. {
  21982. side: {
  21983. height: math.unit(15, "feet"),
  21984. weight: math.unit(14, "tons"),
  21985. name: "Side",
  21986. image: {
  21987. source: "./media/characters/athea/side.svg",
  21988. extra: 960 / 540,
  21989. bottom: 0.003
  21990. }
  21991. },
  21992. sitting: {
  21993. height: math.unit(6 * 2.85, "feet"),
  21994. weight: math.unit(14, "tons"),
  21995. name: "Sitting",
  21996. image: {
  21997. source: "./media/characters/athea/sitting.svg",
  21998. extra: 621 / 581,
  21999. bottom: 0.075
  22000. }
  22001. },
  22002. maw: {
  22003. height: math.unit(7.59498031496063, "feet"),
  22004. name: "Maw",
  22005. image: {
  22006. source: "./media/characters/athea/maw.svg"
  22007. }
  22008. },
  22009. },
  22010. [
  22011. {
  22012. name: "Lap Cat",
  22013. height: math.unit(2.5, "feet")
  22014. },
  22015. {
  22016. name: "Minimacro",
  22017. height: math.unit(15, "feet"),
  22018. default: true
  22019. },
  22020. {
  22021. name: "Macro",
  22022. height: math.unit(120, "feet")
  22023. },
  22024. {
  22025. name: "Macro+",
  22026. height: math.unit(640, "feet")
  22027. },
  22028. {
  22029. name: "Colossus",
  22030. height: math.unit(2.2, "miles")
  22031. },
  22032. ]
  22033. ))
  22034. characterMakers.push(() => makeCharacter(
  22035. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22036. {
  22037. front: {
  22038. height: math.unit(8 + 8 / 12, "feet"),
  22039. weight: math.unit(130, "kg"),
  22040. name: "Front",
  22041. image: {
  22042. source: "./media/characters/seroko/front.svg",
  22043. extra: 1385 / 1280,
  22044. bottom: 0.025
  22045. }
  22046. },
  22047. back: {
  22048. height: math.unit(8 + 8 / 12, "feet"),
  22049. weight: math.unit(130, "kg"),
  22050. name: "Back",
  22051. image: {
  22052. source: "./media/characters/seroko/back.svg",
  22053. extra: 1369 / 1238,
  22054. bottom: 0.018
  22055. }
  22056. },
  22057. frontDressed: {
  22058. height: math.unit(8 + 8 / 12, "feet"),
  22059. weight: math.unit(130, "kg"),
  22060. name: "Front (Dressed)",
  22061. image: {
  22062. source: "./media/characters/seroko/front-dressed.svg",
  22063. extra: 1366 / 1275,
  22064. bottom: 0.03
  22065. }
  22066. },
  22067. },
  22068. [
  22069. {
  22070. name: "Normal",
  22071. height: math.unit(8 + 8 / 12, "feet"),
  22072. default: true
  22073. },
  22074. ]
  22075. ))
  22076. characterMakers.push(() => makeCharacter(
  22077. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22078. {
  22079. front: {
  22080. height: math.unit(5.5, "feet"),
  22081. weight: math.unit(160, "lb"),
  22082. name: "Front",
  22083. image: {
  22084. source: "./media/characters/quatzi/front.svg",
  22085. extra: 2346 / 2242,
  22086. bottom: 0.015
  22087. }
  22088. },
  22089. },
  22090. [
  22091. {
  22092. name: "Normal",
  22093. height: math.unit(5.5, "feet"),
  22094. default: true
  22095. },
  22096. {
  22097. name: "Big",
  22098. height: math.unit(7.7, "feet")
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22104. {
  22105. front: {
  22106. height: math.unit(5 + 11 / 12, "feet"),
  22107. weight: math.unit(180, "lb"),
  22108. name: "Front",
  22109. image: {
  22110. source: "./media/characters/sen/front.svg",
  22111. extra: 1321 / 1254,
  22112. bottom: 0.015
  22113. }
  22114. },
  22115. side: {
  22116. height: math.unit(5 + 11 / 12, "feet"),
  22117. weight: math.unit(180, "lb"),
  22118. name: "Side",
  22119. image: {
  22120. source: "./media/characters/sen/side.svg",
  22121. extra: 1321 / 1254,
  22122. bottom: 0.007
  22123. }
  22124. },
  22125. back: {
  22126. height: math.unit(5 + 11 / 12, "feet"),
  22127. weight: math.unit(180, "lb"),
  22128. name: "Back",
  22129. image: {
  22130. source: "./media/characters/sen/back.svg",
  22131. extra: 1321 / 1254
  22132. }
  22133. },
  22134. },
  22135. [
  22136. {
  22137. name: "Normal",
  22138. height: math.unit(5 + 11 / 12, "feet"),
  22139. default: true
  22140. },
  22141. ]
  22142. ))
  22143. characterMakers.push(() => makeCharacter(
  22144. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22145. {
  22146. front: {
  22147. height: math.unit(166.6, "cm"),
  22148. weight: math.unit(66.6, "kg"),
  22149. name: "Front",
  22150. image: {
  22151. source: "./media/characters/fruity/front.svg",
  22152. extra: 1510 / 1386,
  22153. bottom: 0.04
  22154. }
  22155. },
  22156. back: {
  22157. height: math.unit(166.6, "cm"),
  22158. weight: math.unit(66.6, "lb"),
  22159. name: "Back",
  22160. image: {
  22161. source: "./media/characters/fruity/back.svg",
  22162. extra: 1563 / 1435,
  22163. bottom: 0.005
  22164. }
  22165. },
  22166. },
  22167. [
  22168. {
  22169. name: "Normal",
  22170. height: math.unit(166.6, "cm"),
  22171. default: true
  22172. },
  22173. {
  22174. name: "Demonic",
  22175. height: math.unit(166.6, "feet")
  22176. },
  22177. ]
  22178. ))
  22179. characterMakers.push(() => makeCharacter(
  22180. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22181. {
  22182. side: {
  22183. height: math.unit(10, "feet"),
  22184. weight: math.unit(500, "lb"),
  22185. name: "Side",
  22186. image: {
  22187. source: "./media/characters/zost/side.svg",
  22188. extra: 2870/2533,
  22189. bottom: 252/3122
  22190. }
  22191. },
  22192. mawFront: {
  22193. height: math.unit(1.08, "meters"),
  22194. name: "Maw (Front)",
  22195. image: {
  22196. source: "./media/characters/zost/maw-front.svg"
  22197. }
  22198. },
  22199. mawSide: {
  22200. height: math.unit(2.66, "feet"),
  22201. name: "Maw (Side)",
  22202. image: {
  22203. source: "./media/characters/zost/maw-side.svg"
  22204. }
  22205. },
  22206. wingspan: {
  22207. height: math.unit(7.4, "feet"),
  22208. name: "Wingspan",
  22209. image: {
  22210. source: "./media/characters/zost/wingspan.svg"
  22211. }
  22212. },
  22213. },
  22214. [
  22215. {
  22216. name: "Normal",
  22217. height: math.unit(10, "feet"),
  22218. default: true
  22219. },
  22220. ]
  22221. ))
  22222. characterMakers.push(() => makeCharacter(
  22223. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22224. {
  22225. front: {
  22226. height: math.unit(5 + 4 / 12, "feet"),
  22227. weight: math.unit(120, "lb"),
  22228. name: "Front",
  22229. image: {
  22230. source: "./media/characters/luci/front.svg",
  22231. extra: 1985 / 1884,
  22232. bottom: 0.04
  22233. }
  22234. },
  22235. back: {
  22236. height: math.unit(5 + 4 / 12, "feet"),
  22237. weight: math.unit(120, "lb"),
  22238. name: "Back",
  22239. image: {
  22240. source: "./media/characters/luci/back.svg",
  22241. extra: 1892 / 1791,
  22242. bottom: 0.002
  22243. }
  22244. },
  22245. },
  22246. [
  22247. {
  22248. name: "Normal",
  22249. height: math.unit(5 + 4 / 12, "feet"),
  22250. default: true
  22251. },
  22252. ]
  22253. ))
  22254. characterMakers.push(() => makeCharacter(
  22255. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22256. {
  22257. front: {
  22258. height: math.unit(1500, "feet"),
  22259. weight: math.unit(3.8e6, "tons"),
  22260. name: "Front",
  22261. image: {
  22262. source: "./media/characters/2th/front.svg",
  22263. extra: 3489 / 3350,
  22264. bottom: 0.1
  22265. }
  22266. },
  22267. foot: {
  22268. height: math.unit(461, "feet"),
  22269. name: "Foot",
  22270. image: {
  22271. source: "./media/characters/2th/foot.svg"
  22272. }
  22273. },
  22274. },
  22275. [
  22276. {
  22277. name: "\"Micro\"",
  22278. height: math.unit(15 + 7 / 12, "feet")
  22279. },
  22280. {
  22281. name: "Normal",
  22282. height: math.unit(1500, "feet"),
  22283. default: true
  22284. },
  22285. {
  22286. name: "Macro",
  22287. height: math.unit(5000, "feet")
  22288. },
  22289. {
  22290. name: "Megamacro",
  22291. height: math.unit(15, "miles")
  22292. },
  22293. {
  22294. name: "Gigamacro",
  22295. height: math.unit(4000, "miles")
  22296. },
  22297. {
  22298. name: "Galactic",
  22299. height: math.unit(50, "AU")
  22300. },
  22301. ]
  22302. ))
  22303. characterMakers.push(() => makeCharacter(
  22304. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22305. {
  22306. front: {
  22307. height: math.unit(5 + 6 / 12, "feet"),
  22308. weight: math.unit(220, "lb"),
  22309. name: "Front",
  22310. image: {
  22311. source: "./media/characters/amethyst/front.svg",
  22312. extra: 2078 / 2040,
  22313. bottom: 0.045
  22314. }
  22315. },
  22316. back: {
  22317. height: math.unit(5 + 6 / 12, "feet"),
  22318. weight: math.unit(220, "lb"),
  22319. name: "Back",
  22320. image: {
  22321. source: "./media/characters/amethyst/back.svg",
  22322. extra: 2021 / 1989,
  22323. bottom: 0.02
  22324. }
  22325. },
  22326. },
  22327. [
  22328. {
  22329. name: "Normal",
  22330. height: math.unit(5 + 6 / 12, "feet"),
  22331. default: true
  22332. },
  22333. ]
  22334. ))
  22335. characterMakers.push(() => makeCharacter(
  22336. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22337. {
  22338. front: {
  22339. height: math.unit(4 + 11 / 12, "feet"),
  22340. weight: math.unit(120, "lb"),
  22341. name: "Front",
  22342. image: {
  22343. source: "./media/characters/yumi-akiyama/front.svg",
  22344. extra: 1327 / 1235,
  22345. bottom: 0.02
  22346. }
  22347. },
  22348. back: {
  22349. height: math.unit(4 + 11 / 12, "feet"),
  22350. weight: math.unit(120, "lb"),
  22351. name: "Back",
  22352. image: {
  22353. source: "./media/characters/yumi-akiyama/back.svg",
  22354. extra: 1287 / 1245,
  22355. bottom: 0.002
  22356. }
  22357. },
  22358. },
  22359. [
  22360. {
  22361. name: "Galactic",
  22362. height: math.unit(50, "galaxies"),
  22363. default: true
  22364. },
  22365. {
  22366. name: "Universal",
  22367. height: math.unit(100, "universes")
  22368. },
  22369. ]
  22370. ))
  22371. characterMakers.push(() => makeCharacter(
  22372. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22373. {
  22374. front: {
  22375. height: math.unit(8, "feet"),
  22376. weight: math.unit(500, "lb"),
  22377. name: "Front",
  22378. image: {
  22379. source: "./media/characters/rifter-yrmori/front.svg",
  22380. extra: 1180 / 1125,
  22381. bottom: 0.02
  22382. }
  22383. },
  22384. back: {
  22385. height: math.unit(8, "feet"),
  22386. weight: math.unit(500, "lb"),
  22387. name: "Back",
  22388. image: {
  22389. source: "./media/characters/rifter-yrmori/back.svg",
  22390. extra: 1190 / 1145,
  22391. bottom: 0.001
  22392. }
  22393. },
  22394. wings: {
  22395. height: math.unit(7.75, "feet"),
  22396. weight: math.unit(500, "lb"),
  22397. name: "Wings",
  22398. image: {
  22399. source: "./media/characters/rifter-yrmori/wings.svg",
  22400. extra: 1357 / 1285
  22401. }
  22402. },
  22403. maw: {
  22404. height: math.unit(0.8, "feet"),
  22405. name: "Maw",
  22406. image: {
  22407. source: "./media/characters/rifter-yrmori/maw.svg"
  22408. }
  22409. },
  22410. mawfront: {
  22411. height: math.unit(1.45, "feet"),
  22412. name: "Maw (Front)",
  22413. image: {
  22414. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22415. }
  22416. },
  22417. },
  22418. [
  22419. {
  22420. name: "Normal",
  22421. height: math.unit(8, "feet"),
  22422. default: true
  22423. },
  22424. {
  22425. name: "Macro",
  22426. height: math.unit(42, "meters")
  22427. },
  22428. ]
  22429. ))
  22430. characterMakers.push(() => makeCharacter(
  22431. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22432. {
  22433. were: {
  22434. height: math.unit(25 + 6 / 12, "feet"),
  22435. weight: math.unit(10000, "lb"),
  22436. name: "Were",
  22437. image: {
  22438. source: "./media/characters/tahajin/were.svg",
  22439. extra: 801 / 770,
  22440. bottom: 0.042
  22441. }
  22442. },
  22443. aquatic: {
  22444. height: math.unit(6 + 4 / 12, "feet"),
  22445. weight: math.unit(160, "lb"),
  22446. name: "Aquatic",
  22447. image: {
  22448. source: "./media/characters/tahajin/aquatic.svg",
  22449. extra: 572 / 542,
  22450. bottom: 0.04
  22451. }
  22452. },
  22453. chow: {
  22454. height: math.unit(8 + 11 / 12, "feet"),
  22455. weight: math.unit(450, "lb"),
  22456. name: "Chow",
  22457. image: {
  22458. source: "./media/characters/tahajin/chow.svg",
  22459. extra: 660 / 640,
  22460. bottom: 0.015
  22461. }
  22462. },
  22463. demiNaga: {
  22464. height: math.unit(6 + 8 / 12, "feet"),
  22465. weight: math.unit(300, "lb"),
  22466. name: "Demi Naga",
  22467. image: {
  22468. source: "./media/characters/tahajin/demi-naga.svg",
  22469. extra: 643 / 615,
  22470. bottom: 0.1
  22471. }
  22472. },
  22473. data: {
  22474. height: math.unit(5, "inches"),
  22475. weight: math.unit(0.1, "lb"),
  22476. name: "Data",
  22477. image: {
  22478. source: "./media/characters/tahajin/data.svg"
  22479. }
  22480. },
  22481. fluu: {
  22482. height: math.unit(5 + 7 / 12, "feet"),
  22483. weight: math.unit(140, "lb"),
  22484. name: "Fluu",
  22485. image: {
  22486. source: "./media/characters/tahajin/fluu.svg",
  22487. extra: 628 / 592,
  22488. bottom: 0.02
  22489. }
  22490. },
  22491. starWarrior: {
  22492. height: math.unit(4 + 5 / 12, "feet"),
  22493. weight: math.unit(50, "lb"),
  22494. name: "Star Warrior",
  22495. image: {
  22496. source: "./media/characters/tahajin/star-warrior.svg"
  22497. }
  22498. },
  22499. },
  22500. [
  22501. {
  22502. name: "Normal",
  22503. height: math.unit(25 + 6 / 12, "feet"),
  22504. default: true
  22505. },
  22506. ]
  22507. ))
  22508. characterMakers.push(() => makeCharacter(
  22509. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22510. {
  22511. front: {
  22512. height: math.unit(8, "feet"),
  22513. weight: math.unit(350, "lb"),
  22514. name: "Front",
  22515. image: {
  22516. source: "./media/characters/gabira/front.svg",
  22517. extra: 1261/1154,
  22518. bottom: 51/1312
  22519. }
  22520. },
  22521. back: {
  22522. height: math.unit(8, "feet"),
  22523. weight: math.unit(350, "lb"),
  22524. name: "Back",
  22525. image: {
  22526. source: "./media/characters/gabira/back.svg",
  22527. extra: 1265/1163,
  22528. bottom: 46/1311
  22529. }
  22530. },
  22531. head: {
  22532. height: math.unit(2.85, "feet"),
  22533. name: "Head",
  22534. image: {
  22535. source: "./media/characters/gabira/head.svg"
  22536. }
  22537. },
  22538. },
  22539. [
  22540. {
  22541. name: "Normal",
  22542. height: math.unit(8, "feet"),
  22543. default: true
  22544. },
  22545. ]
  22546. ))
  22547. characterMakers.push(() => makeCharacter(
  22548. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22549. {
  22550. front: {
  22551. height: math.unit(5 + 3 / 12, "feet"),
  22552. weight: math.unit(137, "lb"),
  22553. name: "Front",
  22554. image: {
  22555. source: "./media/characters/sasha-katraine/front.svg",
  22556. extra: 1745/1694,
  22557. bottom: 37/1782
  22558. }
  22559. },
  22560. back: {
  22561. height: math.unit(5 + 3 / 12, "feet"),
  22562. weight: math.unit(137, "lb"),
  22563. name: "Back",
  22564. image: {
  22565. source: "./media/characters/sasha-katraine/back.svg",
  22566. extra: 1776/1699,
  22567. bottom: 26/1802
  22568. }
  22569. },
  22570. },
  22571. [
  22572. {
  22573. name: "Micro",
  22574. height: math.unit(5, "inches")
  22575. },
  22576. {
  22577. name: "Normal",
  22578. height: math.unit(5 + 3 / 12, "feet"),
  22579. default: true
  22580. },
  22581. ]
  22582. ))
  22583. characterMakers.push(() => makeCharacter(
  22584. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22585. {
  22586. side: {
  22587. height: math.unit(4, "inches"),
  22588. weight: math.unit(200, "grams"),
  22589. name: "Side",
  22590. image: {
  22591. source: "./media/characters/der/side.svg",
  22592. extra: 719 / 400,
  22593. bottom: 30.6 / 749.9187
  22594. }
  22595. },
  22596. },
  22597. [
  22598. {
  22599. name: "Micro",
  22600. height: math.unit(4, "inches"),
  22601. default: true
  22602. },
  22603. ]
  22604. ))
  22605. characterMakers.push(() => makeCharacter(
  22606. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22607. {
  22608. side: {
  22609. height: math.unit(30, "meters"),
  22610. weight: math.unit(700, "tonnes"),
  22611. name: "Side",
  22612. image: {
  22613. source: "./media/characters/fixerdragon/side.svg",
  22614. extra: (1293.0514 - 116.03) / 1106.86,
  22615. bottom: 116.03 / 1293.0514
  22616. }
  22617. },
  22618. },
  22619. [
  22620. {
  22621. name: "Planck",
  22622. height: math.unit(1.6e-35, "meters")
  22623. },
  22624. {
  22625. name: "Micro",
  22626. height: math.unit(0.4, "meters")
  22627. },
  22628. {
  22629. name: "Normal",
  22630. height: math.unit(30, "meters"),
  22631. default: true
  22632. },
  22633. {
  22634. name: "Megamacro",
  22635. height: math.unit(1.2, "megameters")
  22636. },
  22637. {
  22638. name: "Teramacro",
  22639. height: math.unit(130, "terameters")
  22640. },
  22641. {
  22642. name: "Yottamacro",
  22643. height: math.unit(6200, "yottameters")
  22644. },
  22645. ]
  22646. ));
  22647. characterMakers.push(() => makeCharacter(
  22648. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22649. {
  22650. front: {
  22651. height: math.unit(8, "feet"),
  22652. weight: math.unit(250, "lb"),
  22653. name: "Front",
  22654. image: {
  22655. source: "./media/characters/kite/front.svg",
  22656. extra: 2796 / 2659,
  22657. bottom: 0.002
  22658. }
  22659. },
  22660. },
  22661. [
  22662. {
  22663. name: "Normal",
  22664. height: math.unit(8, "feet"),
  22665. default: true
  22666. },
  22667. {
  22668. name: "Macro",
  22669. height: math.unit(360, "feet")
  22670. },
  22671. {
  22672. name: "Megamacro",
  22673. height: math.unit(1500, "feet")
  22674. },
  22675. ]
  22676. ))
  22677. characterMakers.push(() => makeCharacter(
  22678. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22679. {
  22680. front: {
  22681. height: math.unit(5 + 11/12, "feet"),
  22682. weight: math.unit(170, "lb"),
  22683. name: "Front",
  22684. image: {
  22685. source: "./media/characters/poojawa-vynar/front.svg",
  22686. extra: 1735/1585,
  22687. bottom: 96/1831
  22688. }
  22689. },
  22690. back: {
  22691. height: math.unit(5 + 11/12, "feet"),
  22692. weight: math.unit(170, "lb"),
  22693. name: "Back",
  22694. image: {
  22695. source: "./media/characters/poojawa-vynar/back.svg",
  22696. extra: 1749/1607,
  22697. bottom: 28/1777
  22698. }
  22699. },
  22700. male: {
  22701. height: math.unit(5 + 11/12, "feet"),
  22702. weight: math.unit(170, "lb"),
  22703. name: "Male",
  22704. image: {
  22705. source: "./media/characters/poojawa-vynar/male.svg",
  22706. extra: 1855/1713,
  22707. bottom: 63/1918
  22708. }
  22709. },
  22710. taur: {
  22711. height: math.unit(5 + 11/12, "feet"),
  22712. weight: math.unit(170, "lb"),
  22713. name: "Taur",
  22714. image: {
  22715. source: "./media/characters/poojawa-vynar/taur.svg",
  22716. extra: 1151/1059,
  22717. bottom: 356/1507
  22718. }
  22719. },
  22720. frontDressed: {
  22721. height: math.unit(5 + 11/12, "feet"),
  22722. weight: math.unit(170, "lb"),
  22723. name: "Front (Dressed)",
  22724. image: {
  22725. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22726. extra: 1735/1585,
  22727. bottom: 96/1831
  22728. }
  22729. },
  22730. backDressed: {
  22731. height: math.unit(5 + 11/12, "feet"),
  22732. weight: math.unit(170, "lb"),
  22733. name: "Back (Dressed)",
  22734. image: {
  22735. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22736. extra: 1749/1607,
  22737. bottom: 28/1777
  22738. }
  22739. },
  22740. maleDressed: {
  22741. height: math.unit(5 + 11/12, "feet"),
  22742. weight: math.unit(170, "lb"),
  22743. name: "Male (Dressed)",
  22744. image: {
  22745. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22746. extra: 1855/1713,
  22747. bottom: 63/1918
  22748. }
  22749. },
  22750. taurDressed: {
  22751. height: math.unit(5 + 11/12, "feet"),
  22752. weight: math.unit(170, "lb"),
  22753. name: "Taur (Dressed)",
  22754. image: {
  22755. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22756. extra: 1151/1059,
  22757. bottom: 356/1507
  22758. }
  22759. },
  22760. maw: {
  22761. height: math.unit(1.46, "feet"),
  22762. name: "Maw",
  22763. image: {
  22764. source: "./media/characters/poojawa-vynar/maw.svg"
  22765. }
  22766. },
  22767. head: {
  22768. height: math.unit(2.34, "feet"),
  22769. name: "Head",
  22770. image: {
  22771. source: "./media/characters/poojawa-vynar/head.svg"
  22772. }
  22773. },
  22774. paw: {
  22775. height: math.unit(1.61, "feet"),
  22776. name: "Paw",
  22777. image: {
  22778. source: "./media/characters/poojawa-vynar/paw.svg"
  22779. }
  22780. },
  22781. pawToering: {
  22782. height: math.unit(1.72, "feet"),
  22783. name: "Paw (Toering)",
  22784. image: {
  22785. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22786. }
  22787. },
  22788. toering: {
  22789. height: math.unit(2.9, "inches"),
  22790. name: "Toering",
  22791. image: {
  22792. source: "./media/characters/poojawa-vynar/toering.svg"
  22793. }
  22794. },
  22795. shaft: {
  22796. height: math.unit(0.625, "feet"),
  22797. name: "Shaft",
  22798. image: {
  22799. source: "./media/characters/poojawa-vynar/shaft.svg"
  22800. }
  22801. },
  22802. spade: {
  22803. height: math.unit(0.42, "feet"),
  22804. name: "Spade",
  22805. image: {
  22806. source: "./media/characters/poojawa-vynar/spade.svg"
  22807. }
  22808. },
  22809. },
  22810. [
  22811. {
  22812. name: "Shortstack",
  22813. height: math.unit(4, "feet")
  22814. },
  22815. {
  22816. name: "Normal",
  22817. height: math.unit(5 + 11 / 12, "feet"),
  22818. default: true
  22819. },
  22820. {
  22821. name: "Tauric",
  22822. height: math.unit(4, "meters")
  22823. },
  22824. ]
  22825. ))
  22826. characterMakers.push(() => makeCharacter(
  22827. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22828. {
  22829. front: {
  22830. height: math.unit(293, "meters"),
  22831. weight: math.unit(70400, "tons"),
  22832. name: "Front",
  22833. image: {
  22834. source: "./media/characters/violette/front.svg",
  22835. extra: 1227 / 1180,
  22836. bottom: 0.005
  22837. }
  22838. },
  22839. back: {
  22840. height: math.unit(293, "meters"),
  22841. weight: math.unit(70400, "tons"),
  22842. name: "Back",
  22843. image: {
  22844. source: "./media/characters/violette/back.svg",
  22845. extra: 1227 / 1180,
  22846. bottom: 0.005
  22847. }
  22848. },
  22849. },
  22850. [
  22851. {
  22852. name: "Macro",
  22853. height: math.unit(293, "meters"),
  22854. default: true
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22860. {
  22861. front: {
  22862. height: math.unit(1050, "feet"),
  22863. weight: math.unit(200000, "tons"),
  22864. name: "Front",
  22865. image: {
  22866. source: "./media/characters/alessandra/front.svg",
  22867. extra: 960 / 912,
  22868. bottom: 0.06
  22869. }
  22870. },
  22871. },
  22872. [
  22873. {
  22874. name: "Macro",
  22875. height: math.unit(1050, "feet")
  22876. },
  22877. {
  22878. name: "Macro+",
  22879. height: math.unit(900, "meters"),
  22880. default: true
  22881. },
  22882. ]
  22883. ))
  22884. characterMakers.push(() => makeCharacter(
  22885. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22886. {
  22887. front: {
  22888. height: math.unit(5, "feet"),
  22889. weight: math.unit(187, "lb"),
  22890. name: "Front",
  22891. image: {
  22892. source: "./media/characters/person/front.svg",
  22893. extra: 3087 / 2945,
  22894. bottom: 91 / 3181
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Micro",
  22901. height: math.unit(3, "inches")
  22902. },
  22903. {
  22904. name: "Normal",
  22905. height: math.unit(5, "feet"),
  22906. default: true
  22907. },
  22908. {
  22909. name: "Macro",
  22910. height: math.unit(90, "feet")
  22911. },
  22912. {
  22913. name: "Max Size",
  22914. height: math.unit(280, "feet")
  22915. },
  22916. ]
  22917. ))
  22918. characterMakers.push(() => makeCharacter(
  22919. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22920. {
  22921. front: {
  22922. height: math.unit(4.5, "meters"),
  22923. weight: math.unit(3200, "lb"),
  22924. name: "Front",
  22925. image: {
  22926. source: "./media/characters/ty/front.svg",
  22927. extra: 1038 / 960,
  22928. bottom: 31.156 / 1068
  22929. }
  22930. },
  22931. back: {
  22932. height: math.unit(4.5, "meters"),
  22933. weight: math.unit(3200, "lb"),
  22934. name: "Back",
  22935. image: {
  22936. source: "./media/characters/ty/back.svg",
  22937. extra: 1044 / 966,
  22938. bottom: 7.48 / 1049
  22939. }
  22940. },
  22941. },
  22942. [
  22943. {
  22944. name: "Normal",
  22945. height: math.unit(4.5, "meters"),
  22946. default: true
  22947. },
  22948. ]
  22949. ))
  22950. characterMakers.push(() => makeCharacter(
  22951. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22952. {
  22953. front: {
  22954. height: math.unit(5 + 4 / 12, "feet"),
  22955. weight: math.unit(115, "lb"),
  22956. name: "Front",
  22957. image: {
  22958. source: "./media/characters/rocky/front.svg",
  22959. extra: 1012 / 975,
  22960. bottom: 54 / 1066
  22961. }
  22962. },
  22963. },
  22964. [
  22965. {
  22966. name: "Normal",
  22967. height: math.unit(5 + 4 / 12, "feet"),
  22968. default: true
  22969. },
  22970. ]
  22971. ))
  22972. characterMakers.push(() => makeCharacter(
  22973. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22974. {
  22975. upright: {
  22976. height: math.unit(6, "meters"),
  22977. weight: math.unit(4000, "kg"),
  22978. name: "Upright",
  22979. image: {
  22980. source: "./media/characters/ruin/upright.svg",
  22981. extra: 668 / 661,
  22982. bottom: 42 / 799.8396
  22983. }
  22984. },
  22985. },
  22986. [
  22987. {
  22988. name: "Normal",
  22989. height: math.unit(6, "meters"),
  22990. default: true
  22991. },
  22992. ]
  22993. ))
  22994. characterMakers.push(() => makeCharacter(
  22995. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22996. {
  22997. front: {
  22998. height: math.unit(5, "feet"),
  22999. weight: math.unit(106, "lb"),
  23000. name: "Front",
  23001. image: {
  23002. source: "./media/characters/robin/front.svg",
  23003. extra: 862 / 799,
  23004. bottom: 42.4 / 914.8856
  23005. }
  23006. },
  23007. },
  23008. [
  23009. {
  23010. name: "Normal",
  23011. height: math.unit(5, "feet"),
  23012. default: true
  23013. },
  23014. ]
  23015. ))
  23016. characterMakers.push(() => makeCharacter(
  23017. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23018. {
  23019. side: {
  23020. height: math.unit(3, "feet"),
  23021. weight: math.unit(225, "lb"),
  23022. name: "Side",
  23023. image: {
  23024. source: "./media/characters/saian/side.svg",
  23025. extra: 566 / 356,
  23026. bottom: 79.7 / 643
  23027. }
  23028. },
  23029. maw: {
  23030. height: math.unit(2.85, "feet"),
  23031. name: "Maw",
  23032. image: {
  23033. source: "./media/characters/saian/maw.svg"
  23034. }
  23035. },
  23036. },
  23037. [
  23038. {
  23039. name: "Normal",
  23040. height: math.unit(3, "feet"),
  23041. default: true
  23042. },
  23043. ]
  23044. ))
  23045. characterMakers.push(() => makeCharacter(
  23046. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23047. {
  23048. side: {
  23049. height: math.unit(8, "feet"),
  23050. weight: math.unit(300, "lb"),
  23051. name: "Side",
  23052. image: {
  23053. source: "./media/characters/equus-silvermane/side.svg",
  23054. extra: 2176 / 2050,
  23055. bottom: 65.7 / 2245
  23056. }
  23057. },
  23058. front: {
  23059. height: math.unit(8, "feet"),
  23060. weight: math.unit(300, "lb"),
  23061. name: "Front",
  23062. image: {
  23063. source: "./media/characters/equus-silvermane/front.svg",
  23064. extra: 4633 / 4400,
  23065. bottom: 71.3 / 4706.915
  23066. }
  23067. },
  23068. sideStepping: {
  23069. height: math.unit(8, "feet"),
  23070. weight: math.unit(300, "lb"),
  23071. name: "Side (Stepping)",
  23072. image: {
  23073. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23074. extra: 1968 / 1860,
  23075. bottom: 16.4 / 1989
  23076. }
  23077. },
  23078. },
  23079. [
  23080. {
  23081. name: "Normal",
  23082. height: math.unit(8, "feet")
  23083. },
  23084. {
  23085. name: "Minimacro",
  23086. height: math.unit(75, "feet"),
  23087. default: true
  23088. },
  23089. {
  23090. name: "Macro",
  23091. height: math.unit(150, "feet")
  23092. },
  23093. {
  23094. name: "Macro+",
  23095. height: math.unit(1000, "feet")
  23096. },
  23097. {
  23098. name: "Megamacro",
  23099. height: math.unit(1, "mile")
  23100. },
  23101. ]
  23102. ))
  23103. characterMakers.push(() => makeCharacter(
  23104. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23105. {
  23106. side: {
  23107. height: math.unit(20, "feet"),
  23108. weight: math.unit(30000, "kg"),
  23109. name: "Side",
  23110. image: {
  23111. source: "./media/characters/windar/side.svg",
  23112. extra: 1491 / 1248,
  23113. bottom: 82.56 / 1568
  23114. }
  23115. },
  23116. },
  23117. [
  23118. {
  23119. name: "Normal",
  23120. height: math.unit(20, "feet"),
  23121. default: true
  23122. },
  23123. ]
  23124. ))
  23125. characterMakers.push(() => makeCharacter(
  23126. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23127. {
  23128. side: {
  23129. height: math.unit(15.66, "feet"),
  23130. weight: math.unit(150, "lb"),
  23131. name: "Side",
  23132. image: {
  23133. source: "./media/characters/melody/side.svg",
  23134. extra: 1097 / 944,
  23135. bottom: 11.8 / 1109
  23136. }
  23137. },
  23138. sideOutfit: {
  23139. height: math.unit(15.66, "feet"),
  23140. weight: math.unit(150, "lb"),
  23141. name: "Side (Outfit)",
  23142. image: {
  23143. source: "./media/characters/melody/side-outfit.svg",
  23144. extra: 1097 / 944,
  23145. bottom: 11.8 / 1109
  23146. }
  23147. },
  23148. },
  23149. [
  23150. {
  23151. name: "Normal",
  23152. height: math.unit(15.66, "feet"),
  23153. default: true
  23154. },
  23155. ]
  23156. ))
  23157. characterMakers.push(() => makeCharacter(
  23158. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23159. {
  23160. armoredFront: {
  23161. height: math.unit(8, "feet"),
  23162. weight: math.unit(325, "lb"),
  23163. name: "Front",
  23164. image: {
  23165. source: "./media/characters/windera/armored-front.svg",
  23166. extra: 1830/1598,
  23167. bottom: 151/1981
  23168. },
  23169. form: "armored",
  23170. default: true
  23171. },
  23172. macroFront: {
  23173. height: math.unit(70, "feet"),
  23174. weight: math.unit(315453, "lb"),
  23175. name: "Front",
  23176. image: {
  23177. source: "./media/characters/windera/macro-front.svg",
  23178. extra: 963/883,
  23179. bottom: 23/986
  23180. },
  23181. form: "macro",
  23182. default: true
  23183. },
  23184. },
  23185. [
  23186. {
  23187. name: "Normal",
  23188. height: math.unit(8, "feet"),
  23189. default: true,
  23190. form: "armored"
  23191. },
  23192. {
  23193. name: "Normal",
  23194. height: math.unit(70, "feet"),
  23195. default: true,
  23196. form: "macro"
  23197. },
  23198. ],
  23199. {
  23200. "armored": {
  23201. name: "Armored",
  23202. default: true
  23203. },
  23204. "macro": {
  23205. name: "Macro",
  23206. },
  23207. }
  23208. ))
  23209. characterMakers.push(() => makeCharacter(
  23210. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23211. {
  23212. front: {
  23213. height: math.unit(28.75, "feet"),
  23214. weight: math.unit(2000, "kg"),
  23215. name: "Front",
  23216. image: {
  23217. source: "./media/characters/sonear/front.svg",
  23218. extra: 1041.1 / 964.9,
  23219. bottom: 53.7 / 1096.6
  23220. }
  23221. },
  23222. },
  23223. [
  23224. {
  23225. name: "Normal",
  23226. height: math.unit(28.75, "feet"),
  23227. default: true
  23228. },
  23229. ]
  23230. ))
  23231. characterMakers.push(() => makeCharacter(
  23232. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23233. {
  23234. side: {
  23235. height: math.unit(25.5, "feet"),
  23236. weight: math.unit(23000, "kg"),
  23237. name: "Side",
  23238. image: {
  23239. source: "./media/characters/kanara/side.svg"
  23240. }
  23241. },
  23242. },
  23243. [
  23244. {
  23245. name: "Normal",
  23246. height: math.unit(25.5, "feet"),
  23247. default: true
  23248. },
  23249. ]
  23250. ))
  23251. characterMakers.push(() => makeCharacter(
  23252. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23253. {
  23254. side: {
  23255. height: math.unit(10, "feet"),
  23256. weight: math.unit(1000, "kg"),
  23257. name: "Side",
  23258. image: {
  23259. source: "./media/characters/ereus/side.svg",
  23260. extra: 1157 / 959,
  23261. bottom: 153 / 1312.5
  23262. }
  23263. },
  23264. },
  23265. [
  23266. {
  23267. name: "Normal",
  23268. height: math.unit(10, "feet"),
  23269. default: true
  23270. },
  23271. ]
  23272. ))
  23273. characterMakers.push(() => makeCharacter(
  23274. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23275. {
  23276. side: {
  23277. height: math.unit(4.5, "feet"),
  23278. weight: math.unit(500, "lb"),
  23279. name: "Side",
  23280. image: {
  23281. source: "./media/characters/e-ter/side.svg",
  23282. extra: 1550 / 1248,
  23283. bottom: 146 / 1694
  23284. }
  23285. },
  23286. },
  23287. [
  23288. {
  23289. name: "Normal",
  23290. height: math.unit(4.5, "feet"),
  23291. default: true
  23292. },
  23293. ]
  23294. ))
  23295. characterMakers.push(() => makeCharacter(
  23296. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23297. {
  23298. side: {
  23299. height: math.unit(9.7, "feet"),
  23300. weight: math.unit(4000, "kg"),
  23301. name: "Side",
  23302. image: {
  23303. source: "./media/characters/yamie/side.svg"
  23304. }
  23305. },
  23306. },
  23307. [
  23308. {
  23309. name: "Normal",
  23310. height: math.unit(9.7, "feet"),
  23311. default: true
  23312. },
  23313. ]
  23314. ))
  23315. characterMakers.push(() => makeCharacter(
  23316. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23317. {
  23318. front: {
  23319. height: math.unit(50, "feet"),
  23320. weight: math.unit(50000, "kg"),
  23321. name: "Front",
  23322. image: {
  23323. source: "./media/characters/anders/front.svg",
  23324. extra: 570 / 539,
  23325. bottom: 14.7 / 586.7
  23326. }
  23327. },
  23328. },
  23329. [
  23330. {
  23331. name: "Large",
  23332. height: math.unit(50, "feet")
  23333. },
  23334. {
  23335. name: "Macro",
  23336. height: math.unit(2000, "feet"),
  23337. default: true
  23338. },
  23339. {
  23340. name: "Megamacro",
  23341. height: math.unit(12, "miles")
  23342. },
  23343. ]
  23344. ))
  23345. characterMakers.push(() => makeCharacter(
  23346. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23347. {
  23348. front: {
  23349. height: math.unit(7 + 2 / 12, "feet"),
  23350. weight: math.unit(300, "lb"),
  23351. name: "Front",
  23352. image: {
  23353. source: "./media/characters/reban/front.svg",
  23354. extra: 1287/1212,
  23355. bottom: 148/1435
  23356. }
  23357. },
  23358. head: {
  23359. height: math.unit(1.95, "feet"),
  23360. name: "Head",
  23361. image: {
  23362. source: "./media/characters/reban/head.svg"
  23363. }
  23364. },
  23365. maw: {
  23366. height: math.unit(0.95, "feet"),
  23367. name: "Maw",
  23368. image: {
  23369. source: "./media/characters/reban/maw.svg"
  23370. }
  23371. },
  23372. foot: {
  23373. height: math.unit(1.65, "feet"),
  23374. name: "Foot",
  23375. image: {
  23376. source: "./media/characters/reban/foot.svg"
  23377. }
  23378. },
  23379. dick: {
  23380. height: math.unit(7 / 5, "feet"),
  23381. name: "Dick",
  23382. image: {
  23383. source: "./media/characters/reban/dick.svg"
  23384. }
  23385. },
  23386. },
  23387. [
  23388. {
  23389. name: "Natural Height",
  23390. height: math.unit(7 + 2 / 12, "feet")
  23391. },
  23392. {
  23393. name: "Macro",
  23394. height: math.unit(500, "feet"),
  23395. default: true
  23396. },
  23397. {
  23398. name: "Canon Height",
  23399. height: math.unit(50, "AU")
  23400. },
  23401. ]
  23402. ))
  23403. characterMakers.push(() => makeCharacter(
  23404. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23405. {
  23406. front: {
  23407. height: math.unit(6, "feet"),
  23408. weight: math.unit(150, "lb"),
  23409. name: "Front",
  23410. image: {
  23411. source: "./media/characters/terrance-keayes/front.svg",
  23412. extra: 1.005,
  23413. bottom: 151 / 1615
  23414. }
  23415. },
  23416. side: {
  23417. height: math.unit(6, "feet"),
  23418. weight: math.unit(150, "lb"),
  23419. name: "Side",
  23420. image: {
  23421. source: "./media/characters/terrance-keayes/side.svg",
  23422. extra: 1.005,
  23423. bottom: 129.4 / 1544
  23424. }
  23425. },
  23426. back: {
  23427. height: math.unit(6, "feet"),
  23428. weight: math.unit(150, "lb"),
  23429. name: "Back",
  23430. image: {
  23431. source: "./media/characters/terrance-keayes/back.svg",
  23432. extra: 1.005,
  23433. bottom: 58.4 / 1557.3
  23434. }
  23435. },
  23436. dick: {
  23437. height: math.unit(6 * 0.208, "feet"),
  23438. name: "Dick",
  23439. image: {
  23440. source: "./media/characters/terrance-keayes/dick.svg"
  23441. }
  23442. },
  23443. },
  23444. [
  23445. {
  23446. name: "Canon Height",
  23447. height: math.unit(35, "miles"),
  23448. default: true
  23449. },
  23450. ]
  23451. ))
  23452. characterMakers.push(() => makeCharacter(
  23453. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23454. {
  23455. front: {
  23456. height: math.unit(6, "feet"),
  23457. weight: math.unit(150, "lb"),
  23458. name: "Front",
  23459. image: {
  23460. source: "./media/characters/ofelia/front.svg",
  23461. extra: 1130/1117,
  23462. bottom: 91/1221
  23463. }
  23464. },
  23465. back: {
  23466. height: math.unit(6, "feet"),
  23467. weight: math.unit(150, "lb"),
  23468. name: "Back",
  23469. image: {
  23470. source: "./media/characters/ofelia/back.svg",
  23471. extra: 1172/1159,
  23472. bottom: 28/1200
  23473. }
  23474. },
  23475. maw: {
  23476. height: math.unit(1, "feet"),
  23477. name: "Maw",
  23478. image: {
  23479. source: "./media/characters/ofelia/maw.svg"
  23480. }
  23481. },
  23482. foot: {
  23483. height: math.unit(1.949, "feet"),
  23484. name: "Foot",
  23485. image: {
  23486. source: "./media/characters/ofelia/foot.svg"
  23487. }
  23488. },
  23489. },
  23490. [
  23491. {
  23492. name: "Canon Height",
  23493. height: math.unit(2000, "miles"),
  23494. default: true
  23495. },
  23496. ]
  23497. ))
  23498. characterMakers.push(() => makeCharacter(
  23499. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23500. {
  23501. front: {
  23502. height: math.unit(6, "feet"),
  23503. weight: math.unit(150, "lb"),
  23504. name: "Front",
  23505. image: {
  23506. source: "./media/characters/samuel/front.svg",
  23507. extra: 265 / 258,
  23508. bottom: 2 / 266.1566
  23509. }
  23510. },
  23511. },
  23512. [
  23513. {
  23514. name: "Macro",
  23515. height: math.unit(100, "feet"),
  23516. default: true
  23517. },
  23518. {
  23519. name: "Full Size",
  23520. height: math.unit(1000, "miles")
  23521. },
  23522. ]
  23523. ))
  23524. characterMakers.push(() => makeCharacter(
  23525. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23526. {
  23527. front: {
  23528. height: math.unit(6, "feet"),
  23529. weight: math.unit(300, "lb"),
  23530. name: "Front",
  23531. image: {
  23532. source: "./media/characters/beishir-kiel/front.svg",
  23533. extra: 569 / 547,
  23534. bottom: 41.9 / 609
  23535. }
  23536. },
  23537. maw: {
  23538. height: math.unit(6 * 0.202, "feet"),
  23539. name: "Maw",
  23540. image: {
  23541. source: "./media/characters/beishir-kiel/maw.svg"
  23542. }
  23543. },
  23544. },
  23545. [
  23546. {
  23547. name: "Macro",
  23548. height: math.unit(300, "feet"),
  23549. default: true
  23550. },
  23551. ]
  23552. ))
  23553. characterMakers.push(() => makeCharacter(
  23554. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23555. {
  23556. front: {
  23557. height: math.unit(5 + 7/12, "feet"),
  23558. weight: math.unit(120, "lb"),
  23559. name: "Front",
  23560. image: {
  23561. source: "./media/characters/logan-grey/front.svg",
  23562. extra: 1836/1738,
  23563. bottom: 108/1944
  23564. }
  23565. },
  23566. back: {
  23567. height: math.unit(5 + 7/12, "feet"),
  23568. weight: math.unit(120, "lb"),
  23569. name: "Back",
  23570. image: {
  23571. source: "./media/characters/logan-grey/back.svg",
  23572. extra: 1880/1794,
  23573. bottom: 24/1904
  23574. }
  23575. },
  23576. frontSfw: {
  23577. height: math.unit(5 + 7/12, "feet"),
  23578. weight: math.unit(120, "lb"),
  23579. name: "Front (SFW)",
  23580. image: {
  23581. source: "./media/characters/logan-grey/front-sfw.svg",
  23582. extra: 1836/1738,
  23583. bottom: 108/1944
  23584. }
  23585. },
  23586. backSfw: {
  23587. height: math.unit(5 + 7/12, "feet"),
  23588. weight: math.unit(120, "lb"),
  23589. name: "Back (SFW)",
  23590. image: {
  23591. source: "./media/characters/logan-grey/back-sfw.svg",
  23592. extra: 1880/1794,
  23593. bottom: 24/1904
  23594. }
  23595. },
  23596. hands: {
  23597. height: math.unit(0.84, "feet"),
  23598. name: "Hands",
  23599. image: {
  23600. source: "./media/characters/logan-grey/hands.svg"
  23601. }
  23602. },
  23603. paws: {
  23604. height: math.unit(0.72, "feet"),
  23605. name: "Paws",
  23606. image: {
  23607. source: "./media/characters/logan-grey/paws.svg"
  23608. }
  23609. },
  23610. cock: {
  23611. height: math.unit(1.45, "feet"),
  23612. name: "Cock",
  23613. image: {
  23614. source: "./media/characters/logan-grey/cock.svg"
  23615. }
  23616. },
  23617. cockAlt: {
  23618. height: math.unit(1.437, "feet"),
  23619. name: "Cock (alt)",
  23620. image: {
  23621. source: "./media/characters/logan-grey/cock-alt.svg"
  23622. }
  23623. },
  23624. },
  23625. [
  23626. {
  23627. name: "Normal",
  23628. height: math.unit(5 + 8 / 12, "feet")
  23629. },
  23630. {
  23631. name: "The 500 Foot Femboy",
  23632. height: math.unit(500, "feet"),
  23633. default: true
  23634. },
  23635. {
  23636. name: "Megmacro",
  23637. height: math.unit(20, "miles")
  23638. },
  23639. ]
  23640. ))
  23641. characterMakers.push(() => makeCharacter(
  23642. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23643. {
  23644. front: {
  23645. height: math.unit(8 + 2 / 12, "feet"),
  23646. weight: math.unit(275, "lb"),
  23647. name: "Front",
  23648. image: {
  23649. source: "./media/characters/draganta/front.svg",
  23650. extra: 1177 / 1135,
  23651. bottom: 33.46 / 1212.1
  23652. }
  23653. },
  23654. },
  23655. [
  23656. {
  23657. name: "Normal",
  23658. height: math.unit(8 + 6 / 12, "feet"),
  23659. default: true
  23660. },
  23661. {
  23662. name: "Macro",
  23663. height: math.unit(150, "feet")
  23664. },
  23665. {
  23666. name: "Megamacro",
  23667. height: math.unit(1000, "miles")
  23668. },
  23669. ]
  23670. ))
  23671. characterMakers.push(() => makeCharacter(
  23672. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23673. {
  23674. front: {
  23675. height: math.unit(1.72, "m"),
  23676. weight: math.unit(80, "lb"),
  23677. name: "Front",
  23678. image: {
  23679. source: "./media/characters/voski/front.svg",
  23680. extra: 2076.22 / 2022.4,
  23681. bottom: 102.7 / 2177.3866
  23682. }
  23683. },
  23684. frontFlaccid: {
  23685. height: math.unit(1.72, "m"),
  23686. weight: math.unit(80, "lb"),
  23687. name: "Front (Flaccid)",
  23688. image: {
  23689. source: "./media/characters/voski/front-flaccid.svg",
  23690. extra: 2076.22 / 2022.4,
  23691. bottom: 102.7 / 2177.3866
  23692. }
  23693. },
  23694. frontErect: {
  23695. height: math.unit(1.72, "m"),
  23696. weight: math.unit(80, "lb"),
  23697. name: "Front (Erect)",
  23698. image: {
  23699. source: "./media/characters/voski/front-erect.svg",
  23700. extra: 2076.22 / 2022.4,
  23701. bottom: 102.7 / 2177.3866
  23702. }
  23703. },
  23704. back: {
  23705. height: math.unit(1.72, "m"),
  23706. weight: math.unit(80, "lb"),
  23707. name: "Back",
  23708. image: {
  23709. source: "./media/characters/voski/back.svg",
  23710. extra: 2104 / 2051,
  23711. bottom: 10.45 / 2113.63
  23712. }
  23713. },
  23714. },
  23715. [
  23716. {
  23717. name: "Normal",
  23718. height: math.unit(1.72, "m")
  23719. },
  23720. {
  23721. name: "Macro",
  23722. height: math.unit(55, "m"),
  23723. default: true
  23724. },
  23725. {
  23726. name: "Macro+",
  23727. height: math.unit(300, "m")
  23728. },
  23729. {
  23730. name: "Macro++",
  23731. height: math.unit(700, "m")
  23732. },
  23733. {
  23734. name: "Macro+++",
  23735. height: math.unit(4500, "m")
  23736. },
  23737. {
  23738. name: "Macro++++",
  23739. height: math.unit(45, "km")
  23740. },
  23741. {
  23742. name: "Macro+++++",
  23743. height: math.unit(1220, "km")
  23744. },
  23745. ]
  23746. ))
  23747. characterMakers.push(() => makeCharacter(
  23748. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23749. {
  23750. front: {
  23751. height: math.unit(2.3, "m"),
  23752. weight: math.unit(304, "kg"),
  23753. name: "Front",
  23754. image: {
  23755. source: "./media/characters/icowom-lee/front.svg",
  23756. extra: 985 / 955,
  23757. bottom: 25.4 / 1012
  23758. }
  23759. },
  23760. fronttentacles: {
  23761. height: math.unit(2.3, "m"),
  23762. weight: math.unit(304, "kg"),
  23763. name: "Front-tentacles",
  23764. image: {
  23765. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23766. extra: 985 / 955,
  23767. bottom: 25.4 / 1012
  23768. }
  23769. },
  23770. back: {
  23771. height: math.unit(2.3, "m"),
  23772. weight: math.unit(304, "kg"),
  23773. name: "Back",
  23774. image: {
  23775. source: "./media/characters/icowom-lee/back.svg",
  23776. extra: 975 / 954,
  23777. bottom: 9.5 / 985
  23778. }
  23779. },
  23780. backtentacles: {
  23781. height: math.unit(2.3, "m"),
  23782. weight: math.unit(304, "kg"),
  23783. name: "Back-tentacles",
  23784. image: {
  23785. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23786. extra: 975 / 954,
  23787. bottom: 9.5 / 985
  23788. }
  23789. },
  23790. frontDressed: {
  23791. height: math.unit(2.3, "m"),
  23792. weight: math.unit(304, "kg"),
  23793. name: "Front (Dressed)",
  23794. image: {
  23795. source: "./media/characters/icowom-lee/front-dressed.svg",
  23796. extra: 3076 / 2933,
  23797. bottom: 51.4 / 3125.1889
  23798. }
  23799. },
  23800. rump: {
  23801. height: math.unit(0.776, "meters"),
  23802. name: "Rump",
  23803. image: {
  23804. source: "./media/characters/icowom-lee/rump.svg"
  23805. }
  23806. },
  23807. genitals: {
  23808. height: math.unit(0.78, "meters"),
  23809. name: "Genitals",
  23810. image: {
  23811. source: "./media/characters/icowom-lee/genitals.svg"
  23812. }
  23813. },
  23814. },
  23815. [
  23816. {
  23817. name: "Normal",
  23818. height: math.unit(2.3, "meters"),
  23819. default: true
  23820. },
  23821. {
  23822. name: "Macro",
  23823. height: math.unit(94, "meters"),
  23824. default: true
  23825. },
  23826. ]
  23827. ))
  23828. characterMakers.push(() => makeCharacter(
  23829. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23830. {
  23831. front: {
  23832. height: math.unit(22, "meters"),
  23833. weight: math.unit(21000, "kg"),
  23834. name: "Front",
  23835. image: {
  23836. source: "./media/characters/shock-diamond/front.svg",
  23837. extra: 2204 / 2053,
  23838. bottom: 65 / 2239.47
  23839. }
  23840. },
  23841. frontNude: {
  23842. height: math.unit(22, "meters"),
  23843. weight: math.unit(21000, "kg"),
  23844. name: "Front (Nude)",
  23845. image: {
  23846. source: "./media/characters/shock-diamond/front-nude.svg",
  23847. extra: 2514 / 2285,
  23848. bottom: 13 / 2527.56
  23849. }
  23850. },
  23851. },
  23852. [
  23853. {
  23854. name: "Normal",
  23855. height: math.unit(3, "meters")
  23856. },
  23857. {
  23858. name: "Macro",
  23859. height: math.unit(22, "meters"),
  23860. default: true
  23861. },
  23862. ]
  23863. ))
  23864. characterMakers.push(() => makeCharacter(
  23865. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23866. {
  23867. front: {
  23868. height: math.unit(5 + 4 / 12, "feet"),
  23869. weight: math.unit(120, "lb"),
  23870. name: "Front",
  23871. image: {
  23872. source: "./media/characters/rory/front.svg",
  23873. extra: 1318/1241,
  23874. bottom: 42/1360
  23875. }
  23876. },
  23877. back: {
  23878. height: math.unit(5 + 4 / 12, "feet"),
  23879. weight: math.unit(120, "lb"),
  23880. name: "Back",
  23881. image: {
  23882. source: "./media/characters/rory/back.svg",
  23883. extra: 1318/1241,
  23884. bottom: 42/1360
  23885. }
  23886. },
  23887. butt: {
  23888. height: math.unit(1.74, "feet"),
  23889. name: "Butt",
  23890. image: {
  23891. source: "./media/characters/rory/butt.svg"
  23892. }
  23893. },
  23894. dick: {
  23895. height: math.unit(1.02, "feet"),
  23896. name: "Dick",
  23897. image: {
  23898. source: "./media/characters/rory/dick.svg"
  23899. }
  23900. },
  23901. paws: {
  23902. height: math.unit(1, "feet"),
  23903. name: "Paws",
  23904. image: {
  23905. source: "./media/characters/rory/paws.svg"
  23906. }
  23907. },
  23908. frontAlt: {
  23909. height: math.unit(5 + 4 / 12, "feet"),
  23910. weight: math.unit(120, "lb"),
  23911. name: "Front (Alt)",
  23912. image: {
  23913. source: "./media/characters/rory/front-alt.svg",
  23914. extra: 589 / 556,
  23915. bottom: 45.7 / 635.76
  23916. }
  23917. },
  23918. frontAltNude: {
  23919. height: math.unit(5 + 4 / 12, "feet"),
  23920. weight: math.unit(120, "lb"),
  23921. name: "Front (Alt, Nude)",
  23922. image: {
  23923. source: "./media/characters/rory/front-alt-nude.svg",
  23924. extra: 589 / 556,
  23925. bottom: 45.7 / 635.76
  23926. }
  23927. },
  23928. side: {
  23929. height: math.unit(5 + 4 / 12, "feet"),
  23930. weight: math.unit(120, "lb"),
  23931. name: "Side",
  23932. image: {
  23933. source: "./media/characters/rory/side.svg",
  23934. extra: 597 / 564,
  23935. bottom: 55 / 653
  23936. }
  23937. },
  23938. backAlt: {
  23939. height: math.unit(5 + 4 / 12, "feet"),
  23940. weight: math.unit(120, "lb"),
  23941. name: "Back (Alt)",
  23942. image: {
  23943. source: "./media/characters/rory/back-alt.svg",
  23944. extra: 620 / 585,
  23945. bottom: 8.86 / 630.43
  23946. }
  23947. },
  23948. dickAlt: {
  23949. height: math.unit(0.86, "feet"),
  23950. name: "Dick (Alt)",
  23951. image: {
  23952. source: "./media/characters/rory/dick-alt.svg"
  23953. }
  23954. },
  23955. },
  23956. [
  23957. {
  23958. name: "Normal",
  23959. height: math.unit(5 + 4 / 12, "feet"),
  23960. default: true
  23961. },
  23962. {
  23963. name: "Macro",
  23964. height: math.unit(100, "feet")
  23965. },
  23966. {
  23967. name: "Macro+",
  23968. height: math.unit(140, "feet")
  23969. },
  23970. {
  23971. name: "Macro++",
  23972. height: math.unit(300, "feet")
  23973. },
  23974. ]
  23975. ))
  23976. characterMakers.push(() => makeCharacter(
  23977. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23978. {
  23979. front: {
  23980. height: math.unit(5 + 9 / 12, "feet"),
  23981. weight: math.unit(190, "lb"),
  23982. name: "Front",
  23983. image: {
  23984. source: "./media/characters/sprisk/front.svg",
  23985. extra: 1225 / 1180,
  23986. bottom: 42.7 / 1266.4
  23987. }
  23988. },
  23989. frontNsfw: {
  23990. height: math.unit(5 + 9 / 12, "feet"),
  23991. weight: math.unit(190, "lb"),
  23992. name: "Front (NSFW)",
  23993. image: {
  23994. source: "./media/characters/sprisk/front-nsfw.svg",
  23995. extra: 1225 / 1180,
  23996. bottom: 42.7 / 1266.4
  23997. }
  23998. },
  23999. back: {
  24000. height: math.unit(5 + 9 / 12, "feet"),
  24001. weight: math.unit(190, "lb"),
  24002. name: "Back",
  24003. image: {
  24004. source: "./media/characters/sprisk/back.svg",
  24005. extra: 1247 / 1200,
  24006. bottom: 5.6 / 1253.04
  24007. }
  24008. },
  24009. },
  24010. [
  24011. {
  24012. name: "Tiny",
  24013. height: math.unit(2, "inches")
  24014. },
  24015. {
  24016. name: "Normal",
  24017. height: math.unit(5 + 9 / 12, "feet"),
  24018. default: true
  24019. },
  24020. {
  24021. name: "Mini Macro",
  24022. height: math.unit(18, "feet")
  24023. },
  24024. {
  24025. name: "Macro",
  24026. height: math.unit(100, "feet")
  24027. },
  24028. {
  24029. name: "MACRO",
  24030. height: math.unit(50, "miles")
  24031. },
  24032. {
  24033. name: "M A C R O",
  24034. height: math.unit(300, "miles")
  24035. },
  24036. ]
  24037. ))
  24038. characterMakers.push(() => makeCharacter(
  24039. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24040. {
  24041. side: {
  24042. height: math.unit(15.6, "meters"),
  24043. weight: math.unit(700000, "kg"),
  24044. name: "Side",
  24045. image: {
  24046. source: "./media/characters/bunsen/side.svg",
  24047. extra: 1644 / 358
  24048. }
  24049. },
  24050. foot: {
  24051. height: math.unit(1.611 * 1644 / 358, "meter"),
  24052. name: "Foot",
  24053. image: {
  24054. source: "./media/characters/bunsen/foot.svg"
  24055. }
  24056. },
  24057. },
  24058. [
  24059. {
  24060. name: "Small",
  24061. height: math.unit(10, "feet")
  24062. },
  24063. {
  24064. name: "Normal",
  24065. height: math.unit(15.6, "meters"),
  24066. default: true
  24067. },
  24068. ]
  24069. ))
  24070. characterMakers.push(() => makeCharacter(
  24071. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24072. {
  24073. front: {
  24074. height: math.unit(4 + 11 / 12, "feet"),
  24075. weight: math.unit(140, "lb"),
  24076. name: "Front",
  24077. image: {
  24078. source: "./media/characters/sesh/front.svg",
  24079. extra: 3420 / 3231,
  24080. bottom: 72 / 3949.5
  24081. }
  24082. },
  24083. },
  24084. [
  24085. {
  24086. name: "Normal",
  24087. height: math.unit(4 + 11 / 12, "feet")
  24088. },
  24089. {
  24090. name: "Grown",
  24091. height: math.unit(15, "feet"),
  24092. default: true
  24093. },
  24094. {
  24095. name: "Macro",
  24096. height: math.unit(1500, "feet")
  24097. },
  24098. {
  24099. name: "Megamacro",
  24100. height: math.unit(30, "miles")
  24101. },
  24102. {
  24103. name: "Continental",
  24104. height: math.unit(3000, "miles")
  24105. },
  24106. {
  24107. name: "Gravity Mass",
  24108. height: math.unit(300000, "miles")
  24109. },
  24110. {
  24111. name: "Planet Buster",
  24112. height: math.unit(30000000, "miles")
  24113. },
  24114. {
  24115. name: "Big",
  24116. height: math.unit(3000000000, "miles")
  24117. },
  24118. ]
  24119. ))
  24120. characterMakers.push(() => makeCharacter(
  24121. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24122. {
  24123. front: {
  24124. height: math.unit(9, "feet"),
  24125. weight: math.unit(350, "lb"),
  24126. name: "Front",
  24127. image: {
  24128. source: "./media/characters/pepper/front.svg",
  24129. extra: 1448 / 1312,
  24130. bottom: 9.4 / 1457.88
  24131. }
  24132. },
  24133. back: {
  24134. height: math.unit(9, "feet"),
  24135. weight: math.unit(350, "lb"),
  24136. name: "Back",
  24137. image: {
  24138. source: "./media/characters/pepper/back.svg",
  24139. extra: 1423 / 1300,
  24140. bottom: 4.6 / 1429
  24141. }
  24142. },
  24143. maw: {
  24144. height: math.unit(0.932, "feet"),
  24145. name: "Maw",
  24146. image: {
  24147. source: "./media/characters/pepper/maw.svg"
  24148. }
  24149. },
  24150. },
  24151. [
  24152. {
  24153. name: "Normal",
  24154. height: math.unit(9, "feet"),
  24155. default: true
  24156. },
  24157. ]
  24158. ))
  24159. characterMakers.push(() => makeCharacter(
  24160. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24161. {
  24162. front: {
  24163. height: math.unit(6, "feet"),
  24164. weight: math.unit(150, "lb"),
  24165. name: "Front",
  24166. image: {
  24167. source: "./media/characters/maelstrom/front.svg",
  24168. extra: 2100 / 1883,
  24169. bottom: 94 / 2196.7
  24170. }
  24171. },
  24172. },
  24173. [
  24174. {
  24175. name: "Less Kaiju",
  24176. height: math.unit(200, "feet")
  24177. },
  24178. {
  24179. name: "Kaiju",
  24180. height: math.unit(400, "feet"),
  24181. default: true
  24182. },
  24183. {
  24184. name: "Kaiju-er",
  24185. height: math.unit(600, "feet")
  24186. },
  24187. ]
  24188. ))
  24189. characterMakers.push(() => makeCharacter(
  24190. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24191. {
  24192. front: {
  24193. height: math.unit(6 + 5 / 12, "feet"),
  24194. weight: math.unit(180, "lb"),
  24195. name: "Front",
  24196. image: {
  24197. source: "./media/characters/lexir/front.svg",
  24198. extra: 180 / 172,
  24199. bottom: 12 / 192
  24200. }
  24201. },
  24202. back: {
  24203. height: math.unit(6 + 5 / 12, "feet"),
  24204. weight: math.unit(180, "lb"),
  24205. name: "Back",
  24206. image: {
  24207. source: "./media/characters/lexir/back.svg",
  24208. extra: 1273/1201,
  24209. bottom: 39/1312
  24210. }
  24211. },
  24212. },
  24213. [
  24214. {
  24215. name: "Very Smal",
  24216. height: math.unit(1, "nm")
  24217. },
  24218. {
  24219. name: "Normal",
  24220. height: math.unit(6 + 5 / 12, "feet"),
  24221. default: true
  24222. },
  24223. {
  24224. name: "Macro",
  24225. height: math.unit(1, "mile")
  24226. },
  24227. {
  24228. name: "Megamacro",
  24229. height: math.unit(50, "miles")
  24230. },
  24231. ]
  24232. ))
  24233. characterMakers.push(() => makeCharacter(
  24234. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24235. {
  24236. front: {
  24237. height: math.unit(1.5, "meters"),
  24238. weight: math.unit(100, "lb"),
  24239. name: "Front",
  24240. image: {
  24241. source: "./media/characters/maksio/front.svg",
  24242. extra: 1549 / 1531,
  24243. bottom: 123.7 / 1674.5429
  24244. }
  24245. },
  24246. back: {
  24247. height: math.unit(1.5, "meters"),
  24248. weight: math.unit(100, "lb"),
  24249. name: "Back",
  24250. image: {
  24251. source: "./media/characters/maksio/back.svg",
  24252. extra: 1541 / 1509,
  24253. bottom: 97 / 1639
  24254. }
  24255. },
  24256. hand: {
  24257. height: math.unit(0.621, "feet"),
  24258. name: "Hand",
  24259. image: {
  24260. source: "./media/characters/maksio/hand.svg"
  24261. }
  24262. },
  24263. foot: {
  24264. height: math.unit(1.611, "feet"),
  24265. name: "Foot",
  24266. image: {
  24267. source: "./media/characters/maksio/foot.svg"
  24268. }
  24269. },
  24270. },
  24271. [
  24272. {
  24273. name: "Shrunken",
  24274. height: math.unit(10, "cm")
  24275. },
  24276. {
  24277. name: "Normal",
  24278. height: math.unit(150, "cm"),
  24279. default: true
  24280. },
  24281. ]
  24282. ))
  24283. characterMakers.push(() => makeCharacter(
  24284. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24285. {
  24286. front: {
  24287. height: math.unit(100, "feet"),
  24288. name: "Front",
  24289. image: {
  24290. source: "./media/characters/erza-bear/front.svg",
  24291. extra: 2449 / 2390,
  24292. bottom: 46 / 2494
  24293. }
  24294. },
  24295. back: {
  24296. height: math.unit(100, "feet"),
  24297. name: "Back",
  24298. image: {
  24299. source: "./media/characters/erza-bear/back.svg",
  24300. extra: 2489 / 2430,
  24301. bottom: 85.4 / 2480
  24302. }
  24303. },
  24304. tail: {
  24305. height: math.unit(42, "feet"),
  24306. name: "Tail",
  24307. image: {
  24308. source: "./media/characters/erza-bear/tail.svg"
  24309. }
  24310. },
  24311. tongue: {
  24312. height: math.unit(8, "feet"),
  24313. name: "Tongue",
  24314. image: {
  24315. source: "./media/characters/erza-bear/tongue.svg"
  24316. }
  24317. },
  24318. dick: {
  24319. height: math.unit(10.5, "feet"),
  24320. name: "Dick",
  24321. image: {
  24322. source: "./media/characters/erza-bear/dick.svg"
  24323. }
  24324. },
  24325. dickVertical: {
  24326. height: math.unit(16.9, "feet"),
  24327. name: "Dick (Vertical)",
  24328. image: {
  24329. source: "./media/characters/erza-bear/dick-vertical.svg"
  24330. }
  24331. },
  24332. },
  24333. [
  24334. {
  24335. name: "Macro",
  24336. height: math.unit(100, "feet"),
  24337. default: true
  24338. },
  24339. ]
  24340. ))
  24341. characterMakers.push(() => makeCharacter(
  24342. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24343. {
  24344. front: {
  24345. height: math.unit(172, "cm"),
  24346. weight: math.unit(73, "kg"),
  24347. name: "Front",
  24348. image: {
  24349. source: "./media/characters/violet-flor/front.svg",
  24350. extra: 1530 / 1442,
  24351. bottom: 61.9 / 1588.8
  24352. }
  24353. },
  24354. back: {
  24355. height: math.unit(180, "cm"),
  24356. weight: math.unit(73, "kg"),
  24357. name: "Back",
  24358. image: {
  24359. source: "./media/characters/violet-flor/back.svg",
  24360. extra: 1692 / 1630,
  24361. bottom: 20 / 1712
  24362. }
  24363. },
  24364. },
  24365. [
  24366. {
  24367. name: "Normal",
  24368. height: math.unit(172, "cm"),
  24369. default: true
  24370. },
  24371. ]
  24372. ))
  24373. characterMakers.push(() => makeCharacter(
  24374. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24375. {
  24376. front: {
  24377. height: math.unit(6, "feet"),
  24378. weight: math.unit(220, "lb"),
  24379. name: "Front",
  24380. image: {
  24381. source: "./media/characters/lynn-rhea/front.svg",
  24382. extra: 310 / 273
  24383. }
  24384. },
  24385. back: {
  24386. height: math.unit(6, "feet"),
  24387. weight: math.unit(220, "lb"),
  24388. name: "Back",
  24389. image: {
  24390. source: "./media/characters/lynn-rhea/back.svg",
  24391. extra: 310 / 273
  24392. }
  24393. },
  24394. dicks: {
  24395. height: math.unit(0.9, "feet"),
  24396. name: "Dicks",
  24397. image: {
  24398. source: "./media/characters/lynn-rhea/dicks.svg"
  24399. }
  24400. },
  24401. slit: {
  24402. height: math.unit(0.4, "feet"),
  24403. name: "Slit",
  24404. image: {
  24405. source: "./media/characters/lynn-rhea/slit.svg"
  24406. }
  24407. },
  24408. },
  24409. [
  24410. {
  24411. name: "Micro",
  24412. height: math.unit(1, "inch")
  24413. },
  24414. {
  24415. name: "Macro",
  24416. height: math.unit(60, "feet"),
  24417. default: true
  24418. },
  24419. {
  24420. name: "Megamacro",
  24421. height: math.unit(2, "miles")
  24422. },
  24423. {
  24424. name: "Gigamacro",
  24425. height: math.unit(3, "earths")
  24426. },
  24427. {
  24428. name: "Galactic",
  24429. height: math.unit(0.8, "galaxies")
  24430. },
  24431. ]
  24432. ))
  24433. characterMakers.push(() => makeCharacter(
  24434. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24435. {
  24436. front: {
  24437. height: math.unit(1600, "feet"),
  24438. weight: math.unit(85758785169, "kg"),
  24439. name: "Front",
  24440. image: {
  24441. source: "./media/characters/valathos/front.svg",
  24442. extra: 1451 / 1339
  24443. }
  24444. },
  24445. },
  24446. [
  24447. {
  24448. name: "Macro",
  24449. height: math.unit(1600, "feet"),
  24450. default: true
  24451. },
  24452. ]
  24453. ))
  24454. characterMakers.push(() => makeCharacter(
  24455. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24456. {
  24457. front: {
  24458. height: math.unit(7 + 5 / 12, "feet"),
  24459. weight: math.unit(300, "lb"),
  24460. name: "Front",
  24461. image: {
  24462. source: "./media/characters/azula/front.svg",
  24463. extra: 3208 / 2880,
  24464. bottom: 80.2 / 3277
  24465. }
  24466. },
  24467. back: {
  24468. height: math.unit(7 + 5 / 12, "feet"),
  24469. weight: math.unit(300, "lb"),
  24470. name: "Back",
  24471. image: {
  24472. source: "./media/characters/azula/back.svg",
  24473. extra: 3169 / 2822,
  24474. bottom: 150.6 / 3321
  24475. }
  24476. },
  24477. },
  24478. [
  24479. {
  24480. name: "Normal",
  24481. height: math.unit(7 + 5 / 12, "feet"),
  24482. default: true
  24483. },
  24484. {
  24485. name: "Big",
  24486. height: math.unit(20, "feet")
  24487. },
  24488. ]
  24489. ))
  24490. characterMakers.push(() => makeCharacter(
  24491. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24492. {
  24493. front: {
  24494. height: math.unit(5 + 1 / 12, "feet"),
  24495. weight: math.unit(110, "lb"),
  24496. name: "Front",
  24497. image: {
  24498. source: "./media/characters/rupert/front.svg",
  24499. extra: 1549 / 1495,
  24500. bottom: 54.2 / 1604.4
  24501. }
  24502. },
  24503. },
  24504. [
  24505. {
  24506. name: "Normal",
  24507. height: math.unit(5 + 1 / 12, "feet"),
  24508. default: true
  24509. },
  24510. ]
  24511. ))
  24512. characterMakers.push(() => makeCharacter(
  24513. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24514. {
  24515. front: {
  24516. height: math.unit(8 + 4 / 12, "feet"),
  24517. weight: math.unit(350, "lb"),
  24518. name: "Front",
  24519. image: {
  24520. source: "./media/characters/sheera-castellar/front.svg",
  24521. extra: 1957 / 1894,
  24522. bottom: 26.97 / 1975.017
  24523. }
  24524. },
  24525. side: {
  24526. height: math.unit(8 + 4 / 12, "feet"),
  24527. weight: math.unit(350, "lb"),
  24528. name: "Side",
  24529. image: {
  24530. source: "./media/characters/sheera-castellar/side.svg",
  24531. extra: 1957 / 1894
  24532. }
  24533. },
  24534. back: {
  24535. height: math.unit(8 + 4 / 12, "feet"),
  24536. weight: math.unit(350, "lb"),
  24537. name: "Back",
  24538. image: {
  24539. source: "./media/characters/sheera-castellar/back.svg",
  24540. extra: 1957 / 1894
  24541. }
  24542. },
  24543. angled: {
  24544. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24545. weight: math.unit(350, "lb"),
  24546. name: "Angled",
  24547. image: {
  24548. source: "./media/characters/sheera-castellar/angled.svg",
  24549. extra: 1807 / 1707,
  24550. bottom: 68 / 1875
  24551. }
  24552. },
  24553. genitals: {
  24554. height: math.unit(2.2, "feet"),
  24555. name: "Genitals",
  24556. image: {
  24557. source: "./media/characters/sheera-castellar/genitals.svg"
  24558. }
  24559. },
  24560. taur: {
  24561. height: math.unit(10 + 6/12, "feet"),
  24562. name: "Taur",
  24563. image: {
  24564. source: "./media/characters/sheera-castellar/taur.svg",
  24565. extra: 2017/1909,
  24566. bottom: 185/2202
  24567. }
  24568. },
  24569. },
  24570. [
  24571. {
  24572. name: "Normal",
  24573. height: math.unit(8 + 4 / 12, "feet")
  24574. },
  24575. {
  24576. name: "Macro",
  24577. height: math.unit(150, "feet"),
  24578. default: true
  24579. },
  24580. {
  24581. name: "Macro+",
  24582. height: math.unit(800, "feet")
  24583. },
  24584. ]
  24585. ))
  24586. characterMakers.push(() => makeCharacter(
  24587. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24588. {
  24589. front: {
  24590. height: math.unit(6, "feet"),
  24591. weight: math.unit(150, "lb"),
  24592. name: "Front",
  24593. image: {
  24594. source: "./media/characters/jaipur/front.svg",
  24595. extra: 3860 / 3731,
  24596. bottom: 287 / 4140
  24597. }
  24598. },
  24599. back: {
  24600. height: math.unit(6, "feet"),
  24601. weight: math.unit(150, "lb"),
  24602. name: "Back",
  24603. image: {
  24604. source: "./media/characters/jaipur/back.svg",
  24605. extra: 1637/1561,
  24606. bottom: 154/1791
  24607. }
  24608. },
  24609. },
  24610. [
  24611. {
  24612. name: "Normal",
  24613. height: math.unit(1.85, "meters"),
  24614. default: true
  24615. },
  24616. {
  24617. name: "Macro",
  24618. height: math.unit(150, "meters")
  24619. },
  24620. {
  24621. name: "Macro+",
  24622. height: math.unit(0.5, "miles")
  24623. },
  24624. {
  24625. name: "Macro++",
  24626. height: math.unit(2.5, "miles")
  24627. },
  24628. {
  24629. name: "Macro+++",
  24630. height: math.unit(12, "miles")
  24631. },
  24632. {
  24633. name: "Macro++++",
  24634. height: math.unit(120, "miles")
  24635. },
  24636. {
  24637. name: "Macro+++++",
  24638. height: math.unit(1200, "miles")
  24639. },
  24640. ]
  24641. ))
  24642. characterMakers.push(() => makeCharacter(
  24643. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24644. {
  24645. front: {
  24646. height: math.unit(6, "feet"),
  24647. weight: math.unit(150, "lb"),
  24648. name: "Front",
  24649. image: {
  24650. source: "./media/characters/sheila-wolf/front.svg",
  24651. extra: 1931 / 1808,
  24652. bottom: 29.5 / 1960
  24653. }
  24654. },
  24655. dick: {
  24656. height: math.unit(1.464, "feet"),
  24657. name: "Dick",
  24658. image: {
  24659. source: "./media/characters/sheila-wolf/dick.svg"
  24660. }
  24661. },
  24662. muzzle: {
  24663. height: math.unit(0.513, "feet"),
  24664. name: "Muzzle",
  24665. image: {
  24666. source: "./media/characters/sheila-wolf/muzzle.svg"
  24667. }
  24668. },
  24669. },
  24670. [
  24671. {
  24672. name: "Macro",
  24673. height: math.unit(70, "feet"),
  24674. default: true
  24675. },
  24676. ]
  24677. ))
  24678. characterMakers.push(() => makeCharacter(
  24679. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24680. {
  24681. front: {
  24682. height: math.unit(32, "meters"),
  24683. weight: math.unit(300000, "kg"),
  24684. name: "Front",
  24685. image: {
  24686. source: "./media/characters/almor/front.svg",
  24687. extra: 1408 / 1322,
  24688. bottom: 94.6 / 1506.5
  24689. }
  24690. },
  24691. },
  24692. [
  24693. {
  24694. name: "Macro",
  24695. height: math.unit(32, "meters"),
  24696. default: true
  24697. },
  24698. ]
  24699. ))
  24700. characterMakers.push(() => makeCharacter(
  24701. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24702. {
  24703. front: {
  24704. height: math.unit(7, "feet"),
  24705. weight: math.unit(200, "lb"),
  24706. name: "Front",
  24707. image: {
  24708. source: "./media/characters/silver/front.svg",
  24709. extra: 472.1 / 450.5,
  24710. bottom: 26.5 / 499.424
  24711. }
  24712. },
  24713. },
  24714. [
  24715. {
  24716. name: "Normal",
  24717. height: math.unit(7, "feet"),
  24718. default: true
  24719. },
  24720. {
  24721. name: "Macro",
  24722. height: math.unit(800, "feet")
  24723. },
  24724. {
  24725. name: "Megamacro",
  24726. height: math.unit(250, "miles")
  24727. },
  24728. ]
  24729. ))
  24730. characterMakers.push(() => makeCharacter(
  24731. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24732. {
  24733. front: {
  24734. height: math.unit(6, "feet"),
  24735. weight: math.unit(150, "lb"),
  24736. name: "Front",
  24737. image: {
  24738. source: "./media/characters/pliskin/front.svg",
  24739. extra: 1469 / 1359,
  24740. bottom: 70 / 1540
  24741. }
  24742. },
  24743. },
  24744. [
  24745. {
  24746. name: "Micro",
  24747. height: math.unit(3, "inches")
  24748. },
  24749. {
  24750. name: "Normal",
  24751. height: math.unit(5 + 11 / 12, "feet"),
  24752. default: true
  24753. },
  24754. {
  24755. name: "Macro",
  24756. height: math.unit(120, "feet")
  24757. },
  24758. ]
  24759. ))
  24760. characterMakers.push(() => makeCharacter(
  24761. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24762. {
  24763. front: {
  24764. height: math.unit(6, "feet"),
  24765. weight: math.unit(150, "lb"),
  24766. name: "Front",
  24767. image: {
  24768. source: "./media/characters/sammy/front.svg",
  24769. extra: 1193 / 1089,
  24770. bottom: 30.5 / 1226
  24771. }
  24772. },
  24773. },
  24774. [
  24775. {
  24776. name: "Macro",
  24777. height: math.unit(1700, "feet"),
  24778. default: true
  24779. },
  24780. {
  24781. name: "Examacro",
  24782. height: math.unit(2.5e9, "lightyears")
  24783. },
  24784. ]
  24785. ))
  24786. characterMakers.push(() => makeCharacter(
  24787. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24788. {
  24789. front: {
  24790. height: math.unit(21, "meters"),
  24791. weight: math.unit(12, "tonnes"),
  24792. name: "Front",
  24793. image: {
  24794. source: "./media/characters/kuru/front.svg",
  24795. extra: 4301 / 3785,
  24796. bottom: 371.3 / 4691
  24797. }
  24798. },
  24799. },
  24800. [
  24801. {
  24802. name: "Macro",
  24803. height: math.unit(21, "meters"),
  24804. default: true
  24805. },
  24806. ]
  24807. ))
  24808. characterMakers.push(() => makeCharacter(
  24809. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24810. {
  24811. front: {
  24812. height: math.unit(23, "meters"),
  24813. weight: math.unit(12.2, "tonnes"),
  24814. name: "Front",
  24815. image: {
  24816. source: "./media/characters/rakka/front.svg",
  24817. extra: 4670 / 4169,
  24818. bottom: 301 / 4968.7
  24819. }
  24820. },
  24821. },
  24822. [
  24823. {
  24824. name: "Macro",
  24825. height: math.unit(23, "meters"),
  24826. default: true
  24827. },
  24828. ]
  24829. ))
  24830. characterMakers.push(() => makeCharacter(
  24831. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24832. {
  24833. front: {
  24834. height: math.unit(6, "feet"),
  24835. weight: math.unit(150, "lb"),
  24836. name: "Front",
  24837. image: {
  24838. source: "./media/characters/rhys-feline/front.svg",
  24839. extra: 2488 / 2308,
  24840. bottom: 35.67 / 2519.19
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Really Small",
  24847. height: math.unit(1, "nm")
  24848. },
  24849. {
  24850. name: "Micro",
  24851. height: math.unit(4, "inches")
  24852. },
  24853. {
  24854. name: "Normal",
  24855. height: math.unit(4 + 10 / 12, "feet"),
  24856. default: true
  24857. },
  24858. {
  24859. name: "Macro",
  24860. height: math.unit(100, "feet")
  24861. },
  24862. {
  24863. name: "Megamacto",
  24864. height: math.unit(50, "miles")
  24865. },
  24866. ]
  24867. ))
  24868. characterMakers.push(() => makeCharacter(
  24869. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24870. {
  24871. side: {
  24872. height: math.unit(30, "feet"),
  24873. weight: math.unit(35000, "kg"),
  24874. name: "Side",
  24875. image: {
  24876. source: "./media/characters/alydar/side.svg",
  24877. extra: 234 / 222,
  24878. bottom: 6.5 / 241
  24879. }
  24880. },
  24881. front: {
  24882. height: math.unit(30, "feet"),
  24883. weight: math.unit(35000, "kg"),
  24884. name: "Front",
  24885. image: {
  24886. source: "./media/characters/alydar/front.svg",
  24887. extra: 223.37 / 210.2,
  24888. bottom: 22.3 / 246.76
  24889. }
  24890. },
  24891. top: {
  24892. height: math.unit(64.54, "feet"),
  24893. weight: math.unit(35000, "kg"),
  24894. name: "Top",
  24895. image: {
  24896. source: "./media/characters/alydar/top.svg"
  24897. }
  24898. },
  24899. anthro: {
  24900. height: math.unit(30, "feet"),
  24901. weight: math.unit(9000, "kg"),
  24902. name: "Anthro",
  24903. image: {
  24904. source: "./media/characters/alydar/anthro.svg",
  24905. extra: 432 / 421,
  24906. bottom: 7.18 / 440
  24907. }
  24908. },
  24909. maw: {
  24910. height: math.unit(11.693, "feet"),
  24911. name: "Maw",
  24912. image: {
  24913. source: "./media/characters/alydar/maw.svg"
  24914. }
  24915. },
  24916. head: {
  24917. height: math.unit(11.693, "feet"),
  24918. name: "Head",
  24919. image: {
  24920. source: "./media/characters/alydar/head.svg"
  24921. }
  24922. },
  24923. headAlt: {
  24924. height: math.unit(12.861, "feet"),
  24925. name: "Head (Alt)",
  24926. image: {
  24927. source: "./media/characters/alydar/head-alt.svg"
  24928. }
  24929. },
  24930. wing: {
  24931. height: math.unit(20.712, "feet"),
  24932. name: "Wing",
  24933. image: {
  24934. source: "./media/characters/alydar/wing.svg"
  24935. }
  24936. },
  24937. wingFeather: {
  24938. height: math.unit(9.662, "feet"),
  24939. name: "Wing Feather",
  24940. image: {
  24941. source: "./media/characters/alydar/wing-feather.svg"
  24942. }
  24943. },
  24944. countourFeather: {
  24945. height: math.unit(4.154, "feet"),
  24946. name: "Contour Feather",
  24947. image: {
  24948. source: "./media/characters/alydar/contour-feather.svg"
  24949. }
  24950. },
  24951. },
  24952. [
  24953. {
  24954. name: "Diplomatic",
  24955. height: math.unit(13, "feet"),
  24956. default: true
  24957. },
  24958. {
  24959. name: "Small",
  24960. height: math.unit(30, "feet")
  24961. },
  24962. {
  24963. name: "Normal",
  24964. height: math.unit(95, "feet"),
  24965. default: true
  24966. },
  24967. {
  24968. name: "Large",
  24969. height: math.unit(285, "feet")
  24970. },
  24971. {
  24972. name: "Incomprehensible",
  24973. height: math.unit(450, "megameters")
  24974. },
  24975. ]
  24976. ))
  24977. characterMakers.push(() => makeCharacter(
  24978. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24979. {
  24980. side: {
  24981. height: math.unit(11, "feet"),
  24982. weight: math.unit(1750, "kg"),
  24983. name: "Side",
  24984. image: {
  24985. source: "./media/characters/selicia/side.svg",
  24986. extra: 440 / 396,
  24987. bottom: 24.8 / 465.979
  24988. }
  24989. },
  24990. maw: {
  24991. height: math.unit(4.665, "feet"),
  24992. name: "Maw",
  24993. image: {
  24994. source: "./media/characters/selicia/maw.svg"
  24995. }
  24996. },
  24997. },
  24998. [
  24999. {
  25000. name: "Normal",
  25001. height: math.unit(11, "feet"),
  25002. default: true
  25003. },
  25004. ]
  25005. ))
  25006. characterMakers.push(() => makeCharacter(
  25007. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25008. {
  25009. side: {
  25010. height: math.unit(2 + 6 / 12, "feet"),
  25011. weight: math.unit(30, "lb"),
  25012. name: "Side",
  25013. image: {
  25014. source: "./media/characters/layla/side.svg",
  25015. extra: 244 / 188,
  25016. bottom: 18.2 / 262.1
  25017. }
  25018. },
  25019. back: {
  25020. height: math.unit(2 + 6 / 12, "feet"),
  25021. weight: math.unit(30, "lb"),
  25022. name: "Back",
  25023. image: {
  25024. source: "./media/characters/layla/back.svg",
  25025. extra: 308 / 241.5,
  25026. bottom: 8.9 / 316.8
  25027. }
  25028. },
  25029. cumming: {
  25030. height: math.unit(2 + 6 / 12, "feet"),
  25031. weight: math.unit(30, "lb"),
  25032. name: "Cumming",
  25033. image: {
  25034. source: "./media/characters/layla/cumming.svg",
  25035. extra: 342 / 279,
  25036. bottom: 595 / 938
  25037. }
  25038. },
  25039. dickFlaccid: {
  25040. height: math.unit(2.595, "feet"),
  25041. name: "Flaccid Genitals",
  25042. image: {
  25043. source: "./media/characters/layla/dick-flaccid.svg"
  25044. }
  25045. },
  25046. dickErect: {
  25047. height: math.unit(2.359, "feet"),
  25048. name: "Erect Genitals",
  25049. image: {
  25050. source: "./media/characters/layla/dick-erect.svg"
  25051. }
  25052. },
  25053. dragon: {
  25054. height: math.unit(40, "feet"),
  25055. name: "Dragon",
  25056. image: {
  25057. source: "./media/characters/layla/dragon.svg",
  25058. extra: 610/535,
  25059. bottom: 367/977
  25060. }
  25061. },
  25062. taur: {
  25063. height: math.unit(30, "feet"),
  25064. name: "Taur",
  25065. image: {
  25066. source: "./media/characters/layla/taur.svg",
  25067. extra: 1268/1199,
  25068. bottom: 112/1380
  25069. }
  25070. },
  25071. },
  25072. [
  25073. {
  25074. name: "Micro",
  25075. height: math.unit(1, "inch")
  25076. },
  25077. {
  25078. name: "Small",
  25079. height: math.unit(1, "foot")
  25080. },
  25081. {
  25082. name: "Normal",
  25083. height: math.unit(2 + 6 / 12, "feet"),
  25084. default: true
  25085. },
  25086. {
  25087. name: "Macro",
  25088. height: math.unit(200, "feet")
  25089. },
  25090. {
  25091. name: "Megamacro",
  25092. height: math.unit(1000, "miles")
  25093. },
  25094. {
  25095. name: "Planetary",
  25096. height: math.unit(8000, "miles")
  25097. },
  25098. {
  25099. name: "True Layla",
  25100. height: math.unit(200000 * 7, "multiverses")
  25101. },
  25102. ]
  25103. ))
  25104. characterMakers.push(() => makeCharacter(
  25105. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25106. {
  25107. back: {
  25108. height: math.unit(10.5, "feet"),
  25109. weight: math.unit(800, "lb"),
  25110. name: "Back",
  25111. image: {
  25112. source: "./media/characters/knox/back.svg",
  25113. extra: 1486 / 1089,
  25114. bottom: 107 / 1601.4
  25115. }
  25116. },
  25117. side: {
  25118. height: math.unit(10.5, "feet"),
  25119. weight: math.unit(800, "lb"),
  25120. name: "Side",
  25121. image: {
  25122. source: "./media/characters/knox/side.svg",
  25123. extra: 244 / 218,
  25124. bottom: 14 / 260
  25125. }
  25126. },
  25127. },
  25128. [
  25129. {
  25130. name: "Compact",
  25131. height: math.unit(10.5, "feet"),
  25132. default: true
  25133. },
  25134. {
  25135. name: "Dynamax",
  25136. height: math.unit(210, "feet")
  25137. },
  25138. {
  25139. name: "Full Macro",
  25140. height: math.unit(850, "feet")
  25141. },
  25142. ]
  25143. ))
  25144. characterMakers.push(() => makeCharacter(
  25145. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25146. {
  25147. front: {
  25148. height: math.unit(28, "feet"),
  25149. weight: math.unit(10500, "lb"),
  25150. name: "Front",
  25151. image: {
  25152. source: "./media/characters/kayda/front.svg",
  25153. extra: 1536 / 1428,
  25154. bottom: 68.7 / 1603
  25155. }
  25156. },
  25157. back: {
  25158. height: math.unit(28, "feet"),
  25159. weight: math.unit(10500, "lb"),
  25160. name: "Back",
  25161. image: {
  25162. source: "./media/characters/kayda/back.svg",
  25163. extra: 1557 / 1464,
  25164. bottom: 39.5 / 1597.49
  25165. }
  25166. },
  25167. dick: {
  25168. height: math.unit(3.858, "feet"),
  25169. name: "Dick",
  25170. image: {
  25171. source: "./media/characters/kayda/dick.svg"
  25172. }
  25173. },
  25174. },
  25175. [
  25176. {
  25177. name: "Macro",
  25178. height: math.unit(28, "feet"),
  25179. default: true
  25180. },
  25181. ]
  25182. ))
  25183. characterMakers.push(() => makeCharacter(
  25184. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25185. {
  25186. front: {
  25187. height: math.unit(10 + 11 / 12, "feet"),
  25188. weight: math.unit(1400, "lb"),
  25189. name: "Front",
  25190. image: {
  25191. source: "./media/characters/brian/front.svg",
  25192. extra: 737 / 692,
  25193. bottom: 55.4 / 785
  25194. }
  25195. },
  25196. },
  25197. [
  25198. {
  25199. name: "Normal",
  25200. height: math.unit(10 + 11 / 12, "feet"),
  25201. default: true
  25202. },
  25203. ]
  25204. ))
  25205. characterMakers.push(() => makeCharacter(
  25206. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25207. {
  25208. front: {
  25209. height: math.unit(5 + 8 / 12, "feet"),
  25210. weight: math.unit(140, "lb"),
  25211. name: "Front",
  25212. image: {
  25213. source: "./media/characters/khemri/front.svg",
  25214. extra: 4780 / 4059,
  25215. bottom: 80.1 / 4859.25
  25216. }
  25217. },
  25218. },
  25219. [
  25220. {
  25221. name: "Micro",
  25222. height: math.unit(6, "inches")
  25223. },
  25224. {
  25225. name: "Normal",
  25226. height: math.unit(5 + 8 / 12, "feet"),
  25227. default: true
  25228. },
  25229. ]
  25230. ))
  25231. characterMakers.push(() => makeCharacter(
  25232. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25233. {
  25234. front: {
  25235. height: math.unit(13, "feet"),
  25236. weight: math.unit(1700, "lb"),
  25237. name: "Front",
  25238. image: {
  25239. source: "./media/characters/felix-braveheart/front.svg",
  25240. extra: 1222 / 1157,
  25241. bottom: 53.2 / 1280
  25242. }
  25243. },
  25244. back: {
  25245. height: math.unit(13, "feet"),
  25246. weight: math.unit(1700, "lb"),
  25247. name: "Back",
  25248. image: {
  25249. source: "./media/characters/felix-braveheart/back.svg",
  25250. extra: 1277 / 1203,
  25251. bottom: 50.2 / 1327
  25252. }
  25253. },
  25254. feral: {
  25255. height: math.unit(6, "feet"),
  25256. weight: math.unit(400, "lb"),
  25257. name: "Feral",
  25258. image: {
  25259. source: "./media/characters/felix-braveheart/feral.svg",
  25260. extra: 682 / 625,
  25261. bottom: 6.9 / 688
  25262. }
  25263. },
  25264. },
  25265. [
  25266. {
  25267. name: "Normal",
  25268. height: math.unit(13, "feet"),
  25269. default: true
  25270. },
  25271. ]
  25272. ))
  25273. characterMakers.push(() => makeCharacter(
  25274. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25275. {
  25276. side: {
  25277. height: math.unit(5 + 11 / 12, "feet"),
  25278. weight: math.unit(1400, "lb"),
  25279. name: "Side",
  25280. image: {
  25281. source: "./media/characters/shadow-blade/side.svg",
  25282. extra: 1726 / 1267,
  25283. bottom: 58.4 / 1785
  25284. }
  25285. },
  25286. },
  25287. [
  25288. {
  25289. name: "Normal",
  25290. height: math.unit(5 + 11 / 12, "feet"),
  25291. default: true
  25292. },
  25293. ]
  25294. ))
  25295. characterMakers.push(() => makeCharacter(
  25296. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25297. {
  25298. front: {
  25299. height: math.unit(1 + 6 / 12, "feet"),
  25300. weight: math.unit(25, "lb"),
  25301. name: "Front",
  25302. image: {
  25303. source: "./media/characters/karla-halldor/front.svg",
  25304. extra: 1459 / 1383,
  25305. bottom: 12 / 1472
  25306. }
  25307. },
  25308. },
  25309. [
  25310. {
  25311. name: "Normal",
  25312. height: math.unit(1 + 6 / 12, "feet"),
  25313. default: true
  25314. },
  25315. ]
  25316. ))
  25317. characterMakers.push(() => makeCharacter(
  25318. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25319. {
  25320. front: {
  25321. height: math.unit(6 + 2 / 12, "feet"),
  25322. weight: math.unit(160, "lb"),
  25323. name: "Front",
  25324. image: {
  25325. source: "./media/characters/ariam/front.svg",
  25326. extra: 1073/976,
  25327. bottom: 52/1125
  25328. }
  25329. },
  25330. back: {
  25331. height: math.unit(6 + 2/12, "feet"),
  25332. weight: math.unit(160, "lb"),
  25333. name: "Back",
  25334. image: {
  25335. source: "./media/characters/ariam/back.svg",
  25336. extra: 1103/1023,
  25337. bottom: 9/1112
  25338. }
  25339. },
  25340. dressed: {
  25341. height: math.unit(6 + 2/12, "feet"),
  25342. weight: math.unit(160, "lb"),
  25343. name: "Dressed",
  25344. image: {
  25345. source: "./media/characters/ariam/dressed.svg",
  25346. extra: 1099/1009,
  25347. bottom: 25/1124
  25348. }
  25349. },
  25350. squatting: {
  25351. height: math.unit(4.1, "feet"),
  25352. weight: math.unit(160, "lb"),
  25353. name: "Squatting",
  25354. image: {
  25355. source: "./media/characters/ariam/squatting.svg",
  25356. extra: 2617 / 2112,
  25357. bottom: 61.2 / 2681,
  25358. }
  25359. },
  25360. },
  25361. [
  25362. {
  25363. name: "Normal",
  25364. height: math.unit(6 + 2 / 12, "feet"),
  25365. default: true
  25366. },
  25367. {
  25368. name: "Normal+",
  25369. height: math.unit(4, "meters")
  25370. },
  25371. {
  25372. name: "Macro",
  25373. height: math.unit(50, "meters")
  25374. },
  25375. {
  25376. name: "Macro+",
  25377. height: math.unit(100, "meters")
  25378. },
  25379. {
  25380. name: "Megamacro",
  25381. height: math.unit(20, "km")
  25382. },
  25383. {
  25384. name: "Caretaker",
  25385. height: math.unit(444, "megameters")
  25386. },
  25387. ]
  25388. ))
  25389. characterMakers.push(() => makeCharacter(
  25390. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25391. {
  25392. front: {
  25393. height: math.unit(1.67, "meters"),
  25394. weight: math.unit(140, "lb"),
  25395. name: "Front",
  25396. image: {
  25397. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25398. extra: 438 / 410,
  25399. bottom: 0.75 / 439
  25400. }
  25401. },
  25402. },
  25403. [
  25404. {
  25405. name: "Shrunken",
  25406. height: math.unit(7.6, "cm")
  25407. },
  25408. {
  25409. name: "Human Scale",
  25410. height: math.unit(1.67, "meters")
  25411. },
  25412. {
  25413. name: "Wolxi Scale",
  25414. height: math.unit(36.7, "meters"),
  25415. default: true
  25416. },
  25417. ]
  25418. ))
  25419. characterMakers.push(() => makeCharacter(
  25420. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25421. {
  25422. front: {
  25423. height: math.unit(1.73, "meters"),
  25424. weight: math.unit(240, "lb"),
  25425. name: "Front",
  25426. image: {
  25427. source: "./media/characters/izue-two-mothers/front.svg",
  25428. extra: 469 / 437,
  25429. bottom: 1.24 / 470.6
  25430. }
  25431. },
  25432. },
  25433. [
  25434. {
  25435. name: "Shrunken",
  25436. height: math.unit(7.86, "cm")
  25437. },
  25438. {
  25439. name: "Human Scale",
  25440. height: math.unit(1.73, "meters")
  25441. },
  25442. {
  25443. name: "Wolxi Scale",
  25444. height: math.unit(38, "meters"),
  25445. default: true
  25446. },
  25447. ]
  25448. ))
  25449. characterMakers.push(() => makeCharacter(
  25450. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25451. {
  25452. front: {
  25453. height: math.unit(1.55, "meters"),
  25454. weight: math.unit(120, "lb"),
  25455. name: "Front",
  25456. image: {
  25457. source: "./media/characters/teeku-love-shack/front.svg",
  25458. extra: 387 / 362,
  25459. bottom: 1.51 / 388
  25460. }
  25461. },
  25462. },
  25463. [
  25464. {
  25465. name: "Shrunken",
  25466. height: math.unit(7, "cm")
  25467. },
  25468. {
  25469. name: "Human Scale",
  25470. height: math.unit(1.55, "meters")
  25471. },
  25472. {
  25473. name: "Wolxi Scale",
  25474. height: math.unit(34.1, "meters"),
  25475. default: true
  25476. },
  25477. ]
  25478. ))
  25479. characterMakers.push(() => makeCharacter(
  25480. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25481. {
  25482. front: {
  25483. height: math.unit(1.83, "meters"),
  25484. weight: math.unit(135, "lb"),
  25485. name: "Front",
  25486. image: {
  25487. source: "./media/characters/dejma-the-red/front.svg",
  25488. extra: 480 / 458,
  25489. bottom: 1.8 / 482
  25490. }
  25491. },
  25492. },
  25493. [
  25494. {
  25495. name: "Shrunken",
  25496. height: math.unit(8.3, "cm")
  25497. },
  25498. {
  25499. name: "Human Scale",
  25500. height: math.unit(1.83, "meters")
  25501. },
  25502. {
  25503. name: "Wolxi Scale",
  25504. height: math.unit(40, "meters"),
  25505. default: true
  25506. },
  25507. ]
  25508. ))
  25509. characterMakers.push(() => makeCharacter(
  25510. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25511. {
  25512. front: {
  25513. height: math.unit(1.78, "meters"),
  25514. weight: math.unit(65, "kg"),
  25515. name: "Front",
  25516. image: {
  25517. source: "./media/characters/aki/front.svg",
  25518. extra: 452 / 415
  25519. }
  25520. },
  25521. frontNsfw: {
  25522. height: math.unit(1.78, "meters"),
  25523. weight: math.unit(65, "kg"),
  25524. name: "Front (NSFW)",
  25525. image: {
  25526. source: "./media/characters/aki/front-nsfw.svg",
  25527. extra: 452 / 415
  25528. }
  25529. },
  25530. back: {
  25531. height: math.unit(1.78, "meters"),
  25532. weight: math.unit(65, "kg"),
  25533. name: "Back",
  25534. image: {
  25535. source: "./media/characters/aki/back.svg",
  25536. extra: 452 / 415
  25537. }
  25538. },
  25539. rump: {
  25540. height: math.unit(2.05, "feet"),
  25541. name: "Rump",
  25542. image: {
  25543. source: "./media/characters/aki/rump.svg"
  25544. }
  25545. },
  25546. dick: {
  25547. height: math.unit(0.95, "feet"),
  25548. name: "Dick",
  25549. image: {
  25550. source: "./media/characters/aki/dick.svg"
  25551. }
  25552. },
  25553. },
  25554. [
  25555. {
  25556. name: "Micro",
  25557. height: math.unit(15, "cm")
  25558. },
  25559. {
  25560. name: "Normal",
  25561. height: math.unit(178, "cm"),
  25562. default: true
  25563. },
  25564. {
  25565. name: "Macro",
  25566. height: math.unit(214, "m")
  25567. },
  25568. {
  25569. name: "Macro+",
  25570. height: math.unit(534, "m")
  25571. },
  25572. ]
  25573. ))
  25574. characterMakers.push(() => makeCharacter(
  25575. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25576. {
  25577. front: {
  25578. height: math.unit(5 + 5 / 12, "feet"),
  25579. weight: math.unit(120, "lb"),
  25580. name: "Front",
  25581. image: {
  25582. source: "./media/characters/ari/front.svg",
  25583. extra: 1550/1471,
  25584. bottom: 39/1589
  25585. }
  25586. },
  25587. },
  25588. [
  25589. {
  25590. name: "Normal",
  25591. height: math.unit(5 + 5 / 12, "feet")
  25592. },
  25593. {
  25594. name: "Macro",
  25595. height: math.unit(100, "feet"),
  25596. default: true
  25597. },
  25598. {
  25599. name: "Megamacro",
  25600. height: math.unit(100, "miles")
  25601. },
  25602. {
  25603. name: "Gigamacro",
  25604. height: math.unit(80000, "miles")
  25605. },
  25606. ]
  25607. ))
  25608. characterMakers.push(() => makeCharacter(
  25609. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25610. {
  25611. side: {
  25612. height: math.unit(9, "feet"),
  25613. weight: math.unit(400, "kg"),
  25614. name: "Side",
  25615. image: {
  25616. source: "./media/characters/bolt/side.svg",
  25617. extra: 1126 / 896,
  25618. bottom: 60 / 1187.3,
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Micro",
  25625. height: math.unit(5, "inches")
  25626. },
  25627. {
  25628. name: "Normal",
  25629. height: math.unit(9, "feet"),
  25630. default: true
  25631. },
  25632. {
  25633. name: "Macro",
  25634. height: math.unit(700, "feet")
  25635. },
  25636. {
  25637. name: "Max Size",
  25638. height: math.unit(1.52e22, "yottameters")
  25639. },
  25640. ]
  25641. ))
  25642. characterMakers.push(() => makeCharacter(
  25643. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25644. {
  25645. front: {
  25646. height: math.unit(4.3, "meters"),
  25647. weight: math.unit(3, "tons"),
  25648. name: "Front",
  25649. image: {
  25650. source: "./media/characters/draekon-sylviar/front.svg",
  25651. extra: 2072/1512,
  25652. bottom: 74/2146
  25653. }
  25654. },
  25655. back: {
  25656. height: math.unit(4.3, "meters"),
  25657. weight: math.unit(3, "tons"),
  25658. name: "Back",
  25659. image: {
  25660. source: "./media/characters/draekon-sylviar/back.svg",
  25661. extra: 1639/1483,
  25662. bottom: 41/1680
  25663. }
  25664. },
  25665. feral: {
  25666. height: math.unit(1.15, "meters"),
  25667. weight: math.unit(3, "tons"),
  25668. name: "Feral",
  25669. image: {
  25670. source: "./media/characters/draekon-sylviar/feral.svg",
  25671. extra: 1033/395,
  25672. bottom: 130/1163
  25673. }
  25674. },
  25675. maw: {
  25676. height: math.unit(1.3, "meters"),
  25677. name: "Maw",
  25678. image: {
  25679. source: "./media/characters/draekon-sylviar/maw.svg"
  25680. }
  25681. },
  25682. mawSeparated: {
  25683. height: math.unit(1.53, "meters"),
  25684. name: "Separated Maw",
  25685. image: {
  25686. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25687. }
  25688. },
  25689. tail: {
  25690. height: math.unit(1.15, "meters"),
  25691. name: "Tail",
  25692. image: {
  25693. source: "./media/characters/draekon-sylviar/tail.svg"
  25694. }
  25695. },
  25696. tailDick: {
  25697. height: math.unit(1.15, "meters"),
  25698. name: "Tail (Dick)",
  25699. image: {
  25700. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25701. }
  25702. },
  25703. tailDickSeparated: {
  25704. height: math.unit(1.19, "meters"),
  25705. name: "Tail (Separated Dick)",
  25706. image: {
  25707. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25708. }
  25709. },
  25710. slit: {
  25711. height: math.unit(1, "meters"),
  25712. name: "Slit",
  25713. image: {
  25714. source: "./media/characters/draekon-sylviar/slit.svg"
  25715. }
  25716. },
  25717. dick: {
  25718. height: math.unit(1.15, "meters"),
  25719. name: "Dick",
  25720. image: {
  25721. source: "./media/characters/draekon-sylviar/dick.svg"
  25722. }
  25723. },
  25724. dickSeparated: {
  25725. height: math.unit(1.1, "meters"),
  25726. name: "Separated Dick",
  25727. image: {
  25728. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25729. }
  25730. },
  25731. sheath: {
  25732. height: math.unit(1.15, "meters"),
  25733. name: "Sheath",
  25734. image: {
  25735. source: "./media/characters/draekon-sylviar/sheath.svg"
  25736. }
  25737. },
  25738. },
  25739. [
  25740. {
  25741. name: "Small",
  25742. height: math.unit(4.53 / 2, "meters"),
  25743. default: true
  25744. },
  25745. {
  25746. name: "Normal",
  25747. height: math.unit(4.53, "meters"),
  25748. default: true
  25749. },
  25750. {
  25751. name: "Large",
  25752. height: math.unit(4.53 * 2, "meters"),
  25753. },
  25754. ]
  25755. ))
  25756. characterMakers.push(() => makeCharacter(
  25757. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25758. {
  25759. front: {
  25760. height: math.unit(6 + 2 / 12, "feet"),
  25761. weight: math.unit(180, "lb"),
  25762. name: "Front",
  25763. image: {
  25764. source: "./media/characters/brawler/front.svg",
  25765. extra: 3301 / 3027,
  25766. bottom: 138 / 3439
  25767. }
  25768. },
  25769. },
  25770. [
  25771. {
  25772. name: "Normal",
  25773. height: math.unit(6 + 2 / 12, "feet"),
  25774. default: true
  25775. },
  25776. ]
  25777. ))
  25778. characterMakers.push(() => makeCharacter(
  25779. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25780. {
  25781. front: {
  25782. height: math.unit(11, "feet"),
  25783. weight: math.unit(1000, "lb"),
  25784. name: "Front",
  25785. image: {
  25786. source: "./media/characters/alex/front.svg",
  25787. bottom: 44.5 / 620
  25788. }
  25789. },
  25790. },
  25791. [
  25792. {
  25793. name: "Micro",
  25794. height: math.unit(5, "inches")
  25795. },
  25796. {
  25797. name: "Normal",
  25798. height: math.unit(11, "feet"),
  25799. default: true
  25800. },
  25801. {
  25802. name: "Macro",
  25803. height: math.unit(9.5e9, "feet")
  25804. },
  25805. {
  25806. name: "Max Size",
  25807. height: math.unit(1.4e283, "yottameters")
  25808. },
  25809. ]
  25810. ))
  25811. characterMakers.push(() => makeCharacter(
  25812. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25813. {
  25814. female: {
  25815. height: math.unit(29.9, "m"),
  25816. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25817. name: "Female",
  25818. image: {
  25819. source: "./media/characters/zenari/female.svg",
  25820. extra: 3281.6 / 3217,
  25821. bottom: 72.2 / 3353
  25822. }
  25823. },
  25824. male: {
  25825. height: math.unit(27.7, "m"),
  25826. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25827. name: "Male",
  25828. image: {
  25829. source: "./media/characters/zenari/male.svg",
  25830. extra: 3008 / 2991,
  25831. bottom: 54.6 / 3069
  25832. }
  25833. },
  25834. },
  25835. [
  25836. {
  25837. name: "Macro",
  25838. height: math.unit(29.7, "meters"),
  25839. default: true
  25840. },
  25841. ]
  25842. ))
  25843. characterMakers.push(() => makeCharacter(
  25844. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25845. {
  25846. female: {
  25847. height: math.unit(23.8, "m"),
  25848. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25849. name: "Female",
  25850. image: {
  25851. source: "./media/characters/mactarian/female.svg",
  25852. extra: 2662 / 2569,
  25853. bottom: 73 / 2736
  25854. }
  25855. },
  25856. male: {
  25857. height: math.unit(23.8, "m"),
  25858. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25859. name: "Male",
  25860. image: {
  25861. source: "./media/characters/mactarian/male.svg",
  25862. extra: 2673 / 2600,
  25863. bottom: 76 / 2750
  25864. }
  25865. },
  25866. },
  25867. [
  25868. {
  25869. name: "Macro",
  25870. height: math.unit(23.8, "meters"),
  25871. default: true
  25872. },
  25873. ]
  25874. ))
  25875. characterMakers.push(() => makeCharacter(
  25876. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25877. {
  25878. female: {
  25879. height: math.unit(19.3, "m"),
  25880. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25881. name: "Female",
  25882. image: {
  25883. source: "./media/characters/umok/female.svg",
  25884. extra: 2186 / 2078,
  25885. bottom: 87 / 2277
  25886. }
  25887. },
  25888. male: {
  25889. height: math.unit(19.5, "m"),
  25890. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25891. name: "Male",
  25892. image: {
  25893. source: "./media/characters/umok/male.svg",
  25894. extra: 2233 / 2140,
  25895. bottom: 24.4 / 2258
  25896. }
  25897. },
  25898. },
  25899. [
  25900. {
  25901. name: "Macro",
  25902. height: math.unit(19.3, "meters"),
  25903. default: true
  25904. },
  25905. ]
  25906. ))
  25907. characterMakers.push(() => makeCharacter(
  25908. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25909. {
  25910. female: {
  25911. height: math.unit(26.15, "m"),
  25912. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25913. name: "Female",
  25914. image: {
  25915. source: "./media/characters/joraxian/female.svg",
  25916. extra: 2912 / 2824,
  25917. bottom: 36 / 2956
  25918. }
  25919. },
  25920. male: {
  25921. height: math.unit(25.4, "m"),
  25922. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25923. name: "Male",
  25924. image: {
  25925. source: "./media/characters/joraxian/male.svg",
  25926. extra: 2877 / 2721,
  25927. bottom: 82 / 2967
  25928. }
  25929. },
  25930. },
  25931. [
  25932. {
  25933. name: "Macro",
  25934. height: math.unit(26.15, "meters"),
  25935. default: true
  25936. },
  25937. ]
  25938. ))
  25939. characterMakers.push(() => makeCharacter(
  25940. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25941. {
  25942. female: {
  25943. height: math.unit(21.6, "m"),
  25944. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25945. name: "Female",
  25946. image: {
  25947. source: "./media/characters/sthara/female.svg",
  25948. extra: 2516 / 2347,
  25949. bottom: 21.5 / 2537
  25950. }
  25951. },
  25952. male: {
  25953. height: math.unit(24, "m"),
  25954. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25955. name: "Male",
  25956. image: {
  25957. source: "./media/characters/sthara/male.svg",
  25958. extra: 2732 / 2607,
  25959. bottom: 23 / 2732
  25960. }
  25961. },
  25962. },
  25963. [
  25964. {
  25965. name: "Macro",
  25966. height: math.unit(21.6, "meters"),
  25967. default: true
  25968. },
  25969. ]
  25970. ))
  25971. characterMakers.push(() => makeCharacter(
  25972. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25973. {
  25974. front: {
  25975. height: math.unit(6 + 4 / 12, "feet"),
  25976. weight: math.unit(175, "lb"),
  25977. name: "Front",
  25978. image: {
  25979. source: "./media/characters/luka-bryzant/front.svg",
  25980. extra: 311 / 289,
  25981. bottom: 4 / 315
  25982. }
  25983. },
  25984. back: {
  25985. height: math.unit(6 + 4 / 12, "feet"),
  25986. weight: math.unit(175, "lb"),
  25987. name: "Back",
  25988. image: {
  25989. source: "./media/characters/luka-bryzant/back.svg",
  25990. extra: 311 / 289,
  25991. bottom: 3.8 / 313.7
  25992. }
  25993. },
  25994. },
  25995. [
  25996. {
  25997. name: "Micro",
  25998. height: math.unit(10, "inches")
  25999. },
  26000. {
  26001. name: "Normal",
  26002. height: math.unit(6 + 4 / 12, "feet"),
  26003. default: true
  26004. },
  26005. {
  26006. name: "Large",
  26007. height: math.unit(12, "feet")
  26008. },
  26009. ]
  26010. ))
  26011. characterMakers.push(() => makeCharacter(
  26012. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26013. {
  26014. front: {
  26015. height: math.unit(5 + 7 / 12, "feet"),
  26016. weight: math.unit(185, "lb"),
  26017. name: "Front",
  26018. image: {
  26019. source: "./media/characters/aman-aquila/front.svg",
  26020. extra: 1013 / 976,
  26021. bottom: 45.6 / 1057
  26022. }
  26023. },
  26024. side: {
  26025. height: math.unit(5 + 7 / 12, "feet"),
  26026. weight: math.unit(185, "lb"),
  26027. name: "Side",
  26028. image: {
  26029. source: "./media/characters/aman-aquila/side.svg",
  26030. extra: 1054 / 1011,
  26031. bottom: 15 / 1070
  26032. }
  26033. },
  26034. back: {
  26035. height: math.unit(5 + 7 / 12, "feet"),
  26036. weight: math.unit(185, "lb"),
  26037. name: "Back",
  26038. image: {
  26039. source: "./media/characters/aman-aquila/back.svg",
  26040. extra: 1026 / 970,
  26041. bottom: 12 / 1039
  26042. }
  26043. },
  26044. head: {
  26045. height: math.unit(1.211, "feet"),
  26046. name: "Head",
  26047. image: {
  26048. source: "./media/characters/aman-aquila/head.svg",
  26049. }
  26050. },
  26051. },
  26052. [
  26053. {
  26054. name: "Minimicro",
  26055. height: math.unit(0.057, "inches")
  26056. },
  26057. {
  26058. name: "Micro",
  26059. height: math.unit(7, "inches")
  26060. },
  26061. {
  26062. name: "Mini",
  26063. height: math.unit(3 + 7 / 12, "feet")
  26064. },
  26065. {
  26066. name: "Normal",
  26067. height: math.unit(5 + 7 / 12, "feet"),
  26068. default: true
  26069. },
  26070. {
  26071. name: "Macro",
  26072. height: math.unit(157 + 7 / 12, "feet")
  26073. },
  26074. {
  26075. name: "Megamacro",
  26076. height: math.unit(1557 + 7 / 12, "feet")
  26077. },
  26078. {
  26079. name: "Gigamacro",
  26080. height: math.unit(15557 + 7 / 12, "feet")
  26081. },
  26082. ]
  26083. ))
  26084. characterMakers.push(() => makeCharacter(
  26085. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26086. {
  26087. front: {
  26088. height: math.unit(3 + 2 / 12, "inches"),
  26089. weight: math.unit(0.3, "ounces"),
  26090. name: "Front",
  26091. image: {
  26092. source: "./media/characters/hiphae/front.svg",
  26093. extra: 1931 / 1683,
  26094. bottom: 24 / 1955
  26095. }
  26096. },
  26097. },
  26098. [
  26099. {
  26100. name: "Normal",
  26101. height: math.unit(3 + 1 / 2, "inches"),
  26102. default: true
  26103. },
  26104. ]
  26105. ))
  26106. characterMakers.push(() => makeCharacter(
  26107. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26108. {
  26109. front: {
  26110. height: math.unit(5 + 10 / 12, "feet"),
  26111. weight: math.unit(165, "lb"),
  26112. name: "Front",
  26113. image: {
  26114. source: "./media/characters/nicky/front.svg",
  26115. extra: 3144 / 2886,
  26116. bottom: 45.6 / 3192
  26117. }
  26118. },
  26119. back: {
  26120. height: math.unit(5 + 10 / 12, "feet"),
  26121. weight: math.unit(165, "lb"),
  26122. name: "Back",
  26123. image: {
  26124. source: "./media/characters/nicky/back.svg",
  26125. extra: 3055 / 2804,
  26126. bottom: 28.4 / 3087
  26127. }
  26128. },
  26129. frontclothed: {
  26130. height: math.unit(5 + 10 / 12, "feet"),
  26131. weight: math.unit(165, "lb"),
  26132. name: "Front-clothed",
  26133. image: {
  26134. source: "./media/characters/nicky/front-clothed.svg",
  26135. extra: 3184.9 / 2926.9,
  26136. bottom: 86.5 / 3239.9
  26137. }
  26138. },
  26139. foot: {
  26140. height: math.unit(1.16, "feet"),
  26141. name: "Foot",
  26142. image: {
  26143. source: "./media/characters/nicky/foot.svg"
  26144. }
  26145. },
  26146. feet: {
  26147. height: math.unit(1.34, "feet"),
  26148. name: "Feet",
  26149. image: {
  26150. source: "./media/characters/nicky/feet.svg"
  26151. }
  26152. },
  26153. maw: {
  26154. height: math.unit(0.9, "feet"),
  26155. name: "Maw",
  26156. image: {
  26157. source: "./media/characters/nicky/maw.svg"
  26158. }
  26159. },
  26160. },
  26161. [
  26162. {
  26163. name: "Normal",
  26164. height: math.unit(5 + 10 / 12, "feet"),
  26165. default: true
  26166. },
  26167. {
  26168. name: "Macro",
  26169. height: math.unit(60, "feet")
  26170. },
  26171. {
  26172. name: "Megamacro",
  26173. height: math.unit(1, "mile")
  26174. },
  26175. ]
  26176. ))
  26177. characterMakers.push(() => makeCharacter(
  26178. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26179. {
  26180. side: {
  26181. height: math.unit(10, "feet"),
  26182. weight: math.unit(600, "lb"),
  26183. name: "Side",
  26184. image: {
  26185. source: "./media/characters/blair/side.svg",
  26186. bottom: 16.6 / 475,
  26187. extra: 458 / 431
  26188. }
  26189. },
  26190. },
  26191. [
  26192. {
  26193. name: "Micro",
  26194. height: math.unit(8, "inches")
  26195. },
  26196. {
  26197. name: "Normal",
  26198. height: math.unit(10, "feet"),
  26199. default: true
  26200. },
  26201. {
  26202. name: "Macro",
  26203. height: math.unit(180, "feet")
  26204. },
  26205. ]
  26206. ))
  26207. characterMakers.push(() => makeCharacter(
  26208. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26209. {
  26210. front: {
  26211. height: math.unit(5 + 4 / 12, "feet"),
  26212. weight: math.unit(125, "lb"),
  26213. name: "Front",
  26214. image: {
  26215. source: "./media/characters/fisher/front.svg",
  26216. extra: 444 / 390,
  26217. bottom: 2 / 444.8
  26218. }
  26219. },
  26220. },
  26221. [
  26222. {
  26223. name: "Micro",
  26224. height: math.unit(4, "inches")
  26225. },
  26226. {
  26227. name: "Normal",
  26228. height: math.unit(5 + 4 / 12, "feet"),
  26229. default: true
  26230. },
  26231. {
  26232. name: "Macro",
  26233. height: math.unit(100, "feet")
  26234. },
  26235. ]
  26236. ))
  26237. characterMakers.push(() => makeCharacter(
  26238. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26239. {
  26240. front: {
  26241. height: math.unit(6.71, "feet"),
  26242. weight: math.unit(200, "lb"),
  26243. preyCapacity: math.unit(1000000, "people"),
  26244. name: "Front",
  26245. image: {
  26246. source: "./media/characters/gliss/front.svg",
  26247. extra: 2347 / 2231,
  26248. bottom: 113 / 2462
  26249. }
  26250. },
  26251. hammerspaceSize: {
  26252. height: math.unit(6.71 * 717, "feet"),
  26253. weight: math.unit(200, "lb"),
  26254. preyCapacity: math.unit(1000000, "people"),
  26255. name: "Hammerspace Size",
  26256. image: {
  26257. source: "./media/characters/gliss/front.svg",
  26258. extra: 2347 / 2231,
  26259. bottom: 113 / 2462
  26260. }
  26261. },
  26262. },
  26263. [
  26264. {
  26265. name: "Normal",
  26266. height: math.unit(6.71, "feet"),
  26267. default: true
  26268. },
  26269. ]
  26270. ))
  26271. characterMakers.push(() => makeCharacter(
  26272. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26273. {
  26274. side: {
  26275. height: math.unit(1.44, "m"),
  26276. weight: math.unit(80, "kg"),
  26277. name: "Side",
  26278. image: {
  26279. source: "./media/characters/dune-anderson/side.svg",
  26280. bottom: 49 / 1426
  26281. }
  26282. },
  26283. },
  26284. [
  26285. {
  26286. name: "Wolf-sized",
  26287. height: math.unit(1.44, "meters")
  26288. },
  26289. {
  26290. name: "Normal",
  26291. height: math.unit(5.05, "meters"),
  26292. default: true
  26293. },
  26294. {
  26295. name: "Big",
  26296. height: math.unit(14.4, "meters")
  26297. },
  26298. {
  26299. name: "Huge",
  26300. height: math.unit(144, "meters")
  26301. },
  26302. ]
  26303. ))
  26304. characterMakers.push(() => makeCharacter(
  26305. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26306. {
  26307. front: {
  26308. height: math.unit(7, "feet"),
  26309. weight: math.unit(425, "lb"),
  26310. name: "Front",
  26311. image: {
  26312. source: "./media/characters/hind/front.svg",
  26313. extra: 2091 / 1860,
  26314. bottom: 129 / 2220
  26315. }
  26316. },
  26317. back: {
  26318. height: math.unit(7, "feet"),
  26319. weight: math.unit(425, "lb"),
  26320. name: "Back",
  26321. image: {
  26322. source: "./media/characters/hind/back.svg",
  26323. extra: 2091 / 1860,
  26324. bottom: 24.6 / 2309
  26325. }
  26326. },
  26327. tail: {
  26328. height: math.unit(2.8, "feet"),
  26329. name: "Tail",
  26330. image: {
  26331. source: "./media/characters/hind/tail.svg"
  26332. }
  26333. },
  26334. head: {
  26335. height: math.unit(2.55, "feet"),
  26336. name: "Head",
  26337. image: {
  26338. source: "./media/characters/hind/head.svg"
  26339. }
  26340. },
  26341. },
  26342. [
  26343. {
  26344. name: "XS",
  26345. height: math.unit(0.7, "feet")
  26346. },
  26347. {
  26348. name: "Normal",
  26349. height: math.unit(7, "feet"),
  26350. default: true
  26351. },
  26352. {
  26353. name: "XL",
  26354. height: math.unit(70, "feet")
  26355. },
  26356. ]
  26357. ))
  26358. characterMakers.push(() => makeCharacter(
  26359. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26360. {
  26361. front: {
  26362. height: math.unit(2.1, "meters"),
  26363. weight: math.unit(150, "lb"),
  26364. name: "Front",
  26365. image: {
  26366. source: "./media/characters/tharquench-sizestealer/front.svg",
  26367. extra: 1605/1470,
  26368. bottom: 36/1641
  26369. }
  26370. },
  26371. frontAlt: {
  26372. height: math.unit(2.1, "meters"),
  26373. weight: math.unit(150, "lb"),
  26374. name: "Front (Alt)",
  26375. image: {
  26376. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26377. extra: 2318 / 2063,
  26378. bottom: 93.4 / 2410
  26379. }
  26380. },
  26381. },
  26382. [
  26383. {
  26384. name: "Nano",
  26385. height: math.unit(1, "mm")
  26386. },
  26387. {
  26388. name: "Micro",
  26389. height: math.unit(1, "cm")
  26390. },
  26391. {
  26392. name: "Normal",
  26393. height: math.unit(2.1, "meters"),
  26394. default: true
  26395. },
  26396. ]
  26397. ))
  26398. characterMakers.push(() => makeCharacter(
  26399. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26400. {
  26401. front: {
  26402. height: math.unit(7 + 5 / 12, "feet"),
  26403. weight: math.unit(357, "lb"),
  26404. name: "Front",
  26405. image: {
  26406. source: "./media/characters/solex-draconov/front.svg",
  26407. extra: 1993 / 1865,
  26408. bottom: 117 / 2111
  26409. }
  26410. },
  26411. },
  26412. [
  26413. {
  26414. name: "Natural Height",
  26415. height: math.unit(7 + 5 / 12, "feet"),
  26416. default: true
  26417. },
  26418. {
  26419. name: "Macro",
  26420. height: math.unit(350, "feet")
  26421. },
  26422. {
  26423. name: "Macro+",
  26424. height: math.unit(1000, "feet")
  26425. },
  26426. {
  26427. name: "Megamacro",
  26428. height: math.unit(20, "km")
  26429. },
  26430. {
  26431. name: "Megamacro+",
  26432. height: math.unit(1000, "km")
  26433. },
  26434. {
  26435. name: "Gigamacro",
  26436. height: math.unit(2.5, "Gm")
  26437. },
  26438. {
  26439. name: "Teramacro",
  26440. height: math.unit(15, "Tm")
  26441. },
  26442. {
  26443. name: "Galactic",
  26444. height: math.unit(30, "Zm")
  26445. },
  26446. {
  26447. name: "Universal",
  26448. height: math.unit(21000, "Ym")
  26449. },
  26450. {
  26451. name: "Omniversal",
  26452. height: math.unit(9.861e50, "Ym")
  26453. },
  26454. {
  26455. name: "Existential",
  26456. height: math.unit(1e300, "meters")
  26457. },
  26458. ]
  26459. ))
  26460. characterMakers.push(() => makeCharacter(
  26461. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26462. {
  26463. side: {
  26464. height: math.unit(25, "feet"),
  26465. weight: math.unit(90000, "lb"),
  26466. name: "Side",
  26467. image: {
  26468. source: "./media/characters/mandarax/side.svg",
  26469. extra: 614 / 332,
  26470. bottom: 55 / 630
  26471. }
  26472. },
  26473. lounging: {
  26474. height: math.unit(15.4, "feet"),
  26475. weight: math.unit(90000, "lb"),
  26476. name: "Lounging",
  26477. image: {
  26478. source: "./media/characters/mandarax/lounging.svg",
  26479. extra: 817/609,
  26480. bottom: 685/1502
  26481. }
  26482. },
  26483. head: {
  26484. height: math.unit(11.4, "feet"),
  26485. name: "Head",
  26486. image: {
  26487. source: "./media/characters/mandarax/head.svg"
  26488. }
  26489. },
  26490. belly: {
  26491. height: math.unit(33, "feet"),
  26492. name: "Belly",
  26493. preyCapacity: math.unit(500, "people"),
  26494. image: {
  26495. source: "./media/characters/mandarax/belly.svg"
  26496. }
  26497. },
  26498. dick: {
  26499. height: math.unit(8.46, "feet"),
  26500. name: "Dick",
  26501. image: {
  26502. source: "./media/characters/mandarax/dick.svg"
  26503. }
  26504. },
  26505. top: {
  26506. height: math.unit(28, "meters"),
  26507. name: "Top",
  26508. image: {
  26509. source: "./media/characters/mandarax/top.svg"
  26510. }
  26511. },
  26512. },
  26513. [
  26514. {
  26515. name: "Normal",
  26516. height: math.unit(25, "feet"),
  26517. default: true
  26518. },
  26519. ]
  26520. ))
  26521. characterMakers.push(() => makeCharacter(
  26522. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26523. {
  26524. front: {
  26525. height: math.unit(5, "feet"),
  26526. weight: math.unit(90, "lb"),
  26527. name: "Front",
  26528. image: {
  26529. source: "./media/characters/pixil/front.svg",
  26530. extra: 2000 / 1618,
  26531. bottom: 12.3 / 2011
  26532. }
  26533. },
  26534. },
  26535. [
  26536. {
  26537. name: "Normal",
  26538. height: math.unit(5, "feet"),
  26539. default: true
  26540. },
  26541. {
  26542. name: "Megamacro",
  26543. height: math.unit(10, "miles"),
  26544. },
  26545. ]
  26546. ))
  26547. characterMakers.push(() => makeCharacter(
  26548. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26549. {
  26550. front: {
  26551. height: math.unit(7 + 2 / 12, "feet"),
  26552. weight: math.unit(200, "lb"),
  26553. name: "Front",
  26554. image: {
  26555. source: "./media/characters/angel/front.svg",
  26556. extra: 1830 / 1737,
  26557. bottom: 22.6 / 1854,
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Normal",
  26564. height: math.unit(7 + 2 / 12, "feet"),
  26565. default: true
  26566. },
  26567. {
  26568. name: "Macro",
  26569. height: math.unit(1000, "feet")
  26570. },
  26571. {
  26572. name: "Megamacro",
  26573. height: math.unit(2, "miles")
  26574. },
  26575. {
  26576. name: "Gigamacro",
  26577. height: math.unit(20, "earths")
  26578. },
  26579. ]
  26580. ))
  26581. characterMakers.push(() => makeCharacter(
  26582. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26583. {
  26584. front: {
  26585. height: math.unit(5, "feet"),
  26586. weight: math.unit(180, "lb"),
  26587. name: "Front",
  26588. image: {
  26589. source: "./media/characters/mekana/front.svg",
  26590. extra: 1671 / 1605,
  26591. bottom: 3.5 / 1691
  26592. }
  26593. },
  26594. side: {
  26595. height: math.unit(5, "feet"),
  26596. weight: math.unit(180, "lb"),
  26597. name: "Side",
  26598. image: {
  26599. source: "./media/characters/mekana/side.svg",
  26600. extra: 1671 / 1605,
  26601. bottom: 3.5 / 1691
  26602. }
  26603. },
  26604. back: {
  26605. height: math.unit(5, "feet"),
  26606. weight: math.unit(180, "lb"),
  26607. name: "Back",
  26608. image: {
  26609. source: "./media/characters/mekana/back.svg",
  26610. extra: 1671 / 1605,
  26611. bottom: 3.5 / 1691
  26612. }
  26613. },
  26614. },
  26615. [
  26616. {
  26617. name: "Normal",
  26618. height: math.unit(5, "feet"),
  26619. default: true
  26620. },
  26621. ]
  26622. ))
  26623. characterMakers.push(() => makeCharacter(
  26624. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26625. {
  26626. front: {
  26627. height: math.unit(4 + 6 / 12, "feet"),
  26628. weight: math.unit(80, "lb"),
  26629. name: "Front",
  26630. image: {
  26631. source: "./media/characters/pixie/front.svg",
  26632. extra: 1924 / 1825,
  26633. bottom: 22.4 / 1946
  26634. }
  26635. },
  26636. },
  26637. [
  26638. {
  26639. name: "Normal",
  26640. height: math.unit(4 + 6 / 12, "feet"),
  26641. default: true
  26642. },
  26643. {
  26644. name: "Macro",
  26645. height: math.unit(40, "feet")
  26646. },
  26647. ]
  26648. ))
  26649. characterMakers.push(() => makeCharacter(
  26650. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26651. {
  26652. front: {
  26653. height: math.unit(2.1, "meters"),
  26654. weight: math.unit(200, "lb"),
  26655. name: "Front",
  26656. image: {
  26657. source: "./media/characters/the-lascivious/front.svg",
  26658. extra: 1 / 0.893,
  26659. bottom: 3.5 / 573.7
  26660. }
  26661. },
  26662. },
  26663. [
  26664. {
  26665. name: "Human Scale",
  26666. height: math.unit(2.1, "meters")
  26667. },
  26668. {
  26669. name: "Wolxi Scale",
  26670. height: math.unit(46.2, "m"),
  26671. default: true
  26672. },
  26673. {
  26674. name: "Boinker of Buildings",
  26675. height: math.unit(10, "km")
  26676. },
  26677. {
  26678. name: "Shagger of Skyscrapers",
  26679. height: math.unit(40, "km")
  26680. },
  26681. {
  26682. name: "Banger of Boroughs",
  26683. height: math.unit(4000, "km")
  26684. },
  26685. {
  26686. name: "Screwer of States",
  26687. height: math.unit(100000, "km")
  26688. },
  26689. {
  26690. name: "Pounder of Planets",
  26691. height: math.unit(2000000, "km")
  26692. },
  26693. ]
  26694. ))
  26695. characterMakers.push(() => makeCharacter(
  26696. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26697. {
  26698. front: {
  26699. height: math.unit(6, "feet"),
  26700. weight: math.unit(150, "lb"),
  26701. name: "Front",
  26702. image: {
  26703. source: "./media/characters/aj/front.svg",
  26704. extra: 2039 / 1562,
  26705. bottom: 40 / 2079
  26706. }
  26707. },
  26708. },
  26709. [
  26710. {
  26711. name: "Normal",
  26712. height: math.unit(11 + 6 / 12, "feet"),
  26713. default: true
  26714. },
  26715. {
  26716. name: "Megamacro",
  26717. height: math.unit(60, "megameters")
  26718. },
  26719. ]
  26720. ))
  26721. characterMakers.push(() => makeCharacter(
  26722. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26723. {
  26724. side: {
  26725. height: math.unit(31 + 8 / 12, "feet"),
  26726. weight: math.unit(75000, "kg"),
  26727. name: "Side",
  26728. image: {
  26729. source: "./media/characters/koros/side.svg",
  26730. extra: 1442 / 1297,
  26731. bottom: 122.7 / 1562
  26732. }
  26733. },
  26734. dicksKingsCrown: {
  26735. height: math.unit(6, "feet"),
  26736. name: "Dicks (King's Crown)",
  26737. image: {
  26738. source: "./media/characters/koros/dicks-kings-crown.svg"
  26739. }
  26740. },
  26741. dicksTailSet: {
  26742. height: math.unit(3, "feet"),
  26743. name: "Dicks (Tail Set)",
  26744. image: {
  26745. source: "./media/characters/koros/dicks-tail-set.svg"
  26746. }
  26747. },
  26748. dickCumming: {
  26749. height: math.unit(7.98, "feet"),
  26750. name: "Dick (Cumming)",
  26751. image: {
  26752. source: "./media/characters/koros/dick-cumming.svg"
  26753. }
  26754. },
  26755. dicksBack: {
  26756. height: math.unit(5.9, "feet"),
  26757. name: "Dicks (Back)",
  26758. image: {
  26759. source: "./media/characters/koros/dicks-back.svg"
  26760. }
  26761. },
  26762. dicksFront: {
  26763. height: math.unit(3.72, "feet"),
  26764. name: "Dicks (Front)",
  26765. image: {
  26766. source: "./media/characters/koros/dicks-front.svg"
  26767. }
  26768. },
  26769. dicksPeeking: {
  26770. height: math.unit(3.0, "feet"),
  26771. name: "Dicks (Peeking)",
  26772. image: {
  26773. source: "./media/characters/koros/dicks-peeking.svg"
  26774. }
  26775. },
  26776. eye: {
  26777. height: math.unit(1.7, "feet"),
  26778. name: "Eye",
  26779. image: {
  26780. source: "./media/characters/koros/eye.svg"
  26781. }
  26782. },
  26783. headFront: {
  26784. height: math.unit(11.69, "feet"),
  26785. name: "Head (Front)",
  26786. image: {
  26787. source: "./media/characters/koros/head-front.svg"
  26788. }
  26789. },
  26790. headSide: {
  26791. height: math.unit(14, "feet"),
  26792. name: "Head (Side)",
  26793. image: {
  26794. source: "./media/characters/koros/head-side.svg"
  26795. }
  26796. },
  26797. leg: {
  26798. height: math.unit(17, "feet"),
  26799. name: "Leg",
  26800. image: {
  26801. source: "./media/characters/koros/leg.svg"
  26802. }
  26803. },
  26804. mawSide: {
  26805. height: math.unit(12.8, "feet"),
  26806. name: "Maw (Side)",
  26807. image: {
  26808. source: "./media/characters/koros/maw-side.svg"
  26809. }
  26810. },
  26811. mawSpitting: {
  26812. height: math.unit(17, "feet"),
  26813. name: "Maw (Spitting)",
  26814. image: {
  26815. source: "./media/characters/koros/maw-spitting.svg"
  26816. }
  26817. },
  26818. slit: {
  26819. height: math.unit(2.8, "feet"),
  26820. name: "Slit",
  26821. image: {
  26822. source: "./media/characters/koros/slit.svg"
  26823. }
  26824. },
  26825. stomach: {
  26826. height: math.unit(6.8, "feet"),
  26827. preyCapacity: math.unit(20, "people"),
  26828. name: "Stomach",
  26829. image: {
  26830. source: "./media/characters/koros/stomach.svg"
  26831. }
  26832. },
  26833. wingspanBottom: {
  26834. height: math.unit(114, "feet"),
  26835. name: "Wingspan (Bottom)",
  26836. image: {
  26837. source: "./media/characters/koros/wingspan-bottom.svg"
  26838. }
  26839. },
  26840. wingspanTop: {
  26841. height: math.unit(104, "feet"),
  26842. name: "Wingspan (Top)",
  26843. image: {
  26844. source: "./media/characters/koros/wingspan-top.svg"
  26845. }
  26846. },
  26847. },
  26848. [
  26849. {
  26850. name: "Normal",
  26851. height: math.unit(31 + 8 / 12, "feet"),
  26852. default: true
  26853. },
  26854. ]
  26855. ))
  26856. characterMakers.push(() => makeCharacter(
  26857. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26858. {
  26859. front: {
  26860. height: math.unit(18 + 5 / 12, "feet"),
  26861. weight: math.unit(3750, "kg"),
  26862. name: "Front",
  26863. image: {
  26864. source: "./media/characters/vexx/front.svg",
  26865. extra: 426 / 396,
  26866. bottom: 31.5 / 458
  26867. }
  26868. },
  26869. maw: {
  26870. height: math.unit(6, "feet"),
  26871. name: "Maw",
  26872. image: {
  26873. source: "./media/characters/vexx/maw.svg"
  26874. }
  26875. },
  26876. },
  26877. [
  26878. {
  26879. name: "Normal",
  26880. height: math.unit(18 + 5 / 12, "feet"),
  26881. default: true
  26882. },
  26883. ]
  26884. ))
  26885. characterMakers.push(() => makeCharacter(
  26886. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26887. {
  26888. front: {
  26889. height: math.unit(17 + 6 / 12, "feet"),
  26890. weight: math.unit(150, "lb"),
  26891. name: "Front",
  26892. image: {
  26893. source: "./media/characters/baadra/front.svg",
  26894. extra: 1694/1553,
  26895. bottom: 179/1873
  26896. }
  26897. },
  26898. frontAlt: {
  26899. height: math.unit(17 + 6 / 12, "feet"),
  26900. weight: math.unit(150, "lb"),
  26901. name: "Front (Alt)",
  26902. image: {
  26903. source: "./media/characters/baadra/front-alt.svg",
  26904. extra: 3137 / 2890,
  26905. bottom: 168.4 / 3305
  26906. }
  26907. },
  26908. back: {
  26909. height: math.unit(17 + 6 / 12, "feet"),
  26910. weight: math.unit(150, "lb"),
  26911. name: "Back",
  26912. image: {
  26913. source: "./media/characters/baadra/back.svg",
  26914. extra: 3142 / 2890,
  26915. bottom: 220 / 3371
  26916. }
  26917. },
  26918. head: {
  26919. height: math.unit(5.45, "feet"),
  26920. name: "Head",
  26921. image: {
  26922. source: "./media/characters/baadra/head.svg"
  26923. }
  26924. },
  26925. headAngry: {
  26926. height: math.unit(4.95, "feet"),
  26927. name: "Head (Angry)",
  26928. image: {
  26929. source: "./media/characters/baadra/head-angry.svg"
  26930. }
  26931. },
  26932. headOpen: {
  26933. height: math.unit(6, "feet"),
  26934. name: "Head (Open)",
  26935. image: {
  26936. source: "./media/characters/baadra/head-open.svg"
  26937. }
  26938. },
  26939. },
  26940. [
  26941. {
  26942. name: "Normal",
  26943. height: math.unit(17 + 6 / 12, "feet"),
  26944. default: true
  26945. },
  26946. ]
  26947. ))
  26948. characterMakers.push(() => makeCharacter(
  26949. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26950. {
  26951. front: {
  26952. height: math.unit(7 + 3 / 12, "feet"),
  26953. weight: math.unit(180, "lb"),
  26954. name: "Front",
  26955. image: {
  26956. source: "./media/characters/juri/front.svg",
  26957. extra: 1401 / 1237,
  26958. bottom: 18.5 / 1418
  26959. }
  26960. },
  26961. side: {
  26962. height: math.unit(7 + 3 / 12, "feet"),
  26963. weight: math.unit(180, "lb"),
  26964. name: "Side",
  26965. image: {
  26966. source: "./media/characters/juri/side.svg",
  26967. extra: 1424 / 1242,
  26968. bottom: 18.5 / 1447
  26969. }
  26970. },
  26971. sitting: {
  26972. height: math.unit(6, "feet"),
  26973. weight: math.unit(180, "lb"),
  26974. name: "Sitting",
  26975. image: {
  26976. source: "./media/characters/juri/sitting.svg",
  26977. extra: 1270 / 1143,
  26978. bottom: 100 / 1343
  26979. }
  26980. },
  26981. back: {
  26982. height: math.unit(7 + 3 / 12, "feet"),
  26983. weight: math.unit(180, "lb"),
  26984. name: "Back",
  26985. image: {
  26986. source: "./media/characters/juri/back.svg",
  26987. extra: 1377 / 1240,
  26988. bottom: 23.7 / 1405
  26989. }
  26990. },
  26991. maw: {
  26992. height: math.unit(2.8, "feet"),
  26993. name: "Maw",
  26994. image: {
  26995. source: "./media/characters/juri/maw.svg"
  26996. }
  26997. },
  26998. stomach: {
  26999. height: math.unit(0.89, "feet"),
  27000. preyCapacity: math.unit(4, "liters"),
  27001. name: "Stomach",
  27002. image: {
  27003. source: "./media/characters/juri/stomach.svg"
  27004. }
  27005. },
  27006. },
  27007. [
  27008. {
  27009. name: "Normal",
  27010. height: math.unit(7 + 3 / 12, "feet"),
  27011. default: true
  27012. },
  27013. ]
  27014. ))
  27015. characterMakers.push(() => makeCharacter(
  27016. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27017. {
  27018. fox: {
  27019. height: math.unit(5 + 6 / 12, "feet"),
  27020. weight: math.unit(140, "lb"),
  27021. name: "Fox",
  27022. image: {
  27023. source: "./media/characters/maxene-sita/fox.svg",
  27024. extra: 146 / 138,
  27025. bottom: 2.1 / 148.19
  27026. }
  27027. },
  27028. foxLaying: {
  27029. height: math.unit(1.70, "feet"),
  27030. weight: math.unit(140, "lb"),
  27031. name: "Fox (Laying)",
  27032. image: {
  27033. source: "./media/characters/maxene-sita/fox-laying.svg",
  27034. extra: 910 / 572,
  27035. bottom: 71 / 981
  27036. }
  27037. },
  27038. kitsune: {
  27039. height: math.unit(10, "feet"),
  27040. weight: math.unit(800, "lb"),
  27041. name: "Kitsune",
  27042. image: {
  27043. source: "./media/characters/maxene-sita/kitsune.svg",
  27044. extra: 185 / 176,
  27045. bottom: 4.7 / 189.9
  27046. }
  27047. },
  27048. hellhound: {
  27049. height: math.unit(10, "feet"),
  27050. weight: math.unit(700, "lb"),
  27051. name: "Hellhound",
  27052. image: {
  27053. source: "./media/characters/maxene-sita/hellhound.svg",
  27054. extra: 1600 / 1545,
  27055. bottom: 81 / 1681
  27056. }
  27057. },
  27058. },
  27059. [
  27060. {
  27061. name: "Normal",
  27062. height: math.unit(5 + 6 / 12, "feet"),
  27063. default: true
  27064. },
  27065. ]
  27066. ))
  27067. characterMakers.push(() => makeCharacter(
  27068. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27069. {
  27070. front: {
  27071. height: math.unit(3 + 4 / 12, "feet"),
  27072. weight: math.unit(70, "lb"),
  27073. name: "Front",
  27074. image: {
  27075. source: "./media/characters/maia/front.svg",
  27076. extra: 227 / 219.5,
  27077. bottom: 40 / 267
  27078. }
  27079. },
  27080. back: {
  27081. height: math.unit(3 + 4 / 12, "feet"),
  27082. weight: math.unit(70, "lb"),
  27083. name: "Back",
  27084. image: {
  27085. source: "./media/characters/maia/back.svg",
  27086. extra: 237 / 225
  27087. }
  27088. },
  27089. },
  27090. [
  27091. {
  27092. name: "Normal",
  27093. height: math.unit(3 + 4 / 12, "feet"),
  27094. default: true
  27095. },
  27096. ]
  27097. ))
  27098. characterMakers.push(() => makeCharacter(
  27099. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27100. {
  27101. front: {
  27102. height: math.unit(5 + 10 / 12, "feet"),
  27103. weight: math.unit(197, "lb"),
  27104. name: "Front",
  27105. image: {
  27106. source: "./media/characters/jabaro/front.svg",
  27107. extra: 225 / 216,
  27108. bottom: 5.06 / 230
  27109. }
  27110. },
  27111. back: {
  27112. height: math.unit(5 + 10 / 12, "feet"),
  27113. weight: math.unit(197, "lb"),
  27114. name: "Back",
  27115. image: {
  27116. source: "./media/characters/jabaro/back.svg",
  27117. extra: 225 / 219,
  27118. bottom: 1.9 / 227
  27119. }
  27120. },
  27121. },
  27122. [
  27123. {
  27124. name: "Normal",
  27125. height: math.unit(5 + 10 / 12, "feet"),
  27126. default: true
  27127. },
  27128. ]
  27129. ))
  27130. characterMakers.push(() => makeCharacter(
  27131. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27132. {
  27133. front: {
  27134. height: math.unit(5 + 8 / 12, "feet"),
  27135. weight: math.unit(139, "lb"),
  27136. name: "Front",
  27137. image: {
  27138. source: "./media/characters/risa/front.svg",
  27139. extra: 270 / 260,
  27140. bottom: 11.2 / 282
  27141. }
  27142. },
  27143. back: {
  27144. height: math.unit(5 + 8 / 12, "feet"),
  27145. weight: math.unit(139, "lb"),
  27146. name: "Back",
  27147. image: {
  27148. source: "./media/characters/risa/back.svg",
  27149. extra: 264 / 255,
  27150. bottom: 4 / 268
  27151. }
  27152. },
  27153. },
  27154. [
  27155. {
  27156. name: "Normal",
  27157. height: math.unit(5 + 8 / 12, "feet"),
  27158. default: true
  27159. },
  27160. ]
  27161. ))
  27162. characterMakers.push(() => makeCharacter(
  27163. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27164. {
  27165. front: {
  27166. height: math.unit(2 + 11 / 12, "feet"),
  27167. weight: math.unit(30, "lb"),
  27168. name: "Front",
  27169. image: {
  27170. source: "./media/characters/weatley/front.svg",
  27171. bottom: 10.7 / 414,
  27172. extra: 403.5 / 362
  27173. }
  27174. },
  27175. back: {
  27176. height: math.unit(2 + 11 / 12, "feet"),
  27177. weight: math.unit(30, "lb"),
  27178. name: "Back",
  27179. image: {
  27180. source: "./media/characters/weatley/back.svg",
  27181. bottom: 10.7 / 414,
  27182. extra: 403.5 / 362
  27183. }
  27184. },
  27185. },
  27186. [
  27187. {
  27188. name: "Normal",
  27189. height: math.unit(2 + 11 / 12, "feet"),
  27190. default: true
  27191. },
  27192. ]
  27193. ))
  27194. characterMakers.push(() => makeCharacter(
  27195. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27196. {
  27197. front: {
  27198. height: math.unit(5 + 2 / 12, "feet"),
  27199. weight: math.unit(50, "kg"),
  27200. name: "Front",
  27201. image: {
  27202. source: "./media/characters/mercury-crescent/front.svg",
  27203. extra: 1088 / 1033,
  27204. bottom: 18.9 / 1109
  27205. }
  27206. },
  27207. },
  27208. [
  27209. {
  27210. name: "Normal",
  27211. height: math.unit(5 + 2 / 12, "feet"),
  27212. default: true
  27213. },
  27214. ]
  27215. ))
  27216. characterMakers.push(() => makeCharacter(
  27217. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27218. {
  27219. front: {
  27220. height: math.unit(2, "feet"),
  27221. weight: math.unit(15, "kg"),
  27222. name: "Front",
  27223. image: {
  27224. source: "./media/characters/diamond-jones/front.svg",
  27225. extra: 727/723,
  27226. bottom: 46/773
  27227. }
  27228. },
  27229. },
  27230. [
  27231. {
  27232. name: "Normal",
  27233. height: math.unit(2, "feet"),
  27234. default: true
  27235. },
  27236. ]
  27237. ))
  27238. characterMakers.push(() => makeCharacter(
  27239. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27240. {
  27241. front: {
  27242. height: math.unit(3, "feet"),
  27243. weight: math.unit(30, "kg"),
  27244. name: "Front",
  27245. image: {
  27246. source: "./media/characters/sweet-bit/front.svg",
  27247. extra: 675 / 567,
  27248. bottom: 27.7 / 703
  27249. }
  27250. },
  27251. },
  27252. [
  27253. {
  27254. name: "Normal",
  27255. height: math.unit(3, "feet"),
  27256. default: true
  27257. },
  27258. ]
  27259. ))
  27260. characterMakers.push(() => makeCharacter(
  27261. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27262. {
  27263. side: {
  27264. height: math.unit(9.178, "feet"),
  27265. weight: math.unit(500, "lb"),
  27266. name: "Side",
  27267. image: {
  27268. source: "./media/characters/umbrazen/side.svg",
  27269. extra: 1730 / 1473,
  27270. bottom: 34.6 / 1765
  27271. }
  27272. },
  27273. },
  27274. [
  27275. {
  27276. name: "Normal",
  27277. height: math.unit(9.178, "feet"),
  27278. default: true
  27279. },
  27280. ]
  27281. ))
  27282. characterMakers.push(() => makeCharacter(
  27283. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27284. {
  27285. front: {
  27286. height: math.unit(10, "feet"),
  27287. weight: math.unit(750, "lb"),
  27288. name: "Front",
  27289. image: {
  27290. source: "./media/characters/arlist/front.svg",
  27291. extra: 961 / 778,
  27292. bottom: 6.2 / 986
  27293. }
  27294. },
  27295. },
  27296. [
  27297. {
  27298. name: "Normal",
  27299. height: math.unit(10, "feet"),
  27300. default: true
  27301. },
  27302. ]
  27303. ))
  27304. characterMakers.push(() => makeCharacter(
  27305. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27306. {
  27307. front: {
  27308. height: math.unit(5 + 1 / 12, "feet"),
  27309. weight: math.unit(110, "lb"),
  27310. name: "Front",
  27311. image: {
  27312. source: "./media/characters/aradel/front.svg",
  27313. extra: 324 / 303,
  27314. bottom: 3.6 / 329.4
  27315. }
  27316. },
  27317. },
  27318. [
  27319. {
  27320. name: "Normal",
  27321. height: math.unit(5 + 1 / 12, "feet"),
  27322. default: true
  27323. },
  27324. ]
  27325. ))
  27326. characterMakers.push(() => makeCharacter(
  27327. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27328. {
  27329. dressed: {
  27330. height: math.unit(3 + 8 / 12, "feet"),
  27331. weight: math.unit(50, "lb"),
  27332. name: "Dressed",
  27333. image: {
  27334. source: "./media/characters/serryn/dressed.svg",
  27335. extra: 1792 / 1656,
  27336. bottom: 43.5 / 1840
  27337. }
  27338. },
  27339. nude: {
  27340. height: math.unit(3 + 8 / 12, "feet"),
  27341. weight: math.unit(50, "lb"),
  27342. name: "Nude",
  27343. image: {
  27344. source: "./media/characters/serryn/nude.svg",
  27345. extra: 1792 / 1656,
  27346. bottom: 43.5 / 1840
  27347. }
  27348. },
  27349. },
  27350. [
  27351. {
  27352. name: "Normal",
  27353. height: math.unit(3 + 8 / 12, "feet"),
  27354. default: true
  27355. },
  27356. ]
  27357. ))
  27358. characterMakers.push(() => makeCharacter(
  27359. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27360. {
  27361. front: {
  27362. height: math.unit(7 + 10 / 12, "feet"),
  27363. weight: math.unit(255, "lb"),
  27364. name: "Front",
  27365. image: {
  27366. source: "./media/characters/xavier-thyme/front.svg",
  27367. extra: 3733 / 3642,
  27368. bottom: 131 / 3869
  27369. }
  27370. },
  27371. frontRaven: {
  27372. height: math.unit(7 + 10 / 12, "feet"),
  27373. weight: math.unit(255, "lb"),
  27374. name: "Front (Raven)",
  27375. image: {
  27376. source: "./media/characters/xavier-thyme/front-raven.svg",
  27377. extra: 4385 / 3642,
  27378. bottom: 131 / 4517
  27379. }
  27380. },
  27381. },
  27382. [
  27383. {
  27384. name: "Normal",
  27385. height: math.unit(7 + 10 / 12, "feet"),
  27386. default: true
  27387. },
  27388. ]
  27389. ))
  27390. characterMakers.push(() => makeCharacter(
  27391. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27392. {
  27393. front: {
  27394. height: math.unit(1.6, "m"),
  27395. weight: math.unit(50, "kg"),
  27396. name: "Front",
  27397. image: {
  27398. source: "./media/characters/kiki/front.svg",
  27399. extra: 4682 / 3610,
  27400. bottom: 115 / 4777
  27401. }
  27402. },
  27403. },
  27404. [
  27405. {
  27406. name: "Normal",
  27407. height: math.unit(1.6, "meters"),
  27408. default: true
  27409. },
  27410. ]
  27411. ))
  27412. characterMakers.push(() => makeCharacter(
  27413. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27414. {
  27415. front: {
  27416. height: math.unit(50, "m"),
  27417. weight: math.unit(500, "tonnes"),
  27418. name: "Front",
  27419. image: {
  27420. source: "./media/characters/ryoko/front.svg",
  27421. extra: 4632 / 3926,
  27422. bottom: 193 / 4823
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(50, "meters"),
  27430. default: true
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27436. {
  27437. front: {
  27438. height: math.unit(30, "m"),
  27439. weight: math.unit(22, "tonnes"),
  27440. name: "Front",
  27441. image: {
  27442. source: "./media/characters/elio/front.svg",
  27443. extra: 4582 / 3720,
  27444. bottom: 236 / 4828
  27445. }
  27446. },
  27447. },
  27448. [
  27449. {
  27450. name: "Normal",
  27451. height: math.unit(30, "meters"),
  27452. default: true
  27453. },
  27454. ]
  27455. ))
  27456. characterMakers.push(() => makeCharacter(
  27457. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27458. {
  27459. front: {
  27460. height: math.unit(6 + 3 / 12, "feet"),
  27461. weight: math.unit(120, "lb"),
  27462. name: "Front",
  27463. image: {
  27464. source: "./media/characters/azura/front.svg",
  27465. extra: 1149 / 1135,
  27466. bottom: 45 / 1194
  27467. }
  27468. },
  27469. frontClothed: {
  27470. height: math.unit(6 + 3 / 12, "feet"),
  27471. weight: math.unit(120, "lb"),
  27472. name: "Front (Clothed)",
  27473. image: {
  27474. source: "./media/characters/azura/front-clothed.svg",
  27475. extra: 1149 / 1135,
  27476. bottom: 45 / 1194
  27477. }
  27478. },
  27479. },
  27480. [
  27481. {
  27482. name: "Normal",
  27483. height: math.unit(6 + 3 / 12, "feet"),
  27484. default: true
  27485. },
  27486. {
  27487. name: "Macro",
  27488. height: math.unit(20 + 6 / 12, "feet")
  27489. },
  27490. {
  27491. name: "Megamacro",
  27492. height: math.unit(12, "miles")
  27493. },
  27494. {
  27495. name: "Gigamacro",
  27496. height: math.unit(10000, "miles")
  27497. },
  27498. {
  27499. name: "Teramacro",
  27500. height: math.unit(900000, "miles")
  27501. },
  27502. ]
  27503. ))
  27504. characterMakers.push(() => makeCharacter(
  27505. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27506. {
  27507. front: {
  27508. height: math.unit(12, "feet"),
  27509. weight: math.unit(1, "ton"),
  27510. capacity: math.unit(660000, "gallons"),
  27511. name: "Front",
  27512. image: {
  27513. source: "./media/characters/zeus/front.svg",
  27514. extra: 5005 / 4717,
  27515. bottom: 363 / 5388
  27516. }
  27517. },
  27518. },
  27519. [
  27520. {
  27521. name: "Normal",
  27522. height: math.unit(12, "feet")
  27523. },
  27524. {
  27525. name: "Preferred Size",
  27526. height: math.unit(0.5, "miles"),
  27527. default: true
  27528. },
  27529. {
  27530. name: "Giga Horse",
  27531. height: math.unit(300, "miles")
  27532. },
  27533. {
  27534. name: "Riding Planets",
  27535. height: math.unit(30, "megameters")
  27536. },
  27537. {
  27538. name: "Cosmic Giant",
  27539. height: math.unit(3, "zettameters")
  27540. },
  27541. {
  27542. name: "Breeding God",
  27543. height: math.unit(9.92e22, "yottameters")
  27544. },
  27545. ]
  27546. ))
  27547. characterMakers.push(() => makeCharacter(
  27548. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27549. {
  27550. side: {
  27551. height: math.unit(9, "feet"),
  27552. weight: math.unit(1500, "kg"),
  27553. name: "Side",
  27554. image: {
  27555. source: "./media/characters/fang/side.svg",
  27556. extra: 924 / 866,
  27557. bottom: 47.5 / 972.3
  27558. }
  27559. },
  27560. },
  27561. [
  27562. {
  27563. name: "Normal",
  27564. height: math.unit(9, "feet"),
  27565. default: true
  27566. },
  27567. {
  27568. name: "Macro",
  27569. height: math.unit(75 + 6 / 12, "feet")
  27570. },
  27571. {
  27572. name: "Teramacro",
  27573. height: math.unit(50000, "miles")
  27574. },
  27575. ]
  27576. ))
  27577. characterMakers.push(() => makeCharacter(
  27578. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27579. {
  27580. front: {
  27581. height: math.unit(10, "feet"),
  27582. weight: math.unit(2, "tons"),
  27583. name: "Front",
  27584. image: {
  27585. source: "./media/characters/rekhit/front.svg",
  27586. extra: 2796 / 2590,
  27587. bottom: 225 / 3022
  27588. }
  27589. },
  27590. },
  27591. [
  27592. {
  27593. name: "Normal",
  27594. height: math.unit(10, "feet"),
  27595. default: true
  27596. },
  27597. {
  27598. name: "Macro",
  27599. height: math.unit(500, "feet")
  27600. },
  27601. ]
  27602. ))
  27603. characterMakers.push(() => makeCharacter(
  27604. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27605. {
  27606. front: {
  27607. height: math.unit(7 + 6.451 / 12, "feet"),
  27608. weight: math.unit(310, "lb"),
  27609. name: "Front",
  27610. image: {
  27611. source: "./media/characters/dahlia-verrick/front.svg",
  27612. extra: 1488 / 1365,
  27613. bottom: 6.2 / 1495
  27614. }
  27615. },
  27616. back: {
  27617. height: math.unit(7 + 6.451 / 12, "feet"),
  27618. weight: math.unit(310, "lb"),
  27619. name: "Back",
  27620. image: {
  27621. source: "./media/characters/dahlia-verrick/back.svg",
  27622. extra: 1472 / 1351,
  27623. bottom: 5.28 / 1477
  27624. }
  27625. },
  27626. frontBusiness: {
  27627. height: math.unit(7 + 6.451 / 12, "feet"),
  27628. weight: math.unit(200, "lb"),
  27629. name: "Front (Business)",
  27630. image: {
  27631. source: "./media/characters/dahlia-verrick/front-business.svg",
  27632. extra: 1478 / 1381,
  27633. bottom: 5.5 / 1484
  27634. }
  27635. },
  27636. frontCasual: {
  27637. height: math.unit(7 + 6.451 / 12, "feet"),
  27638. weight: math.unit(200, "lb"),
  27639. name: "Front (Casual)",
  27640. image: {
  27641. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27642. extra: 1478 / 1381,
  27643. bottom: 5.5 / 1484
  27644. }
  27645. },
  27646. },
  27647. [
  27648. {
  27649. name: "Travel-Sized",
  27650. height: math.unit(7.45, "inches")
  27651. },
  27652. {
  27653. name: "Normal",
  27654. height: math.unit(7 + 6.451 / 12, "feet"),
  27655. default: true
  27656. },
  27657. {
  27658. name: "Hitting the Town",
  27659. height: math.unit(37 + 8 / 12, "feet")
  27660. },
  27661. {
  27662. name: "Stomp in the Suburbs",
  27663. height: math.unit(964 + 9.728 / 12, "feet")
  27664. },
  27665. {
  27666. name: "Sit on the City",
  27667. height: math.unit(61747 + 10.592 / 12, "feet")
  27668. },
  27669. {
  27670. name: "Glomp the Globe",
  27671. height: math.unit(252919327 + 4.832 / 12, "feet")
  27672. },
  27673. ]
  27674. ))
  27675. characterMakers.push(() => makeCharacter(
  27676. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27677. {
  27678. front: {
  27679. height: math.unit(6 + 4 / 12, "feet"),
  27680. weight: math.unit(320, "lb"),
  27681. name: "Front",
  27682. image: {
  27683. source: "./media/characters/balina-mahigan/front.svg",
  27684. extra: 447 / 428,
  27685. bottom: 18 / 466
  27686. }
  27687. },
  27688. back: {
  27689. height: math.unit(6 + 4 / 12, "feet"),
  27690. weight: math.unit(320, "lb"),
  27691. name: "Back",
  27692. image: {
  27693. source: "./media/characters/balina-mahigan/back.svg",
  27694. extra: 445 / 428,
  27695. bottom: 4.07 / 448
  27696. }
  27697. },
  27698. arm: {
  27699. height: math.unit(1.88, "feet"),
  27700. name: "Arm",
  27701. image: {
  27702. source: "./media/characters/balina-mahigan/arm.svg"
  27703. }
  27704. },
  27705. backPort: {
  27706. height: math.unit(0.685, "feet"),
  27707. name: "Back Port",
  27708. image: {
  27709. source: "./media/characters/balina-mahigan/back-port.svg"
  27710. }
  27711. },
  27712. hoofpaw: {
  27713. height: math.unit(1.41, "feet"),
  27714. name: "Hoofpaw",
  27715. image: {
  27716. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27717. }
  27718. },
  27719. leftHandBack: {
  27720. height: math.unit(0.938, "feet"),
  27721. name: "Left Hand (Back)",
  27722. image: {
  27723. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27724. }
  27725. },
  27726. leftHandFront: {
  27727. height: math.unit(0.938, "feet"),
  27728. name: "Left Hand (Front)",
  27729. image: {
  27730. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27731. }
  27732. },
  27733. rightHandBack: {
  27734. height: math.unit(0.95, "feet"),
  27735. name: "Right Hand (Back)",
  27736. image: {
  27737. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27738. }
  27739. },
  27740. rightHandFront: {
  27741. height: math.unit(0.95, "feet"),
  27742. name: "Right Hand (Front)",
  27743. image: {
  27744. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27745. }
  27746. },
  27747. },
  27748. [
  27749. {
  27750. name: "Normal",
  27751. height: math.unit(6 + 4 / 12, "feet"),
  27752. default: true
  27753. },
  27754. ]
  27755. ))
  27756. characterMakers.push(() => makeCharacter(
  27757. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27758. {
  27759. front: {
  27760. height: math.unit(6, "feet"),
  27761. weight: math.unit(320, "lb"),
  27762. name: "Front",
  27763. image: {
  27764. source: "./media/characters/balina-mejeri/front.svg",
  27765. extra: 517 / 488,
  27766. bottom: 44.2 / 561
  27767. }
  27768. },
  27769. },
  27770. [
  27771. {
  27772. name: "Normal",
  27773. height: math.unit(6 + 4 / 12, "feet")
  27774. },
  27775. {
  27776. name: "Business",
  27777. height: math.unit(155, "feet"),
  27778. default: true
  27779. },
  27780. ]
  27781. ))
  27782. characterMakers.push(() => makeCharacter(
  27783. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27784. {
  27785. kneeling: {
  27786. height: math.unit(6 + 4 / 12, "feet"),
  27787. weight: math.unit(300 * 20, "lb"),
  27788. name: "Kneeling",
  27789. image: {
  27790. source: "./media/characters/balbarian/kneeling.svg",
  27791. extra: 922 / 862,
  27792. bottom: 42.4 / 965
  27793. }
  27794. },
  27795. },
  27796. [
  27797. {
  27798. name: "Normal",
  27799. height: math.unit(6 + 4 / 12, "feet")
  27800. },
  27801. {
  27802. name: "Treasured",
  27803. height: math.unit(18 + 9 / 12, "feet"),
  27804. default: true
  27805. },
  27806. {
  27807. name: "Macro",
  27808. height: math.unit(900, "feet")
  27809. },
  27810. ]
  27811. ))
  27812. characterMakers.push(() => makeCharacter(
  27813. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27814. {
  27815. front: {
  27816. height: math.unit(6 + 4 / 12, "feet"),
  27817. weight: math.unit(325, "lb"),
  27818. name: "Front",
  27819. image: {
  27820. source: "./media/characters/balina-amarini/front.svg",
  27821. extra: 415 / 403,
  27822. bottom: 19 / 433.4
  27823. }
  27824. },
  27825. back: {
  27826. height: math.unit(6 + 4 / 12, "feet"),
  27827. weight: math.unit(325, "lb"),
  27828. name: "Back",
  27829. image: {
  27830. source: "./media/characters/balina-amarini/back.svg",
  27831. extra: 415 / 403,
  27832. bottom: 13.5 / 432
  27833. }
  27834. },
  27835. overdrive: {
  27836. height: math.unit(6 + 4 / 12, "feet"),
  27837. weight: math.unit(400, "lb"),
  27838. name: "Overdrive",
  27839. image: {
  27840. source: "./media/characters/balina-amarini/overdrive.svg",
  27841. extra: 269 / 259,
  27842. bottom: 12 / 282
  27843. }
  27844. },
  27845. },
  27846. [
  27847. {
  27848. name: "Boom",
  27849. height: math.unit(9 + 10 / 12, "feet"),
  27850. default: true
  27851. },
  27852. {
  27853. name: "Macro",
  27854. height: math.unit(280, "feet")
  27855. },
  27856. ]
  27857. ))
  27858. characterMakers.push(() => makeCharacter(
  27859. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27860. {
  27861. goddess: {
  27862. height: math.unit(600, "feet"),
  27863. weight: math.unit(2000000, "tons"),
  27864. name: "Goddess",
  27865. image: {
  27866. source: "./media/characters/lady-kubwa/goddess.svg",
  27867. extra: 1240.5 / 1223,
  27868. bottom: 22 / 1263
  27869. }
  27870. },
  27871. goddesser: {
  27872. height: math.unit(900, "feet"),
  27873. weight: math.unit(20000000, "lb"),
  27874. name: "Goddess-er",
  27875. image: {
  27876. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27877. extra: 899 / 888,
  27878. bottom: 12.6 / 912
  27879. }
  27880. },
  27881. },
  27882. [
  27883. {
  27884. name: "Macro",
  27885. height: math.unit(600, "feet"),
  27886. default: true
  27887. },
  27888. {
  27889. name: "Megamacro",
  27890. height: math.unit(250, "miles")
  27891. },
  27892. ]
  27893. ))
  27894. characterMakers.push(() => makeCharacter(
  27895. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27896. {
  27897. front: {
  27898. height: math.unit(7 + 7 / 12, "feet"),
  27899. weight: math.unit(250, "lb"),
  27900. name: "Front",
  27901. image: {
  27902. source: "./media/characters/tala-grovehorn/front.svg",
  27903. extra: 2636 / 2525,
  27904. bottom: 147 / 2781
  27905. }
  27906. },
  27907. back: {
  27908. height: math.unit(7 + 7 / 12, "feet"),
  27909. weight: math.unit(250, "lb"),
  27910. name: "Back",
  27911. image: {
  27912. source: "./media/characters/tala-grovehorn/back.svg",
  27913. extra: 2635 / 2539,
  27914. bottom: 100 / 2732.8
  27915. }
  27916. },
  27917. mouth: {
  27918. height: math.unit(1.15, "feet"),
  27919. name: "Mouth",
  27920. image: {
  27921. source: "./media/characters/tala-grovehorn/mouth.svg"
  27922. }
  27923. },
  27924. dick: {
  27925. height: math.unit(2.36, "feet"),
  27926. name: "Dick",
  27927. image: {
  27928. source: "./media/characters/tala-grovehorn/dick.svg"
  27929. }
  27930. },
  27931. slit: {
  27932. height: math.unit(0.61, "feet"),
  27933. name: "Slit",
  27934. image: {
  27935. source: "./media/characters/tala-grovehorn/slit.svg"
  27936. }
  27937. },
  27938. },
  27939. [
  27940. ]
  27941. ))
  27942. characterMakers.push(() => makeCharacter(
  27943. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27944. {
  27945. front: {
  27946. height: math.unit(7 + 7 / 12, "feet"),
  27947. weight: math.unit(225, "lb"),
  27948. name: "Front",
  27949. image: {
  27950. source: "./media/characters/epona/front.svg",
  27951. extra: 2445 / 2290,
  27952. bottom: 251 / 2696
  27953. }
  27954. },
  27955. back: {
  27956. height: math.unit(7 + 7 / 12, "feet"),
  27957. weight: math.unit(225, "lb"),
  27958. name: "Back",
  27959. image: {
  27960. source: "./media/characters/epona/back.svg",
  27961. extra: 2546 / 2408,
  27962. bottom: 44 / 2589
  27963. }
  27964. },
  27965. genitals: {
  27966. height: math.unit(1.5, "feet"),
  27967. name: "Genitals",
  27968. image: {
  27969. source: "./media/characters/epona/genitals.svg"
  27970. }
  27971. },
  27972. },
  27973. [
  27974. {
  27975. name: "Normal",
  27976. height: math.unit(7 + 7 / 12, "feet"),
  27977. default: true
  27978. },
  27979. ]
  27980. ))
  27981. characterMakers.push(() => makeCharacter(
  27982. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27983. {
  27984. front: {
  27985. height: math.unit(7, "feet"),
  27986. weight: math.unit(518, "lb"),
  27987. name: "Front",
  27988. image: {
  27989. source: "./media/characters/avia-bloodbourn/front.svg",
  27990. extra: 1466 / 1350,
  27991. bottom: 65 / 1527
  27992. }
  27993. },
  27994. },
  27995. [
  27996. ]
  27997. ))
  27998. characterMakers.push(() => makeCharacter(
  27999. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28000. {
  28001. front: {
  28002. height: math.unit(9.35, "feet"),
  28003. weight: math.unit(600, "lb"),
  28004. name: "Front",
  28005. image: {
  28006. source: "./media/characters/amera/front.svg",
  28007. extra: 891 / 818,
  28008. bottom: 30 / 922.7
  28009. }
  28010. },
  28011. back: {
  28012. height: math.unit(9.35, "feet"),
  28013. weight: math.unit(600, "lb"),
  28014. name: "Back",
  28015. image: {
  28016. source: "./media/characters/amera/back.svg",
  28017. extra: 876 / 824,
  28018. bottom: 6.8 / 884
  28019. }
  28020. },
  28021. dick: {
  28022. height: math.unit(2.14, "feet"),
  28023. name: "Dick",
  28024. image: {
  28025. source: "./media/characters/amera/dick.svg"
  28026. }
  28027. },
  28028. },
  28029. [
  28030. {
  28031. name: "Normal",
  28032. height: math.unit(9.35, "feet"),
  28033. default: true
  28034. },
  28035. ]
  28036. ))
  28037. characterMakers.push(() => makeCharacter(
  28038. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28039. {
  28040. kneeling: {
  28041. height: math.unit(3 + 4 / 12, "feet"),
  28042. weight: math.unit(90, "lb"),
  28043. name: "Kneeling",
  28044. image: {
  28045. source: "./media/characters/rosewen/kneeling.svg",
  28046. extra: 1835 / 1571,
  28047. bottom: 27.7 / 1862
  28048. }
  28049. },
  28050. },
  28051. [
  28052. {
  28053. name: "Normal",
  28054. height: math.unit(3 + 4 / 12, "feet"),
  28055. default: true
  28056. },
  28057. ]
  28058. ))
  28059. characterMakers.push(() => makeCharacter(
  28060. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28061. {
  28062. front: {
  28063. height: math.unit(5 + 10 / 12, "feet"),
  28064. weight: math.unit(200, "lb"),
  28065. name: "Front",
  28066. image: {
  28067. source: "./media/characters/sabah/front.svg",
  28068. extra: 849 / 763,
  28069. bottom: 33.9 / 881
  28070. }
  28071. },
  28072. },
  28073. [
  28074. {
  28075. name: "Normal",
  28076. height: math.unit(5 + 10 / 12, "feet"),
  28077. default: true
  28078. },
  28079. ]
  28080. ))
  28081. characterMakers.push(() => makeCharacter(
  28082. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28083. {
  28084. front: {
  28085. height: math.unit(3 + 5 / 12, "feet"),
  28086. weight: math.unit(40, "kg"),
  28087. name: "Front",
  28088. image: {
  28089. source: "./media/characters/purple-flame/front.svg",
  28090. extra: 1577 / 1412,
  28091. bottom: 97 / 1694
  28092. }
  28093. },
  28094. frontDressed: {
  28095. height: math.unit(3 + 5 / 12, "feet"),
  28096. weight: math.unit(40, "kg"),
  28097. name: "Front (Dressed)",
  28098. image: {
  28099. source: "./media/characters/purple-flame/front-dressed.svg",
  28100. extra: 1577 / 1412,
  28101. bottom: 97 / 1694
  28102. }
  28103. },
  28104. headphones: {
  28105. height: math.unit(0.85, "feet"),
  28106. name: "Headphones",
  28107. image: {
  28108. source: "./media/characters/purple-flame/headphones.svg"
  28109. }
  28110. },
  28111. },
  28112. [
  28113. {
  28114. name: "Really Small",
  28115. height: math.unit(5, "cm")
  28116. },
  28117. {
  28118. name: "Micro",
  28119. height: math.unit(1 + 5 / 12, "feet")
  28120. },
  28121. {
  28122. name: "Normal",
  28123. height: math.unit(3 + 5 / 12, "feet"),
  28124. default: true
  28125. },
  28126. {
  28127. name: "Minimacro",
  28128. height: math.unit(125, "feet")
  28129. },
  28130. {
  28131. name: "Macro",
  28132. height: math.unit(0.5, "miles")
  28133. },
  28134. {
  28135. name: "Megamacro",
  28136. height: math.unit(50, "miles")
  28137. },
  28138. {
  28139. name: "Gigantic",
  28140. height: math.unit(750, "miles")
  28141. },
  28142. {
  28143. name: "Planetary",
  28144. height: math.unit(15000, "miles")
  28145. },
  28146. ]
  28147. ))
  28148. characterMakers.push(() => makeCharacter(
  28149. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28150. {
  28151. front: {
  28152. height: math.unit(14, "feet"),
  28153. weight: math.unit(959, "lb"),
  28154. name: "Front",
  28155. image: {
  28156. source: "./media/characters/arsenal/front.svg",
  28157. extra: 2357 / 2157,
  28158. bottom: 93 / 2458
  28159. }
  28160. },
  28161. },
  28162. [
  28163. {
  28164. name: "Normal",
  28165. height: math.unit(14, "feet"),
  28166. default: true
  28167. },
  28168. ]
  28169. ))
  28170. characterMakers.push(() => makeCharacter(
  28171. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28172. {
  28173. front: {
  28174. height: math.unit(6, "feet"),
  28175. weight: math.unit(150, "lb"),
  28176. name: "Front",
  28177. image: {
  28178. source: "./media/characters/adira/front.svg",
  28179. extra: 1078 / 1029,
  28180. bottom: 87 / 1166
  28181. }
  28182. },
  28183. },
  28184. [
  28185. {
  28186. name: "Micro",
  28187. height: math.unit(4, "inches"),
  28188. default: true
  28189. },
  28190. {
  28191. name: "Macro",
  28192. height: math.unit(50, "feet")
  28193. },
  28194. ]
  28195. ))
  28196. characterMakers.push(() => makeCharacter(
  28197. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28198. {
  28199. front: {
  28200. height: math.unit(16, "feet"),
  28201. weight: math.unit(1000, "lb"),
  28202. name: "Front",
  28203. image: {
  28204. source: "./media/characters/grim/front.svg",
  28205. extra: 622 / 614,
  28206. bottom: 18.1 / 642
  28207. }
  28208. },
  28209. back: {
  28210. height: math.unit(16, "feet"),
  28211. weight: math.unit(1000, "lb"),
  28212. name: "Back",
  28213. image: {
  28214. source: "./media/characters/grim/back.svg",
  28215. extra: 610.6 / 602,
  28216. bottom: 40.8 / 652
  28217. }
  28218. },
  28219. hunched: {
  28220. height: math.unit(9.75, "feet"),
  28221. weight: math.unit(1000, "lb"),
  28222. name: "Hunched",
  28223. image: {
  28224. source: "./media/characters/grim/hunched.svg",
  28225. extra: 304 / 297,
  28226. bottom: 35.4 / 394
  28227. }
  28228. },
  28229. },
  28230. [
  28231. {
  28232. name: "Normal",
  28233. height: math.unit(16, "feet"),
  28234. default: true
  28235. },
  28236. ]
  28237. ))
  28238. characterMakers.push(() => makeCharacter(
  28239. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28240. {
  28241. front: {
  28242. height: math.unit(2.3, "meters"),
  28243. weight: math.unit(300, "lb"),
  28244. name: "Front",
  28245. image: {
  28246. source: "./media/characters/sinja/front-sfw.svg",
  28247. extra: 1393 / 1294,
  28248. bottom: 70 / 1463
  28249. }
  28250. },
  28251. frontNsfw: {
  28252. height: math.unit(2.3, "meters"),
  28253. weight: math.unit(300, "lb"),
  28254. name: "Front (NSFW)",
  28255. image: {
  28256. source: "./media/characters/sinja/front-nsfw.svg",
  28257. extra: 1393 / 1294,
  28258. bottom: 70 / 1463
  28259. }
  28260. },
  28261. back: {
  28262. height: math.unit(2.3, "meters"),
  28263. weight: math.unit(300, "lb"),
  28264. name: "Back",
  28265. image: {
  28266. source: "./media/characters/sinja/back.svg",
  28267. extra: 1393 / 1294,
  28268. bottom: 70 / 1463
  28269. }
  28270. },
  28271. head: {
  28272. height: math.unit(1.771, "feet"),
  28273. name: "Head",
  28274. image: {
  28275. source: "./media/characters/sinja/head.svg"
  28276. }
  28277. },
  28278. slit: {
  28279. height: math.unit(0.8, "feet"),
  28280. name: "Slit",
  28281. image: {
  28282. source: "./media/characters/sinja/slit.svg"
  28283. }
  28284. },
  28285. },
  28286. [
  28287. {
  28288. name: "Normal",
  28289. height: math.unit(2.3, "meters")
  28290. },
  28291. {
  28292. name: "Macro",
  28293. height: math.unit(91, "meters"),
  28294. default: true
  28295. },
  28296. {
  28297. name: "Megamacro",
  28298. height: math.unit(91440, "meters")
  28299. },
  28300. {
  28301. name: "Gigamacro",
  28302. height: math.unit(60960000, "meters")
  28303. },
  28304. {
  28305. name: "Teramacro",
  28306. height: math.unit(9144000000, "meters")
  28307. },
  28308. ]
  28309. ))
  28310. characterMakers.push(() => makeCharacter(
  28311. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28312. {
  28313. front: {
  28314. height: math.unit(1.7, "meters"),
  28315. weight: math.unit(130, "lb"),
  28316. name: "Front",
  28317. image: {
  28318. source: "./media/characters/kyu/front.svg",
  28319. extra: 415 / 395,
  28320. bottom: 5 / 420
  28321. }
  28322. },
  28323. head: {
  28324. height: math.unit(1.75, "feet"),
  28325. name: "Head",
  28326. image: {
  28327. source: "./media/characters/kyu/head.svg"
  28328. }
  28329. },
  28330. foot: {
  28331. height: math.unit(0.81, "feet"),
  28332. name: "Foot",
  28333. image: {
  28334. source: "./media/characters/kyu/foot.svg"
  28335. }
  28336. },
  28337. },
  28338. [
  28339. {
  28340. name: "Normal",
  28341. height: math.unit(1.7, "meters")
  28342. },
  28343. {
  28344. name: "Macro",
  28345. height: math.unit(131, "feet"),
  28346. default: true
  28347. },
  28348. {
  28349. name: "Megamacro",
  28350. height: math.unit(91440, "meters")
  28351. },
  28352. {
  28353. name: "Gigamacro",
  28354. height: math.unit(60960000, "meters")
  28355. },
  28356. {
  28357. name: "Teramacro",
  28358. height: math.unit(9144000000, "meters")
  28359. },
  28360. ]
  28361. ))
  28362. characterMakers.push(() => makeCharacter(
  28363. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28364. {
  28365. front: {
  28366. height: math.unit(7 + 1 / 12, "feet"),
  28367. weight: math.unit(250, "lb"),
  28368. name: "Front",
  28369. image: {
  28370. source: "./media/characters/joey/front.svg",
  28371. extra: 1791 / 1537,
  28372. bottom: 28 / 1816
  28373. }
  28374. },
  28375. },
  28376. [
  28377. {
  28378. name: "Micro",
  28379. height: math.unit(3, "inches")
  28380. },
  28381. {
  28382. name: "Normal",
  28383. height: math.unit(7 + 1 / 12, "feet"),
  28384. default: true
  28385. },
  28386. ]
  28387. ))
  28388. characterMakers.push(() => makeCharacter(
  28389. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28390. {
  28391. front: {
  28392. height: math.unit(165, "cm"),
  28393. weight: math.unit(140, "lb"),
  28394. name: "Front",
  28395. image: {
  28396. source: "./media/characters/sam-evans/front.svg",
  28397. extra: 3417 / 3230,
  28398. bottom: 41.3 / 3417
  28399. }
  28400. },
  28401. frontSixTails: {
  28402. height: math.unit(165, "cm"),
  28403. weight: math.unit(140, "lb"),
  28404. name: "Front-six-tails",
  28405. image: {
  28406. source: "./media/characters/sam-evans/front-six-tails.svg",
  28407. extra: 3417 / 3230,
  28408. bottom: 41.3 / 3417
  28409. }
  28410. },
  28411. back: {
  28412. height: math.unit(165, "cm"),
  28413. weight: math.unit(140, "lb"),
  28414. name: "Back",
  28415. image: {
  28416. source: "./media/characters/sam-evans/back.svg",
  28417. extra: 3227 / 3032,
  28418. bottom: 6.8 / 3234
  28419. }
  28420. },
  28421. face: {
  28422. height: math.unit(0.68, "feet"),
  28423. name: "Face",
  28424. image: {
  28425. source: "./media/characters/sam-evans/face.svg"
  28426. }
  28427. },
  28428. },
  28429. [
  28430. {
  28431. name: "Normal",
  28432. height: math.unit(165, "cm"),
  28433. default: true
  28434. },
  28435. {
  28436. name: "Macro",
  28437. height: math.unit(100, "meters")
  28438. },
  28439. {
  28440. name: "Macro+",
  28441. height: math.unit(800, "meters")
  28442. },
  28443. {
  28444. name: "Macro++",
  28445. height: math.unit(3, "km")
  28446. },
  28447. {
  28448. name: "Macro+++",
  28449. height: math.unit(30, "km")
  28450. },
  28451. ]
  28452. ))
  28453. characterMakers.push(() => makeCharacter(
  28454. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28455. {
  28456. front: {
  28457. height: math.unit(10, "feet"),
  28458. weight: math.unit(750, "lb"),
  28459. name: "Front",
  28460. image: {
  28461. source: "./media/characters/juliet-a/front.svg",
  28462. extra: 1766 / 1720,
  28463. bottom: 43 / 1809
  28464. }
  28465. },
  28466. back: {
  28467. height: math.unit(10, "feet"),
  28468. weight: math.unit(750, "lb"),
  28469. name: "Back",
  28470. image: {
  28471. source: "./media/characters/juliet-a/back.svg",
  28472. extra: 1781 / 1734,
  28473. bottom: 35 / 1810,
  28474. }
  28475. },
  28476. },
  28477. [
  28478. {
  28479. name: "Normal",
  28480. height: math.unit(10, "feet"),
  28481. default: true
  28482. },
  28483. {
  28484. name: "Dragon Form",
  28485. height: math.unit(250, "feet")
  28486. },
  28487. {
  28488. name: "Macro",
  28489. height: math.unit(1000, "feet")
  28490. },
  28491. {
  28492. name: "Megamacro",
  28493. height: math.unit(10000, "feet")
  28494. }
  28495. ]
  28496. ))
  28497. characterMakers.push(() => makeCharacter(
  28498. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28499. {
  28500. regular: {
  28501. height: math.unit(7 + 3 / 12, "feet"),
  28502. weight: math.unit(260, "lb"),
  28503. name: "Regular",
  28504. image: {
  28505. source: "./media/characters/wild/regular.svg",
  28506. extra: 97.45 / 92,
  28507. bottom: 6.8 / 104.3
  28508. }
  28509. },
  28510. biggums: {
  28511. height: math.unit(8 + 6 / 12, "feet"),
  28512. weight: math.unit(425, "lb"),
  28513. name: "Biggums",
  28514. image: {
  28515. source: "./media/characters/wild/biggums.svg",
  28516. extra: 97.45 / 92,
  28517. bottom: 7.5 / 132.34
  28518. }
  28519. },
  28520. mawRegular: {
  28521. height: math.unit(1.24, "feet"),
  28522. name: "Maw (Regular)",
  28523. image: {
  28524. source: "./media/characters/wild/maw.svg"
  28525. }
  28526. },
  28527. mawBiggums: {
  28528. height: math.unit(1.47, "feet"),
  28529. name: "Maw (Biggums)",
  28530. image: {
  28531. source: "./media/characters/wild/maw.svg"
  28532. }
  28533. },
  28534. },
  28535. [
  28536. {
  28537. name: "Normal",
  28538. height: math.unit(7 + 3 / 12, "feet"),
  28539. default: true
  28540. },
  28541. ]
  28542. ))
  28543. characterMakers.push(() => makeCharacter(
  28544. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28545. {
  28546. front: {
  28547. height: math.unit(2.5, "meters"),
  28548. weight: math.unit(200, "kg"),
  28549. name: "Front",
  28550. image: {
  28551. source: "./media/characters/vidar/front.svg",
  28552. extra: 2994 / 2795,
  28553. bottom: 56 / 3061
  28554. }
  28555. },
  28556. back: {
  28557. height: math.unit(2.5, "meters"),
  28558. weight: math.unit(200, "kg"),
  28559. name: "Back",
  28560. image: {
  28561. source: "./media/characters/vidar/back.svg",
  28562. extra: 3131 / 2928,
  28563. bottom: 13.5 / 3141.5
  28564. }
  28565. },
  28566. feral: {
  28567. height: math.unit(2.5, "meters"),
  28568. weight: math.unit(2000, "kg"),
  28569. name: "Feral",
  28570. image: {
  28571. source: "./media/characters/vidar/feral.svg",
  28572. extra: 2790 / 1765,
  28573. bottom: 6 / 2796
  28574. }
  28575. },
  28576. },
  28577. [
  28578. {
  28579. name: "Normal",
  28580. height: math.unit(2.5, "meters"),
  28581. default: true
  28582. },
  28583. {
  28584. name: "Macro",
  28585. height: math.unit(100, "meters")
  28586. },
  28587. ]
  28588. ))
  28589. characterMakers.push(() => makeCharacter(
  28590. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28591. {
  28592. front: {
  28593. height: math.unit(5 + 9 / 12, "feet"),
  28594. weight: math.unit(120, "lb"),
  28595. name: "Front",
  28596. image: {
  28597. source: "./media/characters/ash/front.svg",
  28598. extra: 2189 / 1961,
  28599. bottom: 5.2 / 2194
  28600. }
  28601. },
  28602. },
  28603. [
  28604. {
  28605. name: "Normal",
  28606. height: math.unit(5 + 9 / 12, "feet"),
  28607. default: true
  28608. },
  28609. ]
  28610. ))
  28611. characterMakers.push(() => makeCharacter(
  28612. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28613. {
  28614. front: {
  28615. height: math.unit(9, "feet"),
  28616. weight: math.unit(10000, "lb"),
  28617. name: "Front",
  28618. image: {
  28619. source: "./media/characters/gygabite/front.svg",
  28620. bottom: 31.7 / 537.8,
  28621. extra: 505 / 370
  28622. }
  28623. },
  28624. },
  28625. [
  28626. {
  28627. name: "Normal",
  28628. height: math.unit(9, "feet"),
  28629. default: true
  28630. },
  28631. ]
  28632. ))
  28633. characterMakers.push(() => makeCharacter(
  28634. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28635. {
  28636. front: {
  28637. height: math.unit(12, "feet"),
  28638. weight: math.unit(4000, "lb"),
  28639. name: "Front",
  28640. image: {
  28641. source: "./media/characters/p0tat0/front.svg",
  28642. extra: 1065 / 921,
  28643. bottom: 55.7 / 1121.25
  28644. }
  28645. },
  28646. },
  28647. [
  28648. {
  28649. name: "Normal",
  28650. height: math.unit(12, "feet"),
  28651. default: true
  28652. },
  28653. ]
  28654. ))
  28655. characterMakers.push(() => makeCharacter(
  28656. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28657. {
  28658. side: {
  28659. height: math.unit(6.5, "feet"),
  28660. weight: math.unit(800, "lb"),
  28661. name: "Side",
  28662. image: {
  28663. source: "./media/characters/dusk/side.svg",
  28664. extra: 615 / 373,
  28665. bottom: 53 / 664
  28666. }
  28667. },
  28668. sitting: {
  28669. height: math.unit(7, "feet"),
  28670. weight: math.unit(800, "lb"),
  28671. name: "Sitting",
  28672. image: {
  28673. source: "./media/characters/dusk/sitting.svg",
  28674. extra: 753 / 425,
  28675. bottom: 33 / 774
  28676. }
  28677. },
  28678. head: {
  28679. height: math.unit(6.1, "feet"),
  28680. name: "Head",
  28681. image: {
  28682. source: "./media/characters/dusk/head.svg"
  28683. }
  28684. },
  28685. },
  28686. [
  28687. {
  28688. name: "Normal",
  28689. height: math.unit(7, "feet"),
  28690. default: true
  28691. },
  28692. ]
  28693. ))
  28694. characterMakers.push(() => makeCharacter(
  28695. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28696. {
  28697. front: {
  28698. height: math.unit(15, "feet"),
  28699. weight: math.unit(7000, "lb"),
  28700. name: "Front",
  28701. image: {
  28702. source: "./media/characters/jay-direwolf/front.svg",
  28703. extra: 1810 / 1732,
  28704. bottom: 66 / 1892
  28705. }
  28706. },
  28707. },
  28708. [
  28709. {
  28710. name: "Normal",
  28711. height: math.unit(15, "feet"),
  28712. default: true
  28713. },
  28714. ]
  28715. ))
  28716. characterMakers.push(() => makeCharacter(
  28717. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28718. {
  28719. front: {
  28720. height: math.unit(4 + 9 / 12, "feet"),
  28721. weight: math.unit(130, "lb"),
  28722. name: "Front",
  28723. image: {
  28724. source: "./media/characters/anchovie/front.svg",
  28725. extra: 382 / 350,
  28726. bottom: 25 / 409
  28727. }
  28728. },
  28729. back: {
  28730. height: math.unit(4 + 9 / 12, "feet"),
  28731. weight: math.unit(130, "lb"),
  28732. name: "Back",
  28733. image: {
  28734. source: "./media/characters/anchovie/back.svg",
  28735. extra: 385 / 352,
  28736. bottom: 16.6 / 402
  28737. }
  28738. },
  28739. frontDressed: {
  28740. height: math.unit(4 + 9 / 12, "feet"),
  28741. weight: math.unit(130, "lb"),
  28742. name: "Front (Dressed)",
  28743. image: {
  28744. source: "./media/characters/anchovie/front-dressed.svg",
  28745. extra: 382 / 350,
  28746. bottom: 25 / 409
  28747. }
  28748. },
  28749. backDressed: {
  28750. height: math.unit(4 + 9 / 12, "feet"),
  28751. weight: math.unit(130, "lb"),
  28752. name: "Back (Dressed)",
  28753. image: {
  28754. source: "./media/characters/anchovie/back-dressed.svg",
  28755. extra: 385 / 352,
  28756. bottom: 16.6 / 402
  28757. }
  28758. },
  28759. },
  28760. [
  28761. {
  28762. name: "Micro",
  28763. height: math.unit(6.4, "inches")
  28764. },
  28765. {
  28766. name: "Normal",
  28767. height: math.unit(4 + 9 / 12, "feet"),
  28768. default: true
  28769. },
  28770. ]
  28771. ))
  28772. characterMakers.push(() => makeCharacter(
  28773. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28774. {
  28775. front: {
  28776. height: math.unit(2, "meters"),
  28777. weight: math.unit(180, "lb"),
  28778. name: "Front",
  28779. image: {
  28780. source: "./media/characters/acidrenamon/front.svg",
  28781. extra: 987 / 890,
  28782. bottom: 22.8 / 1009
  28783. }
  28784. },
  28785. back: {
  28786. height: math.unit(2, "meters"),
  28787. weight: math.unit(180, "lb"),
  28788. name: "Back",
  28789. image: {
  28790. source: "./media/characters/acidrenamon/back.svg",
  28791. extra: 983 / 891,
  28792. bottom: 8.4 / 992
  28793. }
  28794. },
  28795. head: {
  28796. height: math.unit(1.92, "feet"),
  28797. name: "Head",
  28798. image: {
  28799. source: "./media/characters/acidrenamon/head.svg"
  28800. }
  28801. },
  28802. rump: {
  28803. height: math.unit(1.72, "feet"),
  28804. name: "Rump",
  28805. image: {
  28806. source: "./media/characters/acidrenamon/rump.svg"
  28807. }
  28808. },
  28809. tail: {
  28810. height: math.unit(4.2, "feet"),
  28811. name: "Tail",
  28812. image: {
  28813. source: "./media/characters/acidrenamon/tail.svg"
  28814. }
  28815. },
  28816. },
  28817. [
  28818. {
  28819. name: "Normal",
  28820. height: math.unit(2, "meters"),
  28821. default: true
  28822. },
  28823. {
  28824. name: "Minimacro",
  28825. height: math.unit(7, "meters")
  28826. },
  28827. {
  28828. name: "Macro",
  28829. height: math.unit(200, "meters")
  28830. },
  28831. {
  28832. name: "Gigamacro",
  28833. height: math.unit(0.2, "earths")
  28834. },
  28835. ]
  28836. ))
  28837. characterMakers.push(() => makeCharacter(
  28838. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28839. {
  28840. front: {
  28841. height: math.unit(152, "feet"),
  28842. name: "Front",
  28843. image: {
  28844. source: "./media/characters/kenzie-lee/front.svg",
  28845. extra: 1869/1774,
  28846. bottom: 128/1997
  28847. }
  28848. },
  28849. side: {
  28850. height: math.unit(86, "feet"),
  28851. name: "Side",
  28852. image: {
  28853. source: "./media/characters/kenzie-lee/side.svg",
  28854. extra: 930/815,
  28855. bottom: 177/1107
  28856. }
  28857. },
  28858. paw: {
  28859. height: math.unit(15, "feet"),
  28860. name: "Paw",
  28861. image: {
  28862. source: "./media/characters/kenzie-lee/paw.svg"
  28863. }
  28864. },
  28865. },
  28866. [
  28867. {
  28868. name: "Kenzie Flea",
  28869. height: math.unit(2, "mm"),
  28870. default: true
  28871. },
  28872. {
  28873. name: "Micro",
  28874. height: math.unit(2, "inches")
  28875. },
  28876. {
  28877. name: "Normal",
  28878. height: math.unit(152, "feet")
  28879. },
  28880. {
  28881. name: "Megamacro",
  28882. height: math.unit(7, "miles")
  28883. },
  28884. {
  28885. name: "Gigamacro",
  28886. height: math.unit(8000, "miles")
  28887. },
  28888. ]
  28889. ))
  28890. characterMakers.push(() => makeCharacter(
  28891. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28892. {
  28893. front: {
  28894. height: math.unit(6, "feet"),
  28895. name: "Front",
  28896. image: {
  28897. source: "./media/characters/withers/front.svg",
  28898. extra: 1935/1760,
  28899. bottom: 72/2007
  28900. }
  28901. },
  28902. back: {
  28903. height: math.unit(6, "feet"),
  28904. name: "Back",
  28905. image: {
  28906. source: "./media/characters/withers/back.svg",
  28907. extra: 1944/1792,
  28908. bottom: 12/1956
  28909. }
  28910. },
  28911. dressed: {
  28912. height: math.unit(6, "feet"),
  28913. name: "Dressed",
  28914. image: {
  28915. source: "./media/characters/withers/dressed.svg",
  28916. extra: 1937/1765,
  28917. bottom: 73/2010
  28918. }
  28919. },
  28920. phase1: {
  28921. height: math.unit(1.1, "feet"),
  28922. name: "Phase 1",
  28923. image: {
  28924. source: "./media/characters/withers/phase-1.svg",
  28925. extra: 1885/1232,
  28926. bottom: 0/1885
  28927. }
  28928. },
  28929. phase2: {
  28930. height: math.unit(1.05, "feet"),
  28931. name: "Phase 2",
  28932. image: {
  28933. source: "./media/characters/withers/phase-2.svg",
  28934. extra: 1792/1090,
  28935. bottom: 0/1792
  28936. }
  28937. },
  28938. partyWipe: {
  28939. height: math.unit(1.1, "feet"),
  28940. name: "Party Wipe",
  28941. image: {
  28942. source: "./media/characters/withers/party-wipe.svg",
  28943. extra: 1864/1207,
  28944. bottom: 0/1864
  28945. }
  28946. },
  28947. },
  28948. [
  28949. {
  28950. name: "Macro",
  28951. height: math.unit(167, "feet"),
  28952. default: true
  28953. },
  28954. {
  28955. name: "Megamacro",
  28956. height: math.unit(15, "miles")
  28957. }
  28958. ]
  28959. ))
  28960. characterMakers.push(() => makeCharacter(
  28961. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28962. {
  28963. front: {
  28964. height: math.unit(6 + 7 / 12, "feet"),
  28965. weight: math.unit(250, "lb"),
  28966. name: "Front",
  28967. image: {
  28968. source: "./media/characters/nemoskii/front.svg",
  28969. extra: 2270 / 1734,
  28970. bottom: 86 / 2354
  28971. }
  28972. },
  28973. back: {
  28974. height: math.unit(6 + 7 / 12, "feet"),
  28975. weight: math.unit(250, "lb"),
  28976. name: "Back",
  28977. image: {
  28978. source: "./media/characters/nemoskii/back.svg",
  28979. extra: 1845 / 1788,
  28980. bottom: 10.5 / 1852
  28981. }
  28982. },
  28983. head: {
  28984. height: math.unit(1.31, "feet"),
  28985. name: "Head",
  28986. image: {
  28987. source: "./media/characters/nemoskii/head.svg"
  28988. }
  28989. },
  28990. },
  28991. [
  28992. {
  28993. name: "Micro",
  28994. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28995. },
  28996. {
  28997. name: "Normal",
  28998. height: math.unit(6 + 7 / 12, "feet"),
  28999. default: true
  29000. },
  29001. {
  29002. name: "Macro",
  29003. height: math.unit((6 + 7 / 12) * 150, "feet")
  29004. },
  29005. {
  29006. name: "Macro+",
  29007. height: math.unit((6 + 7 / 12) * 500, "feet")
  29008. },
  29009. {
  29010. name: "Megamacro",
  29011. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29012. },
  29013. ]
  29014. ))
  29015. characterMakers.push(() => makeCharacter(
  29016. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29017. {
  29018. front: {
  29019. height: math.unit(1, "mile"),
  29020. weight: math.unit(265261.9, "lb"),
  29021. name: "Front",
  29022. image: {
  29023. source: "./media/characters/shui/front.svg",
  29024. extra: 1633 / 1564,
  29025. bottom: 91.5 / 1726
  29026. }
  29027. },
  29028. },
  29029. [
  29030. {
  29031. name: "Macro",
  29032. height: math.unit(1, "mile"),
  29033. default: true
  29034. },
  29035. ]
  29036. ))
  29037. characterMakers.push(() => makeCharacter(
  29038. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29039. {
  29040. front: {
  29041. height: math.unit(12 + 6 / 12, "feet"),
  29042. weight: math.unit(1342, "lb"),
  29043. name: "Front",
  29044. image: {
  29045. source: "./media/characters/arokh-takakura/front.svg",
  29046. extra: 1089 / 1043,
  29047. bottom: 77.4 / 1176.7
  29048. }
  29049. },
  29050. back: {
  29051. height: math.unit(12 + 6 / 12, "feet"),
  29052. weight: math.unit(1342, "lb"),
  29053. name: "Back",
  29054. image: {
  29055. source: "./media/characters/arokh-takakura/back.svg",
  29056. extra: 1046 / 1019,
  29057. bottom: 102 / 1150
  29058. }
  29059. },
  29060. },
  29061. [
  29062. {
  29063. name: "Big",
  29064. height: math.unit(12 + 6 / 12, "feet"),
  29065. default: true
  29066. },
  29067. ]
  29068. ))
  29069. characterMakers.push(() => makeCharacter(
  29070. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29071. {
  29072. front: {
  29073. height: math.unit(5 + 6 / 12, "feet"),
  29074. weight: math.unit(150, "lb"),
  29075. name: "Front",
  29076. image: {
  29077. source: "./media/characters/theo/front.svg",
  29078. extra: 1184 / 1131,
  29079. bottom: 7.4 / 1191
  29080. }
  29081. },
  29082. },
  29083. [
  29084. {
  29085. name: "Micro",
  29086. height: math.unit(5, "inches")
  29087. },
  29088. {
  29089. name: "Normal",
  29090. height: math.unit(5 + 6 / 12, "feet"),
  29091. default: true
  29092. },
  29093. ]
  29094. ))
  29095. characterMakers.push(() => makeCharacter(
  29096. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29097. {
  29098. front: {
  29099. height: math.unit(5 + 9 / 12, "feet"),
  29100. weight: math.unit(130, "lb"),
  29101. name: "Front",
  29102. image: {
  29103. source: "./media/characters/cecelia-swift/front.svg",
  29104. extra: 502 / 484,
  29105. bottom: 23 / 523
  29106. }
  29107. },
  29108. back: {
  29109. height: math.unit(5 + 9 / 12, "feet"),
  29110. weight: math.unit(130, "lb"),
  29111. name: "Back",
  29112. image: {
  29113. source: "./media/characters/cecelia-swift/back.svg",
  29114. extra: 499 / 485,
  29115. bottom: 12 / 511
  29116. }
  29117. },
  29118. head: {
  29119. height: math.unit(0.90, "feet"),
  29120. name: "Head",
  29121. image: {
  29122. source: "./media/characters/cecelia-swift/head.svg"
  29123. }
  29124. },
  29125. rump: {
  29126. height: math.unit(1.75, "feet"),
  29127. name: "Rump",
  29128. image: {
  29129. source: "./media/characters/cecelia-swift/rump.svg"
  29130. }
  29131. },
  29132. },
  29133. [
  29134. {
  29135. name: "Normal",
  29136. height: math.unit(5 + 9 / 12, "feet"),
  29137. default: true
  29138. },
  29139. {
  29140. name: "Big",
  29141. height: math.unit(50, "feet")
  29142. },
  29143. {
  29144. name: "Macro",
  29145. height: math.unit(100, "feet")
  29146. },
  29147. {
  29148. name: "Macro+",
  29149. height: math.unit(500, "feet")
  29150. },
  29151. {
  29152. name: "Macro++",
  29153. height: math.unit(1000, "feet")
  29154. },
  29155. ]
  29156. ))
  29157. characterMakers.push(() => makeCharacter(
  29158. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29159. {
  29160. front: {
  29161. height: math.unit(6, "feet"),
  29162. weight: math.unit(150, "lb"),
  29163. name: "Front",
  29164. image: {
  29165. source: "./media/characters/kaunan/front.svg",
  29166. extra: 2890 / 2523,
  29167. bottom: 49 / 2939
  29168. }
  29169. },
  29170. },
  29171. [
  29172. {
  29173. name: "Macro",
  29174. height: math.unit(150, "feet"),
  29175. default: true
  29176. },
  29177. ]
  29178. ))
  29179. characterMakers.push(() => makeCharacter(
  29180. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29181. {
  29182. dressed: {
  29183. height: math.unit(175, "cm"),
  29184. weight: math.unit(60, "kg"),
  29185. name: "Dressed",
  29186. image: {
  29187. source: "./media/characters/fei/dressed.svg",
  29188. extra: 1402/1278,
  29189. bottom: 27/1429
  29190. }
  29191. },
  29192. nude: {
  29193. height: math.unit(175, "cm"),
  29194. weight: math.unit(60, "kg"),
  29195. name: "Nude",
  29196. image: {
  29197. source: "./media/characters/fei/nude.svg",
  29198. extra: 1402/1278,
  29199. bottom: 27/1429
  29200. }
  29201. },
  29202. heels: {
  29203. height: math.unit(0.466, "feet"),
  29204. name: "Heels",
  29205. image: {
  29206. source: "./media/characters/fei/heels.svg",
  29207. extra: 156/152,
  29208. bottom: 28/184
  29209. }
  29210. },
  29211. },
  29212. [
  29213. {
  29214. name: "Mortal",
  29215. height: math.unit(175, "cm")
  29216. },
  29217. {
  29218. name: "Normal",
  29219. height: math.unit(3500, "m")
  29220. },
  29221. {
  29222. name: "Stroll",
  29223. height: math.unit(18.4, "km"),
  29224. default: true
  29225. },
  29226. {
  29227. name: "Showoff",
  29228. height: math.unit(175, "km")
  29229. },
  29230. ]
  29231. ))
  29232. characterMakers.push(() => makeCharacter(
  29233. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29234. {
  29235. front: {
  29236. height: math.unit(7, "feet"),
  29237. weight: math.unit(1000, "kg"),
  29238. name: "Front",
  29239. image: {
  29240. source: "./media/characters/edrax/front.svg",
  29241. extra: 2838 / 2550,
  29242. bottom: 130 / 2968
  29243. }
  29244. },
  29245. },
  29246. [
  29247. {
  29248. name: "Small",
  29249. height: math.unit(7, "feet")
  29250. },
  29251. {
  29252. name: "Normal",
  29253. height: math.unit(1500, "meters")
  29254. },
  29255. {
  29256. name: "Mega",
  29257. height: math.unit(12000000, "km"),
  29258. default: true
  29259. },
  29260. {
  29261. name: "Megamacro",
  29262. height: math.unit(10600000, "lightyears")
  29263. },
  29264. {
  29265. name: "Hypermacro",
  29266. height: math.unit(256, "yottameters")
  29267. },
  29268. ]
  29269. ))
  29270. characterMakers.push(() => makeCharacter(
  29271. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29272. {
  29273. front: {
  29274. height: math.unit(10, "feet"),
  29275. weight: math.unit(750, "lb"),
  29276. name: "Front",
  29277. image: {
  29278. source: "./media/characters/clove/front.svg",
  29279. extra: 1918/1751,
  29280. bottom: 52/1970
  29281. }
  29282. },
  29283. back: {
  29284. height: math.unit(10, "feet"),
  29285. weight: math.unit(750, "lb"),
  29286. name: "Back",
  29287. image: {
  29288. source: "./media/characters/clove/back.svg",
  29289. extra: 1912/1747,
  29290. bottom: 50/1962
  29291. }
  29292. },
  29293. },
  29294. [
  29295. {
  29296. name: "Normal",
  29297. height: math.unit(10, "feet"),
  29298. default: true
  29299. },
  29300. ]
  29301. ))
  29302. characterMakers.push(() => makeCharacter(
  29303. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29304. {
  29305. front: {
  29306. height: math.unit(4, "feet"),
  29307. weight: math.unit(50, "lb"),
  29308. name: "Front",
  29309. image: {
  29310. source: "./media/characters/alex-rabbit/front.svg",
  29311. extra: 507 / 458,
  29312. bottom: 18.5 / 527
  29313. }
  29314. },
  29315. back: {
  29316. height: math.unit(4, "feet"),
  29317. weight: math.unit(50, "lb"),
  29318. name: "Back",
  29319. image: {
  29320. source: "./media/characters/alex-rabbit/back.svg",
  29321. extra: 502 / 460,
  29322. bottom: 18.9 / 521
  29323. }
  29324. },
  29325. },
  29326. [
  29327. {
  29328. name: "Normal",
  29329. height: math.unit(4, "feet"),
  29330. default: true
  29331. },
  29332. ]
  29333. ))
  29334. characterMakers.push(() => makeCharacter(
  29335. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29336. {
  29337. front: {
  29338. height: math.unit(1 + 3 / 12, "feet"),
  29339. weight: math.unit(80, "lb"),
  29340. name: "Front",
  29341. image: {
  29342. source: "./media/characters/zander-rose/front.svg",
  29343. extra: 916 / 797,
  29344. bottom: 17 / 933
  29345. }
  29346. },
  29347. back: {
  29348. height: math.unit(1 + 3 / 12, "feet"),
  29349. weight: math.unit(80, "lb"),
  29350. name: "Back",
  29351. image: {
  29352. source: "./media/characters/zander-rose/back.svg",
  29353. extra: 903 / 779,
  29354. bottom: 31 / 934
  29355. }
  29356. },
  29357. },
  29358. [
  29359. {
  29360. name: "Normal",
  29361. height: math.unit(1 + 3 / 12, "feet"),
  29362. default: true
  29363. },
  29364. ]
  29365. ))
  29366. characterMakers.push(() => makeCharacter(
  29367. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29368. {
  29369. anthro: {
  29370. height: math.unit(6, "feet"),
  29371. weight: math.unit(150, "lb"),
  29372. name: "Anthro",
  29373. image: {
  29374. source: "./media/characters/razz/anthro.svg",
  29375. extra: 1437 / 1343,
  29376. bottom: 48 / 1485
  29377. }
  29378. },
  29379. feral: {
  29380. height: math.unit(6, "feet"),
  29381. weight: math.unit(150, "lb"),
  29382. name: "Feral",
  29383. image: {
  29384. source: "./media/characters/razz/feral.svg",
  29385. extra: 2569 / 1385,
  29386. bottom: 95 / 2664
  29387. }
  29388. },
  29389. },
  29390. [
  29391. {
  29392. name: "Normal",
  29393. height: math.unit(6, "feet"),
  29394. default: true
  29395. },
  29396. ]
  29397. ))
  29398. characterMakers.push(() => makeCharacter(
  29399. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29400. {
  29401. front: {
  29402. height: math.unit(9 + 4 / 12, "feet"),
  29403. weight: math.unit(500, "lb"),
  29404. name: "Front",
  29405. image: {
  29406. source: "./media/characters/morrigan/front.svg",
  29407. extra: 2707 / 2579,
  29408. bottom: 156 / 2863
  29409. }
  29410. },
  29411. },
  29412. [
  29413. {
  29414. name: "Normal",
  29415. height: math.unit(9 + 4 / 12, "feet"),
  29416. default: true
  29417. },
  29418. ]
  29419. ))
  29420. characterMakers.push(() => makeCharacter(
  29421. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29422. {
  29423. front: {
  29424. height: math.unit(5, "stories"),
  29425. weight: math.unit(4000, "lb"),
  29426. name: "Front",
  29427. image: {
  29428. source: "./media/characters/jenene/front.svg",
  29429. extra: 1780 / 1710,
  29430. bottom: 57 / 1837
  29431. }
  29432. },
  29433. },
  29434. [
  29435. {
  29436. name: "Normal",
  29437. height: math.unit(5, "stories"),
  29438. default: true
  29439. },
  29440. ]
  29441. ))
  29442. characterMakers.push(() => makeCharacter(
  29443. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29444. {
  29445. taurSfw: {
  29446. height: math.unit(10, "meters"),
  29447. weight: math.unit(17500, "kg"),
  29448. name: "Taur",
  29449. image: {
  29450. source: "./media/characters/faey/taur-sfw.svg",
  29451. extra: 1200 / 968,
  29452. bottom: 41 / 1241
  29453. }
  29454. },
  29455. chestmaw: {
  29456. height: math.unit(2.01, "meters"),
  29457. name: "Chestmaw",
  29458. image: {
  29459. source: "./media/characters/faey/chestmaw.svg"
  29460. }
  29461. },
  29462. foot: {
  29463. height: math.unit(2.43, "meters"),
  29464. name: "Foot",
  29465. image: {
  29466. source: "./media/characters/faey/foot.svg"
  29467. }
  29468. },
  29469. jaws: {
  29470. height: math.unit(1.66, "meters"),
  29471. name: "Jaws",
  29472. image: {
  29473. source: "./media/characters/faey/jaws.svg"
  29474. }
  29475. },
  29476. tongues: {
  29477. height: math.unit(2.01, "meters"),
  29478. name: "Tongues",
  29479. image: {
  29480. source: "./media/characters/faey/tongues.svg"
  29481. }
  29482. },
  29483. },
  29484. [
  29485. {
  29486. name: "Small",
  29487. height: math.unit(10, "meters"),
  29488. default: true
  29489. },
  29490. {
  29491. name: "Big",
  29492. height: math.unit(500000, "km")
  29493. },
  29494. ]
  29495. ))
  29496. characterMakers.push(() => makeCharacter(
  29497. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29498. {
  29499. front: {
  29500. height: math.unit(7, "feet"),
  29501. weight: math.unit(275, "lb"),
  29502. name: "Front",
  29503. image: {
  29504. source: "./media/characters/roku/front.svg",
  29505. extra: 903 / 878,
  29506. bottom: 37 / 940
  29507. }
  29508. },
  29509. },
  29510. [
  29511. {
  29512. name: "Normal",
  29513. height: math.unit(7, "feet"),
  29514. default: true
  29515. },
  29516. {
  29517. name: "Macro",
  29518. height: math.unit(500, "feet")
  29519. },
  29520. {
  29521. name: "Megamacro",
  29522. height: math.unit(200, "miles")
  29523. },
  29524. ]
  29525. ))
  29526. characterMakers.push(() => makeCharacter(
  29527. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29528. {
  29529. front: {
  29530. height: math.unit(6 + 2 / 12, "feet"),
  29531. weight: math.unit(150, "lb"),
  29532. name: "Front",
  29533. image: {
  29534. source: "./media/characters/lira/front.svg",
  29535. extra: 1727 / 1605,
  29536. bottom: 26 / 1753
  29537. }
  29538. },
  29539. back: {
  29540. height: math.unit(6 + 2 / 12, "feet"),
  29541. weight: math.unit(150, "lb"),
  29542. name: "Back",
  29543. image: {
  29544. source: "./media/characters/lira/back.svg",
  29545. extra: 1713/1621,
  29546. bottom: 20/1733
  29547. }
  29548. },
  29549. hand: {
  29550. height: math.unit(0.75, "feet"),
  29551. name: "Hand",
  29552. image: {
  29553. source: "./media/characters/lira/hand.svg"
  29554. }
  29555. },
  29556. maw: {
  29557. height: math.unit(0.65, "feet"),
  29558. name: "Maw",
  29559. image: {
  29560. source: "./media/characters/lira/maw.svg"
  29561. }
  29562. },
  29563. pawDigi: {
  29564. height: math.unit(1.6, "feet"),
  29565. name: "Paw Digi",
  29566. image: {
  29567. source: "./media/characters/lira/paw-digi.svg"
  29568. }
  29569. },
  29570. pawPlanti: {
  29571. height: math.unit(1.4, "feet"),
  29572. name: "Paw Planti",
  29573. image: {
  29574. source: "./media/characters/lira/paw-planti.svg"
  29575. }
  29576. },
  29577. },
  29578. [
  29579. {
  29580. name: "Normal",
  29581. height: math.unit(6 + 2 / 12, "feet"),
  29582. default: true
  29583. },
  29584. {
  29585. name: "Macro",
  29586. height: math.unit(100, "feet")
  29587. },
  29588. {
  29589. name: "Macro²",
  29590. height: math.unit(1600, "feet")
  29591. },
  29592. {
  29593. name: "Planetary",
  29594. height: math.unit(20, "earths")
  29595. },
  29596. ]
  29597. ))
  29598. characterMakers.push(() => makeCharacter(
  29599. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29600. {
  29601. front: {
  29602. height: math.unit(6, "feet"),
  29603. weight: math.unit(150, "lb"),
  29604. name: "Front",
  29605. image: {
  29606. source: "./media/characters/hadjet/front.svg",
  29607. extra: 1480 / 1346,
  29608. bottom: 26 / 1506
  29609. }
  29610. },
  29611. frontNsfw: {
  29612. height: math.unit(6, "feet"),
  29613. weight: math.unit(150, "lb"),
  29614. name: "Front (NSFW)",
  29615. image: {
  29616. source: "./media/characters/hadjet/front-nsfw.svg",
  29617. extra: 1440 / 1358,
  29618. bottom: 52 / 1492
  29619. }
  29620. },
  29621. },
  29622. [
  29623. {
  29624. name: "Macro",
  29625. height: math.unit(10, "stories"),
  29626. default: true
  29627. },
  29628. {
  29629. name: "Megamacro",
  29630. height: math.unit(1.5, "miles")
  29631. },
  29632. {
  29633. name: "Megamacro+",
  29634. height: math.unit(5, "miles")
  29635. },
  29636. ]
  29637. ))
  29638. characterMakers.push(() => makeCharacter(
  29639. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29640. {
  29641. side: {
  29642. height: math.unit(106, "feet"),
  29643. weight: math.unit(500, "tonnes"),
  29644. name: "Side",
  29645. image: {
  29646. source: "./media/characters/kodran/side.svg",
  29647. extra: 553 / 480,
  29648. bottom: 33 / 586
  29649. }
  29650. },
  29651. front: {
  29652. height: math.unit(132, "feet"),
  29653. weight: math.unit(500, "tonnes"),
  29654. name: "Front",
  29655. image: {
  29656. source: "./media/characters/kodran/front.svg",
  29657. extra: 667 / 643,
  29658. bottom: 42 / 709
  29659. }
  29660. },
  29661. flying: {
  29662. height: math.unit(350, "feet"),
  29663. weight: math.unit(500, "tonnes"),
  29664. name: "Flying",
  29665. image: {
  29666. source: "./media/characters/kodran/flying.svg"
  29667. }
  29668. },
  29669. foot: {
  29670. height: math.unit(33, "feet"),
  29671. name: "Foot",
  29672. image: {
  29673. source: "./media/characters/kodran/foot.svg"
  29674. }
  29675. },
  29676. footFront: {
  29677. height: math.unit(19, "feet"),
  29678. name: "Foot (Front)",
  29679. image: {
  29680. source: "./media/characters/kodran/foot-front.svg",
  29681. extra: 261 / 261,
  29682. bottom: 91 / 352
  29683. }
  29684. },
  29685. headFront: {
  29686. height: math.unit(53, "feet"),
  29687. name: "Head (Front)",
  29688. image: {
  29689. source: "./media/characters/kodran/head-front.svg"
  29690. }
  29691. },
  29692. headSide: {
  29693. height: math.unit(65, "feet"),
  29694. name: "Head (Side)",
  29695. image: {
  29696. source: "./media/characters/kodran/head-side.svg"
  29697. }
  29698. },
  29699. throat: {
  29700. height: math.unit(79, "feet"),
  29701. name: "Throat",
  29702. image: {
  29703. source: "./media/characters/kodran/throat.svg"
  29704. }
  29705. },
  29706. },
  29707. [
  29708. {
  29709. name: "Large",
  29710. height: math.unit(106, "feet"),
  29711. default: true
  29712. },
  29713. ]
  29714. ))
  29715. characterMakers.push(() => makeCharacter(
  29716. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29717. {
  29718. side: {
  29719. height: math.unit(11, "feet"),
  29720. weight: math.unit(150, "lb"),
  29721. name: "Side",
  29722. image: {
  29723. source: "./media/characters/pyxaron/side.svg",
  29724. extra: 305 / 195,
  29725. bottom: 17 / 322
  29726. }
  29727. },
  29728. },
  29729. [
  29730. {
  29731. name: "Normal",
  29732. height: math.unit(11, "feet"),
  29733. default: true
  29734. },
  29735. ]
  29736. ))
  29737. characterMakers.push(() => makeCharacter(
  29738. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29739. {
  29740. front: {
  29741. height: math.unit(6, "feet"),
  29742. weight: math.unit(150, "lb"),
  29743. name: "Front",
  29744. image: {
  29745. source: "./media/characters/meep/front.svg",
  29746. extra: 88 / 80,
  29747. bottom: 6 / 94
  29748. }
  29749. },
  29750. },
  29751. [
  29752. {
  29753. name: "Fun Sized",
  29754. height: math.unit(2, "inches"),
  29755. default: true
  29756. },
  29757. {
  29758. name: "Friend Sized",
  29759. height: math.unit(8, "inches")
  29760. },
  29761. ]
  29762. ))
  29763. characterMakers.push(() => makeCharacter(
  29764. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29765. {
  29766. front: {
  29767. height: math.unit(15, "feet"),
  29768. weight: math.unit(2500, "lb"),
  29769. name: "Front",
  29770. image: {
  29771. source: "./media/characters/holly-rabbit/front.svg",
  29772. extra: 1433 / 1233,
  29773. bottom: 125 / 1558
  29774. }
  29775. },
  29776. dick: {
  29777. height: math.unit(4.6, "feet"),
  29778. name: "Dick",
  29779. image: {
  29780. source: "./media/characters/holly-rabbit/dick.svg"
  29781. }
  29782. },
  29783. },
  29784. [
  29785. {
  29786. name: "Normal",
  29787. height: math.unit(15, "feet"),
  29788. default: true
  29789. },
  29790. {
  29791. name: "Macro",
  29792. height: math.unit(250, "feet")
  29793. },
  29794. {
  29795. name: "Macro+",
  29796. height: math.unit(2500, "feet")
  29797. },
  29798. ]
  29799. ))
  29800. characterMakers.push(() => makeCharacter(
  29801. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29802. {
  29803. front: {
  29804. height: math.unit(3.02, "meters"),
  29805. weight: math.unit(500, "kg"),
  29806. name: "Front",
  29807. image: {
  29808. source: "./media/characters/drena/front.svg",
  29809. extra: 282 / 243,
  29810. bottom: 8 / 290
  29811. }
  29812. },
  29813. side: {
  29814. height: math.unit(3.02, "meters"),
  29815. weight: math.unit(500, "kg"),
  29816. name: "Side",
  29817. image: {
  29818. source: "./media/characters/drena/side.svg",
  29819. extra: 280 / 245,
  29820. bottom: 10 / 290
  29821. }
  29822. },
  29823. back: {
  29824. height: math.unit(3.02, "meters"),
  29825. weight: math.unit(500, "kg"),
  29826. name: "Back",
  29827. image: {
  29828. source: "./media/characters/drena/back.svg",
  29829. extra: 278 / 243,
  29830. bottom: 2 / 280
  29831. }
  29832. },
  29833. foot: {
  29834. height: math.unit(0.75, "meters"),
  29835. name: "Foot",
  29836. image: {
  29837. source: "./media/characters/drena/foot.svg"
  29838. }
  29839. },
  29840. maw: {
  29841. height: math.unit(0.82, "meters"),
  29842. name: "Maw",
  29843. image: {
  29844. source: "./media/characters/drena/maw.svg"
  29845. }
  29846. },
  29847. eating: {
  29848. height: math.unit(0.75, "meters"),
  29849. name: "Eating",
  29850. image: {
  29851. source: "./media/characters/drena/eating.svg"
  29852. }
  29853. },
  29854. rump: {
  29855. height: math.unit(0.93, "meters"),
  29856. name: "Rump",
  29857. image: {
  29858. source: "./media/characters/drena/rump.svg"
  29859. }
  29860. },
  29861. },
  29862. [
  29863. {
  29864. name: "Normal",
  29865. height: math.unit(3.02, "meters"),
  29866. default: true
  29867. },
  29868. ]
  29869. ))
  29870. characterMakers.push(() => makeCharacter(
  29871. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29872. {
  29873. front: {
  29874. height: math.unit(6 + 4 / 12, "feet"),
  29875. weight: math.unit(250, "lb"),
  29876. name: "Front",
  29877. image: {
  29878. source: "./media/characters/remmyzilla/front.svg",
  29879. extra: 4033 / 3588,
  29880. bottom: 123 / 4156
  29881. }
  29882. },
  29883. back: {
  29884. height: math.unit(6 + 4 / 12, "feet"),
  29885. weight: math.unit(250, "lb"),
  29886. name: "Back",
  29887. image: {
  29888. source: "./media/characters/remmyzilla/back.svg",
  29889. extra: 2687 / 2555,
  29890. bottom: 48 / 2735
  29891. }
  29892. },
  29893. paw: {
  29894. height: math.unit(1.73, "feet"),
  29895. name: "Paw",
  29896. image: {
  29897. source: "./media/characters/remmyzilla/paw.svg"
  29898. },
  29899. extraAttributes: {
  29900. "toeSize": {
  29901. name: "Toe Size",
  29902. power: 2,
  29903. type: "area",
  29904. base: math.unit(0.0035, "m^2")
  29905. },
  29906. "padSize": {
  29907. name: "Pad Size",
  29908. power: 2,
  29909. type: "area",
  29910. base: math.unit(0.015, "m^2")
  29911. },
  29912. "pawsize": {
  29913. name: "Paw Size",
  29914. power: 2,
  29915. type: "area",
  29916. base: math.unit(0.072, "m^2")
  29917. },
  29918. }
  29919. },
  29920. maw: {
  29921. height: math.unit(1.73, "feet"),
  29922. name: "Maw",
  29923. image: {
  29924. source: "./media/characters/remmyzilla/maw.svg"
  29925. }
  29926. },
  29927. },
  29928. [
  29929. {
  29930. name: "Normal",
  29931. height: math.unit(6 + 4 / 12, "feet")
  29932. },
  29933. {
  29934. name: "Minimacro",
  29935. height: math.unit(12 + 8 / 12, "feet")
  29936. },
  29937. {
  29938. name: "Normal",
  29939. height: math.unit(640, "feet"),
  29940. default: true
  29941. },
  29942. {
  29943. name: "Megamacro",
  29944. height: math.unit(6400, "feet")
  29945. },
  29946. {
  29947. name: "Gigamacro",
  29948. height: math.unit(64000, "miles")
  29949. },
  29950. ]
  29951. ))
  29952. characterMakers.push(() => makeCharacter(
  29953. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29954. {
  29955. front: {
  29956. height: math.unit(2.5, "meters"),
  29957. weight: math.unit(300, "lb"),
  29958. name: "Front",
  29959. image: {
  29960. source: "./media/characters/lawrence/front.svg",
  29961. extra: 357 / 335,
  29962. bottom: 30 / 387
  29963. }
  29964. },
  29965. back: {
  29966. height: math.unit(2.5, "meters"),
  29967. weight: math.unit(300, "lb"),
  29968. name: "Back",
  29969. image: {
  29970. source: "./media/characters/lawrence/back.svg",
  29971. extra: 357 / 338,
  29972. bottom: 16 / 373
  29973. }
  29974. },
  29975. head: {
  29976. height: math.unit(0.9, "meter"),
  29977. name: "Head",
  29978. image: {
  29979. source: "./media/characters/lawrence/head.svg"
  29980. }
  29981. },
  29982. maw: {
  29983. height: math.unit(0.7, "meter"),
  29984. name: "Maw",
  29985. image: {
  29986. source: "./media/characters/lawrence/maw.svg"
  29987. }
  29988. },
  29989. footBottom: {
  29990. height: math.unit(0.5, "meter"),
  29991. name: "Foot (Bottom)",
  29992. image: {
  29993. source: "./media/characters/lawrence/foot-bottom.svg"
  29994. }
  29995. },
  29996. footTop: {
  29997. height: math.unit(0.5, "meter"),
  29998. name: "Foot (Top)",
  29999. image: {
  30000. source: "./media/characters/lawrence/foot-top.svg"
  30001. }
  30002. },
  30003. },
  30004. [
  30005. {
  30006. name: "Normal",
  30007. height: math.unit(2.5, "meters"),
  30008. default: true
  30009. },
  30010. {
  30011. name: "Macro",
  30012. height: math.unit(95, "meters")
  30013. },
  30014. {
  30015. name: "Megamacro",
  30016. height: math.unit(150, "km")
  30017. },
  30018. ]
  30019. ))
  30020. characterMakers.push(() => makeCharacter(
  30021. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30022. {
  30023. front: {
  30024. height: math.unit(4.2, "meters"),
  30025. name: "Front",
  30026. image: {
  30027. source: "./media/characters/sydney/front.svg",
  30028. extra: 1323 / 1277,
  30029. bottom: 111 / 1434
  30030. }
  30031. },
  30032. },
  30033. [
  30034. {
  30035. name: "Normal",
  30036. height: math.unit(4.2, "meters"),
  30037. default: true
  30038. },
  30039. ]
  30040. ))
  30041. characterMakers.push(() => makeCharacter(
  30042. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30043. {
  30044. back: {
  30045. height: math.unit(201, "feet"),
  30046. name: "Back",
  30047. image: {
  30048. source: "./media/characters/jessica/back.svg",
  30049. extra: 273 / 259,
  30050. bottom: 7 / 280
  30051. }
  30052. },
  30053. },
  30054. [
  30055. {
  30056. name: "Normal",
  30057. height: math.unit(201, "feet"),
  30058. default: true
  30059. },
  30060. {
  30061. name: "Megamacro",
  30062. height: math.unit(8, "miles")
  30063. },
  30064. ]
  30065. ))
  30066. characterMakers.push(() => makeCharacter(
  30067. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30068. {
  30069. side: {
  30070. height: math.unit(5.6, "m"),
  30071. weight: math.unit(8000, "kg"),
  30072. name: "Side",
  30073. image: {
  30074. source: "./media/characters/victoria/side.svg",
  30075. extra: 1542/1229,
  30076. bottom: 124/1666
  30077. }
  30078. },
  30079. maw: {
  30080. height: math.unit(7.14, "feet"),
  30081. name: "Maw",
  30082. image: {
  30083. source: "./media/characters/victoria/maw.svg"
  30084. }
  30085. },
  30086. },
  30087. [
  30088. {
  30089. name: "Normal",
  30090. height: math.unit(5.6, "m"),
  30091. default: true
  30092. },
  30093. ]
  30094. ))
  30095. characterMakers.push(() => makeCharacter(
  30096. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30097. {
  30098. front: {
  30099. height: math.unit(5 + 6 / 12, "feet"),
  30100. name: "Front",
  30101. image: {
  30102. source: "./media/characters/cat/front.svg",
  30103. extra: 1449/1295,
  30104. bottom: 34/1483
  30105. },
  30106. form: "cat",
  30107. default: true
  30108. },
  30109. back: {
  30110. height: math.unit(5 + 6 / 12, "feet"),
  30111. name: "Back",
  30112. image: {
  30113. source: "./media/characters/cat/back.svg",
  30114. extra: 1466/1301,
  30115. bottom: 19/1485
  30116. },
  30117. form: "cat"
  30118. },
  30119. taur: {
  30120. height: math.unit(7, "feet"),
  30121. name: "Taur",
  30122. image: {
  30123. source: "./media/characters/cat/taur.svg",
  30124. extra: 1389/1233,
  30125. bottom: 83/1472
  30126. },
  30127. form: "taur",
  30128. default: true
  30129. },
  30130. lucarioFront: {
  30131. height: math.unit(4, "feet"),
  30132. name: "Lucario (Front)",
  30133. image: {
  30134. source: "./media/characters/cat/lucario-front.svg",
  30135. extra: 1149/1019,
  30136. bottom: 84/1233
  30137. },
  30138. form: "lucario",
  30139. default: true
  30140. },
  30141. lucarioBack: {
  30142. height: math.unit(4, "feet"),
  30143. name: "Lucario (Back)",
  30144. image: {
  30145. source: "./media/characters/cat/lucario-back.svg",
  30146. extra: 1190/1059,
  30147. bottom: 33/1223
  30148. },
  30149. form: "lucario"
  30150. },
  30151. megaLucario: {
  30152. height: math.unit(4, "feet"),
  30153. name: "Mega Lucario",
  30154. image: {
  30155. source: "./media/characters/cat/mega-lucario.svg",
  30156. extra: 1515 / 1319,
  30157. bottom: 63 / 1578
  30158. },
  30159. form: "lucario"
  30160. },
  30161. nickit: {
  30162. height: math.unit(2, "feet"),
  30163. name: "Nickit",
  30164. image: {
  30165. source: "./media/characters/cat/nickit.svg",
  30166. extra: 1980 / 1585,
  30167. bottom: 102 / 2082
  30168. },
  30169. form: "nickit",
  30170. default: true
  30171. },
  30172. lopunnyFront: {
  30173. height: math.unit(5, "feet"),
  30174. name: "Lopunny (Front)",
  30175. image: {
  30176. source: "./media/characters/cat/lopunny-front.svg",
  30177. extra: 1782 / 1469,
  30178. bottom: 38 / 1820
  30179. },
  30180. form: "lopunny",
  30181. default: true
  30182. },
  30183. lopunnyBack: {
  30184. height: math.unit(5, "feet"),
  30185. name: "Lopunny (Back)",
  30186. image: {
  30187. source: "./media/characters/cat/lopunny-back.svg",
  30188. extra: 1660 / 1490,
  30189. bottom: 25 / 1685
  30190. },
  30191. form: "lopunny"
  30192. },
  30193. },
  30194. [
  30195. {
  30196. name: "Really small",
  30197. height: math.unit(1, "nm")
  30198. },
  30199. {
  30200. name: "Micro",
  30201. height: math.unit(5, "inches")
  30202. },
  30203. {
  30204. name: "Normal",
  30205. height: math.unit(5 + 6 / 12, "feet"),
  30206. default: true
  30207. },
  30208. {
  30209. name: "Macro",
  30210. height: math.unit(50, "feet")
  30211. },
  30212. {
  30213. name: "Macro+",
  30214. height: math.unit(150, "feet")
  30215. },
  30216. {
  30217. name: "Megamacro",
  30218. height: math.unit(100, "miles")
  30219. },
  30220. ]
  30221. ))
  30222. characterMakers.push(() => makeCharacter(
  30223. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30224. {
  30225. front: {
  30226. height: math.unit(63.4, "meters"),
  30227. weight: math.unit(3.28349e+6, "kilograms"),
  30228. name: "Front",
  30229. image: {
  30230. source: "./media/characters/kirina-violet/front.svg",
  30231. extra: 2812 / 2725,
  30232. bottom: 0 / 2812
  30233. }
  30234. },
  30235. back: {
  30236. height: math.unit(63.4, "meters"),
  30237. weight: math.unit(3.28349e+6, "kilograms"),
  30238. name: "Back",
  30239. image: {
  30240. source: "./media/characters/kirina-violet/back.svg",
  30241. extra: 2812 / 2725,
  30242. bottom: 0 / 2812
  30243. }
  30244. },
  30245. mouth: {
  30246. height: math.unit(4.35, "meters"),
  30247. name: "Mouth",
  30248. image: {
  30249. source: "./media/characters/kirina-violet/mouth.svg"
  30250. }
  30251. },
  30252. paw: {
  30253. height: math.unit(5.6, "meters"),
  30254. name: "Paw",
  30255. image: {
  30256. source: "./media/characters/kirina-violet/paw.svg"
  30257. }
  30258. },
  30259. tail: {
  30260. height: math.unit(18, "meters"),
  30261. name: "Tail",
  30262. image: {
  30263. source: "./media/characters/kirina-violet/tail.svg"
  30264. }
  30265. },
  30266. },
  30267. [
  30268. {
  30269. name: "Macro",
  30270. height: math.unit(63.4, "meters"),
  30271. default: true
  30272. },
  30273. ]
  30274. ))
  30275. characterMakers.push(() => makeCharacter(
  30276. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30277. {
  30278. front: {
  30279. height: math.unit(75, "feet"),
  30280. name: "Front",
  30281. image: {
  30282. source: "./media/characters/cat-gigachu/front.svg",
  30283. extra: 1239/1027,
  30284. bottom: 32/1271
  30285. }
  30286. },
  30287. back: {
  30288. height: math.unit(75, "feet"),
  30289. name: "Back",
  30290. image: {
  30291. source: "./media/characters/cat-gigachu/back.svg",
  30292. extra: 1229/1030,
  30293. bottom: 9/1238
  30294. }
  30295. },
  30296. },
  30297. [
  30298. {
  30299. name: "Dynamax",
  30300. height: math.unit(75, "feet"),
  30301. default: true
  30302. },
  30303. ]
  30304. ))
  30305. characterMakers.push(() => makeCharacter(
  30306. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30307. {
  30308. front: {
  30309. height: math.unit(6, "feet"),
  30310. weight: math.unit(150, "lb"),
  30311. name: "Front",
  30312. image: {
  30313. source: "./media/characters/sfaiyan/front.svg",
  30314. extra: 999 / 978,
  30315. bottom: 5 / 1004
  30316. }
  30317. },
  30318. },
  30319. [
  30320. {
  30321. name: "Normal",
  30322. height: math.unit(1.82, "meters")
  30323. },
  30324. {
  30325. name: "Giant",
  30326. height: math.unit(2.27, "km"),
  30327. default: true
  30328. },
  30329. ]
  30330. ))
  30331. characterMakers.push(() => makeCharacter(
  30332. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30333. {
  30334. front: {
  30335. height: math.unit(179, "cm"),
  30336. weight: math.unit(100, "kg"),
  30337. name: "Front",
  30338. image: {
  30339. source: "./media/characters/raunehkeli/front.svg",
  30340. extra: 1934 / 1926,
  30341. bottom: 0 / 1934
  30342. }
  30343. },
  30344. },
  30345. [
  30346. {
  30347. name: "Normal",
  30348. height: math.unit(179, "cm")
  30349. },
  30350. {
  30351. name: "Maximum",
  30352. height: math.unit(575, "meters"),
  30353. default: true
  30354. },
  30355. ]
  30356. ))
  30357. characterMakers.push(() => makeCharacter(
  30358. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30359. {
  30360. front: {
  30361. height: math.unit(6, "feet"),
  30362. weight: math.unit(150, "lb"),
  30363. name: "Front",
  30364. image: {
  30365. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30366. extra: 2625 / 2518,
  30367. bottom: 60 / 2685
  30368. }
  30369. },
  30370. },
  30371. [
  30372. {
  30373. name: "Normal",
  30374. height: math.unit(6 + 2 / 12, "feet")
  30375. },
  30376. {
  30377. name: "Macro",
  30378. height: math.unit(1180, "feet"),
  30379. default: true
  30380. },
  30381. ]
  30382. ))
  30383. characterMakers.push(() => makeCharacter(
  30384. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30385. {
  30386. front: {
  30387. height: math.unit(5 + 6 / 12, "feet"),
  30388. weight: math.unit(108, "lb"),
  30389. name: "Front",
  30390. image: {
  30391. source: "./media/characters/lilith-zott/front.svg",
  30392. extra: 2510 / 2238,
  30393. bottom: 100 / 2610
  30394. }
  30395. },
  30396. frontDressed: {
  30397. height: math.unit(5 + 6 / 12, "feet"),
  30398. weight: math.unit(108, "lb"),
  30399. name: "Front (Dressed)",
  30400. image: {
  30401. source: "./media/characters/lilith-zott/front-dressed.svg",
  30402. extra: 2510 / 2238,
  30403. bottom: 100 / 2610
  30404. }
  30405. },
  30406. },
  30407. [
  30408. {
  30409. name: "Normal",
  30410. height: math.unit(5 + 6 / 12, "feet")
  30411. },
  30412. {
  30413. name: "Macro",
  30414. height: math.unit(1030, "feet"),
  30415. default: true
  30416. },
  30417. ]
  30418. ))
  30419. characterMakers.push(() => makeCharacter(
  30420. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30421. {
  30422. front: {
  30423. height: math.unit(6, "feet"),
  30424. weight: math.unit(150, "lb"),
  30425. name: "Front",
  30426. image: {
  30427. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30428. extra: 2567 / 2435,
  30429. bottom: 39 / 2606
  30430. }
  30431. },
  30432. frontSuper: {
  30433. height: math.unit(6, "feet"),
  30434. name: "Front (Super)",
  30435. image: {
  30436. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30437. extra: 2567 / 2435,
  30438. bottom: 39 / 2606
  30439. }
  30440. },
  30441. },
  30442. [
  30443. {
  30444. name: "Normal",
  30445. height: math.unit(5 + 10 / 12, "feet")
  30446. },
  30447. {
  30448. name: "Macro",
  30449. height: math.unit(1100, "feet"),
  30450. default: true
  30451. },
  30452. ]
  30453. ))
  30454. characterMakers.push(() => makeCharacter(
  30455. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30456. {
  30457. front: {
  30458. height: math.unit(100, "miles"),
  30459. name: "Front",
  30460. image: {
  30461. source: "./media/characters/sona/front.svg",
  30462. extra: 2433 / 2201,
  30463. bottom: 53 / 2486
  30464. }
  30465. },
  30466. foot: {
  30467. height: math.unit(16.1, "miles"),
  30468. name: "Foot",
  30469. image: {
  30470. source: "./media/characters/sona/foot.svg"
  30471. }
  30472. },
  30473. },
  30474. [
  30475. {
  30476. name: "Macro",
  30477. height: math.unit(100, "miles"),
  30478. default: true
  30479. },
  30480. ]
  30481. ))
  30482. characterMakers.push(() => makeCharacter(
  30483. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30484. {
  30485. front: {
  30486. height: math.unit(6, "feet"),
  30487. weight: math.unit(150, "lb"),
  30488. name: "Front",
  30489. image: {
  30490. source: "./media/characters/bailey/front.svg",
  30491. extra: 1778 / 1724,
  30492. bottom: 30 / 1808
  30493. }
  30494. },
  30495. },
  30496. [
  30497. {
  30498. name: "Micro",
  30499. height: math.unit(4, "inches")
  30500. },
  30501. {
  30502. name: "Normal",
  30503. height: math.unit(5 + 5 / 12, "feet"),
  30504. default: true
  30505. },
  30506. {
  30507. name: "Macro",
  30508. height: math.unit(250, "feet")
  30509. },
  30510. {
  30511. name: "Megamacro",
  30512. height: math.unit(100, "miles")
  30513. },
  30514. ]
  30515. ))
  30516. characterMakers.push(() => makeCharacter(
  30517. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30518. {
  30519. front: {
  30520. height: math.unit(5 + 2 / 12, "feet"),
  30521. weight: math.unit(120, "lb"),
  30522. name: "Front",
  30523. image: {
  30524. source: "./media/characters/snaps/front.svg",
  30525. extra: 2370 / 2177,
  30526. bottom: 48 / 2418
  30527. }
  30528. },
  30529. back: {
  30530. height: math.unit(5 + 2 / 12, "feet"),
  30531. weight: math.unit(120, "lb"),
  30532. name: "Back",
  30533. image: {
  30534. source: "./media/characters/snaps/back.svg",
  30535. extra: 2408 / 2258,
  30536. bottom: 15 / 2423
  30537. }
  30538. },
  30539. },
  30540. [
  30541. {
  30542. name: "Micro",
  30543. height: math.unit(9, "inches")
  30544. },
  30545. {
  30546. name: "Normal",
  30547. height: math.unit(5 + 2 / 12, "feet"),
  30548. default: true
  30549. },
  30550. {
  30551. name: "Mini Macro",
  30552. height: math.unit(10, "feet")
  30553. },
  30554. ]
  30555. ))
  30556. characterMakers.push(() => makeCharacter(
  30557. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30558. {
  30559. front: {
  30560. height: math.unit(1.8, "meters"),
  30561. weight: math.unit(85, "kg"),
  30562. name: "Front",
  30563. image: {
  30564. source: "./media/characters/azteck/front.svg",
  30565. extra: 2815 / 2625,
  30566. bottom: 89 / 2904
  30567. }
  30568. },
  30569. back: {
  30570. height: math.unit(1.8, "meters"),
  30571. weight: math.unit(85, "kg"),
  30572. name: "Back",
  30573. image: {
  30574. source: "./media/characters/azteck/back.svg",
  30575. extra: 2856 / 2648,
  30576. bottom: 85 / 2941
  30577. }
  30578. },
  30579. frontDressed: {
  30580. height: math.unit(1.8, "meters"),
  30581. weight: math.unit(85, "kg"),
  30582. name: "Front (Dressed)",
  30583. image: {
  30584. source: "./media/characters/azteck/front-dressed.svg",
  30585. extra: 2147 / 2003,
  30586. bottom: 68 / 2215
  30587. }
  30588. },
  30589. head: {
  30590. height: math.unit(0.47, "meters"),
  30591. weight: math.unit(85, "kg"),
  30592. name: "Head",
  30593. image: {
  30594. source: "./media/characters/azteck/head.svg"
  30595. }
  30596. },
  30597. },
  30598. [
  30599. {
  30600. name: "Bite sized",
  30601. height: math.unit(16, "cm")
  30602. },
  30603. {
  30604. name: "Normal",
  30605. height: math.unit(1.8, "meters"),
  30606. default: true
  30607. },
  30608. ]
  30609. ))
  30610. characterMakers.push(() => makeCharacter(
  30611. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30612. {
  30613. front: {
  30614. height: math.unit(6, "feet"),
  30615. weight: math.unit(150, "lb"),
  30616. name: "Front",
  30617. image: {
  30618. source: "./media/characters/pidge/front.svg",
  30619. extra: 1936/1820,
  30620. bottom: 0/1936
  30621. }
  30622. },
  30623. back: {
  30624. height: math.unit(6, "feet"),
  30625. weight: math.unit(150, "lb"),
  30626. name: "Back",
  30627. image: {
  30628. source: "./media/characters/pidge/back.svg",
  30629. extra: 1938/1843,
  30630. bottom: 0/1938
  30631. }
  30632. },
  30633. casual: {
  30634. height: math.unit(6, "feet"),
  30635. weight: math.unit(150, "lb"),
  30636. name: "Casual",
  30637. image: {
  30638. source: "./media/characters/pidge/casual.svg",
  30639. extra: 1936/1820,
  30640. bottom: 0/1936
  30641. }
  30642. },
  30643. tech: {
  30644. height: math.unit(6, "feet"),
  30645. weight: math.unit(150, "lb"),
  30646. name: "Tech",
  30647. image: {
  30648. source: "./media/characters/pidge/tech.svg",
  30649. extra: 1802/1682,
  30650. bottom: 0/1802
  30651. }
  30652. },
  30653. head: {
  30654. height: math.unit(1.61, "feet"),
  30655. name: "Head",
  30656. image: {
  30657. source: "./media/characters/pidge/head.svg"
  30658. }
  30659. },
  30660. collar: {
  30661. height: math.unit(0.82, "feet"),
  30662. name: "Collar",
  30663. image: {
  30664. source: "./media/characters/pidge/collar.svg"
  30665. }
  30666. },
  30667. },
  30668. [
  30669. {
  30670. name: "Macro",
  30671. height: math.unit(2, "mile"),
  30672. default: true
  30673. },
  30674. {
  30675. name: "PUPPY",
  30676. height: math.unit(20, "miles")
  30677. },
  30678. ]
  30679. ))
  30680. characterMakers.push(() => makeCharacter(
  30681. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30682. {
  30683. front: {
  30684. height: math.unit(6, "feet"),
  30685. weight: math.unit(150, "lb"),
  30686. name: "Front",
  30687. image: {
  30688. source: "./media/characters/en/front.svg",
  30689. extra: 1697 / 1563,
  30690. bottom: 103 / 1800
  30691. }
  30692. },
  30693. back: {
  30694. height: math.unit(6, "feet"),
  30695. weight: math.unit(150, "lb"),
  30696. name: "Back",
  30697. image: {
  30698. source: "./media/characters/en/back.svg",
  30699. extra: 1700 / 1570,
  30700. bottom: 51 / 1751
  30701. }
  30702. },
  30703. frontDressed: {
  30704. height: math.unit(6, "feet"),
  30705. weight: math.unit(150, "lb"),
  30706. name: "Front (Dressed)",
  30707. image: {
  30708. source: "./media/characters/en/front-dressed.svg",
  30709. extra: 1697 / 1563,
  30710. bottom: 103 / 1800
  30711. }
  30712. },
  30713. backDressed: {
  30714. height: math.unit(6, "feet"),
  30715. weight: math.unit(150, "lb"),
  30716. name: "Back (Dressed)",
  30717. image: {
  30718. source: "./media/characters/en/back-dressed.svg",
  30719. extra: 1700 / 1570,
  30720. bottom: 51 / 1751
  30721. }
  30722. },
  30723. },
  30724. [
  30725. {
  30726. name: "Macro",
  30727. height: math.unit(210, "feet"),
  30728. default: true
  30729. },
  30730. ]
  30731. ))
  30732. characterMakers.push(() => makeCharacter(
  30733. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30734. {
  30735. front: {
  30736. height: math.unit(6, "feet"),
  30737. weight: math.unit(150, "lb"),
  30738. name: "Front",
  30739. image: {
  30740. source: "./media/characters/haze-orris/front.svg",
  30741. extra: 3975 / 3525,
  30742. bottom: 137 / 4112
  30743. }
  30744. },
  30745. },
  30746. [
  30747. {
  30748. name: "Micro",
  30749. height: math.unit(150, "mm"),
  30750. default: true
  30751. },
  30752. ]
  30753. ))
  30754. characterMakers.push(() => makeCharacter(
  30755. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30756. {
  30757. front: {
  30758. height: math.unit(6, "feet"),
  30759. weight: math.unit(150, "lb"),
  30760. name: "Front",
  30761. image: {
  30762. source: "./media/characters/casselene-yaro/front.svg",
  30763. extra: 4721 / 4541,
  30764. bottom: 82 / 4803
  30765. }
  30766. },
  30767. back: {
  30768. height: math.unit(6, "feet"),
  30769. weight: math.unit(150, "lb"),
  30770. name: "Back",
  30771. image: {
  30772. source: "./media/characters/casselene-yaro/back.svg",
  30773. extra: 4569 / 4377,
  30774. bottom: 69 / 4638
  30775. }
  30776. },
  30777. dressed: {
  30778. height: math.unit(6, "feet"),
  30779. weight: math.unit(150, "lb"),
  30780. name: "Dressed",
  30781. image: {
  30782. source: "./media/characters/casselene-yaro/dressed.svg",
  30783. extra: 4721 / 4541,
  30784. bottom: 82 / 4803
  30785. }
  30786. },
  30787. maw: {
  30788. height: math.unit(1, "feet"),
  30789. name: "Maw",
  30790. image: {
  30791. source: "./media/characters/casselene-yaro/maw.svg"
  30792. }
  30793. },
  30794. },
  30795. [
  30796. {
  30797. name: "Macro",
  30798. height: math.unit(190, "feet"),
  30799. default: true
  30800. },
  30801. ]
  30802. ))
  30803. characterMakers.push(() => makeCharacter(
  30804. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30805. {
  30806. front: {
  30807. height: math.unit(10, "feet"),
  30808. weight: math.unit(15015, "lb"),
  30809. name: "Front",
  30810. image: {
  30811. source: "./media/characters/platine/front.svg",
  30812. extra: 1428/1353,
  30813. bottom: 31/1459
  30814. }
  30815. },
  30816. },
  30817. [
  30818. {
  30819. name: "Normal",
  30820. height: math.unit(10, "feet"),
  30821. default: true
  30822. },
  30823. {
  30824. name: "Macro",
  30825. height: math.unit(100, "feet")
  30826. },
  30827. {
  30828. name: "Megamacro",
  30829. height: math.unit(1000, "feet")
  30830. },
  30831. ]
  30832. ))
  30833. characterMakers.push(() => makeCharacter(
  30834. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30835. {
  30836. front: {
  30837. height: math.unit(15 + 5 / 12, "feet"),
  30838. weight: math.unit(4600, "lb"),
  30839. name: "Front",
  30840. image: {
  30841. source: "./media/characters/neapolitan-ananassa/front.svg",
  30842. extra: 2903 / 2736,
  30843. bottom: 0 / 2903
  30844. }
  30845. },
  30846. side: {
  30847. height: math.unit(15 + 5 / 12, "feet"),
  30848. weight: math.unit(4600, "lb"),
  30849. name: "Side",
  30850. image: {
  30851. source: "./media/characters/neapolitan-ananassa/side.svg",
  30852. extra: 2925 / 2719,
  30853. bottom: 0 / 2925
  30854. }
  30855. },
  30856. back: {
  30857. height: math.unit(15 + 5 / 12, "feet"),
  30858. weight: math.unit(4600, "lb"),
  30859. name: "Back",
  30860. image: {
  30861. source: "./media/characters/neapolitan-ananassa/back.svg",
  30862. extra: 2903 / 2736,
  30863. bottom: 0 / 2903
  30864. }
  30865. },
  30866. },
  30867. [
  30868. {
  30869. name: "Normal",
  30870. height: math.unit(15 + 5 / 12, "feet"),
  30871. default: true
  30872. },
  30873. {
  30874. name: "Post-Millenium",
  30875. height: math.unit(35 + 5 / 12, "feet")
  30876. },
  30877. {
  30878. name: "Post-Era",
  30879. height: math.unit(450 + 5 / 12, "feet")
  30880. },
  30881. ]
  30882. ))
  30883. characterMakers.push(() => makeCharacter(
  30884. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30885. {
  30886. front: {
  30887. height: math.unit(300, "meters"),
  30888. weight: math.unit(125000, "tonnes"),
  30889. name: "Front",
  30890. image: {
  30891. source: "./media/characters/pazuzu/front.svg",
  30892. extra: 877 / 794,
  30893. bottom: 47 / 924
  30894. }
  30895. },
  30896. },
  30897. [
  30898. {
  30899. name: "Macro",
  30900. height: math.unit(300, "meters"),
  30901. default: true
  30902. },
  30903. ]
  30904. ))
  30905. characterMakers.push(() => makeCharacter(
  30906. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30907. {
  30908. side: {
  30909. height: math.unit(10 + 7 / 12, "feet"),
  30910. weight: math.unit(2.5, "tons"),
  30911. name: "Side",
  30912. image: {
  30913. source: "./media/characters/aasha/side.svg",
  30914. extra: 1345 / 1245,
  30915. bottom: 111 / 1456
  30916. }
  30917. },
  30918. back: {
  30919. height: math.unit(10 + 7 / 12, "feet"),
  30920. weight: math.unit(2.5, "tons"),
  30921. name: "Back",
  30922. image: {
  30923. source: "./media/characters/aasha/back.svg",
  30924. extra: 1133 / 1057,
  30925. bottom: 257 / 1390
  30926. }
  30927. },
  30928. },
  30929. [
  30930. {
  30931. name: "Normal",
  30932. height: math.unit(10 + 7 / 12, "feet"),
  30933. default: true
  30934. },
  30935. ]
  30936. ))
  30937. characterMakers.push(() => makeCharacter(
  30938. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30939. {
  30940. front: {
  30941. height: math.unit(6 + 3 / 12, "feet"),
  30942. name: "Front",
  30943. image: {
  30944. source: "./media/characters/nevan/front.svg",
  30945. extra: 704 / 704,
  30946. bottom: 28 / 732
  30947. }
  30948. },
  30949. back: {
  30950. height: math.unit(6 + 3 / 12, "feet"),
  30951. name: "Back",
  30952. image: {
  30953. source: "./media/characters/nevan/back.svg",
  30954. extra: 714 / 714,
  30955. bottom: 21 / 735
  30956. }
  30957. },
  30958. frontFlaccid: {
  30959. height: math.unit(6 + 3 / 12, "feet"),
  30960. name: "Front (Flaccid)",
  30961. image: {
  30962. source: "./media/characters/nevan/front-flaccid.svg",
  30963. extra: 704 / 704,
  30964. bottom: 28 / 732
  30965. }
  30966. },
  30967. frontErect: {
  30968. height: math.unit(6 + 3 / 12, "feet"),
  30969. name: "Front (Erect)",
  30970. image: {
  30971. source: "./media/characters/nevan/front-erect.svg",
  30972. extra: 704 / 704,
  30973. bottom: 28 / 732
  30974. }
  30975. },
  30976. backFlaccid: {
  30977. height: math.unit(6 + 3 / 12, "feet"),
  30978. name: "Back (Flaccid)",
  30979. image: {
  30980. source: "./media/characters/nevan/back-flaccid.svg",
  30981. extra: 714 / 714,
  30982. bottom: 21 / 735
  30983. }
  30984. },
  30985. },
  30986. [
  30987. {
  30988. name: "Normal",
  30989. height: math.unit(6 + 3 / 12, "feet"),
  30990. default: true
  30991. },
  30992. ]
  30993. ))
  30994. characterMakers.push(() => makeCharacter(
  30995. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30996. {
  30997. front: {
  30998. height: math.unit(4, "feet"),
  30999. name: "Front",
  31000. image: {
  31001. source: "./media/characters/arhan/front.svg",
  31002. extra: 3368 / 3133,
  31003. bottom: 0 / 3368
  31004. }
  31005. },
  31006. side: {
  31007. height: math.unit(4, "feet"),
  31008. name: "Side",
  31009. image: {
  31010. source: "./media/characters/arhan/side.svg",
  31011. extra: 3347 / 3105,
  31012. bottom: 0 / 3347
  31013. }
  31014. },
  31015. tongue: {
  31016. height: math.unit(1.42, "feet"),
  31017. name: "Tongue",
  31018. image: {
  31019. source: "./media/characters/arhan/tongue.svg"
  31020. }
  31021. },
  31022. head: {
  31023. height: math.unit(0.85, "feet"),
  31024. name: "Head",
  31025. image: {
  31026. source: "./media/characters/arhan/head.svg"
  31027. }
  31028. },
  31029. },
  31030. [
  31031. {
  31032. name: "Normal",
  31033. height: math.unit(4, "feet"),
  31034. default: true
  31035. },
  31036. ]
  31037. ))
  31038. characterMakers.push(() => makeCharacter(
  31039. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31040. {
  31041. front: {
  31042. height: math.unit(5 + 7.5 / 12, "feet"),
  31043. weight: math.unit(120, "lb"),
  31044. name: "Front",
  31045. image: {
  31046. source: "./media/characters/digi-duncan/front.svg",
  31047. extra: 330 / 326,
  31048. bottom: 16 / 346
  31049. }
  31050. },
  31051. side: {
  31052. height: math.unit(5 + 7.5 / 12, "feet"),
  31053. weight: math.unit(120, "lb"),
  31054. name: "Side",
  31055. image: {
  31056. source: "./media/characters/digi-duncan/side.svg",
  31057. extra: 341 / 337,
  31058. bottom: 1 / 342
  31059. }
  31060. },
  31061. back: {
  31062. height: math.unit(5 + 7.5 / 12, "feet"),
  31063. weight: math.unit(120, "lb"),
  31064. name: "Back",
  31065. image: {
  31066. source: "./media/characters/digi-duncan/back.svg",
  31067. extra: 330 / 326,
  31068. bottom: 12 / 342
  31069. }
  31070. },
  31071. },
  31072. [
  31073. {
  31074. name: "Speck",
  31075. height: math.unit(0.25, "mm")
  31076. },
  31077. {
  31078. name: "Micro",
  31079. height: math.unit(5, "mm")
  31080. },
  31081. {
  31082. name: "Tiny",
  31083. height: math.unit(0.5, "inches"),
  31084. default: true
  31085. },
  31086. {
  31087. name: "Human",
  31088. height: math.unit(5 + 7.5 / 12, "feet")
  31089. },
  31090. {
  31091. name: "Minigiant",
  31092. height: math.unit(8 + 5.25, "feet")
  31093. },
  31094. {
  31095. name: "Giant",
  31096. height: math.unit(2000, "feet")
  31097. },
  31098. {
  31099. name: "Mega",
  31100. height: math.unit(371.1, "miles")
  31101. },
  31102. ]
  31103. ))
  31104. characterMakers.push(() => makeCharacter(
  31105. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31106. {
  31107. front: {
  31108. height: math.unit(2, "meters"),
  31109. weight: math.unit(350, "kg"),
  31110. name: "Front",
  31111. image: {
  31112. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31113. extra: 898 / 838,
  31114. bottom: 9 / 907
  31115. }
  31116. },
  31117. },
  31118. [
  31119. {
  31120. name: "Micro",
  31121. height: math.unit(8, "meters")
  31122. },
  31123. {
  31124. name: "Normal",
  31125. height: math.unit(50, "meters"),
  31126. default: true
  31127. },
  31128. {
  31129. name: "Macro",
  31130. height: math.unit(500, "meters")
  31131. },
  31132. ]
  31133. ))
  31134. characterMakers.push(() => makeCharacter(
  31135. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31136. {
  31137. front: {
  31138. height: math.unit(6 + 6 / 12, "feet"),
  31139. name: "Front",
  31140. image: {
  31141. source: "./media/characters/khardesh/front.svg",
  31142. extra: 1788/1596,
  31143. bottom: 66/1854
  31144. }
  31145. },
  31146. back: {
  31147. height: math.unit(6 + 6 / 12, "feet"),
  31148. name: "Back",
  31149. image: {
  31150. source: "./media/characters/khardesh/back.svg",
  31151. extra: 1781/1584,
  31152. bottom: 68/1849
  31153. }
  31154. },
  31155. },
  31156. [
  31157. {
  31158. name: "Normal",
  31159. height: math.unit(6 + 6 / 12, "feet"),
  31160. default: true
  31161. },
  31162. {
  31163. name: "Normal+",
  31164. height: math.unit(4, "meters")
  31165. },
  31166. {
  31167. name: "Macro",
  31168. height: math.unit(50, "meters")
  31169. },
  31170. {
  31171. name: "Macro+",
  31172. height: math.unit(100, "meters")
  31173. },
  31174. {
  31175. name: "Megamacro",
  31176. height: math.unit(20, "km")
  31177. },
  31178. ]
  31179. ))
  31180. characterMakers.push(() => makeCharacter(
  31181. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31182. {
  31183. front: {
  31184. height: math.unit(6, "feet"),
  31185. weight: math.unit(150, "lb"),
  31186. name: "Front",
  31187. image: {
  31188. source: "./media/characters/kosho/front.svg",
  31189. extra: 1847 / 1847,
  31190. bottom: 86 / 1933
  31191. }
  31192. },
  31193. },
  31194. [
  31195. {
  31196. name: "Second-stage micro",
  31197. height: math.unit(0.5, "inches")
  31198. },
  31199. {
  31200. name: "First-stage micro",
  31201. height: math.unit(6, "inches")
  31202. },
  31203. {
  31204. name: "Normal",
  31205. height: math.unit(6, "feet"),
  31206. default: true
  31207. },
  31208. {
  31209. name: "First-stage macro",
  31210. height: math.unit(72, "feet")
  31211. },
  31212. {
  31213. name: "Second-stage macro",
  31214. height: math.unit(864, "feet")
  31215. },
  31216. ]
  31217. ))
  31218. characterMakers.push(() => makeCharacter(
  31219. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31220. {
  31221. normal: {
  31222. height: math.unit(4 + 6 / 12, "feet"),
  31223. name: "Normal",
  31224. image: {
  31225. source: "./media/characters/hydra/normal.svg",
  31226. extra: 2833 / 2634,
  31227. bottom: 68 / 2901
  31228. }
  31229. },
  31230. smol: {
  31231. height: math.unit(0.705, "inches"),
  31232. name: "Smol",
  31233. image: {
  31234. source: "./media/characters/hydra/smol.svg",
  31235. extra: 2715 / 2540,
  31236. bottom: 0 / 2715
  31237. }
  31238. },
  31239. },
  31240. [
  31241. {
  31242. name: "Normal",
  31243. height: math.unit(4 + 6 / 12, "feet"),
  31244. default: true
  31245. }
  31246. ]
  31247. ))
  31248. characterMakers.push(() => makeCharacter(
  31249. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31250. {
  31251. front: {
  31252. height: math.unit(0.6, "cm"),
  31253. name: "Front",
  31254. image: {
  31255. source: "./media/characters/daz/front.svg",
  31256. extra: 1682 / 1164,
  31257. bottom: 42 / 1724
  31258. }
  31259. },
  31260. },
  31261. [
  31262. {
  31263. name: "Normal",
  31264. height: math.unit(0.6, "cm"),
  31265. default: true
  31266. },
  31267. ]
  31268. ))
  31269. characterMakers.push(() => makeCharacter(
  31270. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31271. {
  31272. front: {
  31273. height: math.unit(6, "feet"),
  31274. weight: math.unit(235, "lb"),
  31275. name: "Front",
  31276. image: {
  31277. source: "./media/characters/theo-pangolin/front.svg",
  31278. extra: 1996 / 1969,
  31279. bottom: 115 / 2111
  31280. }
  31281. },
  31282. back: {
  31283. height: math.unit(6, "feet"),
  31284. weight: math.unit(235, "lb"),
  31285. name: "Back",
  31286. image: {
  31287. source: "./media/characters/theo-pangolin/back.svg",
  31288. extra: 1979 / 1979,
  31289. bottom: 40 / 2019
  31290. }
  31291. },
  31292. feral: {
  31293. height: math.unit(2, "feet"),
  31294. weight: math.unit(30, "lb"),
  31295. name: "Feral",
  31296. image: {
  31297. source: "./media/characters/theo-pangolin/feral.svg",
  31298. extra: 803 / 791,
  31299. bottom: 181 / 984
  31300. }
  31301. },
  31302. footFive: {
  31303. height: math.unit(1.43, "feet"),
  31304. name: "Foot (Five Toes)",
  31305. image: {
  31306. source: "./media/characters/theo-pangolin/foot-five.svg"
  31307. }
  31308. },
  31309. footFour: {
  31310. height: math.unit(1.43, "feet"),
  31311. name: "Foot (Four Toes)",
  31312. image: {
  31313. source: "./media/characters/theo-pangolin/foot-four.svg"
  31314. }
  31315. },
  31316. handFour: {
  31317. height: math.unit(0.81, "feet"),
  31318. name: "Hand (Four Fingers)",
  31319. image: {
  31320. source: "./media/characters/theo-pangolin/hand-four.svg"
  31321. }
  31322. },
  31323. handThree: {
  31324. height: math.unit(0.81, "feet"),
  31325. name: "Hand (Three Fingers)",
  31326. image: {
  31327. source: "./media/characters/theo-pangolin/hand-three.svg"
  31328. }
  31329. },
  31330. headFront: {
  31331. height: math.unit(1.37, "feet"),
  31332. name: "Head (Front)",
  31333. image: {
  31334. source: "./media/characters/theo-pangolin/head-front.svg"
  31335. }
  31336. },
  31337. headSide: {
  31338. height: math.unit(1.43, "feet"),
  31339. name: "Head (Side)",
  31340. image: {
  31341. source: "./media/characters/theo-pangolin/head-side.svg"
  31342. }
  31343. },
  31344. tongue: {
  31345. height: math.unit(2.29, "feet"),
  31346. name: "Tongue",
  31347. image: {
  31348. source: "./media/characters/theo-pangolin/tongue.svg"
  31349. }
  31350. },
  31351. },
  31352. [
  31353. {
  31354. name: "Normal",
  31355. height: math.unit(6, "feet")
  31356. },
  31357. {
  31358. name: "Macro",
  31359. height: math.unit(400, "feet"),
  31360. default: true
  31361. },
  31362. ]
  31363. ))
  31364. characterMakers.push(() => makeCharacter(
  31365. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31366. {
  31367. front: {
  31368. height: math.unit(6, "inches"),
  31369. weight: math.unit(0.036, "kg"),
  31370. name: "Front",
  31371. image: {
  31372. source: "./media/characters/renée/front.svg",
  31373. extra: 900 / 886,
  31374. bottom: 8 / 908
  31375. }
  31376. },
  31377. },
  31378. [
  31379. {
  31380. name: "Nano",
  31381. height: math.unit(1, "nm")
  31382. },
  31383. {
  31384. name: "Micro",
  31385. height: math.unit(1, "mm")
  31386. },
  31387. {
  31388. name: "Normal",
  31389. height: math.unit(6, "inches")
  31390. },
  31391. {
  31392. name: "Macro",
  31393. height: math.unit(2000, "feet"),
  31394. default: true
  31395. },
  31396. {
  31397. name: "Megamacro",
  31398. height: math.unit(2, "km")
  31399. },
  31400. {
  31401. name: "Gigamacro",
  31402. height: math.unit(2000, "km")
  31403. },
  31404. {
  31405. name: "Teramacro",
  31406. height: math.unit(250000, "km")
  31407. },
  31408. ]
  31409. ))
  31410. characterMakers.push(() => makeCharacter(
  31411. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31412. {
  31413. front: {
  31414. height: math.unit(4, "meters"),
  31415. weight: math.unit(150, "kg"),
  31416. name: "Front",
  31417. image: {
  31418. source: "./media/characters/caledvwlch/front.svg",
  31419. extra: 1760 / 1551,
  31420. bottom: 28 / 1788
  31421. }
  31422. },
  31423. side: {
  31424. height: math.unit(4, "meters"),
  31425. weight: math.unit(150, "kg"),
  31426. name: "Side",
  31427. image: {
  31428. source: "./media/characters/caledvwlch/side.svg",
  31429. extra: 1605 / 1536,
  31430. bottom: 31 / 1636
  31431. }
  31432. },
  31433. back: {
  31434. height: math.unit(4, "meters"),
  31435. weight: math.unit(150, "kg"),
  31436. name: "Back",
  31437. image: {
  31438. source: "./media/characters/caledvwlch/back.svg",
  31439. extra: 1635 / 1565,
  31440. bottom: 27 / 1662
  31441. }
  31442. },
  31443. },
  31444. [
  31445. {
  31446. name: "\"Incognito\"",
  31447. height: math.unit(4, "meters")
  31448. },
  31449. {
  31450. name: "Small rampage",
  31451. height: math.unit(600, "meters")
  31452. },
  31453. {
  31454. name: "Mega",
  31455. height: math.unit(30, "km")
  31456. },
  31457. {
  31458. name: "Home-size",
  31459. height: math.unit(50, "km"),
  31460. default: true
  31461. },
  31462. {
  31463. name: "Giga",
  31464. height: math.unit(300, "km")
  31465. },
  31466. {
  31467. name: "Lounging",
  31468. height: math.unit(11000, "km")
  31469. },
  31470. {
  31471. name: "Planet snacking",
  31472. height: math.unit(2000000, "km")
  31473. },
  31474. ]
  31475. ))
  31476. characterMakers.push(() => makeCharacter(
  31477. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31478. {
  31479. front: {
  31480. height: math.unit(6, "feet"),
  31481. weight: math.unit(215, "lb"),
  31482. name: "Front",
  31483. image: {
  31484. source: "./media/characters/sapphire-svell/front.svg",
  31485. extra: 495 / 455,
  31486. bottom: 20 / 515
  31487. }
  31488. },
  31489. back: {
  31490. height: math.unit(6, "feet"),
  31491. weight: math.unit(216, "lb"),
  31492. name: "Back",
  31493. image: {
  31494. source: "./media/characters/sapphire-svell/back.svg",
  31495. extra: 497 / 477,
  31496. bottom: 7 / 504
  31497. }
  31498. },
  31499. maw: {
  31500. height: math.unit(1.57, "feet"),
  31501. name: "Maw",
  31502. image: {
  31503. source: "./media/characters/sapphire-svell/maw.svg"
  31504. }
  31505. },
  31506. foot: {
  31507. height: math.unit(1.07, "feet"),
  31508. name: "Foot",
  31509. image: {
  31510. source: "./media/characters/sapphire-svell/foot.svg"
  31511. }
  31512. },
  31513. toering: {
  31514. height: math.unit(1.7, "inch"),
  31515. name: "Toering",
  31516. image: {
  31517. source: "./media/characters/sapphire-svell/toering.svg"
  31518. }
  31519. },
  31520. },
  31521. [
  31522. {
  31523. name: "Normal",
  31524. height: math.unit(300, "feet"),
  31525. default: true
  31526. },
  31527. {
  31528. name: "Augmented",
  31529. height: math.unit(1250, "feet")
  31530. },
  31531. {
  31532. name: "Unleashed",
  31533. height: math.unit(3000, "feet")
  31534. },
  31535. ]
  31536. ))
  31537. characterMakers.push(() => makeCharacter(
  31538. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31539. {
  31540. side: {
  31541. height: math.unit(2 + 3 / 12, "feet"),
  31542. weight: math.unit(110, "lb"),
  31543. name: "Side",
  31544. image: {
  31545. source: "./media/characters/glitch-flux/side.svg",
  31546. extra: 997 / 805,
  31547. bottom: 20 / 1017
  31548. }
  31549. },
  31550. },
  31551. [
  31552. {
  31553. name: "Normal",
  31554. height: math.unit(2 + 3 / 12, "feet"),
  31555. default: true
  31556. },
  31557. ]
  31558. ))
  31559. characterMakers.push(() => makeCharacter(
  31560. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31561. {
  31562. front: {
  31563. height: math.unit(4, "meters"),
  31564. name: "Front",
  31565. image: {
  31566. source: "./media/characters/mid/front.svg",
  31567. extra: 507 / 476,
  31568. bottom: 17 / 524
  31569. }
  31570. },
  31571. back: {
  31572. height: math.unit(4, "meters"),
  31573. name: "Back",
  31574. image: {
  31575. source: "./media/characters/mid/back.svg",
  31576. extra: 519 / 487,
  31577. bottom: 7 / 526
  31578. }
  31579. },
  31580. stuck: {
  31581. height: math.unit(2.2, "meters"),
  31582. name: "Stuck",
  31583. image: {
  31584. source: "./media/characters/mid/stuck.svg",
  31585. extra: 1951 / 1869,
  31586. bottom: 88 / 2039
  31587. }
  31588. }
  31589. },
  31590. [
  31591. {
  31592. name: "Normal",
  31593. height: math.unit(4, "meters"),
  31594. default: true
  31595. },
  31596. {
  31597. name: "Big",
  31598. height: math.unit(10, "meters")
  31599. },
  31600. {
  31601. name: "Macro",
  31602. height: math.unit(800, "meters")
  31603. },
  31604. {
  31605. name: "Megamacro",
  31606. height: math.unit(100, "km")
  31607. },
  31608. {
  31609. name: "Overgrown",
  31610. height: math.unit(1, "parsec")
  31611. },
  31612. ]
  31613. ))
  31614. characterMakers.push(() => makeCharacter(
  31615. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31616. {
  31617. front: {
  31618. height: math.unit(2.5, "meters"),
  31619. weight: math.unit(225, "kg"),
  31620. name: "Front",
  31621. image: {
  31622. source: "./media/characters/iris/front.svg",
  31623. extra: 3348 / 3251,
  31624. bottom: 205 / 3553
  31625. }
  31626. },
  31627. maw: {
  31628. height: math.unit(0.56, "meter"),
  31629. name: "Maw",
  31630. image: {
  31631. source: "./media/characters/iris/maw.svg"
  31632. }
  31633. },
  31634. },
  31635. [
  31636. {
  31637. name: "Mewter cat",
  31638. height: math.unit(1.2, "meters")
  31639. },
  31640. {
  31641. name: "Normal",
  31642. height: math.unit(2.5, "meters"),
  31643. default: true
  31644. },
  31645. {
  31646. name: "Minimacro",
  31647. height: math.unit(18, "feet")
  31648. },
  31649. {
  31650. name: "Macro",
  31651. height: math.unit(140, "feet")
  31652. },
  31653. {
  31654. name: "Macro+",
  31655. height: math.unit(180, "meters")
  31656. },
  31657. {
  31658. name: "Megamacro",
  31659. height: math.unit(2746, "meters")
  31660. },
  31661. ]
  31662. ))
  31663. characterMakers.push(() => makeCharacter(
  31664. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31665. {
  31666. front: {
  31667. height: math.unit(6, "feet"),
  31668. weight: math.unit(135, "lb"),
  31669. name: "Front",
  31670. image: {
  31671. source: "./media/characters/axel/front.svg",
  31672. extra: 908 / 908,
  31673. bottom: 58 / 966
  31674. }
  31675. },
  31676. side: {
  31677. height: math.unit(6, "feet"),
  31678. weight: math.unit(135, "lb"),
  31679. name: "Side",
  31680. image: {
  31681. source: "./media/characters/axel/side.svg",
  31682. extra: 958 / 958,
  31683. bottom: 11 / 969
  31684. }
  31685. },
  31686. back: {
  31687. height: math.unit(6, "feet"),
  31688. weight: math.unit(135, "lb"),
  31689. name: "Back",
  31690. image: {
  31691. source: "./media/characters/axel/back.svg",
  31692. extra: 887 / 887,
  31693. bottom: 34 / 921
  31694. }
  31695. },
  31696. head: {
  31697. height: math.unit(1.07, "feet"),
  31698. name: "Head",
  31699. image: {
  31700. source: "./media/characters/axel/head.svg"
  31701. }
  31702. },
  31703. beak: {
  31704. height: math.unit(1.4, "feet"),
  31705. name: "Beak",
  31706. image: {
  31707. source: "./media/characters/axel/beak.svg"
  31708. }
  31709. },
  31710. beakSide: {
  31711. height: math.unit(1.4, "feet"),
  31712. name: "Beak Side",
  31713. image: {
  31714. source: "./media/characters/axel/beak-side.svg"
  31715. }
  31716. },
  31717. sheath: {
  31718. height: math.unit(0.5, "feet"),
  31719. name: "Sheath",
  31720. image: {
  31721. source: "./media/characters/axel/sheath.svg"
  31722. }
  31723. },
  31724. dick: {
  31725. height: math.unit(0.98, "feet"),
  31726. name: "Dick",
  31727. image: {
  31728. source: "./media/characters/axel/dick.svg"
  31729. }
  31730. },
  31731. },
  31732. [
  31733. {
  31734. name: "Macro",
  31735. height: math.unit(68, "meters"),
  31736. default: true
  31737. },
  31738. ]
  31739. ))
  31740. characterMakers.push(() => makeCharacter(
  31741. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31742. {
  31743. front: {
  31744. height: math.unit(3.5, "meters"),
  31745. weight: math.unit(1200, "kg"),
  31746. name: "Front",
  31747. image: {
  31748. source: "./media/characters/joanna/front.svg",
  31749. extra: 1596 / 1488,
  31750. bottom: 29 / 1625
  31751. }
  31752. },
  31753. back: {
  31754. height: math.unit(3.5, "meters"),
  31755. weight: math.unit(1200, "kg"),
  31756. name: "Back",
  31757. image: {
  31758. source: "./media/characters/joanna/back.svg",
  31759. extra: 1594 / 1495,
  31760. bottom: 26 / 1620
  31761. }
  31762. },
  31763. frontShorts: {
  31764. height: math.unit(3.5, "meters"),
  31765. weight: math.unit(1200, "kg"),
  31766. name: "Front (Shorts)",
  31767. image: {
  31768. source: "./media/characters/joanna/front-shorts.svg",
  31769. extra: 1596 / 1488,
  31770. bottom: 29 / 1625
  31771. }
  31772. },
  31773. frontBiker: {
  31774. height: math.unit(3.5, "meters"),
  31775. weight: math.unit(1200, "kg"),
  31776. name: "Front (Biker)",
  31777. image: {
  31778. source: "./media/characters/joanna/front-biker.svg",
  31779. extra: 1596 / 1488,
  31780. bottom: 29 / 1625
  31781. }
  31782. },
  31783. backBiker: {
  31784. height: math.unit(3.5, "meters"),
  31785. weight: math.unit(1200, "kg"),
  31786. name: "Back (Biker)",
  31787. image: {
  31788. source: "./media/characters/joanna/back-biker.svg",
  31789. extra: 1594 / 1495,
  31790. bottom: 88 / 1682
  31791. }
  31792. },
  31793. bikeLeft: {
  31794. height: math.unit(2.4, "meters"),
  31795. weight: math.unit(1600, "kg"),
  31796. name: "Bike (Left)",
  31797. image: {
  31798. source: "./media/characters/joanna/bike-left.svg",
  31799. extra: 720 / 720,
  31800. bottom: 8 / 728
  31801. }
  31802. },
  31803. bikeRight: {
  31804. height: math.unit(2.4, "meters"),
  31805. weight: math.unit(1600, "kg"),
  31806. name: "Bike (Right)",
  31807. image: {
  31808. source: "./media/characters/joanna/bike-right.svg",
  31809. extra: 720 / 720,
  31810. bottom: 8 / 728
  31811. }
  31812. },
  31813. },
  31814. [
  31815. {
  31816. name: "Incognito",
  31817. height: math.unit(3.5, "meters")
  31818. },
  31819. {
  31820. name: "Casual Big",
  31821. height: math.unit(200, "meters")
  31822. },
  31823. {
  31824. name: "Macro",
  31825. height: math.unit(600, "meters")
  31826. },
  31827. {
  31828. name: "Original",
  31829. height: math.unit(20, "km"),
  31830. default: true
  31831. },
  31832. {
  31833. name: "Giga",
  31834. height: math.unit(400, "km")
  31835. },
  31836. {
  31837. name: "Lounging",
  31838. height: math.unit(1500, "km")
  31839. },
  31840. {
  31841. name: "Planetary",
  31842. height: math.unit(200000, "km")
  31843. },
  31844. ]
  31845. ))
  31846. characterMakers.push(() => makeCharacter(
  31847. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31848. {
  31849. front: {
  31850. height: math.unit(6, "feet"),
  31851. weight: math.unit(150, "lb"),
  31852. name: "Front",
  31853. image: {
  31854. source: "./media/characters/hugo-sigil/front.svg",
  31855. extra: 522 / 500,
  31856. bottom: 2 / 524
  31857. }
  31858. },
  31859. back: {
  31860. height: math.unit(6, "feet"),
  31861. weight: math.unit(150, "lb"),
  31862. name: "Back",
  31863. image: {
  31864. source: "./media/characters/hugo-sigil/back.svg",
  31865. extra: 519 / 495,
  31866. bottom: 5 / 524
  31867. }
  31868. },
  31869. maw: {
  31870. height: math.unit(1.4, "feet"),
  31871. weight: math.unit(150, "lb"),
  31872. name: "Maw",
  31873. image: {
  31874. source: "./media/characters/hugo-sigil/maw.svg"
  31875. }
  31876. },
  31877. feet: {
  31878. height: math.unit(1.56, "feet"),
  31879. weight: math.unit(150, "lb"),
  31880. name: "Feet",
  31881. image: {
  31882. source: "./media/characters/hugo-sigil/feet.svg",
  31883. extra: 177 / 177,
  31884. bottom: 12 / 189
  31885. }
  31886. },
  31887. },
  31888. [
  31889. {
  31890. name: "Normal",
  31891. height: math.unit(6, "feet")
  31892. },
  31893. {
  31894. name: "Macro",
  31895. height: math.unit(200, "feet"),
  31896. default: true
  31897. },
  31898. ]
  31899. ))
  31900. characterMakers.push(() => makeCharacter(
  31901. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31902. {
  31903. front: {
  31904. height: math.unit(6, "feet"),
  31905. weight: math.unit(150, "lb"),
  31906. name: "Front",
  31907. image: {
  31908. source: "./media/characters/peri/front.svg",
  31909. extra: 2354 / 2233,
  31910. bottom: 49 / 2403
  31911. }
  31912. },
  31913. },
  31914. [
  31915. {
  31916. name: "Really Small",
  31917. height: math.unit(1, "nm")
  31918. },
  31919. {
  31920. name: "Micro",
  31921. height: math.unit(4, "inches")
  31922. },
  31923. {
  31924. name: "Normal",
  31925. height: math.unit(7, "inches"),
  31926. default: true
  31927. },
  31928. {
  31929. name: "Macro",
  31930. height: math.unit(400, "feet")
  31931. },
  31932. {
  31933. name: "Megamacro",
  31934. height: math.unit(100, "miles")
  31935. },
  31936. ]
  31937. ))
  31938. characterMakers.push(() => makeCharacter(
  31939. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31940. {
  31941. frontSlim: {
  31942. height: math.unit(7, "feet"),
  31943. name: "Front (Slim)",
  31944. image: {
  31945. source: "./media/characters/issilora/front-slim.svg",
  31946. extra: 529 / 449,
  31947. bottom: 53 / 582
  31948. }
  31949. },
  31950. sideSlim: {
  31951. height: math.unit(7, "feet"),
  31952. name: "Side (Slim)",
  31953. image: {
  31954. source: "./media/characters/issilora/side-slim.svg",
  31955. extra: 570 / 480,
  31956. bottom: 30 / 600
  31957. }
  31958. },
  31959. backSlim: {
  31960. height: math.unit(7, "feet"),
  31961. name: "Back (Slim)",
  31962. image: {
  31963. source: "./media/characters/issilora/back-slim.svg",
  31964. extra: 537 / 455,
  31965. bottom: 46 / 583
  31966. }
  31967. },
  31968. frontBuff: {
  31969. height: math.unit(7, "feet"),
  31970. name: "Front (Buff)",
  31971. image: {
  31972. source: "./media/characters/issilora/front-buff.svg",
  31973. extra: 2310 / 2035,
  31974. bottom: 335 / 2645
  31975. }
  31976. },
  31977. head: {
  31978. height: math.unit(1.94, "feet"),
  31979. name: "Head",
  31980. image: {
  31981. source: "./media/characters/issilora/head.svg"
  31982. }
  31983. },
  31984. },
  31985. [
  31986. {
  31987. name: "Minimum",
  31988. height: math.unit(7, "feet")
  31989. },
  31990. {
  31991. name: "Comfortable",
  31992. height: math.unit(17, "feet")
  31993. },
  31994. {
  31995. name: "Fun Size",
  31996. height: math.unit(47, "feet")
  31997. },
  31998. {
  31999. name: "Natural Macro",
  32000. height: math.unit(137, "feet"),
  32001. default: true
  32002. },
  32003. {
  32004. name: "Maximum Kaiju",
  32005. height: math.unit(397, "feet")
  32006. },
  32007. ]
  32008. ))
  32009. characterMakers.push(() => makeCharacter(
  32010. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32011. {
  32012. front: {
  32013. height: math.unit(50 + 9/12, "feet"),
  32014. weight: math.unit(32.8, "tons"),
  32015. name: "Front",
  32016. image: {
  32017. source: "./media/characters/irb'iiritaahn/front.svg",
  32018. extra: 1878/1826,
  32019. bottom: 326/2204
  32020. }
  32021. },
  32022. back: {
  32023. height: math.unit(50 + 9/12, "feet"),
  32024. weight: math.unit(32.8, "tons"),
  32025. name: "Back",
  32026. image: {
  32027. source: "./media/characters/irb'iiritaahn/back.svg",
  32028. extra: 2052/2018,
  32029. bottom: 152/2204
  32030. }
  32031. },
  32032. head: {
  32033. height: math.unit(12.86, "feet"),
  32034. name: "Head",
  32035. image: {
  32036. source: "./media/characters/irb'iiritaahn/head.svg"
  32037. }
  32038. },
  32039. maw: {
  32040. height: math.unit(9.66, "feet"),
  32041. name: "Maw",
  32042. image: {
  32043. source: "./media/characters/irb'iiritaahn/maw.svg"
  32044. }
  32045. },
  32046. frontDick: {
  32047. height: math.unit(8.78461, "feet"),
  32048. name: "Front Dick",
  32049. image: {
  32050. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32051. }
  32052. },
  32053. rearDick: {
  32054. height: math.unit(8.78461, "feet"),
  32055. name: "Rear Dick",
  32056. image: {
  32057. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32058. }
  32059. },
  32060. rearDickUnfolded: {
  32061. height: math.unit(8.78, "feet"),
  32062. name: "Rear Dick (Unfolded)",
  32063. image: {
  32064. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32065. }
  32066. },
  32067. wings: {
  32068. height: math.unit(43, "feet"),
  32069. name: "Wings",
  32070. image: {
  32071. source: "./media/characters/irb'iiritaahn/wings.svg"
  32072. }
  32073. },
  32074. },
  32075. [
  32076. {
  32077. name: "Macro",
  32078. height: math.unit(50 + 9/12, "feet"),
  32079. default: true
  32080. },
  32081. ]
  32082. ))
  32083. characterMakers.push(() => makeCharacter(
  32084. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32085. {
  32086. front: {
  32087. height: math.unit(205, "cm"),
  32088. weight: math.unit(102, "kg"),
  32089. name: "Front",
  32090. image: {
  32091. source: "./media/characters/irbisgreif/front.svg",
  32092. extra: 785/706,
  32093. bottom: 13/798
  32094. }
  32095. },
  32096. back: {
  32097. height: math.unit(205, "cm"),
  32098. weight: math.unit(102, "kg"),
  32099. name: "Back",
  32100. image: {
  32101. source: "./media/characters/irbisgreif/back.svg",
  32102. extra: 713/701,
  32103. bottom: 26/739
  32104. }
  32105. },
  32106. frontDressed: {
  32107. height: math.unit(216, "cm"),
  32108. weight: math.unit(102, "kg"),
  32109. name: "Front-dressed",
  32110. image: {
  32111. source: "./media/characters/irbisgreif/front-dressed.svg",
  32112. extra: 902/776,
  32113. bottom: 14/916
  32114. }
  32115. },
  32116. sideDressed: {
  32117. height: math.unit(195, "cm"),
  32118. weight: math.unit(102, "kg"),
  32119. name: "Side-dressed",
  32120. image: {
  32121. source: "./media/characters/irbisgreif/side-dressed.svg",
  32122. extra: 788/688,
  32123. bottom: 21/809
  32124. }
  32125. },
  32126. backDressed: {
  32127. height: math.unit(216, "cm"),
  32128. weight: math.unit(102, "kg"),
  32129. name: "Back-dressed",
  32130. image: {
  32131. source: "./media/characters/irbisgreif/back-dressed.svg",
  32132. extra: 901/783,
  32133. bottom: 10/911
  32134. }
  32135. },
  32136. dick: {
  32137. height: math.unit(0.49, "feet"),
  32138. name: "Dick",
  32139. image: {
  32140. source: "./media/characters/irbisgreif/dick.svg"
  32141. }
  32142. },
  32143. wingTop: {
  32144. height: math.unit(1.93 , "feet"),
  32145. name: "Wing-top",
  32146. image: {
  32147. source: "./media/characters/irbisgreif/wing-top.svg"
  32148. }
  32149. },
  32150. wingBottom: {
  32151. height: math.unit(1.93 , "feet"),
  32152. name: "Wing-bottom",
  32153. image: {
  32154. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32155. }
  32156. },
  32157. },
  32158. [
  32159. {
  32160. name: "Normal",
  32161. height: math.unit(216, "cm"),
  32162. default: true
  32163. },
  32164. ]
  32165. ))
  32166. characterMakers.push(() => makeCharacter(
  32167. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32168. {
  32169. front: {
  32170. height: math.unit(6, "feet"),
  32171. weight: math.unit(150, "lb"),
  32172. name: "Front",
  32173. image: {
  32174. source: "./media/characters/pride/front.svg",
  32175. extra: 1299/1230,
  32176. bottom: 18/1317
  32177. }
  32178. },
  32179. },
  32180. [
  32181. {
  32182. name: "Normal",
  32183. height: math.unit(7, "feet")
  32184. },
  32185. {
  32186. name: "Mini-macro",
  32187. height: math.unit(11, "feet")
  32188. },
  32189. {
  32190. name: "Macro",
  32191. height: math.unit(15, "meters"),
  32192. default: true
  32193. },
  32194. {
  32195. name: "Macro+",
  32196. height: math.unit(40, "meters")
  32197. },
  32198. ]
  32199. ))
  32200. characterMakers.push(() => makeCharacter(
  32201. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32202. {
  32203. front: {
  32204. height: math.unit(4 + 2 / 12, "feet"),
  32205. weight: math.unit(95, "lb"),
  32206. name: "Front",
  32207. image: {
  32208. source: "./media/characters/vaelophis-nyx/front.svg",
  32209. extra: 2532/2330,
  32210. bottom: 0/2532
  32211. }
  32212. },
  32213. back: {
  32214. height: math.unit(4 + 2 / 12, "feet"),
  32215. weight: math.unit(95, "lb"),
  32216. name: "Back",
  32217. image: {
  32218. source: "./media/characters/vaelophis-nyx/back.svg",
  32219. extra: 2484/2361,
  32220. bottom: 0/2484
  32221. }
  32222. },
  32223. feralSide: {
  32224. height: math.unit(2 + 1/12, "feet"),
  32225. weight: math.unit(20, "lb"),
  32226. name: "Feral (Side)",
  32227. image: {
  32228. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32229. extra: 1721/1581,
  32230. bottom: 70/1791
  32231. }
  32232. },
  32233. feralLazing: {
  32234. height: math.unit(1.08, "feet"),
  32235. weight: math.unit(20, "lb"),
  32236. name: "Feral (Lazing)",
  32237. image: {
  32238. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32239. extra: 822/822,
  32240. bottom: 248/1070
  32241. }
  32242. },
  32243. ear: {
  32244. height: math.unit(0.416, "feet"),
  32245. name: "Ear",
  32246. image: {
  32247. source: "./media/characters/vaelophis-nyx/ear.svg"
  32248. }
  32249. },
  32250. eye: {
  32251. height: math.unit(0.0748, "feet"),
  32252. name: "Eye",
  32253. image: {
  32254. source: "./media/characters/vaelophis-nyx/eye.svg"
  32255. }
  32256. },
  32257. mouth: {
  32258. height: math.unit(0.378, "feet"),
  32259. name: "Mouth",
  32260. image: {
  32261. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32262. }
  32263. },
  32264. spade: {
  32265. height: math.unit(0.55, "feet"),
  32266. name: "Spade",
  32267. image: {
  32268. source: "./media/characters/vaelophis-nyx/spade.svg"
  32269. }
  32270. },
  32271. },
  32272. [
  32273. {
  32274. name: "Normal",
  32275. height: math.unit(4 + 2/12, "feet"),
  32276. default: true
  32277. },
  32278. ]
  32279. ))
  32280. characterMakers.push(() => makeCharacter(
  32281. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32282. {
  32283. front: {
  32284. height: math.unit(7, "feet"),
  32285. weight: math.unit(231, "lb"),
  32286. name: "Front",
  32287. image: {
  32288. source: "./media/characters/flux/front.svg",
  32289. extra: 919/871,
  32290. bottom: 0/919
  32291. }
  32292. },
  32293. back: {
  32294. height: math.unit(7, "feet"),
  32295. weight: math.unit(231, "lb"),
  32296. name: "Back",
  32297. image: {
  32298. source: "./media/characters/flux/back.svg",
  32299. extra: 1040/992,
  32300. bottom: 0/1040
  32301. }
  32302. },
  32303. frontDressed: {
  32304. height: math.unit(7, "feet"),
  32305. weight: math.unit(231, "lb"),
  32306. name: "Front (Dressed)",
  32307. image: {
  32308. source: "./media/characters/flux/front-dressed.svg",
  32309. extra: 919/871,
  32310. bottom: 0/919
  32311. }
  32312. },
  32313. feralSide: {
  32314. height: math.unit(5, "feet"),
  32315. weight: math.unit(150, "lb"),
  32316. name: "Feral (Side)",
  32317. image: {
  32318. source: "./media/characters/flux/feral-side.svg",
  32319. extra: 598/528,
  32320. bottom: 28/626
  32321. }
  32322. },
  32323. head: {
  32324. height: math.unit(1.585, "feet"),
  32325. name: "Head",
  32326. image: {
  32327. source: "./media/characters/flux/head.svg"
  32328. }
  32329. },
  32330. headSide: {
  32331. height: math.unit(1.74, "feet"),
  32332. name: "Head (Side)",
  32333. image: {
  32334. source: "./media/characters/flux/head-side.svg"
  32335. }
  32336. },
  32337. headSideFire: {
  32338. height: math.unit(1.76, "feet"),
  32339. name: "Head (Side, Fire)",
  32340. image: {
  32341. source: "./media/characters/flux/head-side-fire.svg"
  32342. }
  32343. },
  32344. },
  32345. [
  32346. {
  32347. name: "Normal",
  32348. height: math.unit(7, "feet"),
  32349. default: true
  32350. },
  32351. ]
  32352. ))
  32353. characterMakers.push(() => makeCharacter(
  32354. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32355. {
  32356. front: {
  32357. height: math.unit(9, "feet"),
  32358. weight: math.unit(1012, "lb"),
  32359. name: "Front",
  32360. image: {
  32361. source: "./media/characters/ulfra-lupae/front.svg",
  32362. extra: 1083/1011,
  32363. bottom: 67/1150
  32364. }
  32365. },
  32366. },
  32367. [
  32368. {
  32369. name: "Micro",
  32370. height: math.unit(6, "inches")
  32371. },
  32372. {
  32373. name: "Socializing",
  32374. height: math.unit(6 + 5/12, "feet")
  32375. },
  32376. {
  32377. name: "Normal",
  32378. height: math.unit(9, "feet"),
  32379. default: true
  32380. },
  32381. {
  32382. name: "Macro",
  32383. height: math.unit(150, "feet")
  32384. },
  32385. ]
  32386. ))
  32387. characterMakers.push(() => makeCharacter(
  32388. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32389. {
  32390. front: {
  32391. height: math.unit(5 + 2/12, "feet"),
  32392. weight: math.unit(120, "lb"),
  32393. name: "Front",
  32394. image: {
  32395. source: "./media/characters/timber/front.svg",
  32396. extra: 2814/2705,
  32397. bottom: 181/2995
  32398. }
  32399. },
  32400. },
  32401. [
  32402. {
  32403. name: "Normal",
  32404. height: math.unit(5 + 2/12, "feet"),
  32405. default: true
  32406. },
  32407. ]
  32408. ))
  32409. characterMakers.push(() => makeCharacter(
  32410. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32411. {
  32412. front: {
  32413. height: math.unit(9, "feet"),
  32414. name: "Front",
  32415. image: {
  32416. source: "./media/characters/nicki/front.svg",
  32417. extra: 1240/990,
  32418. bottom: 45/1285
  32419. },
  32420. form: "anthro",
  32421. default: true
  32422. },
  32423. side: {
  32424. height: math.unit(9, "feet"),
  32425. name: "Side",
  32426. image: {
  32427. source: "./media/characters/nicki/side.svg",
  32428. extra: 1047/973,
  32429. bottom: 61/1108
  32430. },
  32431. form: "anthro"
  32432. },
  32433. back: {
  32434. height: math.unit(9, "feet"),
  32435. name: "Back",
  32436. image: {
  32437. source: "./media/characters/nicki/back.svg",
  32438. extra: 1006/965,
  32439. bottom: 39/1045
  32440. },
  32441. form: "anthro"
  32442. },
  32443. taur: {
  32444. height: math.unit(15, "feet"),
  32445. name: "Taur",
  32446. image: {
  32447. source: "./media/characters/nicki/taur.svg",
  32448. extra: 1592/1347,
  32449. bottom: 0/1592
  32450. },
  32451. form: "taur",
  32452. default: true
  32453. },
  32454. },
  32455. [
  32456. {
  32457. name: "Normal",
  32458. height: math.unit(9, "feet"),
  32459. form: "anthro",
  32460. default: true
  32461. },
  32462. {
  32463. name: "Normal",
  32464. height: math.unit(15, "feet"),
  32465. form: "taur",
  32466. default: true
  32467. }
  32468. ],
  32469. {
  32470. "anthro": {
  32471. name: "Anthro",
  32472. default: true
  32473. },
  32474. "taur": {
  32475. name: "Taur"
  32476. }
  32477. }
  32478. ))
  32479. characterMakers.push(() => makeCharacter(
  32480. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32481. {
  32482. front: {
  32483. height: math.unit(7 + 10/12, "feet"),
  32484. weight: math.unit(3.5, "tons"),
  32485. name: "Front",
  32486. image: {
  32487. source: "./media/characters/lee/front.svg",
  32488. extra: 1773/1615,
  32489. bottom: 86/1859
  32490. }
  32491. },
  32492. hand: {
  32493. height: math.unit(1.78, "feet"),
  32494. name: "Hand",
  32495. image: {
  32496. source: "./media/characters/lee/hand.svg"
  32497. }
  32498. },
  32499. maw: {
  32500. height: math.unit(1.18, "feet"),
  32501. name: "Maw",
  32502. image: {
  32503. source: "./media/characters/lee/maw.svg"
  32504. }
  32505. },
  32506. },
  32507. [
  32508. {
  32509. name: "Normal",
  32510. height: math.unit(7 + 10/12, "feet"),
  32511. default: true
  32512. },
  32513. ]
  32514. ))
  32515. characterMakers.push(() => makeCharacter(
  32516. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32517. {
  32518. front: {
  32519. height: math.unit(9, "feet"),
  32520. name: "Front",
  32521. image: {
  32522. source: "./media/characters/guti/front.svg",
  32523. extra: 4551/4355,
  32524. bottom: 123/4674
  32525. }
  32526. },
  32527. tongue: {
  32528. height: math.unit(1, "feet"),
  32529. name: "Tongue",
  32530. image: {
  32531. source: "./media/characters/guti/tongue.svg"
  32532. }
  32533. },
  32534. paw: {
  32535. height: math.unit(1.18, "feet"),
  32536. name: "Paw",
  32537. image: {
  32538. source: "./media/characters/guti/paw.svg"
  32539. }
  32540. },
  32541. },
  32542. [
  32543. {
  32544. name: "Normal",
  32545. height: math.unit(9, "feet"),
  32546. default: true
  32547. },
  32548. ]
  32549. ))
  32550. characterMakers.push(() => makeCharacter(
  32551. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32552. {
  32553. side: {
  32554. height: math.unit(5, "meters"),
  32555. name: "Side",
  32556. image: {
  32557. source: "./media/characters/vesper/side.svg",
  32558. extra: 1605/1518,
  32559. bottom: 0/1605
  32560. }
  32561. },
  32562. },
  32563. [
  32564. {
  32565. name: "Small",
  32566. height: math.unit(5, "meters")
  32567. },
  32568. {
  32569. name: "Sage",
  32570. height: math.unit(100, "meters"),
  32571. default: true
  32572. },
  32573. {
  32574. name: "Fun Size",
  32575. height: math.unit(600, "meters")
  32576. },
  32577. {
  32578. name: "Goddess",
  32579. height: math.unit(20000, "km")
  32580. },
  32581. {
  32582. name: "Maximum",
  32583. height: math.unit(5, "galaxies")
  32584. },
  32585. ]
  32586. ))
  32587. characterMakers.push(() => makeCharacter(
  32588. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32589. {
  32590. front: {
  32591. height: math.unit(6 + 3/12, "feet"),
  32592. weight: math.unit(190, "lb"),
  32593. name: "Front",
  32594. image: {
  32595. source: "./media/characters/gawain/front.svg",
  32596. extra: 2222/2139,
  32597. bottom: 90/2312
  32598. }
  32599. },
  32600. back: {
  32601. height: math.unit(6 + 3/12, "feet"),
  32602. weight: math.unit(190, "lb"),
  32603. name: "Back",
  32604. image: {
  32605. source: "./media/characters/gawain/back.svg",
  32606. extra: 2199/2111,
  32607. bottom: 73/2272
  32608. }
  32609. },
  32610. },
  32611. [
  32612. {
  32613. name: "Normal",
  32614. height: math.unit(6 + 3/12, "feet"),
  32615. default: true
  32616. },
  32617. ]
  32618. ))
  32619. characterMakers.push(() => makeCharacter(
  32620. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32621. {
  32622. side: {
  32623. height: math.unit(3.5, "meters"),
  32624. weight: math.unit(16000, "lb"),
  32625. name: "Side",
  32626. image: {
  32627. source: "./media/characters/dascalti/side.svg",
  32628. extra: 392/273,
  32629. bottom: 47/439
  32630. }
  32631. },
  32632. breath: {
  32633. height: math.unit(7.4, "feet"),
  32634. name: "Breath",
  32635. image: {
  32636. source: "./media/characters/dascalti/breath.svg"
  32637. }
  32638. },
  32639. fed: {
  32640. height: math.unit(3.6, "meters"),
  32641. weight: math.unit(16000, "lb"),
  32642. name: "Fed",
  32643. image: {
  32644. source: "./media/characters/dascalti/fed.svg",
  32645. extra: 1419/820,
  32646. bottom: 95/1514
  32647. }
  32648. },
  32649. },
  32650. [
  32651. {
  32652. name: "Normal",
  32653. height: math.unit(3.5, "meters"),
  32654. default: true
  32655. },
  32656. ]
  32657. ))
  32658. characterMakers.push(() => makeCharacter(
  32659. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32660. {
  32661. front: {
  32662. height: math.unit(3 + 5/12, "feet"),
  32663. name: "Front",
  32664. image: {
  32665. source: "./media/characters/mauve/front.svg",
  32666. extra: 1126/1033,
  32667. bottom: 65/1191
  32668. }
  32669. },
  32670. side: {
  32671. height: math.unit(3 + 5/12, "feet"),
  32672. name: "Side",
  32673. image: {
  32674. source: "./media/characters/mauve/side.svg",
  32675. extra: 1089/1001,
  32676. bottom: 29/1118
  32677. }
  32678. },
  32679. back: {
  32680. height: math.unit(3 + 5/12, "feet"),
  32681. name: "Back",
  32682. image: {
  32683. source: "./media/characters/mauve/back.svg",
  32684. extra: 1173/1053,
  32685. bottom: 109/1282
  32686. }
  32687. },
  32688. },
  32689. [
  32690. {
  32691. name: "Normal",
  32692. height: math.unit(3 + 5/12, "feet"),
  32693. default: true
  32694. },
  32695. ]
  32696. ))
  32697. characterMakers.push(() => makeCharacter(
  32698. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32699. {
  32700. front: {
  32701. height: math.unit(6 + 3/12, "feet"),
  32702. weight: math.unit(430, "lb"),
  32703. name: "Front",
  32704. image: {
  32705. source: "./media/characters/carlos/front.svg",
  32706. extra: 1964/1913,
  32707. bottom: 70/2034
  32708. }
  32709. },
  32710. },
  32711. [
  32712. {
  32713. name: "Normal",
  32714. height: math.unit(6 + 3/12, "feet"),
  32715. default: true
  32716. },
  32717. ]
  32718. ))
  32719. characterMakers.push(() => makeCharacter(
  32720. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32721. {
  32722. back: {
  32723. height: math.unit(5 + 10/12, "feet"),
  32724. weight: math.unit(200, "lb"),
  32725. name: "Back",
  32726. image: {
  32727. source: "./media/characters/jax/back.svg",
  32728. extra: 764/739,
  32729. bottom: 25/789
  32730. }
  32731. },
  32732. },
  32733. [
  32734. {
  32735. name: "Normal",
  32736. height: math.unit(5 + 10/12, "feet"),
  32737. default: true
  32738. },
  32739. ]
  32740. ))
  32741. characterMakers.push(() => makeCharacter(
  32742. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32743. {
  32744. front: {
  32745. height: math.unit(8, "feet"),
  32746. weight: math.unit(250, "lb"),
  32747. name: "Front",
  32748. image: {
  32749. source: "./media/characters/eikthynir/front.svg",
  32750. extra: 1332/1166,
  32751. bottom: 82/1414
  32752. }
  32753. },
  32754. back: {
  32755. height: math.unit(8, "feet"),
  32756. weight: math.unit(250, "lb"),
  32757. name: "Back",
  32758. image: {
  32759. source: "./media/characters/eikthynir/back.svg",
  32760. extra: 1342/1190,
  32761. bottom: 19/1361
  32762. }
  32763. },
  32764. dick: {
  32765. height: math.unit(2.35, "feet"),
  32766. name: "Dick",
  32767. image: {
  32768. source: "./media/characters/eikthynir/dick.svg"
  32769. }
  32770. },
  32771. },
  32772. [
  32773. {
  32774. name: "Normal",
  32775. height: math.unit(8, "feet"),
  32776. default: true
  32777. },
  32778. ]
  32779. ))
  32780. characterMakers.push(() => makeCharacter(
  32781. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32782. {
  32783. front: {
  32784. height: math.unit(99, "meters"),
  32785. weight: math.unit(13000, "tons"),
  32786. name: "Front",
  32787. image: {
  32788. source: "./media/characters/zlmos/front.svg",
  32789. extra: 2202/1992,
  32790. bottom: 315/2517
  32791. }
  32792. },
  32793. },
  32794. [
  32795. {
  32796. name: "Macro",
  32797. height: math.unit(99, "meters"),
  32798. default: true
  32799. },
  32800. ]
  32801. ))
  32802. characterMakers.push(() => makeCharacter(
  32803. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32804. {
  32805. front: {
  32806. height: math.unit(6 + 5/12, "feet"),
  32807. name: "Front",
  32808. image: {
  32809. source: "./media/characters/purri/front.svg",
  32810. extra: 1698/1610,
  32811. bottom: 32/1730
  32812. }
  32813. },
  32814. frontAlt: {
  32815. height: math.unit(6 + 5/12, "feet"),
  32816. name: "Front (Alt)",
  32817. image: {
  32818. source: "./media/characters/purri/front-alt.svg",
  32819. extra: 450/420,
  32820. bottom: 26/476
  32821. }
  32822. },
  32823. boots: {
  32824. height: math.unit(5.5, "feet"),
  32825. name: "Boots",
  32826. image: {
  32827. source: "./media/characters/purri/boots.svg",
  32828. extra: 905/853,
  32829. bottom: 18/923
  32830. }
  32831. },
  32832. lying: {
  32833. height: math.unit(2, "feet"),
  32834. name: "Lying",
  32835. image: {
  32836. source: "./media/characters/purri/lying.svg",
  32837. extra: 940/843,
  32838. bottom: 146/1086
  32839. }
  32840. },
  32841. devious: {
  32842. height: math.unit(1.77, "feet"),
  32843. name: "Devious",
  32844. image: {
  32845. source: "./media/characters/purri/devious.svg",
  32846. extra: 1440/1155,
  32847. bottom: 147/1587
  32848. }
  32849. },
  32850. bean: {
  32851. height: math.unit(1.94, "feet"),
  32852. name: "Bean",
  32853. image: {
  32854. source: "./media/characters/purri/bean.svg"
  32855. }
  32856. },
  32857. },
  32858. [
  32859. {
  32860. name: "Micro",
  32861. height: math.unit(1, "mm")
  32862. },
  32863. {
  32864. name: "Normal",
  32865. height: math.unit(6 + 5/12, "feet"),
  32866. default: true
  32867. },
  32868. {
  32869. name: "Macro :3c",
  32870. height: math.unit(2, "miles")
  32871. },
  32872. ]
  32873. ))
  32874. characterMakers.push(() => makeCharacter(
  32875. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32876. {
  32877. front: {
  32878. height: math.unit(6 + 2/12, "feet"),
  32879. weight: math.unit(250, "lb"),
  32880. name: "Front",
  32881. image: {
  32882. source: "./media/characters/moonlight/front.svg",
  32883. extra: 1044/908,
  32884. bottom: 56/1100
  32885. }
  32886. },
  32887. feral: {
  32888. height: math.unit(3 + 1/12, "feet"),
  32889. weight: math.unit(50, "kg"),
  32890. name: "Feral",
  32891. image: {
  32892. source: "./media/characters/moonlight/feral.svg",
  32893. extra: 3705/2791,
  32894. bottom: 145/3850
  32895. }
  32896. },
  32897. paw: {
  32898. height: math.unit(1, "feet"),
  32899. name: "Paw",
  32900. image: {
  32901. source: "./media/characters/moonlight/paw.svg"
  32902. }
  32903. },
  32904. paws: {
  32905. height: math.unit(0.98, "feet"),
  32906. name: "Paws",
  32907. image: {
  32908. source: "./media/characters/moonlight/paws.svg",
  32909. extra: 939/939,
  32910. bottom: 50/989
  32911. }
  32912. },
  32913. mouth: {
  32914. height: math.unit(0.48, "feet"),
  32915. name: "Mouth",
  32916. image: {
  32917. source: "./media/characters/moonlight/mouth.svg"
  32918. }
  32919. },
  32920. dick: {
  32921. height: math.unit(1.46, "feet"),
  32922. name: "Dick",
  32923. image: {
  32924. source: "./media/characters/moonlight/dick.svg"
  32925. }
  32926. },
  32927. },
  32928. [
  32929. {
  32930. name: "Normal",
  32931. height: math.unit(6 + 2/12, "feet"),
  32932. default: true
  32933. },
  32934. {
  32935. name: "Macro",
  32936. height: math.unit(300, "feet")
  32937. },
  32938. {
  32939. name: "Macro+",
  32940. height: math.unit(1, "mile")
  32941. },
  32942. {
  32943. name: "Mt. Moon",
  32944. height: math.unit(5, "miles")
  32945. },
  32946. {
  32947. name: "Megamacro",
  32948. height: math.unit(15, "miles")
  32949. },
  32950. ]
  32951. ))
  32952. characterMakers.push(() => makeCharacter(
  32953. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32954. {
  32955. back: {
  32956. height: math.unit(6, "feet"),
  32957. weight: math.unit(150, "lb"),
  32958. name: "Back",
  32959. image: {
  32960. source: "./media/characters/sylen/back.svg",
  32961. extra: 1335/1273,
  32962. bottom: 107/1442
  32963. }
  32964. },
  32965. },
  32966. [
  32967. {
  32968. name: "Normal",
  32969. height: math.unit(5 + 5/12, "feet")
  32970. },
  32971. {
  32972. name: "Megamacro",
  32973. height: math.unit(3, "miles"),
  32974. default: true
  32975. },
  32976. ]
  32977. ))
  32978. characterMakers.push(() => makeCharacter(
  32979. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32980. {
  32981. front: {
  32982. height: math.unit(6, "feet"),
  32983. weight: math.unit(190, "lb"),
  32984. name: "Front",
  32985. image: {
  32986. source: "./media/characters/huttser/front.svg",
  32987. extra: 1152/1058,
  32988. bottom: 23/1175
  32989. }
  32990. },
  32991. side: {
  32992. height: math.unit(6, "feet"),
  32993. weight: math.unit(190, "lb"),
  32994. name: "Side",
  32995. image: {
  32996. source: "./media/characters/huttser/side.svg",
  32997. extra: 1174/1065,
  32998. bottom: 18/1192
  32999. }
  33000. },
  33001. back: {
  33002. height: math.unit(6, "feet"),
  33003. weight: math.unit(190, "lb"),
  33004. name: "Back",
  33005. image: {
  33006. source: "./media/characters/huttser/back.svg",
  33007. extra: 1158/1056,
  33008. bottom: 12/1170
  33009. }
  33010. },
  33011. },
  33012. [
  33013. ]
  33014. ))
  33015. characterMakers.push(() => makeCharacter(
  33016. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33017. {
  33018. side: {
  33019. height: math.unit(12 + 9/12, "feet"),
  33020. weight: math.unit(15000, "lb"),
  33021. name: "Side",
  33022. image: {
  33023. source: "./media/characters/faan/side.svg",
  33024. extra: 2747/2697,
  33025. bottom: 0/2747
  33026. }
  33027. },
  33028. front: {
  33029. height: math.unit(12 + 9/12, "feet"),
  33030. weight: math.unit(15000, "lb"),
  33031. name: "Front",
  33032. image: {
  33033. source: "./media/characters/faan/front.svg",
  33034. extra: 607/571,
  33035. bottom: 24/631
  33036. }
  33037. },
  33038. head: {
  33039. height: math.unit(2.85, "feet"),
  33040. name: "Head",
  33041. image: {
  33042. source: "./media/characters/faan/head.svg"
  33043. }
  33044. },
  33045. headAlt: {
  33046. height: math.unit(3.13, "feet"),
  33047. name: "Head-alt",
  33048. image: {
  33049. source: "./media/characters/faan/head-alt.svg"
  33050. }
  33051. },
  33052. },
  33053. [
  33054. {
  33055. name: "Normal",
  33056. height: math.unit(12 + 9/12, "feet"),
  33057. default: true
  33058. },
  33059. ]
  33060. ))
  33061. characterMakers.push(() => makeCharacter(
  33062. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33063. {
  33064. front: {
  33065. height: math.unit(6, "feet"),
  33066. weight: math.unit(300, "lb"),
  33067. name: "Front",
  33068. image: {
  33069. source: "./media/characters/tanio/front.svg",
  33070. extra: 711/673,
  33071. bottom: 25/736
  33072. }
  33073. },
  33074. },
  33075. [
  33076. {
  33077. name: "Normal",
  33078. height: math.unit(6, "feet"),
  33079. default: true
  33080. },
  33081. ]
  33082. ))
  33083. characterMakers.push(() => makeCharacter(
  33084. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33085. {
  33086. front: {
  33087. height: math.unit(3, "inches"),
  33088. name: "Front",
  33089. image: {
  33090. source: "./media/characters/noboru/front.svg",
  33091. extra: 1039/932,
  33092. bottom: 18/1057
  33093. }
  33094. },
  33095. },
  33096. [
  33097. {
  33098. name: "Micro",
  33099. height: math.unit(3, "inches"),
  33100. default: true
  33101. },
  33102. ]
  33103. ))
  33104. characterMakers.push(() => makeCharacter(
  33105. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33106. {
  33107. front: {
  33108. height: math.unit(1.85, "meters"),
  33109. weight: math.unit(80, "kg"),
  33110. name: "Front",
  33111. image: {
  33112. source: "./media/characters/daniel-barrett/front.svg",
  33113. extra: 355/337,
  33114. bottom: 9/364
  33115. }
  33116. },
  33117. },
  33118. [
  33119. {
  33120. name: "Pico",
  33121. height: math.unit(0.0433, "mm")
  33122. },
  33123. {
  33124. name: "Nano",
  33125. height: math.unit(1.5, "mm")
  33126. },
  33127. {
  33128. name: "Micro",
  33129. height: math.unit(5.3, "cm"),
  33130. default: true
  33131. },
  33132. {
  33133. name: "Normal",
  33134. height: math.unit(1.85, "meters")
  33135. },
  33136. {
  33137. name: "Macro",
  33138. height: math.unit(64.7, "meters")
  33139. },
  33140. {
  33141. name: "Megamacro",
  33142. height: math.unit(2.26, "km")
  33143. },
  33144. {
  33145. name: "Gigamacro",
  33146. height: math.unit(79, "km")
  33147. },
  33148. {
  33149. name: "Teramacro",
  33150. height: math.unit(2765, "km")
  33151. },
  33152. {
  33153. name: "Petamacro",
  33154. height: math.unit(96678, "km")
  33155. },
  33156. ]
  33157. ))
  33158. characterMakers.push(() => makeCharacter(
  33159. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33160. {
  33161. front: {
  33162. height: math.unit(30, "meters"),
  33163. weight: math.unit(400, "tons"),
  33164. name: "Front",
  33165. image: {
  33166. source: "./media/characters/zeel/front.svg",
  33167. extra: 2599/2599,
  33168. bottom: 226/2825
  33169. }
  33170. },
  33171. },
  33172. [
  33173. {
  33174. name: "Macro",
  33175. height: math.unit(30, "meters"),
  33176. default: true
  33177. },
  33178. ]
  33179. ))
  33180. characterMakers.push(() => makeCharacter(
  33181. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33182. {
  33183. front: {
  33184. height: math.unit(6 + 7/12, "feet"),
  33185. weight: math.unit(210, "lb"),
  33186. name: "Front",
  33187. image: {
  33188. source: "./media/characters/tarn/front.svg",
  33189. extra: 3517/3220,
  33190. bottom: 91/3608
  33191. }
  33192. },
  33193. back: {
  33194. height: math.unit(6 + 7/12, "feet"),
  33195. weight: math.unit(210, "lb"),
  33196. name: "Back",
  33197. image: {
  33198. source: "./media/characters/tarn/back.svg",
  33199. extra: 3566/3241,
  33200. bottom: 34/3600
  33201. }
  33202. },
  33203. dick: {
  33204. height: math.unit(1.65, "feet"),
  33205. name: "Dick",
  33206. image: {
  33207. source: "./media/characters/tarn/dick.svg"
  33208. }
  33209. },
  33210. paw: {
  33211. height: math.unit(1.80, "feet"),
  33212. name: "Paw",
  33213. image: {
  33214. source: "./media/characters/tarn/paw.svg"
  33215. }
  33216. },
  33217. tongue: {
  33218. height: math.unit(0.97, "feet"),
  33219. name: "Tongue",
  33220. image: {
  33221. source: "./media/characters/tarn/tongue.svg"
  33222. }
  33223. },
  33224. },
  33225. [
  33226. {
  33227. name: "Micro",
  33228. height: math.unit(4, "inches")
  33229. },
  33230. {
  33231. name: "Normal",
  33232. height: math.unit(6 + 7/12, "feet"),
  33233. default: true
  33234. },
  33235. {
  33236. name: "Macro",
  33237. height: math.unit(300, "feet")
  33238. },
  33239. ]
  33240. ))
  33241. characterMakers.push(() => makeCharacter(
  33242. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33243. {
  33244. front: {
  33245. height: math.unit(5 + 7/12, "feet"),
  33246. weight: math.unit(80, "kg"),
  33247. name: "Front",
  33248. image: {
  33249. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33250. extra: 3023/2865,
  33251. bottom: 33/3056
  33252. }
  33253. },
  33254. back: {
  33255. height: math.unit(5 + 7/12, "feet"),
  33256. weight: math.unit(80, "kg"),
  33257. name: "Back",
  33258. image: {
  33259. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33260. extra: 3020/2886,
  33261. bottom: 30/3050
  33262. }
  33263. },
  33264. dick: {
  33265. height: math.unit(0.98, "feet"),
  33266. name: "Dick",
  33267. image: {
  33268. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33269. }
  33270. },
  33271. anatomy: {
  33272. height: math.unit(2.86, "feet"),
  33273. name: "Anatomy",
  33274. image: {
  33275. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33276. }
  33277. },
  33278. },
  33279. [
  33280. {
  33281. name: "Really Small",
  33282. height: math.unit(2, "inches")
  33283. },
  33284. {
  33285. name: "Micro",
  33286. height: math.unit(5.583, "inches")
  33287. },
  33288. {
  33289. name: "Normal",
  33290. height: math.unit(5 + 7/12, "feet"),
  33291. default: true
  33292. },
  33293. {
  33294. name: "Macro",
  33295. height: math.unit(67, "feet")
  33296. },
  33297. {
  33298. name: "Megamacro",
  33299. height: math.unit(134, "feet")
  33300. },
  33301. ]
  33302. ))
  33303. characterMakers.push(() => makeCharacter(
  33304. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33305. {
  33306. front: {
  33307. height: math.unit(9, "feet"),
  33308. weight: math.unit(120, "lb"),
  33309. name: "Front",
  33310. image: {
  33311. source: "./media/characters/sally/front.svg",
  33312. extra: 1506/1349,
  33313. bottom: 66/1572
  33314. }
  33315. },
  33316. },
  33317. [
  33318. {
  33319. name: "Normal",
  33320. height: math.unit(9, "feet"),
  33321. default: true
  33322. },
  33323. ]
  33324. ))
  33325. characterMakers.push(() => makeCharacter(
  33326. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33327. {
  33328. front: {
  33329. height: math.unit(8, "feet"),
  33330. weight: math.unit(900, "lb"),
  33331. name: "Front",
  33332. image: {
  33333. source: "./media/characters/owen/front.svg",
  33334. extra: 1761/1657,
  33335. bottom: 74/1835
  33336. }
  33337. },
  33338. side: {
  33339. height: math.unit(8, "feet"),
  33340. weight: math.unit(900, "lb"),
  33341. name: "Side",
  33342. image: {
  33343. source: "./media/characters/owen/side.svg",
  33344. extra: 1797/1734,
  33345. bottom: 30/1827
  33346. }
  33347. },
  33348. back: {
  33349. height: math.unit(8, "feet"),
  33350. weight: math.unit(900, "lb"),
  33351. name: "Back",
  33352. image: {
  33353. source: "./media/characters/owen/back.svg",
  33354. extra: 1796/1706,
  33355. bottom: 59/1855
  33356. }
  33357. },
  33358. maw: {
  33359. height: math.unit(1.76, "feet"),
  33360. name: "Maw",
  33361. image: {
  33362. source: "./media/characters/owen/maw.svg"
  33363. }
  33364. },
  33365. },
  33366. [
  33367. {
  33368. name: "Normal",
  33369. height: math.unit(8, "feet"),
  33370. default: true
  33371. },
  33372. ]
  33373. ))
  33374. characterMakers.push(() => makeCharacter(
  33375. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33376. {
  33377. front: {
  33378. height: math.unit(4, "feet"),
  33379. weight: math.unit(400, "lb"),
  33380. name: "Front",
  33381. image: {
  33382. source: "./media/characters/ryth/front.svg",
  33383. extra: 1920/1748,
  33384. bottom: 42/1962
  33385. }
  33386. },
  33387. back: {
  33388. height: math.unit(4, "feet"),
  33389. weight: math.unit(400, "lb"),
  33390. name: "Back",
  33391. image: {
  33392. source: "./media/characters/ryth/back.svg",
  33393. extra: 1897/1690,
  33394. bottom: 89/1986
  33395. }
  33396. },
  33397. mouth: {
  33398. height: math.unit(1.39, "feet"),
  33399. name: "Mouth",
  33400. image: {
  33401. source: "./media/characters/ryth/mouth.svg"
  33402. }
  33403. },
  33404. tailmaw: {
  33405. height: math.unit(1.23, "feet"),
  33406. name: "Tailmaw",
  33407. image: {
  33408. source: "./media/characters/ryth/tailmaw.svg"
  33409. }
  33410. },
  33411. goia: {
  33412. height: math.unit(4, "meters"),
  33413. weight: math.unit(10800, "lb"),
  33414. name: "Goia",
  33415. image: {
  33416. source: "./media/characters/ryth/goia.svg",
  33417. extra: 745/640,
  33418. bottom: 107/852
  33419. }
  33420. },
  33421. goiaFront: {
  33422. height: math.unit(4, "meters"),
  33423. weight: math.unit(10800, "lb"),
  33424. name: "Goia (Front)",
  33425. image: {
  33426. source: "./media/characters/ryth/goia-front.svg",
  33427. extra: 750/586,
  33428. bottom: 114/864
  33429. }
  33430. },
  33431. goiaMaw: {
  33432. height: math.unit(5.55, "feet"),
  33433. name: "Goia Maw",
  33434. image: {
  33435. source: "./media/characters/ryth/goia-maw.svg"
  33436. }
  33437. },
  33438. goiaForepaw: {
  33439. height: math.unit(3.5, "feet"),
  33440. name: "Goia Forepaw",
  33441. image: {
  33442. source: "./media/characters/ryth/goia-forepaw.svg"
  33443. }
  33444. },
  33445. goiaHindpaw: {
  33446. height: math.unit(5.55, "feet"),
  33447. name: "Goia Hindpaw",
  33448. image: {
  33449. source: "./media/characters/ryth/goia-hindpaw.svg"
  33450. }
  33451. },
  33452. },
  33453. [
  33454. {
  33455. name: "Normal",
  33456. height: math.unit(4, "feet"),
  33457. default: true
  33458. },
  33459. ]
  33460. ))
  33461. characterMakers.push(() => makeCharacter(
  33462. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33463. {
  33464. front: {
  33465. height: math.unit(7, "feet"),
  33466. weight: math.unit(180, "lb"),
  33467. name: "Front",
  33468. image: {
  33469. source: "./media/characters/necrolance/front.svg",
  33470. extra: 1062/947,
  33471. bottom: 41/1103
  33472. }
  33473. },
  33474. back: {
  33475. height: math.unit(7, "feet"),
  33476. weight: math.unit(180, "lb"),
  33477. name: "Back",
  33478. image: {
  33479. source: "./media/characters/necrolance/back.svg",
  33480. extra: 1045/984,
  33481. bottom: 14/1059
  33482. }
  33483. },
  33484. wing: {
  33485. height: math.unit(2.67, "feet"),
  33486. name: "Wing",
  33487. image: {
  33488. source: "./media/characters/necrolance/wing.svg"
  33489. }
  33490. },
  33491. },
  33492. [
  33493. {
  33494. name: "Normal",
  33495. height: math.unit(7, "feet"),
  33496. default: true
  33497. },
  33498. ]
  33499. ))
  33500. characterMakers.push(() => makeCharacter(
  33501. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33502. {
  33503. front: {
  33504. height: math.unit(76, "meters"),
  33505. weight: math.unit(30000, "tons"),
  33506. name: "Front",
  33507. image: {
  33508. source: "./media/characters/tyler/front.svg",
  33509. extra: 1640/1640,
  33510. bottom: 114/1754
  33511. }
  33512. },
  33513. },
  33514. [
  33515. {
  33516. name: "Macro",
  33517. height: math.unit(76, "meters"),
  33518. default: true
  33519. },
  33520. ]
  33521. ))
  33522. characterMakers.push(() => makeCharacter(
  33523. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33524. {
  33525. front: {
  33526. height: math.unit(4 + 11/12, "feet"),
  33527. weight: math.unit(132, "lb"),
  33528. name: "Front",
  33529. image: {
  33530. source: "./media/characters/icey/front.svg",
  33531. extra: 2750/2550,
  33532. bottom: 33/2783
  33533. }
  33534. },
  33535. back: {
  33536. height: math.unit(4 + 11/12, "feet"),
  33537. weight: math.unit(132, "lb"),
  33538. name: "Back",
  33539. image: {
  33540. source: "./media/characters/icey/back.svg",
  33541. extra: 2624/2481,
  33542. bottom: 35/2659
  33543. }
  33544. },
  33545. },
  33546. [
  33547. {
  33548. name: "Normal",
  33549. height: math.unit(4 + 11/12, "feet"),
  33550. default: true
  33551. },
  33552. ]
  33553. ))
  33554. characterMakers.push(() => makeCharacter(
  33555. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33556. {
  33557. front: {
  33558. height: math.unit(100, "feet"),
  33559. weight: math.unit(0, "lb"),
  33560. name: "Front",
  33561. image: {
  33562. source: "./media/characters/smile/front.svg",
  33563. extra: 2983/2912,
  33564. bottom: 162/3145
  33565. }
  33566. },
  33567. back: {
  33568. height: math.unit(100, "feet"),
  33569. weight: math.unit(0, "lb"),
  33570. name: "Back",
  33571. image: {
  33572. source: "./media/characters/smile/back.svg",
  33573. extra: 3143/3031,
  33574. bottom: 91/3234
  33575. }
  33576. },
  33577. head: {
  33578. height: math.unit(26.3, "feet"),
  33579. weight: math.unit(0, "lb"),
  33580. name: "Head",
  33581. image: {
  33582. source: "./media/characters/smile/head.svg"
  33583. }
  33584. },
  33585. collar: {
  33586. height: math.unit(5.3, "feet"),
  33587. weight: math.unit(0, "lb"),
  33588. name: "Collar",
  33589. image: {
  33590. source: "./media/characters/smile/collar.svg"
  33591. }
  33592. },
  33593. },
  33594. [
  33595. {
  33596. name: "Macro",
  33597. height: math.unit(100, "feet"),
  33598. default: true
  33599. },
  33600. ]
  33601. ))
  33602. characterMakers.push(() => makeCharacter(
  33603. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33604. {
  33605. dragon: {
  33606. height: math.unit(26, "feet"),
  33607. weight: math.unit(36, "tons"),
  33608. name: "Dragon",
  33609. image: {
  33610. source: "./media/characters/arimphae/dragon.svg",
  33611. extra: 1574/983,
  33612. bottom: 357/1931
  33613. }
  33614. },
  33615. drake: {
  33616. height: math.unit(9, "feet"),
  33617. weight: math.unit(1.5, "tons"),
  33618. name: "Drake",
  33619. image: {
  33620. source: "./media/characters/arimphae/drake.svg",
  33621. extra: 1120/925,
  33622. bottom: 435/1555
  33623. }
  33624. },
  33625. },
  33626. [
  33627. {
  33628. name: "Small",
  33629. height: math.unit(26*5/9, "feet")
  33630. },
  33631. {
  33632. name: "Normal",
  33633. height: math.unit(26, "feet"),
  33634. default: true
  33635. },
  33636. ]
  33637. ))
  33638. characterMakers.push(() => makeCharacter(
  33639. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33640. {
  33641. front: {
  33642. height: math.unit(8 + 9/12, "feet"),
  33643. name: "Front",
  33644. image: {
  33645. source: "./media/characters/xander/front.svg",
  33646. extra: 1237/974,
  33647. bottom: 94/1331
  33648. }
  33649. },
  33650. },
  33651. [
  33652. {
  33653. name: "Normal",
  33654. height: math.unit(8 + 9/12, "feet"),
  33655. default: true
  33656. },
  33657. {
  33658. name: "Gaze Grabber",
  33659. height: math.unit(13 + 8/12, "feet")
  33660. },
  33661. {
  33662. name: "Jaw Dropper",
  33663. height: math.unit(27, "feet")
  33664. },
  33665. {
  33666. name: "Show Stopper",
  33667. height: math.unit(136, "feet")
  33668. },
  33669. {
  33670. name: "Superstar",
  33671. height: math.unit(1.9e6, "miles")
  33672. },
  33673. ]
  33674. ))
  33675. characterMakers.push(() => makeCharacter(
  33676. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33677. {
  33678. side: {
  33679. height: math.unit(2100, "feet"),
  33680. name: "Side",
  33681. image: {
  33682. source: "./media/characters/osiris/side.svg",
  33683. extra: 1105/939,
  33684. bottom: 167/1272
  33685. }
  33686. },
  33687. },
  33688. [
  33689. {
  33690. name: "Macro",
  33691. height: math.unit(2100, "feet"),
  33692. default: true
  33693. },
  33694. ]
  33695. ))
  33696. characterMakers.push(() => makeCharacter(
  33697. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33698. {
  33699. front: {
  33700. height: math.unit(6 + 8/12, "feet"),
  33701. weight: math.unit(225, "lb"),
  33702. name: "Front",
  33703. image: {
  33704. source: "./media/characters/rhys-londe/front.svg",
  33705. extra: 2258/2141,
  33706. bottom: 188/2446
  33707. }
  33708. },
  33709. back: {
  33710. height: math.unit(6 + 8/12, "feet"),
  33711. weight: math.unit(225, "lb"),
  33712. name: "Back",
  33713. image: {
  33714. source: "./media/characters/rhys-londe/back.svg",
  33715. extra: 2237/2137,
  33716. bottom: 63/2300
  33717. }
  33718. },
  33719. frontNsfw: {
  33720. height: math.unit(6 + 8/12, "feet"),
  33721. weight: math.unit(225, "lb"),
  33722. name: "Front (NSFW)",
  33723. image: {
  33724. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33725. extra: 2258/2141,
  33726. bottom: 188/2446
  33727. }
  33728. },
  33729. backNsfw: {
  33730. height: math.unit(6 + 8/12, "feet"),
  33731. weight: math.unit(225, "lb"),
  33732. name: "Back (NSFW)",
  33733. image: {
  33734. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33735. extra: 2237/2137,
  33736. bottom: 63/2300
  33737. }
  33738. },
  33739. dick: {
  33740. height: math.unit(30, "inches"),
  33741. name: "Dick",
  33742. image: {
  33743. source: "./media/characters/rhys-londe/dick.svg"
  33744. }
  33745. },
  33746. maw: {
  33747. height: math.unit(1.6, "feet"),
  33748. name: "Maw",
  33749. image: {
  33750. source: "./media/characters/rhys-londe/maw.svg"
  33751. }
  33752. },
  33753. },
  33754. [
  33755. {
  33756. name: "Normal",
  33757. height: math.unit(6 + 8/12, "feet"),
  33758. default: true
  33759. },
  33760. ]
  33761. ))
  33762. characterMakers.push(() => makeCharacter(
  33763. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33764. {
  33765. front: {
  33766. height: math.unit(3 + 10/12, "feet"),
  33767. weight: math.unit(90, "lb"),
  33768. name: "Front",
  33769. image: {
  33770. source: "./media/characters/taivas-ensim/front.svg",
  33771. extra: 1327/1216,
  33772. bottom: 96/1423
  33773. }
  33774. },
  33775. back: {
  33776. height: math.unit(3 + 10/12, "feet"),
  33777. weight: math.unit(90, "lb"),
  33778. name: "Back",
  33779. image: {
  33780. source: "./media/characters/taivas-ensim/back.svg",
  33781. extra: 1355/1247,
  33782. bottom: 11/1366
  33783. }
  33784. },
  33785. frontNsfw: {
  33786. height: math.unit(3 + 10/12, "feet"),
  33787. weight: math.unit(90, "lb"),
  33788. name: "Front (NSFW)",
  33789. image: {
  33790. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33791. extra: 1327/1216,
  33792. bottom: 96/1423
  33793. }
  33794. },
  33795. backNsfw: {
  33796. height: math.unit(3 + 10/12, "feet"),
  33797. weight: math.unit(90, "lb"),
  33798. name: "Back (NSFW)",
  33799. image: {
  33800. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33801. extra: 1355/1247,
  33802. bottom: 11/1366
  33803. }
  33804. },
  33805. },
  33806. [
  33807. {
  33808. name: "Normal",
  33809. height: math.unit(3 + 10/12, "feet"),
  33810. default: true
  33811. },
  33812. ]
  33813. ))
  33814. characterMakers.push(() => makeCharacter(
  33815. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33816. {
  33817. front: {
  33818. height: math.unit(9 + 6/12, "feet"),
  33819. weight: math.unit(940, "lb"),
  33820. name: "Front",
  33821. image: {
  33822. source: "./media/characters/byliss/front.svg",
  33823. extra: 1327/1290,
  33824. bottom: 82/1409
  33825. }
  33826. },
  33827. back: {
  33828. height: math.unit(9 + 6/12, "feet"),
  33829. weight: math.unit(940, "lb"),
  33830. name: "Back",
  33831. image: {
  33832. source: "./media/characters/byliss/back.svg",
  33833. extra: 1376/1349,
  33834. bottom: 9/1385
  33835. }
  33836. },
  33837. frontNsfw: {
  33838. height: math.unit(9 + 6/12, "feet"),
  33839. weight: math.unit(940, "lb"),
  33840. name: "Front (NSFW)",
  33841. image: {
  33842. source: "./media/characters/byliss/front-nsfw.svg",
  33843. extra: 1327/1290,
  33844. bottom: 82/1409
  33845. }
  33846. },
  33847. backNsfw: {
  33848. height: math.unit(9 + 6/12, "feet"),
  33849. weight: math.unit(940, "lb"),
  33850. name: "Back (NSFW)",
  33851. image: {
  33852. source: "./media/characters/byliss/back-nsfw.svg",
  33853. extra: 1376/1349,
  33854. bottom: 9/1385
  33855. }
  33856. },
  33857. },
  33858. [
  33859. {
  33860. name: "Normal",
  33861. height: math.unit(9 + 6/12, "feet"),
  33862. default: true
  33863. },
  33864. ]
  33865. ))
  33866. characterMakers.push(() => makeCharacter(
  33867. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33868. {
  33869. front: {
  33870. height: math.unit(5 + 2/12, "feet"),
  33871. weight: math.unit(200, "lb"),
  33872. name: "Front",
  33873. image: {
  33874. source: "./media/characters/noraly/front.svg",
  33875. extra: 4985/4773,
  33876. bottom: 150/5135
  33877. }
  33878. },
  33879. full: {
  33880. height: math.unit(5 + 2/12, "feet"),
  33881. weight: math.unit(164, "lb"),
  33882. name: "Full",
  33883. image: {
  33884. source: "./media/characters/noraly/full.svg",
  33885. extra: 1114/1059,
  33886. bottom: 35/1149
  33887. }
  33888. },
  33889. fuller: {
  33890. height: math.unit(5 + 2/12, "feet"),
  33891. weight: math.unit(230, "lb"),
  33892. name: "Fuller",
  33893. image: {
  33894. source: "./media/characters/noraly/fuller.svg",
  33895. extra: 1114/1059,
  33896. bottom: 35/1149
  33897. }
  33898. },
  33899. fullest: {
  33900. height: math.unit(5 + 2/12, "feet"),
  33901. weight: math.unit(300, "lb"),
  33902. name: "Fullest",
  33903. image: {
  33904. source: "./media/characters/noraly/fullest.svg",
  33905. extra: 1114/1059,
  33906. bottom: 35/1149
  33907. }
  33908. },
  33909. },
  33910. [
  33911. {
  33912. name: "Normal",
  33913. height: math.unit(5 + 2/12, "feet"),
  33914. default: true
  33915. },
  33916. ]
  33917. ))
  33918. characterMakers.push(() => makeCharacter(
  33919. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33920. {
  33921. front: {
  33922. height: math.unit(5 + 2/12, "feet"),
  33923. weight: math.unit(210, "lb"),
  33924. name: "Front",
  33925. image: {
  33926. source: "./media/characters/pera/front.svg",
  33927. extra: 1560/1531,
  33928. bottom: 165/1725
  33929. }
  33930. },
  33931. back: {
  33932. height: math.unit(5 + 2/12, "feet"),
  33933. weight: math.unit(210, "lb"),
  33934. name: "Back",
  33935. image: {
  33936. source: "./media/characters/pera/back.svg",
  33937. extra: 1523/1493,
  33938. bottom: 152/1675
  33939. }
  33940. },
  33941. dick: {
  33942. height: math.unit(2.4, "feet"),
  33943. name: "Dick",
  33944. image: {
  33945. source: "./media/characters/pera/dick.svg"
  33946. }
  33947. },
  33948. },
  33949. [
  33950. {
  33951. name: "Normal",
  33952. height: math.unit(5 + 2/12, "feet"),
  33953. default: true
  33954. },
  33955. ]
  33956. ))
  33957. characterMakers.push(() => makeCharacter(
  33958. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33959. {
  33960. front: {
  33961. height: math.unit(12, "feet"),
  33962. weight: math.unit(3200, "lb"),
  33963. name: "Front",
  33964. image: {
  33965. source: "./media/characters/julian/front.svg",
  33966. extra: 2962/2701,
  33967. bottom: 184/3146
  33968. }
  33969. },
  33970. maw: {
  33971. height: math.unit(5.35, "feet"),
  33972. name: "Maw",
  33973. image: {
  33974. source: "./media/characters/julian/maw.svg"
  33975. }
  33976. },
  33977. paw: {
  33978. height: math.unit(3.07, "feet"),
  33979. name: "Paw",
  33980. image: {
  33981. source: "./media/characters/julian/paw.svg"
  33982. }
  33983. },
  33984. },
  33985. [
  33986. {
  33987. name: "Default",
  33988. height: math.unit(12, "feet"),
  33989. default: true
  33990. },
  33991. {
  33992. name: "Big",
  33993. height: math.unit(50, "feet")
  33994. },
  33995. {
  33996. name: "Really Big",
  33997. height: math.unit(1, "mile")
  33998. },
  33999. {
  34000. name: "Extremely Big",
  34001. height: math.unit(100, "miles")
  34002. },
  34003. {
  34004. name: "Planet Hugger",
  34005. height: math.unit(200, "megameters")
  34006. },
  34007. {
  34008. name: "Unreasonably Big",
  34009. height: math.unit(1e300, "meters")
  34010. },
  34011. ]
  34012. ))
  34013. characterMakers.push(() => makeCharacter(
  34014. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34015. {
  34016. solgooleo: {
  34017. height: math.unit(4, "meters"),
  34018. weight: math.unit(6000*1.5, "kg"),
  34019. volume: math.unit(6000, "liters"),
  34020. name: "Solgooleo",
  34021. image: {
  34022. source: "./media/characters/pi/solgooleo.svg",
  34023. extra: 388/331,
  34024. bottom: 29/417
  34025. }
  34026. },
  34027. },
  34028. [
  34029. {
  34030. name: "Normal",
  34031. height: math.unit(4, "meters"),
  34032. default: true
  34033. },
  34034. ]
  34035. ))
  34036. characterMakers.push(() => makeCharacter(
  34037. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34038. {
  34039. front: {
  34040. height: math.unit(8, "feet"),
  34041. weight: math.unit(4, "tons"),
  34042. name: "Front",
  34043. image: {
  34044. source: "./media/characters/shaun/front.svg",
  34045. extra: 503/495,
  34046. bottom: 20/523
  34047. }
  34048. },
  34049. back: {
  34050. height: math.unit(8, "feet"),
  34051. weight: math.unit(4, "tons"),
  34052. name: "Back",
  34053. image: {
  34054. source: "./media/characters/shaun/back.svg",
  34055. extra: 487/480,
  34056. bottom: 20/507
  34057. }
  34058. },
  34059. },
  34060. [
  34061. {
  34062. name: "Lorg",
  34063. height: math.unit(8, "feet"),
  34064. default: true
  34065. },
  34066. ]
  34067. ))
  34068. characterMakers.push(() => makeCharacter(
  34069. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34070. {
  34071. frontAnthro: {
  34072. height: math.unit(7, "feet"),
  34073. name: "Front",
  34074. image: {
  34075. source: "./media/characters/sini/front-anthro.svg",
  34076. extra: 726/678,
  34077. bottom: 35/761
  34078. },
  34079. form: "anthro",
  34080. default: true
  34081. },
  34082. backAnthro: {
  34083. height: math.unit(7, "feet"),
  34084. name: "Back",
  34085. image: {
  34086. source: "./media/characters/sini/back-anthro.svg",
  34087. extra: 743/701,
  34088. bottom: 12/755
  34089. },
  34090. form: "anthro",
  34091. },
  34092. frontAnthroNsfw: {
  34093. height: math.unit(7, "feet"),
  34094. name: "Front (NSFW)",
  34095. image: {
  34096. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34097. extra: 726/678,
  34098. bottom: 35/761
  34099. },
  34100. form: "anthro"
  34101. },
  34102. backAnthroNsfw: {
  34103. height: math.unit(7, "feet"),
  34104. name: "Back (NSFW)",
  34105. image: {
  34106. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34107. extra: 743/701,
  34108. bottom: 12/755
  34109. },
  34110. form: "anthro",
  34111. },
  34112. mawAnthro: {
  34113. height: math.unit(2.14, "feet"),
  34114. name: "Maw",
  34115. image: {
  34116. source: "./media/characters/sini/maw-anthro.svg"
  34117. },
  34118. form: "anthro"
  34119. },
  34120. dick: {
  34121. height: math.unit(1.45, "feet"),
  34122. name: "Dick",
  34123. image: {
  34124. source: "./media/characters/sini/dick-anthro.svg"
  34125. },
  34126. form: "anthro"
  34127. },
  34128. feral: {
  34129. height: math.unit(16, "feet"),
  34130. name: "Feral",
  34131. image: {
  34132. source: "./media/characters/sini/feral.svg",
  34133. extra: 814/605,
  34134. bottom: 11/825
  34135. },
  34136. form: "feral",
  34137. default: true
  34138. },
  34139. feralNsfw: {
  34140. height: math.unit(16, "feet"),
  34141. name: "Feral (NSFW)",
  34142. image: {
  34143. source: "./media/characters/sini/feral-nsfw.svg",
  34144. extra: 814/605,
  34145. bottom: 11/825
  34146. },
  34147. form: "feral"
  34148. },
  34149. mawFeral: {
  34150. height: math.unit(5.66, "feet"),
  34151. name: "Maw",
  34152. image: {
  34153. source: "./media/characters/sini/maw-feral.svg"
  34154. },
  34155. form: "feral",
  34156. },
  34157. pawFeral: {
  34158. height: math.unit(5.17, "feet"),
  34159. name: "Paw",
  34160. image: {
  34161. source: "./media/characters/sini/paw-feral.svg"
  34162. },
  34163. form: "feral",
  34164. },
  34165. rumpFeral: {
  34166. height: math.unit(13.11, "feet"),
  34167. name: "Rump",
  34168. image: {
  34169. source: "./media/characters/sini/rump-feral.svg"
  34170. },
  34171. form: "feral",
  34172. },
  34173. dickFeral: {
  34174. height: math.unit(1, "feet"),
  34175. name: "Dick",
  34176. image: {
  34177. source: "./media/characters/sini/dick-feral.svg"
  34178. },
  34179. form: "feral",
  34180. },
  34181. eyeFeral: {
  34182. height: math.unit(1.23, "feet"),
  34183. name: "Eye",
  34184. image: {
  34185. source: "./media/characters/sini/eye-feral.svg"
  34186. },
  34187. form: "feral",
  34188. },
  34189. },
  34190. [
  34191. {
  34192. name: "Normal",
  34193. height: math.unit(7, "feet"),
  34194. default: true,
  34195. form: "anthro"
  34196. },
  34197. {
  34198. name: "Normal",
  34199. height: math.unit(16, "feet"),
  34200. default: true,
  34201. form: "feral"
  34202. },
  34203. ],
  34204. {
  34205. "anthro": {
  34206. name: "Anthro",
  34207. default: true
  34208. },
  34209. "feral": {
  34210. name: "Feral",
  34211. }
  34212. }
  34213. ))
  34214. characterMakers.push(() => makeCharacter(
  34215. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34216. {
  34217. side: {
  34218. height: math.unit(47.2, "meters"),
  34219. weight: math.unit(10000, "tons"),
  34220. name: "Side",
  34221. image: {
  34222. source: "./media/characters/raylldo/side.svg",
  34223. extra: 2363/642,
  34224. bottom: 221/2584
  34225. }
  34226. },
  34227. top: {
  34228. height: math.unit(240, "meters"),
  34229. weight: math.unit(10000, "tons"),
  34230. name: "Top",
  34231. image: {
  34232. source: "./media/characters/raylldo/top.svg"
  34233. }
  34234. },
  34235. bottom: {
  34236. height: math.unit(240, "meters"),
  34237. weight: math.unit(10000, "tons"),
  34238. name: "Bottom",
  34239. image: {
  34240. source: "./media/characters/raylldo/bottom.svg"
  34241. }
  34242. },
  34243. head: {
  34244. height: math.unit(38.6, "meters"),
  34245. name: "Head",
  34246. image: {
  34247. source: "./media/characters/raylldo/head.svg",
  34248. extra: 1335/1112,
  34249. bottom: 0/1335
  34250. }
  34251. },
  34252. maw: {
  34253. height: math.unit(16.37, "meters"),
  34254. name: "Maw",
  34255. image: {
  34256. source: "./media/characters/raylldo/maw.svg",
  34257. extra: 883/660,
  34258. bottom: 0/883
  34259. },
  34260. extraAttributes: {
  34261. preyCapacity: {
  34262. name: "Capacity",
  34263. power: 3,
  34264. type: "volume",
  34265. base: math.unit(1000, "people")
  34266. },
  34267. tongueSize: {
  34268. name: "Tongue Size",
  34269. power: 2,
  34270. type: "area",
  34271. base: math.unit(21, "m^2")
  34272. }
  34273. }
  34274. },
  34275. forepaw: {
  34276. height: math.unit(18, "meters"),
  34277. name: "Forepaw",
  34278. image: {
  34279. source: "./media/characters/raylldo/forepaw.svg"
  34280. }
  34281. },
  34282. hindpaw: {
  34283. height: math.unit(23, "meters"),
  34284. name: "Hindpaw",
  34285. image: {
  34286. source: "./media/characters/raylldo/hindpaw.svg"
  34287. }
  34288. },
  34289. genitals: {
  34290. height: math.unit(42, "meters"),
  34291. name: "Genitals",
  34292. image: {
  34293. source: "./media/characters/raylldo/genitals.svg"
  34294. }
  34295. },
  34296. },
  34297. [
  34298. {
  34299. name: "Normal",
  34300. height: math.unit(47.2, "meters"),
  34301. default: true
  34302. },
  34303. ]
  34304. ))
  34305. characterMakers.push(() => makeCharacter(
  34306. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34307. {
  34308. anthroFront: {
  34309. height: math.unit(9, "feet"),
  34310. weight: math.unit(600, "lb"),
  34311. name: "Anthro (Front)",
  34312. image: {
  34313. source: "./media/characters/glint/anthro-front.svg",
  34314. extra: 1097/1018,
  34315. bottom: 28/1125
  34316. }
  34317. },
  34318. anthroBack: {
  34319. height: math.unit(9, "feet"),
  34320. weight: math.unit(600, "lb"),
  34321. name: "Anthro (Back)",
  34322. image: {
  34323. source: "./media/characters/glint/anthro-back.svg",
  34324. extra: 1154/997,
  34325. bottom: 36/1190
  34326. }
  34327. },
  34328. feral: {
  34329. height: math.unit(11, "feet"),
  34330. weight: math.unit(50000, "lb"),
  34331. name: "Feral",
  34332. image: {
  34333. source: "./media/characters/glint/feral.svg",
  34334. extra: 3035/1585,
  34335. bottom: 1169/4204
  34336. }
  34337. },
  34338. dickAnthro: {
  34339. height: math.unit(0.7, "meters"),
  34340. name: "Dick (Anthro)",
  34341. image: {
  34342. source: "./media/characters/glint/dick-anthro.svg"
  34343. }
  34344. },
  34345. dickFeral: {
  34346. height: math.unit(2.65, "meters"),
  34347. name: "Dick (Feral)",
  34348. image: {
  34349. source: "./media/characters/glint/dick-feral.svg"
  34350. }
  34351. },
  34352. slitHidden: {
  34353. height: math.unit(5.85, "meters"),
  34354. name: "Slit (Hidden)",
  34355. image: {
  34356. source: "./media/characters/glint/slit-hidden.svg"
  34357. }
  34358. },
  34359. slitErect: {
  34360. height: math.unit(5.85, "meters"),
  34361. name: "Slit (Erect)",
  34362. image: {
  34363. source: "./media/characters/glint/slit-erect.svg"
  34364. }
  34365. },
  34366. mawAnthro: {
  34367. height: math.unit(0.63, "meters"),
  34368. name: "Maw (Anthro)",
  34369. image: {
  34370. source: "./media/characters/glint/maw.svg"
  34371. }
  34372. },
  34373. mawFeral: {
  34374. height: math.unit(2.89, "meters"),
  34375. name: "Maw (Feral)",
  34376. image: {
  34377. source: "./media/characters/glint/maw.svg"
  34378. }
  34379. },
  34380. },
  34381. [
  34382. {
  34383. name: "Normal",
  34384. height: math.unit(9, "feet"),
  34385. default: true
  34386. },
  34387. ]
  34388. ))
  34389. characterMakers.push(() => makeCharacter(
  34390. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34391. {
  34392. side: {
  34393. height: math.unit(15, "feet"),
  34394. weight: math.unit(5000, "kg"),
  34395. name: "Side",
  34396. image: {
  34397. source: "./media/characters/kairne/side.svg",
  34398. extra: 979/811,
  34399. bottom: 13/992
  34400. }
  34401. },
  34402. front: {
  34403. height: math.unit(15, "feet"),
  34404. weight: math.unit(5000, "kg"),
  34405. name: "Front",
  34406. image: {
  34407. source: "./media/characters/kairne/front.svg",
  34408. extra: 908/814,
  34409. bottom: 26/934
  34410. }
  34411. },
  34412. sideNsfw: {
  34413. height: math.unit(15, "feet"),
  34414. weight: math.unit(5000, "kg"),
  34415. name: "Side (NSFW)",
  34416. image: {
  34417. source: "./media/characters/kairne/side-nsfw.svg",
  34418. extra: 979/811,
  34419. bottom: 13/992
  34420. }
  34421. },
  34422. frontNsfw: {
  34423. height: math.unit(15, "feet"),
  34424. weight: math.unit(5000, "kg"),
  34425. name: "Front (NSFW)",
  34426. image: {
  34427. source: "./media/characters/kairne/front-nsfw.svg",
  34428. extra: 908/814,
  34429. bottom: 26/934
  34430. }
  34431. },
  34432. dickCaged: {
  34433. height: math.unit(0.65, "meters"),
  34434. name: "Dick-caged",
  34435. image: {
  34436. source: "./media/characters/kairne/dick-caged.svg"
  34437. }
  34438. },
  34439. dick: {
  34440. height: math.unit(0.79, "meters"),
  34441. name: "Dick",
  34442. image: {
  34443. source: "./media/characters/kairne/dick.svg"
  34444. }
  34445. },
  34446. genitals: {
  34447. height: math.unit(1.29, "meters"),
  34448. name: "Genitals",
  34449. image: {
  34450. source: "./media/characters/kairne/genitals.svg"
  34451. }
  34452. },
  34453. maw: {
  34454. height: math.unit(1.73, "meters"),
  34455. name: "Maw",
  34456. image: {
  34457. source: "./media/characters/kairne/maw.svg"
  34458. }
  34459. },
  34460. },
  34461. [
  34462. {
  34463. name: "Normal",
  34464. height: math.unit(15, "feet"),
  34465. default: true
  34466. },
  34467. ]
  34468. ))
  34469. characterMakers.push(() => makeCharacter(
  34470. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34471. {
  34472. front: {
  34473. height: math.unit(5 + 8/12, "feet"),
  34474. weight: math.unit(139, "lb"),
  34475. name: "Front",
  34476. image: {
  34477. source: "./media/characters/biscuit-jackal/front.svg",
  34478. extra: 2106/1961,
  34479. bottom: 58/2164
  34480. }
  34481. },
  34482. back: {
  34483. height: math.unit(5 + 8/12, "feet"),
  34484. weight: math.unit(139, "lb"),
  34485. name: "Back",
  34486. image: {
  34487. source: "./media/characters/biscuit-jackal/back.svg",
  34488. extra: 2132/1976,
  34489. bottom: 57/2189
  34490. }
  34491. },
  34492. werejackal: {
  34493. height: math.unit(6 + 3/12, "feet"),
  34494. weight: math.unit(188, "lb"),
  34495. name: "Werejackal",
  34496. image: {
  34497. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34498. extra: 2373/2178,
  34499. bottom: 53/2426
  34500. }
  34501. },
  34502. },
  34503. [
  34504. {
  34505. name: "Normal",
  34506. height: math.unit(5 + 8/12, "feet"),
  34507. default: true
  34508. },
  34509. ]
  34510. ))
  34511. characterMakers.push(() => makeCharacter(
  34512. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34513. {
  34514. front: {
  34515. height: math.unit(140, "cm"),
  34516. weight: math.unit(45, "kg"),
  34517. name: "Front",
  34518. image: {
  34519. source: "./media/characters/tayra-white/front.svg",
  34520. extra: 2229/2192,
  34521. bottom: 75/2304
  34522. }
  34523. },
  34524. },
  34525. [
  34526. {
  34527. name: "Normal",
  34528. height: math.unit(140, "cm"),
  34529. default: true
  34530. },
  34531. ]
  34532. ))
  34533. characterMakers.push(() => makeCharacter(
  34534. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34535. {
  34536. front: {
  34537. height: math.unit(4 + 5/12, "feet"),
  34538. name: "Front",
  34539. image: {
  34540. source: "./media/characters/scoop/front.svg",
  34541. extra: 1257/1136,
  34542. bottom: 69/1326
  34543. }
  34544. },
  34545. back: {
  34546. height: math.unit(4 + 5/12, "feet"),
  34547. name: "Back",
  34548. image: {
  34549. source: "./media/characters/scoop/back.svg",
  34550. extra: 1321/1152,
  34551. bottom: 32/1353
  34552. }
  34553. },
  34554. maw: {
  34555. height: math.unit(0.68, "feet"),
  34556. name: "Maw",
  34557. image: {
  34558. source: "./media/characters/scoop/maw.svg"
  34559. }
  34560. },
  34561. },
  34562. [
  34563. {
  34564. name: "Really Small",
  34565. height: math.unit(1, "mm")
  34566. },
  34567. {
  34568. name: "Micro",
  34569. height: math.unit(1, "inch")
  34570. },
  34571. {
  34572. name: "Normal",
  34573. height: math.unit(4 + 5/12, "feet"),
  34574. default: true
  34575. },
  34576. {
  34577. name: "Macro",
  34578. height: math.unit(200, "feet")
  34579. },
  34580. {
  34581. name: "Megamacro",
  34582. height: math.unit(3240, "feet")
  34583. },
  34584. {
  34585. name: "Teramacro",
  34586. height: math.unit(2500, "miles")
  34587. },
  34588. ]
  34589. ))
  34590. characterMakers.push(() => makeCharacter(
  34591. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34592. {
  34593. front: {
  34594. height: math.unit(15 + 7/12, "feet"),
  34595. weight: math.unit(1150, "tons"),
  34596. name: "Front",
  34597. image: {
  34598. source: "./media/characters/saphinara/front.svg",
  34599. extra: 1837/1643,
  34600. bottom: 84/1921
  34601. },
  34602. form: "normal",
  34603. default: true
  34604. },
  34605. side: {
  34606. height: math.unit(15 + 7/12, "feet"),
  34607. weight: math.unit(1150, "tons"),
  34608. name: "Side",
  34609. image: {
  34610. source: "./media/characters/saphinara/side.svg",
  34611. extra: 605/547,
  34612. bottom: 6/611
  34613. },
  34614. form: "normal"
  34615. },
  34616. back: {
  34617. height: math.unit(15 + 7/12, "feet"),
  34618. weight: math.unit(1150, "tons"),
  34619. name: "Back",
  34620. image: {
  34621. source: "./media/characters/saphinara/back.svg",
  34622. extra: 591/531,
  34623. bottom: 13/604
  34624. },
  34625. form: "normal"
  34626. },
  34627. frontTail: {
  34628. height: math.unit(15 + 7/12, "feet"),
  34629. weight: math.unit(1150, "tons"),
  34630. name: "Front (Full Tail)",
  34631. image: {
  34632. source: "./media/characters/saphinara/front-tail.svg",
  34633. extra: 2256/1630,
  34634. bottom: 261/2517
  34635. },
  34636. form: "normal"
  34637. },
  34638. insides: {
  34639. height: math.unit(11.92, "feet"),
  34640. name: "Insides",
  34641. image: {
  34642. source: "./media/characters/saphinara/insides.svg"
  34643. },
  34644. form: "normal"
  34645. },
  34646. head: {
  34647. height: math.unit(4.17, "feet"),
  34648. name: "Head",
  34649. image: {
  34650. source: "./media/characters/saphinara/head.svg"
  34651. },
  34652. form: "normal"
  34653. },
  34654. tongue: {
  34655. height: math.unit(4.60, "feet"),
  34656. name: "Tongue",
  34657. image: {
  34658. source: "./media/characters/saphinara/tongue.svg"
  34659. },
  34660. form: "normal"
  34661. },
  34662. headEnraged: {
  34663. height: math.unit(5.55, "feet"),
  34664. name: "Head (Enraged)",
  34665. image: {
  34666. source: "./media/characters/saphinara/head-enraged.svg"
  34667. },
  34668. form: "normal"
  34669. },
  34670. wings: {
  34671. height: math.unit(11.95, "feet"),
  34672. name: "Wings",
  34673. image: {
  34674. source: "./media/characters/saphinara/wings.svg"
  34675. },
  34676. form: "normal"
  34677. },
  34678. feathers: {
  34679. height: math.unit(8.92, "feet"),
  34680. name: "Feathers",
  34681. image: {
  34682. source: "./media/characters/saphinara/feathers.svg"
  34683. },
  34684. form: "normal"
  34685. },
  34686. shackles: {
  34687. height: math.unit(2, "feet"),
  34688. name: "Shackles",
  34689. image: {
  34690. source: "./media/characters/saphinara/shackles.svg"
  34691. },
  34692. form: "normal"
  34693. },
  34694. eyes: {
  34695. height: math.unit(1.331, "feet"),
  34696. name: "Eyes",
  34697. image: {
  34698. source: "./media/characters/saphinara/eyes.svg"
  34699. },
  34700. form: "normal"
  34701. },
  34702. eyesEnraged: {
  34703. height: math.unit(1.331, "feet"),
  34704. name: "Eyes (Enraged)",
  34705. image: {
  34706. source: "./media/characters/saphinara/eyes-enraged.svg"
  34707. },
  34708. form: "normal"
  34709. },
  34710. trueFormSide: {
  34711. height: math.unit(200, "feet"),
  34712. weight: math.unit(1e7, "tons"),
  34713. name: "Side",
  34714. image: {
  34715. source: "./media/characters/saphinara/true-form-side.svg",
  34716. extra: 1399/770,
  34717. bottom: 97/1496
  34718. },
  34719. form: "true-form",
  34720. default: true
  34721. },
  34722. trueFormMaw: {
  34723. height: math.unit(71.5, "feet"),
  34724. name: "Maw",
  34725. image: {
  34726. source: "./media/characters/saphinara/true-form-maw.svg",
  34727. extra: 2302/1453,
  34728. bottom: 0/2302
  34729. },
  34730. form: "true-form"
  34731. },
  34732. meowberusSide: {
  34733. height: math.unit(75, "feet"),
  34734. weight: math.unit(180000, "kg"),
  34735. preyCapacity: math.unit(50000, "people"),
  34736. name: "Side",
  34737. image: {
  34738. source: "./media/characters/saphinara/meowberus-side.svg",
  34739. extra: 1400/711,
  34740. bottom: 126/1526
  34741. },
  34742. form: "meowberus",
  34743. extraAttributes: {
  34744. "pawArea": {
  34745. name: "Paw Size",
  34746. power: 2,
  34747. type: "area",
  34748. base: math.unit(35, "m^2")
  34749. }
  34750. }
  34751. },
  34752. },
  34753. [
  34754. {
  34755. name: "Normal",
  34756. height: math.unit(15 + 7/12, "feet"),
  34757. default: true,
  34758. form: "normal"
  34759. },
  34760. {
  34761. name: "Angry",
  34762. height: math.unit(30 + 6/12, "feet"),
  34763. form: "normal"
  34764. },
  34765. {
  34766. name: "Enraged",
  34767. height: math.unit(102 + 1/12, "feet"),
  34768. form: "normal"
  34769. },
  34770. {
  34771. name: "True",
  34772. height: math.unit(200, "feet"),
  34773. default: true,
  34774. form: "true-form"
  34775. },
  34776. {
  34777. name: "Normal",
  34778. height: math.unit(75, "feet"),
  34779. default: true,
  34780. form: "meowberus"
  34781. },
  34782. ],
  34783. {
  34784. "normal": {
  34785. name: "Normal",
  34786. default: true
  34787. },
  34788. "true-form": {
  34789. name: "True Form"
  34790. },
  34791. "meowberus": {
  34792. name: "Meowberus",
  34793. },
  34794. }
  34795. ))
  34796. characterMakers.push(() => makeCharacter(
  34797. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34798. {
  34799. front: {
  34800. height: math.unit(6 + 8/12, "feet"),
  34801. weight: math.unit(300, "lb"),
  34802. name: "Front",
  34803. image: {
  34804. source: "./media/characters/jrain/front.svg",
  34805. extra: 3039/2865,
  34806. bottom: 399/3438
  34807. }
  34808. },
  34809. back: {
  34810. height: math.unit(6 + 8/12, "feet"),
  34811. weight: math.unit(300, "lb"),
  34812. name: "Back",
  34813. image: {
  34814. source: "./media/characters/jrain/back.svg",
  34815. extra: 3089/2938,
  34816. bottom: 172/3261
  34817. }
  34818. },
  34819. head: {
  34820. height: math.unit(2.14, "feet"),
  34821. name: "Head",
  34822. image: {
  34823. source: "./media/characters/jrain/head.svg"
  34824. }
  34825. },
  34826. maw: {
  34827. height: math.unit(1.77, "feet"),
  34828. name: "Maw",
  34829. image: {
  34830. source: "./media/characters/jrain/maw.svg"
  34831. }
  34832. },
  34833. leftHand: {
  34834. height: math.unit(1.1, "feet"),
  34835. name: "Left Hand",
  34836. image: {
  34837. source: "./media/characters/jrain/left-hand.svg"
  34838. }
  34839. },
  34840. rightHand: {
  34841. height: math.unit(1.1, "feet"),
  34842. name: "Right Hand",
  34843. image: {
  34844. source: "./media/characters/jrain/right-hand.svg"
  34845. }
  34846. },
  34847. eye: {
  34848. height: math.unit(0.35, "feet"),
  34849. name: "Eye",
  34850. image: {
  34851. source: "./media/characters/jrain/eye.svg"
  34852. }
  34853. },
  34854. },
  34855. [
  34856. {
  34857. name: "Normal",
  34858. height: math.unit(6 + 8/12, "feet"),
  34859. default: true
  34860. },
  34861. {
  34862. name: "Casually Large",
  34863. height: math.unit(25, "feet")
  34864. },
  34865. {
  34866. name: "Giant",
  34867. height: math.unit(100, "feet")
  34868. },
  34869. {
  34870. name: "Kaiju",
  34871. height: math.unit(300, "feet")
  34872. },
  34873. ]
  34874. ))
  34875. characterMakers.push(() => makeCharacter(
  34876. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34877. {
  34878. dragon: {
  34879. height: math.unit(5, "meters"),
  34880. name: "Dragon",
  34881. image: {
  34882. source: "./media/characters/sabrina/dragon.svg",
  34883. extra: 3670 / 2365,
  34884. bottom: 333 / 4003
  34885. }
  34886. },
  34887. gryphon: {
  34888. height: math.unit(3, "meters"),
  34889. name: "Gryphon",
  34890. image: {
  34891. source: "./media/characters/sabrina/gryphon.svg",
  34892. extra: 1576 / 945,
  34893. bottom: 71 / 1647
  34894. }
  34895. },
  34896. snake: {
  34897. height: math.unit(12, "meters"),
  34898. name: "Snake",
  34899. image: {
  34900. source: "./media/characters/sabrina/snake.svg",
  34901. extra: 1758 / 1320,
  34902. bottom: 186 / 1944
  34903. }
  34904. },
  34905. collar: {
  34906. height: math.unit(1.86, "meters"),
  34907. name: "Collar",
  34908. image: {
  34909. source: "./media/characters/sabrina/collar.svg"
  34910. }
  34911. },
  34912. eye: {
  34913. height: math.unit(0.53, "meters"),
  34914. name: "Eye",
  34915. image: {
  34916. source: "./media/characters/sabrina/eye.svg"
  34917. }
  34918. },
  34919. foot: {
  34920. height: math.unit(1.86, "meters"),
  34921. name: "Foot",
  34922. image: {
  34923. source: "./media/characters/sabrina/foot.svg"
  34924. }
  34925. },
  34926. hand: {
  34927. height: math.unit(1.32, "meters"),
  34928. name: "Hand",
  34929. image: {
  34930. source: "./media/characters/sabrina/hand.svg"
  34931. }
  34932. },
  34933. head: {
  34934. height: math.unit(2.44, "meters"),
  34935. name: "Head",
  34936. image: {
  34937. source: "./media/characters/sabrina/head.svg"
  34938. }
  34939. },
  34940. headAngry: {
  34941. height: math.unit(2.44, "meters"),
  34942. name: "Head (Angry))",
  34943. image: {
  34944. source: "./media/characters/sabrina/head-angry.svg"
  34945. }
  34946. },
  34947. maw: {
  34948. height: math.unit(1.65, "meters"),
  34949. name: "Maw",
  34950. image: {
  34951. source: "./media/characters/sabrina/maw.svg"
  34952. }
  34953. },
  34954. spikes: {
  34955. height: math.unit(1.69, "meters"),
  34956. name: "Spikes",
  34957. image: {
  34958. source: "./media/characters/sabrina/spikes.svg"
  34959. }
  34960. },
  34961. stomach: {
  34962. height: math.unit(1.15, "meters"),
  34963. name: "Stomach",
  34964. image: {
  34965. source: "./media/characters/sabrina/stomach.svg"
  34966. }
  34967. },
  34968. tongue: {
  34969. height: math.unit(1.27, "meters"),
  34970. name: "Tongue",
  34971. image: {
  34972. source: "./media/characters/sabrina/tongue.svg"
  34973. }
  34974. },
  34975. wingDorsal: {
  34976. height: math.unit(4.85, "meters"),
  34977. name: "Wing (Dorsal)",
  34978. image: {
  34979. source: "./media/characters/sabrina/wing-dorsal.svg"
  34980. }
  34981. },
  34982. wingVentral: {
  34983. height: math.unit(4.85, "meters"),
  34984. name: "Wing (Ventral)",
  34985. image: {
  34986. source: "./media/characters/sabrina/wing-ventral.svg"
  34987. }
  34988. },
  34989. },
  34990. [
  34991. {
  34992. name: "Normal",
  34993. height: math.unit(5, "meters"),
  34994. default: true
  34995. },
  34996. ]
  34997. ))
  34998. characterMakers.push(() => makeCharacter(
  34999. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35000. {
  35001. frontMaid: {
  35002. height: math.unit(5 + 5/12, "feet"),
  35003. weight: math.unit(130, "lb"),
  35004. name: "Front (Maid)",
  35005. image: {
  35006. source: "./media/characters/midnight-tales/front-maid.svg",
  35007. extra: 489/454,
  35008. bottom: 61/550
  35009. }
  35010. },
  35011. frontFormal: {
  35012. height: math.unit(5 + 5/12, "feet"),
  35013. weight: math.unit(130, "lb"),
  35014. name: "Front (Formal)",
  35015. image: {
  35016. source: "./media/characters/midnight-tales/front-formal.svg",
  35017. extra: 489/454,
  35018. bottom: 61/550
  35019. }
  35020. },
  35021. back: {
  35022. height: math.unit(5 + 5/12, "feet"),
  35023. weight: math.unit(130, "lb"),
  35024. name: "Back",
  35025. image: {
  35026. source: "./media/characters/midnight-tales/back.svg",
  35027. extra: 498/456,
  35028. bottom: 33/531
  35029. }
  35030. },
  35031. frontBeast: {
  35032. height: math.unit(40, "feet"),
  35033. weight: math.unit(64000, "lb"),
  35034. name: "Front (Beast)",
  35035. image: {
  35036. source: "./media/characters/midnight-tales/front-beast.svg",
  35037. extra: 927/860,
  35038. bottom: 53/980
  35039. }
  35040. },
  35041. backBeast: {
  35042. height: math.unit(40, "feet"),
  35043. weight: math.unit(64000, "lb"),
  35044. name: "Back (Beast)",
  35045. image: {
  35046. source: "./media/characters/midnight-tales/back-beast.svg",
  35047. extra: 929/855,
  35048. bottom: 16/945
  35049. }
  35050. },
  35051. footBeast: {
  35052. height: math.unit(6.7, "feet"),
  35053. name: "Foot (Beast)",
  35054. image: {
  35055. source: "./media/characters/midnight-tales/foot-beast.svg"
  35056. }
  35057. },
  35058. headBeast: {
  35059. height: math.unit(8, "feet"),
  35060. name: "Head (Beast)",
  35061. image: {
  35062. source: "./media/characters/midnight-tales/head-beast.svg"
  35063. }
  35064. },
  35065. },
  35066. [
  35067. {
  35068. name: "Normal",
  35069. height: math.unit(5 + 5 / 12, "feet"),
  35070. default: true
  35071. },
  35072. {
  35073. name: "Macro",
  35074. height: math.unit(25, "feet")
  35075. },
  35076. ]
  35077. ))
  35078. characterMakers.push(() => makeCharacter(
  35079. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35080. {
  35081. front: {
  35082. height: math.unit(5 + 10/12, "feet"),
  35083. name: "Front",
  35084. image: {
  35085. source: "./media/characters/argon/front.svg",
  35086. extra: 2009/1935,
  35087. bottom: 118/2127
  35088. }
  35089. },
  35090. back: {
  35091. height: math.unit(5 + 10/12, "feet"),
  35092. name: "Back",
  35093. image: {
  35094. source: "./media/characters/argon/back.svg",
  35095. extra: 2047/1992,
  35096. bottom: 20/2067
  35097. }
  35098. },
  35099. frontDressed: {
  35100. height: math.unit(5 + 10/12, "feet"),
  35101. name: "Front (Dressed)",
  35102. image: {
  35103. source: "./media/characters/argon/front-dressed.svg",
  35104. extra: 2009/1935,
  35105. bottom: 118/2127
  35106. }
  35107. },
  35108. },
  35109. [
  35110. {
  35111. name: "Normal",
  35112. height: math.unit(5 + 10/12, "feet"),
  35113. default: true
  35114. },
  35115. ]
  35116. ))
  35117. characterMakers.push(() => makeCharacter(
  35118. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35119. {
  35120. front: {
  35121. height: math.unit(8 + 6/12, "feet"),
  35122. weight: math.unit(1150, "lb"),
  35123. name: "Front",
  35124. image: {
  35125. source: "./media/characters/kichi/front.svg",
  35126. extra: 1267/1164,
  35127. bottom: 61/1328
  35128. }
  35129. },
  35130. back: {
  35131. height: math.unit(8 + 6/12, "feet"),
  35132. weight: math.unit(1150, "lb"),
  35133. name: "Back",
  35134. image: {
  35135. source: "./media/characters/kichi/back.svg",
  35136. extra: 1273/1166,
  35137. bottom: 33/1306
  35138. }
  35139. },
  35140. },
  35141. [
  35142. {
  35143. name: "Normal",
  35144. height: math.unit(8 + 6/12, "feet"),
  35145. default: true
  35146. },
  35147. ]
  35148. ))
  35149. characterMakers.push(() => makeCharacter(
  35150. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35151. {
  35152. front: {
  35153. height: math.unit(6, "feet"),
  35154. weight: math.unit(210, "lb"),
  35155. name: "Front",
  35156. image: {
  35157. source: "./media/characters/manetel-greyscale/front.svg",
  35158. extra: 350/312,
  35159. bottom: 8/358
  35160. }
  35161. },
  35162. },
  35163. [
  35164. {
  35165. name: "Micro",
  35166. height: math.unit(2, "inches")
  35167. },
  35168. {
  35169. name: "Normal",
  35170. height: math.unit(6, "feet"),
  35171. default: true
  35172. },
  35173. {
  35174. name: "Minimacro",
  35175. height: math.unit(17, "feet")
  35176. },
  35177. {
  35178. name: "Macro",
  35179. height: math.unit(117, "feet")
  35180. },
  35181. ]
  35182. ))
  35183. characterMakers.push(() => makeCharacter(
  35184. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35185. {
  35186. side: {
  35187. height: math.unit(5 + 1/12, "feet"),
  35188. weight: math.unit(418, "lb"),
  35189. name: "Side",
  35190. image: {
  35191. source: "./media/characters/softpurr/side.svg",
  35192. extra: 1993/1945,
  35193. bottom: 134/2127
  35194. }
  35195. },
  35196. front: {
  35197. height: math.unit(5 + 1/12, "feet"),
  35198. weight: math.unit(418, "lb"),
  35199. name: "Front",
  35200. image: {
  35201. source: "./media/characters/softpurr/front.svg",
  35202. extra: 1950/1856,
  35203. bottom: 174/2124
  35204. }
  35205. },
  35206. paw: {
  35207. height: math.unit(1, "feet"),
  35208. name: "Paw",
  35209. image: {
  35210. source: "./media/characters/softpurr/paw.svg"
  35211. }
  35212. },
  35213. },
  35214. [
  35215. {
  35216. name: "Normal",
  35217. height: math.unit(5 + 1/12, "feet"),
  35218. default: true
  35219. },
  35220. ]
  35221. ))
  35222. characterMakers.push(() => makeCharacter(
  35223. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35224. {
  35225. front: {
  35226. height: math.unit(260, "meters"),
  35227. name: "Front",
  35228. image: {
  35229. source: "./media/characters/anahita/front.svg",
  35230. extra: 665/635,
  35231. bottom: 89/754
  35232. }
  35233. },
  35234. },
  35235. [
  35236. {
  35237. name: "Macro",
  35238. height: math.unit(260, "meters"),
  35239. default: true
  35240. },
  35241. ]
  35242. ))
  35243. characterMakers.push(() => makeCharacter(
  35244. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35245. {
  35246. front: {
  35247. height: math.unit(4 + 10/12, "feet"),
  35248. weight: math.unit(160, "lb"),
  35249. name: "Front",
  35250. image: {
  35251. source: "./media/characters/chip-mouse/front.svg",
  35252. extra: 3528/3408,
  35253. bottom: 0/3528
  35254. }
  35255. },
  35256. frontNsfw: {
  35257. height: math.unit(4 + 10/12, "feet"),
  35258. weight: math.unit(160, "lb"),
  35259. name: "Front (NSFW)",
  35260. image: {
  35261. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35262. extra: 3528/3408,
  35263. bottom: 0/3528
  35264. }
  35265. },
  35266. },
  35267. [
  35268. {
  35269. name: "Normal",
  35270. height: math.unit(4 + 10/12, "feet"),
  35271. default: true
  35272. },
  35273. ]
  35274. ))
  35275. characterMakers.push(() => makeCharacter(
  35276. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35277. {
  35278. side: {
  35279. height: math.unit(10, "feet"),
  35280. weight: math.unit(14000, "lb"),
  35281. name: "Side",
  35282. image: {
  35283. source: "./media/characters/kremm/side.svg",
  35284. extra: 1390/1053,
  35285. bottom: 90/1480
  35286. }
  35287. },
  35288. gut: {
  35289. height: math.unit(5.8, "feet"),
  35290. name: "Gut",
  35291. image: {
  35292. source: "./media/characters/kremm/gut.svg"
  35293. }
  35294. },
  35295. ass: {
  35296. height: math.unit(6.1, "feet"),
  35297. name: "Ass",
  35298. image: {
  35299. source: "./media/characters/kremm/ass.svg"
  35300. }
  35301. },
  35302. jaws: {
  35303. height: math.unit(2.2, "feet"),
  35304. name: "Jaws",
  35305. image: {
  35306. source: "./media/characters/kremm/jaws.svg"
  35307. }
  35308. },
  35309. dick: {
  35310. height: math.unit(4.26, "feet"),
  35311. name: "Dick",
  35312. image: {
  35313. source: "./media/characters/kremm/dick.svg"
  35314. }
  35315. },
  35316. },
  35317. [
  35318. {
  35319. name: "Normal",
  35320. height: math.unit(10, "feet"),
  35321. default: true
  35322. },
  35323. ]
  35324. ))
  35325. characterMakers.push(() => makeCharacter(
  35326. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35327. {
  35328. front: {
  35329. height: math.unit(30, "stories"),
  35330. name: "Front",
  35331. image: {
  35332. source: "./media/characters/kai/front.svg",
  35333. extra: 1892/1718,
  35334. bottom: 162/2054
  35335. }
  35336. },
  35337. },
  35338. [
  35339. {
  35340. name: "Macro",
  35341. height: math.unit(30, "stories"),
  35342. default: true
  35343. },
  35344. ]
  35345. ))
  35346. characterMakers.push(() => makeCharacter(
  35347. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35348. {
  35349. front: {
  35350. height: math.unit(6 + 4/12, "feet"),
  35351. weight: math.unit(145, "lb"),
  35352. name: "Front",
  35353. image: {
  35354. source: "./media/characters/sykes/front.svg",
  35355. extra: 1321 / 1187,
  35356. bottom: 66 / 1387
  35357. }
  35358. },
  35359. back: {
  35360. height: math.unit(6 + 4/12, "feet"),
  35361. weight: math.unit(145, "lb"),
  35362. name: "Back",
  35363. image: {
  35364. source: "./media/characters/sykes/back.svg",
  35365. extra: 1326/1181,
  35366. bottom: 31/1357
  35367. }
  35368. },
  35369. traditionalOutfit: {
  35370. height: math.unit(6 + 4/12, "feet"),
  35371. weight: math.unit(145, "lb"),
  35372. name: "Traditional Outfit",
  35373. image: {
  35374. source: "./media/characters/sykes/traditional-outfit.svg",
  35375. extra: 1321 / 1187,
  35376. bottom: 66 / 1387
  35377. }
  35378. },
  35379. adventureOutfit: {
  35380. height: math.unit(6 + 4/12, "feet"),
  35381. weight: math.unit(145, "lb"),
  35382. name: "Adventure Outfit",
  35383. image: {
  35384. source: "./media/characters/sykes/adventure-outfit.svg",
  35385. extra: 1321 / 1187,
  35386. bottom: 66 / 1387
  35387. }
  35388. },
  35389. handLeft: {
  35390. height: math.unit(0.9, "feet"),
  35391. name: "Hand (Left)",
  35392. image: {
  35393. source: "./media/characters/sykes/hand-left.svg"
  35394. }
  35395. },
  35396. handRight: {
  35397. height: math.unit(0.839, "feet"),
  35398. name: "Hand (Right)",
  35399. image: {
  35400. source: "./media/characters/sykes/hand-right.svg"
  35401. }
  35402. },
  35403. leftFoot: {
  35404. height: math.unit(1.2, "feet"),
  35405. name: "Foot (Left)",
  35406. image: {
  35407. source: "./media/characters/sykes/foot-left.svg"
  35408. }
  35409. },
  35410. rightFoot: {
  35411. height: math.unit(1.2, "feet"),
  35412. name: "Foot (Right)",
  35413. image: {
  35414. source: "./media/characters/sykes/foot-right.svg"
  35415. }
  35416. },
  35417. maw: {
  35418. height: math.unit(1.93, "feet"),
  35419. name: "Maw",
  35420. image: {
  35421. source: "./media/characters/sykes/maw.svg"
  35422. }
  35423. },
  35424. teeth: {
  35425. height: math.unit(0.51, "feet"),
  35426. name: "Teeth",
  35427. image: {
  35428. source: "./media/characters/sykes/teeth.svg"
  35429. }
  35430. },
  35431. tongue: {
  35432. height: math.unit(2.13, "feet"),
  35433. name: "Tongue",
  35434. image: {
  35435. source: "./media/characters/sykes/tongue.svg"
  35436. }
  35437. },
  35438. uvula: {
  35439. height: math.unit(0.16, "feet"),
  35440. name: "Uvula",
  35441. image: {
  35442. source: "./media/characters/sykes/uvula.svg"
  35443. }
  35444. },
  35445. collar: {
  35446. height: math.unit(0.287, "feet"),
  35447. name: "Collar",
  35448. image: {
  35449. source: "./media/characters/sykes/collar.svg"
  35450. }
  35451. },
  35452. tail: {
  35453. height: math.unit(3.8, "feet"),
  35454. name: "Tail",
  35455. image: {
  35456. source: "./media/characters/sykes/tail.svg"
  35457. }
  35458. },
  35459. },
  35460. [
  35461. {
  35462. name: "Shrunken",
  35463. height: math.unit(5, "inches")
  35464. },
  35465. {
  35466. name: "Normal",
  35467. height: math.unit(6 + 4 / 12, "feet"),
  35468. default: true
  35469. },
  35470. {
  35471. name: "Big",
  35472. height: math.unit(15, "feet")
  35473. },
  35474. ]
  35475. ))
  35476. characterMakers.push(() => makeCharacter(
  35477. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35478. {
  35479. front: {
  35480. height: math.unit(5 + 8/12, "feet"),
  35481. weight: math.unit(190, "lb"),
  35482. name: "Front",
  35483. image: {
  35484. source: "./media/characters/oven-otter/front.svg",
  35485. extra: 1809/1740,
  35486. bottom: 181/1990
  35487. }
  35488. },
  35489. back: {
  35490. height: math.unit(5 + 8/12, "feet"),
  35491. weight: math.unit(190, "lb"),
  35492. name: "Back",
  35493. image: {
  35494. source: "./media/characters/oven-otter/back.svg",
  35495. extra: 1709/1635,
  35496. bottom: 118/1827
  35497. }
  35498. },
  35499. hand: {
  35500. height: math.unit(1.07, "feet"),
  35501. name: "Hand",
  35502. image: {
  35503. source: "./media/characters/oven-otter/hand.svg"
  35504. }
  35505. },
  35506. beans: {
  35507. height: math.unit(1.74, "feet"),
  35508. name: "Beans",
  35509. image: {
  35510. source: "./media/characters/oven-otter/beans.svg"
  35511. }
  35512. },
  35513. },
  35514. [
  35515. {
  35516. name: "Micro",
  35517. height: math.unit(0.5, "inches")
  35518. },
  35519. {
  35520. name: "Normal",
  35521. height: math.unit(5 + 8/12, "feet"),
  35522. default: true
  35523. },
  35524. {
  35525. name: "Macro",
  35526. height: math.unit(250, "feet")
  35527. },
  35528. {
  35529. name: "Really High",
  35530. height: math.unit(420, "feet")
  35531. },
  35532. ]
  35533. ))
  35534. characterMakers.push(() => makeCharacter(
  35535. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35536. {
  35537. front: {
  35538. height: math.unit(5, "meters"),
  35539. weight: math.unit(292000000000000, "kg"),
  35540. name: "Front",
  35541. image: {
  35542. source: "./media/characters/devourer/front.svg",
  35543. extra: 1800/1733,
  35544. bottom: 211/2011
  35545. }
  35546. },
  35547. maw: {
  35548. height: math.unit(1.1, "meter"),
  35549. name: "Maw",
  35550. image: {
  35551. source: "./media/characters/devourer/maw.svg"
  35552. }
  35553. },
  35554. },
  35555. [
  35556. {
  35557. name: "Small",
  35558. height: math.unit(3, "meters")
  35559. },
  35560. {
  35561. name: "Large",
  35562. height: math.unit(5, "meters"),
  35563. default: true
  35564. },
  35565. ]
  35566. ))
  35567. characterMakers.push(() => makeCharacter(
  35568. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35569. {
  35570. front: {
  35571. height: math.unit(6, "feet"),
  35572. weight: math.unit(400, "lb"),
  35573. name: "Front",
  35574. image: {
  35575. source: "./media/characters/ellarby/front.svg",
  35576. extra: 1909/1763,
  35577. bottom: 80/1989
  35578. }
  35579. },
  35580. back: {
  35581. height: math.unit(6, "feet"),
  35582. weight: math.unit(400, "lb"),
  35583. name: "Back",
  35584. image: {
  35585. source: "./media/characters/ellarby/back.svg",
  35586. extra: 1914/1784,
  35587. bottom: 172/2086
  35588. }
  35589. },
  35590. },
  35591. [
  35592. {
  35593. name: "Mischief",
  35594. height: math.unit(18, "inches")
  35595. },
  35596. {
  35597. name: "Trouble",
  35598. height: math.unit(12, "feet")
  35599. },
  35600. {
  35601. name: "Havoc",
  35602. height: math.unit(200, "feet"),
  35603. default: true
  35604. },
  35605. {
  35606. name: "Pandemonium",
  35607. height: math.unit(1, "mile")
  35608. },
  35609. {
  35610. name: "Catastrophe",
  35611. height: math.unit(100, "miles")
  35612. },
  35613. ]
  35614. ))
  35615. characterMakers.push(() => makeCharacter(
  35616. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35617. {
  35618. front: {
  35619. height: math.unit(4.7, "meters"),
  35620. weight: math.unit(6500, "kg"),
  35621. name: "Front",
  35622. image: {
  35623. source: "./media/characters/vex/front.svg",
  35624. extra: 1288/1140,
  35625. bottom: 100/1388
  35626. }
  35627. },
  35628. },
  35629. [
  35630. {
  35631. name: "Normal",
  35632. height: math.unit(4.7, "meters"),
  35633. default: true
  35634. },
  35635. ]
  35636. ))
  35637. characterMakers.push(() => makeCharacter(
  35638. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35639. {
  35640. normal: {
  35641. height: math.unit(6, "feet"),
  35642. weight: math.unit(350, "lb"),
  35643. name: "Normal",
  35644. image: {
  35645. source: "./media/characters/teshy/normal.svg",
  35646. extra: 1795/1735,
  35647. bottom: 16/1811
  35648. }
  35649. },
  35650. monsterFront: {
  35651. height: math.unit(12, "feet"),
  35652. weight: math.unit(4700, "lb"),
  35653. name: "Monster (Front)",
  35654. image: {
  35655. source: "./media/characters/teshy/monster-front.svg",
  35656. extra: 2042/2034,
  35657. bottom: 128/2170
  35658. }
  35659. },
  35660. monsterSide: {
  35661. height: math.unit(12, "feet"),
  35662. weight: math.unit(4700, "lb"),
  35663. name: "Monster (Side)",
  35664. image: {
  35665. source: "./media/characters/teshy/monster-side.svg",
  35666. extra: 2067/2056,
  35667. bottom: 70/2137
  35668. }
  35669. },
  35670. monsterBack: {
  35671. height: math.unit(12, "feet"),
  35672. weight: math.unit(4700, "lb"),
  35673. name: "Monster (Back)",
  35674. image: {
  35675. source: "./media/characters/teshy/monster-back.svg",
  35676. extra: 1921/1914,
  35677. bottom: 171/2092
  35678. }
  35679. },
  35680. },
  35681. [
  35682. {
  35683. name: "Normal",
  35684. height: math.unit(6, "feet"),
  35685. default: true
  35686. },
  35687. ]
  35688. ))
  35689. characterMakers.push(() => makeCharacter(
  35690. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35691. {
  35692. front: {
  35693. height: math.unit(6, "feet"),
  35694. name: "Front",
  35695. image: {
  35696. source: "./media/characters/ramey/front.svg",
  35697. extra: 790/787,
  35698. bottom: 27/817
  35699. }
  35700. },
  35701. },
  35702. [
  35703. {
  35704. name: "Normal",
  35705. height: math.unit(6, "feet"),
  35706. default: true
  35707. },
  35708. ]
  35709. ))
  35710. characterMakers.push(() => makeCharacter(
  35711. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35712. {
  35713. front: {
  35714. height: math.unit(5 + 5/12, "feet"),
  35715. weight: math.unit(120, "lb"),
  35716. name: "Front",
  35717. image: {
  35718. source: "./media/characters/phirae/front.svg",
  35719. extra: 2491/2436,
  35720. bottom: 38/2529
  35721. }
  35722. },
  35723. },
  35724. [
  35725. {
  35726. name: "Normal",
  35727. height: math.unit(5 + 5/12, "feet"),
  35728. default: true
  35729. },
  35730. ]
  35731. ))
  35732. characterMakers.push(() => makeCharacter(
  35733. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35734. {
  35735. front: {
  35736. height: math.unit(5 + 3/12, "feet"),
  35737. name: "Front",
  35738. image: {
  35739. source: "./media/characters/stagglas/front.svg",
  35740. extra: 962/882,
  35741. bottom: 53/1015
  35742. }
  35743. },
  35744. feral: {
  35745. height: math.unit(335, "cm"),
  35746. name: "Feral",
  35747. image: {
  35748. source: "./media/characters/stagglas/feral.svg",
  35749. extra: 1732/1090,
  35750. bottom: 48/1780
  35751. }
  35752. },
  35753. },
  35754. [
  35755. {
  35756. name: "Normal",
  35757. height: math.unit(5 + 3/12, "feet"),
  35758. default: true
  35759. },
  35760. ]
  35761. ))
  35762. characterMakers.push(() => makeCharacter(
  35763. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35764. {
  35765. front: {
  35766. height: math.unit(5 + 4/12, "feet"),
  35767. weight: math.unit(145, "lb"),
  35768. name: "Front",
  35769. image: {
  35770. source: "./media/characters/starra/front.svg",
  35771. extra: 1790/1691,
  35772. bottom: 91/1881
  35773. }
  35774. },
  35775. },
  35776. [
  35777. {
  35778. name: "Normal",
  35779. height: math.unit(5 + 4/12, "feet"),
  35780. default: true
  35781. },
  35782. ]
  35783. ))
  35784. characterMakers.push(() => makeCharacter(
  35785. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35786. {
  35787. front: {
  35788. height: math.unit(2.2, "meters"),
  35789. name: "Front",
  35790. image: {
  35791. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35792. extra: 1194/1005,
  35793. bottom: 25/1219
  35794. }
  35795. },
  35796. },
  35797. [
  35798. {
  35799. name: "Normal",
  35800. height: math.unit(2.2, "meters"),
  35801. default: true
  35802. },
  35803. ]
  35804. ))
  35805. characterMakers.push(() => makeCharacter(
  35806. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35807. {
  35808. side: {
  35809. height: math.unit(8 + 2/12, "feet"),
  35810. weight: math.unit(1240, "lb"),
  35811. name: "Side",
  35812. image: {
  35813. source: "./media/characters/mika-valentine/side.svg",
  35814. extra: 2670/2501,
  35815. bottom: 250/2920
  35816. }
  35817. },
  35818. },
  35819. [
  35820. {
  35821. name: "Normal",
  35822. height: math.unit(8 + 2/12, "feet"),
  35823. default: true
  35824. },
  35825. ]
  35826. ))
  35827. characterMakers.push(() => makeCharacter(
  35828. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35829. {
  35830. front: {
  35831. height: math.unit(7 + 2/12, "feet"),
  35832. name: "Front",
  35833. image: {
  35834. source: "./media/characters/xoltol/front.svg",
  35835. extra: 2212/2124,
  35836. bottom: 84/2296
  35837. }
  35838. },
  35839. side: {
  35840. height: math.unit(7 + 2/12, "feet"),
  35841. name: "Side",
  35842. image: {
  35843. source: "./media/characters/xoltol/side.svg",
  35844. extra: 2273/2197,
  35845. bottom: 26/2299
  35846. }
  35847. },
  35848. hand: {
  35849. height: math.unit(2.5, "feet"),
  35850. name: "Hand",
  35851. image: {
  35852. source: "./media/characters/xoltol/hand.svg"
  35853. }
  35854. },
  35855. },
  35856. [
  35857. {
  35858. name: "Small-ish",
  35859. height: math.unit(5 + 11/12, "feet")
  35860. },
  35861. {
  35862. name: "Normal",
  35863. height: math.unit(7 + 2/12, "feet")
  35864. },
  35865. {
  35866. name: "\"Macro\"",
  35867. height: math.unit(14 + 9/12, "feet"),
  35868. default: true
  35869. },
  35870. {
  35871. name: "Alternate Height",
  35872. height: math.unit(20, "feet")
  35873. },
  35874. {
  35875. name: "Actually Macro",
  35876. height: math.unit(100, "feet")
  35877. },
  35878. ]
  35879. ))
  35880. characterMakers.push(() => makeCharacter(
  35881. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35882. {
  35883. front: {
  35884. height: math.unit(5 + 2/12, "feet"),
  35885. name: "Front",
  35886. image: {
  35887. source: "./media/characters/kotetsu-redwood/front.svg",
  35888. extra: 1053/942,
  35889. bottom: 60/1113
  35890. }
  35891. },
  35892. },
  35893. [
  35894. {
  35895. name: "Normal",
  35896. height: math.unit(5 + 2/12, "feet"),
  35897. default: true
  35898. },
  35899. ]
  35900. ))
  35901. characterMakers.push(() => makeCharacter(
  35902. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35903. {
  35904. front: {
  35905. height: math.unit(2.4, "meters"),
  35906. weight: math.unit(125, "kg"),
  35907. name: "Front",
  35908. image: {
  35909. source: "./media/characters/lilith/front.svg",
  35910. extra: 1590/1513,
  35911. bottom: 203/1793
  35912. }
  35913. },
  35914. },
  35915. [
  35916. {
  35917. name: "Humanoid",
  35918. height: math.unit(2.4, "meters")
  35919. },
  35920. {
  35921. name: "Normal",
  35922. height: math.unit(6, "meters"),
  35923. default: true
  35924. },
  35925. {
  35926. name: "Largest",
  35927. height: math.unit(55, "meters")
  35928. },
  35929. ]
  35930. ))
  35931. characterMakers.push(() => makeCharacter(
  35932. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35933. {
  35934. front: {
  35935. height: math.unit(8 + 4/12, "feet"),
  35936. weight: math.unit(535, "lb"),
  35937. name: "Front",
  35938. image: {
  35939. source: "./media/characters/beh'kah-bolger/front.svg",
  35940. extra: 1660/1603,
  35941. bottom: 37/1697
  35942. }
  35943. },
  35944. },
  35945. [
  35946. {
  35947. name: "Normal",
  35948. height: math.unit(8 + 4/12, "feet"),
  35949. default: true
  35950. },
  35951. {
  35952. name: "Kaiju",
  35953. height: math.unit(250, "feet")
  35954. },
  35955. {
  35956. name: "Still Growing",
  35957. height: math.unit(10, "miles")
  35958. },
  35959. {
  35960. name: "Continental",
  35961. height: math.unit(5000, "miles")
  35962. },
  35963. {
  35964. name: "Final Form",
  35965. height: math.unit(2500000, "miles")
  35966. },
  35967. ]
  35968. ))
  35969. characterMakers.push(() => makeCharacter(
  35970. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35971. {
  35972. front: {
  35973. height: math.unit(7 + 2/12, "feet"),
  35974. weight: math.unit(230, "kg"),
  35975. name: "Front",
  35976. image: {
  35977. source: "./media/characters/tatyana-milewska/front.svg",
  35978. extra: 1199/1150,
  35979. bottom: 86/1285
  35980. }
  35981. },
  35982. },
  35983. [
  35984. {
  35985. name: "Normal",
  35986. height: math.unit(7 + 2/12, "feet"),
  35987. default: true
  35988. },
  35989. {
  35990. name: "Big",
  35991. height: math.unit(12, "feet")
  35992. },
  35993. {
  35994. name: "Minimacro",
  35995. height: math.unit(20, "feet")
  35996. },
  35997. {
  35998. name: "Macro",
  35999. height: math.unit(120, "feet")
  36000. },
  36001. ]
  36002. ))
  36003. characterMakers.push(() => makeCharacter(
  36004. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36005. {
  36006. front: {
  36007. height: math.unit(7 + 8/12, "feet"),
  36008. weight: math.unit(152, "kg"),
  36009. name: "Front",
  36010. image: {
  36011. source: "./media/characters/helen-arri/front.svg",
  36012. extra: 440/423,
  36013. bottom: 14/454
  36014. }
  36015. },
  36016. back: {
  36017. height: math.unit(7 + 8/12, "feet"),
  36018. weight: math.unit(152, "kg"),
  36019. name: "Back",
  36020. image: {
  36021. source: "./media/characters/helen-arri/back.svg",
  36022. extra: 443/426,
  36023. bottom: 8/451
  36024. }
  36025. },
  36026. },
  36027. [
  36028. {
  36029. name: "Normal",
  36030. height: math.unit(7 + 8/12, "feet"),
  36031. default: true
  36032. },
  36033. {
  36034. name: "Big",
  36035. height: math.unit(14, "feet")
  36036. },
  36037. {
  36038. name: "Minimacro",
  36039. height: math.unit(24, "feet")
  36040. },
  36041. {
  36042. name: "Macro",
  36043. height: math.unit(140, "feet")
  36044. },
  36045. ]
  36046. ))
  36047. characterMakers.push(() => makeCharacter(
  36048. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36049. {
  36050. front: {
  36051. height: math.unit(6, "meters"),
  36052. name: "Front",
  36053. image: {
  36054. source: "./media/characters/ehanu-rehu/front.svg",
  36055. extra: 1800/1800,
  36056. bottom: 59/1859
  36057. }
  36058. },
  36059. },
  36060. [
  36061. {
  36062. name: "Normal",
  36063. height: math.unit(6, "meters"),
  36064. default: true
  36065. },
  36066. ]
  36067. ))
  36068. characterMakers.push(() => makeCharacter(
  36069. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36070. {
  36071. front: {
  36072. height: math.unit(7 + 3/12, "feet"),
  36073. name: "Front",
  36074. image: {
  36075. source: "./media/characters/renholder/front.svg",
  36076. extra: 3096/2960,
  36077. bottom: 250/3346
  36078. }
  36079. },
  36080. },
  36081. [
  36082. {
  36083. name: "Normal Bat",
  36084. height: math.unit(7 + 3/12, "feet"),
  36085. default: true
  36086. },
  36087. {
  36088. name: "Slightly Tall Bat",
  36089. height: math.unit(100, "feet")
  36090. },
  36091. {
  36092. name: "Big Bat",
  36093. height: math.unit(1000, "feet")
  36094. },
  36095. {
  36096. name: "City-Sized Bat",
  36097. height: math.unit(200000, "feet")
  36098. },
  36099. {
  36100. name: "Bigger Bat",
  36101. height: math.unit(10000, "miles")
  36102. },
  36103. {
  36104. name: "Solar Sized Bat",
  36105. height: math.unit(100, "AU")
  36106. },
  36107. {
  36108. name: "Galactic Bat",
  36109. height: math.unit(200000, "lightyears")
  36110. },
  36111. {
  36112. name: "Universally Known Bat",
  36113. height: math.unit(1, "universe")
  36114. },
  36115. ]
  36116. ))
  36117. characterMakers.push(() => makeCharacter(
  36118. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36119. {
  36120. front: {
  36121. height: math.unit(6 + 11/12, "feet"),
  36122. weight: math.unit(250, "lb"),
  36123. name: "Front",
  36124. image: {
  36125. source: "./media/characters/cookiecat/front.svg",
  36126. extra: 893/827,
  36127. bottom: 14/907
  36128. }
  36129. },
  36130. },
  36131. [
  36132. {
  36133. name: "Micro",
  36134. height: math.unit(3, "inches")
  36135. },
  36136. {
  36137. name: "Normal",
  36138. height: math.unit(6 + 11/12, "feet"),
  36139. default: true
  36140. },
  36141. {
  36142. name: "Macro",
  36143. height: math.unit(100, "feet")
  36144. },
  36145. {
  36146. name: "Macro+",
  36147. height: math.unit(404, "feet")
  36148. },
  36149. {
  36150. name: "Megamacro",
  36151. height: math.unit(165, "miles")
  36152. },
  36153. {
  36154. name: "Planetary",
  36155. height: math.unit(4600, "miles")
  36156. },
  36157. ]
  36158. ))
  36159. characterMakers.push(() => makeCharacter(
  36160. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36161. {
  36162. front: {
  36163. height: math.unit(10 + 3/12, "feet"),
  36164. weight: math.unit(1500, "lb"),
  36165. name: "Front",
  36166. image: {
  36167. source: "./media/characters/tux-kusanagi/front.svg",
  36168. extra: 944/840,
  36169. bottom: 39/983
  36170. }
  36171. },
  36172. back: {
  36173. height: math.unit(10 + 3/12, "feet"),
  36174. weight: math.unit(1500, "lb"),
  36175. name: "Back",
  36176. image: {
  36177. source: "./media/characters/tux-kusanagi/back.svg",
  36178. extra: 941/842,
  36179. bottom: 28/969
  36180. }
  36181. },
  36182. rump: {
  36183. height: math.unit(5.25, "feet"),
  36184. name: "Rump",
  36185. image: {
  36186. source: "./media/characters/tux-kusanagi/rump.svg"
  36187. }
  36188. },
  36189. beak: {
  36190. height: math.unit(1.54, "feet"),
  36191. name: "Beak",
  36192. image: {
  36193. source: "./media/characters/tux-kusanagi/beak.svg"
  36194. }
  36195. },
  36196. },
  36197. [
  36198. {
  36199. name: "Normal",
  36200. height: math.unit(10 + 3/12, "feet"),
  36201. default: true
  36202. },
  36203. ]
  36204. ))
  36205. characterMakers.push(() => makeCharacter(
  36206. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36207. {
  36208. front: {
  36209. height: math.unit(58, "feet"),
  36210. weight: math.unit(200, "tons"),
  36211. name: "Front",
  36212. image: {
  36213. source: "./media/characters/uzarmazari/front.svg",
  36214. extra: 1575/1455,
  36215. bottom: 152/1727
  36216. }
  36217. },
  36218. back: {
  36219. height: math.unit(58, "feet"),
  36220. weight: math.unit(200, "tons"),
  36221. name: "Back",
  36222. image: {
  36223. source: "./media/characters/uzarmazari/back.svg",
  36224. extra: 1585/1510,
  36225. bottom: 157/1742
  36226. }
  36227. },
  36228. head: {
  36229. height: math.unit(26, "feet"),
  36230. name: "Head",
  36231. image: {
  36232. source: "./media/characters/uzarmazari/head.svg"
  36233. }
  36234. },
  36235. },
  36236. [
  36237. {
  36238. name: "Normal",
  36239. height: math.unit(58, "feet"),
  36240. default: true
  36241. },
  36242. ]
  36243. ))
  36244. characterMakers.push(() => makeCharacter(
  36245. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36246. {
  36247. side: {
  36248. height: math.unit(15, "feet"),
  36249. name: "Side",
  36250. image: {
  36251. source: "./media/characters/akitu/side.svg",
  36252. extra: 1421/1321,
  36253. bottom: 157/1578
  36254. }
  36255. },
  36256. front: {
  36257. height: math.unit(15, "feet"),
  36258. name: "Front",
  36259. image: {
  36260. source: "./media/characters/akitu/front.svg",
  36261. extra: 1435/1326,
  36262. bottom: 232/1667
  36263. }
  36264. },
  36265. },
  36266. [
  36267. {
  36268. name: "Normal",
  36269. height: math.unit(15, "feet"),
  36270. default: true
  36271. },
  36272. ]
  36273. ))
  36274. characterMakers.push(() => makeCharacter(
  36275. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36276. {
  36277. front: {
  36278. height: math.unit(10 + 8/12, "feet"),
  36279. name: "Front",
  36280. image: {
  36281. source: "./media/characters/azalie-croixland/front.svg",
  36282. extra: 1972/1856,
  36283. bottom: 31/2003
  36284. }
  36285. },
  36286. },
  36287. [
  36288. {
  36289. name: "Original Height",
  36290. height: math.unit(5 + 4/12, "feet")
  36291. },
  36292. {
  36293. name: "Normal Height",
  36294. height: math.unit(10 + 8/12, "feet"),
  36295. default: true
  36296. },
  36297. ]
  36298. ))
  36299. characterMakers.push(() => makeCharacter(
  36300. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36301. {
  36302. side: {
  36303. height: math.unit(7 + 1/12, "feet"),
  36304. weight: math.unit(245, "lb"),
  36305. name: "Side",
  36306. image: {
  36307. source: "./media/characters/kavus-kazian/side.svg",
  36308. extra: 349/342,
  36309. bottom: 15/364
  36310. }
  36311. },
  36312. },
  36313. [
  36314. {
  36315. name: "Normal",
  36316. height: math.unit(7 + 1/12, "feet"),
  36317. default: true
  36318. },
  36319. ]
  36320. ))
  36321. characterMakers.push(() => makeCharacter(
  36322. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36323. {
  36324. normalFront: {
  36325. height: math.unit(5 + 11/12, "feet"),
  36326. name: "Front",
  36327. image: {
  36328. source: "./media/characters/moonlight-rose/normal-front.svg",
  36329. extra: 1980/1825,
  36330. bottom: 18/1998
  36331. },
  36332. form: "normal",
  36333. default: true
  36334. },
  36335. normalBack: {
  36336. height: math.unit(5 + 11/12, "feet"),
  36337. name: "Back",
  36338. image: {
  36339. source: "./media/characters/moonlight-rose/normal-back.svg",
  36340. extra: 2010/1839,
  36341. bottom: 10/2020
  36342. },
  36343. form: "normal"
  36344. },
  36345. demonFront: {
  36346. height: math.unit(1.5, "earths"),
  36347. name: "Front",
  36348. image: {
  36349. source: "./media/characters/moonlight-rose/demon.svg",
  36350. extra: 1400/1294,
  36351. bottom: 45/1445
  36352. },
  36353. form: "demon",
  36354. default: true
  36355. },
  36356. terraFront: {
  36357. height: math.unit(1.5, "earths"),
  36358. name: "Front",
  36359. image: {
  36360. source: "./media/characters/moonlight-rose/terra.svg"
  36361. },
  36362. form: "terra",
  36363. default: true
  36364. },
  36365. jupiterFront: {
  36366. height: math.unit(69911*2, "km"),
  36367. name: "Front",
  36368. image: {
  36369. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36370. extra: 1367/1286,
  36371. bottom: 55/1422
  36372. },
  36373. form: "jupiter",
  36374. default: true
  36375. },
  36376. neptuneFront: {
  36377. height: math.unit(24622*2, "feet"),
  36378. name: "Front",
  36379. image: {
  36380. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36381. extra: 1851/1712,
  36382. bottom: 0/1851
  36383. },
  36384. form: "neptune",
  36385. default: true
  36386. },
  36387. },
  36388. [
  36389. {
  36390. name: "\"Natural\" Height",
  36391. height: math.unit(5 + 11/12, "feet"),
  36392. form: "normal"
  36393. },
  36394. {
  36395. name: "Smallest comfortable size",
  36396. height: math.unit(40, "meters"),
  36397. form: "normal"
  36398. },
  36399. {
  36400. name: "Common size",
  36401. height: math.unit(50, "km"),
  36402. form: "normal",
  36403. default: true
  36404. },
  36405. {
  36406. name: "Normal",
  36407. height: math.unit(1.5, "earths"),
  36408. form: "demon",
  36409. default: true
  36410. },
  36411. {
  36412. name: "Universal",
  36413. height: math.unit(15, "universes"),
  36414. form: "demon"
  36415. },
  36416. {
  36417. name: "Earth",
  36418. height: math.unit(1.5, "earths"),
  36419. form: "terra",
  36420. default: true
  36421. },
  36422. {
  36423. name: "Super Earth",
  36424. height: math.unit(67.5, "earths"),
  36425. form: "terra"
  36426. },
  36427. {
  36428. name: "Doesn't fit in a solar system...",
  36429. height: math.unit(1, "galaxy"),
  36430. form: "terra"
  36431. },
  36432. {
  36433. name: "Saturn",
  36434. height: math.unit(58232*2, "km"),
  36435. form: "jupiter"
  36436. },
  36437. {
  36438. name: "Jupiter",
  36439. height: math.unit(69911*2, "km"),
  36440. form: "jupiter",
  36441. default: true
  36442. },
  36443. {
  36444. name: "HD 100546 b",
  36445. height: math.unit(482938, "km"),
  36446. form: "jupiter"
  36447. },
  36448. {
  36449. name: "Enceladus",
  36450. height: math.unit(513*2, "km"),
  36451. form: "neptune"
  36452. },
  36453. {
  36454. name: "Europe",
  36455. height: math.unit(1560*2, "km"),
  36456. form: "neptune"
  36457. },
  36458. {
  36459. name: "Neptune",
  36460. height: math.unit(24622*2, "km"),
  36461. form: "neptune",
  36462. default: true
  36463. },
  36464. {
  36465. name: "CoRoT-9b",
  36466. height: math.unit(75067*2, "km"),
  36467. form: "neptune"
  36468. },
  36469. ],
  36470. {
  36471. "normal": {
  36472. name: "Normal",
  36473. default: true
  36474. },
  36475. "demon": {
  36476. name: "Demon"
  36477. },
  36478. "terra": {
  36479. name: "Terra"
  36480. },
  36481. "jupiter": {
  36482. name: "Jupiter"
  36483. },
  36484. "neptune": {
  36485. name: "Neptune"
  36486. }
  36487. }
  36488. ))
  36489. characterMakers.push(() => makeCharacter(
  36490. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36491. {
  36492. front: {
  36493. height: math.unit(16, "feet"),
  36494. weight: math.unit(610, "kg"),
  36495. name: "Front",
  36496. image: {
  36497. source: "./media/characters/huckle/front.svg",
  36498. extra: 1731/1625,
  36499. bottom: 33/1764
  36500. }
  36501. },
  36502. back: {
  36503. height: math.unit(16, "feet"),
  36504. weight: math.unit(610, "kg"),
  36505. name: "Back",
  36506. image: {
  36507. source: "./media/characters/huckle/back.svg",
  36508. extra: 1738/1651,
  36509. bottom: 37/1775
  36510. }
  36511. },
  36512. laughing: {
  36513. height: math.unit(3.75, "feet"),
  36514. name: "Laughing",
  36515. image: {
  36516. source: "./media/characters/huckle/laughing.svg"
  36517. }
  36518. },
  36519. angry: {
  36520. height: math.unit(4.15, "feet"),
  36521. name: "Angry",
  36522. image: {
  36523. source: "./media/characters/huckle/angry.svg"
  36524. }
  36525. },
  36526. },
  36527. [
  36528. {
  36529. name: "Normal",
  36530. height: math.unit(16, "feet"),
  36531. default: true
  36532. },
  36533. {
  36534. name: "Mini Macro",
  36535. height: math.unit(463, "feet")
  36536. },
  36537. {
  36538. name: "Macro",
  36539. height: math.unit(1680, "meters")
  36540. },
  36541. {
  36542. name: "Mega Macro",
  36543. height: math.unit(175, "km")
  36544. },
  36545. {
  36546. name: "Terra Macro",
  36547. height: math.unit(32, "gigameters")
  36548. },
  36549. {
  36550. name: "Multiverse+",
  36551. height: math.unit(2.56e23, "yottameters")
  36552. },
  36553. ]
  36554. ))
  36555. characterMakers.push(() => makeCharacter(
  36556. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36557. {
  36558. front: {
  36559. height: math.unit(6 + 9/12, "feet"),
  36560. weight: math.unit(280, "lb"),
  36561. name: "Front",
  36562. image: {
  36563. source: "./media/characters/candy/front.svg",
  36564. extra: 234/217,
  36565. bottom: 11/245
  36566. }
  36567. },
  36568. },
  36569. [
  36570. {
  36571. name: "Really Small",
  36572. height: math.unit(0.1, "nm")
  36573. },
  36574. {
  36575. name: "Micro",
  36576. height: math.unit(2, "inches")
  36577. },
  36578. {
  36579. name: "Normal",
  36580. height: math.unit(6 + 9/12, "feet"),
  36581. default: true
  36582. },
  36583. {
  36584. name: "Small Macro",
  36585. height: math.unit(69, "feet")
  36586. },
  36587. {
  36588. name: "Macro",
  36589. height: math.unit(160, "feet")
  36590. },
  36591. {
  36592. name: "Megamacro",
  36593. height: math.unit(22000, "miles")
  36594. },
  36595. {
  36596. name: "Gigamacro",
  36597. height: math.unit(50000, "miles")
  36598. },
  36599. ]
  36600. ))
  36601. characterMakers.push(() => makeCharacter(
  36602. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36603. {
  36604. front: {
  36605. height: math.unit(4, "feet"),
  36606. weight: math.unit(90, "lb"),
  36607. name: "Front",
  36608. image: {
  36609. source: "./media/characters/joey-mcdonald/front.svg",
  36610. extra: 1059/852,
  36611. bottom: 33/1092
  36612. }
  36613. },
  36614. back: {
  36615. height: math.unit(4, "feet"),
  36616. weight: math.unit(90, "lb"),
  36617. name: "Back",
  36618. image: {
  36619. source: "./media/characters/joey-mcdonald/back.svg",
  36620. extra: 1077/879,
  36621. bottom: 5/1082
  36622. }
  36623. },
  36624. frontKobold: {
  36625. height: math.unit(4, "feet"),
  36626. weight: math.unit(100, "lb"),
  36627. name: "Front-kobold",
  36628. image: {
  36629. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36630. extra: 1480/1367,
  36631. bottom: 0/1480
  36632. }
  36633. },
  36634. backKobold: {
  36635. height: math.unit(4, "feet"),
  36636. weight: math.unit(100, "lb"),
  36637. name: "Back-kobold",
  36638. image: {
  36639. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36640. extra: 1449/1361,
  36641. bottom: 0/1449
  36642. }
  36643. },
  36644. },
  36645. [
  36646. {
  36647. name: "Normal",
  36648. height: math.unit(4, "feet"),
  36649. default: true
  36650. },
  36651. ]
  36652. ))
  36653. characterMakers.push(() => makeCharacter(
  36654. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36655. {
  36656. front: {
  36657. height: math.unit(12 + 6/12, "feet"),
  36658. name: "Front",
  36659. image: {
  36660. source: "./media/characters/kass-lockheed/front.svg",
  36661. extra: 354/343,
  36662. bottom: 9/363
  36663. }
  36664. },
  36665. back: {
  36666. height: math.unit(12 + 6/12, "feet"),
  36667. name: "Back",
  36668. image: {
  36669. source: "./media/characters/kass-lockheed/back.svg",
  36670. extra: 364/352,
  36671. bottom: 3/367
  36672. }
  36673. },
  36674. dick: {
  36675. height: math.unit(3.12, "feet"),
  36676. name: "Dick",
  36677. image: {
  36678. source: "./media/characters/kass-lockheed/dick.svg"
  36679. }
  36680. },
  36681. head: {
  36682. height: math.unit(2.6, "feet"),
  36683. name: "Head",
  36684. image: {
  36685. source: "./media/characters/kass-lockheed/head.svg"
  36686. }
  36687. },
  36688. bleh: {
  36689. height: math.unit(2.85, "feet"),
  36690. name: "Bleh",
  36691. image: {
  36692. source: "./media/characters/kass-lockheed/bleh.svg"
  36693. }
  36694. },
  36695. smug: {
  36696. height: math.unit(2.85, "feet"),
  36697. name: "Smug",
  36698. image: {
  36699. source: "./media/characters/kass-lockheed/smug.svg"
  36700. }
  36701. },
  36702. },
  36703. [
  36704. {
  36705. name: "Normal",
  36706. height: math.unit(12 + 6/12, "feet"),
  36707. default: true
  36708. },
  36709. ]
  36710. ))
  36711. characterMakers.push(() => makeCharacter(
  36712. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36713. {
  36714. front: {
  36715. height: math.unit(6 + 2/12, "feet"),
  36716. name: "Front",
  36717. image: {
  36718. source: "./media/characters/taylor/front.svg",
  36719. extra: 639/495,
  36720. bottom: 12/651
  36721. }
  36722. },
  36723. },
  36724. [
  36725. {
  36726. name: "Normal",
  36727. height: math.unit(6 + 2/12, "feet"),
  36728. default: true
  36729. },
  36730. {
  36731. name: "Big",
  36732. height: math.unit(15, "feet")
  36733. },
  36734. {
  36735. name: "Lorg",
  36736. height: math.unit(80, "feet")
  36737. },
  36738. {
  36739. name: "Too Lorg",
  36740. height: math.unit(120, "feet")
  36741. },
  36742. ]
  36743. ))
  36744. characterMakers.push(() => makeCharacter(
  36745. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36746. {
  36747. front: {
  36748. height: math.unit(15, "feet"),
  36749. name: "Front",
  36750. image: {
  36751. source: "./media/characters/kaizer/front.svg",
  36752. extra: 1612/1436,
  36753. bottom: 43/1655
  36754. }
  36755. },
  36756. },
  36757. [
  36758. {
  36759. name: "Normal",
  36760. height: math.unit(15, "feet"),
  36761. default: true
  36762. },
  36763. ]
  36764. ))
  36765. characterMakers.push(() => makeCharacter(
  36766. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36767. {
  36768. front: {
  36769. height: math.unit(2, "feet"),
  36770. weight: math.unit(30, "lb"),
  36771. name: "Front",
  36772. image: {
  36773. source: "./media/characters/sandy/front.svg",
  36774. extra: 1439/1307,
  36775. bottom: 194/1633
  36776. }
  36777. },
  36778. },
  36779. [
  36780. {
  36781. name: "Normal",
  36782. height: math.unit(2, "feet"),
  36783. default: true
  36784. },
  36785. ]
  36786. ))
  36787. characterMakers.push(() => makeCharacter(
  36788. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36789. {
  36790. front: {
  36791. height: math.unit(3, "feet"),
  36792. name: "Front",
  36793. image: {
  36794. source: "./media/characters/mellvi/front.svg",
  36795. extra: 1831/1630,
  36796. bottom: 58/1889
  36797. }
  36798. },
  36799. },
  36800. [
  36801. {
  36802. name: "Normal",
  36803. height: math.unit(3, "feet"),
  36804. default: true
  36805. },
  36806. ]
  36807. ))
  36808. characterMakers.push(() => makeCharacter(
  36809. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36810. {
  36811. front: {
  36812. height: math.unit(5 + 11/12, "feet"),
  36813. weight: math.unit(200, "lb"),
  36814. name: "Front",
  36815. image: {
  36816. source: "./media/characters/shirou/front.svg",
  36817. extra: 2491/2383,
  36818. bottom: 189/2680
  36819. }
  36820. },
  36821. back: {
  36822. height: math.unit(5 + 11/12, "feet"),
  36823. weight: math.unit(200, "lb"),
  36824. name: "Back",
  36825. image: {
  36826. source: "./media/characters/shirou/back.svg",
  36827. extra: 2554/2450,
  36828. bottom: 76/2630
  36829. }
  36830. },
  36831. },
  36832. [
  36833. {
  36834. name: "Normal",
  36835. height: math.unit(5 + 11/12, "feet"),
  36836. default: true
  36837. },
  36838. ]
  36839. ))
  36840. characterMakers.push(() => makeCharacter(
  36841. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36842. {
  36843. front: {
  36844. height: math.unit(6 + 3/12, "feet"),
  36845. weight: math.unit(177, "lb"),
  36846. name: "Front",
  36847. image: {
  36848. source: "./media/characters/noryu/front.svg",
  36849. extra: 973/885,
  36850. bottom: 10/983
  36851. }
  36852. },
  36853. },
  36854. [
  36855. {
  36856. name: "Normal",
  36857. height: math.unit(6 + 3/12, "feet"),
  36858. default: true
  36859. },
  36860. ]
  36861. ))
  36862. characterMakers.push(() => makeCharacter(
  36863. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36864. {
  36865. front: {
  36866. height: math.unit(5 + 6/12, "feet"),
  36867. weight: math.unit(170, "lb"),
  36868. name: "Front",
  36869. image: {
  36870. source: "./media/characters/mevolas-rubenido/front.svg",
  36871. extra: 2109/1901,
  36872. bottom: 96/2205
  36873. }
  36874. },
  36875. },
  36876. [
  36877. {
  36878. name: "Normal",
  36879. height: math.unit(5 + 6/12, "feet"),
  36880. default: true
  36881. },
  36882. ]
  36883. ))
  36884. characterMakers.push(() => makeCharacter(
  36885. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36886. {
  36887. front: {
  36888. height: math.unit(100, "feet"),
  36889. name: "Front",
  36890. image: {
  36891. source: "./media/characters/dee/front.svg",
  36892. extra: 2153/2036,
  36893. bottom: 59/2212
  36894. }
  36895. },
  36896. back: {
  36897. height: math.unit(100, "feet"),
  36898. name: "Back",
  36899. image: {
  36900. source: "./media/characters/dee/back.svg",
  36901. extra: 2183/2058,
  36902. bottom: 75/2258
  36903. }
  36904. },
  36905. foot: {
  36906. height: math.unit(19.43, "feet"),
  36907. name: "Foot",
  36908. image: {
  36909. source: "./media/characters/dee/foot.svg"
  36910. }
  36911. },
  36912. hoof: {
  36913. height: math.unit(20.6, "feet"),
  36914. name: "Hoof",
  36915. image: {
  36916. source: "./media/characters/dee/hoof.svg"
  36917. }
  36918. },
  36919. },
  36920. [
  36921. {
  36922. name: "Macro",
  36923. height: math.unit(100, "feet"),
  36924. default: true
  36925. },
  36926. ]
  36927. ))
  36928. characterMakers.push(() => makeCharacter(
  36929. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36930. {
  36931. front: {
  36932. height: math.unit(5 + 6/12, "feet"),
  36933. name: "Front",
  36934. image: {
  36935. source: "./media/characters/teh/front.svg",
  36936. extra: 1002/847,
  36937. bottom: 62/1064
  36938. }
  36939. },
  36940. },
  36941. [
  36942. {
  36943. name: "Normal",
  36944. height: math.unit(5 + 6/12, "feet"),
  36945. default: true
  36946. },
  36947. ]
  36948. ))
  36949. characterMakers.push(() => makeCharacter(
  36950. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36951. {
  36952. side: {
  36953. height: math.unit(6 + 1/12, "feet"),
  36954. weight: math.unit(204, "lb"),
  36955. name: "Side",
  36956. image: {
  36957. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36958. extra: 974/775,
  36959. bottom: 169/1143
  36960. }
  36961. },
  36962. sitting: {
  36963. height: math.unit(6 + 2/12, "feet"),
  36964. weight: math.unit(204, "lb"),
  36965. name: "Sitting",
  36966. image: {
  36967. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36968. extra: 1175/964,
  36969. bottom: 378/1553
  36970. }
  36971. },
  36972. },
  36973. [
  36974. {
  36975. name: "Normal",
  36976. height: math.unit(6 + 1/12, "feet"),
  36977. default: true
  36978. },
  36979. ]
  36980. ))
  36981. characterMakers.push(() => makeCharacter(
  36982. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36983. {
  36984. front: {
  36985. height: math.unit(6, "inches"),
  36986. name: "Front",
  36987. image: {
  36988. source: "./media/characters/tululi/front.svg",
  36989. extra: 1997/1876,
  36990. bottom: 20/2017
  36991. }
  36992. },
  36993. },
  36994. [
  36995. {
  36996. name: "Normal",
  36997. height: math.unit(6, "inches"),
  36998. default: true
  36999. },
  37000. ]
  37001. ))
  37002. characterMakers.push(() => makeCharacter(
  37003. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37004. {
  37005. front: {
  37006. height: math.unit(4 + 1/12, "feet"),
  37007. name: "Front",
  37008. image: {
  37009. source: "./media/characters/star/front.svg",
  37010. extra: 1493/1189,
  37011. bottom: 48/1541
  37012. }
  37013. },
  37014. },
  37015. [
  37016. {
  37017. name: "Normal",
  37018. height: math.unit(4 + 1/12, "feet"),
  37019. default: true
  37020. },
  37021. ]
  37022. ))
  37023. characterMakers.push(() => makeCharacter(
  37024. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37025. {
  37026. front: {
  37027. height: math.unit(6 + 3/12, "feet"),
  37028. name: "Front",
  37029. image: {
  37030. source: "./media/characters/comet/front.svg",
  37031. extra: 1681/1462,
  37032. bottom: 26/1707
  37033. }
  37034. },
  37035. },
  37036. [
  37037. {
  37038. name: "Normal",
  37039. height: math.unit(6 + 3/12, "feet"),
  37040. default: true
  37041. },
  37042. ]
  37043. ))
  37044. characterMakers.push(() => makeCharacter(
  37045. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37046. {
  37047. front: {
  37048. height: math.unit(950, "feet"),
  37049. name: "Front",
  37050. image: {
  37051. source: "./media/characters/vortex/front.svg",
  37052. extra: 1497/1434,
  37053. bottom: 56/1553
  37054. }
  37055. },
  37056. maw: {
  37057. height: math.unit(285, "feet"),
  37058. name: "Maw",
  37059. image: {
  37060. source: "./media/characters/vortex/maw.svg"
  37061. }
  37062. },
  37063. },
  37064. [
  37065. {
  37066. name: "Macro",
  37067. height: math.unit(950, "feet"),
  37068. default: true
  37069. },
  37070. ]
  37071. ))
  37072. characterMakers.push(() => makeCharacter(
  37073. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37074. {
  37075. front: {
  37076. height: math.unit(600, "feet"),
  37077. weight: math.unit(0.02, "grams"),
  37078. name: "Front",
  37079. image: {
  37080. source: "./media/characters/doodle/front.svg",
  37081. extra: 1578/1413,
  37082. bottom: 37/1615
  37083. }
  37084. },
  37085. },
  37086. [
  37087. {
  37088. name: "Macro",
  37089. height: math.unit(600, "feet"),
  37090. default: true
  37091. },
  37092. ]
  37093. ))
  37094. characterMakers.push(() => makeCharacter(
  37095. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37096. {
  37097. front: {
  37098. height: math.unit(6 + 6/12, "feet"),
  37099. name: "Front",
  37100. image: {
  37101. source: "./media/characters/jai/front.svg",
  37102. extra: 1645/1534,
  37103. bottom: 115/1760
  37104. }
  37105. },
  37106. },
  37107. [
  37108. {
  37109. name: "Normal",
  37110. height: math.unit(6 + 6/12, "feet"),
  37111. default: true
  37112. },
  37113. ]
  37114. ))
  37115. characterMakers.push(() => makeCharacter(
  37116. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37117. {
  37118. front: {
  37119. height: math.unit(6 + 8/12, "feet"),
  37120. name: "Front",
  37121. image: {
  37122. source: "./media/characters/pixel/front.svg",
  37123. extra: 1900/1735,
  37124. bottom: 63/1963
  37125. }
  37126. },
  37127. },
  37128. [
  37129. {
  37130. name: "Normal",
  37131. height: math.unit(6 + 8/12, "feet"),
  37132. default: true
  37133. },
  37134. ]
  37135. ))
  37136. characterMakers.push(() => makeCharacter(
  37137. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37138. {
  37139. back: {
  37140. height: math.unit(4 + 1/12, "feet"),
  37141. weight: math.unit(75, "lb"),
  37142. name: "Back",
  37143. image: {
  37144. source: "./media/characters/rhett/back.svg",
  37145. extra: 930/878,
  37146. bottom: 25/955
  37147. }
  37148. },
  37149. front: {
  37150. height: math.unit(4 + 1/12, "feet"),
  37151. weight: math.unit(75, "lb"),
  37152. name: "Front",
  37153. image: {
  37154. source: "./media/characters/rhett/front.svg",
  37155. extra: 1682/1586,
  37156. bottom: 92/1774
  37157. }
  37158. },
  37159. },
  37160. [
  37161. {
  37162. name: "Micro",
  37163. height: math.unit(8, "inches")
  37164. },
  37165. {
  37166. name: "Tiny",
  37167. height: math.unit(2, "feet")
  37168. },
  37169. {
  37170. name: "Normal",
  37171. height: math.unit(4 + 1/12, "feet"),
  37172. default: true
  37173. },
  37174. ]
  37175. ))
  37176. characterMakers.push(() => makeCharacter(
  37177. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37178. {
  37179. front: {
  37180. height: math.unit(3 + 3/12, "feet"),
  37181. name: "Front",
  37182. image: {
  37183. source: "./media/characters/penny/front.svg",
  37184. extra: 1406/1311,
  37185. bottom: 26/1432
  37186. }
  37187. },
  37188. },
  37189. [
  37190. {
  37191. name: "Normal",
  37192. height: math.unit(3 + 3/12, "feet"),
  37193. default: true
  37194. },
  37195. ]
  37196. ))
  37197. characterMakers.push(() => makeCharacter(
  37198. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37199. {
  37200. front: {
  37201. height: math.unit(4 + 11/12, "feet"),
  37202. name: "Front",
  37203. image: {
  37204. source: "./media/characters/monty/front.svg",
  37205. extra: 1479/1209,
  37206. bottom: 0/1479
  37207. }
  37208. },
  37209. },
  37210. [
  37211. {
  37212. name: "Normal",
  37213. height: math.unit(4 + 11/12, "feet"),
  37214. default: true
  37215. },
  37216. ]
  37217. ))
  37218. characterMakers.push(() => makeCharacter(
  37219. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37220. {
  37221. front: {
  37222. height: math.unit(8 + 4/12, "feet"),
  37223. name: "Front",
  37224. image: {
  37225. source: "./media/characters/sterling/front.svg",
  37226. extra: 1420/1236,
  37227. bottom: 27/1447
  37228. }
  37229. },
  37230. },
  37231. [
  37232. {
  37233. name: "Normal",
  37234. height: math.unit(8 + 4/12, "feet"),
  37235. default: true
  37236. },
  37237. ]
  37238. ))
  37239. characterMakers.push(() => makeCharacter(
  37240. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37241. {
  37242. front: {
  37243. height: math.unit(15, "feet"),
  37244. name: "Front",
  37245. image: {
  37246. source: "./media/characters/marble/front.svg",
  37247. extra: 973/937,
  37248. bottom: 32/1005
  37249. }
  37250. },
  37251. },
  37252. [
  37253. {
  37254. name: "Normal",
  37255. height: math.unit(15, "feet"),
  37256. default: true
  37257. },
  37258. ]
  37259. ))
  37260. characterMakers.push(() => makeCharacter(
  37261. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37262. {
  37263. front: {
  37264. height: math.unit(3, "inches"),
  37265. name: "Front",
  37266. image: {
  37267. source: "./media/characters/powder/front.svg",
  37268. extra: 1504/1334,
  37269. bottom: 518/2022
  37270. }
  37271. },
  37272. },
  37273. [
  37274. {
  37275. name: "Normal",
  37276. height: math.unit(3, "inches"),
  37277. default: true
  37278. },
  37279. ]
  37280. ))
  37281. characterMakers.push(() => makeCharacter(
  37282. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37283. {
  37284. front: {
  37285. height: math.unit(4 + 5/12, "feet"),
  37286. name: "Front",
  37287. image: {
  37288. source: "./media/characters/joey-raccoon/front.svg",
  37289. extra: 1273/1197,
  37290. bottom: 0/1273
  37291. }
  37292. },
  37293. },
  37294. [
  37295. {
  37296. name: "Normal",
  37297. height: math.unit(4 + 5/12, "feet"),
  37298. default: true
  37299. },
  37300. ]
  37301. ))
  37302. characterMakers.push(() => makeCharacter(
  37303. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37304. {
  37305. front: {
  37306. height: math.unit(8 + 4/12, "feet"),
  37307. name: "Front",
  37308. image: {
  37309. source: "./media/characters/vick/front.svg",
  37310. extra: 2187/2118,
  37311. bottom: 47/2234
  37312. }
  37313. },
  37314. },
  37315. [
  37316. {
  37317. name: "Normal",
  37318. height: math.unit(8 + 4/12, "feet"),
  37319. default: true
  37320. },
  37321. ]
  37322. ))
  37323. characterMakers.push(() => makeCharacter(
  37324. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37325. {
  37326. front: {
  37327. height: math.unit(5 + 5/12, "feet"),
  37328. name: "Front",
  37329. image: {
  37330. source: "./media/characters/mitsy/front.svg",
  37331. extra: 1842/1695,
  37332. bottom: 0/1842
  37333. }
  37334. },
  37335. },
  37336. [
  37337. {
  37338. name: "Normal",
  37339. height: math.unit(5 + 5/12, "feet"),
  37340. default: true
  37341. },
  37342. ]
  37343. ))
  37344. characterMakers.push(() => makeCharacter(
  37345. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37346. {
  37347. front: {
  37348. height: math.unit(6 + 3/12, "feet"),
  37349. name: "Front",
  37350. image: {
  37351. source: "./media/characters/silvy/front.svg",
  37352. extra: 1995/1836,
  37353. bottom: 225/2220
  37354. }
  37355. },
  37356. },
  37357. [
  37358. {
  37359. name: "Normal",
  37360. height: math.unit(6 + 3/12, "feet"),
  37361. default: true
  37362. },
  37363. ]
  37364. ))
  37365. characterMakers.push(() => makeCharacter(
  37366. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37367. {
  37368. front: {
  37369. height: math.unit(3 + 8/12, "feet"),
  37370. name: "Front",
  37371. image: {
  37372. source: "./media/characters/rodney/front.svg",
  37373. extra: 1956/1747,
  37374. bottom: 31/1987
  37375. }
  37376. },
  37377. frontDressed: {
  37378. height: math.unit(2.9, "feet"),
  37379. name: "Front (Dressed)",
  37380. image: {
  37381. source: "./media/characters/rodney/front-dressed.svg",
  37382. extra: 1382/1241,
  37383. bottom: 385/1767
  37384. }
  37385. },
  37386. },
  37387. [
  37388. {
  37389. name: "Normal",
  37390. height: math.unit(3 + 8/12, "feet"),
  37391. default: true
  37392. },
  37393. ]
  37394. ))
  37395. characterMakers.push(() => makeCharacter(
  37396. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37397. {
  37398. front: {
  37399. height: math.unit(5 + 9/12, "feet"),
  37400. weight: math.unit(194, "lbs"),
  37401. name: "Front",
  37402. image: {
  37403. source: "./media/characters/zakail-sudekai/front.svg",
  37404. extra: 2696/2533,
  37405. bottom: 248/2944
  37406. }
  37407. },
  37408. maw: {
  37409. height: math.unit(1.35, "feet"),
  37410. name: "Maw",
  37411. image: {
  37412. source: "./media/characters/zakail-sudekai/maw.svg"
  37413. }
  37414. },
  37415. },
  37416. [
  37417. {
  37418. name: "Normal",
  37419. height: math.unit(5 + 9/12, "feet"),
  37420. default: true
  37421. },
  37422. ]
  37423. ))
  37424. characterMakers.push(() => makeCharacter(
  37425. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37426. {
  37427. front: {
  37428. height: math.unit(8 + 4/12, "feet"),
  37429. weight: math.unit(1200, "lb"),
  37430. name: "Front",
  37431. image: {
  37432. source: "./media/characters/eleanor/front.svg",
  37433. extra: 1226/1192,
  37434. bottom: 52/1278
  37435. }
  37436. },
  37437. back: {
  37438. height: math.unit(8 + 4/12, "feet"),
  37439. weight: math.unit(1200, "lb"),
  37440. name: "Back",
  37441. image: {
  37442. source: "./media/characters/eleanor/back.svg",
  37443. extra: 1242/1184,
  37444. bottom: 60/1302
  37445. }
  37446. },
  37447. head: {
  37448. height: math.unit(2.62, "feet"),
  37449. name: "Head",
  37450. image: {
  37451. source: "./media/characters/eleanor/head.svg"
  37452. }
  37453. },
  37454. },
  37455. [
  37456. {
  37457. name: "Normal",
  37458. height: math.unit(8 + 4/12, "feet"),
  37459. default: true
  37460. },
  37461. ]
  37462. ))
  37463. characterMakers.push(() => makeCharacter(
  37464. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37465. {
  37466. front: {
  37467. height: math.unit(8 + 4/12, "feet"),
  37468. weight: math.unit(750, "lb"),
  37469. name: "Front",
  37470. image: {
  37471. source: "./media/characters/tanya/front.svg",
  37472. extra: 1749/1615,
  37473. bottom: 33/1782
  37474. }
  37475. },
  37476. },
  37477. [
  37478. {
  37479. name: "Normal",
  37480. height: math.unit(8 + 4/12, "feet"),
  37481. default: true
  37482. },
  37483. ]
  37484. ))
  37485. characterMakers.push(() => makeCharacter(
  37486. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37487. {
  37488. front: {
  37489. height: math.unit(5, "feet"),
  37490. weight: math.unit(225, "lb"),
  37491. name: "Front",
  37492. image: {
  37493. source: "./media/characters/cindy/front.svg",
  37494. extra: 1320/1250,
  37495. bottom: 42/1362
  37496. }
  37497. },
  37498. frontDressed: {
  37499. height: math.unit(5, "feet"),
  37500. weight: math.unit(225, "lb"),
  37501. name: "Front (Dressed)",
  37502. image: {
  37503. source: "./media/characters/cindy/front-dressed.svg",
  37504. extra: 1320/1250,
  37505. bottom: 42/1362
  37506. }
  37507. },
  37508. back: {
  37509. height: math.unit(5, "feet"),
  37510. weight: math.unit(225, "lb"),
  37511. name: "Back",
  37512. image: {
  37513. source: "./media/characters/cindy/back.svg",
  37514. extra: 1384/1346,
  37515. bottom: 14/1398
  37516. }
  37517. },
  37518. },
  37519. [
  37520. {
  37521. name: "Normal",
  37522. height: math.unit(5, "feet"),
  37523. default: true
  37524. },
  37525. ]
  37526. ))
  37527. characterMakers.push(() => makeCharacter(
  37528. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37529. {
  37530. front: {
  37531. height: math.unit(6 + 9/12, "feet"),
  37532. weight: math.unit(440, "lb"),
  37533. name: "Front",
  37534. image: {
  37535. source: "./media/characters/wilbur-owen/front.svg",
  37536. extra: 1575/1448,
  37537. bottom: 72/1647
  37538. }
  37539. },
  37540. back: {
  37541. height: math.unit(6 + 9/12, "feet"),
  37542. weight: math.unit(440, "lb"),
  37543. name: "Back",
  37544. image: {
  37545. source: "./media/characters/wilbur-owen/back.svg",
  37546. extra: 1578/1445,
  37547. bottom: 36/1614
  37548. }
  37549. },
  37550. },
  37551. [
  37552. {
  37553. name: "Normal",
  37554. height: math.unit(6 + 9/12, "feet"),
  37555. default: true
  37556. },
  37557. ]
  37558. ))
  37559. characterMakers.push(() => makeCharacter(
  37560. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37561. {
  37562. front: {
  37563. height: math.unit(6 + 5/12, "feet"),
  37564. weight: math.unit(650, "lb"),
  37565. name: "Front",
  37566. image: {
  37567. source: "./media/characters/keegan/front.svg",
  37568. extra: 2387/2198,
  37569. bottom: 33/2420
  37570. }
  37571. },
  37572. side: {
  37573. height: math.unit(6 + 5/12, "feet"),
  37574. weight: math.unit(650, "lb"),
  37575. name: "Side",
  37576. image: {
  37577. source: "./media/characters/keegan/side.svg",
  37578. extra: 2390/2202,
  37579. bottom: 47/2437
  37580. }
  37581. },
  37582. back: {
  37583. height: math.unit(6 + 5/12, "feet"),
  37584. weight: math.unit(650, "lb"),
  37585. name: "Back",
  37586. image: {
  37587. source: "./media/characters/keegan/back.svg",
  37588. extra: 2418/2268,
  37589. bottom: 15/2433
  37590. }
  37591. },
  37592. frontSfw: {
  37593. height: math.unit(6 + 5/12, "feet"),
  37594. weight: math.unit(650, "lb"),
  37595. name: "Front (SFW)",
  37596. image: {
  37597. source: "./media/characters/keegan/front-sfw.svg",
  37598. extra: 2387/2198,
  37599. bottom: 33/2420
  37600. }
  37601. },
  37602. beans: {
  37603. height: math.unit(1.85, "feet"),
  37604. name: "Beans",
  37605. image: {
  37606. source: "./media/characters/keegan/beans.svg"
  37607. }
  37608. },
  37609. },
  37610. [
  37611. {
  37612. name: "Normal",
  37613. height: math.unit(6 + 5/12, "feet"),
  37614. default: true
  37615. },
  37616. ]
  37617. ))
  37618. characterMakers.push(() => makeCharacter(
  37619. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37620. {
  37621. front: {
  37622. height: math.unit(9, "feet"),
  37623. name: "Front",
  37624. image: {
  37625. source: "./media/characters/colton/front.svg",
  37626. extra: 1589/1326,
  37627. bottom: 139/1728
  37628. }
  37629. },
  37630. },
  37631. [
  37632. {
  37633. name: "Normal",
  37634. height: math.unit(9, "feet"),
  37635. default: true
  37636. },
  37637. ]
  37638. ))
  37639. characterMakers.push(() => makeCharacter(
  37640. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37641. {
  37642. front: {
  37643. height: math.unit(2 + 9/12, "feet"),
  37644. name: "Front",
  37645. image: {
  37646. source: "./media/characters/bora/front.svg",
  37647. extra: 1265/1250,
  37648. bottom: 24/1289
  37649. }
  37650. },
  37651. },
  37652. [
  37653. {
  37654. name: "Normal",
  37655. height: math.unit(2 + 9/12, "feet"),
  37656. default: true
  37657. },
  37658. ]
  37659. ))
  37660. characterMakers.push(() => makeCharacter(
  37661. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37662. {
  37663. front: {
  37664. height: math.unit(8, "feet"),
  37665. name: "Front",
  37666. image: {
  37667. source: "./media/characters/myu-myu/front.svg",
  37668. extra: 1949/1857,
  37669. bottom: 90/2039
  37670. }
  37671. },
  37672. },
  37673. [
  37674. {
  37675. name: "Normal",
  37676. height: math.unit(8, "feet"),
  37677. default: true
  37678. },
  37679. {
  37680. name: "Big",
  37681. height: math.unit(15, "feet")
  37682. },
  37683. {
  37684. name: "BIG",
  37685. height: math.unit(25, "feet")
  37686. },
  37687. ]
  37688. ))
  37689. characterMakers.push(() => makeCharacter(
  37690. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37691. {
  37692. side: {
  37693. height: math.unit(7 + 5/12, "feet"),
  37694. weight: math.unit(2800, "lb"),
  37695. name: "Side",
  37696. image: {
  37697. source: "./media/characters/haloren/side.svg",
  37698. extra: 1793/409,
  37699. bottom: 59/1852
  37700. }
  37701. },
  37702. frontPaw: {
  37703. height: math.unit(2.36, "feet"),
  37704. name: "Front paw",
  37705. image: {
  37706. source: "./media/characters/haloren/front-paw.svg"
  37707. }
  37708. },
  37709. hindPaw: {
  37710. height: math.unit(3.18, "feet"),
  37711. name: "Hind paw",
  37712. image: {
  37713. source: "./media/characters/haloren/hind-paw.svg"
  37714. }
  37715. },
  37716. maw: {
  37717. height: math.unit(5.05, "feet"),
  37718. name: "Maw",
  37719. image: {
  37720. source: "./media/characters/haloren/maw.svg"
  37721. }
  37722. },
  37723. dick: {
  37724. height: math.unit(2.90, "feet"),
  37725. name: "Dick",
  37726. image: {
  37727. source: "./media/characters/haloren/dick.svg"
  37728. }
  37729. },
  37730. },
  37731. [
  37732. {
  37733. name: "Normal",
  37734. height: math.unit(7 + 5/12, "feet"),
  37735. default: true
  37736. },
  37737. {
  37738. name: "Enhanced",
  37739. height: math.unit(14 + 3/12, "feet")
  37740. },
  37741. ]
  37742. ))
  37743. characterMakers.push(() => makeCharacter(
  37744. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37745. {
  37746. front: {
  37747. height: math.unit(171, "cm"),
  37748. name: "Front",
  37749. image: {
  37750. source: "./media/characters/kimmy/front.svg",
  37751. extra: 1491/1435,
  37752. bottom: 53/1544
  37753. }
  37754. },
  37755. },
  37756. [
  37757. {
  37758. name: "Small",
  37759. height: math.unit(9, "cm")
  37760. },
  37761. {
  37762. name: "Normal",
  37763. height: math.unit(171, "cm"),
  37764. default: true
  37765. },
  37766. ]
  37767. ))
  37768. characterMakers.push(() => makeCharacter(
  37769. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37770. {
  37771. front: {
  37772. height: math.unit(8, "feet"),
  37773. weight: math.unit(300, "lb"),
  37774. name: "Front",
  37775. image: {
  37776. source: "./media/characters/galeboomer/front.svg",
  37777. extra: 4651/4415,
  37778. bottom: 162/4813
  37779. }
  37780. },
  37781. back: {
  37782. height: math.unit(8, "feet"),
  37783. weight: math.unit(300, "lb"),
  37784. name: "Back",
  37785. image: {
  37786. source: "./media/characters/galeboomer/back.svg",
  37787. extra: 4544/4314,
  37788. bottom: 16/4560
  37789. }
  37790. },
  37791. frontAlt: {
  37792. height: math.unit(8, "feet"),
  37793. weight: math.unit(300, "lb"),
  37794. name: "Front (Alt)",
  37795. image: {
  37796. source: "./media/characters/galeboomer/front-alt.svg",
  37797. extra: 4458/4228,
  37798. bottom: 68/4526
  37799. }
  37800. },
  37801. maw: {
  37802. height: math.unit(1.2, "feet"),
  37803. name: "Maw",
  37804. image: {
  37805. source: "./media/characters/galeboomer/maw.svg"
  37806. }
  37807. },
  37808. },
  37809. [
  37810. {
  37811. name: "Normal",
  37812. height: math.unit(8, "feet"),
  37813. default: true
  37814. },
  37815. ]
  37816. ))
  37817. characterMakers.push(() => makeCharacter(
  37818. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37819. {
  37820. front: {
  37821. height: math.unit(5 + 9/12, "feet"),
  37822. weight: math.unit(120, "lb"),
  37823. name: "Front",
  37824. image: {
  37825. source: "./media/characters/chyr/front.svg",
  37826. extra: 1323/1254,
  37827. bottom: 63/1386
  37828. }
  37829. },
  37830. back: {
  37831. height: math.unit(5 + 9/12, "feet"),
  37832. weight: math.unit(120, "lb"),
  37833. name: "Back",
  37834. image: {
  37835. source: "./media/characters/chyr/back.svg",
  37836. extra: 1323/1252,
  37837. bottom: 48/1371
  37838. }
  37839. },
  37840. },
  37841. [
  37842. {
  37843. name: "Normal",
  37844. height: math.unit(5 + 9/12, "feet"),
  37845. default: true
  37846. },
  37847. ]
  37848. ))
  37849. characterMakers.push(() => makeCharacter(
  37850. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37851. {
  37852. front: {
  37853. height: math.unit(7, "feet"),
  37854. weight: math.unit(310, "lb"),
  37855. name: "Front",
  37856. image: {
  37857. source: "./media/characters/solarus/front.svg",
  37858. extra: 2415/2021,
  37859. bottom: 103/2518
  37860. }
  37861. },
  37862. back: {
  37863. height: math.unit(7, "feet"),
  37864. weight: math.unit(310, "lb"),
  37865. name: "Back",
  37866. image: {
  37867. source: "./media/characters/solarus/back.svg",
  37868. extra: 2463/2089,
  37869. bottom: 79/2542
  37870. }
  37871. },
  37872. },
  37873. [
  37874. {
  37875. name: "Normal",
  37876. height: math.unit(7, "feet"),
  37877. default: true
  37878. },
  37879. ]
  37880. ))
  37881. characterMakers.push(() => makeCharacter(
  37882. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37883. {
  37884. front: {
  37885. height: math.unit(16, "feet"),
  37886. name: "Front",
  37887. image: {
  37888. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37889. extra: 1844/1780,
  37890. bottom: 58/1902
  37891. }
  37892. },
  37893. winterCoat: {
  37894. height: math.unit(16, "feet"),
  37895. name: "Winter Coat",
  37896. image: {
  37897. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37898. extra: 1807/1775,
  37899. bottom: 69/1876
  37900. }
  37901. },
  37902. },
  37903. [
  37904. {
  37905. name: "Normal",
  37906. height: math.unit(16, "feet"),
  37907. default: true
  37908. },
  37909. {
  37910. name: "Chicago Size",
  37911. height: math.unit(560, "feet")
  37912. },
  37913. ]
  37914. ))
  37915. characterMakers.push(() => makeCharacter(
  37916. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37917. {
  37918. front: {
  37919. height: math.unit(11 + 6/12, "feet"),
  37920. weight: math.unit(1366, "lb"),
  37921. name: "Front",
  37922. image: {
  37923. source: "./media/characters/lexor/front.svg",
  37924. extra: 1560/1481,
  37925. bottom: 211/1771
  37926. }
  37927. },
  37928. back: {
  37929. height: math.unit(11 + 6/12, "feet"),
  37930. weight: math.unit(1366, "lb"),
  37931. name: "Back",
  37932. image: {
  37933. source: "./media/characters/lexor/back.svg",
  37934. extra: 1614/1533,
  37935. bottom: 76/1690
  37936. }
  37937. },
  37938. maw: {
  37939. height: math.unit(3, "feet"),
  37940. name: "Maw",
  37941. image: {
  37942. source: "./media/characters/lexor/maw.svg"
  37943. }
  37944. },
  37945. dick: {
  37946. height: math.unit(2.59, "feet"),
  37947. name: "Dick",
  37948. image: {
  37949. source: "./media/characters/lexor/dick.svg"
  37950. }
  37951. },
  37952. },
  37953. [
  37954. {
  37955. name: "Normal",
  37956. height: math.unit(11 + 6/12, "feet"),
  37957. default: true
  37958. },
  37959. ]
  37960. ))
  37961. characterMakers.push(() => makeCharacter(
  37962. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37963. {
  37964. front: {
  37965. height: math.unit(5 + 8/12, "feet"),
  37966. name: "Front",
  37967. image: {
  37968. source: "./media/characters/magnum/front.svg",
  37969. extra: 942/855,
  37970. bottom: 26/968
  37971. }
  37972. },
  37973. },
  37974. [
  37975. {
  37976. name: "Normal",
  37977. height: math.unit(5 + 8/12, "feet"),
  37978. default: true
  37979. },
  37980. ]
  37981. ))
  37982. characterMakers.push(() => makeCharacter(
  37983. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37984. {
  37985. front: {
  37986. height: math.unit(18 + 4/12, "feet"),
  37987. weight: math.unit(1500, "kg"),
  37988. name: "Front",
  37989. image: {
  37990. source: "./media/characters/solas-sharpsman/front.svg",
  37991. extra: 1698/1589,
  37992. bottom: 0/1698
  37993. }
  37994. },
  37995. },
  37996. [
  37997. {
  37998. name: "Normal",
  37999. height: math.unit(18 + 4/12, "feet"),
  38000. default: true
  38001. },
  38002. ]
  38003. ))
  38004. characterMakers.push(() => makeCharacter(
  38005. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38006. {
  38007. front: {
  38008. height: math.unit(5 + 5/12, "feet"),
  38009. weight: math.unit(180, "lb"),
  38010. name: "Front",
  38011. image: {
  38012. source: "./media/characters/october/front.svg",
  38013. extra: 1800/1650,
  38014. bottom: 0/1800
  38015. }
  38016. },
  38017. frontNsfw: {
  38018. height: math.unit(5 + 5/12, "feet"),
  38019. weight: math.unit(180, "lb"),
  38020. name: "Front (NSFW)",
  38021. image: {
  38022. source: "./media/characters/october/front-nsfw.svg",
  38023. extra: 1392/1307,
  38024. bottom: 42/1434
  38025. }
  38026. },
  38027. },
  38028. [
  38029. {
  38030. name: "Normal",
  38031. height: math.unit(5 + 5/12, "feet"),
  38032. default: true
  38033. },
  38034. ]
  38035. ))
  38036. characterMakers.push(() => makeCharacter(
  38037. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38038. {
  38039. front: {
  38040. height: math.unit(8 + 6/12, "feet"),
  38041. name: "Front",
  38042. image: {
  38043. source: "./media/characters/essynkardi/front.svg",
  38044. extra: 1914/1846,
  38045. bottom: 22/1936
  38046. }
  38047. },
  38048. },
  38049. [
  38050. {
  38051. name: "Normal",
  38052. height: math.unit(8 + 6/12, "feet"),
  38053. default: true
  38054. },
  38055. ]
  38056. ))
  38057. characterMakers.push(() => makeCharacter(
  38058. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38059. {
  38060. front: {
  38061. height: math.unit(6 + 6/12, "feet"),
  38062. weight: math.unit(7, "lb"),
  38063. name: "Front",
  38064. image: {
  38065. source: "./media/characters/icky/front.svg",
  38066. extra: 813/782,
  38067. bottom: 66/879
  38068. }
  38069. },
  38070. back: {
  38071. height: math.unit(6 + 6/12, "feet"),
  38072. weight: math.unit(7, "lb"),
  38073. name: "Back",
  38074. image: {
  38075. source: "./media/characters/icky/back.svg",
  38076. extra: 754/735,
  38077. bottom: 56/810
  38078. }
  38079. },
  38080. },
  38081. [
  38082. {
  38083. name: "Normal",
  38084. height: math.unit(6 + 6/12, "feet"),
  38085. default: true
  38086. },
  38087. ]
  38088. ))
  38089. characterMakers.push(() => makeCharacter(
  38090. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38091. {
  38092. front: {
  38093. height: math.unit(15, "feet"),
  38094. name: "Front",
  38095. image: {
  38096. source: "./media/characters/rojas/front.svg",
  38097. extra: 1462/1408,
  38098. bottom: 95/1557
  38099. }
  38100. },
  38101. back: {
  38102. height: math.unit(15, "feet"),
  38103. name: "Back",
  38104. image: {
  38105. source: "./media/characters/rojas/back.svg",
  38106. extra: 1023/954,
  38107. bottom: 28/1051
  38108. }
  38109. },
  38110. },
  38111. [
  38112. {
  38113. name: "Normal",
  38114. height: math.unit(15, "feet"),
  38115. default: true
  38116. },
  38117. ]
  38118. ))
  38119. characterMakers.push(() => makeCharacter(
  38120. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38121. {
  38122. frontHuman: {
  38123. height: math.unit(5 + 7/12, "feet"),
  38124. name: "Front (Human)",
  38125. image: {
  38126. source: "./media/characters/alek-dryagan/front-human.svg",
  38127. extra: 1687/1667,
  38128. bottom: 69/1756
  38129. }
  38130. },
  38131. backHuman: {
  38132. height: math.unit(5 + 7/12, "feet"),
  38133. name: "Back (Human)",
  38134. image: {
  38135. source: "./media/characters/alek-dryagan/back-human.svg",
  38136. extra: 1670/1649,
  38137. bottom: 65/1735
  38138. }
  38139. },
  38140. frontDemi: {
  38141. height: math.unit(65, "feet"),
  38142. name: "Front (Demi)",
  38143. image: {
  38144. source: "./media/characters/alek-dryagan/front-demi.svg",
  38145. extra: 1669/1642,
  38146. bottom: 49/1718
  38147. }
  38148. },
  38149. backDemi: {
  38150. height: math.unit(65, "feet"),
  38151. name: "Back (Demi)",
  38152. image: {
  38153. source: "./media/characters/alek-dryagan/back-demi.svg",
  38154. extra: 1658/1637,
  38155. bottom: 40/1698
  38156. }
  38157. },
  38158. mawHuman: {
  38159. height: math.unit(0.3, "feet"),
  38160. name: "Maw (Human)",
  38161. image: {
  38162. source: "./media/characters/alek-dryagan/maw-human.svg"
  38163. }
  38164. },
  38165. mawDemi: {
  38166. height: math.unit(3.8, "feet"),
  38167. name: "Maw (Demi)",
  38168. image: {
  38169. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38170. }
  38171. },
  38172. },
  38173. [
  38174. {
  38175. name: "Normal",
  38176. height: math.unit(5 + 7/12, "feet"),
  38177. default: true
  38178. },
  38179. ]
  38180. ))
  38181. characterMakers.push(() => makeCharacter(
  38182. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38183. {
  38184. frontHuman: {
  38185. height: math.unit(5 + 2/12, "feet"),
  38186. name: "Front (Human)",
  38187. image: {
  38188. source: "./media/characters/gen/front-human.svg",
  38189. extra: 1627/1538,
  38190. bottom: 71/1698
  38191. }
  38192. },
  38193. backHuman: {
  38194. height: math.unit(5 + 2/12, "feet"),
  38195. name: "Back (Human)",
  38196. image: {
  38197. source: "./media/characters/gen/back-human.svg",
  38198. extra: 1638/1548,
  38199. bottom: 69/1707
  38200. }
  38201. },
  38202. frontDemi: {
  38203. height: math.unit(5 + 2/12, "feet"),
  38204. name: "Front (Demi)",
  38205. image: {
  38206. source: "./media/characters/gen/front-demi.svg",
  38207. extra: 1627/1538,
  38208. bottom: 71/1698
  38209. }
  38210. },
  38211. backDemi: {
  38212. height: math.unit(5 + 2/12, "feet"),
  38213. name: "Back (Demi)",
  38214. image: {
  38215. source: "./media/characters/gen/back-demi.svg",
  38216. extra: 1638/1548,
  38217. bottom: 69/1707
  38218. }
  38219. },
  38220. },
  38221. [
  38222. {
  38223. name: "Normal",
  38224. height: math.unit(5 + 2/12, "feet"),
  38225. default: true
  38226. },
  38227. ]
  38228. ))
  38229. characterMakers.push(() => makeCharacter(
  38230. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38231. {
  38232. frontImp: {
  38233. height: math.unit(1 + 11/12, "feet"),
  38234. name: "Front (Imp)",
  38235. image: {
  38236. source: "./media/characters/max-kobold/front-imp.svg",
  38237. extra: 1238/1134,
  38238. bottom: 81/1319
  38239. }
  38240. },
  38241. backImp: {
  38242. height: math.unit(1 + 11/12, "feet"),
  38243. name: "Back (Imp)",
  38244. image: {
  38245. source: "./media/characters/max-kobold/back-imp.svg",
  38246. extra: 1334/1175,
  38247. bottom: 34/1368
  38248. }
  38249. },
  38250. frontDemi: {
  38251. height: math.unit(5 + 9/12, "feet"),
  38252. name: "Front (Demi)",
  38253. image: {
  38254. source: "./media/characters/max-kobold/front-demi.svg",
  38255. extra: 1715/1685,
  38256. bottom: 54/1769
  38257. }
  38258. },
  38259. backDemi: {
  38260. height: math.unit(5 + 9/12, "feet"),
  38261. name: "Back (Demi)",
  38262. image: {
  38263. source: "./media/characters/max-kobold/back-demi.svg",
  38264. extra: 1752/1729,
  38265. bottom: 41/1793
  38266. }
  38267. },
  38268. handImp: {
  38269. height: math.unit(0.45, "feet"),
  38270. name: "Hand (Imp)",
  38271. image: {
  38272. source: "./media/characters/max-kobold/hand.svg"
  38273. }
  38274. },
  38275. pawImp: {
  38276. height: math.unit(0.46, "feet"),
  38277. name: "Paw (Imp)",
  38278. image: {
  38279. source: "./media/characters/max-kobold/paw.svg"
  38280. }
  38281. },
  38282. handDemi: {
  38283. height: math.unit(0.80, "feet"),
  38284. name: "Hand (Demi)",
  38285. image: {
  38286. source: "./media/characters/max-kobold/hand.svg"
  38287. }
  38288. },
  38289. pawDemi: {
  38290. height: math.unit(1.1, "feet"),
  38291. name: "Paw (Demi)",
  38292. image: {
  38293. source: "./media/characters/max-kobold/paw.svg"
  38294. }
  38295. },
  38296. headImp: {
  38297. height: math.unit(1.33, "feet"),
  38298. name: "Head (Imp)",
  38299. image: {
  38300. source: "./media/characters/max-kobold/head-imp.svg"
  38301. }
  38302. },
  38303. mawImp: {
  38304. height: math.unit(0.75, "feet"),
  38305. name: "Maw (Imp)",
  38306. image: {
  38307. source: "./media/characters/max-kobold/maw-imp.svg"
  38308. }
  38309. },
  38310. mawDemi: {
  38311. height: math.unit(0.42, "feet"),
  38312. name: "Maw (Demi)",
  38313. image: {
  38314. source: "./media/characters/max-kobold/maw-demi.svg"
  38315. }
  38316. },
  38317. },
  38318. [
  38319. {
  38320. name: "Normal",
  38321. height: math.unit(1 + 11/12, "feet"),
  38322. default: true
  38323. },
  38324. ]
  38325. ))
  38326. characterMakers.push(() => makeCharacter(
  38327. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38328. {
  38329. front: {
  38330. height: math.unit(7 + 5/12, "feet"),
  38331. name: "Front",
  38332. image: {
  38333. source: "./media/characters/carbon/front.svg",
  38334. extra: 1754/1689,
  38335. bottom: 65/1819
  38336. }
  38337. },
  38338. back: {
  38339. height: math.unit(7 + 5/12, "feet"),
  38340. name: "Back",
  38341. image: {
  38342. source: "./media/characters/carbon/back.svg",
  38343. extra: 1762/1695,
  38344. bottom: 24/1786
  38345. }
  38346. },
  38347. frontGigantamax: {
  38348. height: math.unit(150, "feet"),
  38349. name: "Front (Gigantamax)",
  38350. image: {
  38351. source: "./media/characters/carbon/front-gigantamax.svg",
  38352. extra: 1826/1669,
  38353. bottom: 59/1885
  38354. }
  38355. },
  38356. backGigantamax: {
  38357. height: math.unit(150, "feet"),
  38358. name: "Back (Gigantamax)",
  38359. image: {
  38360. source: "./media/characters/carbon/back-gigantamax.svg",
  38361. extra: 1796/1653,
  38362. bottom: 53/1849
  38363. }
  38364. },
  38365. maw: {
  38366. height: math.unit(0.48, "feet"),
  38367. name: "Maw",
  38368. image: {
  38369. source: "./media/characters/carbon/maw.svg"
  38370. }
  38371. },
  38372. mawGigantamax: {
  38373. height: math.unit(7.5, "feet"),
  38374. name: "Maw (Gigantamax)",
  38375. image: {
  38376. source: "./media/characters/carbon/maw-gigantamax.svg"
  38377. }
  38378. },
  38379. },
  38380. [
  38381. {
  38382. name: "Normal",
  38383. height: math.unit(7 + 5/12, "feet"),
  38384. default: true
  38385. },
  38386. ]
  38387. ))
  38388. characterMakers.push(() => makeCharacter(
  38389. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38390. {
  38391. front: {
  38392. height: math.unit(6, "feet"),
  38393. name: "Front",
  38394. image: {
  38395. source: "./media/characters/maverick/front.svg",
  38396. extra: 1672/1661,
  38397. bottom: 85/1757
  38398. }
  38399. },
  38400. back: {
  38401. height: math.unit(6, "feet"),
  38402. name: "Back",
  38403. image: {
  38404. source: "./media/characters/maverick/back.svg",
  38405. extra: 1642/1631,
  38406. bottom: 38/1680
  38407. }
  38408. },
  38409. },
  38410. [
  38411. {
  38412. name: "Normal",
  38413. height: math.unit(6, "feet"),
  38414. default: true
  38415. },
  38416. ]
  38417. ))
  38418. characterMakers.push(() => makeCharacter(
  38419. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38420. {
  38421. front: {
  38422. height: math.unit(15, "feet"),
  38423. weight: math.unit(615, "lb"),
  38424. name: "Front",
  38425. image: {
  38426. source: "./media/characters/grockle/front.svg",
  38427. extra: 1535/1427,
  38428. bottom: 56/1591
  38429. }
  38430. },
  38431. },
  38432. [
  38433. {
  38434. name: "Normal",
  38435. height: math.unit(15, "feet"),
  38436. default: true
  38437. },
  38438. {
  38439. name: "Large",
  38440. height: math.unit(150, "feet")
  38441. },
  38442. {
  38443. name: "Macro",
  38444. height: math.unit(1876, "feet")
  38445. },
  38446. {
  38447. name: "Mega Macro",
  38448. height: math.unit(121940, "feet")
  38449. },
  38450. {
  38451. name: "Giga Macro",
  38452. height: math.unit(750, "km")
  38453. },
  38454. {
  38455. name: "Tera Macro",
  38456. height: math.unit(750000, "km")
  38457. },
  38458. {
  38459. name: "Galactic",
  38460. height: math.unit(1.4e5, "km")
  38461. },
  38462. {
  38463. name: "Godlike",
  38464. height: math.unit(9.8e280, "galaxies")
  38465. },
  38466. ]
  38467. ))
  38468. characterMakers.push(() => makeCharacter(
  38469. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38470. {
  38471. front: {
  38472. height: math.unit(11, "meters"),
  38473. weight: math.unit(20, "tonnes"),
  38474. name: "Front",
  38475. image: {
  38476. source: "./media/characters/alistair/front.svg",
  38477. extra: 1265/1009,
  38478. bottom: 93/1358
  38479. }
  38480. },
  38481. },
  38482. [
  38483. {
  38484. name: "Normal",
  38485. height: math.unit(11, "meters"),
  38486. default: true
  38487. },
  38488. ]
  38489. ))
  38490. characterMakers.push(() => makeCharacter(
  38491. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38492. {
  38493. front: {
  38494. height: math.unit(5 + 8/12, "feet"),
  38495. name: "Front",
  38496. image: {
  38497. source: "./media/characters/haruka/front.svg",
  38498. extra: 2012/1952,
  38499. bottom: 0/2012
  38500. }
  38501. },
  38502. },
  38503. [
  38504. {
  38505. name: "Normal",
  38506. height: math.unit(5 + 8/12, "feet"),
  38507. default: true
  38508. },
  38509. ]
  38510. ))
  38511. characterMakers.push(() => makeCharacter(
  38512. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38513. {
  38514. back: {
  38515. height: math.unit(9, "feet"),
  38516. name: "Back",
  38517. image: {
  38518. source: "./media/characters/vivian-sylveon/back.svg",
  38519. extra: 1853/1714,
  38520. bottom: 0/1853
  38521. }
  38522. },
  38523. },
  38524. [
  38525. {
  38526. name: "Normal",
  38527. height: math.unit(9, "feet"),
  38528. default: true
  38529. },
  38530. {
  38531. name: "Macro",
  38532. height: math.unit(500, "feet")
  38533. },
  38534. {
  38535. name: "Megamacro",
  38536. height: math.unit(600, "miles")
  38537. },
  38538. {
  38539. name: "Gigamacro",
  38540. height: math.unit(30000, "miles")
  38541. },
  38542. ]
  38543. ))
  38544. characterMakers.push(() => makeCharacter(
  38545. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38546. {
  38547. anthro: {
  38548. height: math.unit(5 + 10/12, "feet"),
  38549. weight: math.unit(100, "lb"),
  38550. name: "Anthro",
  38551. image: {
  38552. source: "./media/characters/daiki/anthro.svg",
  38553. extra: 1115/1027,
  38554. bottom: 69/1184
  38555. }
  38556. },
  38557. feral: {
  38558. height: math.unit(200, "feet"),
  38559. name: "Feral",
  38560. image: {
  38561. source: "./media/characters/daiki/feral.svg",
  38562. extra: 1256/313,
  38563. bottom: 39/1295
  38564. }
  38565. },
  38566. feralHead: {
  38567. height: math.unit(171, "feet"),
  38568. name: "Feral Head",
  38569. image: {
  38570. source: "./media/characters/daiki/feral-head.svg"
  38571. }
  38572. },
  38573. manaDragon: {
  38574. height: math.unit(170, "meters"),
  38575. name: "Mana-dragon",
  38576. image: {
  38577. source: "./media/characters/daiki/mana-dragon.svg",
  38578. extra: 763/420,
  38579. bottom: 97/860
  38580. }
  38581. },
  38582. },
  38583. [
  38584. {
  38585. name: "Normal",
  38586. height: math.unit(5 + 10/12, "feet"),
  38587. default: true
  38588. },
  38589. ]
  38590. ))
  38591. characterMakers.push(() => makeCharacter(
  38592. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38593. {
  38594. fullyEquippedFront: {
  38595. height: math.unit(3 + 1/12, "feet"),
  38596. weight: math.unit(24, "lb"),
  38597. name: "Fully Equipped (Front)",
  38598. image: {
  38599. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38600. extra: 687/605,
  38601. bottom: 18/705
  38602. }
  38603. },
  38604. fullyEquippedBack: {
  38605. height: math.unit(3 + 1/12, "feet"),
  38606. weight: math.unit(24, "lb"),
  38607. name: "Fully Equipped (Back)",
  38608. image: {
  38609. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38610. extra: 689/590,
  38611. bottom: 18/707
  38612. }
  38613. },
  38614. dailyWear: {
  38615. height: math.unit(3 + 1/12, "feet"),
  38616. weight: math.unit(24, "lb"),
  38617. name: "Daily Wear",
  38618. image: {
  38619. source: "./media/characters/tea-spot/daily-wear.svg",
  38620. extra: 701/620,
  38621. bottom: 21/722
  38622. }
  38623. },
  38624. maidWork: {
  38625. height: math.unit(3 + 1/12, "feet"),
  38626. weight: math.unit(24, "lb"),
  38627. name: "Maid Work",
  38628. image: {
  38629. source: "./media/characters/tea-spot/maid-work.svg",
  38630. extra: 693/609,
  38631. bottom: 15/708
  38632. }
  38633. },
  38634. },
  38635. [
  38636. {
  38637. name: "Normal",
  38638. height: math.unit(3 + 1/12, "feet"),
  38639. default: true
  38640. },
  38641. ]
  38642. ))
  38643. characterMakers.push(() => makeCharacter(
  38644. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38645. {
  38646. front: {
  38647. height: math.unit(175, "cm"),
  38648. weight: math.unit(75, "kg"),
  38649. name: "Front",
  38650. image: {
  38651. source: "./media/characters/chee/front.svg",
  38652. extra: 1796/1740,
  38653. bottom: 40/1836
  38654. }
  38655. },
  38656. },
  38657. [
  38658. {
  38659. name: "Micro-Micro",
  38660. height: math.unit(1, "nm")
  38661. },
  38662. {
  38663. name: "Micro-erst",
  38664. height: math.unit(1, "micrometer")
  38665. },
  38666. {
  38667. name: "Micro-er",
  38668. height: math.unit(1, "cm")
  38669. },
  38670. {
  38671. name: "Normal",
  38672. height: math.unit(175, "cm"),
  38673. default: true
  38674. },
  38675. {
  38676. name: "Macro",
  38677. height: math.unit(100, "m")
  38678. },
  38679. {
  38680. name: "Macro-er",
  38681. height: math.unit(1, "km")
  38682. },
  38683. {
  38684. name: "Macro-erst",
  38685. height: math.unit(10, "km")
  38686. },
  38687. {
  38688. name: "Macro-Macro",
  38689. height: math.unit(100, "km")
  38690. },
  38691. ]
  38692. ))
  38693. characterMakers.push(() => makeCharacter(
  38694. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38695. {
  38696. front: {
  38697. height: math.unit(11 + 9/12, "feet"),
  38698. weight: math.unit(935, "lb"),
  38699. name: "Front",
  38700. image: {
  38701. source: "./media/characters/kingsley/front.svg",
  38702. extra: 1803/1674,
  38703. bottom: 127/1930
  38704. }
  38705. },
  38706. frontNude: {
  38707. height: math.unit(11 + 9/12, "feet"),
  38708. weight: math.unit(935, "lb"),
  38709. name: "Front (Nude)",
  38710. image: {
  38711. source: "./media/characters/kingsley/front-nude.svg",
  38712. extra: 1803/1674,
  38713. bottom: 127/1930
  38714. }
  38715. },
  38716. },
  38717. [
  38718. {
  38719. name: "Normal",
  38720. height: math.unit(11 + 9/12, "feet"),
  38721. default: true
  38722. },
  38723. ]
  38724. ))
  38725. characterMakers.push(() => makeCharacter(
  38726. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38727. {
  38728. side: {
  38729. height: math.unit(9, "feet"),
  38730. name: "Side",
  38731. image: {
  38732. source: "./media/characters/rymel/side.svg",
  38733. extra: 792/469,
  38734. bottom: 121/913
  38735. }
  38736. },
  38737. maw: {
  38738. height: math.unit(2.4, "meters"),
  38739. name: "Maw",
  38740. image: {
  38741. source: "./media/characters/rymel/maw.svg"
  38742. }
  38743. },
  38744. },
  38745. [
  38746. {
  38747. name: "House Drake",
  38748. height: math.unit(2, "feet")
  38749. },
  38750. {
  38751. name: "Reduced",
  38752. height: math.unit(4.5, "feet")
  38753. },
  38754. {
  38755. name: "Normal",
  38756. height: math.unit(9, "feet"),
  38757. default: true
  38758. },
  38759. ]
  38760. ))
  38761. characterMakers.push(() => makeCharacter(
  38762. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38763. {
  38764. front: {
  38765. height: math.unit(1.74, "meters"),
  38766. weight: math.unit(55, "kg"),
  38767. name: "Front",
  38768. image: {
  38769. source: "./media/characters/rubus/front.svg",
  38770. extra: 1894/1742,
  38771. bottom: 44/1938
  38772. }
  38773. },
  38774. },
  38775. [
  38776. {
  38777. name: "Normal",
  38778. height: math.unit(1.74, "meters"),
  38779. default: true
  38780. },
  38781. ]
  38782. ))
  38783. characterMakers.push(() => makeCharacter(
  38784. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38785. {
  38786. front: {
  38787. height: math.unit(5 + 2/12, "feet"),
  38788. weight: math.unit(112, "lb"),
  38789. name: "Front",
  38790. image: {
  38791. source: "./media/characters/cassie-kingston/front.svg",
  38792. extra: 1438/1390,
  38793. bottom: 47/1485
  38794. }
  38795. },
  38796. },
  38797. [
  38798. {
  38799. name: "Normal",
  38800. height: math.unit(5 + 2/12, "feet"),
  38801. default: true
  38802. },
  38803. {
  38804. name: "Macro",
  38805. height: math.unit(128, "feet")
  38806. },
  38807. {
  38808. name: "Megamacro",
  38809. height: math.unit(2.56, "miles")
  38810. },
  38811. ]
  38812. ))
  38813. characterMakers.push(() => makeCharacter(
  38814. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38815. {
  38816. front: {
  38817. height: math.unit(7, "feet"),
  38818. name: "Front",
  38819. image: {
  38820. source: "./media/characters/fox/front.svg",
  38821. extra: 1798/1703,
  38822. bottom: 55/1853
  38823. }
  38824. },
  38825. back: {
  38826. height: math.unit(7, "feet"),
  38827. name: "Back",
  38828. image: {
  38829. source: "./media/characters/fox/back.svg",
  38830. extra: 1748/1649,
  38831. bottom: 32/1780
  38832. }
  38833. },
  38834. head: {
  38835. height: math.unit(1.95, "feet"),
  38836. name: "Head",
  38837. image: {
  38838. source: "./media/characters/fox/head.svg"
  38839. }
  38840. },
  38841. dick: {
  38842. height: math.unit(1.33, "feet"),
  38843. name: "Dick",
  38844. image: {
  38845. source: "./media/characters/fox/dick.svg"
  38846. }
  38847. },
  38848. foot: {
  38849. height: math.unit(1, "feet"),
  38850. name: "Foot",
  38851. image: {
  38852. source: "./media/characters/fox/foot.svg"
  38853. }
  38854. },
  38855. paw: {
  38856. height: math.unit(0.92, "feet"),
  38857. name: "Paw",
  38858. image: {
  38859. source: "./media/characters/fox/paw.svg"
  38860. }
  38861. },
  38862. },
  38863. [
  38864. {
  38865. name: "Small",
  38866. height: math.unit(3, "inches")
  38867. },
  38868. {
  38869. name: "\"Realistic\"",
  38870. height: math.unit(7, "feet")
  38871. },
  38872. {
  38873. name: "Normal",
  38874. height: math.unit(150, "feet"),
  38875. default: true
  38876. },
  38877. {
  38878. name: "BIG",
  38879. height: math.unit(1200, "feet")
  38880. },
  38881. {
  38882. name: "👀",
  38883. height: math.unit(5, "miles")
  38884. },
  38885. {
  38886. name: "👀👀👀",
  38887. height: math.unit(64, "miles")
  38888. },
  38889. ]
  38890. ))
  38891. characterMakers.push(() => makeCharacter(
  38892. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38893. {
  38894. front: {
  38895. height: math.unit(625, "feet"),
  38896. name: "Front",
  38897. image: {
  38898. source: "./media/characters/asonja-rossa/front.svg",
  38899. extra: 1833/1686,
  38900. bottom: 24/1857
  38901. }
  38902. },
  38903. back: {
  38904. height: math.unit(625, "feet"),
  38905. name: "Back",
  38906. image: {
  38907. source: "./media/characters/asonja-rossa/back.svg",
  38908. extra: 1852/1753,
  38909. bottom: 26/1878
  38910. }
  38911. },
  38912. },
  38913. [
  38914. {
  38915. name: "Macro",
  38916. height: math.unit(625, "feet"),
  38917. default: true
  38918. },
  38919. ]
  38920. ))
  38921. characterMakers.push(() => makeCharacter(
  38922. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38923. {
  38924. side: {
  38925. height: math.unit(8, "feet"),
  38926. name: "Side",
  38927. image: {
  38928. source: "./media/characters/rezukii/side.svg",
  38929. extra: 979/542,
  38930. bottom: 87/1066
  38931. }
  38932. },
  38933. sitting: {
  38934. height: math.unit(14.6, "feet"),
  38935. name: "Sitting",
  38936. image: {
  38937. source: "./media/characters/rezukii/sitting.svg",
  38938. extra: 1023/813,
  38939. bottom: 45/1068
  38940. }
  38941. },
  38942. },
  38943. [
  38944. {
  38945. name: "Tiny",
  38946. height: math.unit(2, "feet")
  38947. },
  38948. {
  38949. name: "Smol",
  38950. height: math.unit(4, "feet")
  38951. },
  38952. {
  38953. name: "Normal",
  38954. height: math.unit(8, "feet"),
  38955. default: true
  38956. },
  38957. {
  38958. name: "Big",
  38959. height: math.unit(12, "feet")
  38960. },
  38961. {
  38962. name: "Macro",
  38963. height: math.unit(30, "feet")
  38964. },
  38965. ]
  38966. ))
  38967. characterMakers.push(() => makeCharacter(
  38968. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38969. {
  38970. front: {
  38971. height: math.unit(14, "feet"),
  38972. weight: math.unit(9.5, "tonnes"),
  38973. name: "Front",
  38974. image: {
  38975. source: "./media/characters/dawnheart/front.svg",
  38976. extra: 2792/2675,
  38977. bottom: 64/2856
  38978. }
  38979. },
  38980. },
  38981. [
  38982. {
  38983. name: "Normal",
  38984. height: math.unit(14, "feet"),
  38985. default: true
  38986. },
  38987. ]
  38988. ))
  38989. characterMakers.push(() => makeCharacter(
  38990. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38991. {
  38992. front: {
  38993. height: math.unit(1.7, "m"),
  38994. name: "Front",
  38995. image: {
  38996. source: "./media/characters/gladi/front.svg",
  38997. extra: 1460/1362,
  38998. bottom: 19/1479
  38999. }
  39000. },
  39001. back: {
  39002. height: math.unit(1.7, "m"),
  39003. name: "Back",
  39004. image: {
  39005. source: "./media/characters/gladi/back.svg",
  39006. extra: 1459/1357,
  39007. bottom: 12/1471
  39008. }
  39009. },
  39010. feral: {
  39011. height: math.unit(2.05, "m"),
  39012. name: "Feral",
  39013. image: {
  39014. source: "./media/characters/gladi/feral.svg",
  39015. extra: 821/557,
  39016. bottom: 91/912
  39017. }
  39018. },
  39019. },
  39020. [
  39021. {
  39022. name: "Shortest",
  39023. height: math.unit(70, "cm")
  39024. },
  39025. {
  39026. name: "Normal",
  39027. height: math.unit(1.7, "m")
  39028. },
  39029. {
  39030. name: "Macro",
  39031. height: math.unit(10, "m"),
  39032. default: true
  39033. },
  39034. {
  39035. name: "Tallest",
  39036. height: math.unit(200, "m")
  39037. },
  39038. ]
  39039. ))
  39040. characterMakers.push(() => makeCharacter(
  39041. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39042. {
  39043. front: {
  39044. height: math.unit(5 + 7/12, "feet"),
  39045. weight: math.unit(2, "tons"),
  39046. name: "Front",
  39047. image: {
  39048. source: "./media/characters/erdno/front.svg",
  39049. extra: 1234/1129,
  39050. bottom: 35/1269
  39051. }
  39052. },
  39053. angled: {
  39054. height: math.unit(5 + 7/12, "feet"),
  39055. weight: math.unit(2, "tons"),
  39056. name: "Angled",
  39057. image: {
  39058. source: "./media/characters/erdno/angled.svg",
  39059. extra: 1185/1139,
  39060. bottom: 36/1221
  39061. }
  39062. },
  39063. side: {
  39064. height: math.unit(5 + 7/12, "feet"),
  39065. weight: math.unit(2, "tons"),
  39066. name: "Side",
  39067. image: {
  39068. source: "./media/characters/erdno/side.svg",
  39069. extra: 1191/1144,
  39070. bottom: 40/1231
  39071. }
  39072. },
  39073. back: {
  39074. height: math.unit(5 + 7/12, "feet"),
  39075. weight: math.unit(2, "tons"),
  39076. name: "Back",
  39077. image: {
  39078. source: "./media/characters/erdno/back.svg",
  39079. extra: 1202/1146,
  39080. bottom: 17/1219
  39081. }
  39082. },
  39083. frontNsfw: {
  39084. height: math.unit(5 + 7/12, "feet"),
  39085. weight: math.unit(2, "tons"),
  39086. name: "Front (NSFW)",
  39087. image: {
  39088. source: "./media/characters/erdno/front-nsfw.svg",
  39089. extra: 1234/1129,
  39090. bottom: 35/1269
  39091. }
  39092. },
  39093. angledNsfw: {
  39094. height: math.unit(5 + 7/12, "feet"),
  39095. weight: math.unit(2, "tons"),
  39096. name: "Angled (NSFW)",
  39097. image: {
  39098. source: "./media/characters/erdno/angled-nsfw.svg",
  39099. extra: 1185/1139,
  39100. bottom: 36/1221
  39101. }
  39102. },
  39103. sideNsfw: {
  39104. height: math.unit(5 + 7/12, "feet"),
  39105. weight: math.unit(2, "tons"),
  39106. name: "Side (NSFW)",
  39107. image: {
  39108. source: "./media/characters/erdno/side-nsfw.svg",
  39109. extra: 1191/1144,
  39110. bottom: 40/1231
  39111. }
  39112. },
  39113. backNsfw: {
  39114. height: math.unit(5 + 7/12, "feet"),
  39115. weight: math.unit(2, "tons"),
  39116. name: "Back (NSFW)",
  39117. image: {
  39118. source: "./media/characters/erdno/back-nsfw.svg",
  39119. extra: 1202/1146,
  39120. bottom: 17/1219
  39121. }
  39122. },
  39123. frontHyper: {
  39124. height: math.unit(5 + 7/12, "feet"),
  39125. weight: math.unit(2, "tons"),
  39126. name: "Front (Hyper)",
  39127. image: {
  39128. source: "./media/characters/erdno/front-hyper.svg",
  39129. extra: 1298/1136,
  39130. bottom: 35/1333
  39131. }
  39132. },
  39133. },
  39134. [
  39135. {
  39136. name: "Normal",
  39137. height: math.unit(5 + 7/12, "feet"),
  39138. default: true
  39139. },
  39140. {
  39141. name: "Big",
  39142. height: math.unit(5.7, "meters")
  39143. },
  39144. {
  39145. name: "Macro",
  39146. height: math.unit(5.7, "kilometers")
  39147. },
  39148. {
  39149. name: "Megamacro",
  39150. height: math.unit(5.7, "earths")
  39151. },
  39152. ]
  39153. ))
  39154. characterMakers.push(() => makeCharacter(
  39155. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39156. {
  39157. front: {
  39158. height: math.unit(5 + 10/12, "feet"),
  39159. weight: math.unit(150, "lb"),
  39160. name: "Front",
  39161. image: {
  39162. source: "./media/characters/jamie/front.svg",
  39163. extra: 1908/1768,
  39164. bottom: 19/1927
  39165. }
  39166. },
  39167. },
  39168. [
  39169. {
  39170. name: "Minimum",
  39171. height: math.unit(2, "cm")
  39172. },
  39173. {
  39174. name: "Micro",
  39175. height: math.unit(3, "inches")
  39176. },
  39177. {
  39178. name: "Normal",
  39179. height: math.unit(5 + 10/12, "feet"),
  39180. default: true
  39181. },
  39182. {
  39183. name: "Macro",
  39184. height: math.unit(150, "feet")
  39185. },
  39186. {
  39187. name: "Megamacro",
  39188. height: math.unit(10000, "m")
  39189. },
  39190. ]
  39191. ))
  39192. characterMakers.push(() => makeCharacter(
  39193. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39194. {
  39195. front: {
  39196. height: math.unit(2, "meters"),
  39197. weight: math.unit(100, "kg"),
  39198. name: "Front",
  39199. image: {
  39200. source: "./media/characters/shiron/front.svg",
  39201. extra: 2103/1985,
  39202. bottom: 98/2201
  39203. }
  39204. },
  39205. back: {
  39206. height: math.unit(2, "meters"),
  39207. weight: math.unit(100, "kg"),
  39208. name: "Back",
  39209. image: {
  39210. source: "./media/characters/shiron/back.svg",
  39211. extra: 2110/2015,
  39212. bottom: 89/2199
  39213. }
  39214. },
  39215. hand: {
  39216. height: math.unit(0.96, "feet"),
  39217. name: "Hand",
  39218. image: {
  39219. source: "./media/characters/shiron/hand.svg"
  39220. }
  39221. },
  39222. foot: {
  39223. height: math.unit(1.464, "feet"),
  39224. name: "Foot",
  39225. image: {
  39226. source: "./media/characters/shiron/foot.svg"
  39227. }
  39228. },
  39229. },
  39230. [
  39231. {
  39232. name: "Normal",
  39233. height: math.unit(2, "meters")
  39234. },
  39235. {
  39236. name: "Macro",
  39237. height: math.unit(500, "meters"),
  39238. default: true
  39239. },
  39240. {
  39241. name: "Megamacro",
  39242. height: math.unit(20, "km")
  39243. },
  39244. ]
  39245. ))
  39246. characterMakers.push(() => makeCharacter(
  39247. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39248. {
  39249. front: {
  39250. height: math.unit(6, "feet"),
  39251. name: "Front",
  39252. image: {
  39253. source: "./media/characters/sam/front.svg",
  39254. extra: 849/826,
  39255. bottom: 19/868
  39256. }
  39257. },
  39258. },
  39259. [
  39260. {
  39261. name: "Normal",
  39262. height: math.unit(6, "feet"),
  39263. default: true
  39264. },
  39265. ]
  39266. ))
  39267. characterMakers.push(() => makeCharacter(
  39268. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39269. {
  39270. front: {
  39271. height: math.unit(8 + 4/12, "feet"),
  39272. weight: math.unit(122, "kg"),
  39273. name: "Front",
  39274. image: {
  39275. source: "./media/characters/namori-kurogawa/front.svg",
  39276. extra: 1894/1576,
  39277. bottom: 34/1928
  39278. }
  39279. },
  39280. },
  39281. [
  39282. {
  39283. name: "Normal",
  39284. height: math.unit(8 + 4/12, "feet"),
  39285. default: true
  39286. },
  39287. ]
  39288. ))
  39289. characterMakers.push(() => makeCharacter(
  39290. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39291. {
  39292. front: {
  39293. height: math.unit(9, "feet"),
  39294. weight: math.unit(621, "lb"),
  39295. name: "Front",
  39296. image: {
  39297. source: "./media/characters/unmru/front.svg",
  39298. extra: 1853/1747,
  39299. bottom: 73/1926
  39300. }
  39301. },
  39302. side: {
  39303. height: math.unit(9, "feet"),
  39304. weight: math.unit(621, "lb"),
  39305. name: "Side",
  39306. image: {
  39307. source: "./media/characters/unmru/side.svg",
  39308. extra: 1781/1671,
  39309. bottom: 127/1908
  39310. }
  39311. },
  39312. back: {
  39313. height: math.unit(9, "feet"),
  39314. weight: math.unit(621, "lb"),
  39315. name: "Back",
  39316. image: {
  39317. source: "./media/characters/unmru/back.svg",
  39318. extra: 1894/1765,
  39319. bottom: 75/1969
  39320. }
  39321. },
  39322. dick: {
  39323. height: math.unit(3, "feet"),
  39324. weight: math.unit(35, "lb"),
  39325. name: "Dick",
  39326. image: {
  39327. source: "./media/characters/unmru/dick.svg"
  39328. }
  39329. },
  39330. },
  39331. [
  39332. {
  39333. name: "Normal",
  39334. height: math.unit(9, "feet")
  39335. },
  39336. {
  39337. name: "Natural",
  39338. height: math.unit(27, "feet"),
  39339. default: true
  39340. },
  39341. {
  39342. name: "Giant",
  39343. height: math.unit(90, "feet")
  39344. },
  39345. {
  39346. name: "Kaiju",
  39347. height: math.unit(270, "feet")
  39348. },
  39349. {
  39350. name: "Macro",
  39351. height: math.unit(900, "feet")
  39352. },
  39353. {
  39354. name: "Macro+",
  39355. height: math.unit(2700, "feet")
  39356. },
  39357. {
  39358. name: "Megamacro",
  39359. height: math.unit(9000, "feet")
  39360. },
  39361. {
  39362. name: "City-Crushing",
  39363. height: math.unit(27000, "feet")
  39364. },
  39365. {
  39366. name: "Mountain-Mashing",
  39367. height: math.unit(90000, "feet")
  39368. },
  39369. {
  39370. name: "Earth-Eclipsing",
  39371. height: math.unit(2.7e8, "feet")
  39372. },
  39373. {
  39374. name: "Sol-Swallowing",
  39375. height: math.unit(9e10, "feet")
  39376. },
  39377. {
  39378. name: "Majoris-Munching",
  39379. height: math.unit(2.7e13, "feet")
  39380. },
  39381. ]
  39382. ))
  39383. characterMakers.push(() => makeCharacter(
  39384. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39385. {
  39386. front: {
  39387. height: math.unit(1, "inch"),
  39388. name: "Front",
  39389. image: {
  39390. source: "./media/characters/squeaks-mouse/front.svg",
  39391. extra: 352/308,
  39392. bottom: 25/377
  39393. }
  39394. },
  39395. },
  39396. [
  39397. {
  39398. name: "Micro",
  39399. height: math.unit(1, "inch"),
  39400. default: true
  39401. },
  39402. ]
  39403. ))
  39404. characterMakers.push(() => makeCharacter(
  39405. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39406. {
  39407. side: {
  39408. height: math.unit(35, "feet"),
  39409. name: "Side",
  39410. image: {
  39411. source: "./media/characters/sayko/side.svg",
  39412. extra: 1697/1021,
  39413. bottom: 82/1779
  39414. }
  39415. },
  39416. head: {
  39417. height: math.unit(16, "feet"),
  39418. name: "Head",
  39419. image: {
  39420. source: "./media/characters/sayko/head.svg"
  39421. }
  39422. },
  39423. forepaw: {
  39424. height: math.unit(7.85, "feet"),
  39425. name: "Forepaw",
  39426. image: {
  39427. source: "./media/characters/sayko/forepaw.svg"
  39428. }
  39429. },
  39430. hindpaw: {
  39431. height: math.unit(8.8, "feet"),
  39432. name: "Hindpaw",
  39433. image: {
  39434. source: "./media/characters/sayko/hindpaw.svg"
  39435. }
  39436. },
  39437. },
  39438. [
  39439. {
  39440. name: "Normal",
  39441. height: math.unit(35, "feet"),
  39442. default: true
  39443. },
  39444. {
  39445. name: "Colossus",
  39446. height: math.unit(100, "meters")
  39447. },
  39448. {
  39449. name: "\"Small\" Deity",
  39450. height: math.unit(1, "km")
  39451. },
  39452. {
  39453. name: "\"Large\" Deity",
  39454. height: math.unit(15, "km")
  39455. },
  39456. ]
  39457. ))
  39458. characterMakers.push(() => makeCharacter(
  39459. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39460. {
  39461. front: {
  39462. height: math.unit(6, "feet"),
  39463. weight: math.unit(250, "lb"),
  39464. name: "Front",
  39465. image: {
  39466. source: "./media/characters/mukiro/front.svg",
  39467. extra: 1368/1310,
  39468. bottom: 34/1402
  39469. }
  39470. },
  39471. },
  39472. [
  39473. {
  39474. name: "Normal",
  39475. height: math.unit(6, "feet"),
  39476. default: true
  39477. },
  39478. ]
  39479. ))
  39480. characterMakers.push(() => makeCharacter(
  39481. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39482. {
  39483. front: {
  39484. height: math.unit(12 + 4/12, "feet"),
  39485. name: "Front",
  39486. image: {
  39487. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39488. extra: 1346/1311,
  39489. bottom: 65/1411
  39490. }
  39491. },
  39492. },
  39493. [
  39494. {
  39495. name: "Base",
  39496. height: math.unit(12 + 4/12, "feet"),
  39497. default: true
  39498. },
  39499. {
  39500. name: "Macro",
  39501. height: math.unit(150, "feet")
  39502. },
  39503. {
  39504. name: "Mega",
  39505. height: math.unit(2, "miles")
  39506. },
  39507. {
  39508. name: "Demi God",
  39509. height: math.unit(4, "AU")
  39510. },
  39511. {
  39512. name: "God Size",
  39513. height: math.unit(1, "universe")
  39514. },
  39515. ]
  39516. ))
  39517. characterMakers.push(() => makeCharacter(
  39518. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39519. {
  39520. front: {
  39521. height: math.unit(3 + 3/12, "feet"),
  39522. weight: math.unit(88, "lb"),
  39523. name: "Front",
  39524. image: {
  39525. source: "./media/characters/trey/front.svg",
  39526. extra: 1815/1509,
  39527. bottom: 60/1875
  39528. }
  39529. },
  39530. },
  39531. [
  39532. {
  39533. name: "Normal",
  39534. height: math.unit(3 + 3/12, "feet"),
  39535. default: true
  39536. },
  39537. ]
  39538. ))
  39539. characterMakers.push(() => makeCharacter(
  39540. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39541. {
  39542. front: {
  39543. height: math.unit(4, "meters"),
  39544. name: "Front",
  39545. image: {
  39546. source: "./media/characters/adelonda/front.svg",
  39547. extra: 1077/982,
  39548. bottom: 39/1116
  39549. }
  39550. },
  39551. back: {
  39552. height: math.unit(4, "meters"),
  39553. name: "Back",
  39554. image: {
  39555. source: "./media/characters/adelonda/back.svg",
  39556. extra: 1105/1003,
  39557. bottom: 25/1130
  39558. }
  39559. },
  39560. feral: {
  39561. height: math.unit(40/1.5, "meters"),
  39562. name: "Feral",
  39563. image: {
  39564. source: "./media/characters/adelonda/feral.svg",
  39565. extra: 597/271,
  39566. bottom: 387/984
  39567. }
  39568. },
  39569. },
  39570. [
  39571. {
  39572. name: "Normal",
  39573. height: math.unit(4, "meters"),
  39574. default: true
  39575. },
  39576. ]
  39577. ))
  39578. characterMakers.push(() => makeCharacter(
  39579. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39580. {
  39581. front: {
  39582. height: math.unit(8 + 4/12, "feet"),
  39583. weight: math.unit(670, "lb"),
  39584. name: "Front",
  39585. image: {
  39586. source: "./media/characters/acadiel/front.svg",
  39587. extra: 1901/1595,
  39588. bottom: 142/2043
  39589. }
  39590. },
  39591. },
  39592. [
  39593. {
  39594. name: "Normal",
  39595. height: math.unit(8 + 4/12, "feet"),
  39596. default: true
  39597. },
  39598. {
  39599. name: "Macro",
  39600. height: math.unit(200, "feet")
  39601. },
  39602. ]
  39603. ))
  39604. characterMakers.push(() => makeCharacter(
  39605. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39606. {
  39607. front: {
  39608. height: math.unit(6 + 2/12, "feet"),
  39609. weight: math.unit(185, "lb"),
  39610. name: "Front",
  39611. image: {
  39612. source: "./media/characters/kayne-ein/front.svg",
  39613. extra: 1780/1560,
  39614. bottom: 81/1861
  39615. }
  39616. },
  39617. },
  39618. [
  39619. {
  39620. name: "Normal",
  39621. height: math.unit(6 + 2/12, "feet"),
  39622. default: true
  39623. },
  39624. {
  39625. name: "Transformation Stage",
  39626. height: math.unit(15, "feet")
  39627. },
  39628. {
  39629. name: "Macro",
  39630. height: math.unit(150, "feet")
  39631. },
  39632. {
  39633. name: "Earth's Shadow",
  39634. height: math.unit(6200, "miles")
  39635. },
  39636. {
  39637. name: "Universal Demon",
  39638. height: math.unit(28e9, "parsecs")
  39639. },
  39640. {
  39641. name: "Multiverse God",
  39642. height: math.unit(3, "multiverses")
  39643. },
  39644. ]
  39645. ))
  39646. characterMakers.push(() => makeCharacter(
  39647. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39648. {
  39649. front: {
  39650. height: math.unit(5 + 5/12, "feet"),
  39651. name: "Front",
  39652. image: {
  39653. source: "./media/characters/fawn/front.svg",
  39654. extra: 1873/1731,
  39655. bottom: 95/1968
  39656. }
  39657. },
  39658. back: {
  39659. height: math.unit(5 + 5/12, "feet"),
  39660. name: "Back",
  39661. image: {
  39662. source: "./media/characters/fawn/back.svg",
  39663. extra: 1813/1700,
  39664. bottom: 14/1827
  39665. }
  39666. },
  39667. hoof: {
  39668. height: math.unit(1.45, "feet"),
  39669. name: "Hoof",
  39670. image: {
  39671. source: "./media/characters/fawn/hoof.svg"
  39672. }
  39673. },
  39674. },
  39675. [
  39676. {
  39677. name: "Normal",
  39678. height: math.unit(5 + 5/12, "feet"),
  39679. default: true
  39680. },
  39681. ]
  39682. ))
  39683. characterMakers.push(() => makeCharacter(
  39684. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39685. {
  39686. front: {
  39687. height: math.unit(2 + 5/12, "feet"),
  39688. name: "Front",
  39689. image: {
  39690. source: "./media/characters/orion/front.svg",
  39691. extra: 1366/1304,
  39692. bottom: 43/1409
  39693. }
  39694. },
  39695. paw: {
  39696. height: math.unit(0.52, "feet"),
  39697. name: "Paw",
  39698. image: {
  39699. source: "./media/characters/orion/paw.svg"
  39700. }
  39701. },
  39702. },
  39703. [
  39704. {
  39705. name: "Normal",
  39706. height: math.unit(2 + 5/12, "feet"),
  39707. default: true
  39708. },
  39709. ]
  39710. ))
  39711. characterMakers.push(() => makeCharacter(
  39712. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39713. {
  39714. front: {
  39715. height: math.unit(5 + 10/12, "feet"),
  39716. name: "Front",
  39717. image: {
  39718. source: "./media/characters/vera/front.svg",
  39719. extra: 1680/1575,
  39720. bottom: 49/1729
  39721. }
  39722. },
  39723. back: {
  39724. height: math.unit(5 + 10/12, "feet"),
  39725. name: "Back",
  39726. image: {
  39727. source: "./media/characters/vera/back.svg",
  39728. extra: 1700/1588,
  39729. bottom: 18/1718
  39730. }
  39731. },
  39732. arcanine: {
  39733. height: math.unit(6 + 8/12, "feet"),
  39734. name: "Arcanine",
  39735. image: {
  39736. source: "./media/characters/vera/arcanine.svg",
  39737. extra: 1590/1511,
  39738. bottom: 71/1661
  39739. }
  39740. },
  39741. maw: {
  39742. height: math.unit(0.82, "feet"),
  39743. name: "Maw",
  39744. image: {
  39745. source: "./media/characters/vera/maw.svg"
  39746. }
  39747. },
  39748. mawArcanine: {
  39749. height: math.unit(0.97, "feet"),
  39750. name: "Maw (Arcanine)",
  39751. image: {
  39752. source: "./media/characters/vera/maw-arcanine.svg"
  39753. }
  39754. },
  39755. paw: {
  39756. height: math.unit(0.75, "feet"),
  39757. name: "Paw",
  39758. image: {
  39759. source: "./media/characters/vera/paw.svg"
  39760. }
  39761. },
  39762. pawprint: {
  39763. height: math.unit(0.52, "feet"),
  39764. name: "Pawprint",
  39765. image: {
  39766. source: "./media/characters/vera/pawprint.svg"
  39767. }
  39768. },
  39769. },
  39770. [
  39771. {
  39772. name: "Normal",
  39773. height: math.unit(5 + 10/12, "feet"),
  39774. default: true
  39775. },
  39776. {
  39777. name: "Macro",
  39778. height: math.unit(75, "feet")
  39779. },
  39780. ]
  39781. ))
  39782. characterMakers.push(() => makeCharacter(
  39783. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39784. {
  39785. front: {
  39786. height: math.unit(4, "feet"),
  39787. weight: math.unit(40, "lb"),
  39788. name: "Front",
  39789. image: {
  39790. source: "./media/characters/orvan-rabbit/front.svg",
  39791. extra: 1896/1642,
  39792. bottom: 29/1925
  39793. }
  39794. },
  39795. },
  39796. [
  39797. {
  39798. name: "Normal",
  39799. height: math.unit(4, "feet"),
  39800. default: true
  39801. },
  39802. ]
  39803. ))
  39804. characterMakers.push(() => makeCharacter(
  39805. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39806. {
  39807. front: {
  39808. height: math.unit(6, "feet"),
  39809. weight: math.unit(168, "lb"),
  39810. name: "Front",
  39811. image: {
  39812. source: "./media/characters/lisa/front.svg",
  39813. extra: 2065/1867,
  39814. bottom: 46/2111
  39815. }
  39816. },
  39817. back: {
  39818. height: math.unit(6, "feet"),
  39819. weight: math.unit(168, "lb"),
  39820. name: "Back",
  39821. image: {
  39822. source: "./media/characters/lisa/back.svg",
  39823. extra: 1982/1838,
  39824. bottom: 29/2011
  39825. }
  39826. },
  39827. maw: {
  39828. height: math.unit(0.81, "feet"),
  39829. name: "Maw",
  39830. image: {
  39831. source: "./media/characters/lisa/maw.svg"
  39832. }
  39833. },
  39834. paw: {
  39835. height: math.unit(0.9, "feet"),
  39836. name: "Paw",
  39837. image: {
  39838. source: "./media/characters/lisa/paw.svg"
  39839. }
  39840. },
  39841. caribousune: {
  39842. height: math.unit(7 + 2/12, "feet"),
  39843. weight: math.unit(268, "lb"),
  39844. name: "Caribousune",
  39845. image: {
  39846. source: "./media/characters/lisa/caribousune.svg",
  39847. extra: 1843/1633,
  39848. bottom: 29/1872
  39849. }
  39850. },
  39851. frontCaribousune: {
  39852. height: math.unit(7 + 2/12, "feet"),
  39853. weight: math.unit(268, "lb"),
  39854. name: "Front (Caribousune)",
  39855. image: {
  39856. source: "./media/characters/lisa/front-caribousune.svg",
  39857. extra: 1818/1638,
  39858. bottom: 52/1870
  39859. }
  39860. },
  39861. sideCaribousune: {
  39862. height: math.unit(7 + 2/12, "feet"),
  39863. weight: math.unit(268, "lb"),
  39864. name: "Side (Caribousune)",
  39865. image: {
  39866. source: "./media/characters/lisa/side-caribousune.svg",
  39867. extra: 1851/1635,
  39868. bottom: 16/1867
  39869. }
  39870. },
  39871. backCaribousune: {
  39872. height: math.unit(7 + 2/12, "feet"),
  39873. weight: math.unit(268, "lb"),
  39874. name: "Back (Caribousune)",
  39875. image: {
  39876. source: "./media/characters/lisa/back-caribousune.svg",
  39877. extra: 1801/1604,
  39878. bottom: 44/1845
  39879. }
  39880. },
  39881. caribou: {
  39882. height: math.unit(7 + 2/12, "feet"),
  39883. weight: math.unit(268, "lb"),
  39884. name: "Caribou",
  39885. image: {
  39886. source: "./media/characters/lisa/caribou.svg",
  39887. extra: 1843/1633,
  39888. bottom: 29/1872
  39889. }
  39890. },
  39891. frontCaribou: {
  39892. height: math.unit(7 + 2/12, "feet"),
  39893. weight: math.unit(268, "lb"),
  39894. name: "Front (Caribou)",
  39895. image: {
  39896. source: "./media/characters/lisa/front-caribou.svg",
  39897. extra: 1818/1638,
  39898. bottom: 52/1870
  39899. }
  39900. },
  39901. sideCaribou: {
  39902. height: math.unit(7 + 2/12, "feet"),
  39903. weight: math.unit(268, "lb"),
  39904. name: "Side (Caribou)",
  39905. image: {
  39906. source: "./media/characters/lisa/side-caribou.svg",
  39907. extra: 1851/1635,
  39908. bottom: 16/1867
  39909. }
  39910. },
  39911. backCaribou: {
  39912. height: math.unit(7 + 2/12, "feet"),
  39913. weight: math.unit(268, "lb"),
  39914. name: "Back (Caribou)",
  39915. image: {
  39916. source: "./media/characters/lisa/back-caribou.svg",
  39917. extra: 1801/1604,
  39918. bottom: 44/1845
  39919. }
  39920. },
  39921. mawCaribou: {
  39922. height: math.unit(1.45, "feet"),
  39923. name: "Maw (Caribou)",
  39924. image: {
  39925. source: "./media/characters/lisa/maw-caribou.svg"
  39926. }
  39927. },
  39928. mawCaribousune: {
  39929. height: math.unit(1.45, "feet"),
  39930. name: "Maw (Caribousune)",
  39931. image: {
  39932. source: "./media/characters/lisa/maw-caribousune.svg"
  39933. }
  39934. },
  39935. pawCaribousune: {
  39936. height: math.unit(1.61, "feet"),
  39937. name: "Paw (Caribou)",
  39938. image: {
  39939. source: "./media/characters/lisa/paw-caribousune.svg"
  39940. }
  39941. },
  39942. },
  39943. [
  39944. {
  39945. name: "Normal",
  39946. height: math.unit(6, "feet")
  39947. },
  39948. {
  39949. name: "God Size",
  39950. height: math.unit(72, "feet"),
  39951. default: true
  39952. },
  39953. {
  39954. name: "Towering",
  39955. height: math.unit(288, "feet")
  39956. },
  39957. {
  39958. name: "City Size",
  39959. height: math.unit(48384, "feet")
  39960. },
  39961. {
  39962. name: "Continental",
  39963. height: math.unit(4200, "miles")
  39964. },
  39965. {
  39966. name: "Planet Eater",
  39967. height: math.unit(42, "earths")
  39968. },
  39969. {
  39970. name: "Star Swallower",
  39971. height: math.unit(42, "solarradii")
  39972. },
  39973. {
  39974. name: "System Swallower",
  39975. height: math.unit(84000, "AU")
  39976. },
  39977. {
  39978. name: "Galaxy Gobbler",
  39979. height: math.unit(42, "galaxies")
  39980. },
  39981. {
  39982. name: "Universe Devourer",
  39983. height: math.unit(42, "universes")
  39984. },
  39985. {
  39986. name: "Multiverse Muncher",
  39987. height: math.unit(42, "multiverses")
  39988. },
  39989. ]
  39990. ))
  39991. characterMakers.push(() => makeCharacter(
  39992. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39993. {
  39994. front: {
  39995. height: math.unit(36, "feet"),
  39996. name: "Front",
  39997. image: {
  39998. source: "./media/characters/shadow-rat/front.svg",
  39999. extra: 1845/1758,
  40000. bottom: 83/1928
  40001. }
  40002. },
  40003. },
  40004. [
  40005. {
  40006. name: "Macro",
  40007. height: math.unit(36, "feet"),
  40008. default: true
  40009. },
  40010. ]
  40011. ))
  40012. characterMakers.push(() => makeCharacter(
  40013. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40014. {
  40015. side: {
  40016. height: math.unit(8, "feet"),
  40017. weight: math.unit(2630, "lb"),
  40018. name: "Side",
  40019. image: {
  40020. source: "./media/characters/torallia/side.svg",
  40021. extra: 2164/2021,
  40022. bottom: 371/2535
  40023. }
  40024. },
  40025. },
  40026. [
  40027. {
  40028. name: "Mortal Interaction",
  40029. height: math.unit(8, "feet")
  40030. },
  40031. {
  40032. name: "Natural",
  40033. height: math.unit(24, "feet"),
  40034. default: true
  40035. },
  40036. {
  40037. name: "Giant",
  40038. height: math.unit(80, "feet")
  40039. },
  40040. {
  40041. name: "Kaiju",
  40042. height: math.unit(240, "feet")
  40043. },
  40044. {
  40045. name: "Macro",
  40046. height: math.unit(800, "feet")
  40047. },
  40048. {
  40049. name: "Macro+",
  40050. height: math.unit(2400, "feet")
  40051. },
  40052. {
  40053. name: "Macro++",
  40054. height: math.unit(8000, "feet")
  40055. },
  40056. {
  40057. name: "City-Crushing",
  40058. height: math.unit(24000, "feet")
  40059. },
  40060. {
  40061. name: "Mountain-Mashing",
  40062. height: math.unit(80000, "feet")
  40063. },
  40064. {
  40065. name: "District Demolisher",
  40066. height: math.unit(240000, "feet")
  40067. },
  40068. {
  40069. name: "Tri-County Terror",
  40070. height: math.unit(800000, "feet")
  40071. },
  40072. {
  40073. name: "State Smasher",
  40074. height: math.unit(2.4e6, "feet")
  40075. },
  40076. {
  40077. name: "Nation Nemesis",
  40078. height: math.unit(8e6, "feet")
  40079. },
  40080. {
  40081. name: "Continent Cracker",
  40082. height: math.unit(2.4e7, "feet")
  40083. },
  40084. {
  40085. name: "Planet-Pillaging",
  40086. height: math.unit(8e7, "feet")
  40087. },
  40088. {
  40089. name: "Earth-Eclipsing",
  40090. height: math.unit(2.4e8, "feet")
  40091. },
  40092. {
  40093. name: "Jovian-Jostling",
  40094. height: math.unit(8e8, "feet")
  40095. },
  40096. {
  40097. name: "Gas Giant Gulper",
  40098. height: math.unit(2.4e9, "feet")
  40099. },
  40100. {
  40101. name: "Astral Annihilator",
  40102. height: math.unit(8e9, "feet")
  40103. },
  40104. {
  40105. name: "Celestial Conqueror",
  40106. height: math.unit(2.4e10, "feet")
  40107. },
  40108. {
  40109. name: "Sol-Swallowing",
  40110. height: math.unit(8e10, "feet")
  40111. },
  40112. {
  40113. name: "Hunter of the Heavens",
  40114. height: math.unit(2.4e13, "feet")
  40115. },
  40116. ]
  40117. ))
  40118. characterMakers.push(() => makeCharacter(
  40119. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40120. {
  40121. front: {
  40122. height: math.unit(6 + 8/12, "feet"),
  40123. weight: math.unit(250, "kilograms"),
  40124. volume: math.unit(28, "liters"),
  40125. name: "Front",
  40126. image: {
  40127. source: "./media/characters/rebecca-pawlson/front.svg",
  40128. extra: 1737/1596,
  40129. bottom: 107/1844
  40130. }
  40131. },
  40132. back: {
  40133. height: math.unit(6 + 8/12, "feet"),
  40134. weight: math.unit(250, "kilograms"),
  40135. volume: math.unit(28, "liters"),
  40136. name: "Back",
  40137. image: {
  40138. source: "./media/characters/rebecca-pawlson/back.svg",
  40139. extra: 1702/1523,
  40140. bottom: 86/1788
  40141. }
  40142. },
  40143. },
  40144. [
  40145. {
  40146. name: "Normal",
  40147. height: math.unit(6 + 8/12, "feet")
  40148. },
  40149. {
  40150. name: "Mini Macro",
  40151. height: math.unit(10, "feet"),
  40152. default: true
  40153. },
  40154. {
  40155. name: "Macro",
  40156. height: math.unit(100, "feet")
  40157. },
  40158. {
  40159. name: "Mega Macro",
  40160. height: math.unit(2500, "feet")
  40161. },
  40162. {
  40163. name: "Giga Macro",
  40164. height: math.unit(50, "miles")
  40165. },
  40166. ]
  40167. ))
  40168. characterMakers.push(() => makeCharacter(
  40169. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40170. {
  40171. front: {
  40172. height: math.unit(7 + 6/12, "feet"),
  40173. weight: math.unit(600, "lb"),
  40174. name: "Front",
  40175. image: {
  40176. source: "./media/characters/moxie-nova/front.svg",
  40177. extra: 1734/1652,
  40178. bottom: 41/1775
  40179. }
  40180. },
  40181. },
  40182. [
  40183. {
  40184. name: "Normal",
  40185. height: math.unit(7 + 6/12, "feet"),
  40186. default: true
  40187. },
  40188. ]
  40189. ))
  40190. characterMakers.push(() => makeCharacter(
  40191. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40192. {
  40193. goat: {
  40194. height: math.unit(4, "feet"),
  40195. weight: math.unit(180, "lb"),
  40196. name: "Goat",
  40197. image: {
  40198. source: "./media/characters/tiffany/goat.svg",
  40199. extra: 1845/1595,
  40200. bottom: 106/1951
  40201. }
  40202. },
  40203. front: {
  40204. height: math.unit(5, "feet"),
  40205. weight: math.unit(150, "lb"),
  40206. name: "Foxcoon",
  40207. image: {
  40208. source: "./media/characters/tiffany/foxcoon.svg",
  40209. extra: 1941/1845,
  40210. bottom: 58/1999
  40211. }
  40212. },
  40213. },
  40214. [
  40215. {
  40216. name: "Normal",
  40217. height: math.unit(5, "feet"),
  40218. default: true
  40219. },
  40220. ]
  40221. ))
  40222. characterMakers.push(() => makeCharacter(
  40223. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40224. {
  40225. front: {
  40226. height: math.unit(8, "feet"),
  40227. weight: math.unit(300, "lb"),
  40228. name: "Front",
  40229. image: {
  40230. source: "./media/characters/raxinath/front.svg",
  40231. extra: 1407/1309,
  40232. bottom: 39/1446
  40233. }
  40234. },
  40235. back: {
  40236. height: math.unit(8, "feet"),
  40237. weight: math.unit(300, "lb"),
  40238. name: "Back",
  40239. image: {
  40240. source: "./media/characters/raxinath/back.svg",
  40241. extra: 1405/1315,
  40242. bottom: 9/1414
  40243. }
  40244. },
  40245. },
  40246. [
  40247. {
  40248. name: "Speck",
  40249. height: math.unit(0.5, "nm")
  40250. },
  40251. {
  40252. name: "Micro",
  40253. height: math.unit(3, "inches")
  40254. },
  40255. {
  40256. name: "Kobold",
  40257. height: math.unit(3, "feet")
  40258. },
  40259. {
  40260. name: "Normal",
  40261. height: math.unit(8, "feet"),
  40262. default: true
  40263. },
  40264. {
  40265. name: "Giant",
  40266. height: math.unit(50, "feet")
  40267. },
  40268. {
  40269. name: "Macro",
  40270. height: math.unit(1000, "feet")
  40271. },
  40272. {
  40273. name: "Megamacro",
  40274. height: math.unit(1, "mile")
  40275. },
  40276. ]
  40277. ))
  40278. characterMakers.push(() => makeCharacter(
  40279. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40280. {
  40281. front: {
  40282. height: math.unit(10, "feet"),
  40283. weight: math.unit(1442, "lb"),
  40284. name: "Front",
  40285. image: {
  40286. source: "./media/characters/mal-dragon/front.svg",
  40287. extra: 1515/1444,
  40288. bottom: 113/1628
  40289. }
  40290. },
  40291. back: {
  40292. height: math.unit(10, "feet"),
  40293. weight: math.unit(1442, "lb"),
  40294. name: "Back",
  40295. image: {
  40296. source: "./media/characters/mal-dragon/back.svg",
  40297. extra: 1527/1434,
  40298. bottom: 25/1552
  40299. }
  40300. },
  40301. },
  40302. [
  40303. {
  40304. name: "Mortal Interaction",
  40305. height: math.unit(10, "feet"),
  40306. default: true
  40307. },
  40308. {
  40309. name: "Large",
  40310. height: math.unit(30, "feet")
  40311. },
  40312. {
  40313. name: "Kaiju",
  40314. height: math.unit(300, "feet")
  40315. },
  40316. {
  40317. name: "Megamacro",
  40318. height: math.unit(10000, "feet")
  40319. },
  40320. {
  40321. name: "Continent Cracker",
  40322. height: math.unit(30000000, "feet")
  40323. },
  40324. {
  40325. name: "Sol-Swallowing",
  40326. height: math.unit(1e11, "feet")
  40327. },
  40328. {
  40329. name: "Light Universal",
  40330. height: math.unit(5, "universes")
  40331. },
  40332. {
  40333. name: "Universe Atoms",
  40334. height: math.unit(1.829e9, "universes")
  40335. },
  40336. {
  40337. name: "Light Multiversal",
  40338. height: math.unit(5, "multiverses")
  40339. },
  40340. {
  40341. name: "Multiverse Atoms",
  40342. height: math.unit(1.829e9, "multiverses")
  40343. },
  40344. {
  40345. name: "Fabric of Time",
  40346. height: math.unit(1e262, "multiverses")
  40347. },
  40348. ]
  40349. ))
  40350. characterMakers.push(() => makeCharacter(
  40351. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40352. {
  40353. front: {
  40354. height: math.unit(9, "feet"),
  40355. weight: math.unit(1050, "lb"),
  40356. name: "Front",
  40357. image: {
  40358. source: "./media/characters/tabitha/front.svg",
  40359. extra: 2083/1994,
  40360. bottom: 68/2151
  40361. }
  40362. },
  40363. },
  40364. [
  40365. {
  40366. name: "Baseline",
  40367. height: math.unit(9, "feet"),
  40368. default: true
  40369. },
  40370. {
  40371. name: "Giant",
  40372. height: math.unit(90, "feet")
  40373. },
  40374. {
  40375. name: "Macro",
  40376. height: math.unit(900, "feet")
  40377. },
  40378. {
  40379. name: "Megamacro",
  40380. height: math.unit(9000, "feet")
  40381. },
  40382. {
  40383. name: "City-Crushing",
  40384. height: math.unit(27000, "feet")
  40385. },
  40386. {
  40387. name: "Mountain-Mashing",
  40388. height: math.unit(90000, "feet")
  40389. },
  40390. {
  40391. name: "Nation Nemesis",
  40392. height: math.unit(9e6, "feet")
  40393. },
  40394. {
  40395. name: "Continent Cracker",
  40396. height: math.unit(27e6, "feet")
  40397. },
  40398. {
  40399. name: "Earth-Eclipsing",
  40400. height: math.unit(2.7e8, "feet")
  40401. },
  40402. {
  40403. name: "Gas Giant Gulper",
  40404. height: math.unit(2.7e9, "feet")
  40405. },
  40406. {
  40407. name: "Sol-Swallowing",
  40408. height: math.unit(9e10, "feet")
  40409. },
  40410. {
  40411. name: "Galaxy Gulper",
  40412. height: math.unit(9, "galaxies")
  40413. },
  40414. {
  40415. name: "Cosmos Churner",
  40416. height: math.unit(9, "universes")
  40417. },
  40418. ]
  40419. ))
  40420. characterMakers.push(() => makeCharacter(
  40421. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40422. {
  40423. front: {
  40424. height: math.unit(160, "cm"),
  40425. weight: math.unit(55, "kg"),
  40426. name: "Front",
  40427. image: {
  40428. source: "./media/characters/tow/front.svg",
  40429. extra: 1751/1722,
  40430. bottom: 74/1825
  40431. }
  40432. },
  40433. },
  40434. [
  40435. {
  40436. name: "Norm",
  40437. height: math.unit(160, "cm")
  40438. },
  40439. {
  40440. name: "Casual",
  40441. height: math.unit(3200, "m"),
  40442. default: true
  40443. },
  40444. {
  40445. name: "Show-Off",
  40446. height: math.unit(160, "km")
  40447. },
  40448. ]
  40449. ))
  40450. characterMakers.push(() => makeCharacter(
  40451. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40452. {
  40453. front: {
  40454. height: math.unit(7 + 11/12, "feet"),
  40455. weight: math.unit(342.8, "lb"),
  40456. name: "Front",
  40457. image: {
  40458. source: "./media/characters/vivian-orca-dragon/front.svg",
  40459. extra: 1890/1865,
  40460. bottom: 28/1918
  40461. }
  40462. },
  40463. },
  40464. [
  40465. {
  40466. name: "Micro",
  40467. height: math.unit(5, "inches")
  40468. },
  40469. {
  40470. name: "Normal",
  40471. height: math.unit(7 + 11/12, "feet"),
  40472. default: true
  40473. },
  40474. {
  40475. name: "Macro",
  40476. height: math.unit(395 + 7/12, "feet")
  40477. },
  40478. ]
  40479. ))
  40480. characterMakers.push(() => makeCharacter(
  40481. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40482. {
  40483. side: {
  40484. height: math.unit(10, "feet"),
  40485. weight: math.unit(1442, "lb"),
  40486. name: "Side",
  40487. image: {
  40488. source: "./media/characters/lotherakon/side.svg",
  40489. extra: 1604/1497,
  40490. bottom: 89/1693
  40491. }
  40492. },
  40493. },
  40494. [
  40495. {
  40496. name: "Mortal Interaction",
  40497. height: math.unit(10, "feet")
  40498. },
  40499. {
  40500. name: "Large",
  40501. height: math.unit(30, "feet"),
  40502. default: true
  40503. },
  40504. {
  40505. name: "Giant",
  40506. height: math.unit(100, "feet")
  40507. },
  40508. {
  40509. name: "Kaiju",
  40510. height: math.unit(300, "feet")
  40511. },
  40512. {
  40513. name: "Macro",
  40514. height: math.unit(1000, "feet")
  40515. },
  40516. {
  40517. name: "Macro+",
  40518. height: math.unit(3000, "feet")
  40519. },
  40520. {
  40521. name: "Megamacro",
  40522. height: math.unit(10000, "feet")
  40523. },
  40524. {
  40525. name: "City-Crushing",
  40526. height: math.unit(30000, "feet")
  40527. },
  40528. {
  40529. name: "Continent Cracker",
  40530. height: math.unit(30e6, "feet")
  40531. },
  40532. {
  40533. name: "Earth Eclipsing",
  40534. height: math.unit(3e8, "feet")
  40535. },
  40536. {
  40537. name: "Gas Giant Gulper",
  40538. height: math.unit(3e9, "feet")
  40539. },
  40540. {
  40541. name: "Sol-Swallowing",
  40542. height: math.unit(1e11, "feet")
  40543. },
  40544. {
  40545. name: "System Swallower",
  40546. height: math.unit(3e14, "feet")
  40547. },
  40548. {
  40549. name: "Galaxy Gulper",
  40550. height: math.unit(10, "galaxies")
  40551. },
  40552. {
  40553. name: "Light Universal",
  40554. height: math.unit(5, "universes")
  40555. },
  40556. {
  40557. name: "Universe Palm",
  40558. height: math.unit(20, "universes")
  40559. },
  40560. {
  40561. name: "Light Multiversal",
  40562. height: math.unit(5, "multiverses")
  40563. },
  40564. {
  40565. name: "Multiverse Palm",
  40566. height: math.unit(20, "multiverses")
  40567. },
  40568. {
  40569. name: "Inferno Incarnate",
  40570. height: math.unit(1e7, "multiverses")
  40571. },
  40572. ]
  40573. ))
  40574. characterMakers.push(() => makeCharacter(
  40575. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40576. {
  40577. front: {
  40578. height: math.unit(8, "feet"),
  40579. weight: math.unit(1200, "lb"),
  40580. name: "Front",
  40581. image: {
  40582. source: "./media/characters/malithee/front.svg",
  40583. extra: 1675/1640,
  40584. bottom: 162/1837
  40585. }
  40586. },
  40587. },
  40588. [
  40589. {
  40590. name: "Mortal Interaction",
  40591. height: math.unit(8, "feet"),
  40592. default: true
  40593. },
  40594. {
  40595. name: "Large",
  40596. height: math.unit(24, "feet")
  40597. },
  40598. {
  40599. name: "Kaiju",
  40600. height: math.unit(240, "feet")
  40601. },
  40602. {
  40603. name: "Megamacro",
  40604. height: math.unit(8000, "feet")
  40605. },
  40606. {
  40607. name: "Continent Cracker",
  40608. height: math.unit(24e6, "feet")
  40609. },
  40610. {
  40611. name: "Earth-Eclipsing",
  40612. height: math.unit(2.4e8, "feet")
  40613. },
  40614. {
  40615. name: "Sol-Swallowing",
  40616. height: math.unit(8e10, "feet")
  40617. },
  40618. {
  40619. name: "Galaxy Gulper",
  40620. height: math.unit(8, "galaxies")
  40621. },
  40622. {
  40623. name: "Light Universal",
  40624. height: math.unit(4, "universes")
  40625. },
  40626. {
  40627. name: "Universe Atoms",
  40628. height: math.unit(1.829e9, "universes")
  40629. },
  40630. {
  40631. name: "Light Multiversal",
  40632. height: math.unit(4, "multiverses")
  40633. },
  40634. {
  40635. name: "Multiverse Atoms",
  40636. height: math.unit(1.829e9, "multiverses")
  40637. },
  40638. {
  40639. name: "Nigh-Omnipresence",
  40640. height: math.unit(8e261, "multiverses")
  40641. },
  40642. ]
  40643. ))
  40644. characterMakers.push(() => makeCharacter(
  40645. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40646. {
  40647. front: {
  40648. height: math.unit(10, "feet"),
  40649. weight: math.unit(1500, "lb"),
  40650. name: "Front",
  40651. image: {
  40652. source: "./media/characters/miles-thestia/front.svg",
  40653. extra: 1812/1727,
  40654. bottom: 86/1898
  40655. }
  40656. },
  40657. back: {
  40658. height: math.unit(10, "feet"),
  40659. weight: math.unit(1500, "lb"),
  40660. name: "Back",
  40661. image: {
  40662. source: "./media/characters/miles-thestia/back.svg",
  40663. extra: 1799/1690,
  40664. bottom: 47/1846
  40665. }
  40666. },
  40667. frontNsfw: {
  40668. height: math.unit(10, "feet"),
  40669. weight: math.unit(1500, "lb"),
  40670. name: "Front (NSFW)",
  40671. image: {
  40672. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40673. extra: 1812/1727,
  40674. bottom: 86/1898
  40675. }
  40676. },
  40677. },
  40678. [
  40679. {
  40680. name: "Mini-Macro",
  40681. height: math.unit(10, "feet"),
  40682. default: true
  40683. },
  40684. ]
  40685. ))
  40686. characterMakers.push(() => makeCharacter(
  40687. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40688. {
  40689. front: {
  40690. height: math.unit(25, "feet"),
  40691. name: "Front",
  40692. image: {
  40693. source: "./media/characters/titan-s-wulf/front.svg",
  40694. extra: 1560/1484,
  40695. bottom: 76/1636
  40696. }
  40697. },
  40698. },
  40699. [
  40700. {
  40701. name: "Smallest",
  40702. height: math.unit(25, "feet"),
  40703. default: true
  40704. },
  40705. {
  40706. name: "Normal",
  40707. height: math.unit(200, "feet")
  40708. },
  40709. {
  40710. name: "Macro",
  40711. height: math.unit(200000, "feet")
  40712. },
  40713. {
  40714. name: "Multiversal Original",
  40715. height: math.unit(10000, "multiverses")
  40716. },
  40717. ]
  40718. ))
  40719. characterMakers.push(() => makeCharacter(
  40720. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40721. {
  40722. front: {
  40723. height: math.unit(8, "feet"),
  40724. weight: math.unit(553, "lb"),
  40725. name: "Front",
  40726. image: {
  40727. source: "./media/characters/tawendeh/front.svg",
  40728. extra: 2365/2268,
  40729. bottom: 83/2448
  40730. }
  40731. },
  40732. frontClothed: {
  40733. height: math.unit(8, "feet"),
  40734. weight: math.unit(553, "lb"),
  40735. name: "Front (Clothed)",
  40736. image: {
  40737. source: "./media/characters/tawendeh/front-clothed.svg",
  40738. extra: 2365/2268,
  40739. bottom: 83/2448
  40740. }
  40741. },
  40742. back: {
  40743. height: math.unit(8, "feet"),
  40744. weight: math.unit(553, "lb"),
  40745. name: "Back",
  40746. image: {
  40747. source: "./media/characters/tawendeh/back.svg",
  40748. extra: 2397/2294,
  40749. bottom: 42/2439
  40750. }
  40751. },
  40752. },
  40753. [
  40754. {
  40755. name: "Mortal Interaction",
  40756. height: math.unit(8, "feet"),
  40757. default: true
  40758. },
  40759. {
  40760. name: "Giant",
  40761. height: math.unit(80, "feet")
  40762. },
  40763. {
  40764. name: "Macro",
  40765. height: math.unit(800, "feet")
  40766. },
  40767. {
  40768. name: "Megamacro",
  40769. height: math.unit(8000, "feet")
  40770. },
  40771. {
  40772. name: "City-Crushing",
  40773. height: math.unit(24000, "feet")
  40774. },
  40775. {
  40776. name: "Mountain-Mashing",
  40777. height: math.unit(80000, "feet")
  40778. },
  40779. {
  40780. name: "Nation Nemesis",
  40781. height: math.unit(8e6, "feet")
  40782. },
  40783. {
  40784. name: "Continent Cracker",
  40785. height: math.unit(24e6, "feet")
  40786. },
  40787. {
  40788. name: "Earth-Eclipsing",
  40789. height: math.unit(2.4e8, "feet")
  40790. },
  40791. {
  40792. name: "Gas Giant Gulper",
  40793. height: math.unit(2.4e9, "feet")
  40794. },
  40795. {
  40796. name: "Sol-Swallowing",
  40797. height: math.unit(8e10, "feet")
  40798. },
  40799. {
  40800. name: "Galaxy Gulper",
  40801. height: math.unit(8, "galaxies")
  40802. },
  40803. {
  40804. name: "Cosmos Churner",
  40805. height: math.unit(8, "universes")
  40806. },
  40807. {
  40808. name: "Omnipotent Otter",
  40809. height: math.unit(80, "universes")
  40810. },
  40811. ]
  40812. ))
  40813. characterMakers.push(() => makeCharacter(
  40814. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40815. {
  40816. front: {
  40817. height: math.unit(2.6, "meters"),
  40818. weight: math.unit(900, "kg"),
  40819. name: "Front",
  40820. image: {
  40821. source: "./media/characters/neesha/front.svg",
  40822. extra: 1803/1653,
  40823. bottom: 128/1931
  40824. }
  40825. },
  40826. },
  40827. [
  40828. {
  40829. name: "Normal",
  40830. height: math.unit(2.6, "meters"),
  40831. default: true
  40832. },
  40833. {
  40834. name: "Macro",
  40835. height: math.unit(50, "meters")
  40836. },
  40837. ]
  40838. ))
  40839. characterMakers.push(() => makeCharacter(
  40840. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40841. {
  40842. front: {
  40843. height: math.unit(5, "feet"),
  40844. weight: math.unit(185, "lb"),
  40845. name: "Front",
  40846. image: {
  40847. source: "./media/characters/kyera/front.svg",
  40848. extra: 1875/1790,
  40849. bottom: 96/1971
  40850. }
  40851. },
  40852. },
  40853. [
  40854. {
  40855. name: "Normal",
  40856. height: math.unit(5, "feet"),
  40857. default: true
  40858. },
  40859. ]
  40860. ))
  40861. characterMakers.push(() => makeCharacter(
  40862. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40863. {
  40864. front: {
  40865. height: math.unit(7 + 6/12, "feet"),
  40866. weight: math.unit(540, "lb"),
  40867. name: "Front",
  40868. image: {
  40869. source: "./media/characters/yuko/front.svg",
  40870. extra: 1282/1222,
  40871. bottom: 101/1383
  40872. }
  40873. },
  40874. frontClothed: {
  40875. height: math.unit(7 + 6/12, "feet"),
  40876. weight: math.unit(540, "lb"),
  40877. name: "Front (Clothed)",
  40878. image: {
  40879. source: "./media/characters/yuko/front-clothed.svg",
  40880. extra: 1282/1222,
  40881. bottom: 101/1383
  40882. }
  40883. },
  40884. },
  40885. [
  40886. {
  40887. name: "Normal",
  40888. height: math.unit(7 + 6/12, "feet"),
  40889. default: true
  40890. },
  40891. {
  40892. name: "Macro",
  40893. height: math.unit(26 + 9/12, "feet")
  40894. },
  40895. {
  40896. name: "Megamacro",
  40897. height: math.unit(300, "feet")
  40898. },
  40899. {
  40900. name: "Gigamacro",
  40901. height: math.unit(5000, "feet")
  40902. },
  40903. {
  40904. name: "Planetary",
  40905. height: math.unit(10000, "miles")
  40906. },
  40907. ]
  40908. ))
  40909. characterMakers.push(() => makeCharacter(
  40910. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40911. {
  40912. front: {
  40913. height: math.unit(8 + 2/12, "feet"),
  40914. weight: math.unit(600, "lb"),
  40915. name: "Front",
  40916. image: {
  40917. source: "./media/characters/deam-nitrel/front.svg",
  40918. extra: 1308/1234,
  40919. bottom: 125/1433
  40920. }
  40921. },
  40922. },
  40923. [
  40924. {
  40925. name: "Normal",
  40926. height: math.unit(8 + 2/12, "feet"),
  40927. default: true
  40928. },
  40929. ]
  40930. ))
  40931. characterMakers.push(() => makeCharacter(
  40932. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40933. {
  40934. front: {
  40935. height: math.unit(6.1, "feet"),
  40936. weight: math.unit(180, "lb"),
  40937. name: "Front",
  40938. image: {
  40939. source: "./media/characters/skyress/front.svg",
  40940. extra: 1045/915,
  40941. bottom: 28/1073
  40942. }
  40943. },
  40944. maw: {
  40945. height: math.unit(1, "feet"),
  40946. name: "Maw",
  40947. image: {
  40948. source: "./media/characters/skyress/maw.svg"
  40949. }
  40950. },
  40951. },
  40952. [
  40953. {
  40954. name: "Normal",
  40955. height: math.unit(6.1, "feet"),
  40956. default: true
  40957. },
  40958. {
  40959. name: "Macro",
  40960. height: math.unit(200, "feet")
  40961. },
  40962. ]
  40963. ))
  40964. characterMakers.push(() => makeCharacter(
  40965. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40966. {
  40967. front: {
  40968. height: math.unit(4 + 2/12, "feet"),
  40969. weight: math.unit(40, "kg"),
  40970. name: "Front",
  40971. image: {
  40972. source: "./media/characters/amethyst-jones/front.svg",
  40973. extra: 1220/1150,
  40974. bottom: 101/1321
  40975. }
  40976. },
  40977. },
  40978. [
  40979. {
  40980. name: "Normal",
  40981. height: math.unit(4 + 2/12, "feet"),
  40982. default: true
  40983. },
  40984. ]
  40985. ))
  40986. characterMakers.push(() => makeCharacter(
  40987. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40988. {
  40989. front: {
  40990. height: math.unit(1.7, "m"),
  40991. weight: math.unit(135, "lb"),
  40992. name: "Front",
  40993. image: {
  40994. source: "./media/characters/jade/front.svg",
  40995. extra: 1818/1767,
  40996. bottom: 32/1850
  40997. }
  40998. },
  40999. back: {
  41000. height: math.unit(1.7, "m"),
  41001. weight: math.unit(135, "lb"),
  41002. name: "Back",
  41003. image: {
  41004. source: "./media/characters/jade/back.svg",
  41005. extra: 1869/1809,
  41006. bottom: 35/1904
  41007. }
  41008. },
  41009. hand: {
  41010. height: math.unit(0.24, "m"),
  41011. name: "Hand",
  41012. image: {
  41013. source: "./media/characters/jade/hand.svg"
  41014. }
  41015. },
  41016. foot: {
  41017. height: math.unit(0.263, "m"),
  41018. name: "Foot",
  41019. image: {
  41020. source: "./media/characters/jade/foot.svg"
  41021. }
  41022. },
  41023. dick: {
  41024. height: math.unit(0.47, "m"),
  41025. name: "Dick",
  41026. image: {
  41027. source: "./media/characters/jade/dick.svg"
  41028. }
  41029. },
  41030. },
  41031. [
  41032. {
  41033. name: "Micro",
  41034. height: math.unit(22, "cm")
  41035. },
  41036. {
  41037. name: "Normal",
  41038. height: math.unit(1.7, "m"),
  41039. default: true
  41040. },
  41041. {
  41042. name: "Macro",
  41043. height: math.unit(152, "m")
  41044. },
  41045. ]
  41046. ))
  41047. characterMakers.push(() => makeCharacter(
  41048. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41049. {
  41050. front: {
  41051. height: math.unit(100, "miles"),
  41052. weight: math.unit(20000, "tons"),
  41053. name: "Front",
  41054. image: {
  41055. source: "./media/characters/cookie/front.svg",
  41056. extra: 1125/1070,
  41057. bottom: 30/1155
  41058. }
  41059. },
  41060. },
  41061. [
  41062. {
  41063. name: "Big",
  41064. height: math.unit(50, "feet")
  41065. },
  41066. {
  41067. name: "Macro",
  41068. height: math.unit(100, "miles"),
  41069. default: true
  41070. },
  41071. {
  41072. name: "Megamacro",
  41073. height: math.unit(90000, "miles")
  41074. },
  41075. ]
  41076. ))
  41077. characterMakers.push(() => makeCharacter(
  41078. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41079. {
  41080. front: {
  41081. height: math.unit(6, "feet"),
  41082. weight: math.unit(145, "lb"),
  41083. name: "Front",
  41084. image: {
  41085. source: "./media/characters/farzian/front.svg",
  41086. extra: 1902/1693,
  41087. bottom: 108/2010
  41088. }
  41089. },
  41090. },
  41091. [
  41092. {
  41093. name: "Macro",
  41094. height: math.unit(500, "feet"),
  41095. default: true
  41096. },
  41097. ]
  41098. ))
  41099. characterMakers.push(() => makeCharacter(
  41100. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41101. {
  41102. front: {
  41103. height: math.unit(3 + 6/12, "feet"),
  41104. weight: math.unit(50, "lb"),
  41105. name: "Front",
  41106. image: {
  41107. source: "./media/characters/kimberly-tilson/front.svg",
  41108. extra: 1400/1322,
  41109. bottom: 36/1436
  41110. }
  41111. },
  41112. back: {
  41113. height: math.unit(3 + 6/12, "feet"),
  41114. weight: math.unit(50, "lb"),
  41115. name: "Back",
  41116. image: {
  41117. source: "./media/characters/kimberly-tilson/back.svg",
  41118. extra: 1370/1307,
  41119. bottom: 20/1390
  41120. }
  41121. },
  41122. },
  41123. [
  41124. {
  41125. name: "Normal",
  41126. height: math.unit(3 + 6/12, "feet"),
  41127. default: true
  41128. },
  41129. ]
  41130. ))
  41131. characterMakers.push(() => makeCharacter(
  41132. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41133. {
  41134. front: {
  41135. height: math.unit(1148, "feet"),
  41136. weight: math.unit(34057, "lb"),
  41137. name: "Front",
  41138. image: {
  41139. source: "./media/characters/harthos/front.svg",
  41140. extra: 1391/1339,
  41141. bottom: 13/1404
  41142. }
  41143. },
  41144. },
  41145. [
  41146. {
  41147. name: "Macro",
  41148. height: math.unit(1148, "feet"),
  41149. default: true
  41150. },
  41151. ]
  41152. ))
  41153. characterMakers.push(() => makeCharacter(
  41154. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41155. {
  41156. front: {
  41157. height: math.unit(15, "feet"),
  41158. name: "Front",
  41159. image: {
  41160. source: "./media/characters/hypatia/front.svg",
  41161. extra: 1653/1591,
  41162. bottom: 79/1732
  41163. }
  41164. },
  41165. },
  41166. [
  41167. {
  41168. name: "Normal",
  41169. height: math.unit(15, "feet")
  41170. },
  41171. {
  41172. name: "Small",
  41173. height: math.unit(300, "feet")
  41174. },
  41175. {
  41176. name: "Macro",
  41177. height: math.unit(2500, "feet"),
  41178. default: true
  41179. },
  41180. {
  41181. name: "Mega Macro",
  41182. height: math.unit(1500, "miles")
  41183. },
  41184. {
  41185. name: "Giga Macro",
  41186. height: math.unit(1.5e6, "miles")
  41187. },
  41188. ]
  41189. ))
  41190. characterMakers.push(() => makeCharacter(
  41191. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41192. {
  41193. front: {
  41194. height: math.unit(6, "feet"),
  41195. weight: math.unit(200, "lb"),
  41196. name: "Front",
  41197. image: {
  41198. source: "./media/characters/wulver/front.svg",
  41199. extra: 1724/1632,
  41200. bottom: 130/1854
  41201. }
  41202. },
  41203. frontNsfw: {
  41204. height: math.unit(6, "feet"),
  41205. weight: math.unit(200, "lb"),
  41206. name: "Front (NSFW)",
  41207. image: {
  41208. source: "./media/characters/wulver/front-nsfw.svg",
  41209. extra: 1724/1632,
  41210. bottom: 130/1854
  41211. }
  41212. },
  41213. },
  41214. [
  41215. {
  41216. name: "Human-Sized",
  41217. height: math.unit(6, "feet")
  41218. },
  41219. {
  41220. name: "Normal",
  41221. height: math.unit(4, "meters"),
  41222. default: true
  41223. },
  41224. {
  41225. name: "Large",
  41226. height: math.unit(6, "m")
  41227. },
  41228. ]
  41229. ))
  41230. characterMakers.push(() => makeCharacter(
  41231. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41232. {
  41233. front: {
  41234. height: math.unit(7, "feet"),
  41235. name: "Front",
  41236. image: {
  41237. source: "./media/characters/maru/front.svg",
  41238. extra: 1595/1570,
  41239. bottom: 0/1595
  41240. }
  41241. },
  41242. },
  41243. [
  41244. {
  41245. name: "Normal",
  41246. height: math.unit(7, "feet"),
  41247. default: true
  41248. },
  41249. {
  41250. name: "Macro",
  41251. height: math.unit(700, "feet")
  41252. },
  41253. {
  41254. name: "Mega Macro",
  41255. height: math.unit(25, "miles")
  41256. },
  41257. ]
  41258. ))
  41259. characterMakers.push(() => makeCharacter(
  41260. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41261. {
  41262. front: {
  41263. height: math.unit(6, "feet"),
  41264. weight: math.unit(170, "lb"),
  41265. name: "Front",
  41266. image: {
  41267. source: "./media/characters/xenon/front.svg",
  41268. extra: 1376/1305,
  41269. bottom: 56/1432
  41270. }
  41271. },
  41272. back: {
  41273. height: math.unit(6, "feet"),
  41274. weight: math.unit(170, "lb"),
  41275. name: "Back",
  41276. image: {
  41277. source: "./media/characters/xenon/back.svg",
  41278. extra: 1328/1259,
  41279. bottom: 95/1423
  41280. }
  41281. },
  41282. maw: {
  41283. height: math.unit(0.52, "feet"),
  41284. name: "Maw",
  41285. image: {
  41286. source: "./media/characters/xenon/maw.svg"
  41287. }
  41288. },
  41289. hand: {
  41290. height: math.unit(0.82, "feet"),
  41291. name: "Hand",
  41292. image: {
  41293. source: "./media/characters/xenon/hand.svg"
  41294. }
  41295. },
  41296. foot: {
  41297. height: math.unit(1.13, "feet"),
  41298. name: "Foot",
  41299. image: {
  41300. source: "./media/characters/xenon/foot.svg"
  41301. }
  41302. },
  41303. },
  41304. [
  41305. {
  41306. name: "Micro",
  41307. height: math.unit(0.8, "inches")
  41308. },
  41309. {
  41310. name: "Normal",
  41311. height: math.unit(6, "feet")
  41312. },
  41313. {
  41314. name: "Macro",
  41315. height: math.unit(50, "feet"),
  41316. default: true
  41317. },
  41318. {
  41319. name: "Macro+",
  41320. height: math.unit(250, "feet")
  41321. },
  41322. {
  41323. name: "Megamacro",
  41324. height: math.unit(1500, "feet")
  41325. },
  41326. ]
  41327. ))
  41328. characterMakers.push(() => makeCharacter(
  41329. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41330. {
  41331. front: {
  41332. height: math.unit(7 + 5/12, "feet"),
  41333. name: "Front",
  41334. image: {
  41335. source: "./media/characters/zane/front.svg",
  41336. extra: 1260/1203,
  41337. bottom: 94/1354
  41338. }
  41339. },
  41340. back: {
  41341. height: math.unit(5.05, "feet"),
  41342. name: "Back",
  41343. image: {
  41344. source: "./media/characters/zane/back.svg",
  41345. extra: 893/829,
  41346. bottom: 30/923
  41347. }
  41348. },
  41349. werewolf: {
  41350. height: math.unit(11, "feet"),
  41351. name: "Werewolf",
  41352. image: {
  41353. source: "./media/characters/zane/werewolf.svg",
  41354. extra: 1383/1323,
  41355. bottom: 89/1472
  41356. }
  41357. },
  41358. foot: {
  41359. height: math.unit(1.46, "feet"),
  41360. name: "Foot",
  41361. image: {
  41362. source: "./media/characters/zane/foot.svg"
  41363. }
  41364. },
  41365. footFront: {
  41366. height: math.unit(0.784, "feet"),
  41367. name: "Foot (Front)",
  41368. image: {
  41369. source: "./media/characters/zane/foot-front.svg"
  41370. }
  41371. },
  41372. dick: {
  41373. height: math.unit(1.95, "feet"),
  41374. name: "Dick",
  41375. image: {
  41376. source: "./media/characters/zane/dick.svg"
  41377. }
  41378. },
  41379. dickWerewolf: {
  41380. height: math.unit(3.77, "feet"),
  41381. name: "Dick (Werewolf)",
  41382. image: {
  41383. source: "./media/characters/zane/dick.svg"
  41384. }
  41385. },
  41386. },
  41387. [
  41388. {
  41389. name: "Normal",
  41390. height: math.unit(7 + 5/12, "feet"),
  41391. default: true
  41392. },
  41393. ]
  41394. ))
  41395. characterMakers.push(() => makeCharacter(
  41396. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41397. {
  41398. front: {
  41399. height: math.unit(6 + 2/12, "feet"),
  41400. weight: math.unit(284, "lb"),
  41401. name: "Front",
  41402. image: {
  41403. source: "./media/characters/benni-desparque/front.svg",
  41404. extra: 1353/1126,
  41405. bottom: 69/1422
  41406. }
  41407. },
  41408. },
  41409. [
  41410. {
  41411. name: "Civilian",
  41412. height: math.unit(6 + 2/12, "feet")
  41413. },
  41414. {
  41415. name: "Normal",
  41416. height: math.unit(98, "feet"),
  41417. default: true
  41418. },
  41419. {
  41420. name: "Kaiju Fighter",
  41421. height: math.unit(268, "feet")
  41422. },
  41423. ]
  41424. ))
  41425. characterMakers.push(() => makeCharacter(
  41426. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41427. {
  41428. front: {
  41429. height: math.unit(5, "feet"),
  41430. weight: math.unit(105, "lb"),
  41431. name: "Front",
  41432. image: {
  41433. source: "./media/characters/maxine/front.svg",
  41434. extra: 1386/1250,
  41435. bottom: 71/1457
  41436. }
  41437. },
  41438. },
  41439. [
  41440. {
  41441. name: "Normal",
  41442. height: math.unit(5, "feet"),
  41443. default: true
  41444. },
  41445. ]
  41446. ))
  41447. characterMakers.push(() => makeCharacter(
  41448. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41449. {
  41450. front: {
  41451. height: math.unit(11 + 7/12, "feet"),
  41452. weight: math.unit(9576, "lb"),
  41453. name: "Front",
  41454. image: {
  41455. source: "./media/characters/scaly/front.svg",
  41456. extra: 888/867,
  41457. bottom: 36/924
  41458. }
  41459. },
  41460. },
  41461. [
  41462. {
  41463. name: "Normal",
  41464. height: math.unit(11 + 7/12, "feet"),
  41465. default: true
  41466. },
  41467. ]
  41468. ))
  41469. characterMakers.push(() => makeCharacter(
  41470. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41471. {
  41472. front: {
  41473. height: math.unit(6 + 3/12, "feet"),
  41474. name: "Front",
  41475. image: {
  41476. source: "./media/characters/saelria/front.svg",
  41477. extra: 1243/1138,
  41478. bottom: 46/1289
  41479. }
  41480. },
  41481. },
  41482. [
  41483. {
  41484. name: "Micro",
  41485. height: math.unit(6, "inches"),
  41486. },
  41487. {
  41488. name: "Normal",
  41489. height: math.unit(6 + 3/12, "feet"),
  41490. default: true
  41491. },
  41492. {
  41493. name: "Macro",
  41494. height: math.unit(25, "feet")
  41495. },
  41496. ]
  41497. ))
  41498. characterMakers.push(() => makeCharacter(
  41499. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41500. {
  41501. front: {
  41502. height: math.unit(80, "meters"),
  41503. weight: math.unit(7000, "tonnes"),
  41504. name: "Front",
  41505. image: {
  41506. source: "./media/characters/tef/front.svg",
  41507. extra: 2036/1991,
  41508. bottom: 54/2090
  41509. }
  41510. },
  41511. back: {
  41512. height: math.unit(80, "meters"),
  41513. weight: math.unit(7000, "tonnes"),
  41514. name: "Back",
  41515. image: {
  41516. source: "./media/characters/tef/back.svg",
  41517. extra: 2036/1991,
  41518. bottom: 54/2090
  41519. }
  41520. },
  41521. },
  41522. [
  41523. {
  41524. name: "Macro",
  41525. height: math.unit(80, "meters"),
  41526. default: true
  41527. },
  41528. ]
  41529. ))
  41530. characterMakers.push(() => makeCharacter(
  41531. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41532. {
  41533. front: {
  41534. height: math.unit(13, "feet"),
  41535. weight: math.unit(6, "tons"),
  41536. name: "Front",
  41537. image: {
  41538. source: "./media/characters/rover/front.svg",
  41539. extra: 1233/1156,
  41540. bottom: 50/1283
  41541. }
  41542. },
  41543. back: {
  41544. height: math.unit(13, "feet"),
  41545. weight: math.unit(6, "tons"),
  41546. name: "Back",
  41547. image: {
  41548. source: "./media/characters/rover/back.svg",
  41549. extra: 1327/1258,
  41550. bottom: 39/1366
  41551. }
  41552. },
  41553. },
  41554. [
  41555. {
  41556. name: "Normal",
  41557. height: math.unit(13, "feet"),
  41558. default: true
  41559. },
  41560. {
  41561. name: "Macro",
  41562. height: math.unit(1300, "feet")
  41563. },
  41564. {
  41565. name: "Megamacro",
  41566. height: math.unit(1300, "miles")
  41567. },
  41568. {
  41569. name: "Gigamacro",
  41570. height: math.unit(1300000, "miles")
  41571. },
  41572. ]
  41573. ))
  41574. characterMakers.push(() => makeCharacter(
  41575. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41576. {
  41577. front: {
  41578. height: math.unit(6, "feet"),
  41579. weight: math.unit(150, "lb"),
  41580. name: "Front",
  41581. image: {
  41582. source: "./media/characters/ariz/front.svg",
  41583. extra: 1401/1346,
  41584. bottom: 5/1406
  41585. }
  41586. },
  41587. },
  41588. [
  41589. {
  41590. name: "Normal",
  41591. height: math.unit(10, "feet"),
  41592. default: true
  41593. },
  41594. ]
  41595. ))
  41596. characterMakers.push(() => makeCharacter(
  41597. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41598. {
  41599. front: {
  41600. height: math.unit(6, "feet"),
  41601. weight: math.unit(140, "lb"),
  41602. name: "Front",
  41603. image: {
  41604. source: "./media/characters/sigrun/front.svg",
  41605. extra: 1418/1359,
  41606. bottom: 27/1445
  41607. }
  41608. },
  41609. },
  41610. [
  41611. {
  41612. name: "Macro",
  41613. height: math.unit(35, "feet"),
  41614. default: true
  41615. },
  41616. ]
  41617. ))
  41618. characterMakers.push(() => makeCharacter(
  41619. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41620. {
  41621. front: {
  41622. height: math.unit(6, "feet"),
  41623. weight: math.unit(150, "lb"),
  41624. name: "Front",
  41625. image: {
  41626. source: "./media/characters/numin/front.svg",
  41627. extra: 1433/1388,
  41628. bottom: 12/1445
  41629. }
  41630. },
  41631. },
  41632. [
  41633. {
  41634. name: "Macro",
  41635. height: math.unit(21.5, "km"),
  41636. default: true
  41637. },
  41638. ]
  41639. ))
  41640. characterMakers.push(() => makeCharacter(
  41641. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41642. {
  41643. front: {
  41644. height: math.unit(6, "feet"),
  41645. weight: math.unit(463, "lb"),
  41646. name: "Front",
  41647. image: {
  41648. source: "./media/characters/melwa/front.svg",
  41649. extra: 1307/1248,
  41650. bottom: 93/1400
  41651. }
  41652. },
  41653. },
  41654. [
  41655. {
  41656. name: "Macro",
  41657. height: math.unit(50, "meters"),
  41658. default: true
  41659. },
  41660. ]
  41661. ))
  41662. characterMakers.push(() => makeCharacter(
  41663. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41664. {
  41665. front: {
  41666. height: math.unit(325, "feet"),
  41667. name: "Front",
  41668. image: {
  41669. source: "./media/characters/zorkaiju/front.svg",
  41670. extra: 1955/1814,
  41671. bottom: 40/1995
  41672. }
  41673. },
  41674. frontExtended: {
  41675. height: math.unit(325, "feet"),
  41676. name: "Front (Extended)",
  41677. image: {
  41678. source: "./media/characters/zorkaiju/front-extended.svg",
  41679. extra: 1955/1814,
  41680. bottom: 40/1995
  41681. }
  41682. },
  41683. side: {
  41684. height: math.unit(325, "feet"),
  41685. name: "Side",
  41686. image: {
  41687. source: "./media/characters/zorkaiju/side.svg",
  41688. extra: 1495/1396,
  41689. bottom: 17/1512
  41690. }
  41691. },
  41692. sideExtended: {
  41693. height: math.unit(325, "feet"),
  41694. name: "Side (Extended)",
  41695. image: {
  41696. source: "./media/characters/zorkaiju/side-extended.svg",
  41697. extra: 1495/1396,
  41698. bottom: 17/1512
  41699. }
  41700. },
  41701. back: {
  41702. height: math.unit(325, "feet"),
  41703. name: "Back",
  41704. image: {
  41705. source: "./media/characters/zorkaiju/back.svg",
  41706. extra: 1959/1821,
  41707. bottom: 31/1990
  41708. }
  41709. },
  41710. backExtended: {
  41711. height: math.unit(325, "feet"),
  41712. name: "Back (Extended)",
  41713. image: {
  41714. source: "./media/characters/zorkaiju/back-extended.svg",
  41715. extra: 1959/1821,
  41716. bottom: 31/1990
  41717. }
  41718. },
  41719. hand: {
  41720. height: math.unit(58.4, "feet"),
  41721. name: "Hand",
  41722. image: {
  41723. source: "./media/characters/zorkaiju/hand.svg"
  41724. }
  41725. },
  41726. handExtended: {
  41727. height: math.unit(61.4, "feet"),
  41728. name: "Hand (Extended)",
  41729. image: {
  41730. source: "./media/characters/zorkaiju/hand-extended.svg"
  41731. }
  41732. },
  41733. foot: {
  41734. height: math.unit(95, "feet"),
  41735. name: "Foot",
  41736. image: {
  41737. source: "./media/characters/zorkaiju/foot.svg"
  41738. }
  41739. },
  41740. leftArm: {
  41741. height: math.unit(59, "feet"),
  41742. name: "Left Arm",
  41743. image: {
  41744. source: "./media/characters/zorkaiju/left-arm.svg"
  41745. }
  41746. },
  41747. rightArm: {
  41748. height: math.unit(59, "feet"),
  41749. name: "Right Arm",
  41750. image: {
  41751. source: "./media/characters/zorkaiju/right-arm.svg"
  41752. }
  41753. },
  41754. leftArmExtended: {
  41755. height: math.unit(59 * 1.033546, "feet"),
  41756. name: "Left Arm (Extended)",
  41757. image: {
  41758. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41759. }
  41760. },
  41761. rightArmExtended: {
  41762. height: math.unit(59 * 1.0496, "feet"),
  41763. name: "Right Arm (Extended)",
  41764. image: {
  41765. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41766. }
  41767. },
  41768. tail: {
  41769. height: math.unit(104, "feet"),
  41770. name: "Tail",
  41771. image: {
  41772. source: "./media/characters/zorkaiju/tail.svg"
  41773. }
  41774. },
  41775. tailExtended: {
  41776. height: math.unit(104, "feet"),
  41777. name: "Tail (Extended)",
  41778. image: {
  41779. source: "./media/characters/zorkaiju/tail-extended.svg"
  41780. }
  41781. },
  41782. tailBottom: {
  41783. height: math.unit(104, "feet"),
  41784. name: "Tail Bottom",
  41785. image: {
  41786. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41787. }
  41788. },
  41789. crystal: {
  41790. height: math.unit(27.54, "feet"),
  41791. name: "Crystal",
  41792. image: {
  41793. source: "./media/characters/zorkaiju/crystal.svg"
  41794. }
  41795. },
  41796. },
  41797. [
  41798. {
  41799. name: "Kaiju",
  41800. height: math.unit(325, "feet"),
  41801. default: true
  41802. },
  41803. ]
  41804. ))
  41805. characterMakers.push(() => makeCharacter(
  41806. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41807. {
  41808. front: {
  41809. height: math.unit(6 + 1/12, "feet"),
  41810. weight: math.unit(115, "lb"),
  41811. name: "Front",
  41812. image: {
  41813. source: "./media/characters/bailey-belfry/front.svg",
  41814. extra: 1240/1121,
  41815. bottom: 101/1341
  41816. }
  41817. },
  41818. },
  41819. [
  41820. {
  41821. name: "Normal",
  41822. height: math.unit(6 + 1/12, "feet"),
  41823. default: true
  41824. },
  41825. ]
  41826. ))
  41827. characterMakers.push(() => makeCharacter(
  41828. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41829. {
  41830. side: {
  41831. height: math.unit(4, "meters"),
  41832. weight: math.unit(250, "kg"),
  41833. name: "Side",
  41834. image: {
  41835. source: "./media/characters/blacky/side.svg",
  41836. extra: 1027/919,
  41837. bottom: 43/1070
  41838. }
  41839. },
  41840. maw: {
  41841. height: math.unit(1, "meters"),
  41842. name: "Maw",
  41843. image: {
  41844. source: "./media/characters/blacky/maw.svg"
  41845. }
  41846. },
  41847. paw: {
  41848. height: math.unit(1, "meters"),
  41849. name: "Paw",
  41850. image: {
  41851. source: "./media/characters/blacky/paw.svg"
  41852. }
  41853. },
  41854. },
  41855. [
  41856. {
  41857. name: "Normal",
  41858. height: math.unit(4, "meters"),
  41859. default: true
  41860. },
  41861. ]
  41862. ))
  41863. characterMakers.push(() => makeCharacter(
  41864. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41865. {
  41866. front: {
  41867. height: math.unit(170, "cm"),
  41868. weight: math.unit(66, "kg"),
  41869. name: "Front",
  41870. image: {
  41871. source: "./media/characters/thux-ei/front.svg",
  41872. extra: 1109/1011,
  41873. bottom: 8/1117
  41874. }
  41875. },
  41876. },
  41877. [
  41878. {
  41879. name: "Normal",
  41880. height: math.unit(170, "cm"),
  41881. default: true
  41882. },
  41883. ]
  41884. ))
  41885. characterMakers.push(() => makeCharacter(
  41886. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41887. {
  41888. front: {
  41889. height: math.unit(5, "feet"),
  41890. weight: math.unit(120, "lb"),
  41891. name: "Front",
  41892. image: {
  41893. source: "./media/characters/roxanne-voltaire/front.svg",
  41894. extra: 1901/1779,
  41895. bottom: 53/1954
  41896. }
  41897. },
  41898. },
  41899. [
  41900. {
  41901. name: "Normal",
  41902. height: math.unit(5, "feet"),
  41903. default: true
  41904. },
  41905. {
  41906. name: "Giant",
  41907. height: math.unit(50, "feet")
  41908. },
  41909. {
  41910. name: "Titan",
  41911. height: math.unit(500, "feet")
  41912. },
  41913. {
  41914. name: "Macro",
  41915. height: math.unit(5000, "feet")
  41916. },
  41917. {
  41918. name: "Megamacro",
  41919. height: math.unit(50000, "feet")
  41920. },
  41921. {
  41922. name: "Gigamacro",
  41923. height: math.unit(500000, "feet")
  41924. },
  41925. {
  41926. name: "Teramacro",
  41927. height: math.unit(5e6, "feet")
  41928. },
  41929. ]
  41930. ))
  41931. characterMakers.push(() => makeCharacter(
  41932. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41933. {
  41934. front: {
  41935. height: math.unit(6 + 2/12, "feet"),
  41936. name: "Front",
  41937. image: {
  41938. source: "./media/characters/squeaks/front.svg",
  41939. extra: 1823/1768,
  41940. bottom: 138/1961
  41941. }
  41942. },
  41943. },
  41944. [
  41945. {
  41946. name: "Micro",
  41947. height: math.unit(0.5, "inches")
  41948. },
  41949. {
  41950. name: "Normal",
  41951. height: math.unit(6 + 2/12, "feet"),
  41952. default: true
  41953. },
  41954. {
  41955. name: "Macro",
  41956. height: math.unit(600, "feet")
  41957. },
  41958. ]
  41959. ))
  41960. characterMakers.push(() => makeCharacter(
  41961. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41962. {
  41963. front: {
  41964. height: math.unit(1.72, "meters"),
  41965. name: "Front",
  41966. image: {
  41967. source: "./media/characters/archinger/front.svg",
  41968. extra: 1861/1675,
  41969. bottom: 125/1986
  41970. }
  41971. },
  41972. back: {
  41973. height: math.unit(1.72, "meters"),
  41974. name: "Back",
  41975. image: {
  41976. source: "./media/characters/archinger/back.svg",
  41977. extra: 1844/1701,
  41978. bottom: 104/1948
  41979. }
  41980. },
  41981. cock: {
  41982. height: math.unit(0.59, "feet"),
  41983. name: "Cock",
  41984. image: {
  41985. source: "./media/characters/archinger/cock.svg"
  41986. }
  41987. },
  41988. },
  41989. [
  41990. {
  41991. name: "Normal",
  41992. height: math.unit(1.72, "meters"),
  41993. default: true
  41994. },
  41995. {
  41996. name: "Macro",
  41997. height: math.unit(84, "meters")
  41998. },
  41999. {
  42000. name: "Macro+",
  42001. height: math.unit(112, "meters")
  42002. },
  42003. {
  42004. name: "Macro++",
  42005. height: math.unit(960, "meters")
  42006. },
  42007. {
  42008. name: "Macro+++",
  42009. height: math.unit(4, "km")
  42010. },
  42011. {
  42012. name: "Macro++++",
  42013. height: math.unit(48, "km")
  42014. },
  42015. {
  42016. name: "Macro+++++",
  42017. height: math.unit(4500, "km")
  42018. },
  42019. ]
  42020. ))
  42021. characterMakers.push(() => makeCharacter(
  42022. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42023. {
  42024. front: {
  42025. height: math.unit(5 + 5/12, "feet"),
  42026. name: "Front",
  42027. image: {
  42028. source: "./media/characters/alsnapz/front.svg",
  42029. extra: 1157/1065,
  42030. bottom: 42/1199
  42031. }
  42032. },
  42033. },
  42034. [
  42035. {
  42036. name: "Normal",
  42037. height: math.unit(5 + 5/12, "feet"),
  42038. default: true
  42039. },
  42040. ]
  42041. ))
  42042. characterMakers.push(() => makeCharacter(
  42043. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42044. {
  42045. side: {
  42046. height: math.unit(3.2, "earths"),
  42047. name: "Side",
  42048. image: {
  42049. source: "./media/characters/mag/side.svg",
  42050. extra: 1331/1008,
  42051. bottom: 52/1383
  42052. }
  42053. },
  42054. wing: {
  42055. height: math.unit(1.94, "earths"),
  42056. name: "Wing",
  42057. image: {
  42058. source: "./media/characters/mag/wing.svg"
  42059. }
  42060. },
  42061. dick: {
  42062. height: math.unit(1.8, "earths"),
  42063. name: "Dick",
  42064. image: {
  42065. source: "./media/characters/mag/dick.svg"
  42066. }
  42067. },
  42068. ass: {
  42069. height: math.unit(1.33, "earths"),
  42070. name: "Ass",
  42071. image: {
  42072. source: "./media/characters/mag/ass.svg"
  42073. }
  42074. },
  42075. head: {
  42076. height: math.unit(1.1, "earths"),
  42077. name: "Head",
  42078. image: {
  42079. source: "./media/characters/mag/head.svg"
  42080. }
  42081. },
  42082. maw: {
  42083. height: math.unit(1.62, "earths"),
  42084. name: "Maw",
  42085. image: {
  42086. source: "./media/characters/mag/maw.svg"
  42087. }
  42088. },
  42089. },
  42090. [
  42091. {
  42092. name: "Small",
  42093. height: math.unit(162, "feet")
  42094. },
  42095. {
  42096. name: "Normal",
  42097. height: math.unit(3.2, "earths"),
  42098. default: true
  42099. },
  42100. ]
  42101. ))
  42102. characterMakers.push(() => makeCharacter(
  42103. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42104. {
  42105. front: {
  42106. height: math.unit(512, "feet"),
  42107. weight: math.unit(63509, "tonnes"),
  42108. name: "Front",
  42109. image: {
  42110. source: "./media/characters/vorrel-harroc/front.svg",
  42111. extra: 1075/1063,
  42112. bottom: 62/1137
  42113. }
  42114. },
  42115. },
  42116. [
  42117. {
  42118. name: "Normal",
  42119. height: math.unit(10, "feet")
  42120. },
  42121. {
  42122. name: "Macro",
  42123. height: math.unit(512, "feet"),
  42124. default: true
  42125. },
  42126. {
  42127. name: "Megamacro",
  42128. height: math.unit(256, "miles")
  42129. },
  42130. {
  42131. name: "Gigamacro",
  42132. height: math.unit(4096, "miles")
  42133. },
  42134. ]
  42135. ))
  42136. characterMakers.push(() => makeCharacter(
  42137. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42138. {
  42139. side: {
  42140. height: math.unit(50, "feet"),
  42141. name: "Side",
  42142. image: {
  42143. source: "./media/characters/froimar/side.svg",
  42144. extra: 855/638,
  42145. bottom: 99/954
  42146. }
  42147. },
  42148. },
  42149. [
  42150. {
  42151. name: "Macro",
  42152. height: math.unit(50, "feet"),
  42153. default: true
  42154. },
  42155. ]
  42156. ))
  42157. characterMakers.push(() => makeCharacter(
  42158. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42159. {
  42160. front: {
  42161. height: math.unit(210, "miles"),
  42162. name: "Front",
  42163. image: {
  42164. source: "./media/characters/timothy/front.svg",
  42165. extra: 1007/943,
  42166. bottom: 62/1069
  42167. }
  42168. },
  42169. frontSkirt: {
  42170. height: math.unit(210, "miles"),
  42171. name: "Front (Skirt)",
  42172. image: {
  42173. source: "./media/characters/timothy/front-skirt.svg",
  42174. extra: 1007/943,
  42175. bottom: 62/1069
  42176. }
  42177. },
  42178. frontCoat: {
  42179. height: math.unit(210, "miles"),
  42180. name: "Front (Coat)",
  42181. image: {
  42182. source: "./media/characters/timothy/front-coat.svg",
  42183. extra: 1007/943,
  42184. bottom: 62/1069
  42185. }
  42186. },
  42187. },
  42188. [
  42189. {
  42190. name: "Macro",
  42191. height: math.unit(210, "miles"),
  42192. default: true
  42193. },
  42194. {
  42195. name: "Megamacro",
  42196. height: math.unit(210000, "miles")
  42197. },
  42198. ]
  42199. ))
  42200. characterMakers.push(() => makeCharacter(
  42201. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42202. {
  42203. front: {
  42204. height: math.unit(188, "feet"),
  42205. name: "Front",
  42206. image: {
  42207. source: "./media/characters/pyotr/front.svg",
  42208. extra: 1912/1826,
  42209. bottom: 18/1930
  42210. }
  42211. },
  42212. },
  42213. [
  42214. {
  42215. name: "Macro",
  42216. height: math.unit(188, "feet"),
  42217. default: true
  42218. },
  42219. {
  42220. name: "Megamacro",
  42221. height: math.unit(8, "miles")
  42222. },
  42223. ]
  42224. ))
  42225. characterMakers.push(() => makeCharacter(
  42226. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42227. {
  42228. side: {
  42229. height: math.unit(10, "feet"),
  42230. weight: math.unit(4500, "lb"),
  42231. name: "Side",
  42232. image: {
  42233. source: "./media/characters/ackart/side.svg",
  42234. extra: 1776/1668,
  42235. bottom: 116/1892
  42236. }
  42237. },
  42238. },
  42239. [
  42240. {
  42241. name: "Normal",
  42242. height: math.unit(10, "feet"),
  42243. default: true
  42244. },
  42245. ]
  42246. ))
  42247. characterMakers.push(() => makeCharacter(
  42248. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42249. {
  42250. side: {
  42251. height: math.unit(21, "feet"),
  42252. name: "Side",
  42253. image: {
  42254. source: "./media/characters/nolow/side.svg",
  42255. extra: 1484/1434,
  42256. bottom: 85/1569
  42257. }
  42258. },
  42259. sideErect: {
  42260. height: math.unit(21, "feet"),
  42261. name: "Side-erect",
  42262. image: {
  42263. source: "./media/characters/nolow/side-erect.svg",
  42264. extra: 1484/1434,
  42265. bottom: 85/1569
  42266. }
  42267. },
  42268. },
  42269. [
  42270. {
  42271. name: "Regular",
  42272. height: math.unit(12, "feet")
  42273. },
  42274. {
  42275. name: "Big Chee",
  42276. height: math.unit(21, "feet"),
  42277. default: true
  42278. },
  42279. ]
  42280. ))
  42281. characterMakers.push(() => makeCharacter(
  42282. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42283. {
  42284. front: {
  42285. height: math.unit(7, "feet"),
  42286. weight: math.unit(250, "lb"),
  42287. name: "Front",
  42288. image: {
  42289. source: "./media/characters/nines/front.svg",
  42290. extra: 1741/1607,
  42291. bottom: 41/1782
  42292. }
  42293. },
  42294. side: {
  42295. height: math.unit(7, "feet"),
  42296. weight: math.unit(250, "lb"),
  42297. name: "Side",
  42298. image: {
  42299. source: "./media/characters/nines/side.svg",
  42300. extra: 1854/1735,
  42301. bottom: 93/1947
  42302. }
  42303. },
  42304. back: {
  42305. height: math.unit(7, "feet"),
  42306. weight: math.unit(250, "lb"),
  42307. name: "Back",
  42308. image: {
  42309. source: "./media/characters/nines/back.svg",
  42310. extra: 1748/1615,
  42311. bottom: 20/1768
  42312. }
  42313. },
  42314. },
  42315. [
  42316. {
  42317. name: "Megamacro",
  42318. height: math.unit(99, "km"),
  42319. default: true
  42320. },
  42321. ]
  42322. ))
  42323. characterMakers.push(() => makeCharacter(
  42324. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42325. {
  42326. front: {
  42327. height: math.unit(5 + 10/12, "feet"),
  42328. weight: math.unit(210, "lb"),
  42329. name: "Front",
  42330. image: {
  42331. source: "./media/characters/zenith/front.svg",
  42332. extra: 1531/1452,
  42333. bottom: 198/1729
  42334. }
  42335. },
  42336. back: {
  42337. height: math.unit(5 + 10/12, "feet"),
  42338. weight: math.unit(210, "lb"),
  42339. name: "Back",
  42340. image: {
  42341. source: "./media/characters/zenith/back.svg",
  42342. extra: 1571/1487,
  42343. bottom: 75/1646
  42344. }
  42345. },
  42346. },
  42347. [
  42348. {
  42349. name: "Normal",
  42350. height: math.unit(5 + 10/12, "feet"),
  42351. default: true
  42352. }
  42353. ]
  42354. ))
  42355. characterMakers.push(() => makeCharacter(
  42356. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42357. {
  42358. front: {
  42359. height: math.unit(4, "feet"),
  42360. weight: math.unit(60, "lb"),
  42361. name: "Front",
  42362. image: {
  42363. source: "./media/characters/jasper/front.svg",
  42364. extra: 1450/1379,
  42365. bottom: 19/1469
  42366. }
  42367. },
  42368. },
  42369. [
  42370. {
  42371. name: "Normal",
  42372. height: math.unit(4, "feet"),
  42373. default: true
  42374. },
  42375. ]
  42376. ))
  42377. characterMakers.push(() => makeCharacter(
  42378. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42379. {
  42380. front: {
  42381. height: math.unit(6 + 5/12, "feet"),
  42382. weight: math.unit(290, "lb"),
  42383. name: "Front",
  42384. image: {
  42385. source: "./media/characters/tiberius-thyben/front.svg",
  42386. extra: 757/739,
  42387. bottom: 39/796
  42388. }
  42389. },
  42390. },
  42391. [
  42392. {
  42393. name: "Micro",
  42394. height: math.unit(1.5, "inches")
  42395. },
  42396. {
  42397. name: "Normal",
  42398. height: math.unit(6 + 5/12, "feet"),
  42399. default: true
  42400. },
  42401. {
  42402. name: "Macro",
  42403. height: math.unit(300, "feet")
  42404. },
  42405. ]
  42406. ))
  42407. characterMakers.push(() => makeCharacter(
  42408. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42409. {
  42410. front: {
  42411. height: math.unit(5 + 6/12, "feet"),
  42412. weight: math.unit(60, "kg"),
  42413. name: "Front",
  42414. image: {
  42415. source: "./media/characters/sabre/front.svg",
  42416. extra: 738/671,
  42417. bottom: 27/765
  42418. }
  42419. },
  42420. },
  42421. [
  42422. {
  42423. name: "Teeny",
  42424. height: math.unit(2, "inches")
  42425. },
  42426. {
  42427. name: "Smol",
  42428. height: math.unit(8, "inches")
  42429. },
  42430. {
  42431. name: "Normal",
  42432. height: math.unit(5 + 6/12, "feet"),
  42433. default: true
  42434. },
  42435. {
  42436. name: "Mini-Macro",
  42437. height: math.unit(15, "feet")
  42438. },
  42439. {
  42440. name: "Macro",
  42441. height: math.unit(50, "feet")
  42442. },
  42443. ]
  42444. ))
  42445. characterMakers.push(() => makeCharacter(
  42446. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42447. {
  42448. front: {
  42449. height: math.unit(6 + 4/12, "feet"),
  42450. weight: math.unit(170, "lb"),
  42451. name: "Front",
  42452. image: {
  42453. source: "./media/characters/charlie/front.svg",
  42454. extra: 1348/1228,
  42455. bottom: 15/1363
  42456. }
  42457. },
  42458. },
  42459. [
  42460. {
  42461. name: "Macro",
  42462. height: math.unit(1700, "meters"),
  42463. default: true
  42464. },
  42465. {
  42466. name: "MegaMacro",
  42467. height: math.unit(20400, "meters")
  42468. },
  42469. ]
  42470. ))
  42471. characterMakers.push(() => makeCharacter(
  42472. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42473. {
  42474. front: {
  42475. height: math.unit(6 + 3/12, "feet"),
  42476. weight: math.unit(185, "lb"),
  42477. name: "Front",
  42478. image: {
  42479. source: "./media/characters/susan-grant/front.svg",
  42480. extra: 1351/1327,
  42481. bottom: 26/1377
  42482. }
  42483. },
  42484. },
  42485. [
  42486. {
  42487. name: "Normal",
  42488. height: math.unit(6 + 3/12, "feet"),
  42489. default: true
  42490. },
  42491. {
  42492. name: "Macro",
  42493. height: math.unit(225, "feet")
  42494. },
  42495. {
  42496. name: "Macro+",
  42497. height: math.unit(900, "feet")
  42498. },
  42499. {
  42500. name: "MegaMacro",
  42501. height: math.unit(14400, "feet")
  42502. },
  42503. ]
  42504. ))
  42505. characterMakers.push(() => makeCharacter(
  42506. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42507. {
  42508. front: {
  42509. height: math.unit(5 + 4/12, "feet"),
  42510. weight: math.unit(110, "lb"),
  42511. name: "Front",
  42512. image: {
  42513. source: "./media/characters/axel-isanov/front.svg",
  42514. extra: 1096/1065,
  42515. bottom: 13/1109
  42516. }
  42517. },
  42518. },
  42519. [
  42520. {
  42521. name: "Normal",
  42522. height: math.unit(5 + 4/12, "feet"),
  42523. default: true
  42524. },
  42525. ]
  42526. ))
  42527. characterMakers.push(() => makeCharacter(
  42528. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42529. {
  42530. front: {
  42531. height: math.unit(9, "feet"),
  42532. weight: math.unit(467, "lb"),
  42533. name: "Front",
  42534. image: {
  42535. source: "./media/characters/necahual/front.svg",
  42536. extra: 920/873,
  42537. bottom: 26/946
  42538. }
  42539. },
  42540. back: {
  42541. height: math.unit(9, "feet"),
  42542. weight: math.unit(467, "lb"),
  42543. name: "Back",
  42544. image: {
  42545. source: "./media/characters/necahual/back.svg",
  42546. extra: 930/884,
  42547. bottom: 16/946
  42548. }
  42549. },
  42550. frontUnderwear: {
  42551. height: math.unit(9, "feet"),
  42552. weight: math.unit(467, "lb"),
  42553. name: "Front (Underwear)",
  42554. image: {
  42555. source: "./media/characters/necahual/front-underwear.svg",
  42556. extra: 920/873,
  42557. bottom: 26/946
  42558. }
  42559. },
  42560. frontDressed: {
  42561. height: math.unit(9, "feet"),
  42562. weight: math.unit(467, "lb"),
  42563. name: "Front (Dressed)",
  42564. image: {
  42565. source: "./media/characters/necahual/front-dressed.svg",
  42566. extra: 920/873,
  42567. bottom: 26/946
  42568. }
  42569. },
  42570. },
  42571. [
  42572. {
  42573. name: "Comprsesed",
  42574. height: math.unit(9, "feet")
  42575. },
  42576. {
  42577. name: "Natural",
  42578. height: math.unit(15, "feet"),
  42579. default: true
  42580. },
  42581. {
  42582. name: "Boosted",
  42583. height: math.unit(50, "feet")
  42584. },
  42585. {
  42586. name: "Boosted+",
  42587. height: math.unit(150, "feet")
  42588. },
  42589. {
  42590. name: "Max",
  42591. height: math.unit(500, "feet")
  42592. },
  42593. ]
  42594. ))
  42595. characterMakers.push(() => makeCharacter(
  42596. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42597. {
  42598. front: {
  42599. height: math.unit(22 + 1/12, "feet"),
  42600. weight: math.unit(3200, "lb"),
  42601. name: "Front",
  42602. image: {
  42603. source: "./media/characters/theo-acacia/front.svg",
  42604. extra: 1796/1741,
  42605. bottom: 83/1879
  42606. }
  42607. },
  42608. frontUnderwear: {
  42609. height: math.unit(22 + 1/12, "feet"),
  42610. weight: math.unit(3200, "lb"),
  42611. name: "Front (Underwear)",
  42612. image: {
  42613. source: "./media/characters/theo-acacia/front-underwear.svg",
  42614. extra: 1796/1741,
  42615. bottom: 83/1879
  42616. }
  42617. },
  42618. frontNude: {
  42619. height: math.unit(22 + 1/12, "feet"),
  42620. weight: math.unit(3200, "lb"),
  42621. name: "Front (Nude)",
  42622. image: {
  42623. source: "./media/characters/theo-acacia/front-nude.svg",
  42624. extra: 1796/1741,
  42625. bottom: 83/1879
  42626. }
  42627. },
  42628. },
  42629. [
  42630. {
  42631. name: "Normal",
  42632. height: math.unit(22 + 1/12, "feet"),
  42633. default: true
  42634. },
  42635. ]
  42636. ))
  42637. characterMakers.push(() => makeCharacter(
  42638. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42639. {
  42640. front: {
  42641. height: math.unit(20, "feet"),
  42642. name: "Front",
  42643. image: {
  42644. source: "./media/characters/astra/front.svg",
  42645. extra: 1850/1714,
  42646. bottom: 106/1956
  42647. }
  42648. },
  42649. frontUndressed: {
  42650. height: math.unit(20, "feet"),
  42651. name: "Front (Undressed)",
  42652. image: {
  42653. source: "./media/characters/astra/front-undressed.svg",
  42654. extra: 1926/1749,
  42655. bottom: 0/1926
  42656. }
  42657. },
  42658. hand: {
  42659. height: math.unit(1.53, "feet"),
  42660. name: "Hand",
  42661. image: {
  42662. source: "./media/characters/astra/hand.svg"
  42663. }
  42664. },
  42665. paw: {
  42666. height: math.unit(1.53, "feet"),
  42667. name: "Paw",
  42668. image: {
  42669. source: "./media/characters/astra/paw.svg"
  42670. }
  42671. },
  42672. },
  42673. [
  42674. {
  42675. name: "Smallest",
  42676. height: math.unit(20, "feet")
  42677. },
  42678. {
  42679. name: "Normal",
  42680. height: math.unit(1e9, "miles"),
  42681. default: true
  42682. },
  42683. {
  42684. name: "Larger",
  42685. height: math.unit(5, "multiverses")
  42686. },
  42687. {
  42688. name: "Largest",
  42689. height: math.unit(1e9, "multiverses")
  42690. },
  42691. ]
  42692. ))
  42693. characterMakers.push(() => makeCharacter(
  42694. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42695. {
  42696. front: {
  42697. height: math.unit(8, "feet"),
  42698. name: "Front",
  42699. image: {
  42700. source: "./media/characters/breanna/front.svg",
  42701. extra: 1912/1632,
  42702. bottom: 33/1945
  42703. }
  42704. },
  42705. },
  42706. [
  42707. {
  42708. name: "Smallest",
  42709. height: math.unit(8, "feet")
  42710. },
  42711. {
  42712. name: "Normal",
  42713. height: math.unit(1, "mile"),
  42714. default: true
  42715. },
  42716. {
  42717. name: "Maximum",
  42718. height: math.unit(1500000000000, "lightyears")
  42719. },
  42720. ]
  42721. ))
  42722. characterMakers.push(() => makeCharacter(
  42723. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42724. {
  42725. front: {
  42726. height: math.unit(5 + 11/12, "feet"),
  42727. weight: math.unit(155, "lb"),
  42728. name: "Front",
  42729. image: {
  42730. source: "./media/characters/cai/front.svg",
  42731. extra: 1823/1702,
  42732. bottom: 32/1855
  42733. }
  42734. },
  42735. back: {
  42736. height: math.unit(5 + 11/12, "feet"),
  42737. weight: math.unit(155, "lb"),
  42738. name: "Back",
  42739. image: {
  42740. source: "./media/characters/cai/back.svg",
  42741. extra: 1809/1708,
  42742. bottom: 31/1840
  42743. }
  42744. },
  42745. },
  42746. [
  42747. {
  42748. name: "Normal",
  42749. height: math.unit(5 + 11/12, "feet"),
  42750. default: true
  42751. },
  42752. {
  42753. name: "Big",
  42754. height: math.unit(15, "feet")
  42755. },
  42756. {
  42757. name: "Macro",
  42758. height: math.unit(200, "feet")
  42759. },
  42760. ]
  42761. ))
  42762. characterMakers.push(() => makeCharacter(
  42763. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42764. {
  42765. front: {
  42766. height: math.unit(5 + 6/12, "feet"),
  42767. weight: math.unit(160, "lb"),
  42768. name: "Front",
  42769. image: {
  42770. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42771. extra: 1227/1174,
  42772. bottom: 37/1264
  42773. }
  42774. },
  42775. },
  42776. [
  42777. {
  42778. name: "Macro",
  42779. height: math.unit(444, "meters"),
  42780. default: true
  42781. },
  42782. ]
  42783. ))
  42784. characterMakers.push(() => makeCharacter(
  42785. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42786. {
  42787. front: {
  42788. height: math.unit(18 + 7/12, "feet"),
  42789. name: "Front",
  42790. image: {
  42791. source: "./media/characters/rex/front.svg",
  42792. extra: 1941/1807,
  42793. bottom: 66/2007
  42794. }
  42795. },
  42796. back: {
  42797. height: math.unit(18 + 7/12, "feet"),
  42798. name: "Back",
  42799. image: {
  42800. source: "./media/characters/rex/back.svg",
  42801. extra: 1937/1822,
  42802. bottom: 42/1979
  42803. }
  42804. },
  42805. boot: {
  42806. height: math.unit(3.45, "feet"),
  42807. name: "Boot",
  42808. image: {
  42809. source: "./media/characters/rex/boot.svg"
  42810. }
  42811. },
  42812. paw: {
  42813. height: math.unit(4.17, "feet"),
  42814. name: "Paw",
  42815. image: {
  42816. source: "./media/characters/rex/paw.svg"
  42817. }
  42818. },
  42819. head: {
  42820. height: math.unit(6.728, "feet"),
  42821. name: "Head",
  42822. image: {
  42823. source: "./media/characters/rex/head.svg"
  42824. }
  42825. },
  42826. },
  42827. [
  42828. {
  42829. name: "Nano",
  42830. height: math.unit(18 + 7/12, "feet")
  42831. },
  42832. {
  42833. name: "Micro",
  42834. height: math.unit(1.5, "megameters")
  42835. },
  42836. {
  42837. name: "Normal",
  42838. height: math.unit(440, "megameters"),
  42839. default: true
  42840. },
  42841. {
  42842. name: "Macro",
  42843. height: math.unit(2.5, "gigameters")
  42844. },
  42845. {
  42846. name: "Gigamacro",
  42847. height: math.unit(2, "galaxies")
  42848. },
  42849. ]
  42850. ))
  42851. characterMakers.push(() => makeCharacter(
  42852. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42853. {
  42854. side: {
  42855. height: math.unit(32, "feet"),
  42856. weight: math.unit(250000, "lb"),
  42857. name: "Side",
  42858. image: {
  42859. source: "./media/characters/silverwing/side.svg",
  42860. extra: 1100/1019,
  42861. bottom: 204/1304
  42862. }
  42863. },
  42864. },
  42865. [
  42866. {
  42867. name: "Normal",
  42868. height: math.unit(32, "feet"),
  42869. default: true
  42870. },
  42871. ]
  42872. ))
  42873. characterMakers.push(() => makeCharacter(
  42874. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42875. {
  42876. front: {
  42877. height: math.unit(6 + 6/12, "feet"),
  42878. weight: math.unit(350, "lb"),
  42879. name: "Front",
  42880. image: {
  42881. source: "./media/characters/tristan-hawthorne/front.svg",
  42882. extra: 1159/1124,
  42883. bottom: 37/1196
  42884. },
  42885. form: "labrador",
  42886. default: true
  42887. },
  42888. skunkFront: {
  42889. height: math.unit(4 + 6/12, "feet"),
  42890. weight: math.unit(120, "lb"),
  42891. name: "Front",
  42892. image: {
  42893. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42894. extra: 1609/1551,
  42895. bottom: 169/1778
  42896. },
  42897. form: "skunk",
  42898. default: true
  42899. },
  42900. },
  42901. [
  42902. {
  42903. name: "Normal",
  42904. height: math.unit(6 + 6/12, "feet"),
  42905. form: "labrador",
  42906. default: true
  42907. },
  42908. {
  42909. name: "Normal",
  42910. height: math.unit(4 + 6/12, "feet"),
  42911. form: "skunk",
  42912. default: true
  42913. },
  42914. ],
  42915. {
  42916. "labrador": {
  42917. name: "Labrador",
  42918. default: true
  42919. },
  42920. "skunk": {
  42921. name: "Skunk"
  42922. }
  42923. }
  42924. ))
  42925. characterMakers.push(() => makeCharacter(
  42926. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42927. {
  42928. front: {
  42929. height: math.unit(5 + 11/12, "feet"),
  42930. weight: math.unit(190, "lb"),
  42931. name: "Front",
  42932. image: {
  42933. source: "./media/characters/mizu/front.svg",
  42934. extra: 1988/1788,
  42935. bottom: 14/2002
  42936. }
  42937. },
  42938. },
  42939. [
  42940. {
  42941. name: "Normal",
  42942. height: math.unit(5 + 11/12, "feet"),
  42943. default: true
  42944. },
  42945. ]
  42946. ))
  42947. characterMakers.push(() => makeCharacter(
  42948. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42949. {
  42950. front: {
  42951. height: math.unit(1.7, "feet"),
  42952. weight: math.unit(50, "lb"),
  42953. name: "Front",
  42954. image: {
  42955. source: "./media/characters/dechroma/front.svg",
  42956. extra: 1095/859,
  42957. bottom: 64/1159
  42958. }
  42959. },
  42960. },
  42961. [
  42962. {
  42963. name: "Normal",
  42964. height: math.unit(1.7, "feet"),
  42965. default: true
  42966. },
  42967. ]
  42968. ))
  42969. characterMakers.push(() => makeCharacter(
  42970. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42971. {
  42972. side: {
  42973. height: math.unit(30, "feet"),
  42974. name: "Side",
  42975. image: {
  42976. source: "./media/characters/veluren-thanazel/side.svg",
  42977. extra: 1611/633,
  42978. bottom: 118/1729
  42979. }
  42980. },
  42981. front: {
  42982. height: math.unit(30, "feet"),
  42983. name: "Front",
  42984. image: {
  42985. source: "./media/characters/veluren-thanazel/front.svg",
  42986. extra: 1486/636,
  42987. bottom: 238/1724
  42988. }
  42989. },
  42990. head: {
  42991. height: math.unit(21.4, "feet"),
  42992. name: "Head",
  42993. image: {
  42994. source: "./media/characters/veluren-thanazel/head.svg"
  42995. }
  42996. },
  42997. genitals: {
  42998. height: math.unit(19.4, "feet"),
  42999. name: "Genitals",
  43000. image: {
  43001. source: "./media/characters/veluren-thanazel/genitals.svg"
  43002. }
  43003. },
  43004. },
  43005. [
  43006. {
  43007. name: "Social",
  43008. height: math.unit(6, "feet")
  43009. },
  43010. {
  43011. name: "Play",
  43012. height: math.unit(12, "feet")
  43013. },
  43014. {
  43015. name: "True",
  43016. height: math.unit(30, "feet"),
  43017. default: true
  43018. },
  43019. ]
  43020. ))
  43021. characterMakers.push(() => makeCharacter(
  43022. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43023. {
  43024. front: {
  43025. height: math.unit(7 + 6/12, "feet"),
  43026. weight: math.unit(500, "kg"),
  43027. name: "Front",
  43028. image: {
  43029. source: "./media/characters/arcturas/front.svg",
  43030. extra: 1700/1500,
  43031. bottom: 145/1845
  43032. }
  43033. },
  43034. },
  43035. [
  43036. {
  43037. name: "Normal",
  43038. height: math.unit(7 + 6/12, "feet"),
  43039. default: true
  43040. },
  43041. ]
  43042. ))
  43043. characterMakers.push(() => makeCharacter(
  43044. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43045. {
  43046. side: {
  43047. height: math.unit(6, "feet"),
  43048. weight: math.unit(2, "tons"),
  43049. name: "Side",
  43050. image: {
  43051. source: "./media/characters/vitaen/side.svg",
  43052. extra: 1157/617,
  43053. bottom: 122/1279
  43054. }
  43055. },
  43056. },
  43057. [
  43058. {
  43059. name: "Normal",
  43060. height: math.unit(6, "feet"),
  43061. default: true
  43062. },
  43063. ]
  43064. ))
  43065. characterMakers.push(() => makeCharacter(
  43066. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43067. {
  43068. front: {
  43069. height: math.unit(19, "feet"),
  43070. name: "Front",
  43071. image: {
  43072. source: "./media/characters/fia-dreamweaver/front.svg",
  43073. extra: 1630/1504,
  43074. bottom: 25/1655
  43075. }
  43076. },
  43077. },
  43078. [
  43079. {
  43080. name: "Normal",
  43081. height: math.unit(19, "feet"),
  43082. default: true
  43083. },
  43084. ]
  43085. ))
  43086. characterMakers.push(() => makeCharacter(
  43087. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43088. {
  43089. front: {
  43090. height: math.unit(5 + 4/12, "feet"),
  43091. name: "Front",
  43092. image: {
  43093. source: "./media/characters/artan/front.svg",
  43094. extra: 1618/1535,
  43095. bottom: 46/1664
  43096. }
  43097. },
  43098. back: {
  43099. height: math.unit(5 + 4/12, "feet"),
  43100. name: "Back",
  43101. image: {
  43102. source: "./media/characters/artan/back.svg",
  43103. extra: 1618/1543,
  43104. bottom: 31/1649
  43105. }
  43106. },
  43107. },
  43108. [
  43109. {
  43110. name: "Normal",
  43111. height: math.unit(5 + 4/12, "feet"),
  43112. default: true
  43113. },
  43114. ]
  43115. ))
  43116. characterMakers.push(() => makeCharacter(
  43117. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43118. {
  43119. side: {
  43120. height: math.unit(182, "cm"),
  43121. weight: math.unit(1000, "lb"),
  43122. name: "Side",
  43123. image: {
  43124. source: "./media/characters/silver-dragon/side.svg",
  43125. extra: 710/287,
  43126. bottom: 88/798
  43127. }
  43128. },
  43129. },
  43130. [
  43131. {
  43132. name: "Normal",
  43133. height: math.unit(182, "cm"),
  43134. default: true
  43135. },
  43136. ]
  43137. ))
  43138. characterMakers.push(() => makeCharacter(
  43139. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43140. {
  43141. side: {
  43142. height: math.unit(6 + 6/12, "feet"),
  43143. weight: math.unit(1.5, "tons"),
  43144. name: "Side",
  43145. image: {
  43146. source: "./media/characters/zephyr/side.svg",
  43147. extra: 1433/586,
  43148. bottom: 109/1542
  43149. }
  43150. },
  43151. },
  43152. [
  43153. {
  43154. name: "Normal",
  43155. height: math.unit(6 + 6/12, "feet"),
  43156. default: true
  43157. },
  43158. ]
  43159. ))
  43160. characterMakers.push(() => makeCharacter(
  43161. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43162. {
  43163. side: {
  43164. height: math.unit(1, "feet"),
  43165. name: "Side",
  43166. image: {
  43167. source: "./media/characters/vixye/side.svg",
  43168. extra: 632/541,
  43169. bottom: 0/632
  43170. }
  43171. },
  43172. },
  43173. [
  43174. {
  43175. name: "Normal",
  43176. height: math.unit(1, "feet"),
  43177. default: true
  43178. },
  43179. {
  43180. name: "True",
  43181. height: math.unit(1e15, "multiverses")
  43182. },
  43183. ]
  43184. ))
  43185. characterMakers.push(() => makeCharacter(
  43186. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43187. {
  43188. front: {
  43189. height: math.unit(8 + 2/12, "feet"),
  43190. weight: math.unit(650, "lb"),
  43191. name: "Front",
  43192. image: {
  43193. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43194. extra: 1174/1137,
  43195. bottom: 82/1256
  43196. }
  43197. },
  43198. back: {
  43199. height: math.unit(8 + 2/12, "feet"),
  43200. weight: math.unit(650, "lb"),
  43201. name: "Back",
  43202. image: {
  43203. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43204. extra: 1204/1157,
  43205. bottom: 46/1250
  43206. }
  43207. },
  43208. },
  43209. [
  43210. {
  43211. name: "Wildform",
  43212. height: math.unit(8 + 2/12, "feet"),
  43213. default: true
  43214. },
  43215. ]
  43216. ))
  43217. characterMakers.push(() => makeCharacter(
  43218. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43219. {
  43220. front: {
  43221. height: math.unit(18, "feet"),
  43222. name: "Front",
  43223. image: {
  43224. source: "./media/characters/cyphin/front.svg",
  43225. extra: 970/886,
  43226. bottom: 42/1012
  43227. }
  43228. },
  43229. back: {
  43230. height: math.unit(18, "feet"),
  43231. name: "Back",
  43232. image: {
  43233. source: "./media/characters/cyphin/back.svg",
  43234. extra: 1009/894,
  43235. bottom: 24/1033
  43236. }
  43237. },
  43238. head: {
  43239. height: math.unit(5.05, "feet"),
  43240. name: "Head",
  43241. image: {
  43242. source: "./media/characters/cyphin/head.svg"
  43243. }
  43244. },
  43245. tailbud: {
  43246. height: math.unit(5, "feet"),
  43247. name: "Tailbud",
  43248. image: {
  43249. source: "./media/characters/cyphin/tailbud.svg"
  43250. }
  43251. },
  43252. },
  43253. [
  43254. ]
  43255. ))
  43256. characterMakers.push(() => makeCharacter(
  43257. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43258. {
  43259. side: {
  43260. height: math.unit(10, "feet"),
  43261. weight: math.unit(6, "tons"),
  43262. name: "Side",
  43263. image: {
  43264. source: "./media/characters/raijin/side.svg",
  43265. extra: 1529/613,
  43266. bottom: 337/1866
  43267. }
  43268. },
  43269. },
  43270. [
  43271. {
  43272. name: "Normal",
  43273. height: math.unit(10, "feet"),
  43274. default: true
  43275. },
  43276. ]
  43277. ))
  43278. characterMakers.push(() => makeCharacter(
  43279. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43280. {
  43281. side: {
  43282. height: math.unit(9, "feet"),
  43283. name: "Side",
  43284. image: {
  43285. source: "./media/characters/nilghais/side.svg",
  43286. extra: 1047/744,
  43287. bottom: 91/1138
  43288. }
  43289. },
  43290. head: {
  43291. height: math.unit(3.14, "feet"),
  43292. name: "Head",
  43293. image: {
  43294. source: "./media/characters/nilghais/head.svg"
  43295. }
  43296. },
  43297. mouth: {
  43298. height: math.unit(4.6, "feet"),
  43299. name: "Mouth",
  43300. image: {
  43301. source: "./media/characters/nilghais/mouth.svg"
  43302. }
  43303. },
  43304. wings: {
  43305. height: math.unit(24, "feet"),
  43306. name: "Wings",
  43307. image: {
  43308. source: "./media/characters/nilghais/wings.svg"
  43309. }
  43310. },
  43311. ass: {
  43312. height: math.unit(6.12, "feet"),
  43313. name: "Ass",
  43314. image: {
  43315. source: "./media/characters/nilghais/ass.svg"
  43316. }
  43317. },
  43318. },
  43319. [
  43320. {
  43321. name: "Normal",
  43322. height: math.unit(9, "feet"),
  43323. default: true
  43324. },
  43325. ]
  43326. ))
  43327. characterMakers.push(() => makeCharacter(
  43328. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43329. {
  43330. regular: {
  43331. height: math.unit(16 + 2/12, "feet"),
  43332. weight: math.unit(2300, "lb"),
  43333. name: "Regular",
  43334. image: {
  43335. source: "./media/characters/zolgar/regular.svg",
  43336. extra: 1246/1004,
  43337. bottom: 124/1370
  43338. }
  43339. },
  43340. boxers: {
  43341. height: math.unit(16 + 2/12, "feet"),
  43342. weight: math.unit(2300, "lb"),
  43343. name: "Boxers",
  43344. image: {
  43345. source: "./media/characters/zolgar/boxers.svg",
  43346. extra: 1246/1004,
  43347. bottom: 124/1370
  43348. }
  43349. },
  43350. armored: {
  43351. height: math.unit(16 + 2/12, "feet"),
  43352. weight: math.unit(2300, "lb"),
  43353. name: "Armored",
  43354. image: {
  43355. source: "./media/characters/zolgar/armored.svg",
  43356. extra: 1246/1004,
  43357. bottom: 124/1370
  43358. }
  43359. },
  43360. goth: {
  43361. height: math.unit(16 + 2/12, "feet"),
  43362. weight: math.unit(2300, "lb"),
  43363. name: "Goth",
  43364. image: {
  43365. source: "./media/characters/zolgar/goth.svg",
  43366. extra: 1246/1004,
  43367. bottom: 124/1370
  43368. }
  43369. },
  43370. },
  43371. [
  43372. {
  43373. name: "Shrunken Down",
  43374. height: math.unit(9 + 2/12, "feet")
  43375. },
  43376. {
  43377. name: "Normal",
  43378. height: math.unit(16 + 2/12, "feet"),
  43379. default: true
  43380. },
  43381. ]
  43382. ))
  43383. characterMakers.push(() => makeCharacter(
  43384. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43385. {
  43386. front: {
  43387. height: math.unit(6, "feet"),
  43388. weight: math.unit(168, "lb"),
  43389. name: "Front",
  43390. image: {
  43391. source: "./media/characters/luca/front.svg",
  43392. extra: 841/667,
  43393. bottom: 102/943
  43394. }
  43395. },
  43396. },
  43397. [
  43398. {
  43399. name: "Normal",
  43400. height: math.unit(6, "feet"),
  43401. default: true
  43402. },
  43403. ]
  43404. ))
  43405. characterMakers.push(() => makeCharacter(
  43406. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43407. {
  43408. side: {
  43409. height: math.unit(7 + 3/12, "feet"),
  43410. weight: math.unit(312, "lb"),
  43411. name: "Side",
  43412. image: {
  43413. source: "./media/characters/zezo/side.svg",
  43414. extra: 1192/1067,
  43415. bottom: 63/1255
  43416. }
  43417. },
  43418. },
  43419. [
  43420. {
  43421. name: "Normal",
  43422. height: math.unit(7 + 3/12, "feet"),
  43423. default: true
  43424. },
  43425. ]
  43426. ))
  43427. characterMakers.push(() => makeCharacter(
  43428. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43429. {
  43430. front: {
  43431. height: math.unit(5 + 5/12, "feet"),
  43432. weight: math.unit(170, "lb"),
  43433. name: "Front",
  43434. image: {
  43435. source: "./media/characters/mayso/front.svg",
  43436. extra: 1215/1108,
  43437. bottom: 16/1231
  43438. }
  43439. },
  43440. },
  43441. [
  43442. {
  43443. name: "Normal",
  43444. height: math.unit(5 + 5/12, "feet"),
  43445. default: true
  43446. },
  43447. ]
  43448. ))
  43449. characterMakers.push(() => makeCharacter(
  43450. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43451. {
  43452. front: {
  43453. height: math.unit(4 + 3/12, "feet"),
  43454. weight: math.unit(80, "lb"),
  43455. name: "Front",
  43456. image: {
  43457. source: "./media/characters/hess/front.svg",
  43458. extra: 1200/1123,
  43459. bottom: 16/1216
  43460. }
  43461. },
  43462. },
  43463. [
  43464. {
  43465. name: "Normal",
  43466. height: math.unit(4 + 3/12, "feet"),
  43467. default: true
  43468. },
  43469. ]
  43470. ))
  43471. characterMakers.push(() => makeCharacter(
  43472. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43473. {
  43474. front: {
  43475. height: math.unit(1.9, "meters"),
  43476. name: "Front",
  43477. image: {
  43478. source: "./media/characters/ashgar/front.svg",
  43479. extra: 1177/1146,
  43480. bottom: 99/1276
  43481. }
  43482. },
  43483. back: {
  43484. height: math.unit(1.9, "meters"),
  43485. name: "Back",
  43486. image: {
  43487. source: "./media/characters/ashgar/back.svg",
  43488. extra: 1201/1183,
  43489. bottom: 53/1254
  43490. }
  43491. },
  43492. feral: {
  43493. height: math.unit(1.4, "meters"),
  43494. name: "Feral",
  43495. image: {
  43496. source: "./media/characters/ashgar/feral.svg",
  43497. extra: 370/345,
  43498. bottom: 45/415
  43499. }
  43500. },
  43501. },
  43502. [
  43503. {
  43504. name: "Normal",
  43505. height: math.unit(1.9, "meters"),
  43506. default: true
  43507. },
  43508. ]
  43509. ))
  43510. characterMakers.push(() => makeCharacter(
  43511. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43512. {
  43513. regular: {
  43514. height: math.unit(6, "feet"),
  43515. weight: math.unit(220, "lb"),
  43516. name: "Regular",
  43517. image: {
  43518. source: "./media/characters/phillip/regular.svg",
  43519. extra: 1373/1277,
  43520. bottom: 75/1448
  43521. }
  43522. },
  43523. dressed: {
  43524. height: math.unit(6, "feet"),
  43525. weight: math.unit(220, "lb"),
  43526. name: "Dressed",
  43527. image: {
  43528. source: "./media/characters/phillip/dressed.svg",
  43529. extra: 1373/1277,
  43530. bottom: 75/1448
  43531. }
  43532. },
  43533. paw: {
  43534. height: math.unit(1.44, "feet"),
  43535. name: "Paw",
  43536. image: {
  43537. source: "./media/characters/phillip/paw.svg"
  43538. }
  43539. },
  43540. },
  43541. [
  43542. {
  43543. name: "Normal",
  43544. height: math.unit(6, "feet"),
  43545. default: true
  43546. },
  43547. ]
  43548. ))
  43549. characterMakers.push(() => makeCharacter(
  43550. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43551. {
  43552. side: {
  43553. height: math.unit(42, "feet"),
  43554. name: "Side",
  43555. image: {
  43556. source: "./media/characters/uvula/side.svg",
  43557. extra: 683/586,
  43558. bottom: 60/743
  43559. }
  43560. },
  43561. front: {
  43562. height: math.unit(42, "feet"),
  43563. name: "Front",
  43564. image: {
  43565. source: "./media/characters/uvula/front.svg",
  43566. extra: 705/613,
  43567. bottom: 54/759
  43568. }
  43569. },
  43570. maw: {
  43571. height: math.unit(23.5, "feet"),
  43572. name: "Maw",
  43573. image: {
  43574. source: "./media/characters/uvula/maw.svg"
  43575. }
  43576. },
  43577. },
  43578. [
  43579. {
  43580. name: "Original Size",
  43581. height: math.unit(14, "inches")
  43582. },
  43583. {
  43584. name: "Human Size",
  43585. height: math.unit(6, "feet")
  43586. },
  43587. {
  43588. name: "Big",
  43589. height: math.unit(42, "feet"),
  43590. default: true
  43591. },
  43592. {
  43593. name: "Bigger",
  43594. height: math.unit(100, "feet")
  43595. },
  43596. ]
  43597. ))
  43598. characterMakers.push(() => makeCharacter(
  43599. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43600. {
  43601. front: {
  43602. height: math.unit(5 + 11/12, "feet"),
  43603. name: "Front",
  43604. image: {
  43605. source: "./media/characters/lannah/front.svg",
  43606. extra: 1208/1113,
  43607. bottom: 97/1305
  43608. }
  43609. },
  43610. },
  43611. [
  43612. {
  43613. name: "Normal",
  43614. height: math.unit(5 + 11/12, "feet"),
  43615. default: true
  43616. },
  43617. ]
  43618. ))
  43619. characterMakers.push(() => makeCharacter(
  43620. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43621. {
  43622. front: {
  43623. height: math.unit(6 + 3/12, "feet"),
  43624. weight: math.unit(3.5, "tons"),
  43625. name: "Front",
  43626. image: {
  43627. source: "./media/characters/emberflame/front.svg",
  43628. extra: 1198/672,
  43629. bottom: 82/1280
  43630. }
  43631. },
  43632. side: {
  43633. height: math.unit(6 + 3/12, "feet"),
  43634. weight: math.unit(3.5, "tons"),
  43635. name: "Side",
  43636. image: {
  43637. source: "./media/characters/emberflame/side.svg",
  43638. extra: 938/527,
  43639. bottom: 56/994
  43640. }
  43641. },
  43642. },
  43643. [
  43644. {
  43645. name: "Normal",
  43646. height: math.unit(6 + 3/12, "feet"),
  43647. default: true
  43648. },
  43649. ]
  43650. ))
  43651. characterMakers.push(() => makeCharacter(
  43652. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43653. {
  43654. side: {
  43655. height: math.unit(17.5, "feet"),
  43656. weight: math.unit(35, "tons"),
  43657. name: "Side",
  43658. image: {
  43659. source: "./media/characters/sophie-ambrose/side.svg",
  43660. extra: 1573/1242,
  43661. bottom: 71/1644
  43662. }
  43663. },
  43664. maw: {
  43665. height: math.unit(7.4, "feet"),
  43666. name: "Maw",
  43667. image: {
  43668. source: "./media/characters/sophie-ambrose/maw.svg"
  43669. }
  43670. },
  43671. },
  43672. [
  43673. {
  43674. name: "Normal",
  43675. height: math.unit(17.5, "feet"),
  43676. default: true
  43677. },
  43678. ]
  43679. ))
  43680. characterMakers.push(() => makeCharacter(
  43681. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43682. {
  43683. front: {
  43684. height: math.unit(280, "feet"),
  43685. weight: math.unit(550, "tons"),
  43686. name: "Front",
  43687. image: {
  43688. source: "./media/characters/king-mugi/front.svg",
  43689. extra: 1102/947,
  43690. bottom: 104/1206
  43691. }
  43692. },
  43693. },
  43694. [
  43695. {
  43696. name: "King Mugi",
  43697. height: math.unit(280, "feet"),
  43698. default: true
  43699. },
  43700. ]
  43701. ))
  43702. characterMakers.push(() => makeCharacter(
  43703. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43704. {
  43705. front: {
  43706. height: math.unit(64, "meters"),
  43707. name: "Front",
  43708. image: {
  43709. source: "./media/characters/nova-fox/front.svg",
  43710. extra: 1310/1246,
  43711. bottom: 65/1375
  43712. }
  43713. },
  43714. },
  43715. [
  43716. {
  43717. name: "Macro",
  43718. height: math.unit(64, "meters"),
  43719. default: true
  43720. },
  43721. ]
  43722. ))
  43723. characterMakers.push(() => makeCharacter(
  43724. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43725. {
  43726. front: {
  43727. height: math.unit(6 + 3/12, "feet"),
  43728. weight: math.unit(170, "lb"),
  43729. name: "Front",
  43730. image: {
  43731. source: "./media/characters/sam-bat/front.svg",
  43732. extra: 1601/1411,
  43733. bottom: 125/1726
  43734. }
  43735. },
  43736. back: {
  43737. height: math.unit(6 + 3/12, "feet"),
  43738. weight: math.unit(170, "lb"),
  43739. name: "Back",
  43740. image: {
  43741. source: "./media/characters/sam-bat/back.svg",
  43742. extra: 1577/1405,
  43743. bottom: 58/1635
  43744. }
  43745. },
  43746. },
  43747. [
  43748. {
  43749. name: "Normal",
  43750. height: math.unit(6 + 3/12, "feet"),
  43751. default: true
  43752. },
  43753. ]
  43754. ))
  43755. characterMakers.push(() => makeCharacter(
  43756. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43757. {
  43758. front: {
  43759. height: math.unit(59, "feet"),
  43760. weight: math.unit(40000, "lb"),
  43761. name: "Front",
  43762. image: {
  43763. source: "./media/characters/inari/front.svg",
  43764. extra: 1884/1350,
  43765. bottom: 95/1979
  43766. }
  43767. },
  43768. },
  43769. [
  43770. {
  43771. name: "Gigantamax",
  43772. height: math.unit(59, "feet"),
  43773. default: true
  43774. },
  43775. ]
  43776. ))
  43777. characterMakers.push(() => makeCharacter(
  43778. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43779. {
  43780. front: {
  43781. height: math.unit(5 + 8/12, "feet"),
  43782. name: "Front",
  43783. image: {
  43784. source: "./media/characters/elizabeth/front.svg",
  43785. extra: 1395/1298,
  43786. bottom: 54/1449
  43787. }
  43788. },
  43789. mouth: {
  43790. height: math.unit(1.97, "feet"),
  43791. name: "Mouth",
  43792. image: {
  43793. source: "./media/characters/elizabeth/mouth.svg"
  43794. }
  43795. },
  43796. foot: {
  43797. height: math.unit(1.17, "feet"),
  43798. name: "Foot",
  43799. image: {
  43800. source: "./media/characters/elizabeth/foot.svg"
  43801. }
  43802. },
  43803. },
  43804. [
  43805. {
  43806. name: "Normal",
  43807. height: math.unit(5 + 8/12, "feet"),
  43808. default: true
  43809. },
  43810. {
  43811. name: "Minimacro",
  43812. height: math.unit(18, "feet")
  43813. },
  43814. {
  43815. name: "Macro",
  43816. height: math.unit(180, "feet")
  43817. },
  43818. ]
  43819. ))
  43820. characterMakers.push(() => makeCharacter(
  43821. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43822. {
  43823. front: {
  43824. height: math.unit(5 + 2/12, "feet"),
  43825. name: "Front",
  43826. image: {
  43827. source: "./media/characters/october-gossamer/front.svg",
  43828. extra: 505/454,
  43829. bottom: 7/512
  43830. }
  43831. },
  43832. back: {
  43833. height: math.unit(5 + 2/12, "feet"),
  43834. name: "Back",
  43835. image: {
  43836. source: "./media/characters/october-gossamer/back.svg",
  43837. extra: 501/454,
  43838. bottom: 11/512
  43839. }
  43840. },
  43841. },
  43842. [
  43843. {
  43844. name: "Normal",
  43845. height: math.unit(5 + 2/12, "feet"),
  43846. default: true
  43847. },
  43848. ]
  43849. ))
  43850. characterMakers.push(() => makeCharacter(
  43851. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43852. {
  43853. front: {
  43854. height: math.unit(5, "feet"),
  43855. name: "Front",
  43856. image: {
  43857. source: "./media/characters/epiglottis/front.svg",
  43858. extra: 923/849,
  43859. bottom: 17/940
  43860. }
  43861. },
  43862. },
  43863. [
  43864. {
  43865. name: "Original Size",
  43866. height: math.unit(10, "inches")
  43867. },
  43868. {
  43869. name: "Human Size",
  43870. height: math.unit(5, "feet"),
  43871. default: true
  43872. },
  43873. {
  43874. name: "Big",
  43875. height: math.unit(25, "feet")
  43876. },
  43877. {
  43878. name: "Bigger",
  43879. height: math.unit(50, "feet")
  43880. },
  43881. {
  43882. name: "oh lawd",
  43883. height: math.unit(75, "feet")
  43884. },
  43885. ]
  43886. ))
  43887. characterMakers.push(() => makeCharacter(
  43888. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43889. {
  43890. front: {
  43891. height: math.unit(2 + 4/12, "feet"),
  43892. weight: math.unit(60, "lb"),
  43893. name: "Front",
  43894. image: {
  43895. source: "./media/characters/lerm/front.svg",
  43896. extra: 796/790,
  43897. bottom: 79/875
  43898. }
  43899. },
  43900. },
  43901. [
  43902. {
  43903. name: "Normal",
  43904. height: math.unit(2 + 4/12, "feet"),
  43905. default: true
  43906. },
  43907. ]
  43908. ))
  43909. characterMakers.push(() => makeCharacter(
  43910. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43911. {
  43912. front: {
  43913. height: math.unit(5.5, "feet"),
  43914. weight: math.unit(130, "lb"),
  43915. name: "Front",
  43916. image: {
  43917. source: "./media/characters/xena-nebadon/front.svg",
  43918. extra: 1828/1730,
  43919. bottom: 79/1907
  43920. }
  43921. },
  43922. },
  43923. [
  43924. {
  43925. name: "Tiny Puppy",
  43926. height: math.unit(3, "inches")
  43927. },
  43928. {
  43929. name: "Normal",
  43930. height: math.unit(5.5, "feet"),
  43931. default: true
  43932. },
  43933. {
  43934. name: "Lotta Lady",
  43935. height: math.unit(12, "feet")
  43936. },
  43937. {
  43938. name: "Pretty Big",
  43939. height: math.unit(100, "feet")
  43940. },
  43941. {
  43942. name: "Big",
  43943. height: math.unit(500, "feet")
  43944. },
  43945. {
  43946. name: "Skyscraper Toys",
  43947. height: math.unit(2500, "feet")
  43948. },
  43949. {
  43950. name: "Plane Catcher",
  43951. height: math.unit(8, "miles")
  43952. },
  43953. {
  43954. name: "Planet Toys",
  43955. height: math.unit(15, "earths")
  43956. },
  43957. {
  43958. name: "Stardust",
  43959. height: math.unit(0.25, "galaxies")
  43960. },
  43961. {
  43962. name: "Snacks",
  43963. height: math.unit(70, "universes")
  43964. },
  43965. ]
  43966. ))
  43967. characterMakers.push(() => makeCharacter(
  43968. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43969. {
  43970. front: {
  43971. height: math.unit(1.6, "meters"),
  43972. weight: math.unit(60, "kg"),
  43973. name: "Front",
  43974. image: {
  43975. source: "./media/characters/bounty/front.svg",
  43976. extra: 1426/1308,
  43977. bottom: 15/1441
  43978. }
  43979. },
  43980. back: {
  43981. height: math.unit(1.6, "meters"),
  43982. weight: math.unit(60, "kg"),
  43983. name: "Back",
  43984. image: {
  43985. source: "./media/characters/bounty/back.svg",
  43986. extra: 1417/1307,
  43987. bottom: 8/1425
  43988. }
  43989. },
  43990. },
  43991. [
  43992. {
  43993. name: "Normal",
  43994. height: math.unit(1.6, "meters"),
  43995. default: true
  43996. },
  43997. {
  43998. name: "Macro",
  43999. height: math.unit(300, "meters")
  44000. },
  44001. ]
  44002. ))
  44003. characterMakers.push(() => makeCharacter(
  44004. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44005. {
  44006. front: {
  44007. height: math.unit(2 + 8/12, "feet"),
  44008. weight: math.unit(15, "lb"),
  44009. name: "Front",
  44010. image: {
  44011. source: "./media/characters/mochi/front.svg",
  44012. extra: 1022/852,
  44013. bottom: 435/1457
  44014. }
  44015. },
  44016. back: {
  44017. height: math.unit(2 + 8/12, "feet"),
  44018. weight: math.unit(15, "lb"),
  44019. name: "Back",
  44020. image: {
  44021. source: "./media/characters/mochi/back.svg",
  44022. extra: 1335/1119,
  44023. bottom: 39/1374
  44024. }
  44025. },
  44026. bird: {
  44027. height: math.unit(2 + 8/12, "feet"),
  44028. weight: math.unit(15, "lb"),
  44029. name: "Bird",
  44030. image: {
  44031. source: "./media/characters/mochi/bird.svg",
  44032. extra: 1251/1113,
  44033. bottom: 178/1429
  44034. }
  44035. },
  44036. kaiju: {
  44037. height: math.unit(154, "feet"),
  44038. weight: math.unit(1e7, "lb"),
  44039. name: "Kaiju",
  44040. image: {
  44041. source: "./media/characters/mochi/kaiju.svg",
  44042. extra: 460/324,
  44043. bottom: 40/500
  44044. }
  44045. },
  44046. head: {
  44047. height: math.unit(1.21, "feet"),
  44048. name: "Head",
  44049. image: {
  44050. source: "./media/characters/mochi/head.svg"
  44051. }
  44052. },
  44053. alternateTail: {
  44054. height: math.unit(2 + 8/12, "feet"),
  44055. weight: math.unit(45, "lb"),
  44056. name: "Alternate Tail",
  44057. image: {
  44058. source: "./media/characters/mochi/alternate-tail.svg",
  44059. extra: 139/76,
  44060. bottom: 45/184
  44061. }
  44062. },
  44063. },
  44064. [
  44065. {
  44066. name: "Micro",
  44067. height: math.unit(2, "inches")
  44068. },
  44069. {
  44070. name: "Normal",
  44071. height: math.unit(2 + 8/12, "feet"),
  44072. default: true
  44073. },
  44074. {
  44075. name: "Macro",
  44076. height: math.unit(106, "feet")
  44077. },
  44078. ]
  44079. ))
  44080. characterMakers.push(() => makeCharacter(
  44081. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44082. {
  44083. front: {
  44084. height: math.unit(5.67, "feet"),
  44085. weight: math.unit(135, "lb"),
  44086. name: "Front",
  44087. image: {
  44088. source: "./media/characters/sarel/front.svg",
  44089. extra: 865/788,
  44090. bottom: 97/962
  44091. }
  44092. },
  44093. back: {
  44094. height: math.unit(5.67, "feet"),
  44095. weight: math.unit(135, "lb"),
  44096. name: "Back",
  44097. image: {
  44098. source: "./media/characters/sarel/back.svg",
  44099. extra: 857/777,
  44100. bottom: 32/889
  44101. }
  44102. },
  44103. chozoan: {
  44104. height: math.unit(5.67, "feet"),
  44105. weight: math.unit(135, "lb"),
  44106. name: "Chozoan",
  44107. image: {
  44108. source: "./media/characters/sarel/chozoan.svg",
  44109. extra: 865/788,
  44110. bottom: 97/962
  44111. }
  44112. },
  44113. current: {
  44114. height: math.unit(5.67, "feet"),
  44115. weight: math.unit(135, "lb"),
  44116. name: "Current",
  44117. image: {
  44118. source: "./media/characters/sarel/current.svg",
  44119. extra: 865/788,
  44120. bottom: 97/962
  44121. }
  44122. },
  44123. head: {
  44124. height: math.unit(1.77, "feet"),
  44125. name: "Head",
  44126. image: {
  44127. source: "./media/characters/sarel/head.svg"
  44128. }
  44129. },
  44130. claws: {
  44131. height: math.unit(1.8, "feet"),
  44132. name: "Claws",
  44133. image: {
  44134. source: "./media/characters/sarel/claws.svg"
  44135. }
  44136. },
  44137. clawsAlt: {
  44138. height: math.unit(1.8, "feet"),
  44139. name: "Claws-alt",
  44140. image: {
  44141. source: "./media/characters/sarel/claws-alt.svg"
  44142. }
  44143. },
  44144. },
  44145. [
  44146. {
  44147. name: "Normal",
  44148. height: math.unit(5.67, "feet"),
  44149. default: true
  44150. },
  44151. ]
  44152. ))
  44153. characterMakers.push(() => makeCharacter(
  44154. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44155. {
  44156. front: {
  44157. height: math.unit(5500, "feet"),
  44158. name: "Front",
  44159. image: {
  44160. source: "./media/characters/alyonia/front.svg",
  44161. extra: 1200/1135,
  44162. bottom: 29/1229
  44163. }
  44164. },
  44165. back: {
  44166. height: math.unit(5500, "feet"),
  44167. name: "Back",
  44168. image: {
  44169. source: "./media/characters/alyonia/back.svg",
  44170. extra: 1205/1138,
  44171. bottom: 10/1215
  44172. }
  44173. },
  44174. },
  44175. [
  44176. {
  44177. name: "Small",
  44178. height: math.unit(10, "feet")
  44179. },
  44180. {
  44181. name: "Macro",
  44182. height: math.unit(500, "feet")
  44183. },
  44184. {
  44185. name: "Mega Macro",
  44186. height: math.unit(5500, "feet"),
  44187. default: true
  44188. },
  44189. {
  44190. name: "Mega Macro+",
  44191. height: math.unit(500000, "feet")
  44192. },
  44193. {
  44194. name: "Giga Macro",
  44195. height: math.unit(3000, "miles")
  44196. },
  44197. {
  44198. name: "Tera Macro",
  44199. height: math.unit(2.8e6, "miles")
  44200. },
  44201. {
  44202. name: "Galactic",
  44203. height: math.unit(120000, "lightyears")
  44204. },
  44205. ]
  44206. ))
  44207. characterMakers.push(() => makeCharacter(
  44208. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44209. {
  44210. werewolf: {
  44211. height: math.unit(8, "feet"),
  44212. weight: math.unit(425, "lb"),
  44213. name: "Werewolf",
  44214. image: {
  44215. source: "./media/characters/autumn/werewolf.svg",
  44216. extra: 2154/2031,
  44217. bottom: 160/2314
  44218. }
  44219. },
  44220. human: {
  44221. height: math.unit(5 + 8/12, "feet"),
  44222. weight: math.unit(150, "lb"),
  44223. name: "Human",
  44224. image: {
  44225. source: "./media/characters/autumn/human.svg",
  44226. extra: 1200/1149,
  44227. bottom: 30/1230
  44228. }
  44229. },
  44230. },
  44231. [
  44232. {
  44233. name: "Normal",
  44234. height: math.unit(8, "feet"),
  44235. default: true
  44236. },
  44237. ]
  44238. ))
  44239. characterMakers.push(() => makeCharacter(
  44240. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44241. {
  44242. front: {
  44243. height: math.unit(8 + 5/12, "feet"),
  44244. weight: math.unit(825, "lb"),
  44245. name: "Front",
  44246. image: {
  44247. source: "./media/characters/cobalt-charizard/front.svg",
  44248. extra: 1268/1155,
  44249. bottom: 122/1390
  44250. }
  44251. },
  44252. side: {
  44253. height: math.unit(8 + 5/12, "feet"),
  44254. weight: math.unit(825, "lb"),
  44255. name: "Side",
  44256. image: {
  44257. source: "./media/characters/cobalt-charizard/side.svg",
  44258. extra: 1348/1257,
  44259. bottom: 58/1406
  44260. }
  44261. },
  44262. gMax: {
  44263. height: math.unit(134 + 11/12, "feet"),
  44264. name: "G-Max",
  44265. image: {
  44266. source: "./media/characters/cobalt-charizard/g-max.svg",
  44267. extra: 1835/1541,
  44268. bottom: 151/1986
  44269. }
  44270. },
  44271. },
  44272. [
  44273. {
  44274. name: "Normal",
  44275. height: math.unit(8 + 5/12, "feet"),
  44276. default: true
  44277. },
  44278. ]
  44279. ))
  44280. characterMakers.push(() => makeCharacter(
  44281. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44282. {
  44283. front: {
  44284. height: math.unit(6 + 3/12, "feet"),
  44285. weight: math.unit(210, "lb"),
  44286. name: "Front",
  44287. image: {
  44288. source: "./media/characters/stella/front.svg",
  44289. extra: 3549/3335,
  44290. bottom: 51/3600
  44291. }
  44292. },
  44293. },
  44294. [
  44295. {
  44296. name: "Normal",
  44297. height: math.unit(6 + 3/12, "feet"),
  44298. default: true
  44299. },
  44300. ]
  44301. ))
  44302. characterMakers.push(() => makeCharacter(
  44303. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44304. {
  44305. front: {
  44306. height: math.unit(5, "feet"),
  44307. weight: math.unit(90, "lb"),
  44308. name: "Front",
  44309. image: {
  44310. source: "./media/characters/riley-bishop/front.svg",
  44311. extra: 1450/1428,
  44312. bottom: 152/1602
  44313. }
  44314. },
  44315. },
  44316. [
  44317. {
  44318. name: "Normal",
  44319. height: math.unit(5, "feet"),
  44320. default: true
  44321. },
  44322. ]
  44323. ))
  44324. characterMakers.push(() => makeCharacter(
  44325. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44326. {
  44327. side: {
  44328. height: math.unit(8 + 2/12, "feet"),
  44329. weight: math.unit(500, "kg"),
  44330. name: "Side",
  44331. image: {
  44332. source: "./media/characters/theo-arcanine/side.svg",
  44333. extra: 1342/1074,
  44334. bottom: 111/1453
  44335. }
  44336. },
  44337. },
  44338. [
  44339. {
  44340. name: "Normal",
  44341. height: math.unit(8 + 2/12, "feet"),
  44342. default: true
  44343. },
  44344. ]
  44345. ))
  44346. characterMakers.push(() => makeCharacter(
  44347. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44348. {
  44349. front: {
  44350. height: math.unit(4, "feet"),
  44351. name: "Front",
  44352. image: {
  44353. source: "./media/characters/kali/front.svg",
  44354. extra: 1921/1357,
  44355. bottom: 70/1991
  44356. }
  44357. },
  44358. },
  44359. [
  44360. {
  44361. name: "Normal",
  44362. height: math.unit(4, "feet"),
  44363. default: true
  44364. },
  44365. {
  44366. name: "Macro",
  44367. height: math.unit(32, "meters")
  44368. },
  44369. {
  44370. name: "Macro+",
  44371. height: math.unit(150, "meters")
  44372. },
  44373. {
  44374. name: "Megamacro",
  44375. height: math.unit(7500, "meters")
  44376. },
  44377. {
  44378. name: "Megamacro+",
  44379. height: math.unit(80, "kilometers")
  44380. },
  44381. ]
  44382. ))
  44383. characterMakers.push(() => makeCharacter(
  44384. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44385. {
  44386. side: {
  44387. height: math.unit(5 + 11/12, "feet"),
  44388. weight: math.unit(236, "lb"),
  44389. name: "Side",
  44390. image: {
  44391. source: "./media/characters/gapp/side.svg",
  44392. extra: 775/340,
  44393. bottom: 58/833
  44394. }
  44395. },
  44396. mouth: {
  44397. height: math.unit(2.98, "feet"),
  44398. name: "Mouth",
  44399. image: {
  44400. source: "./media/characters/gapp/mouth.svg"
  44401. }
  44402. },
  44403. },
  44404. [
  44405. {
  44406. name: "Normal",
  44407. height: math.unit(5 + 1/12, "feet"),
  44408. default: true
  44409. },
  44410. ]
  44411. ))
  44412. characterMakers.push(() => makeCharacter(
  44413. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44414. {
  44415. front: {
  44416. height: math.unit(6, "feet"),
  44417. name: "Front",
  44418. image: {
  44419. source: "./media/characters/persephone/front.svg",
  44420. extra: 1895/1717,
  44421. bottom: 96/1991
  44422. }
  44423. },
  44424. back: {
  44425. height: math.unit(6, "feet"),
  44426. name: "Back",
  44427. image: {
  44428. source: "./media/characters/persephone/back.svg",
  44429. extra: 1868/1679,
  44430. bottom: 26/1894
  44431. }
  44432. },
  44433. casual: {
  44434. height: math.unit(6, "feet"),
  44435. name: "Casual",
  44436. image: {
  44437. source: "./media/characters/persephone/casual.svg",
  44438. extra: 1713/1541,
  44439. bottom: 76/1789
  44440. }
  44441. },
  44442. },
  44443. [
  44444. {
  44445. name: "Human Size",
  44446. height: math.unit(6, "feet")
  44447. },
  44448. {
  44449. name: "Big Steppy",
  44450. height: math.unit(600, "meters"),
  44451. default: true
  44452. },
  44453. {
  44454. name: "Galaxy Brain",
  44455. height: math.unit(1, "zettameter")
  44456. },
  44457. ]
  44458. ))
  44459. characterMakers.push(() => makeCharacter(
  44460. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44461. {
  44462. front: {
  44463. height: math.unit(1.85, "meters"),
  44464. name: "Front",
  44465. image: {
  44466. source: "./media/characters/riley-foxthing/front.svg",
  44467. extra: 1495/1354,
  44468. bottom: 122/1617
  44469. }
  44470. },
  44471. frontAlt: {
  44472. height: math.unit(1.85, "meters"),
  44473. name: "Front (Alt)",
  44474. image: {
  44475. source: "./media/characters/riley-foxthing/front-alt.svg",
  44476. extra: 1572/1389,
  44477. bottom: 116/1688
  44478. }
  44479. },
  44480. },
  44481. [
  44482. {
  44483. name: "Normal Sized",
  44484. height: math.unit(1.85, "meters"),
  44485. default: true
  44486. },
  44487. {
  44488. name: "Quite Sizable",
  44489. height: math.unit(5, "meters")
  44490. },
  44491. {
  44492. name: "Rather Large",
  44493. height: math.unit(20, "meters")
  44494. },
  44495. {
  44496. name: "Macro",
  44497. height: math.unit(450, "meters")
  44498. },
  44499. {
  44500. name: "Giga",
  44501. height: math.unit(5, "km")
  44502. },
  44503. ]
  44504. ))
  44505. characterMakers.push(() => makeCharacter(
  44506. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44507. {
  44508. front: {
  44509. height: math.unit(6, "feet"),
  44510. weight: math.unit(200, "lb"),
  44511. name: "Front",
  44512. image: {
  44513. source: "./media/characters/blizzard/front.svg",
  44514. extra: 1136/990,
  44515. bottom: 136/1272
  44516. }
  44517. },
  44518. back: {
  44519. height: math.unit(6, "feet"),
  44520. weight: math.unit(200, "lb"),
  44521. name: "Back",
  44522. image: {
  44523. source: "./media/characters/blizzard/back.svg",
  44524. extra: 1175/1034,
  44525. bottom: 97/1272
  44526. }
  44527. },
  44528. sitting: {
  44529. height: math.unit(3.725, "feet"),
  44530. weight: math.unit(200, "lb"),
  44531. name: "Sitting",
  44532. image: {
  44533. source: "./media/characters/blizzard/sitting.svg",
  44534. extra: 581/485,
  44535. bottom: 90/671
  44536. }
  44537. },
  44538. frontWizard: {
  44539. height: math.unit(7.9, "feet"),
  44540. weight: math.unit(200, "lb"),
  44541. name: "Front (Wizard)",
  44542. image: {
  44543. source: "./media/characters/blizzard/front-wizard.svg"
  44544. }
  44545. },
  44546. backWizard: {
  44547. height: math.unit(7.9, "feet"),
  44548. weight: math.unit(200, "lb"),
  44549. name: "Back (Wizard)",
  44550. image: {
  44551. source: "./media/characters/blizzard/back-wizard.svg"
  44552. }
  44553. },
  44554. frontNsfw: {
  44555. height: math.unit(6, "feet"),
  44556. weight: math.unit(200, "lb"),
  44557. name: "Front (NSFW)",
  44558. image: {
  44559. source: "./media/characters/blizzard/front-nsfw.svg",
  44560. extra: 1136/990,
  44561. bottom: 136/1272
  44562. }
  44563. },
  44564. backNsfw: {
  44565. height: math.unit(6, "feet"),
  44566. weight: math.unit(200, "lb"),
  44567. name: "Back (NSFW)",
  44568. image: {
  44569. source: "./media/characters/blizzard/back-nsfw.svg",
  44570. extra: 1175/1034,
  44571. bottom: 97/1272
  44572. }
  44573. },
  44574. sittingNsfw: {
  44575. height: math.unit(3.725, "feet"),
  44576. weight: math.unit(200, "lb"),
  44577. name: "Sitting (NSFW)",
  44578. image: {
  44579. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44580. extra: 581/485,
  44581. bottom: 90/671
  44582. }
  44583. },
  44584. wizardFrontNsfw: {
  44585. height: math.unit(7.9, "feet"),
  44586. weight: math.unit(200, "lb"),
  44587. name: "Wizard (Front, NSFW)",
  44588. image: {
  44589. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44590. }
  44591. },
  44592. },
  44593. [
  44594. {
  44595. name: "Normal",
  44596. height: math.unit(6, "feet"),
  44597. default: true
  44598. },
  44599. ]
  44600. ))
  44601. characterMakers.push(() => makeCharacter(
  44602. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44603. {
  44604. front: {
  44605. height: math.unit(5 + 2/12, "feet"),
  44606. name: "Front",
  44607. image: {
  44608. source: "./media/characters/lumi/front.svg",
  44609. extra: 1328/1268,
  44610. bottom: 103/1431
  44611. }
  44612. },
  44613. back: {
  44614. height: math.unit(5 + 2/12, "feet"),
  44615. name: "Back",
  44616. image: {
  44617. source: "./media/characters/lumi/back.svg",
  44618. extra: 1381/1327,
  44619. bottom: 43/1424
  44620. }
  44621. },
  44622. },
  44623. [
  44624. {
  44625. name: "Normal",
  44626. height: math.unit(5 + 2/12, "feet"),
  44627. default: true
  44628. },
  44629. ]
  44630. ))
  44631. characterMakers.push(() => makeCharacter(
  44632. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44633. {
  44634. front: {
  44635. height: math.unit(5 + 9/12, "feet"),
  44636. name: "Front",
  44637. image: {
  44638. source: "./media/characters/aliya-cotton/front.svg",
  44639. extra: 577/564,
  44640. bottom: 29/606
  44641. }
  44642. },
  44643. },
  44644. [
  44645. {
  44646. name: "Normal",
  44647. height: math.unit(5 + 9/12, "feet"),
  44648. default: true
  44649. },
  44650. ]
  44651. ))
  44652. characterMakers.push(() => makeCharacter(
  44653. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44654. {
  44655. front: {
  44656. height: math.unit(2.7, "meters"),
  44657. weight: math.unit(25000, "lb"),
  44658. name: "Front",
  44659. image: {
  44660. source: "./media/characters/noah-luxray/front.svg",
  44661. extra: 1644/825,
  44662. bottom: 339/1983
  44663. }
  44664. },
  44665. side: {
  44666. height: math.unit(2.97, "meters"),
  44667. weight: math.unit(25000, "lb"),
  44668. name: "Side",
  44669. image: {
  44670. source: "./media/characters/noah-luxray/side.svg",
  44671. extra: 1319/650,
  44672. bottom: 163/1482
  44673. }
  44674. },
  44675. dick: {
  44676. height: math.unit(7.4, "feet"),
  44677. weight: math.unit(2500, "lb"),
  44678. name: "Dick",
  44679. image: {
  44680. source: "./media/characters/noah-luxray/dick.svg"
  44681. }
  44682. },
  44683. dickAlt: {
  44684. height: math.unit(10.83, "feet"),
  44685. weight: math.unit(2500, "lb"),
  44686. name: "Dick-alt",
  44687. image: {
  44688. source: "./media/characters/noah-luxray/dick-alt.svg"
  44689. }
  44690. },
  44691. },
  44692. [
  44693. {
  44694. name: "BIG",
  44695. height: math.unit(2.7, "meters"),
  44696. default: true
  44697. },
  44698. ]
  44699. ))
  44700. characterMakers.push(() => makeCharacter(
  44701. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44702. {
  44703. standing: {
  44704. height: math.unit(183, "cm"),
  44705. weight: math.unit(68, "kg"),
  44706. name: "Standing",
  44707. image: {
  44708. source: "./media/characters/arion/standing.svg",
  44709. extra: 1869/1807,
  44710. bottom: 93/1962
  44711. }
  44712. },
  44713. reclining: {
  44714. height: math.unit(70.5, "cm"),
  44715. weight: math.unit(68, "lb"),
  44716. name: "Reclining",
  44717. image: {
  44718. source: "./media/characters/arion/reclining.svg",
  44719. extra: 937/870,
  44720. bottom: 63/1000
  44721. }
  44722. },
  44723. },
  44724. [
  44725. {
  44726. name: "Colossus Size, Low",
  44727. height: math.unit(33, "meters"),
  44728. default: true
  44729. },
  44730. {
  44731. name: "Colossus Size, Mid",
  44732. height: math.unit(52, "meters")
  44733. },
  44734. {
  44735. name: "Colossus Size, High",
  44736. height: math.unit(60, "meters")
  44737. },
  44738. {
  44739. name: "Titan Size, Low",
  44740. height: math.unit(91, "meters"),
  44741. },
  44742. {
  44743. name: "Titan Size, Mid",
  44744. height: math.unit(122, "meters")
  44745. },
  44746. {
  44747. name: "Titan Size, High",
  44748. height: math.unit(162, "meters")
  44749. },
  44750. ]
  44751. ))
  44752. characterMakers.push(() => makeCharacter(
  44753. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44754. {
  44755. front: {
  44756. height: math.unit(53, "meters"),
  44757. name: "Front",
  44758. image: {
  44759. source: "./media/characters/stellar-marbey/front.svg",
  44760. extra: 1913/1805,
  44761. bottom: 92/2005
  44762. }
  44763. },
  44764. back: {
  44765. height: math.unit(53, "meters"),
  44766. name: "Back",
  44767. image: {
  44768. source: "./media/characters/stellar-marbey/back.svg",
  44769. extra: 1960/1851,
  44770. bottom: 28/1988
  44771. }
  44772. },
  44773. mouth: {
  44774. height: math.unit(3.5, "meters"),
  44775. name: "Mouth",
  44776. image: {
  44777. source: "./media/characters/stellar-marbey/mouth.svg"
  44778. }
  44779. },
  44780. },
  44781. [
  44782. {
  44783. name: "Macro",
  44784. height: math.unit(53, "meters"),
  44785. default: true
  44786. },
  44787. ]
  44788. ))
  44789. characterMakers.push(() => makeCharacter(
  44790. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44791. {
  44792. front: {
  44793. height: math.unit(8 + 1/12, "feet"),
  44794. weight: math.unit(233, "lb"),
  44795. name: "Front",
  44796. image: {
  44797. source: "./media/characters/matsu/front.svg",
  44798. extra: 832/772,
  44799. bottom: 40/872
  44800. }
  44801. },
  44802. back: {
  44803. height: math.unit(8 + 1/12, "feet"),
  44804. weight: math.unit(233, "lb"),
  44805. name: "Back",
  44806. image: {
  44807. source: "./media/characters/matsu/back.svg",
  44808. extra: 839/780,
  44809. bottom: 47/886
  44810. }
  44811. },
  44812. },
  44813. [
  44814. {
  44815. name: "Normal",
  44816. height: math.unit(8 + 1/12, "feet"),
  44817. default: true
  44818. },
  44819. ]
  44820. ))
  44821. characterMakers.push(() => makeCharacter(
  44822. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44823. {
  44824. front: {
  44825. height: math.unit(4, "feet"),
  44826. weight: math.unit(148, "lb"),
  44827. name: "Front",
  44828. image: {
  44829. source: "./media/characters/thiz/front.svg",
  44830. extra: 1913/1748,
  44831. bottom: 62/1975
  44832. }
  44833. },
  44834. },
  44835. [
  44836. {
  44837. name: "Normal",
  44838. height: math.unit(4, "feet"),
  44839. default: true
  44840. },
  44841. ]
  44842. ))
  44843. characterMakers.push(() => makeCharacter(
  44844. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44845. {
  44846. front: {
  44847. height: math.unit(7 + 6/12, "feet"),
  44848. weight: math.unit(267, "lb"),
  44849. name: "Front",
  44850. image: {
  44851. source: "./media/characters/marcel/front.svg",
  44852. extra: 1221/1096,
  44853. bottom: 76/1297
  44854. }
  44855. },
  44856. },
  44857. [
  44858. {
  44859. name: "Normal",
  44860. height: math.unit(7 + 6/12, "feet"),
  44861. default: true
  44862. },
  44863. ]
  44864. ))
  44865. characterMakers.push(() => makeCharacter(
  44866. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44867. {
  44868. side: {
  44869. height: math.unit(42, "meters"),
  44870. name: "Side",
  44871. image: {
  44872. source: "./media/characters/flake/side.svg",
  44873. extra: 1525/1306,
  44874. bottom: 209/1734
  44875. }
  44876. },
  44877. },
  44878. [
  44879. {
  44880. name: "Normal",
  44881. height: math.unit(42, "meters"),
  44882. default: true
  44883. },
  44884. ]
  44885. ))
  44886. characterMakers.push(() => makeCharacter(
  44887. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44888. {
  44889. dressed: {
  44890. height: math.unit(6 + 4/12, "feet"),
  44891. weight: math.unit(520, "lb"),
  44892. name: "Dressed",
  44893. image: {
  44894. source: "./media/characters/someonne/dressed.svg",
  44895. extra: 1020/1010,
  44896. bottom: 178/1198
  44897. }
  44898. },
  44899. undressed: {
  44900. height: math.unit(6 + 4/12, "feet"),
  44901. weight: math.unit(520, "lb"),
  44902. name: "Undressed",
  44903. image: {
  44904. source: "./media/characters/someonne/undressed.svg",
  44905. extra: 1019/1014,
  44906. bottom: 169/1188
  44907. }
  44908. },
  44909. },
  44910. [
  44911. {
  44912. name: "Normal",
  44913. height: math.unit(6 + 4/12, "feet"),
  44914. default: true
  44915. },
  44916. ]
  44917. ))
  44918. characterMakers.push(() => makeCharacter(
  44919. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44920. {
  44921. front: {
  44922. height: math.unit(3, "feet"),
  44923. weight: math.unit(30, "lb"),
  44924. name: "Front",
  44925. image: {
  44926. source: "./media/characters/till/front.svg",
  44927. extra: 892/823,
  44928. bottom: 55/947
  44929. }
  44930. },
  44931. },
  44932. [
  44933. {
  44934. name: "Normal",
  44935. height: math.unit(3, "feet"),
  44936. default: true
  44937. },
  44938. ]
  44939. ))
  44940. characterMakers.push(() => makeCharacter(
  44941. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44942. {
  44943. front: {
  44944. height: math.unit(9 + 8/12, "feet"),
  44945. weight: math.unit(800, "lb"),
  44946. name: "Front",
  44947. image: {
  44948. source: "./media/characters/sydney-heki/front.svg",
  44949. extra: 1360/1300,
  44950. bottom: 22/1382
  44951. }
  44952. },
  44953. back: {
  44954. height: math.unit(9 + 8/12, "feet"),
  44955. weight: math.unit(800, "lb"),
  44956. name: "Back",
  44957. image: {
  44958. source: "./media/characters/sydney-heki/back.svg",
  44959. extra: 1356/1293,
  44960. bottom: 12/1368
  44961. }
  44962. },
  44963. frontDressed: {
  44964. height: math.unit(9 + 8/12, "feet"),
  44965. weight: math.unit(800, "lb"),
  44966. name: "Front-dressed",
  44967. image: {
  44968. source: "./media/characters/sydney-heki/front-dressed.svg",
  44969. extra: 1360/1300,
  44970. bottom: 22/1382
  44971. }
  44972. },
  44973. },
  44974. [
  44975. {
  44976. name: "Normal",
  44977. height: math.unit(9 + 8/12, "feet"),
  44978. default: true
  44979. },
  44980. {
  44981. name: "Macro",
  44982. height: math.unit(500, "feet")
  44983. },
  44984. {
  44985. name: "Megamacro",
  44986. height: math.unit(3.6, "miles")
  44987. },
  44988. ]
  44989. ))
  44990. characterMakers.push(() => makeCharacter(
  44991. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44992. {
  44993. front: {
  44994. height: math.unit(200, "cm"),
  44995. weight: math.unit(250, "lb"),
  44996. name: "Front",
  44997. image: {
  44998. source: "./media/characters/fowler-karlsson/front.svg",
  44999. extra: 897/845,
  45000. bottom: 123/1020
  45001. }
  45002. },
  45003. back: {
  45004. height: math.unit(200, "cm"),
  45005. weight: math.unit(250, "lb"),
  45006. name: "Back",
  45007. image: {
  45008. source: "./media/characters/fowler-karlsson/back.svg",
  45009. extra: 999/944,
  45010. bottom: 26/1025
  45011. }
  45012. },
  45013. dick: {
  45014. height: math.unit(1.92, "feet"),
  45015. weight: math.unit(150, "lb"),
  45016. name: "Dick",
  45017. image: {
  45018. source: "./media/characters/fowler-karlsson/dick.svg"
  45019. }
  45020. },
  45021. },
  45022. [
  45023. {
  45024. name: "Normal",
  45025. height: math.unit(200, "cm"),
  45026. default: true
  45027. },
  45028. {
  45029. name: "Smaller Macro",
  45030. height: math.unit(90, "m")
  45031. },
  45032. {
  45033. name: "Macro",
  45034. height: math.unit(150, "m")
  45035. },
  45036. {
  45037. name: "Bigger Macro",
  45038. height: math.unit(300, "m")
  45039. },
  45040. ]
  45041. ))
  45042. characterMakers.push(() => makeCharacter(
  45043. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45044. {
  45045. side: {
  45046. height: math.unit(8 + 2/12, "feet"),
  45047. weight: math.unit(1, "tonne"),
  45048. name: "Side",
  45049. image: {
  45050. source: "./media/characters/rylide/side.svg",
  45051. extra: 1318/1034,
  45052. bottom: 106/1424
  45053. }
  45054. },
  45055. sitting: {
  45056. height: math.unit(303, "cm"),
  45057. weight: math.unit(1, "tonne"),
  45058. name: "Sitting",
  45059. image: {
  45060. source: "./media/characters/rylide/sitting.svg",
  45061. extra: 1303/1103,
  45062. bottom: 36/1339
  45063. }
  45064. },
  45065. },
  45066. [
  45067. {
  45068. name: "Normal",
  45069. height: math.unit(8 + 2/12, "feet"),
  45070. default: true
  45071. },
  45072. ]
  45073. ))
  45074. characterMakers.push(() => makeCharacter(
  45075. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45076. {
  45077. front: {
  45078. height: math.unit(5 + 10/12, "feet"),
  45079. weight: math.unit(160, "lb"),
  45080. name: "Front",
  45081. image: {
  45082. source: "./media/characters/pudask/front.svg",
  45083. extra: 1616/1590,
  45084. bottom: 161/1777
  45085. }
  45086. },
  45087. },
  45088. [
  45089. {
  45090. name: "Ferret Height",
  45091. height: math.unit(2 + 5/12, "feet")
  45092. },
  45093. {
  45094. name: "Canon Height",
  45095. height: math.unit(5 + 10/12, "feet"),
  45096. default: true
  45097. },
  45098. ]
  45099. ))
  45100. characterMakers.push(() => makeCharacter(
  45101. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45102. {
  45103. front: {
  45104. height: math.unit(3 + 6/12, "feet"),
  45105. weight: math.unit(60, "lb"),
  45106. name: "Front",
  45107. image: {
  45108. source: "./media/characters/ramita/front.svg",
  45109. extra: 1402/1232,
  45110. bottom: 62/1464
  45111. }
  45112. },
  45113. dressed: {
  45114. height: math.unit(3 + 6/12, "feet"),
  45115. weight: math.unit(60, "lb"),
  45116. name: "Dressed",
  45117. image: {
  45118. source: "./media/characters/ramita/dressed.svg",
  45119. extra: 1534/1249,
  45120. bottom: 50/1584
  45121. }
  45122. },
  45123. },
  45124. [
  45125. {
  45126. name: "Normal",
  45127. height: math.unit(3 + 6/12, "feet"),
  45128. default: true
  45129. },
  45130. ]
  45131. ))
  45132. characterMakers.push(() => makeCharacter(
  45133. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45134. {
  45135. front: {
  45136. height: math.unit(8, "feet"),
  45137. name: "Front",
  45138. image: {
  45139. source: "./media/characters/ark/front.svg",
  45140. extra: 772/693,
  45141. bottom: 45/817
  45142. }
  45143. },
  45144. },
  45145. [
  45146. {
  45147. name: "Normal",
  45148. height: math.unit(8, "feet"),
  45149. default: true
  45150. },
  45151. ]
  45152. ))
  45153. characterMakers.push(() => makeCharacter(
  45154. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45155. {
  45156. front: {
  45157. height: math.unit(6, "feet"),
  45158. weight: math.unit(250, "lb"),
  45159. volume: math.unit(5/8, "gallons"),
  45160. name: "Front",
  45161. image: {
  45162. source: "./media/characters/ludwig-horn/front.svg",
  45163. extra: 1782/1635,
  45164. bottom: 96/1878
  45165. }
  45166. },
  45167. back: {
  45168. height: math.unit(6, "feet"),
  45169. weight: math.unit(250, "lb"),
  45170. volume: math.unit(5/8, "gallons"),
  45171. name: "Back",
  45172. image: {
  45173. source: "./media/characters/ludwig-horn/back.svg",
  45174. extra: 1874/1729,
  45175. bottom: 27/1901
  45176. }
  45177. },
  45178. dick: {
  45179. height: math.unit(1.05, "feet"),
  45180. weight: math.unit(15, "lb"),
  45181. volume: math.unit(5/8, "gallons"),
  45182. name: "Dick",
  45183. image: {
  45184. source: "./media/characters/ludwig-horn/dick.svg"
  45185. }
  45186. },
  45187. },
  45188. [
  45189. {
  45190. name: "Small",
  45191. height: math.unit(6, "feet")
  45192. },
  45193. {
  45194. name: "Typical",
  45195. height: math.unit(12, "feet"),
  45196. default: true
  45197. },
  45198. {
  45199. name: "Building",
  45200. height: math.unit(80, "feet")
  45201. },
  45202. {
  45203. name: "Town",
  45204. height: math.unit(800, "feet")
  45205. },
  45206. {
  45207. name: "Kingdom",
  45208. height: math.unit(80000, "feet")
  45209. },
  45210. {
  45211. name: "Planet",
  45212. height: math.unit(8000000, "feet")
  45213. },
  45214. {
  45215. name: "Universe",
  45216. height: math.unit(8000000000, "feet")
  45217. },
  45218. {
  45219. name: "Transcended",
  45220. height: math.unit(8e27, "feet")
  45221. },
  45222. ]
  45223. ))
  45224. characterMakers.push(() => makeCharacter(
  45225. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45226. {
  45227. front: {
  45228. height: math.unit(5, "feet"),
  45229. weight: math.unit(50, "kg"),
  45230. name: "Front",
  45231. image: {
  45232. source: "./media/characters/biot-avery/front.svg",
  45233. extra: 1295/1232,
  45234. bottom: 86/1381
  45235. }
  45236. },
  45237. },
  45238. [
  45239. {
  45240. name: "Normal",
  45241. height: math.unit(5, "feet"),
  45242. default: true
  45243. },
  45244. ]
  45245. ))
  45246. characterMakers.push(() => makeCharacter(
  45247. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45248. {
  45249. front: {
  45250. height: math.unit(6, "feet"),
  45251. name: "Front",
  45252. image: {
  45253. source: "./media/characters/kitsune-kiro/front.svg",
  45254. extra: 1270/1158,
  45255. bottom: 42/1312
  45256. }
  45257. },
  45258. frontAlt: {
  45259. height: math.unit(6, "feet"),
  45260. name: "Front-alt",
  45261. image: {
  45262. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45263. extra: 1130/1081,
  45264. bottom: 36/1166
  45265. }
  45266. },
  45267. },
  45268. [
  45269. {
  45270. name: "Smol",
  45271. height: math.unit(3, "feet")
  45272. },
  45273. {
  45274. name: "Normal",
  45275. height: math.unit(6, "feet"),
  45276. default: true
  45277. },
  45278. ]
  45279. ))
  45280. characterMakers.push(() => makeCharacter(
  45281. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45282. {
  45283. front: {
  45284. height: math.unit(6, "feet"),
  45285. weight: math.unit(125, "lb"),
  45286. name: "Front",
  45287. image: {
  45288. source: "./media/characters/jack-thatcher/front.svg",
  45289. extra: 1474/1370,
  45290. bottom: 26/1500
  45291. }
  45292. },
  45293. back: {
  45294. height: math.unit(6, "feet"),
  45295. weight: math.unit(125, "lb"),
  45296. name: "Back",
  45297. image: {
  45298. source: "./media/characters/jack-thatcher/back.svg",
  45299. extra: 1489/1384,
  45300. bottom: 18/1507
  45301. }
  45302. },
  45303. },
  45304. [
  45305. {
  45306. name: "Normal",
  45307. height: math.unit(6, "feet"),
  45308. default: true
  45309. },
  45310. {
  45311. name: "Macro",
  45312. height: math.unit(75, "feet")
  45313. },
  45314. {
  45315. name: "Macro-er",
  45316. height: math.unit(250, "feet")
  45317. },
  45318. ]
  45319. ))
  45320. characterMakers.push(() => makeCharacter(
  45321. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45322. {
  45323. front: {
  45324. height: math.unit(7, "feet"),
  45325. weight: math.unit(110, "kg"),
  45326. name: "Front",
  45327. image: {
  45328. source: "./media/characters/max-hyper/front.svg",
  45329. extra: 1969/1881,
  45330. bottom: 49/2018
  45331. }
  45332. },
  45333. },
  45334. [
  45335. {
  45336. name: "Normal",
  45337. height: math.unit(7, "feet"),
  45338. default: true
  45339. },
  45340. ]
  45341. ))
  45342. characterMakers.push(() => makeCharacter(
  45343. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45344. {
  45345. front: {
  45346. height: math.unit(5 + 5/12, "feet"),
  45347. weight: math.unit(160, "lb"),
  45348. name: "Front",
  45349. image: {
  45350. source: "./media/characters/spook/front.svg",
  45351. extra: 794/791,
  45352. bottom: 54/848
  45353. }
  45354. },
  45355. back: {
  45356. height: math.unit(5 + 5/12, "feet"),
  45357. weight: math.unit(160, "lb"),
  45358. name: "Back",
  45359. image: {
  45360. source: "./media/characters/spook/back.svg",
  45361. extra: 812/798,
  45362. bottom: 32/844
  45363. }
  45364. },
  45365. },
  45366. [
  45367. {
  45368. name: "Normal",
  45369. height: math.unit(5 + 5/12, "feet"),
  45370. default: true
  45371. },
  45372. ]
  45373. ))
  45374. characterMakers.push(() => makeCharacter(
  45375. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45376. {
  45377. front: {
  45378. height: math.unit(18, "feet"),
  45379. name: "Front",
  45380. image: {
  45381. source: "./media/characters/xeaduulix/front.svg",
  45382. extra: 1380/1166,
  45383. bottom: 110/1490
  45384. }
  45385. },
  45386. back: {
  45387. height: math.unit(18, "feet"),
  45388. name: "Back",
  45389. image: {
  45390. source: "./media/characters/xeaduulix/back.svg",
  45391. extra: 1592/1170,
  45392. bottom: 128/1720
  45393. }
  45394. },
  45395. frontNsfw: {
  45396. height: math.unit(18, "feet"),
  45397. name: "Front (NSFW)",
  45398. image: {
  45399. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45400. extra: 1380/1166,
  45401. bottom: 110/1490
  45402. }
  45403. },
  45404. backNsfw: {
  45405. height: math.unit(18, "feet"),
  45406. name: "Back (NSFW)",
  45407. image: {
  45408. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45409. extra: 1592/1170,
  45410. bottom: 128/1720
  45411. }
  45412. },
  45413. },
  45414. [
  45415. {
  45416. name: "Normal",
  45417. height: math.unit(18, "feet"),
  45418. default: true
  45419. },
  45420. ]
  45421. ))
  45422. characterMakers.push(() => makeCharacter(
  45423. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45424. {
  45425. spreadWings: {
  45426. height: math.unit(20, "feet"),
  45427. name: "Spread Wings",
  45428. image: {
  45429. source: "./media/characters/fledge/spread-wings.svg",
  45430. extra: 693/635,
  45431. bottom: 26/719
  45432. }
  45433. },
  45434. front: {
  45435. height: math.unit(20, "feet"),
  45436. name: "Front",
  45437. image: {
  45438. source: "./media/characters/fledge/front.svg",
  45439. extra: 684/637,
  45440. bottom: 18/702
  45441. }
  45442. },
  45443. frontAlt: {
  45444. height: math.unit(20, "feet"),
  45445. name: "Front (Alt)",
  45446. image: {
  45447. source: "./media/characters/fledge/front-alt.svg",
  45448. extra: 708/664,
  45449. bottom: 13/721
  45450. }
  45451. },
  45452. back: {
  45453. height: math.unit(20, "feet"),
  45454. name: "Back",
  45455. image: {
  45456. source: "./media/characters/fledge/back.svg",
  45457. extra: 718/634,
  45458. bottom: 22/740
  45459. }
  45460. },
  45461. head: {
  45462. height: math.unit(5.55, "feet"),
  45463. name: "Head",
  45464. image: {
  45465. source: "./media/characters/fledge/head.svg"
  45466. }
  45467. },
  45468. headAlt: {
  45469. height: math.unit(5.1, "feet"),
  45470. name: "Head (Alt)",
  45471. image: {
  45472. source: "./media/characters/fledge/head-alt.svg"
  45473. }
  45474. },
  45475. },
  45476. [
  45477. {
  45478. name: "Small",
  45479. height: math.unit(6 + 2/12, "feet")
  45480. },
  45481. {
  45482. name: "Big",
  45483. height: math.unit(20, "feet"),
  45484. default: true
  45485. },
  45486. {
  45487. name: "Giant",
  45488. height: math.unit(100, "feet")
  45489. },
  45490. {
  45491. name: "Macro",
  45492. height: math.unit(200, "feet")
  45493. },
  45494. ]
  45495. ))
  45496. characterMakers.push(() => makeCharacter(
  45497. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45498. {
  45499. front: {
  45500. height: math.unit(1, "meter"),
  45501. name: "Front",
  45502. image: {
  45503. source: "./media/characters/atlas-morenai/front.svg",
  45504. extra: 1275/1043,
  45505. bottom: 19/1294
  45506. }
  45507. },
  45508. back: {
  45509. height: math.unit(1, "meter"),
  45510. name: "Back",
  45511. image: {
  45512. source: "./media/characters/atlas-morenai/back.svg",
  45513. extra: 1141/1001,
  45514. bottom: 25/1166
  45515. }
  45516. },
  45517. },
  45518. [
  45519. {
  45520. name: "Normal",
  45521. height: math.unit(1, "meter"),
  45522. default: true
  45523. },
  45524. {
  45525. name: "Magic-Infused",
  45526. height: math.unit(5, "meters")
  45527. },
  45528. ]
  45529. ))
  45530. characterMakers.push(() => makeCharacter(
  45531. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45532. {
  45533. front: {
  45534. height: math.unit(5, "meters"),
  45535. name: "Front",
  45536. image: {
  45537. source: "./media/characters/cintia/front.svg",
  45538. extra: 1312/1228,
  45539. bottom: 38/1350
  45540. }
  45541. },
  45542. back: {
  45543. height: math.unit(5, "meters"),
  45544. name: "Back",
  45545. image: {
  45546. source: "./media/characters/cintia/back.svg",
  45547. extra: 1260/1166,
  45548. bottom: 98/1358
  45549. }
  45550. },
  45551. frontDick: {
  45552. height: math.unit(5, "meters"),
  45553. name: "Front (Dick)",
  45554. image: {
  45555. source: "./media/characters/cintia/front-dick.svg",
  45556. extra: 1312/1228,
  45557. bottom: 38/1350
  45558. }
  45559. },
  45560. backDick: {
  45561. height: math.unit(5, "meters"),
  45562. name: "Back (Dick)",
  45563. image: {
  45564. source: "./media/characters/cintia/back-dick.svg",
  45565. extra: 1260/1166,
  45566. bottom: 98/1358
  45567. }
  45568. },
  45569. bust: {
  45570. height: math.unit(1.97, "meters"),
  45571. name: "Bust",
  45572. image: {
  45573. source: "./media/characters/cintia/bust.svg",
  45574. extra: 617/565,
  45575. bottom: 0/617
  45576. }
  45577. },
  45578. },
  45579. [
  45580. {
  45581. name: "Normal",
  45582. height: math.unit(5, "meters"),
  45583. default: true
  45584. },
  45585. ]
  45586. ))
  45587. characterMakers.push(() => makeCharacter(
  45588. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45589. {
  45590. side: {
  45591. height: math.unit(100, "feet"),
  45592. name: "Side",
  45593. image: {
  45594. source: "./media/characters/denora/side.svg",
  45595. extra: 875/803,
  45596. bottom: 9/884
  45597. }
  45598. },
  45599. },
  45600. [
  45601. {
  45602. name: "Standard",
  45603. height: math.unit(100, "feet"),
  45604. default: true
  45605. },
  45606. {
  45607. name: "Grand",
  45608. height: math.unit(1000, "feet")
  45609. },
  45610. {
  45611. name: "Conquering",
  45612. height: math.unit(10000, "feet")
  45613. },
  45614. ]
  45615. ))
  45616. characterMakers.push(() => makeCharacter(
  45617. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45618. {
  45619. dressed: {
  45620. height: math.unit(8 + 5/12, "feet"),
  45621. weight: math.unit(700, "lb"),
  45622. name: "Dressed",
  45623. image: {
  45624. source: "./media/characters/kiva/dressed.svg",
  45625. extra: 1102/1055,
  45626. bottom: 60/1162
  45627. }
  45628. },
  45629. nude: {
  45630. height: math.unit(8 + 5/12, "feet"),
  45631. weight: math.unit(700, "lb"),
  45632. name: "Nude",
  45633. image: {
  45634. source: "./media/characters/kiva/nude.svg",
  45635. extra: 1102/1055,
  45636. bottom: 60/1162
  45637. }
  45638. },
  45639. },
  45640. [
  45641. {
  45642. name: "Base Height",
  45643. height: math.unit(8 + 5/12, "feet"),
  45644. default: true
  45645. },
  45646. {
  45647. name: "Macro",
  45648. height: math.unit(100, "feet")
  45649. },
  45650. {
  45651. name: "Max",
  45652. height: math.unit(3280, "feet")
  45653. },
  45654. ]
  45655. ))
  45656. characterMakers.push(() => makeCharacter(
  45657. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45658. {
  45659. front: {
  45660. height: math.unit(6 + 8/12, "feet"),
  45661. weight: math.unit(250, "lb"),
  45662. name: "Front",
  45663. image: {
  45664. source: "./media/characters/ztragon/front.svg",
  45665. extra: 1825/1684,
  45666. bottom: 98/1923
  45667. }
  45668. },
  45669. },
  45670. [
  45671. {
  45672. name: "Normal",
  45673. height: math.unit(6 + 8/12, "feet"),
  45674. default: true
  45675. },
  45676. {
  45677. name: "Macro",
  45678. height: math.unit(80, "feet")
  45679. },
  45680. ]
  45681. ))
  45682. characterMakers.push(() => makeCharacter(
  45683. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45684. {
  45685. front: {
  45686. height: math.unit(10.4, "feet"),
  45687. weight: math.unit(2, "tons"),
  45688. name: "Front",
  45689. image: {
  45690. source: "./media/characters/yesenia/front.svg",
  45691. extra: 1479/1474,
  45692. bottom: 233/1712
  45693. }
  45694. },
  45695. },
  45696. [
  45697. {
  45698. name: "Normal",
  45699. height: math.unit(10.4, "feet"),
  45700. default: true
  45701. },
  45702. ]
  45703. ))
  45704. characterMakers.push(() => makeCharacter(
  45705. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45706. {
  45707. normal: {
  45708. height: math.unit(6 + 1/12, "feet"),
  45709. weight: math.unit(180, "lb"),
  45710. name: "Normal",
  45711. image: {
  45712. source: "./media/characters/leanne-lycheborne/normal.svg",
  45713. extra: 1748/1660,
  45714. bottom: 98/1846
  45715. }
  45716. },
  45717. were: {
  45718. height: math.unit(12, "feet"),
  45719. weight: math.unit(1600, "lb"),
  45720. name: "Were",
  45721. image: {
  45722. source: "./media/characters/leanne-lycheborne/were.svg",
  45723. extra: 1485/1432,
  45724. bottom: 66/1551
  45725. }
  45726. },
  45727. },
  45728. [
  45729. {
  45730. name: "Normal",
  45731. height: math.unit(6 + 1/12, "feet"),
  45732. default: true
  45733. },
  45734. ]
  45735. ))
  45736. characterMakers.push(() => makeCharacter(
  45737. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45738. {
  45739. side: {
  45740. height: math.unit(13, "feet"),
  45741. name: "Side",
  45742. image: {
  45743. source: "./media/characters/kira-tyler/side.svg",
  45744. extra: 693/393,
  45745. bottom: 58/751
  45746. }
  45747. },
  45748. },
  45749. [
  45750. {
  45751. name: "Normal",
  45752. height: math.unit(13, "feet"),
  45753. default: true
  45754. },
  45755. ]
  45756. ))
  45757. characterMakers.push(() => makeCharacter(
  45758. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45759. {
  45760. front: {
  45761. height: math.unit(10.3, "feet"),
  45762. weight: math.unit(150, "lb"),
  45763. name: "Front",
  45764. image: {
  45765. source: "./media/characters/blaze/front.svg",
  45766. extra: 1378/1286,
  45767. bottom: 172/1550
  45768. }
  45769. },
  45770. },
  45771. [
  45772. {
  45773. name: "Normal",
  45774. height: math.unit(10.3, "feet"),
  45775. default: true
  45776. },
  45777. ]
  45778. ))
  45779. characterMakers.push(() => makeCharacter(
  45780. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45781. {
  45782. side: {
  45783. height: math.unit(2, "meters"),
  45784. weight: math.unit(400, "kg"),
  45785. name: "Side",
  45786. image: {
  45787. source: "./media/characters/anu/side.svg",
  45788. extra: 506/394,
  45789. bottom: 18/524
  45790. }
  45791. },
  45792. },
  45793. [
  45794. {
  45795. name: "Humanoid",
  45796. height: math.unit(2, "meters")
  45797. },
  45798. {
  45799. name: "Normal",
  45800. height: math.unit(5, "meters"),
  45801. default: true
  45802. },
  45803. ]
  45804. ))
  45805. characterMakers.push(() => makeCharacter(
  45806. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45807. {
  45808. front: {
  45809. height: math.unit(5 + 5/12, "feet"),
  45810. weight: math.unit(170, "lb"),
  45811. name: "Front",
  45812. image: {
  45813. source: "./media/characters/synx-the-lynx/front.svg",
  45814. extra: 1893/1745,
  45815. bottom: 17/1910
  45816. }
  45817. },
  45818. side: {
  45819. height: math.unit(5 + 5/12, "feet"),
  45820. weight: math.unit(170, "lb"),
  45821. name: "Side",
  45822. image: {
  45823. source: "./media/characters/synx-the-lynx/side.svg",
  45824. extra: 1884/1740,
  45825. bottom: 39/1923
  45826. }
  45827. },
  45828. back: {
  45829. height: math.unit(5 + 5/12, "feet"),
  45830. weight: math.unit(170, "lb"),
  45831. name: "Back",
  45832. image: {
  45833. source: "./media/characters/synx-the-lynx/back.svg",
  45834. extra: 1903/1755,
  45835. bottom: 14/1917
  45836. }
  45837. },
  45838. },
  45839. [
  45840. {
  45841. name: "Normal",
  45842. height: math.unit(5 + 5/12, "feet"),
  45843. default: true
  45844. },
  45845. ]
  45846. ))
  45847. characterMakers.push(() => makeCharacter(
  45848. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45849. {
  45850. back: {
  45851. height: math.unit(15, "feet"),
  45852. name: "Back",
  45853. image: {
  45854. source: "./media/characters/nadezda-fex/back.svg",
  45855. extra: 1695/1481,
  45856. bottom: 25/1720
  45857. }
  45858. },
  45859. },
  45860. [
  45861. {
  45862. name: "Normal",
  45863. height: math.unit(15, "feet"),
  45864. default: true
  45865. },
  45866. {
  45867. name: "Macro",
  45868. height: math.unit(2.5, "miles")
  45869. },
  45870. {
  45871. name: "Goddess",
  45872. height: math.unit(2, "multiverses")
  45873. },
  45874. ]
  45875. ))
  45876. characterMakers.push(() => makeCharacter(
  45877. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45878. {
  45879. front: {
  45880. height: math.unit(216, "cm"),
  45881. name: "Front",
  45882. image: {
  45883. source: "./media/characters/lev/front.svg",
  45884. extra: 1728/1670,
  45885. bottom: 82/1810
  45886. }
  45887. },
  45888. back: {
  45889. height: math.unit(216, "cm"),
  45890. name: "Back",
  45891. image: {
  45892. source: "./media/characters/lev/back.svg",
  45893. extra: 1738/1675,
  45894. bottom: 24/1762
  45895. }
  45896. },
  45897. dressed: {
  45898. height: math.unit(216, "cm"),
  45899. name: "Dressed",
  45900. image: {
  45901. source: "./media/characters/lev/dressed.svg",
  45902. extra: 1397/1351,
  45903. bottom: 73/1470
  45904. }
  45905. },
  45906. head: {
  45907. height: math.unit(0.51, "meter"),
  45908. name: "Head",
  45909. image: {
  45910. source: "./media/characters/lev/head.svg"
  45911. }
  45912. },
  45913. },
  45914. [
  45915. {
  45916. name: "Normal",
  45917. height: math.unit(216, "cm"),
  45918. default: true
  45919. },
  45920. {
  45921. name: "Relatively Macro",
  45922. height: math.unit(80, "meters")
  45923. },
  45924. {
  45925. name: "Megamacro",
  45926. height: math.unit(21600, "meters")
  45927. },
  45928. {
  45929. name: "Megamacro+",
  45930. height: math.unit(64800, "meters")
  45931. },
  45932. ]
  45933. ))
  45934. characterMakers.push(() => makeCharacter(
  45935. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45936. {
  45937. front: {
  45938. height: math.unit(2, "meters"),
  45939. weight: math.unit(80, "kg"),
  45940. name: "Front",
  45941. image: {
  45942. source: "./media/characters/moka/front.svg",
  45943. extra: 1337/1255,
  45944. bottom: 58/1395
  45945. }
  45946. },
  45947. },
  45948. [
  45949. {
  45950. name: "Micro",
  45951. height: math.unit(15, "cm")
  45952. },
  45953. {
  45954. name: "Normal",
  45955. height: math.unit(2, "meters"),
  45956. default: true
  45957. },
  45958. {
  45959. name: "Macro",
  45960. height: math.unit(20, "meters"),
  45961. },
  45962. ]
  45963. ))
  45964. characterMakers.push(() => makeCharacter(
  45965. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45966. {
  45967. front: {
  45968. height: math.unit(9, "feet"),
  45969. weight: math.unit(240, "lb"),
  45970. name: "Front",
  45971. image: {
  45972. source: "./media/characters/kuzco/front.svg",
  45973. extra: 1593/1487,
  45974. bottom: 32/1625
  45975. }
  45976. },
  45977. side: {
  45978. height: math.unit(9, "feet"),
  45979. weight: math.unit(240, "lb"),
  45980. name: "Side",
  45981. image: {
  45982. source: "./media/characters/kuzco/side.svg",
  45983. extra: 1575/1485,
  45984. bottom: 30/1605
  45985. }
  45986. },
  45987. back: {
  45988. height: math.unit(9, "feet"),
  45989. weight: math.unit(240, "lb"),
  45990. name: "Back",
  45991. image: {
  45992. source: "./media/characters/kuzco/back.svg",
  45993. extra: 1603/1514,
  45994. bottom: 14/1617
  45995. }
  45996. },
  45997. },
  45998. [
  45999. {
  46000. name: "Normal",
  46001. height: math.unit(9, "feet"),
  46002. default: true
  46003. },
  46004. ]
  46005. ))
  46006. characterMakers.push(() => makeCharacter(
  46007. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46008. {
  46009. side: {
  46010. height: math.unit(2, "meters"),
  46011. weight: math.unit(300, "kg"),
  46012. name: "Side",
  46013. image: {
  46014. source: "./media/characters/ceruleus/side.svg",
  46015. extra: 1068/974,
  46016. bottom: 126/1194
  46017. }
  46018. },
  46019. },
  46020. [
  46021. {
  46022. name: "Normal",
  46023. height: math.unit(16, "meters"),
  46024. default: true
  46025. },
  46026. ]
  46027. ))
  46028. characterMakers.push(() => makeCharacter(
  46029. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46030. {
  46031. front: {
  46032. height: math.unit(9, "feet"),
  46033. weight: math.unit(500, "kg"),
  46034. name: "Front",
  46035. image: {
  46036. source: "./media/characters/acouya/front.svg",
  46037. extra: 1660/1473,
  46038. bottom: 28/1688
  46039. }
  46040. },
  46041. },
  46042. [
  46043. {
  46044. name: "Normal",
  46045. height: math.unit(9, "feet"),
  46046. default: true
  46047. },
  46048. ]
  46049. ))
  46050. characterMakers.push(() => makeCharacter(
  46051. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46052. {
  46053. front: {
  46054. height: math.unit(5 + 6/12, "feet"),
  46055. weight: math.unit(195, "lb"),
  46056. name: "Front",
  46057. image: {
  46058. source: "./media/characters/vant/front.svg",
  46059. extra: 1396/1320,
  46060. bottom: 20/1416
  46061. }
  46062. },
  46063. back: {
  46064. height: math.unit(5 + 6/12, "feet"),
  46065. weight: math.unit(195, "lb"),
  46066. name: "Back",
  46067. image: {
  46068. source: "./media/characters/vant/back.svg",
  46069. extra: 1396/1320,
  46070. bottom: 20/1416
  46071. }
  46072. },
  46073. maw: {
  46074. height: math.unit(0.75, "feet"),
  46075. name: "Maw",
  46076. image: {
  46077. source: "./media/characters/vant/maw.svg"
  46078. }
  46079. },
  46080. paw: {
  46081. height: math.unit(1.07, "feet"),
  46082. name: "Paw",
  46083. image: {
  46084. source: "./media/characters/vant/paw.svg"
  46085. }
  46086. },
  46087. },
  46088. [
  46089. {
  46090. name: "Micro",
  46091. height: math.unit(0.25, "inches")
  46092. },
  46093. {
  46094. name: "Normal",
  46095. height: math.unit(5 + 6/12, "feet"),
  46096. default: true
  46097. },
  46098. {
  46099. name: "Macro",
  46100. height: math.unit(75, "feet")
  46101. },
  46102. ]
  46103. ))
  46104. characterMakers.push(() => makeCharacter(
  46105. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46106. {
  46107. front: {
  46108. height: math.unit(30, "meters"),
  46109. weight: math.unit(363, "tons"),
  46110. name: "Front",
  46111. image: {
  46112. source: "./media/characters/ahra/front.svg",
  46113. extra: 1914/1814,
  46114. bottom: 46/1960
  46115. }
  46116. },
  46117. },
  46118. [
  46119. {
  46120. name: "Macro",
  46121. height: math.unit(30, "meters"),
  46122. default: true
  46123. },
  46124. ]
  46125. ))
  46126. characterMakers.push(() => makeCharacter(
  46127. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46128. {
  46129. undressed: {
  46130. height: math.unit(2, "m"),
  46131. weight: math.unit(250, "kg"),
  46132. name: "Undressed",
  46133. image: {
  46134. source: "./media/characters/coriander/undressed.svg",
  46135. extra: 1757/1606,
  46136. bottom: 107/1864
  46137. }
  46138. },
  46139. dressed: {
  46140. height: math.unit(2, "m"),
  46141. weight: math.unit(250, "kg"),
  46142. name: "Dressed",
  46143. image: {
  46144. source: "./media/characters/coriander/dressed.svg",
  46145. extra: 1757/1606,
  46146. bottom: 107/1864
  46147. }
  46148. },
  46149. },
  46150. [
  46151. {
  46152. name: "Normal",
  46153. height: math.unit(4, "meters"),
  46154. default: true
  46155. },
  46156. {
  46157. name: "XL",
  46158. height: math.unit(6, "meters")
  46159. },
  46160. {
  46161. name: "XXL",
  46162. height: math.unit(8, "meters")
  46163. },
  46164. ]
  46165. ))
  46166. characterMakers.push(() => makeCharacter(
  46167. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46168. {
  46169. front: {
  46170. height: math.unit(6, "feet"),
  46171. name: "Front",
  46172. image: {
  46173. source: "./media/characters/syrinx/front.svg",
  46174. extra: 1557/1259,
  46175. bottom: 171/1728
  46176. }
  46177. },
  46178. },
  46179. [
  46180. {
  46181. name: "Normal",
  46182. height: math.unit(6 + 3/12, "feet"),
  46183. default: true
  46184. },
  46185. ]
  46186. ))
  46187. characterMakers.push(() => makeCharacter(
  46188. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46189. {
  46190. front: {
  46191. height: math.unit(11 + 6/12, "feet"),
  46192. weight: math.unit(1.5, "tons"),
  46193. name: "Front",
  46194. image: {
  46195. source: "./media/characters/bor/front.svg",
  46196. extra: 1189/1109,
  46197. bottom: 170/1359
  46198. }
  46199. },
  46200. },
  46201. [
  46202. {
  46203. name: "Normal",
  46204. height: math.unit(11 + 6/12, "feet"),
  46205. default: true
  46206. },
  46207. {
  46208. name: "Macro",
  46209. height: math.unit(32 + 9/12, "feet")
  46210. },
  46211. ]
  46212. ))
  46213. characterMakers.push(() => makeCharacter(
  46214. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46215. {
  46216. anthro: {
  46217. height: math.unit(9, "feet"),
  46218. weight: math.unit(2076, "lb"),
  46219. name: "Anthro",
  46220. image: {
  46221. source: "./media/characters/abacus/anthro.svg",
  46222. extra: 1540/1494,
  46223. bottom: 233/1773
  46224. }
  46225. },
  46226. pigeon: {
  46227. height: math.unit(1, "feet"),
  46228. name: "Pigeon",
  46229. image: {
  46230. source: "./media/characters/abacus/pigeon.svg",
  46231. extra: 528/525,
  46232. bottom: 46/574
  46233. }
  46234. },
  46235. },
  46236. [
  46237. {
  46238. name: "Normal",
  46239. height: math.unit(9, "feet"),
  46240. default: true
  46241. },
  46242. ]
  46243. ))
  46244. characterMakers.push(() => makeCharacter(
  46245. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46246. {
  46247. side: {
  46248. height: math.unit(6, "feet"),
  46249. name: "Side",
  46250. image: {
  46251. source: "./media/characters/delkhan/side.svg",
  46252. extra: 1884/1786,
  46253. bottom: 308/2192
  46254. }
  46255. },
  46256. head: {
  46257. height: math.unit(3.38, "feet"),
  46258. name: "Head",
  46259. image: {
  46260. source: "./media/characters/delkhan/head.svg"
  46261. }
  46262. },
  46263. },
  46264. [
  46265. {
  46266. name: "Normal",
  46267. height: math.unit(72, "feet"),
  46268. default: true
  46269. },
  46270. {
  46271. name: "Giant",
  46272. height: math.unit(172, "feet")
  46273. },
  46274. ]
  46275. ))
  46276. characterMakers.push(() => makeCharacter(
  46277. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46278. {
  46279. standing: {
  46280. height: math.unit(6, "feet"),
  46281. name: "Standing",
  46282. image: {
  46283. source: "./media/characters/euchidat/standing.svg",
  46284. extra: 1612/1553,
  46285. bottom: 116/1728
  46286. }
  46287. },
  46288. leaning: {
  46289. height: math.unit(6, "feet"),
  46290. name: "Leaning",
  46291. image: {
  46292. source: "./media/characters/euchidat/leaning.svg",
  46293. extra: 1719/1674,
  46294. bottom: 27/1746
  46295. }
  46296. },
  46297. },
  46298. [
  46299. {
  46300. name: "Normal",
  46301. height: math.unit(175, "feet"),
  46302. default: true
  46303. },
  46304. {
  46305. name: "Megamacro",
  46306. height: math.unit(190, "miles")
  46307. },
  46308. {
  46309. name: "Gigamacro",
  46310. height: math.unit(190000, "miles")
  46311. },
  46312. ]
  46313. ))
  46314. characterMakers.push(() => makeCharacter(
  46315. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46316. {
  46317. front: {
  46318. height: math.unit(6, "feet"),
  46319. weight: math.unit(150, "lb"),
  46320. name: "Front",
  46321. image: {
  46322. source: "./media/characters/rebecca-stack/front.svg",
  46323. extra: 1256/1201,
  46324. bottom: 18/1274
  46325. }
  46326. },
  46327. },
  46328. [
  46329. {
  46330. name: "Normal",
  46331. height: math.unit(5 + 8/12, "feet"),
  46332. default: true
  46333. },
  46334. {
  46335. name: "Demolitionist",
  46336. height: math.unit(200, "feet")
  46337. },
  46338. {
  46339. name: "Out of Control",
  46340. height: math.unit(2, "miles")
  46341. },
  46342. {
  46343. name: "Giga",
  46344. height: math.unit(7200, "miles")
  46345. },
  46346. ]
  46347. ))
  46348. characterMakers.push(() => makeCharacter(
  46349. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46350. {
  46351. front: {
  46352. height: math.unit(6, "feet"),
  46353. weight: math.unit(150, "lb"),
  46354. name: "Front",
  46355. image: {
  46356. source: "./media/characters/jenny-cartwright/front.svg",
  46357. extra: 1384/1376,
  46358. bottom: 58/1442
  46359. }
  46360. },
  46361. },
  46362. [
  46363. {
  46364. name: "Normal",
  46365. height: math.unit(6 + 7/12, "feet"),
  46366. default: true
  46367. },
  46368. {
  46369. name: "Librarian",
  46370. height: math.unit(55, "feet")
  46371. },
  46372. {
  46373. name: "Sightseer",
  46374. height: math.unit(50, "miles")
  46375. },
  46376. {
  46377. name: "Giga",
  46378. height: math.unit(30000, "miles")
  46379. },
  46380. ]
  46381. ))
  46382. characterMakers.push(() => makeCharacter(
  46383. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46384. {
  46385. nude: {
  46386. height: math.unit(8, "feet"),
  46387. weight: math.unit(225, "lb"),
  46388. name: "Nude",
  46389. image: {
  46390. source: "./media/characters/marvy/nude.svg",
  46391. extra: 1900/1683,
  46392. bottom: 89/1989
  46393. }
  46394. },
  46395. dressed: {
  46396. height: math.unit(8, "feet"),
  46397. weight: math.unit(225, "lb"),
  46398. name: "Dressed",
  46399. image: {
  46400. source: "./media/characters/marvy/dressed.svg",
  46401. extra: 1900/1683,
  46402. bottom: 89/1989
  46403. }
  46404. },
  46405. head: {
  46406. height: math.unit(2.85, "feet"),
  46407. name: "Head",
  46408. image: {
  46409. source: "./media/characters/marvy/head.svg"
  46410. }
  46411. },
  46412. },
  46413. [
  46414. {
  46415. name: "Normal",
  46416. height: math.unit(8, "feet"),
  46417. default: true
  46418. },
  46419. ]
  46420. ))
  46421. characterMakers.push(() => makeCharacter(
  46422. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46423. {
  46424. front: {
  46425. height: math.unit(8, "feet"),
  46426. weight: math.unit(250, "lb"),
  46427. name: "Front",
  46428. image: {
  46429. source: "./media/characters/leah/front.svg",
  46430. extra: 1257/1149,
  46431. bottom: 109/1366
  46432. }
  46433. },
  46434. },
  46435. [
  46436. {
  46437. name: "Normal",
  46438. height: math.unit(8, "feet"),
  46439. default: true
  46440. },
  46441. {
  46442. name: "Minimacro",
  46443. height: math.unit(40, "feet")
  46444. },
  46445. {
  46446. name: "Macro",
  46447. height: math.unit(124, "feet")
  46448. },
  46449. {
  46450. name: "Megamacro",
  46451. height: math.unit(850, "feet")
  46452. },
  46453. ]
  46454. ))
  46455. characterMakers.push(() => makeCharacter(
  46456. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46457. {
  46458. side: {
  46459. height: math.unit(13 + 6/12, "feet"),
  46460. weight: math.unit(3200, "lb"),
  46461. name: "Side",
  46462. image: {
  46463. source: "./media/characters/alvir/side.svg",
  46464. extra: 896/589,
  46465. bottom: 26/922
  46466. }
  46467. },
  46468. },
  46469. [
  46470. {
  46471. name: "Normal",
  46472. height: math.unit(13 + 6/12, "feet"),
  46473. default: true
  46474. },
  46475. ]
  46476. ))
  46477. characterMakers.push(() => makeCharacter(
  46478. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46479. {
  46480. front: {
  46481. height: math.unit(5 + 4/12, "feet"),
  46482. weight: math.unit(236, "lb"),
  46483. name: "Front",
  46484. image: {
  46485. source: "./media/characters/zaina-khalil/front.svg",
  46486. extra: 1533/1485,
  46487. bottom: 94/1627
  46488. }
  46489. },
  46490. side: {
  46491. height: math.unit(5 + 4/12, "feet"),
  46492. weight: math.unit(236, "lb"),
  46493. name: "Side",
  46494. image: {
  46495. source: "./media/characters/zaina-khalil/side.svg",
  46496. extra: 1537/1498,
  46497. bottom: 66/1603
  46498. }
  46499. },
  46500. back: {
  46501. height: math.unit(5 + 4/12, "feet"),
  46502. weight: math.unit(236, "lb"),
  46503. name: "Back",
  46504. image: {
  46505. source: "./media/characters/zaina-khalil/back.svg",
  46506. extra: 1546/1494,
  46507. bottom: 89/1635
  46508. }
  46509. },
  46510. },
  46511. [
  46512. {
  46513. name: "Normal",
  46514. height: math.unit(5 + 4/12, "feet"),
  46515. default: true
  46516. },
  46517. ]
  46518. ))
  46519. characterMakers.push(() => makeCharacter(
  46520. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46521. {
  46522. side: {
  46523. height: math.unit(12, "feet"),
  46524. weight: math.unit(4000, "lb"),
  46525. name: "Side",
  46526. image: {
  46527. source: "./media/characters/terry/side.svg",
  46528. extra: 1518/1439,
  46529. bottom: 149/1667
  46530. }
  46531. },
  46532. },
  46533. [
  46534. {
  46535. name: "Normal",
  46536. height: math.unit(12, "feet"),
  46537. default: true
  46538. },
  46539. ]
  46540. ))
  46541. characterMakers.push(() => makeCharacter(
  46542. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46543. {
  46544. front: {
  46545. height: math.unit(12, "feet"),
  46546. weight: math.unit(1500, "lb"),
  46547. name: "Front",
  46548. image: {
  46549. source: "./media/characters/kahea/front.svg",
  46550. extra: 1722/1617,
  46551. bottom: 179/1901
  46552. }
  46553. },
  46554. },
  46555. [
  46556. {
  46557. name: "Normal",
  46558. height: math.unit(12, "feet"),
  46559. default: true
  46560. },
  46561. ]
  46562. ))
  46563. characterMakers.push(() => makeCharacter(
  46564. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46565. {
  46566. demonFront: {
  46567. height: math.unit(36, "feet"),
  46568. name: "Front",
  46569. image: {
  46570. source: "./media/characters/alex-xuria/demon-front.svg",
  46571. extra: 1705/1673,
  46572. bottom: 198/1903
  46573. },
  46574. form: "demon",
  46575. default: true
  46576. },
  46577. demonBack: {
  46578. height: math.unit(36, "feet"),
  46579. name: "Back",
  46580. image: {
  46581. source: "./media/characters/alex-xuria/demon-back.svg",
  46582. extra: 1725/1693,
  46583. bottom: 70/1795
  46584. },
  46585. form: "demon"
  46586. },
  46587. demonHead: {
  46588. height: math.unit(2.14, "meters"),
  46589. name: "Head",
  46590. image: {
  46591. source: "./media/characters/alex-xuria/demon-head.svg"
  46592. },
  46593. form: "demon"
  46594. },
  46595. demonHand: {
  46596. height: math.unit(1.61, "meters"),
  46597. name: "Hand",
  46598. image: {
  46599. source: "./media/characters/alex-xuria/demon-hand.svg"
  46600. },
  46601. form: "demon"
  46602. },
  46603. demonPaw: {
  46604. height: math.unit(1.35, "meters"),
  46605. name: "Paw",
  46606. image: {
  46607. source: "./media/characters/alex-xuria/demon-paw.svg"
  46608. },
  46609. form: "demon"
  46610. },
  46611. demonFoot: {
  46612. height: math.unit(2.2, "meters"),
  46613. name: "Foot",
  46614. image: {
  46615. source: "./media/characters/alex-xuria/demon-foot.svg"
  46616. },
  46617. form: "demon"
  46618. },
  46619. demonCock: {
  46620. height: math.unit(1.74, "meters"),
  46621. name: "Cock",
  46622. image: {
  46623. source: "./media/characters/alex-xuria/demon-cock.svg"
  46624. },
  46625. form: "demon"
  46626. },
  46627. demonTailClosed: {
  46628. height: math.unit(1.47, "meters"),
  46629. name: "Tail (Closed)",
  46630. image: {
  46631. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46632. },
  46633. form: "demon"
  46634. },
  46635. demonTailOpen: {
  46636. height: math.unit(2.85, "meters"),
  46637. name: "Tail (Open)",
  46638. image: {
  46639. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46640. },
  46641. form: "demon"
  46642. },
  46643. incubusFront: {
  46644. height: math.unit(12, "feet"),
  46645. name: "Front",
  46646. image: {
  46647. source: "./media/characters/alex-xuria/incubus-front.svg",
  46648. extra: 1754/1677,
  46649. bottom: 125/1879
  46650. },
  46651. form: "incubus",
  46652. default: true
  46653. },
  46654. incubusBack: {
  46655. height: math.unit(12, "feet"),
  46656. name: "Back",
  46657. image: {
  46658. source: "./media/characters/alex-xuria/incubus-back.svg",
  46659. extra: 1702/1647,
  46660. bottom: 30/1732
  46661. },
  46662. form: "incubus"
  46663. },
  46664. incubusHead: {
  46665. height: math.unit(3.45, "feet"),
  46666. name: "Head",
  46667. image: {
  46668. source: "./media/characters/alex-xuria/incubus-head.svg"
  46669. },
  46670. form: "incubus"
  46671. },
  46672. rabbitFront: {
  46673. height: math.unit(6, "feet"),
  46674. name: "Front",
  46675. image: {
  46676. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46677. extra: 1369/1349,
  46678. bottom: 45/1414
  46679. },
  46680. form: "rabbit",
  46681. default: true
  46682. },
  46683. rabbitSide: {
  46684. height: math.unit(6, "feet"),
  46685. name: "Side",
  46686. image: {
  46687. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46688. extra: 1370/1356,
  46689. bottom: 37/1407
  46690. },
  46691. form: "rabbit"
  46692. },
  46693. rabbitBack: {
  46694. height: math.unit(6, "feet"),
  46695. name: "Back",
  46696. image: {
  46697. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46698. extra: 1375/1358,
  46699. bottom: 43/1418
  46700. },
  46701. form: "rabbit"
  46702. },
  46703. },
  46704. [
  46705. {
  46706. name: "Normal",
  46707. height: math.unit(6, "feet"),
  46708. default: true,
  46709. form: "rabbit"
  46710. },
  46711. {
  46712. name: "Incubus",
  46713. height: math.unit(12, "feet"),
  46714. default: true,
  46715. form: "incubus"
  46716. },
  46717. {
  46718. name: "Demon",
  46719. height: math.unit(36, "feet"),
  46720. default: true,
  46721. form: "demon"
  46722. }
  46723. ],
  46724. {
  46725. "demon": {
  46726. name: "Demon",
  46727. default: true
  46728. },
  46729. "incubus": {
  46730. name: "Incubus",
  46731. },
  46732. "rabbit": {
  46733. name: "Rabbit"
  46734. }
  46735. }
  46736. ))
  46737. characterMakers.push(() => makeCharacter(
  46738. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46739. {
  46740. front: {
  46741. height: math.unit(7 + 5/12, "feet"),
  46742. weight: math.unit(510, "lb"),
  46743. name: "Front",
  46744. image: {
  46745. source: "./media/characters/syrup/front.svg",
  46746. extra: 932/916,
  46747. bottom: 26/958
  46748. }
  46749. },
  46750. },
  46751. [
  46752. {
  46753. name: "Normal",
  46754. height: math.unit(7 + 5/12, "feet"),
  46755. default: true
  46756. },
  46757. {
  46758. name: "Big",
  46759. height: math.unit(50, "feet")
  46760. },
  46761. {
  46762. name: "Macro",
  46763. height: math.unit(300, "feet")
  46764. },
  46765. {
  46766. name: "Megamacro",
  46767. height: math.unit(1, "mile")
  46768. },
  46769. ]
  46770. ))
  46771. characterMakers.push(() => makeCharacter(
  46772. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46773. {
  46774. front: {
  46775. height: math.unit(6 + 9/12, "feet"),
  46776. name: "Front",
  46777. image: {
  46778. source: "./media/characters/zeimne/front.svg",
  46779. extra: 1969/1806,
  46780. bottom: 53/2022
  46781. }
  46782. },
  46783. },
  46784. [
  46785. {
  46786. name: "Normal",
  46787. height: math.unit(6 + 9/12, "feet"),
  46788. default: true
  46789. },
  46790. {
  46791. name: "Giant",
  46792. height: math.unit(550, "feet")
  46793. },
  46794. {
  46795. name: "Mega",
  46796. height: math.unit(3, "miles")
  46797. },
  46798. {
  46799. name: "Giga",
  46800. height: math.unit(250, "miles")
  46801. },
  46802. {
  46803. name: "Tera",
  46804. height: math.unit(1, "AU")
  46805. },
  46806. ]
  46807. ))
  46808. characterMakers.push(() => makeCharacter(
  46809. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46810. {
  46811. front: {
  46812. height: math.unit(5 + 2/12, "feet"),
  46813. name: "Front",
  46814. image: {
  46815. source: "./media/characters/grar/front.svg",
  46816. extra: 1331/1119,
  46817. bottom: 60/1391
  46818. }
  46819. },
  46820. back: {
  46821. height: math.unit(5 + 2/12, "feet"),
  46822. name: "Back",
  46823. image: {
  46824. source: "./media/characters/grar/back.svg",
  46825. extra: 1385/1169,
  46826. bottom: 23/1408
  46827. }
  46828. },
  46829. },
  46830. [
  46831. {
  46832. name: "Normal",
  46833. height: math.unit(5 + 2/12, "feet"),
  46834. default: true
  46835. },
  46836. ]
  46837. ))
  46838. characterMakers.push(() => makeCharacter(
  46839. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46840. {
  46841. front: {
  46842. height: math.unit(13 + 7/12, "feet"),
  46843. weight: math.unit(2200, "lb"),
  46844. name: "Front",
  46845. image: {
  46846. source: "./media/characters/endraya/front.svg",
  46847. extra: 1289/1215,
  46848. bottom: 50/1339
  46849. }
  46850. },
  46851. nude: {
  46852. height: math.unit(13 + 7/12, "feet"),
  46853. weight: math.unit(2200, "lb"),
  46854. name: "Nude",
  46855. image: {
  46856. source: "./media/characters/endraya/nude.svg",
  46857. extra: 1247/1171,
  46858. bottom: 40/1287
  46859. }
  46860. },
  46861. head: {
  46862. height: math.unit(2.6, "feet"),
  46863. name: "Head",
  46864. image: {
  46865. source: "./media/characters/endraya/head.svg"
  46866. }
  46867. },
  46868. slit: {
  46869. height: math.unit(3.4, "feet"),
  46870. name: "Slit",
  46871. image: {
  46872. source: "./media/characters/endraya/slit.svg"
  46873. }
  46874. },
  46875. },
  46876. [
  46877. {
  46878. name: "Normal",
  46879. height: math.unit(13 + 7/12, "feet"),
  46880. default: true
  46881. },
  46882. {
  46883. name: "Macro",
  46884. height: math.unit(200, "feet")
  46885. },
  46886. ]
  46887. ))
  46888. characterMakers.push(() => makeCharacter(
  46889. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46890. {
  46891. front: {
  46892. height: math.unit(1.81, "meters"),
  46893. weight: math.unit(69, "kg"),
  46894. name: "Front",
  46895. image: {
  46896. source: "./media/characters/rodryana/front.svg",
  46897. extra: 2002/1921,
  46898. bottom: 53/2055
  46899. }
  46900. },
  46901. back: {
  46902. height: math.unit(1.81, "meters"),
  46903. weight: math.unit(69, "kg"),
  46904. name: "Back",
  46905. image: {
  46906. source: "./media/characters/rodryana/back.svg",
  46907. extra: 1993/1926,
  46908. bottom: 48/2041
  46909. }
  46910. },
  46911. maw: {
  46912. height: math.unit(0.19769417475, "meters"),
  46913. name: "Maw",
  46914. image: {
  46915. source: "./media/characters/rodryana/maw.svg"
  46916. }
  46917. },
  46918. slit: {
  46919. height: math.unit(0.31631067961, "meters"),
  46920. name: "Slit",
  46921. image: {
  46922. source: "./media/characters/rodryana/slit.svg"
  46923. }
  46924. },
  46925. },
  46926. [
  46927. {
  46928. name: "Normal",
  46929. height: math.unit(1.81, "meters")
  46930. },
  46931. {
  46932. name: "Mini Macro",
  46933. height: math.unit(181, "meters")
  46934. },
  46935. {
  46936. name: "Macro",
  46937. height: math.unit(452, "meters"),
  46938. default: true
  46939. },
  46940. {
  46941. name: "Mega Macro",
  46942. height: math.unit(1.375, "km")
  46943. },
  46944. {
  46945. name: "Giga Macro",
  46946. height: math.unit(13.575, "km")
  46947. },
  46948. ]
  46949. ))
  46950. characterMakers.push(() => makeCharacter(
  46951. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46952. {
  46953. front: {
  46954. height: math.unit(6, "feet"),
  46955. weight: math.unit(1000, "lb"),
  46956. name: "Front",
  46957. image: {
  46958. source: "./media/characters/asaya/front.svg",
  46959. extra: 1460/1200,
  46960. bottom: 71/1531
  46961. }
  46962. },
  46963. },
  46964. [
  46965. {
  46966. name: "Normal",
  46967. height: math.unit(8, "km"),
  46968. default: true
  46969. },
  46970. ]
  46971. ))
  46972. characterMakers.push(() => makeCharacter(
  46973. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46974. {
  46975. front: {
  46976. height: math.unit(3.5, "meters"),
  46977. name: "Front",
  46978. image: {
  46979. source: "./media/characters/sarzu-and-israz/front.svg",
  46980. extra: 1570/1558,
  46981. bottom: 150/1720
  46982. },
  46983. },
  46984. back: {
  46985. height: math.unit(3.5, "meters"),
  46986. name: "Back",
  46987. image: {
  46988. source: "./media/characters/sarzu-and-israz/back.svg",
  46989. extra: 1523/1509,
  46990. bottom: 132/1655
  46991. },
  46992. },
  46993. frontFemale: {
  46994. height: math.unit(3.5, "meters"),
  46995. name: "Front (Female)",
  46996. image: {
  46997. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46998. extra: 1570/1558,
  46999. bottom: 150/1720
  47000. },
  47001. },
  47002. frontHerm: {
  47003. height: math.unit(3.5, "meters"),
  47004. name: "Front (Herm)",
  47005. image: {
  47006. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47007. extra: 1570/1558,
  47008. bottom: 150/1720
  47009. },
  47010. },
  47011. },
  47012. [
  47013. {
  47014. name: "Normal",
  47015. height: math.unit(3.5, "meters"),
  47016. default: true,
  47017. },
  47018. {
  47019. name: "Macro",
  47020. height: math.unit(65.5, "meters"),
  47021. },
  47022. ],
  47023. ))
  47024. characterMakers.push(() => makeCharacter(
  47025. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47026. {
  47027. front: {
  47028. height: math.unit(6, "feet"),
  47029. weight: math.unit(250, "lb"),
  47030. name: "Front",
  47031. image: {
  47032. source: "./media/characters/zenimma/front.svg",
  47033. extra: 1346/1320,
  47034. bottom: 58/1404
  47035. }
  47036. },
  47037. back: {
  47038. height: math.unit(6, "feet"),
  47039. weight: math.unit(250, "lb"),
  47040. name: "Back",
  47041. image: {
  47042. source: "./media/characters/zenimma/back.svg",
  47043. extra: 1324/1308,
  47044. bottom: 44/1368
  47045. }
  47046. },
  47047. dick: {
  47048. height: math.unit(1.44, "feet"),
  47049. name: "Dick",
  47050. image: {
  47051. source: "./media/characters/zenimma/dick.svg"
  47052. }
  47053. },
  47054. },
  47055. [
  47056. {
  47057. name: "Canon Height",
  47058. height: math.unit(66, "miles"),
  47059. default: true
  47060. },
  47061. ]
  47062. ))
  47063. characterMakers.push(() => makeCharacter(
  47064. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47065. {
  47066. nude: {
  47067. height: math.unit(6, "feet"),
  47068. weight: math.unit(150, "lb"),
  47069. name: "Nude",
  47070. image: {
  47071. source: "./media/characters/shavon/nude.svg",
  47072. extra: 1242/1096,
  47073. bottom: 98/1340
  47074. }
  47075. },
  47076. dressed: {
  47077. height: math.unit(6, "feet"),
  47078. weight: math.unit(150, "lb"),
  47079. name: "Dressed",
  47080. image: {
  47081. source: "./media/characters/shavon/dressed.svg",
  47082. extra: 1242/1096,
  47083. bottom: 98/1340
  47084. }
  47085. },
  47086. },
  47087. [
  47088. {
  47089. name: "Macro",
  47090. height: math.unit(255, "feet"),
  47091. default: true
  47092. },
  47093. ]
  47094. ))
  47095. characterMakers.push(() => makeCharacter(
  47096. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47097. {
  47098. front: {
  47099. height: math.unit(6, "feet"),
  47100. name: "Front",
  47101. image: {
  47102. source: "./media/characters/steph/front.svg",
  47103. extra: 1430/1330,
  47104. bottom: 54/1484
  47105. }
  47106. },
  47107. },
  47108. [
  47109. {
  47110. name: "Normal",
  47111. height: math.unit(6, "feet"),
  47112. default: true
  47113. },
  47114. ]
  47115. ))
  47116. characterMakers.push(() => makeCharacter(
  47117. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47118. {
  47119. front: {
  47120. height: math.unit(9, "feet"),
  47121. weight: math.unit(400, "lb"),
  47122. name: "Front",
  47123. image: {
  47124. source: "./media/characters/kil'aman/front.svg",
  47125. extra: 1210/1159,
  47126. bottom: 109/1319
  47127. }
  47128. },
  47129. head: {
  47130. height: math.unit(2.14, "feet"),
  47131. name: "Head",
  47132. image: {
  47133. source: "./media/characters/kil'aman/head.svg"
  47134. }
  47135. },
  47136. maw: {
  47137. height: math.unit(1.21, "feet"),
  47138. name: "Maw",
  47139. image: {
  47140. source: "./media/characters/kil'aman/maw.svg"
  47141. }
  47142. },
  47143. foot: {
  47144. height: math.unit(1.7, "feet"),
  47145. name: "Foot",
  47146. image: {
  47147. source: "./media/characters/kil'aman/foot.svg"
  47148. }
  47149. },
  47150. dick: {
  47151. height: math.unit(2.1, "feet"),
  47152. name: "Dick",
  47153. image: {
  47154. source: "./media/characters/kil'aman/dick.svg"
  47155. }
  47156. },
  47157. },
  47158. [
  47159. {
  47160. name: "Normal",
  47161. height: math.unit(9, "feet")
  47162. },
  47163. {
  47164. name: "Canon Height",
  47165. height: math.unit(10, "miles"),
  47166. default: true
  47167. },
  47168. {
  47169. name: "Maximum",
  47170. height: math.unit(6e9, "miles")
  47171. },
  47172. ]
  47173. ))
  47174. characterMakers.push(() => makeCharacter(
  47175. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47176. {
  47177. front: {
  47178. height: math.unit(90, "feet"),
  47179. weight: math.unit(675000, "lb"),
  47180. name: "Front",
  47181. image: {
  47182. source: "./media/characters/qadan/front.svg",
  47183. extra: 1012/1004,
  47184. bottom: 78/1090
  47185. }
  47186. },
  47187. back: {
  47188. height: math.unit(90, "feet"),
  47189. weight: math.unit(675000, "lb"),
  47190. name: "Back",
  47191. image: {
  47192. source: "./media/characters/qadan/back.svg",
  47193. extra: 1042/1031,
  47194. bottom: 55/1097
  47195. }
  47196. },
  47197. armored: {
  47198. height: math.unit(90, "feet"),
  47199. weight: math.unit(675000, "lb"),
  47200. name: "Armored",
  47201. image: {
  47202. source: "./media/characters/qadan/armored.svg",
  47203. extra: 1047/1037,
  47204. bottom: 48/1095
  47205. }
  47206. },
  47207. },
  47208. [
  47209. {
  47210. name: "Normal",
  47211. height: math.unit(90, "feet"),
  47212. default: true
  47213. },
  47214. ]
  47215. ))
  47216. characterMakers.push(() => makeCharacter(
  47217. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47218. {
  47219. front: {
  47220. height: math.unit(6, "feet"),
  47221. weight: math.unit(225, "lb"),
  47222. name: "Front",
  47223. image: {
  47224. source: "./media/characters/brooke/front.svg",
  47225. extra: 1050/1010,
  47226. bottom: 66/1116
  47227. }
  47228. },
  47229. back: {
  47230. height: math.unit(6, "feet"),
  47231. weight: math.unit(225, "lb"),
  47232. name: "Back",
  47233. image: {
  47234. source: "./media/characters/brooke/back.svg",
  47235. extra: 1053/1013,
  47236. bottom: 41/1094
  47237. }
  47238. },
  47239. dressed: {
  47240. height: math.unit(6, "feet"),
  47241. weight: math.unit(225, "lb"),
  47242. name: "Dressed",
  47243. image: {
  47244. source: "./media/characters/brooke/dressed.svg",
  47245. extra: 1050/1010,
  47246. bottom: 66/1116
  47247. }
  47248. },
  47249. },
  47250. [
  47251. {
  47252. name: "Canon Height",
  47253. height: math.unit(500, "miles"),
  47254. default: true
  47255. },
  47256. ]
  47257. ))
  47258. characterMakers.push(() => makeCharacter(
  47259. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47260. {
  47261. front: {
  47262. height: math.unit(6 + 2/12, "feet"),
  47263. weight: math.unit(210, "lb"),
  47264. name: "Front",
  47265. image: {
  47266. source: "./media/characters/wubs/front.svg",
  47267. extra: 1345/1325,
  47268. bottom: 70/1415
  47269. }
  47270. },
  47271. back: {
  47272. height: math.unit(6 + 2/12, "feet"),
  47273. weight: math.unit(210, "lb"),
  47274. name: "Back",
  47275. image: {
  47276. source: "./media/characters/wubs/back.svg",
  47277. extra: 1296/1275,
  47278. bottom: 58/1354
  47279. }
  47280. },
  47281. },
  47282. [
  47283. {
  47284. name: "Normal",
  47285. height: math.unit(6 + 2/12, "feet"),
  47286. default: true
  47287. },
  47288. {
  47289. name: "Macro",
  47290. height: math.unit(1000, "feet")
  47291. },
  47292. {
  47293. name: "Megamacro",
  47294. height: math.unit(1, "mile")
  47295. },
  47296. ]
  47297. ))
  47298. characterMakers.push(() => makeCharacter(
  47299. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47300. {
  47301. front: {
  47302. height: math.unit(4, "feet"),
  47303. weight: math.unit(120, "lb"),
  47304. name: "Front",
  47305. image: {
  47306. source: "./media/characters/blue/front.svg",
  47307. extra: 1636/1525,
  47308. bottom: 43/1679
  47309. }
  47310. },
  47311. back: {
  47312. height: math.unit(4, "feet"),
  47313. weight: math.unit(120, "lb"),
  47314. name: "Back",
  47315. image: {
  47316. source: "./media/characters/blue/back.svg",
  47317. extra: 1660/1560,
  47318. bottom: 57/1717
  47319. }
  47320. },
  47321. paws: {
  47322. height: math.unit(0.826, "feet"),
  47323. name: "Paws",
  47324. image: {
  47325. source: "./media/characters/blue/paws.svg"
  47326. }
  47327. },
  47328. },
  47329. [
  47330. {
  47331. name: "Micro",
  47332. height: math.unit(3, "inches")
  47333. },
  47334. {
  47335. name: "Normal",
  47336. height: math.unit(4, "feet"),
  47337. default: true
  47338. },
  47339. {
  47340. name: "Femenine Form",
  47341. height: math.unit(14, "feet")
  47342. },
  47343. {
  47344. name: "Werebat Form",
  47345. height: math.unit(18, "feet")
  47346. },
  47347. ]
  47348. ))
  47349. characterMakers.push(() => makeCharacter(
  47350. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47351. {
  47352. female: {
  47353. height: math.unit(7 + 4/12, "feet"),
  47354. weight: math.unit(243, "lb"),
  47355. name: "Female",
  47356. image: {
  47357. source: "./media/characters/kaya/female.svg",
  47358. extra: 975/898,
  47359. bottom: 34/1009
  47360. }
  47361. },
  47362. herm: {
  47363. height: math.unit(7 + 4/12, "feet"),
  47364. weight: math.unit(243, "lb"),
  47365. name: "Herm",
  47366. image: {
  47367. source: "./media/characters/kaya/herm.svg",
  47368. extra: 975/898,
  47369. bottom: 34/1009
  47370. }
  47371. },
  47372. },
  47373. [
  47374. {
  47375. name: "Normal",
  47376. height: math.unit(7 + 4/12, "feet"),
  47377. default: true
  47378. },
  47379. ]
  47380. ))
  47381. characterMakers.push(() => makeCharacter(
  47382. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47383. {
  47384. female: {
  47385. height: math.unit(9 + 4/12, "feet"),
  47386. weight: math.unit(398, "lb"),
  47387. name: "Female",
  47388. image: {
  47389. source: "./media/characters/kassandra/female.svg",
  47390. extra: 908/839,
  47391. bottom: 61/969
  47392. }
  47393. },
  47394. intersex: {
  47395. height: math.unit(9 + 4/12, "feet"),
  47396. weight: math.unit(398, "lb"),
  47397. name: "Intersex",
  47398. image: {
  47399. source: "./media/characters/kassandra/intersex.svg",
  47400. extra: 908/839,
  47401. bottom: 61/969
  47402. }
  47403. },
  47404. },
  47405. [
  47406. {
  47407. name: "Normal",
  47408. height: math.unit(9 + 4/12, "feet"),
  47409. default: true
  47410. },
  47411. ]
  47412. ))
  47413. characterMakers.push(() => makeCharacter(
  47414. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47415. {
  47416. front: {
  47417. height: math.unit(3, "meters"),
  47418. name: "Front",
  47419. image: {
  47420. source: "./media/characters/amy/front.svg",
  47421. extra: 1380/1343,
  47422. bottom: 70/1450
  47423. }
  47424. },
  47425. back: {
  47426. height: math.unit(3, "meters"),
  47427. name: "Back",
  47428. image: {
  47429. source: "./media/characters/amy/back.svg",
  47430. extra: 1380/1347,
  47431. bottom: 66/1446
  47432. }
  47433. },
  47434. },
  47435. [
  47436. {
  47437. name: "Normal",
  47438. height: math.unit(3, "meters"),
  47439. default: true
  47440. },
  47441. ]
  47442. ))
  47443. characterMakers.push(() => makeCharacter(
  47444. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47445. {
  47446. side: {
  47447. height: math.unit(47, "cm"),
  47448. weight: math.unit(10.8, "kg"),
  47449. name: "Side",
  47450. image: {
  47451. source: "./media/characters/alphaschakal/side.svg",
  47452. extra: 1058/568,
  47453. bottom: 62/1120
  47454. }
  47455. },
  47456. back: {
  47457. height: math.unit(78, "cm"),
  47458. weight: math.unit(10.8, "kg"),
  47459. name: "Back",
  47460. image: {
  47461. source: "./media/characters/alphaschakal/back.svg",
  47462. extra: 1102/942,
  47463. bottom: 185/1287
  47464. }
  47465. },
  47466. head: {
  47467. height: math.unit(28, "cm"),
  47468. name: "Head",
  47469. image: {
  47470. source: "./media/characters/alphaschakal/head.svg",
  47471. extra: 696/508,
  47472. bottom: 0/696
  47473. }
  47474. },
  47475. paw: {
  47476. height: math.unit(16, "cm"),
  47477. name: "Paw",
  47478. image: {
  47479. source: "./media/characters/alphaschakal/paw.svg"
  47480. }
  47481. },
  47482. },
  47483. [
  47484. {
  47485. name: "Normal",
  47486. height: math.unit(47, "cm"),
  47487. default: true
  47488. },
  47489. {
  47490. name: "Macro",
  47491. height: math.unit(340, "cm")
  47492. },
  47493. ]
  47494. ))
  47495. characterMakers.push(() => makeCharacter(
  47496. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47497. {
  47498. front: {
  47499. height: math.unit(36, "earths"),
  47500. name: "Front",
  47501. image: {
  47502. source: "./media/characters/ecobyss/front.svg",
  47503. extra: 1282/1215,
  47504. bottom: 11/1293
  47505. }
  47506. },
  47507. back: {
  47508. height: math.unit(36, "earths"),
  47509. name: "Back",
  47510. image: {
  47511. source: "./media/characters/ecobyss/back.svg",
  47512. extra: 1291/1222,
  47513. bottom: 8/1299
  47514. }
  47515. },
  47516. },
  47517. [
  47518. {
  47519. name: "Normal",
  47520. height: math.unit(36, "earths"),
  47521. default: true
  47522. },
  47523. ]
  47524. ))
  47525. characterMakers.push(() => makeCharacter(
  47526. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47527. {
  47528. front: {
  47529. height: math.unit(12, "feet"),
  47530. name: "Front",
  47531. image: {
  47532. source: "./media/characters/vasuk/front.svg",
  47533. extra: 1326/1207,
  47534. bottom: 64/1390
  47535. }
  47536. },
  47537. },
  47538. [
  47539. {
  47540. name: "Normal",
  47541. height: math.unit(12, "feet"),
  47542. default: true
  47543. },
  47544. ]
  47545. ))
  47546. characterMakers.push(() => makeCharacter(
  47547. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47548. {
  47549. side: {
  47550. height: math.unit(100, "feet"),
  47551. name: "Side",
  47552. image: {
  47553. source: "./media/characters/linneaus/side.svg",
  47554. extra: 987/807,
  47555. bottom: 47/1034
  47556. }
  47557. },
  47558. },
  47559. [
  47560. {
  47561. name: "Macro",
  47562. height: math.unit(100, "feet"),
  47563. default: true
  47564. },
  47565. ]
  47566. ))
  47567. characterMakers.push(() => makeCharacter(
  47568. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47569. {
  47570. front: {
  47571. height: math.unit(8, "feet"),
  47572. weight: math.unit(1200, "lb"),
  47573. name: "Front",
  47574. image: {
  47575. source: "./media/characters/nyterious-daligdig/front.svg",
  47576. extra: 1284/1094,
  47577. bottom: 84/1368
  47578. }
  47579. },
  47580. back: {
  47581. height: math.unit(8, "feet"),
  47582. weight: math.unit(1200, "lb"),
  47583. name: "Back",
  47584. image: {
  47585. source: "./media/characters/nyterious-daligdig/back.svg",
  47586. extra: 1301/1121,
  47587. bottom: 129/1430
  47588. }
  47589. },
  47590. mouth: {
  47591. height: math.unit(1.464, "feet"),
  47592. name: "Mouth",
  47593. image: {
  47594. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47595. }
  47596. },
  47597. },
  47598. [
  47599. {
  47600. name: "Small",
  47601. height: math.unit(8, "feet"),
  47602. default: true
  47603. },
  47604. {
  47605. name: "Normal",
  47606. height: math.unit(15, "feet")
  47607. },
  47608. {
  47609. name: "Macro",
  47610. height: math.unit(90, "feet")
  47611. },
  47612. ]
  47613. ))
  47614. characterMakers.push(() => makeCharacter(
  47615. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47616. {
  47617. front: {
  47618. height: math.unit(7 + 4/12, "feet"),
  47619. weight: math.unit(252, "lb"),
  47620. name: "Front",
  47621. image: {
  47622. source: "./media/characters/bandel/front.svg",
  47623. extra: 1946/1775,
  47624. bottom: 26/1972
  47625. }
  47626. },
  47627. back: {
  47628. height: math.unit(7 + 4/12, "feet"),
  47629. weight: math.unit(252, "lb"),
  47630. name: "Back",
  47631. image: {
  47632. source: "./media/characters/bandel/back.svg",
  47633. extra: 1940/1770,
  47634. bottom: 25/1965
  47635. }
  47636. },
  47637. maw: {
  47638. height: math.unit(2.15, "feet"),
  47639. name: "Maw",
  47640. image: {
  47641. source: "./media/characters/bandel/maw.svg"
  47642. }
  47643. },
  47644. stomach: {
  47645. height: math.unit(1.95, "feet"),
  47646. name: "Stomach",
  47647. image: {
  47648. source: "./media/characters/bandel/stomach.svg"
  47649. }
  47650. },
  47651. },
  47652. [
  47653. {
  47654. name: "Normal",
  47655. height: math.unit(7 + 4/12, "feet"),
  47656. default: true
  47657. },
  47658. ]
  47659. ))
  47660. characterMakers.push(() => makeCharacter(
  47661. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47662. {
  47663. front: {
  47664. height: math.unit(10 + 5/12, "feet"),
  47665. weight: math.unit(773.5, "kg"),
  47666. name: "Front",
  47667. image: {
  47668. source: "./media/characters/zed/front.svg",
  47669. extra: 987/941,
  47670. bottom: 52/1039
  47671. }
  47672. },
  47673. },
  47674. [
  47675. {
  47676. name: "Short",
  47677. height: math.unit(5 + 4/12, "feet")
  47678. },
  47679. {
  47680. name: "Average",
  47681. height: math.unit(10 + 5/12, "feet"),
  47682. default: true
  47683. },
  47684. {
  47685. name: "Mini-Macro",
  47686. height: math.unit(24 + 9/12, "feet")
  47687. },
  47688. {
  47689. name: "Macro",
  47690. height: math.unit(249, "feet")
  47691. },
  47692. {
  47693. name: "Mega-Macro",
  47694. height: math.unit(12490, "feet")
  47695. },
  47696. {
  47697. name: "Giga-Macro",
  47698. height: math.unit(24.9, "miles")
  47699. },
  47700. {
  47701. name: "Tera-Macro",
  47702. height: math.unit(24900, "miles")
  47703. },
  47704. {
  47705. name: "Cosmic Scale",
  47706. height: math.unit(38.9, "lightyears")
  47707. },
  47708. {
  47709. name: "Universal Scale",
  47710. height: math.unit(138e12, "lightyears")
  47711. },
  47712. ]
  47713. ))
  47714. characterMakers.push(() => makeCharacter(
  47715. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47716. {
  47717. front: {
  47718. height: math.unit(1561, "inches"),
  47719. name: "Front",
  47720. image: {
  47721. source: "./media/characters/ivan/front.svg",
  47722. extra: 1126/1071,
  47723. bottom: 26/1152
  47724. }
  47725. },
  47726. back: {
  47727. height: math.unit(1561, "inches"),
  47728. name: "Back",
  47729. image: {
  47730. source: "./media/characters/ivan/back.svg",
  47731. extra: 1134/1079,
  47732. bottom: 30/1164
  47733. }
  47734. },
  47735. },
  47736. [
  47737. {
  47738. name: "Normal",
  47739. height: math.unit(1561, "inches"),
  47740. default: true
  47741. },
  47742. ]
  47743. ))
  47744. characterMakers.push(() => makeCharacter(
  47745. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47746. {
  47747. front: {
  47748. height: math.unit(5 + 7/12, "feet"),
  47749. weight: math.unit(150, "lb"),
  47750. name: "Front",
  47751. image: {
  47752. source: "./media/characters/robin-arctic-hare/front.svg",
  47753. extra: 1148/974,
  47754. bottom: 20/1168
  47755. }
  47756. },
  47757. },
  47758. [
  47759. {
  47760. name: "Normal",
  47761. height: math.unit(5 + 7/12, "feet"),
  47762. default: true
  47763. },
  47764. ]
  47765. ))
  47766. characterMakers.push(() => makeCharacter(
  47767. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47768. {
  47769. side: {
  47770. height: math.unit(5, "feet"),
  47771. name: "Side",
  47772. image: {
  47773. source: "./media/characters/birch/side.svg",
  47774. extra: 985/796,
  47775. bottom: 111/1096
  47776. }
  47777. },
  47778. },
  47779. [
  47780. {
  47781. name: "Normal",
  47782. height: math.unit(5, "feet"),
  47783. default: true
  47784. },
  47785. ]
  47786. ))
  47787. characterMakers.push(() => makeCharacter(
  47788. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47789. {
  47790. front: {
  47791. height: math.unit(4, "feet"),
  47792. name: "Front",
  47793. image: {
  47794. source: "./media/characters/rasp/front.svg",
  47795. extra: 561/478,
  47796. bottom: 74/635
  47797. }
  47798. },
  47799. },
  47800. [
  47801. {
  47802. name: "Normal",
  47803. height: math.unit(4, "feet"),
  47804. default: true
  47805. },
  47806. ]
  47807. ))
  47808. characterMakers.push(() => makeCharacter(
  47809. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47810. {
  47811. front: {
  47812. height: math.unit(4 + 6/12, "feet"),
  47813. name: "Front",
  47814. image: {
  47815. source: "./media/characters/agatha/front.svg",
  47816. extra: 947/933,
  47817. bottom: 42/989
  47818. }
  47819. },
  47820. back: {
  47821. height: math.unit(4 + 6/12, "feet"),
  47822. name: "Back",
  47823. image: {
  47824. source: "./media/characters/agatha/back.svg",
  47825. extra: 935/922,
  47826. bottom: 48/983
  47827. }
  47828. },
  47829. },
  47830. [
  47831. {
  47832. name: "Normal",
  47833. height: math.unit(4 + 6 /12, "feet"),
  47834. default: true
  47835. },
  47836. {
  47837. name: "Max Size",
  47838. height: math.unit(500, "feet")
  47839. },
  47840. ]
  47841. ))
  47842. characterMakers.push(() => makeCharacter(
  47843. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47844. {
  47845. side: {
  47846. height: math.unit(30, "feet"),
  47847. name: "Side",
  47848. image: {
  47849. source: "./media/characters/roggy/side.svg",
  47850. extra: 909/643,
  47851. bottom: 63/972
  47852. }
  47853. },
  47854. lounging: {
  47855. height: math.unit(20, "feet"),
  47856. name: "Lounging",
  47857. image: {
  47858. source: "./media/characters/roggy/lounging.svg",
  47859. extra: 643/479,
  47860. bottom: 145/788
  47861. }
  47862. },
  47863. handpaw: {
  47864. height: math.unit(13.1, "feet"),
  47865. name: "Handpaw",
  47866. image: {
  47867. source: "./media/characters/roggy/handpaw.svg"
  47868. }
  47869. },
  47870. footpaw: {
  47871. height: math.unit(15.8, "feet"),
  47872. name: "Footpaw",
  47873. image: {
  47874. source: "./media/characters/roggy/footpaw.svg"
  47875. }
  47876. },
  47877. },
  47878. [
  47879. {
  47880. name: "Menacing",
  47881. height: math.unit(30, "feet"),
  47882. default: true
  47883. },
  47884. ]
  47885. ))
  47886. characterMakers.push(() => makeCharacter(
  47887. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47888. {
  47889. front: {
  47890. height: math.unit(5 + 7/12, "feet"),
  47891. weight: math.unit(135, "lb"),
  47892. name: "Front",
  47893. image: {
  47894. source: "./media/characters/naomi/front.svg",
  47895. extra: 1209/1154,
  47896. bottom: 129/1338
  47897. }
  47898. },
  47899. back: {
  47900. height: math.unit(5 + 7/12, "feet"),
  47901. weight: math.unit(135, "lb"),
  47902. name: "Back",
  47903. image: {
  47904. source: "./media/characters/naomi/back.svg",
  47905. extra: 1252/1190,
  47906. bottom: 23/1275
  47907. }
  47908. },
  47909. },
  47910. [
  47911. {
  47912. name: "Normal",
  47913. height: math.unit(5 + 7 /12, "feet"),
  47914. default: true
  47915. },
  47916. ]
  47917. ))
  47918. characterMakers.push(() => makeCharacter(
  47919. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47920. {
  47921. side: {
  47922. height: math.unit(35, "meters"),
  47923. name: "Side",
  47924. image: {
  47925. source: "./media/characters/kimpi/side.svg",
  47926. extra: 419/382,
  47927. bottom: 63/482
  47928. }
  47929. },
  47930. hand: {
  47931. height: math.unit(8.96, "meters"),
  47932. name: "Hand",
  47933. image: {
  47934. source: "./media/characters/kimpi/hand.svg"
  47935. }
  47936. },
  47937. },
  47938. [
  47939. {
  47940. name: "Normal",
  47941. height: math.unit(35, "meters"),
  47942. default: true
  47943. },
  47944. ]
  47945. ))
  47946. characterMakers.push(() => makeCharacter(
  47947. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47948. {
  47949. front: {
  47950. height: math.unit(4 + 4/12, "feet"),
  47951. name: "Front",
  47952. image: {
  47953. source: "./media/characters/pepper-purrloin/front.svg",
  47954. extra: 1141/1024,
  47955. bottom: 21/1162
  47956. }
  47957. },
  47958. },
  47959. [
  47960. {
  47961. name: "Normal",
  47962. height: math.unit(4 + 4/12, "feet"),
  47963. default: true
  47964. },
  47965. ]
  47966. ))
  47967. characterMakers.push(() => makeCharacter(
  47968. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47969. {
  47970. front: {
  47971. height: math.unit(6 + 2/12, "feet"),
  47972. name: "Front",
  47973. image: {
  47974. source: "./media/characters/raphael/front.svg",
  47975. extra: 1101/962,
  47976. bottom: 59/1160
  47977. }
  47978. },
  47979. },
  47980. [
  47981. {
  47982. name: "Normal",
  47983. height: math.unit(6 + 2/12, "feet"),
  47984. default: true
  47985. },
  47986. ]
  47987. ))
  47988. characterMakers.push(() => makeCharacter(
  47989. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47990. {
  47991. front: {
  47992. height: math.unit(6, "feet"),
  47993. weight: math.unit(150, "lb"),
  47994. name: "Front",
  47995. image: {
  47996. source: "./media/characters/victor-williams/front.svg",
  47997. extra: 1894/1825,
  47998. bottom: 67/1961
  47999. }
  48000. },
  48001. },
  48002. [
  48003. {
  48004. name: "Normal",
  48005. height: math.unit(6, "feet"),
  48006. default: true
  48007. },
  48008. ]
  48009. ))
  48010. characterMakers.push(() => makeCharacter(
  48011. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48012. {
  48013. front: {
  48014. height: math.unit(5 + 8/12, "feet"),
  48015. weight: math.unit(150, "lb"),
  48016. name: "Front",
  48017. image: {
  48018. source: "./media/characters/rachel/front.svg",
  48019. extra: 1902/1787,
  48020. bottom: 46/1948
  48021. }
  48022. },
  48023. },
  48024. [
  48025. {
  48026. name: "Base Height",
  48027. height: math.unit(5 + 8/12, "feet"),
  48028. default: true
  48029. },
  48030. {
  48031. name: "Macro",
  48032. height: math.unit(200, "feet")
  48033. },
  48034. {
  48035. name: "Mega Macro",
  48036. height: math.unit(1, "mile")
  48037. },
  48038. {
  48039. name: "Giga Macro",
  48040. height: math.unit(1500, "miles")
  48041. },
  48042. {
  48043. name: "Tera Macro",
  48044. height: math.unit(8000, "miles")
  48045. },
  48046. {
  48047. name: "Tera Macro+",
  48048. height: math.unit(2e5, "miles")
  48049. },
  48050. ]
  48051. ))
  48052. characterMakers.push(() => makeCharacter(
  48053. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48054. {
  48055. front: {
  48056. height: math.unit(6.5, "feet"),
  48057. name: "Front",
  48058. image: {
  48059. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48060. extra: 860/819,
  48061. bottom: 307/1167
  48062. }
  48063. },
  48064. back: {
  48065. height: math.unit(6.5, "feet"),
  48066. name: "Back",
  48067. image: {
  48068. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48069. extra: 880/837,
  48070. bottom: 395/1275
  48071. }
  48072. },
  48073. sleeping: {
  48074. height: math.unit(2.79, "feet"),
  48075. name: "Sleeping",
  48076. image: {
  48077. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48078. extra: 465/383,
  48079. bottom: 263/728
  48080. }
  48081. },
  48082. maw: {
  48083. height: math.unit(2.52, "feet"),
  48084. name: "Maw",
  48085. image: {
  48086. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48087. }
  48088. },
  48089. },
  48090. [
  48091. {
  48092. name: "Normal",
  48093. height: math.unit(6.5, "feet"),
  48094. default: true
  48095. },
  48096. ]
  48097. ))
  48098. characterMakers.push(() => makeCharacter(
  48099. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48100. {
  48101. front: {
  48102. height: math.unit(5, "feet"),
  48103. name: "Front",
  48104. image: {
  48105. source: "./media/characters/nova-nerium/front.svg",
  48106. extra: 1548/1392,
  48107. bottom: 374/1922
  48108. }
  48109. },
  48110. back: {
  48111. height: math.unit(5, "feet"),
  48112. name: "Back",
  48113. image: {
  48114. source: "./media/characters/nova-nerium/back.svg",
  48115. extra: 1658/1468,
  48116. bottom: 257/1915
  48117. }
  48118. },
  48119. },
  48120. [
  48121. {
  48122. name: "Normal",
  48123. height: math.unit(5, "feet"),
  48124. default: true
  48125. },
  48126. ]
  48127. ))
  48128. characterMakers.push(() => makeCharacter(
  48129. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48130. {
  48131. front: {
  48132. height: math.unit(5 + 4/12, "feet"),
  48133. name: "Front",
  48134. image: {
  48135. source: "./media/characters/ashe-pyriph/front.svg",
  48136. extra: 1935/1747,
  48137. bottom: 60/1995
  48138. }
  48139. },
  48140. },
  48141. [
  48142. {
  48143. name: "Normal",
  48144. height: math.unit(5 + 4/12, "feet"),
  48145. default: true
  48146. },
  48147. ]
  48148. ))
  48149. characterMakers.push(() => makeCharacter(
  48150. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48151. {
  48152. front: {
  48153. height: math.unit(8.7, "feet"),
  48154. name: "Front",
  48155. image: {
  48156. source: "./media/characters/flicker-wisp/front.svg",
  48157. extra: 1835/1613,
  48158. bottom: 449/2284
  48159. }
  48160. },
  48161. side: {
  48162. height: math.unit(8.7, "feet"),
  48163. name: "Side",
  48164. image: {
  48165. source: "./media/characters/flicker-wisp/side.svg",
  48166. extra: 1841/1642,
  48167. bottom: 336/2177
  48168. },
  48169. default: true
  48170. },
  48171. maw: {
  48172. height: math.unit(3.35, "feet"),
  48173. name: "Maw",
  48174. image: {
  48175. source: "./media/characters/flicker-wisp/maw.svg",
  48176. extra: 2338/1506,
  48177. bottom: 0/2338
  48178. }
  48179. },
  48180. ovipositor: {
  48181. height: math.unit(4.95, "feet"),
  48182. name: "Ovipositor",
  48183. image: {
  48184. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48185. }
  48186. },
  48187. egg: {
  48188. height: math.unit(0.385, "feet"),
  48189. weight: math.unit(2, "lb"),
  48190. name: "Egg",
  48191. image: {
  48192. source: "./media/characters/flicker-wisp/egg.svg"
  48193. }
  48194. },
  48195. },
  48196. [
  48197. {
  48198. name: "Normal",
  48199. height: math.unit(8.7, "feet"),
  48200. default: true
  48201. },
  48202. ]
  48203. ))
  48204. characterMakers.push(() => makeCharacter(
  48205. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48206. {
  48207. side: {
  48208. height: math.unit(11, "feet"),
  48209. name: "Side",
  48210. image: {
  48211. source: "./media/characters/faefnul/side.svg",
  48212. extra: 1100/1007,
  48213. bottom: 0/1100
  48214. }
  48215. },
  48216. },
  48217. [
  48218. {
  48219. name: "Normal",
  48220. height: math.unit(11, "feet"),
  48221. default: true
  48222. },
  48223. ]
  48224. ))
  48225. characterMakers.push(() => makeCharacter(
  48226. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48227. {
  48228. front: {
  48229. height: math.unit(6 + 2/12, "feet"),
  48230. name: "Front",
  48231. image: {
  48232. source: "./media/characters/shady/front.svg",
  48233. extra: 502/461,
  48234. bottom: 9/511
  48235. }
  48236. },
  48237. kneeling: {
  48238. height: math.unit(4.6, "feet"),
  48239. name: "Kneeling",
  48240. image: {
  48241. source: "./media/characters/shady/kneeling.svg",
  48242. extra: 1328/1219,
  48243. bottom: 117/1445
  48244. }
  48245. },
  48246. maw: {
  48247. height: math.unit(2, "feet"),
  48248. name: "Maw",
  48249. image: {
  48250. source: "./media/characters/shady/maw.svg"
  48251. }
  48252. },
  48253. },
  48254. [
  48255. {
  48256. name: "Nano",
  48257. height: math.unit(1, "mm")
  48258. },
  48259. {
  48260. name: "Micro",
  48261. height: math.unit(12, "mm")
  48262. },
  48263. {
  48264. name: "Tiny",
  48265. height: math.unit(3, "inches")
  48266. },
  48267. {
  48268. name: "Normal",
  48269. height: math.unit(6 + 2/12, "feet"),
  48270. default: true
  48271. },
  48272. {
  48273. name: "Big",
  48274. height: math.unit(15, "feet")
  48275. },
  48276. {
  48277. name: "Macro",
  48278. height: math.unit(150, "feet")
  48279. },
  48280. {
  48281. name: "Titanic",
  48282. height: math.unit(500, "feet")
  48283. },
  48284. ]
  48285. ))
  48286. characterMakers.push(() => makeCharacter(
  48287. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48288. {
  48289. front: {
  48290. height: math.unit(12, "feet"),
  48291. name: "Front",
  48292. image: {
  48293. source: "./media/characters/fenrir/front.svg",
  48294. extra: 968/875,
  48295. bottom: 22/990
  48296. }
  48297. },
  48298. },
  48299. [
  48300. {
  48301. name: "Big",
  48302. height: math.unit(12, "feet"),
  48303. default: true
  48304. },
  48305. ]
  48306. ))
  48307. characterMakers.push(() => makeCharacter(
  48308. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48309. {
  48310. front: {
  48311. height: math.unit(5 + 4/12, "feet"),
  48312. name: "Front",
  48313. image: {
  48314. source: "./media/characters/makar/front.svg",
  48315. extra: 1181/1112,
  48316. bottom: 78/1259
  48317. }
  48318. },
  48319. },
  48320. [
  48321. {
  48322. name: "Normal",
  48323. height: math.unit(5 + 4/12, "feet"),
  48324. default: true
  48325. },
  48326. ]
  48327. ))
  48328. characterMakers.push(() => makeCharacter(
  48329. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48330. {
  48331. front: {
  48332. height: math.unit(5 + 7/12, "feet"),
  48333. name: "Front",
  48334. image: {
  48335. source: "./media/characters/callow/front.svg",
  48336. extra: 1482/1304,
  48337. bottom: 23/1505
  48338. }
  48339. },
  48340. back: {
  48341. height: math.unit(5 + 7/12, "feet"),
  48342. name: "Back",
  48343. image: {
  48344. source: "./media/characters/callow/back.svg",
  48345. extra: 1484/1296,
  48346. bottom: 25/1509
  48347. }
  48348. },
  48349. },
  48350. [
  48351. {
  48352. name: "Micro",
  48353. height: math.unit(3, "inches"),
  48354. default: true
  48355. },
  48356. {
  48357. name: "Normal",
  48358. height: math.unit(5 + 7/12, "feet")
  48359. },
  48360. ]
  48361. ))
  48362. characterMakers.push(() => makeCharacter(
  48363. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48364. {
  48365. front: {
  48366. height: math.unit(6 + 2/12, "feet"),
  48367. name: "Front",
  48368. image: {
  48369. source: "./media/characters/natel/front.svg",
  48370. extra: 1833/1692,
  48371. bottom: 166/1999
  48372. }
  48373. },
  48374. },
  48375. [
  48376. {
  48377. name: "Normal",
  48378. height: math.unit(6 + 2/12, "feet"),
  48379. default: true
  48380. },
  48381. ]
  48382. ))
  48383. characterMakers.push(() => makeCharacter(
  48384. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48385. {
  48386. front: {
  48387. height: math.unit(1.75, "meters"),
  48388. name: "Front",
  48389. image: {
  48390. source: "./media/characters/misu/front.svg",
  48391. extra: 1690/1558,
  48392. bottom: 234/1924
  48393. }
  48394. },
  48395. back: {
  48396. height: math.unit(1.75, "meters"),
  48397. name: "Back",
  48398. image: {
  48399. source: "./media/characters/misu/back.svg",
  48400. extra: 1762/1618,
  48401. bottom: 146/1908
  48402. }
  48403. },
  48404. frontNude: {
  48405. height: math.unit(1.75, "meters"),
  48406. name: "Front (Nude)",
  48407. image: {
  48408. source: "./media/characters/misu/front-nude.svg",
  48409. extra: 1690/1558,
  48410. bottom: 234/1924
  48411. }
  48412. },
  48413. backNude: {
  48414. height: math.unit(1.75, "meters"),
  48415. name: "Back (Nude)",
  48416. image: {
  48417. source: "./media/characters/misu/back-nude.svg",
  48418. extra: 1762/1618,
  48419. bottom: 146/1908
  48420. }
  48421. },
  48422. frontErect: {
  48423. height: math.unit(1.75, "meters"),
  48424. name: "Front (Erect)",
  48425. image: {
  48426. source: "./media/characters/misu/front-erect.svg",
  48427. extra: 1690/1558,
  48428. bottom: 234/1924
  48429. }
  48430. },
  48431. maw: {
  48432. height: math.unit(0.47, "meters"),
  48433. name: "Maw",
  48434. image: {
  48435. source: "./media/characters/misu/maw.svg"
  48436. }
  48437. },
  48438. head: {
  48439. height: math.unit(0.35, "meters"),
  48440. name: "Head",
  48441. image: {
  48442. source: "./media/characters/misu/head.svg"
  48443. }
  48444. },
  48445. rear: {
  48446. height: math.unit(0.47, "meters"),
  48447. name: "Rear",
  48448. image: {
  48449. source: "./media/characters/misu/rear.svg"
  48450. }
  48451. },
  48452. },
  48453. [
  48454. {
  48455. name: "Normal",
  48456. height: math.unit(1.75, "meters")
  48457. },
  48458. {
  48459. name: "Not good for the people",
  48460. height: math.unit(42, "meters")
  48461. },
  48462. {
  48463. name: "Not good for the neighborhood",
  48464. height: math.unit(135, "meters")
  48465. },
  48466. {
  48467. name: "Bit bigger problem",
  48468. height: math.unit(380, "meters"),
  48469. default: true
  48470. },
  48471. {
  48472. name: "Not good for the city",
  48473. height: math.unit(1.5, "km")
  48474. },
  48475. {
  48476. name: "Not good for the county",
  48477. height: math.unit(5.5, "km")
  48478. },
  48479. {
  48480. name: "Not good for the state",
  48481. height: math.unit(25, "km")
  48482. },
  48483. {
  48484. name: "Not good for the country",
  48485. height: math.unit(125, "km")
  48486. },
  48487. {
  48488. name: "Not good for the continent",
  48489. height: math.unit(2100, "km")
  48490. },
  48491. {
  48492. name: "Not good for the planet",
  48493. height: math.unit(35000, "km")
  48494. },
  48495. {
  48496. name: "Just no",
  48497. height: math.unit(8.5e18, "km")
  48498. },
  48499. ]
  48500. ))
  48501. characterMakers.push(() => makeCharacter(
  48502. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48503. {
  48504. front: {
  48505. height: math.unit(6.5, "feet"),
  48506. name: "Front",
  48507. image: {
  48508. source: "./media/characters/poppy/front.svg",
  48509. extra: 1878/1812,
  48510. bottom: 43/1921
  48511. }
  48512. },
  48513. feet: {
  48514. height: math.unit(1.06, "feet"),
  48515. name: "Feet",
  48516. image: {
  48517. source: "./media/characters/poppy/feet.svg",
  48518. extra: 1083/1083,
  48519. bottom: 87/1170
  48520. }
  48521. },
  48522. },
  48523. [
  48524. {
  48525. name: "Human",
  48526. height: math.unit(6.5, "feet")
  48527. },
  48528. {
  48529. name: "Default",
  48530. height: math.unit(300, "feet"),
  48531. default: true
  48532. },
  48533. {
  48534. name: "Huge",
  48535. height: math.unit(850, "feet")
  48536. },
  48537. {
  48538. name: "Mega",
  48539. height: math.unit(8000, "feet")
  48540. },
  48541. {
  48542. name: "Giga",
  48543. height: math.unit(300, "miles")
  48544. },
  48545. ]
  48546. ))
  48547. characterMakers.push(() => makeCharacter(
  48548. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48549. {
  48550. bipedal: {
  48551. height: math.unit(7, "feet"),
  48552. name: "Bipedal",
  48553. image: {
  48554. source: "./media/characters/zener/bipedal.svg",
  48555. extra: 874/805,
  48556. bottom: 109/983
  48557. }
  48558. },
  48559. quadrupedal: {
  48560. height: math.unit(4.64, "feet"),
  48561. name: "Quadrupedal",
  48562. image: {
  48563. source: "./media/characters/zener/quadrupedal.svg",
  48564. extra: 638/507,
  48565. bottom: 190/828
  48566. }
  48567. },
  48568. cock: {
  48569. height: math.unit(18, "inches"),
  48570. name: "Cock",
  48571. image: {
  48572. source: "./media/characters/zener/cock.svg"
  48573. }
  48574. },
  48575. },
  48576. [
  48577. {
  48578. name: "Normal",
  48579. height: math.unit(7, "feet"),
  48580. default: true
  48581. },
  48582. ]
  48583. ))
  48584. characterMakers.push(() => makeCharacter(
  48585. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48586. {
  48587. nude: {
  48588. height: math.unit(5 + 6/12, "feet"),
  48589. name: "Nude",
  48590. image: {
  48591. source: "./media/characters/charlie-dog/nude.svg",
  48592. extra: 768/734,
  48593. bottom: 26/794
  48594. }
  48595. },
  48596. dressed: {
  48597. height: math.unit(5 + 6/12, "feet"),
  48598. name: "Dressed",
  48599. image: {
  48600. source: "./media/characters/charlie-dog/dressed.svg",
  48601. extra: 768/734,
  48602. bottom: 26/794
  48603. }
  48604. },
  48605. },
  48606. [
  48607. {
  48608. name: "Normal",
  48609. height: math.unit(5 + 6/12, "feet"),
  48610. default: true
  48611. },
  48612. ]
  48613. ))
  48614. characterMakers.push(() => makeCharacter(
  48615. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48616. {
  48617. front: {
  48618. height: math.unit(6 + 4/12, "feet"),
  48619. name: "Front",
  48620. image: {
  48621. source: "./media/characters/ir'istrasz/front.svg",
  48622. extra: 1014/977,
  48623. bottom: 65/1079
  48624. }
  48625. },
  48626. back: {
  48627. height: math.unit(6 + 4/12, "feet"),
  48628. name: "Back",
  48629. image: {
  48630. source: "./media/characters/ir'istrasz/back.svg",
  48631. extra: 1024/992,
  48632. bottom: 34/1058
  48633. }
  48634. },
  48635. },
  48636. [
  48637. {
  48638. name: "Normal",
  48639. height: math.unit(6 + 4/12, "feet"),
  48640. default: true
  48641. },
  48642. ]
  48643. ))
  48644. characterMakers.push(() => makeCharacter(
  48645. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48646. {
  48647. front: {
  48648. height: math.unit(5 + 8/12, "feet"),
  48649. name: "Front",
  48650. image: {
  48651. source: "./media/characters/dee-ditto/front.svg",
  48652. extra: 1874/1785,
  48653. bottom: 68/1942
  48654. }
  48655. },
  48656. back: {
  48657. height: math.unit(5 + 8/12, "feet"),
  48658. name: "Back",
  48659. image: {
  48660. source: "./media/characters/dee-ditto/back.svg",
  48661. extra: 1870/1783,
  48662. bottom: 77/1947
  48663. }
  48664. },
  48665. },
  48666. [
  48667. {
  48668. name: "Normal",
  48669. height: math.unit(5 + 8/12, "feet"),
  48670. default: true
  48671. },
  48672. ]
  48673. ))
  48674. characterMakers.push(() => makeCharacter(
  48675. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48676. {
  48677. front: {
  48678. height: math.unit(7 + 6/12, "feet"),
  48679. name: "Front",
  48680. image: {
  48681. source: "./media/characters/fey/front.svg",
  48682. extra: 995/979,
  48683. bottom: 30/1025
  48684. }
  48685. },
  48686. back: {
  48687. height: math.unit(7 + 6/12, "feet"),
  48688. name: "Back",
  48689. image: {
  48690. source: "./media/characters/fey/back.svg",
  48691. extra: 1079/1008,
  48692. bottom: 5/1084
  48693. }
  48694. },
  48695. dressed: {
  48696. height: math.unit(7 + 6/12, "feet"),
  48697. name: "Dressed",
  48698. image: {
  48699. source: "./media/characters/fey/dressed.svg",
  48700. extra: 995/979,
  48701. bottom: 30/1025
  48702. }
  48703. },
  48704. },
  48705. [
  48706. {
  48707. name: "Normal",
  48708. height: math.unit(7 + 6/12, "feet"),
  48709. default: true
  48710. },
  48711. ]
  48712. ))
  48713. characterMakers.push(() => makeCharacter(
  48714. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48715. {
  48716. standing: {
  48717. height: math.unit(17, "feet"),
  48718. name: "Standing",
  48719. image: {
  48720. source: "./media/characters/aster/standing.svg",
  48721. extra: 1798/1598,
  48722. bottom: 117/1915
  48723. }
  48724. },
  48725. },
  48726. [
  48727. {
  48728. name: "Normal",
  48729. height: math.unit(17, "feet"),
  48730. default: true
  48731. },
  48732. {
  48733. name: "Homewrecker",
  48734. height: math.unit(95, "feet")
  48735. },
  48736. {
  48737. name: "Planet Devourer",
  48738. height: math.unit(1008000, "miles")
  48739. },
  48740. ]
  48741. ))
  48742. characterMakers.push(() => makeCharacter(
  48743. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48744. {
  48745. front: {
  48746. height: math.unit(6 + 5/12, "feet"),
  48747. weight: math.unit(265, "lb"),
  48748. name: "Front",
  48749. image: {
  48750. source: "./media/characters/devon-childs/front.svg",
  48751. extra: 1795/1721,
  48752. bottom: 41/1836
  48753. }
  48754. },
  48755. side: {
  48756. height: math.unit(6 + 5/12, "feet"),
  48757. weight: math.unit(265, "lb"),
  48758. name: "Side",
  48759. image: {
  48760. source: "./media/characters/devon-childs/side.svg",
  48761. extra: 1812/1738,
  48762. bottom: 30/1842
  48763. }
  48764. },
  48765. back: {
  48766. height: math.unit(6 + 5/12, "feet"),
  48767. weight: math.unit(265, "lb"),
  48768. name: "Back",
  48769. image: {
  48770. source: "./media/characters/devon-childs/back.svg",
  48771. extra: 1808/1735,
  48772. bottom: 23/1831
  48773. }
  48774. },
  48775. hand: {
  48776. height: math.unit(1.464, "feet"),
  48777. name: "Hand",
  48778. image: {
  48779. source: "./media/characters/devon-childs/hand.svg"
  48780. }
  48781. },
  48782. foot: {
  48783. height: math.unit(1.6, "feet"),
  48784. name: "Foot",
  48785. image: {
  48786. source: "./media/characters/devon-childs/foot.svg"
  48787. }
  48788. },
  48789. },
  48790. [
  48791. {
  48792. name: "Micro",
  48793. height: math.unit(7, "cm")
  48794. },
  48795. {
  48796. name: "Normal",
  48797. height: math.unit(6 + 5/12, "feet"),
  48798. default: true
  48799. },
  48800. {
  48801. name: "Macro",
  48802. height: math.unit(154, "feet")
  48803. },
  48804. ]
  48805. ))
  48806. characterMakers.push(() => makeCharacter(
  48807. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48808. {
  48809. front: {
  48810. height: math.unit(6, "feet"),
  48811. weight: math.unit(180, "lb"),
  48812. name: "Front",
  48813. image: {
  48814. source: "./media/characters/lydemox-vir/front.svg",
  48815. extra: 1632/1435,
  48816. bottom: 58/1690
  48817. }
  48818. },
  48819. frontSFW: {
  48820. height: math.unit(6, "feet"),
  48821. weight: math.unit(180, "lb"),
  48822. name: "Front (SFW)",
  48823. image: {
  48824. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48825. extra: 1632/1435,
  48826. bottom: 58/1690
  48827. }
  48828. },
  48829. back: {
  48830. height: math.unit(6, "feet"),
  48831. weight: math.unit(180, "lb"),
  48832. name: "Back",
  48833. image: {
  48834. source: "./media/characters/lydemox-vir/back.svg",
  48835. extra: 1593/1408,
  48836. bottom: 31/1624
  48837. }
  48838. },
  48839. paw: {
  48840. height: math.unit(1.85, "feet"),
  48841. name: "Paw",
  48842. image: {
  48843. source: "./media/characters/lydemox-vir/paw.svg"
  48844. }
  48845. },
  48846. dick: {
  48847. height: math.unit(1.8, "feet"),
  48848. name: "Dick",
  48849. image: {
  48850. source: "./media/characters/lydemox-vir/dick.svg"
  48851. }
  48852. },
  48853. },
  48854. [
  48855. {
  48856. name: "Macro",
  48857. height: math.unit(100, "feet"),
  48858. default: true
  48859. },
  48860. {
  48861. name: "Teramacro",
  48862. height: math.unit(1, "earth")
  48863. },
  48864. {
  48865. name: "Planetary",
  48866. height: math.unit(20, "earths")
  48867. },
  48868. ]
  48869. ))
  48870. characterMakers.push(() => makeCharacter(
  48871. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48872. {
  48873. front: {
  48874. height: math.unit(15 + 8/12, "feet"),
  48875. weight: math.unit(1237, "kg"),
  48876. name: "Front",
  48877. image: {
  48878. source: "./media/characters/mia/front.svg",
  48879. extra: 1573/1446,
  48880. bottom: 58/1631
  48881. }
  48882. },
  48883. },
  48884. [
  48885. {
  48886. name: "Small",
  48887. height: math.unit(9 + 5/12, "feet")
  48888. },
  48889. {
  48890. name: "Normal",
  48891. height: math.unit(15 + 8/12, "feet"),
  48892. default: true
  48893. },
  48894. ]
  48895. ))
  48896. characterMakers.push(() => makeCharacter(
  48897. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48898. {
  48899. front: {
  48900. height: math.unit(10 + 6/12, "feet"),
  48901. weight: math.unit(1.3, "tons"),
  48902. name: "Front",
  48903. image: {
  48904. source: "./media/characters/mr-graves/front.svg",
  48905. extra: 1779/1695,
  48906. bottom: 198/1977
  48907. }
  48908. },
  48909. },
  48910. [
  48911. {
  48912. name: "Normal",
  48913. height: math.unit(10 + 6 /12, "feet"),
  48914. default: true
  48915. },
  48916. ]
  48917. ))
  48918. characterMakers.push(() => makeCharacter(
  48919. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48920. {
  48921. dressedFront: {
  48922. height: math.unit(5 + 8/12, "feet"),
  48923. weight: math.unit(125, "lb"),
  48924. name: "Dressed (Front)",
  48925. image: {
  48926. source: "./media/characters/jess/dressed-front.svg",
  48927. extra: 1176/1152,
  48928. bottom: 42/1218
  48929. }
  48930. },
  48931. dressedSide: {
  48932. height: math.unit(5 + 8/12, "feet"),
  48933. weight: math.unit(125, "lb"),
  48934. name: "Dressed (Side)",
  48935. image: {
  48936. source: "./media/characters/jess/dressed-side.svg",
  48937. extra: 1204/1190,
  48938. bottom: 6/1210
  48939. }
  48940. },
  48941. nudeFront: {
  48942. height: math.unit(5 + 8/12, "feet"),
  48943. weight: math.unit(125, "lb"),
  48944. name: "Nude (Front)",
  48945. image: {
  48946. source: "./media/characters/jess/nude-front.svg",
  48947. extra: 1176/1152,
  48948. bottom: 42/1218
  48949. }
  48950. },
  48951. nudeSide: {
  48952. height: math.unit(5 + 8/12, "feet"),
  48953. weight: math.unit(125, "lb"),
  48954. name: "Nude (Side)",
  48955. image: {
  48956. source: "./media/characters/jess/nude-side.svg",
  48957. extra: 1204/1190,
  48958. bottom: 6/1210
  48959. }
  48960. },
  48961. organsFront: {
  48962. height: math.unit(2.83799342105, "feet"),
  48963. name: "Organs (Front)",
  48964. image: {
  48965. source: "./media/characters/jess/organs-front.svg"
  48966. }
  48967. },
  48968. organsSide: {
  48969. height: math.unit(2.64225290474, "feet"),
  48970. name: "Organs (Side)",
  48971. image: {
  48972. source: "./media/characters/jess/organs-side.svg"
  48973. }
  48974. },
  48975. digestiveTractFront: {
  48976. height: math.unit(2.8106580871, "feet"),
  48977. name: "Digestive Tract (Front)",
  48978. image: {
  48979. source: "./media/characters/jess/digestive-tract-front.svg"
  48980. }
  48981. },
  48982. digestiveTractSide: {
  48983. height: math.unit(2.54365045014, "feet"),
  48984. name: "Digestive Tract (Side)",
  48985. image: {
  48986. source: "./media/characters/jess/digestive-tract-side.svg"
  48987. }
  48988. },
  48989. respiratorySystemFront: {
  48990. height: math.unit(1.11196233456, "feet"),
  48991. name: "Respiratory System (Front)",
  48992. image: {
  48993. source: "./media/characters/jess/respiratory-system-front.svg"
  48994. }
  48995. },
  48996. respiratorySystemSide: {
  48997. height: math.unit(0.89327966297, "feet"),
  48998. name: "Respiratory System (Side)",
  48999. image: {
  49000. source: "./media/characters/jess/respiratory-system-side.svg"
  49001. }
  49002. },
  49003. urinaryTractFront: {
  49004. height: math.unit(1.16126356186, "feet"),
  49005. name: "Urinary Tract (Front)",
  49006. image: {
  49007. source: "./media/characters/jess/urinary-tract-front.svg"
  49008. }
  49009. },
  49010. urinaryTractSide: {
  49011. height: math.unit(1.20910039627, "feet"),
  49012. name: "Urinary Tract (Side)",
  49013. image: {
  49014. source: "./media/characters/jess/urinary-tract-side.svg"
  49015. }
  49016. },
  49017. reproductiveOrgansFront: {
  49018. height: math.unit(0.48422591566, "feet"),
  49019. name: "Reproductive Organs (Front)",
  49020. image: {
  49021. source: "./media/characters/jess/reproductive-organs-front.svg"
  49022. }
  49023. },
  49024. reproductiveOrgansSide: {
  49025. height: math.unit(0.61553314481, "feet"),
  49026. name: "Reproductive Organs (Side)",
  49027. image: {
  49028. source: "./media/characters/jess/reproductive-organs-side.svg"
  49029. }
  49030. },
  49031. breastsFront: {
  49032. height: math.unit(0.47690395121, "feet"),
  49033. name: "Breasts (Front)",
  49034. image: {
  49035. source: "./media/characters/jess/breasts-front.svg"
  49036. }
  49037. },
  49038. breastsSide: {
  49039. height: math.unit(0.30556998307, "feet"),
  49040. name: "Breasts (Side)",
  49041. image: {
  49042. source: "./media/characters/jess/breasts-side.svg"
  49043. }
  49044. },
  49045. heartFront: {
  49046. height: math.unit(0.53011022622, "feet"),
  49047. name: "Heart (Front)",
  49048. image: {
  49049. source: "./media/characters/jess/heart-front.svg"
  49050. }
  49051. },
  49052. heartSide: {
  49053. height: math.unit(0.51790695213, "feet"),
  49054. name: "Heart (Side)",
  49055. image: {
  49056. source: "./media/characters/jess/heart-side.svg"
  49057. }
  49058. },
  49059. earsAndNoseFront: {
  49060. height: math.unit(0.29385483995, "feet"),
  49061. name: "Ears and Nose (Front)",
  49062. image: {
  49063. source: "./media/characters/jess/ears-and-nose-front.svg"
  49064. }
  49065. },
  49066. earsAndNoseSide: {
  49067. height: math.unit(0.18109658741, "feet"),
  49068. name: "Ears and Nose (Side)",
  49069. image: {
  49070. source: "./media/characters/jess/ears-and-nose-side.svg"
  49071. }
  49072. },
  49073. },
  49074. [
  49075. {
  49076. name: "Normal",
  49077. height: math.unit(5 + 8/12, "feet"),
  49078. default: true
  49079. },
  49080. ]
  49081. ))
  49082. characterMakers.push(() => makeCharacter(
  49083. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49084. {
  49085. front: {
  49086. height: math.unit(6, "feet"),
  49087. weight: math.unit(6.64467e-7, "grams"),
  49088. name: "Front",
  49089. image: {
  49090. source: "./media/characters/wimpering/front.svg",
  49091. extra: 597/587,
  49092. bottom: 34/631
  49093. }
  49094. },
  49095. },
  49096. [
  49097. {
  49098. name: "Micro",
  49099. height: math.unit(0.4, "mm"),
  49100. default: true
  49101. },
  49102. ]
  49103. ))
  49104. characterMakers.push(() => makeCharacter(
  49105. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49106. {
  49107. front: {
  49108. height: math.unit(5 + 2/12, "feet"),
  49109. weight: math.unit(110, "lb"),
  49110. name: "Front",
  49111. image: {
  49112. source: "./media/characters/keltre/front.svg",
  49113. extra: 1099/1057,
  49114. bottom: 22/1121
  49115. }
  49116. },
  49117. back: {
  49118. height: math.unit(5 + 2/12, "feet"),
  49119. weight: math.unit(110, "lb"),
  49120. name: "Back",
  49121. image: {
  49122. source: "./media/characters/keltre/back.svg",
  49123. extra: 1095/1053,
  49124. bottom: 17/1112
  49125. }
  49126. },
  49127. dressed: {
  49128. height: math.unit(5 + 2/12, "feet"),
  49129. weight: math.unit(110, "lb"),
  49130. name: "Dressed",
  49131. image: {
  49132. source: "./media/characters/keltre/dressed.svg",
  49133. extra: 1099/1057,
  49134. bottom: 22/1121
  49135. }
  49136. },
  49137. winter: {
  49138. height: math.unit(5 + 2/12, "feet"),
  49139. weight: math.unit(110, "lb"),
  49140. name: "Winter",
  49141. image: {
  49142. source: "./media/characters/keltre/winter.svg",
  49143. extra: 1099/1057,
  49144. bottom: 22/1121
  49145. }
  49146. },
  49147. head: {
  49148. height: math.unit(1.61 * 0.86, "feet"),
  49149. name: "Head",
  49150. image: {
  49151. source: "./media/characters/keltre/head.svg",
  49152. extra: 534/421,
  49153. bottom: 0/534
  49154. }
  49155. },
  49156. hand: {
  49157. height: math.unit(1.3 * 0.86, "feet"),
  49158. name: "Hand",
  49159. image: {
  49160. source: "./media/characters/keltre/hand.svg"
  49161. }
  49162. },
  49163. foot: {
  49164. height: math.unit(1.8 * 0.86, "feet"),
  49165. name: "Foot",
  49166. image: {
  49167. source: "./media/characters/keltre/foot.svg"
  49168. }
  49169. },
  49170. },
  49171. [
  49172. {
  49173. name: "Fine",
  49174. height: math.unit(1, "inch")
  49175. },
  49176. {
  49177. name: "Dimnutive",
  49178. height: math.unit(4, "inches")
  49179. },
  49180. {
  49181. name: "Tiny",
  49182. height: math.unit(1, "foot")
  49183. },
  49184. {
  49185. name: "Small",
  49186. height: math.unit(3, "feet")
  49187. },
  49188. {
  49189. name: "Normal",
  49190. height: math.unit(5 + 2/12, "feet"),
  49191. default: true
  49192. },
  49193. ]
  49194. ))
  49195. characterMakers.push(() => makeCharacter(
  49196. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49197. {
  49198. front: {
  49199. height: math.unit(6 + 2/12, "feet"),
  49200. name: "Front",
  49201. image: {
  49202. source: "./media/characters/nox/front.svg",
  49203. extra: 1917/1830,
  49204. bottom: 74/1991
  49205. }
  49206. },
  49207. back: {
  49208. height: math.unit(6 + 2/12, "feet"),
  49209. name: "Back",
  49210. image: {
  49211. source: "./media/characters/nox/back.svg",
  49212. extra: 1896/1815,
  49213. bottom: 21/1917
  49214. }
  49215. },
  49216. head: {
  49217. height: math.unit(1.1, "feet"),
  49218. name: "Head",
  49219. image: {
  49220. source: "./media/characters/nox/head.svg",
  49221. extra: 874/704,
  49222. bottom: 0/874
  49223. }
  49224. },
  49225. tattoo: {
  49226. height: math.unit(0.729, "feet"),
  49227. name: "Tattoo",
  49228. image: {
  49229. source: "./media/characters/nox/tattoo.svg"
  49230. }
  49231. },
  49232. },
  49233. [
  49234. {
  49235. name: "Normal",
  49236. height: math.unit(6 + 2/12, "feet")
  49237. },
  49238. {
  49239. name: "Gigamacro",
  49240. height: math.unit(2, "earths"),
  49241. default: true
  49242. },
  49243. {
  49244. name: "Cosmic",
  49245. height: math.unit(867, "yottameters")
  49246. },
  49247. ]
  49248. ))
  49249. characterMakers.push(() => makeCharacter(
  49250. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49251. {
  49252. front: {
  49253. height: math.unit(6, "feet"),
  49254. weight: math.unit(150, "lb"),
  49255. name: "Front",
  49256. image: {
  49257. source: "./media/characters/caspian/front.svg",
  49258. extra: 1443/1359,
  49259. bottom: 0/1443
  49260. }
  49261. },
  49262. back: {
  49263. height: math.unit(6, "feet"),
  49264. weight: math.unit(150, "lb"),
  49265. name: "Back",
  49266. image: {
  49267. source: "./media/characters/caspian/back.svg",
  49268. extra: 1379/1309,
  49269. bottom: 0/1379
  49270. }
  49271. },
  49272. head: {
  49273. height: math.unit(0.9, "feet"),
  49274. name: "Head",
  49275. image: {
  49276. source: "./media/characters/caspian/head.svg",
  49277. extra: 692/492,
  49278. bottom: 0/692
  49279. }
  49280. },
  49281. headAlt: {
  49282. height: math.unit(0.95, "feet"),
  49283. name: "Head (Alt)",
  49284. image: {
  49285. source: "./media/characters/caspian/head-alt.svg",
  49286. extra: 668/508,
  49287. bottom: 0/668
  49288. }
  49289. },
  49290. hand: {
  49291. height: math.unit(0.8, "feet"),
  49292. name: "Hand",
  49293. image: {
  49294. source: "./media/characters/caspian/hand.svg"
  49295. }
  49296. },
  49297. paw: {
  49298. height: math.unit(0.95, "feet"),
  49299. name: "Paw",
  49300. image: {
  49301. source: "./media/characters/caspian/paw.svg"
  49302. }
  49303. },
  49304. },
  49305. [
  49306. {
  49307. name: "Normal",
  49308. height: math.unit(162, "feet"),
  49309. default: true
  49310. },
  49311. ]
  49312. ))
  49313. characterMakers.push(() => makeCharacter(
  49314. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49315. {
  49316. front: {
  49317. height: math.unit(6, "feet"),
  49318. name: "Front",
  49319. image: {
  49320. source: "./media/characters/myra-aisling/front.svg",
  49321. extra: 1268/1166,
  49322. bottom: 73/1341
  49323. }
  49324. },
  49325. back: {
  49326. height: math.unit(6, "feet"),
  49327. name: "Back",
  49328. image: {
  49329. source: "./media/characters/myra-aisling/back.svg",
  49330. extra: 1249/1149,
  49331. bottom: 79/1328
  49332. }
  49333. },
  49334. dressed: {
  49335. height: math.unit(6, "feet"),
  49336. name: "Dressed",
  49337. image: {
  49338. source: "./media/characters/myra-aisling/dressed.svg",
  49339. extra: 1290/1189,
  49340. bottom: 47/1337
  49341. }
  49342. },
  49343. hand: {
  49344. height: math.unit(1.1, "feet"),
  49345. name: "Hand",
  49346. image: {
  49347. source: "./media/characters/myra-aisling/hand.svg"
  49348. }
  49349. },
  49350. paw: {
  49351. height: math.unit(1.23, "feet"),
  49352. name: "Paw",
  49353. image: {
  49354. source: "./media/characters/myra-aisling/paw.svg"
  49355. }
  49356. },
  49357. },
  49358. [
  49359. {
  49360. name: "Normal",
  49361. height: math.unit(160, "feet"),
  49362. default: true
  49363. },
  49364. ]
  49365. ))
  49366. characterMakers.push(() => makeCharacter(
  49367. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49368. {
  49369. front: {
  49370. height: math.unit(6, "feet"),
  49371. name: "Front",
  49372. image: {
  49373. source: "./media/characters/tenley-sidero/front.svg",
  49374. extra: 1365/1276,
  49375. bottom: 47/1412
  49376. }
  49377. },
  49378. back: {
  49379. height: math.unit(6, "feet"),
  49380. name: "Back",
  49381. image: {
  49382. source: "./media/characters/tenley-sidero/back.svg",
  49383. extra: 1383/1283,
  49384. bottom: 35/1418
  49385. }
  49386. },
  49387. dressed: {
  49388. height: math.unit(6, "feet"),
  49389. name: "Dressed",
  49390. image: {
  49391. source: "./media/characters/tenley-sidero/dressed.svg",
  49392. extra: 1364/1275,
  49393. bottom: 42/1406
  49394. }
  49395. },
  49396. head: {
  49397. height: math.unit(1.47, "feet"),
  49398. name: "Head",
  49399. image: {
  49400. source: "./media/characters/tenley-sidero/head.svg",
  49401. extra: 610/490,
  49402. bottom: 0/610
  49403. }
  49404. },
  49405. },
  49406. [
  49407. {
  49408. name: "Normal",
  49409. height: math.unit(154, "feet"),
  49410. default: true
  49411. },
  49412. ]
  49413. ))
  49414. characterMakers.push(() => makeCharacter(
  49415. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49416. {
  49417. front: {
  49418. height: math.unit(5, "inches"),
  49419. name: "Front",
  49420. image: {
  49421. source: "./media/characters/mallory/front.svg",
  49422. extra: 1919/1678,
  49423. bottom: 29/1948
  49424. }
  49425. },
  49426. hand: {
  49427. height: math.unit(0.73, "inches"),
  49428. name: "Hand",
  49429. image: {
  49430. source: "./media/characters/mallory/hand.svg"
  49431. }
  49432. },
  49433. paw: {
  49434. height: math.unit(0.68, "inches"),
  49435. name: "Paw",
  49436. image: {
  49437. source: "./media/characters/mallory/paw.svg"
  49438. }
  49439. },
  49440. },
  49441. [
  49442. {
  49443. name: "Small",
  49444. height: math.unit(5, "inches"),
  49445. default: true
  49446. },
  49447. ]
  49448. ))
  49449. characterMakers.push(() => makeCharacter(
  49450. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49451. {
  49452. naked: {
  49453. height: math.unit(6, "feet"),
  49454. name: "Naked",
  49455. image: {
  49456. source: "./media/characters/mab/naked.svg",
  49457. extra: 1855/1757,
  49458. bottom: 208/2063
  49459. }
  49460. },
  49461. outside: {
  49462. height: math.unit(6, "feet"),
  49463. name: "Outside",
  49464. image: {
  49465. source: "./media/characters/mab/outside.svg",
  49466. extra: 1855/1757,
  49467. bottom: 208/2063
  49468. }
  49469. },
  49470. party: {
  49471. height: math.unit(6, "feet"),
  49472. name: "Party",
  49473. image: {
  49474. source: "./media/characters/mab/party.svg",
  49475. extra: 1855/1757,
  49476. bottom: 208/2063
  49477. }
  49478. },
  49479. },
  49480. [
  49481. {
  49482. name: "Normal",
  49483. height: math.unit(165, "feet"),
  49484. default: true
  49485. },
  49486. ]
  49487. ))
  49488. characterMakers.push(() => makeCharacter(
  49489. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49490. {
  49491. front: {
  49492. height: math.unit(12, "feet"),
  49493. weight: math.unit(4000, "lb"),
  49494. name: "Front",
  49495. image: {
  49496. source: "./media/characters/winter/front.svg",
  49497. extra: 1286/943,
  49498. bottom: 112/1398
  49499. }
  49500. },
  49501. frontNsfw: {
  49502. height: math.unit(12, "feet"),
  49503. weight: math.unit(4000, "lb"),
  49504. name: "Front (NSFW)",
  49505. image: {
  49506. source: "./media/characters/winter/front-nsfw.svg",
  49507. extra: 1286/943,
  49508. bottom: 112/1398
  49509. }
  49510. },
  49511. dick: {
  49512. height: math.unit(3.79, "feet"),
  49513. name: "Dick",
  49514. image: {
  49515. source: "./media/characters/winter/dick.svg"
  49516. }
  49517. },
  49518. },
  49519. [
  49520. {
  49521. name: "Big",
  49522. height: math.unit(12, "feet"),
  49523. default: true
  49524. },
  49525. ]
  49526. ))
  49527. characterMakers.push(() => makeCharacter(
  49528. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49529. {
  49530. front: {
  49531. height: math.unit(4.1, "inches"),
  49532. name: "Front",
  49533. image: {
  49534. source: "./media/characters/alto/front.svg",
  49535. extra: 736/627,
  49536. bottom: 90/826
  49537. }
  49538. },
  49539. },
  49540. [
  49541. {
  49542. name: "Normal",
  49543. height: math.unit(4.1, "inches"),
  49544. default: true
  49545. },
  49546. ]
  49547. ))
  49548. characterMakers.push(() => makeCharacter(
  49549. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49550. {
  49551. sitting: {
  49552. height: math.unit(3, "feet"),
  49553. name: "Sitting",
  49554. image: {
  49555. source: "./media/characters/ratstrid-v/sitting.svg",
  49556. extra: 355/310,
  49557. bottom: 136/491
  49558. }
  49559. },
  49560. },
  49561. [
  49562. {
  49563. name: "Normal",
  49564. height: math.unit(3, "feet"),
  49565. default: true
  49566. },
  49567. ]
  49568. ))
  49569. characterMakers.push(() => makeCharacter(
  49570. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49571. {
  49572. back: {
  49573. height: math.unit(6, "feet"),
  49574. weight: math.unit(350, "lb"),
  49575. name: "Back",
  49576. image: {
  49577. source: "./media/characters/siz/back.svg",
  49578. extra: 1449/1274,
  49579. bottom: 13/1462
  49580. }
  49581. },
  49582. },
  49583. [
  49584. {
  49585. name: "Over-Overcompressed",
  49586. height: math.unit(8, "feet")
  49587. },
  49588. {
  49589. name: "Overcompressed",
  49590. height: math.unit(32, "feet")
  49591. },
  49592. {
  49593. name: "Compressed",
  49594. height: math.unit(128, "feet"),
  49595. default: true
  49596. },
  49597. {
  49598. name: "Half-Compressed",
  49599. height: math.unit(512, "feet")
  49600. },
  49601. {
  49602. name: "Quarter-Compressed",
  49603. height: math.unit(2048, "feet")
  49604. },
  49605. {
  49606. name: "Uncompressed?",
  49607. height: math.unit(8192, "feet")
  49608. },
  49609. ]
  49610. ))
  49611. characterMakers.push(() => makeCharacter(
  49612. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49613. {
  49614. front: {
  49615. height: math.unit(5 + 9/12, "feet"),
  49616. weight: math.unit(150, "lb"),
  49617. name: "Front",
  49618. image: {
  49619. source: "./media/characters/ven/front.svg",
  49620. extra: 1372/1320,
  49621. bottom: 73/1445
  49622. }
  49623. },
  49624. side: {
  49625. height: math.unit(5 + 9/12, "feet"),
  49626. weight: math.unit(1150, "lb"),
  49627. name: "Side",
  49628. image: {
  49629. source: "./media/characters/ven/side.svg",
  49630. extra: 1119/1070,
  49631. bottom: 42/1161
  49632. },
  49633. default: true
  49634. },
  49635. },
  49636. [
  49637. {
  49638. name: "Normal",
  49639. height: math.unit(5 + 9/12, "feet"),
  49640. default: true
  49641. },
  49642. ]
  49643. ))
  49644. characterMakers.push(() => makeCharacter(
  49645. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49646. {
  49647. front: {
  49648. height: math.unit(12, "feet"),
  49649. weight: math.unit(1000, "kg"),
  49650. name: "Front",
  49651. image: {
  49652. source: "./media/characters/maple/front.svg",
  49653. extra: 1193/1081,
  49654. bottom: 22/1215
  49655. }
  49656. },
  49657. },
  49658. [
  49659. {
  49660. name: "Compressed",
  49661. height: math.unit(7, "feet")
  49662. },
  49663. {
  49664. name: "Normal",
  49665. height: math.unit(12, "feet"),
  49666. default: true
  49667. },
  49668. ]
  49669. ))
  49670. characterMakers.push(() => makeCharacter(
  49671. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49672. {
  49673. front: {
  49674. height: math.unit(9, "feet"),
  49675. weight: math.unit(1500, "lb"),
  49676. name: "Front",
  49677. image: {
  49678. source: "./media/characters/nora/front.svg",
  49679. extra: 1348/1286,
  49680. bottom: 218/1566
  49681. }
  49682. },
  49683. erect: {
  49684. height: math.unit(9, "feet"),
  49685. weight: math.unit(11500, "lb"),
  49686. name: "Erect",
  49687. image: {
  49688. source: "./media/characters/nora/erect.svg",
  49689. extra: 1488/1433,
  49690. bottom: 133/1621
  49691. }
  49692. },
  49693. },
  49694. [
  49695. {
  49696. name: "Normal",
  49697. height: math.unit(9, "feet"),
  49698. default: true
  49699. },
  49700. ]
  49701. ))
  49702. characterMakers.push(() => makeCharacter(
  49703. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49704. {
  49705. front: {
  49706. height: math.unit(25, "feet"),
  49707. weight: math.unit(27500, "lb"),
  49708. name: "Front",
  49709. image: {
  49710. source: "./media/characters/north-caudin/front.svg",
  49711. extra: 1184/1082,
  49712. bottom: 23/1207
  49713. }
  49714. },
  49715. },
  49716. [
  49717. {
  49718. name: "Compressed",
  49719. height: math.unit(10, "feet")
  49720. },
  49721. {
  49722. name: "Normal",
  49723. height: math.unit(25, "feet"),
  49724. default: true
  49725. },
  49726. ]
  49727. ))
  49728. characterMakers.push(() => makeCharacter(
  49729. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49730. {
  49731. front: {
  49732. height: math.unit(9, "feet"),
  49733. weight: math.unit(1250, "lb"),
  49734. name: "Front",
  49735. image: {
  49736. source: "./media/characters/merrian/front.svg",
  49737. extra: 2393/2304,
  49738. bottom: 40/2433
  49739. }
  49740. },
  49741. },
  49742. [
  49743. {
  49744. name: "Normal",
  49745. height: math.unit(9, "feet"),
  49746. default: true
  49747. },
  49748. ]
  49749. ))
  49750. characterMakers.push(() => makeCharacter(
  49751. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49752. {
  49753. front: {
  49754. height: math.unit(9, "feet"),
  49755. weight: math.unit(1000, "lb"),
  49756. name: "Front",
  49757. image: {
  49758. source: "./media/characters/hazel/front.svg",
  49759. extra: 2351/2298,
  49760. bottom: 38/2389
  49761. }
  49762. },
  49763. },
  49764. [
  49765. {
  49766. name: "Normal",
  49767. height: math.unit(9, "feet"),
  49768. default: true
  49769. },
  49770. ]
  49771. ))
  49772. characterMakers.push(() => makeCharacter(
  49773. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49774. {
  49775. front: {
  49776. height: math.unit(13, "feet"),
  49777. weight: math.unit(3200, "lb"),
  49778. name: "Front",
  49779. image: {
  49780. source: "./media/characters/emma/front.svg",
  49781. extra: 2263/2029,
  49782. bottom: 68/2331
  49783. }
  49784. },
  49785. },
  49786. [
  49787. {
  49788. name: "Normal",
  49789. height: math.unit(13, "feet"),
  49790. default: true
  49791. },
  49792. ]
  49793. ))
  49794. characterMakers.push(() => makeCharacter(
  49795. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49796. {
  49797. front: {
  49798. height: math.unit(11 + 9/12, "feet"),
  49799. weight: math.unit(2500, "lb"),
  49800. name: "Front",
  49801. image: {
  49802. source: "./media/characters/ilumina/front.svg",
  49803. extra: 2248/2209,
  49804. bottom: 164/2412
  49805. }
  49806. },
  49807. },
  49808. [
  49809. {
  49810. name: "Normal",
  49811. height: math.unit(11 + 9/12, "feet"),
  49812. default: true
  49813. },
  49814. ]
  49815. ))
  49816. characterMakers.push(() => makeCharacter(
  49817. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49818. {
  49819. front: {
  49820. height: math.unit(8 + 10/12, "feet"),
  49821. weight: math.unit(1350, "lb"),
  49822. name: "Front",
  49823. image: {
  49824. source: "./media/characters/moonshine/front.svg",
  49825. extra: 2395/2288,
  49826. bottom: 40/2435
  49827. }
  49828. },
  49829. },
  49830. [
  49831. {
  49832. name: "Normal",
  49833. height: math.unit(8 + 10/12, "feet"),
  49834. default: true
  49835. },
  49836. ]
  49837. ))
  49838. characterMakers.push(() => makeCharacter(
  49839. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49840. {
  49841. front: {
  49842. height: math.unit(14, "feet"),
  49843. weight: math.unit(3400, "lb"),
  49844. name: "Front",
  49845. image: {
  49846. source: "./media/characters/aletia/front.svg",
  49847. extra: 1185/1052,
  49848. bottom: 21/1206
  49849. }
  49850. },
  49851. },
  49852. [
  49853. {
  49854. name: "Compressed",
  49855. height: math.unit(8, "feet")
  49856. },
  49857. {
  49858. name: "Normal",
  49859. height: math.unit(14, "feet"),
  49860. default: true
  49861. },
  49862. ]
  49863. ))
  49864. characterMakers.push(() => makeCharacter(
  49865. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49866. {
  49867. front: {
  49868. height: math.unit(17, "feet"),
  49869. weight: math.unit(6500, "lb"),
  49870. name: "Front",
  49871. image: {
  49872. source: "./media/characters/deidra/front.svg",
  49873. extra: 1201/1081,
  49874. bottom: 16/1217
  49875. }
  49876. },
  49877. },
  49878. [
  49879. {
  49880. name: "Compressed",
  49881. height: math.unit(9 + 6/12, "feet")
  49882. },
  49883. {
  49884. name: "Normal",
  49885. height: math.unit(17, "feet"),
  49886. default: true
  49887. },
  49888. ]
  49889. ))
  49890. characterMakers.push(() => makeCharacter(
  49891. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49892. {
  49893. front: {
  49894. height: math.unit(7 + 4/12, "feet"),
  49895. weight: math.unit(280, "lb"),
  49896. name: "Front",
  49897. image: {
  49898. source: "./media/characters/freki-yrmori/front.svg",
  49899. extra: 1286/1182,
  49900. bottom: 29/1315
  49901. }
  49902. },
  49903. maw: {
  49904. height: math.unit(0.9, "feet"),
  49905. name: "Maw",
  49906. image: {
  49907. source: "./media/characters/freki-yrmori/maw.svg"
  49908. }
  49909. },
  49910. },
  49911. [
  49912. {
  49913. name: "Normal",
  49914. height: math.unit(7 + 4/12, "feet"),
  49915. default: true
  49916. },
  49917. {
  49918. name: "Macro",
  49919. height: math.unit(38.5, "meters")
  49920. },
  49921. ]
  49922. ))
  49923. characterMakers.push(() => makeCharacter(
  49924. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49925. {
  49926. side: {
  49927. height: math.unit(47.2, "meters"),
  49928. weight: math.unit(10000, "tons"),
  49929. name: "Side",
  49930. image: {
  49931. source: "./media/characters/aetherios/side.svg",
  49932. extra: 2363/642,
  49933. bottom: 221/2584
  49934. }
  49935. },
  49936. top: {
  49937. height: math.unit(240, "meters"),
  49938. weight: math.unit(10000, "tons"),
  49939. name: "Top",
  49940. image: {
  49941. source: "./media/characters/aetherios/top.svg"
  49942. }
  49943. },
  49944. bottom: {
  49945. height: math.unit(240, "meters"),
  49946. weight: math.unit(10000, "tons"),
  49947. name: "Bottom",
  49948. image: {
  49949. source: "./media/characters/aetherios/bottom.svg"
  49950. }
  49951. },
  49952. head: {
  49953. height: math.unit(38.6, "meters"),
  49954. name: "Head",
  49955. image: {
  49956. source: "./media/characters/aetherios/head.svg",
  49957. extra: 1335/1112,
  49958. bottom: 0/1335
  49959. }
  49960. },
  49961. front: {
  49962. height: math.unit(29, "meters"),
  49963. name: "Front",
  49964. image: {
  49965. source: "./media/characters/aetherios/front.svg",
  49966. extra: 1266/953,
  49967. bottom: 158/1424
  49968. }
  49969. },
  49970. maw: {
  49971. height: math.unit(16.37, "meters"),
  49972. name: "Maw",
  49973. image: {
  49974. source: "./media/characters/aetherios/maw.svg",
  49975. extra: 748/637,
  49976. bottom: 0/748
  49977. },
  49978. extraAttributes: {
  49979. preyCapacity: {
  49980. name: "Capacity",
  49981. power: 3,
  49982. type: "volume",
  49983. base: math.unit(1000, "people")
  49984. },
  49985. tongueSize: {
  49986. name: "Tongue Size",
  49987. power: 2,
  49988. type: "area",
  49989. base: math.unit(21, "m^2")
  49990. }
  49991. }
  49992. },
  49993. forepaw: {
  49994. height: math.unit(18, "meters"),
  49995. name: "Forepaw",
  49996. image: {
  49997. source: "./media/characters/aetherios/forepaw.svg"
  49998. }
  49999. },
  50000. hindpaw: {
  50001. height: math.unit(23, "meters"),
  50002. name: "Hindpaw",
  50003. image: {
  50004. source: "./media/characters/aetherios/hindpaw.svg"
  50005. }
  50006. },
  50007. genitals: {
  50008. height: math.unit(42, "meters"),
  50009. name: "Genitals",
  50010. image: {
  50011. source: "./media/characters/aetherios/genitals.svg"
  50012. }
  50013. },
  50014. },
  50015. [
  50016. {
  50017. name: "Normal",
  50018. height: math.unit(47.2, "meters"),
  50019. default: true
  50020. },
  50021. {
  50022. name: "Macro",
  50023. height: math.unit(160, "meters")
  50024. },
  50025. {
  50026. name: "Mega",
  50027. height: math.unit(1.87, "km")
  50028. },
  50029. {
  50030. name: "Giga",
  50031. height: math.unit(40000, "km")
  50032. },
  50033. {
  50034. name: "Stellar",
  50035. height: math.unit(158000000, "km")
  50036. },
  50037. {
  50038. name: "Cosmic",
  50039. height: math.unit(9.46e12, "km")
  50040. },
  50041. ]
  50042. ))
  50043. characterMakers.push(() => makeCharacter(
  50044. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50045. {
  50046. front: {
  50047. height: math.unit(5 + 4/12, "feet"),
  50048. weight: math.unit(80, "lb"),
  50049. name: "Front",
  50050. image: {
  50051. source: "./media/characters/mizu-gieeg/front.svg",
  50052. extra: 850/709,
  50053. bottom: 52/902
  50054. }
  50055. },
  50056. back: {
  50057. height: math.unit(5 + 4/12, "feet"),
  50058. weight: math.unit(80, "lb"),
  50059. name: "Back",
  50060. image: {
  50061. source: "./media/characters/mizu-gieeg/back.svg",
  50062. extra: 882/745,
  50063. bottom: 25/907
  50064. }
  50065. },
  50066. },
  50067. [
  50068. {
  50069. name: "Normal",
  50070. height: math.unit(5 + 4/12, "feet"),
  50071. default: true
  50072. },
  50073. ]
  50074. ))
  50075. characterMakers.push(() => makeCharacter(
  50076. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50077. {
  50078. front: {
  50079. height: math.unit(6, "feet"),
  50080. name: "Front",
  50081. image: {
  50082. source: "./media/characters/roselle-st-papier/front.svg",
  50083. extra: 1430/1280,
  50084. bottom: 37/1467
  50085. }
  50086. },
  50087. back: {
  50088. height: math.unit(6, "feet"),
  50089. name: "Back",
  50090. image: {
  50091. source: "./media/characters/roselle-st-papier/back.svg",
  50092. extra: 1491/1296,
  50093. bottom: 23/1514
  50094. }
  50095. },
  50096. ear: {
  50097. height: math.unit(1.26, "feet"),
  50098. name: "Ear",
  50099. image: {
  50100. source: "./media/characters/roselle-st-papier/ear.svg"
  50101. }
  50102. },
  50103. },
  50104. [
  50105. {
  50106. name: "Normal",
  50107. height: math.unit(150, "feet"),
  50108. default: true
  50109. },
  50110. ]
  50111. ))
  50112. characterMakers.push(() => makeCharacter(
  50113. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50114. {
  50115. front: {
  50116. height: math.unit(1, "inches"),
  50117. name: "Front",
  50118. image: {
  50119. source: "./media/characters/valargent/front.svg",
  50120. extra: 1825/1694,
  50121. bottom: 62/1887
  50122. }
  50123. },
  50124. back: {
  50125. height: math.unit(1, "inches"),
  50126. name: "Back",
  50127. image: {
  50128. source: "./media/characters/valargent/back.svg",
  50129. extra: 1775/1682,
  50130. bottom: 88/1863
  50131. }
  50132. },
  50133. },
  50134. [
  50135. {
  50136. name: "Micro",
  50137. height: math.unit(1, "inch"),
  50138. default: true
  50139. },
  50140. ]
  50141. ))
  50142. characterMakers.push(() => makeCharacter(
  50143. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50144. {
  50145. front: {
  50146. height: math.unit(3.4, "meters"),
  50147. name: "Front",
  50148. image: {
  50149. source: "./media/characters/zarina/front.svg",
  50150. extra: 1733/1425,
  50151. bottom: 93/1826
  50152. }
  50153. },
  50154. squatting: {
  50155. height: math.unit(2.14, "meters"),
  50156. name: "Squatting",
  50157. image: {
  50158. source: "./media/characters/zarina/squatting.svg",
  50159. extra: 1073/788,
  50160. bottom: 63/1136
  50161. }
  50162. },
  50163. back: {
  50164. height: math.unit(2.14, "meters"),
  50165. name: "Back",
  50166. image: {
  50167. source: "./media/characters/zarina/back.svg",
  50168. extra: 1128/885,
  50169. bottom: 0/1128
  50170. }
  50171. },
  50172. },
  50173. [
  50174. {
  50175. name: "Normal",
  50176. height: math.unit(3.4, "meters"),
  50177. default: true
  50178. },
  50179. {
  50180. name: "Big",
  50181. height: math.unit(5, "meters")
  50182. },
  50183. {
  50184. name: "Macro",
  50185. height: math.unit(110, "meters")
  50186. },
  50187. ]
  50188. ))
  50189. characterMakers.push(() => makeCharacter(
  50190. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50191. {
  50192. front: {
  50193. height: math.unit(7, "feet"),
  50194. name: "Front",
  50195. image: {
  50196. source: "./media/characters/ventus-astro-fox/front.svg",
  50197. extra: 1792/1623,
  50198. bottom: 28/1820
  50199. }
  50200. },
  50201. back: {
  50202. height: math.unit(7, "feet"),
  50203. name: "Back",
  50204. image: {
  50205. source: "./media/characters/ventus-astro-fox/back.svg",
  50206. extra: 1789/1620,
  50207. bottom: 31/1820
  50208. }
  50209. },
  50210. outfit: {
  50211. height: math.unit(7, "feet"),
  50212. name: "Outfit",
  50213. image: {
  50214. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50215. extra: 1054/925,
  50216. bottom: 15/1069
  50217. }
  50218. },
  50219. head: {
  50220. height: math.unit(1.12, "feet"),
  50221. name: "Head",
  50222. image: {
  50223. source: "./media/characters/ventus-astro-fox/head.svg",
  50224. extra: 866/504,
  50225. bottom: 0/866
  50226. }
  50227. },
  50228. hand: {
  50229. height: math.unit(1, "feet"),
  50230. name: "Hand",
  50231. image: {
  50232. source: "./media/characters/ventus-astro-fox/hand.svg"
  50233. }
  50234. },
  50235. paw: {
  50236. height: math.unit(1.5, "feet"),
  50237. name: "Paw",
  50238. image: {
  50239. source: "./media/characters/ventus-astro-fox/paw.svg"
  50240. }
  50241. },
  50242. },
  50243. [
  50244. {
  50245. name: "Normal",
  50246. height: math.unit(7, "feet"),
  50247. default: true
  50248. },
  50249. {
  50250. name: "Macro",
  50251. height: math.unit(200, "feet")
  50252. },
  50253. {
  50254. name: "Cosmic",
  50255. height: math.unit(3, "universes")
  50256. },
  50257. ]
  50258. ))
  50259. characterMakers.push(() => makeCharacter(
  50260. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50261. {
  50262. front: {
  50263. height: math.unit(3, "meters"),
  50264. weight: math.unit(7000, "lb"),
  50265. name: "Front",
  50266. image: {
  50267. source: "./media/characters/core-t/front.svg",
  50268. extra: 5729/4941,
  50269. bottom: 1129/6858
  50270. }
  50271. },
  50272. },
  50273. [
  50274. {
  50275. name: "Big",
  50276. height: math.unit(3, "meters"),
  50277. default: true
  50278. },
  50279. ]
  50280. ))
  50281. characterMakers.push(() => makeCharacter(
  50282. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50283. {
  50284. normal: {
  50285. height: math.unit(6 + 6/12, "feet"),
  50286. weight: math.unit(275, "lb"),
  50287. name: "Front",
  50288. image: {
  50289. source: "./media/characters/cadbunny/normal.svg",
  50290. extra: 1129/947,
  50291. bottom: 93/1222
  50292. },
  50293. default: true,
  50294. form: "normal"
  50295. },
  50296. gigantamax: {
  50297. height: math.unit(26, "feet"),
  50298. weight: math.unit(16000, "lb"),
  50299. name: "Front",
  50300. image: {
  50301. source: "./media/characters/cadbunny/gigantamax.svg",
  50302. extra: 1133/944,
  50303. bottom: 90/1223
  50304. },
  50305. default: true,
  50306. form: "gigantamax"
  50307. },
  50308. },
  50309. [
  50310. {
  50311. name: "Normal",
  50312. height: math.unit(6 + 6/12, "feet"),
  50313. default: true,
  50314. form: "normal"
  50315. },
  50316. {
  50317. name: "Small",
  50318. height: math.unit(26, "feet"),
  50319. default: true,
  50320. form: "gigantamax"
  50321. },
  50322. {
  50323. name: "Large",
  50324. height: math.unit(78, "feet"),
  50325. form: "gigantamax"
  50326. },
  50327. ],
  50328. {
  50329. "normal": {
  50330. name: "Normal",
  50331. default: true
  50332. },
  50333. "gigantamax": {
  50334. name: "Gigantamax"
  50335. }
  50336. }
  50337. ))
  50338. characterMakers.push(() => makeCharacter(
  50339. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50340. {
  50341. anthroFront: {
  50342. height: math.unit(8, "feet"),
  50343. weight: math.unit(300, "lb"),
  50344. name: "Front",
  50345. image: {
  50346. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50347. extra: 1272/1176,
  50348. bottom: 53/1325
  50349. },
  50350. form: "anthro",
  50351. default: true
  50352. },
  50353. feralSide: {
  50354. height: math.unit(4, "feet"),
  50355. weight: math.unit(250, "lb"),
  50356. name: "Side",
  50357. image: {
  50358. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50359. extra: 731/621,
  50360. bottom: 0/731
  50361. },
  50362. form: "feral",
  50363. default: true
  50364. },
  50365. },
  50366. [
  50367. {
  50368. name: "Regular",
  50369. height: math.unit(8, "feet"),
  50370. form: "anthro"
  50371. },
  50372. {
  50373. name: "Macro",
  50374. height: math.unit(250, "feet"),
  50375. form: "anthro",
  50376. default: true
  50377. },
  50378. {
  50379. name: "Regular",
  50380. height: math.unit(4, "feet"),
  50381. form: "feral"
  50382. },
  50383. {
  50384. name: "Macro",
  50385. height: math.unit(125, "feet"),
  50386. form: "feral",
  50387. default: true
  50388. },
  50389. ],
  50390. {
  50391. "anthro": {
  50392. name: "Anthro",
  50393. default: true
  50394. },
  50395. "feral": {
  50396. name: "Feral",
  50397. },
  50398. }
  50399. ))
  50400. characterMakers.push(() => makeCharacter(
  50401. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50402. {
  50403. front: {
  50404. height: math.unit(11 + 10/12, "feet"),
  50405. weight: math.unit(1587, "kg"),
  50406. name: "Front",
  50407. image: {
  50408. source: "./media/characters/maple-javira-dragon/front.svg",
  50409. extra: 1136/744,
  50410. bottom: 73/1209
  50411. }
  50412. },
  50413. side: {
  50414. height: math.unit(11 + 10/12, "feet"),
  50415. weight: math.unit(1587, "kg"),
  50416. name: "Side",
  50417. image: {
  50418. source: "./media/characters/maple-javira-dragon/side.svg",
  50419. extra: 712/505,
  50420. bottom: 17/729
  50421. }
  50422. },
  50423. head: {
  50424. height: math.unit(8.05, "feet"),
  50425. name: "Head",
  50426. image: {
  50427. source: "./media/characters/maple-javira-dragon/head.svg",
  50428. extra: 1420/1344,
  50429. bottom: 0/1420
  50430. }
  50431. },
  50432. },
  50433. [
  50434. {
  50435. name: "Normal",
  50436. height: math.unit(11 + 10/12, "feet"),
  50437. default: true
  50438. },
  50439. ]
  50440. ))
  50441. characterMakers.push(() => makeCharacter(
  50442. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50443. {
  50444. front: {
  50445. height: math.unit(117, "cm"),
  50446. weight: math.unit(50, "kg"),
  50447. name: "Front",
  50448. image: {
  50449. source: "./media/characters/sonia-wyverntail/front.svg",
  50450. extra: 708/592,
  50451. bottom: 25/733
  50452. }
  50453. },
  50454. },
  50455. [
  50456. {
  50457. name: "Normal",
  50458. height: math.unit(117, "cm"),
  50459. default: true
  50460. },
  50461. ]
  50462. ))
  50463. characterMakers.push(() => makeCharacter(
  50464. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50465. {
  50466. front: {
  50467. height: math.unit(6 + 5/12, "feet"),
  50468. name: "Front",
  50469. image: {
  50470. source: "./media/characters/micah/front.svg",
  50471. extra: 1758/1546,
  50472. bottom: 214/1972
  50473. }
  50474. },
  50475. },
  50476. [
  50477. {
  50478. name: "Normal",
  50479. height: math.unit(6 + 5/12, "feet"),
  50480. default: true
  50481. },
  50482. ]
  50483. ))
  50484. characterMakers.push(() => makeCharacter(
  50485. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50486. {
  50487. front: {
  50488. height: math.unit(5 + 10/12, "feet"),
  50489. weight: math.unit(220, "lb"),
  50490. name: "Front",
  50491. image: {
  50492. source: "./media/characters/zarya/front.svg",
  50493. extra: 593/572,
  50494. bottom: 50/643
  50495. }
  50496. },
  50497. back: {
  50498. height: math.unit(5 + 10/12, "feet"),
  50499. weight: math.unit(220, "lb"),
  50500. name: "Back",
  50501. image: {
  50502. source: "./media/characters/zarya/back.svg",
  50503. extra: 603/582,
  50504. bottom: 38/641
  50505. }
  50506. },
  50507. },
  50508. [
  50509. {
  50510. name: "Normal",
  50511. height: math.unit(5 + 10/12, "feet"),
  50512. default: true
  50513. },
  50514. ]
  50515. ))
  50516. characterMakers.push(() => makeCharacter(
  50517. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50518. {
  50519. front: {
  50520. height: math.unit(7.5, "feet"),
  50521. name: "Front",
  50522. image: {
  50523. source: "./media/characters/sven-hatisson/front.svg",
  50524. extra: 917/857,
  50525. bottom: 42/959
  50526. }
  50527. },
  50528. back: {
  50529. height: math.unit(7.5, "feet"),
  50530. name: "Back",
  50531. image: {
  50532. source: "./media/characters/sven-hatisson/back.svg",
  50533. extra: 903/856,
  50534. bottom: 15/918
  50535. }
  50536. },
  50537. },
  50538. [
  50539. {
  50540. name: "Base Height",
  50541. height: math.unit(7.5, "feet")
  50542. },
  50543. {
  50544. name: "Usual Height",
  50545. height: math.unit(13.5, "feet"),
  50546. default: true
  50547. },
  50548. {
  50549. name: "Smaller Macro",
  50550. height: math.unit(85, "feet")
  50551. },
  50552. {
  50553. name: "Moderate Macro",
  50554. height: math.unit(320, "feet")
  50555. },
  50556. {
  50557. name: "Large Macro",
  50558. height: math.unit(1000, "feet")
  50559. },
  50560. {
  50561. name: "Largest Size",
  50562. height: math.unit(2, "miles")
  50563. },
  50564. ]
  50565. ))
  50566. characterMakers.push(() => makeCharacter(
  50567. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50568. {
  50569. side: {
  50570. height: math.unit(1.8, "meters"),
  50571. weight: math.unit(275, "kg"),
  50572. name: "Side",
  50573. image: {
  50574. source: "./media/characters/terra/side.svg",
  50575. extra: 1273/1147,
  50576. bottom: 0/1273
  50577. }
  50578. },
  50579. },
  50580. [
  50581. {
  50582. name: "Normal",
  50583. height: math.unit(16.2, "meters"),
  50584. default: true
  50585. },
  50586. ]
  50587. ))
  50588. characterMakers.push(() => makeCharacter(
  50589. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50590. {
  50591. borzoiFront: {
  50592. height: math.unit(6 + 9/12, "feet"),
  50593. name: "Front",
  50594. image: {
  50595. source: "./media/characters/rae/borzoi-front.svg",
  50596. extra: 1161/1098,
  50597. bottom: 31/1192
  50598. },
  50599. form: "borzoi",
  50600. default: true
  50601. },
  50602. werewolfFront: {
  50603. height: math.unit(8 + 7/12, "feet"),
  50604. name: "Front",
  50605. image: {
  50606. source: "./media/characters/rae/werewolf-front.svg",
  50607. extra: 1411/1334,
  50608. bottom: 127/1538
  50609. },
  50610. form: "werewolf",
  50611. default: true
  50612. },
  50613. },
  50614. [
  50615. {
  50616. name: "Normal",
  50617. height: math.unit(6 + 9/12, "feet"),
  50618. default: true,
  50619. form: "borzoi"
  50620. },
  50621. {
  50622. name: "Normal",
  50623. height: math.unit(8 + 7/12, "feet"),
  50624. default: true,
  50625. form: "werewolf"
  50626. },
  50627. ],
  50628. {
  50629. "borzoi": {
  50630. name: "Borzoi",
  50631. default: true
  50632. },
  50633. "werewolf": {
  50634. name: "Werewolf",
  50635. },
  50636. }
  50637. ))
  50638. characterMakers.push(() => makeCharacter(
  50639. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50640. {
  50641. front: {
  50642. height: math.unit(8 + 7/12, "feet"),
  50643. weight: math.unit(482, "lb"),
  50644. name: "Front",
  50645. image: {
  50646. source: "./media/characters/kit/front.svg",
  50647. extra: 1247/1103,
  50648. bottom: 41/1288
  50649. }
  50650. },
  50651. back: {
  50652. height: math.unit(8 + 7/12, "feet"),
  50653. weight: math.unit(482, "lb"),
  50654. name: "Back",
  50655. image: {
  50656. source: "./media/characters/kit/back.svg",
  50657. extra: 1252/1123,
  50658. bottom: 21/1273
  50659. }
  50660. },
  50661. paw: {
  50662. height: math.unit(1.46, "feet"),
  50663. name: "Paw",
  50664. image: {
  50665. source: "./media/characters/kit/paw.svg"
  50666. }
  50667. },
  50668. },
  50669. [
  50670. {
  50671. name: "Normal",
  50672. height: math.unit(2.61, "meters"),
  50673. default: true
  50674. },
  50675. {
  50676. name: "\"Tall\"",
  50677. height: math.unit(8.21, "meters")
  50678. },
  50679. {
  50680. name: "Tall",
  50681. height: math.unit(19.6, "meters")
  50682. },
  50683. {
  50684. name: "Very Tall",
  50685. height: math.unit(57.91, "meters")
  50686. },
  50687. {
  50688. name: "Semi-Macro",
  50689. height: math.unit(138.64, "meters")
  50690. },
  50691. {
  50692. name: "Macro",
  50693. height: math.unit(831.99, "meters")
  50694. },
  50695. {
  50696. name: "EX-Macro",
  50697. height: math.unit(96451121, "meters")
  50698. },
  50699. {
  50700. name: "S1-Omnipotent",
  50701. height: math.unit(4.42074e+9, "meters")
  50702. },
  50703. {
  50704. name: "S2-Omnipotent",
  50705. height: math.unit(9.42074e+17, "meters")
  50706. },
  50707. {
  50708. name: "Omnipotent",
  50709. height: math.unit(4.23112e+24, "meters")
  50710. },
  50711. {
  50712. name: "Hypergod",
  50713. height: math.unit(5.05176e+27, "meters")
  50714. },
  50715. {
  50716. name: "Hypergod-EX",
  50717. height: math.unit(9.45532e+49, "meters")
  50718. },
  50719. {
  50720. name: "Hypergod-SP",
  50721. height: math.unit(9.45532e+195, "meters")
  50722. },
  50723. ]
  50724. ))
  50725. characterMakers.push(() => makeCharacter(
  50726. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50727. {
  50728. side: {
  50729. height: math.unit(0.6, "meters"),
  50730. weight: math.unit(24, "kg"),
  50731. name: "Side",
  50732. image: {
  50733. source: "./media/characters/celeste/side.svg",
  50734. extra: 810/517,
  50735. bottom: 53/863
  50736. }
  50737. },
  50738. },
  50739. [
  50740. {
  50741. name: "Velociraptor",
  50742. height: math.unit(0.6, "meters"),
  50743. default: true
  50744. },
  50745. {
  50746. name: "Utahraptor",
  50747. height: math.unit(1.8, "meters")
  50748. },
  50749. {
  50750. name: "Gallimimus",
  50751. height: math.unit(4.0, "meters")
  50752. },
  50753. {
  50754. name: "Large",
  50755. height: math.unit(20, "meters")
  50756. },
  50757. {
  50758. name: "Planetary",
  50759. height: math.unit(50, "megameters")
  50760. },
  50761. {
  50762. name: "Stellar",
  50763. height: math.unit(1.5, "gigameters")
  50764. },
  50765. {
  50766. name: "Galactic",
  50767. height: math.unit(100, "exameters")
  50768. },
  50769. ]
  50770. ))
  50771. characterMakers.push(() => makeCharacter(
  50772. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50773. {
  50774. front: {
  50775. height: math.unit(6, "feet"),
  50776. weight: math.unit(210, "lb"),
  50777. name: "Front",
  50778. image: {
  50779. source: "./media/characters/glacia/front.svg",
  50780. extra: 958/901,
  50781. bottom: 45/1003
  50782. }
  50783. },
  50784. },
  50785. [
  50786. {
  50787. name: "Macro",
  50788. height: math.unit(1000, "meters"),
  50789. default: true
  50790. },
  50791. ]
  50792. ))
  50793. characterMakers.push(() => makeCharacter(
  50794. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50795. {
  50796. front: {
  50797. height: math.unit(4, "meters"),
  50798. name: "Front",
  50799. image: {
  50800. source: "./media/characters/giri/front.svg",
  50801. extra: 966/894,
  50802. bottom: 21/987
  50803. }
  50804. },
  50805. },
  50806. [
  50807. {
  50808. name: "Normal",
  50809. height: math.unit(4, "meters"),
  50810. default: true
  50811. },
  50812. ]
  50813. ))
  50814. characterMakers.push(() => makeCharacter(
  50815. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50816. {
  50817. back: {
  50818. height: math.unit(4, "feet"),
  50819. weight: math.unit(37, "lb"),
  50820. name: "Back",
  50821. image: {
  50822. source: "./media/characters/tin/back.svg",
  50823. extra: 845/780,
  50824. bottom: 28/873
  50825. }
  50826. },
  50827. },
  50828. [
  50829. {
  50830. name: "Normal",
  50831. height: math.unit(4, "feet"),
  50832. default: true
  50833. },
  50834. ]
  50835. ))
  50836. characterMakers.push(() => makeCharacter(
  50837. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50838. {
  50839. front: {
  50840. height: math.unit(25, "feet"),
  50841. name: "Front",
  50842. image: {
  50843. source: "./media/characters/cadenza-vivace/front.svg",
  50844. extra: 1842/1578,
  50845. bottom: 30/1872
  50846. }
  50847. },
  50848. },
  50849. [
  50850. {
  50851. name: "Macro",
  50852. height: math.unit(25, "feet"),
  50853. default: true
  50854. },
  50855. ]
  50856. ))
  50857. characterMakers.push(() => makeCharacter(
  50858. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50859. {
  50860. front: {
  50861. height: math.unit(10, "feet"),
  50862. weight: math.unit(625, "kg"),
  50863. name: "Front",
  50864. image: {
  50865. source: "./media/characters/zain/front.svg",
  50866. extra: 1682/1498,
  50867. bottom: 223/1905
  50868. }
  50869. },
  50870. back: {
  50871. height: math.unit(10, "feet"),
  50872. weight: math.unit(625, "kg"),
  50873. name: "Back",
  50874. image: {
  50875. source: "./media/characters/zain/back.svg",
  50876. extra: 1814/1657,
  50877. bottom: 152/1966
  50878. }
  50879. },
  50880. head: {
  50881. height: math.unit(10, "feet"),
  50882. weight: math.unit(625, "kg"),
  50883. name: "Head",
  50884. image: {
  50885. source: "./media/characters/zain/head.svg",
  50886. extra: 1059/762,
  50887. bottom: 0/1059
  50888. }
  50889. },
  50890. },
  50891. [
  50892. {
  50893. name: "Normal",
  50894. height: math.unit(10, "feet"),
  50895. default: true
  50896. },
  50897. ]
  50898. ))
  50899. characterMakers.push(() => makeCharacter(
  50900. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50901. {
  50902. front: {
  50903. height: math.unit(6 + 5/12, "feet"),
  50904. weight: math.unit(750, "lb"),
  50905. name: "Front",
  50906. image: {
  50907. source: "./media/characters/ruchex/front.svg",
  50908. extra: 877/820,
  50909. bottom: 17/894
  50910. },
  50911. extraAttributes: {
  50912. "width": {
  50913. name: "Width",
  50914. power: 1,
  50915. type: "length",
  50916. base: math.unit(4.757, "feet")
  50917. },
  50918. }
  50919. },
  50920. },
  50921. [
  50922. {
  50923. name: "Normal",
  50924. height: math.unit(6 + 5/12, "feet"),
  50925. default: true
  50926. },
  50927. ]
  50928. ))
  50929. characterMakers.push(() => makeCharacter(
  50930. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50931. {
  50932. dressedFront: {
  50933. height: math.unit(191, "cm"),
  50934. weight: math.unit(80, "kg"),
  50935. name: "Front",
  50936. image: {
  50937. source: "./media/characters/buster/dressed-front.svg",
  50938. extra: 1022/973,
  50939. bottom: 69/1091
  50940. }
  50941. },
  50942. dressedBack: {
  50943. height: math.unit(191, "cm"),
  50944. weight: math.unit(80, "kg"),
  50945. name: "Back",
  50946. image: {
  50947. source: "./media/characters/buster/dressed-back.svg",
  50948. extra: 1018/970,
  50949. bottom: 55/1073
  50950. }
  50951. },
  50952. nudeFront: {
  50953. height: math.unit(191, "cm"),
  50954. weight: math.unit(80, "kg"),
  50955. name: "Front (Nude)",
  50956. image: {
  50957. source: "./media/characters/buster/nude-front.svg",
  50958. extra: 1022/973,
  50959. bottom: 69/1091
  50960. }
  50961. },
  50962. nudeBack: {
  50963. height: math.unit(191, "cm"),
  50964. weight: math.unit(80, "kg"),
  50965. name: "Back (Nude)",
  50966. image: {
  50967. source: "./media/characters/buster/nude-back.svg",
  50968. extra: 1018/970,
  50969. bottom: 55/1073
  50970. }
  50971. },
  50972. dick: {
  50973. height: math.unit(2.59, "feet"),
  50974. name: "Dick",
  50975. image: {
  50976. source: "./media/characters/buster/dick.svg"
  50977. }
  50978. },
  50979. ass: {
  50980. height: math.unit(1.2, "feet"),
  50981. name: "Ass",
  50982. image: {
  50983. source: "./media/characters/buster/ass.svg"
  50984. }
  50985. },
  50986. },
  50987. [
  50988. {
  50989. name: "Normal",
  50990. height: math.unit(191, "cm"),
  50991. default: true
  50992. },
  50993. ]
  50994. ))
  50995. characterMakers.push(() => makeCharacter(
  50996. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  50997. {
  50998. side: {
  50999. height: math.unit(8.1, "feet"),
  51000. weight: math.unit(3500, "lb"),
  51001. name: "Side",
  51002. image: {
  51003. source: "./media/characters/sonya/side.svg",
  51004. extra: 1730/1317,
  51005. bottom: 86/1816
  51006. }
  51007. },
  51008. },
  51009. [
  51010. {
  51011. name: "Normal",
  51012. height: math.unit(8.1, "feet"),
  51013. default: true
  51014. },
  51015. ]
  51016. ))
  51017. characterMakers.push(() => makeCharacter(
  51018. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51019. {
  51020. front: {
  51021. height: math.unit(6, "feet"),
  51022. weight: math.unit(150, "lb"),
  51023. name: "Front",
  51024. image: {
  51025. source: "./media/characters/cadence-andrysiak/front.svg",
  51026. extra: 1164/1121,
  51027. bottom: 60/1224
  51028. }
  51029. },
  51030. back: {
  51031. height: math.unit(6, "feet"),
  51032. weight: math.unit(150, "lb"),
  51033. name: "Back",
  51034. image: {
  51035. source: "./media/characters/cadence-andrysiak/back.svg",
  51036. extra: 1200/1165,
  51037. bottom: 9/1209
  51038. }
  51039. },
  51040. dressed: {
  51041. height: math.unit(6, "feet"),
  51042. weight: math.unit(150, "lb"),
  51043. name: "Dressed",
  51044. image: {
  51045. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51046. extra: 1164/1121,
  51047. bottom: 60/1224
  51048. }
  51049. },
  51050. },
  51051. [
  51052. {
  51053. name: "Micro",
  51054. height: math.unit(1, "mm")
  51055. },
  51056. {
  51057. name: "Normal",
  51058. height: math.unit(6, "feet"),
  51059. default: true
  51060. },
  51061. ]
  51062. ))
  51063. characterMakers.push(() => makeCharacter(
  51064. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51065. {
  51066. front: {
  51067. height: math.unit(60, "inches"),
  51068. weight: math.unit(16, "lb"),
  51069. preyCapacity: math.unit(80, "liters"),
  51070. name: "Front",
  51071. image: {
  51072. source: "./media/characters/penny-lynx/front.svg",
  51073. extra: 1959/1769,
  51074. bottom: 49/2008
  51075. }
  51076. },
  51077. },
  51078. [
  51079. {
  51080. name: "Nokia",
  51081. height: math.unit(2, "inches")
  51082. },
  51083. {
  51084. name: "Desktop",
  51085. height: math.unit(24, "inches")
  51086. },
  51087. {
  51088. name: "TV",
  51089. height: math.unit(60, "inches")
  51090. },
  51091. {
  51092. name: "Jumbotron",
  51093. height: math.unit(12, "feet")
  51094. },
  51095. {
  51096. name: "Billboard",
  51097. height: math.unit(48, "feet"),
  51098. default: true
  51099. },
  51100. {
  51101. name: "IMAX",
  51102. height: math.unit(96, "feet")
  51103. },
  51104. {
  51105. name: "SINGULARITY",
  51106. height: math.unit(864938, "miles")
  51107. },
  51108. ]
  51109. ))
  51110. characterMakers.push(() => makeCharacter(
  51111. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51112. {
  51113. front: {
  51114. height: math.unit(5 + 4/12, "feet"),
  51115. weight: math.unit(230, "lb"),
  51116. name: "Front",
  51117. image: {
  51118. source: "./media/characters/sukebe/front.svg",
  51119. extra: 2130/2038,
  51120. bottom: 90/2220
  51121. }
  51122. },
  51123. back: {
  51124. height: math.unit(3.48, "feet"),
  51125. weight: math.unit(230, "lb"),
  51126. name: "Back",
  51127. image: {
  51128. source: "./media/characters/sukebe/back.svg",
  51129. extra: 1670/1604,
  51130. bottom: 0/1670
  51131. }
  51132. },
  51133. },
  51134. [
  51135. {
  51136. name: "Normal",
  51137. height: math.unit(5 + 4/12, "feet"),
  51138. default: true
  51139. },
  51140. ]
  51141. ))
  51142. characterMakers.push(() => makeCharacter(
  51143. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51144. {
  51145. front: {
  51146. height: math.unit(6, "feet"),
  51147. name: "Front",
  51148. image: {
  51149. source: "./media/characters/nylla/front.svg",
  51150. extra: 1868/1699,
  51151. bottom: 97/1965
  51152. }
  51153. },
  51154. back: {
  51155. height: math.unit(6, "feet"),
  51156. name: "Back",
  51157. image: {
  51158. source: "./media/characters/nylla/back.svg",
  51159. extra: 1889/1712,
  51160. bottom: 93/1982
  51161. }
  51162. },
  51163. frontNsfw: {
  51164. height: math.unit(6, "feet"),
  51165. name: "Front (NSFW)",
  51166. image: {
  51167. source: "./media/characters/nylla/front-nsfw.svg",
  51168. extra: 1868/1699,
  51169. bottom: 97/1965
  51170. },
  51171. extraAttributes: {
  51172. "dickLength": {
  51173. name: "Dick Length",
  51174. power: 1,
  51175. type: "length",
  51176. base: math.unit(1.4, "feet")
  51177. },
  51178. "cumVolume": {
  51179. name: "Cum Volume",
  51180. power: 3,
  51181. type: "volume",
  51182. base: math.unit(100, "mL")
  51183. },
  51184. }
  51185. },
  51186. backNsfw: {
  51187. height: math.unit(6, "feet"),
  51188. name: "Back (NSFW)",
  51189. image: {
  51190. source: "./media/characters/nylla/back-nsfw.svg",
  51191. extra: 1889/1712,
  51192. bottom: 93/1982
  51193. }
  51194. },
  51195. maw: {
  51196. height: math.unit(2.10, "feet"),
  51197. name: "Maw",
  51198. image: {
  51199. source: "./media/characters/nylla/maw.svg"
  51200. }
  51201. },
  51202. paws: {
  51203. height: math.unit(2.06, "feet"),
  51204. name: "Paws",
  51205. image: {
  51206. source: "./media/characters/nylla/paws.svg"
  51207. }
  51208. },
  51209. muzzle: {
  51210. height: math.unit(0.61, "feet"),
  51211. name: "Muzzle",
  51212. image: {
  51213. source: "./media/characters/nylla/muzzle.svg"
  51214. }
  51215. },
  51216. sheath: {
  51217. height: math.unit(1.305, "feet"),
  51218. name: "Sheath",
  51219. image: {
  51220. source: "./media/characters/nylla/sheath.svg"
  51221. }
  51222. },
  51223. },
  51224. [
  51225. {
  51226. name: "Micro",
  51227. height: math.unit(7.5, "inches")
  51228. },
  51229. {
  51230. name: "Normal",
  51231. height: math.unit(7, "feet"),
  51232. default: true
  51233. },
  51234. {
  51235. name: "Macro",
  51236. height: math.unit(60, "feet")
  51237. },
  51238. {
  51239. name: "Mega",
  51240. height: math.unit(200, "feet")
  51241. },
  51242. ]
  51243. ))
  51244. characterMakers.push(() => makeCharacter(
  51245. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51246. {
  51247. front: {
  51248. height: math.unit(10, "feet"),
  51249. weight: math.unit(2300, "lb"),
  51250. name: "Front",
  51251. image: {
  51252. source: "./media/characters/hunt3r/front.svg",
  51253. extra: 1909/1742,
  51254. bottom: 46/1955
  51255. }
  51256. },
  51257. },
  51258. [
  51259. {
  51260. name: "Normal",
  51261. height: math.unit(10, "feet"),
  51262. default: true
  51263. },
  51264. ]
  51265. ))
  51266. characterMakers.push(() => makeCharacter(
  51267. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51268. {
  51269. dressed: {
  51270. height: math.unit(11, "feet"),
  51271. weight: math.unit(18500, "lb"),
  51272. preyCapacity: math.unit(9, "people"),
  51273. name: "Dressed",
  51274. image: {
  51275. source: "./media/characters/cylphis/dressed.svg",
  51276. extra: 1028/1003,
  51277. bottom: 75/1103
  51278. },
  51279. },
  51280. undressed: {
  51281. height: math.unit(11, "feet"),
  51282. weight: math.unit(18500, "lb"),
  51283. preyCapacity: math.unit(9, "people"),
  51284. name: "Undressed",
  51285. image: {
  51286. source: "./media/characters/cylphis/undressed.svg",
  51287. extra: 1028/1003,
  51288. bottom: 75/1103
  51289. }
  51290. },
  51291. full: {
  51292. height: math.unit(11, "feet"),
  51293. weight: math.unit(18500 + 150*9, "lb"),
  51294. preyCapacity: math.unit(9, "people"),
  51295. name: "Full",
  51296. image: {
  51297. source: "./media/characters/cylphis/full.svg",
  51298. extra: 1028/1003,
  51299. bottom: 75/1103
  51300. }
  51301. },
  51302. },
  51303. [
  51304. {
  51305. name: "Small",
  51306. height: math.unit(8, "feet")
  51307. },
  51308. {
  51309. name: "Normal",
  51310. height: math.unit(11, "feet"),
  51311. default: true
  51312. },
  51313. ]
  51314. ))
  51315. characterMakers.push(() => makeCharacter(
  51316. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51317. {
  51318. front: {
  51319. height: math.unit(2 + 7/12, "feet"),
  51320. name: "Front",
  51321. image: {
  51322. source: "./media/characters/orishan/front.svg",
  51323. extra: 1058/1023,
  51324. bottom: 23/1081
  51325. }
  51326. },
  51327. back: {
  51328. height: math.unit(2 + 7/12, "feet"),
  51329. name: "Back",
  51330. image: {
  51331. source: "./media/characters/orishan/back.svg",
  51332. extra: 1058/1023,
  51333. bottom: 23/1081
  51334. }
  51335. },
  51336. },
  51337. [
  51338. {
  51339. name: "Micro",
  51340. height: math.unit(2, "cm")
  51341. },
  51342. {
  51343. name: "Normal",
  51344. height: math.unit(2 + 7/12, "feet"),
  51345. default: true
  51346. },
  51347. ]
  51348. ))
  51349. characterMakers.push(() => makeCharacter(
  51350. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51351. {
  51352. front: {
  51353. height: math.unit(3, "meters"),
  51354. weight: math.unit(508, "kg"),
  51355. name: "Front",
  51356. image: {
  51357. source: "./media/characters/seranis/front.svg",
  51358. extra: 1478/1454,
  51359. bottom: 41/1519
  51360. }
  51361. },
  51362. },
  51363. [
  51364. {
  51365. name: "Normal",
  51366. height: math.unit(3, "meters"),
  51367. default: true
  51368. },
  51369. {
  51370. name: "Macro",
  51371. height: math.unit(108, "meters")
  51372. },
  51373. {
  51374. name: "Megamacro",
  51375. height: math.unit(1250, "meters")
  51376. },
  51377. ]
  51378. ))
  51379. characterMakers.push(() => makeCharacter(
  51380. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51381. {
  51382. undressed: {
  51383. height: math.unit(5 + 3/12, "feet"),
  51384. name: "Undressed",
  51385. image: {
  51386. source: "./media/characters/ankou/undressed.svg",
  51387. extra: 1301/1213,
  51388. bottom: 87/1388
  51389. }
  51390. },
  51391. dressed: {
  51392. height: math.unit(5 + 3/12, "feet"),
  51393. name: "Dressed",
  51394. image: {
  51395. source: "./media/characters/ankou/dressed.svg",
  51396. extra: 1301/1213,
  51397. bottom: 87/1388
  51398. }
  51399. },
  51400. head: {
  51401. height: math.unit(1.61, "feet"),
  51402. name: "Head",
  51403. image: {
  51404. source: "./media/characters/ankou/head.svg"
  51405. }
  51406. },
  51407. },
  51408. [
  51409. {
  51410. name: "Normal",
  51411. height: math.unit(5 + 3/12, "feet"),
  51412. default: true
  51413. },
  51414. ]
  51415. ))
  51416. characterMakers.push(() => makeCharacter(
  51417. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51418. {
  51419. side: {
  51420. height: math.unit(6 + 3/12, "feet"),
  51421. weight: math.unit(200, "kg"),
  51422. name: "Side",
  51423. image: {
  51424. source: "./media/characters/juniper-skunktaur/side.svg",
  51425. extra: 1574/1229,
  51426. bottom: 38/1612
  51427. }
  51428. },
  51429. front: {
  51430. height: math.unit(6 + 3/12, "feet"),
  51431. weight: math.unit(200, "kg"),
  51432. name: "Front",
  51433. image: {
  51434. source: "./media/characters/juniper-skunktaur/front.svg",
  51435. extra: 1337/1278,
  51436. bottom: 22/1359
  51437. }
  51438. },
  51439. back: {
  51440. height: math.unit(6 + 3/12, "feet"),
  51441. weight: math.unit(200, "kg"),
  51442. name: "Back",
  51443. image: {
  51444. source: "./media/characters/juniper-skunktaur/back.svg",
  51445. extra: 1618/1273,
  51446. bottom: 13/1631
  51447. }
  51448. },
  51449. top: {
  51450. height: math.unit(2.62, "feet"),
  51451. weight: math.unit(200, "kg"),
  51452. name: "Top",
  51453. image: {
  51454. source: "./media/characters/juniper-skunktaur/top.svg"
  51455. }
  51456. },
  51457. },
  51458. [
  51459. {
  51460. name: "Normal",
  51461. height: math.unit(6 + 3/12, "feet"),
  51462. default: true
  51463. },
  51464. ]
  51465. ))
  51466. //characters
  51467. function makeCharacters() {
  51468. const results = [];
  51469. characterMakers.forEach(character => {
  51470. results.push(character());
  51471. });
  51472. return results;
  51473. }