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ů.
 
 
 

50260 řádky
1.2 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.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon",
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon",
  358. "plant",
  359. "animal"
  360. ]
  361. },
  362. "mouse": {
  363. name: "Mouse",
  364. parents: [
  365. "rodent"
  366. ]
  367. },
  368. "rat": {
  369. name: "Rat",
  370. parents: [
  371. "mammal"
  372. ]
  373. },
  374. "hoshiko-beast": {
  375. name: "Hoshiko Beast",
  376. parents: ["animal"]
  377. },
  378. "snow-jugani": {
  379. name: "Snow Jugani",
  380. parents: ["cat"]
  381. },
  382. "patamon": {
  383. name: "Patamon",
  384. parents: ["digimon", "guinea-pig"]
  385. },
  386. "digimon": {
  387. name: "Digimon",
  388. },
  389. "jugani": {
  390. name: "Jugani",
  391. parents: ["cat"]
  392. },
  393. "luxray": {
  394. name: "Luxray",
  395. parents: ["pokemon", "lion"]
  396. },
  397. "mech": {
  398. name: "Mech",
  399. parents: ["machine"]
  400. },
  401. "zoid": {
  402. name: "Zoid",
  403. parents: ["mech"]
  404. },
  405. "monster": {
  406. name: "Monster",
  407. parents: ["animal"]
  408. },
  409. "foo-dog": {
  410. name: "Foo Dog",
  411. parents: ["mammal"]
  412. },
  413. "elephant": {
  414. name: "Elephant",
  415. parents: ["mammal"]
  416. },
  417. "eagle": {
  418. name: "Eagle",
  419. parents: ["avian"]
  420. },
  421. "cow": {
  422. name: "Cow",
  423. parents: ["mammal"]
  424. },
  425. "crocodile": {
  426. name: "Crocodile",
  427. parents: ["reptile"]
  428. },
  429. "borzoi": {
  430. name: "Borzoi",
  431. parents: ["dog"]
  432. },
  433. "snake": {
  434. name: "Snake",
  435. parents: ["reptile"]
  436. },
  437. "horned-bush-viper": {
  438. name: "Horned Bush Viper",
  439. parents: ["viper"]
  440. },
  441. "cobra": {
  442. name: "Cobra",
  443. parents: ["snake"]
  444. },
  445. "harpy-eagle": {
  446. name: "Harpy Eagle",
  447. parents: ["eagle"]
  448. },
  449. "raptor": {
  450. name: "Raptor",
  451. parents: ["dinosaur"]
  452. },
  453. "dinosaur": {
  454. name: "Dinosaur",
  455. parents: ["reptile"]
  456. },
  457. "veilhound": {
  458. name: "Veilhound",
  459. parents: ["hellhound"]
  460. },
  461. "hellhound": {
  462. name: "Hellhound",
  463. parents: ["canine", "demon"]
  464. },
  465. "insect": {
  466. name: "Insect",
  467. parents: ["animal"]
  468. },
  469. "beetle": {
  470. name: "Beetle",
  471. parents: ["insect"]
  472. },
  473. "moth": {
  474. name: "Moth",
  475. parents: ["insect"]
  476. },
  477. "eastern-dragon": {
  478. name: "Eastern Dragon",
  479. parents: ["dragon"]
  480. },
  481. "jaguar": {
  482. name: "Jaguar",
  483. parents: ["cat"]
  484. },
  485. "horse": {
  486. name: "Horse",
  487. parents: ["mammal"]
  488. },
  489. "sergal": {
  490. name: "Sergal",
  491. parents: ["mammal"]
  492. },
  493. "gryphon": {
  494. name: "Gryphon",
  495. parents: ["lion", "eagle"]
  496. },
  497. "robot": {
  498. name: "Robot",
  499. parents: ["machine"]
  500. },
  501. "medihound": {
  502. name: "Medihound",
  503. parents: ["robot", "dog"]
  504. },
  505. "sylveon": {
  506. name: "Sylveon",
  507. parents: ["pokemon"]
  508. },
  509. "catgirl": {
  510. name: "Catgirl",
  511. parents: ["mammal"]
  512. },
  513. "cowgirl": {
  514. name: "Cowgirl",
  515. parents: ["mammal"]
  516. },
  517. "pony": {
  518. name: "Pony",
  519. parents: ["horse"]
  520. },
  521. "rabbit": {
  522. name: "Rabbit",
  523. parents: ["leporidae"]
  524. },
  525. "fennec-fox": {
  526. name: "Fennec Fox",
  527. parents: ["fox"]
  528. },
  529. "azodian": {
  530. name: "Azodian",
  531. parents: ["mouse"]
  532. },
  533. "shiba-inu": {
  534. name: "Shiba Inu",
  535. parents: ["dog"]
  536. },
  537. "changeling": {
  538. name: "Changeling",
  539. parents: ["insect"]
  540. },
  541. "cheetah": {
  542. name: "Cheetah",
  543. parents: ["cat"]
  544. },
  545. "golden-jackal": {
  546. name: "Golden Jackal",
  547. parents: ["jackal"]
  548. },
  549. "manectric": {
  550. name: "Manectric",
  551. parents: ["pokemon", "wolf"]
  552. },
  553. "rat": {
  554. name: "Rat",
  555. parents: ["rodent"]
  556. },
  557. "rodent": {
  558. name: "Rodent",
  559. parents: ["mammal"]
  560. },
  561. "octocoon": {
  562. name: "Octocoon",
  563. parents: ["raccoon", "octopus"]
  564. },
  565. "octopus": {
  566. name: "Octopus",
  567. parents: ["fish"]
  568. },
  569. "werewolf": {
  570. name: "Werewolf",
  571. parents: ["wolf", "werebeast"]
  572. },
  573. "werebeast": {
  574. name: "Werebeast",
  575. parents: ["monster"]
  576. },
  577. "meerkat": {
  578. name: "Meerkat",
  579. parents: ["mammal"]
  580. },
  581. "human": {
  582. name: "Human",
  583. parents: ["mammal"]
  584. },
  585. "geth": {
  586. name: "Geth",
  587. parents: ["android"]
  588. },
  589. "husky": {
  590. name: "Husky",
  591. parents: ["dog"]
  592. },
  593. "long-eared-bat": {
  594. name: "Long Eared Bat",
  595. parents: ["bat"]
  596. },
  597. "lizard": {
  598. name: "Lizard",
  599. parents: ["reptile"]
  600. },
  601. "salamander": {
  602. name: "Salamander",
  603. parents: ["lizard"]
  604. },
  605. "chameleon": {
  606. name: "Chameleon",
  607. parents: ["lizard"]
  608. },
  609. "gecko": {
  610. name: "Gecko",
  611. parents: ["lizard"]
  612. },
  613. "kobold": {
  614. name: "Kobold",
  615. parents: ["reptile"]
  616. },
  617. "charizard": {
  618. name: "Charizard",
  619. parents: ["pokemon", "dragon"]
  620. },
  621. "lugia": {
  622. name: "Lugia",
  623. parents: ["pokemon", "avian"]
  624. },
  625. "cerberus": {
  626. name: "Cerberus",
  627. parents: ["dog"]
  628. },
  629. "tyrantrum": {
  630. name: "Tyrantrum",
  631. parents: ["pokemon"]
  632. },
  633. "lemur": {
  634. name: "Lemur",
  635. parents: ["mammal"]
  636. },
  637. "kelpie": {
  638. name: "Kelpie",
  639. parents: ["horse", "monster"]
  640. },
  641. "labrador": {
  642. name: "Labrador",
  643. parents: ["dog"]
  644. },
  645. "sylveon": {
  646. name: "Sylveon",
  647. parents: ["eeveelution"]
  648. },
  649. "eeveelution": {
  650. name: "Eeveelution",
  651. parents: ["pokemon", "cat"]
  652. },
  653. "polar-bear": {
  654. name: "Polar Bear",
  655. parents: ["bear"]
  656. },
  657. "bear": {
  658. name: "Bear",
  659. parents: ["mammal"]
  660. },
  661. "absol": {
  662. name: "Absol",
  663. parents: ["pokemon", "cat"]
  664. },
  665. "wolver": {
  666. name: "Wolver",
  667. parents: ["mammal"]
  668. },
  669. "rottweiler": {
  670. name: "Rottweiler",
  671. parents: ["dog"]
  672. },
  673. "zebra": {
  674. name: "Zebra",
  675. parents: ["horse"]
  676. },
  677. "yoshi": {
  678. name: "Yoshi",
  679. parents: ["lizard"]
  680. },
  681. "lynx": {
  682. name: "Lynx",
  683. parents: ["cat"]
  684. },
  685. "unknown": {
  686. name: "Unknown",
  687. parents: []
  688. },
  689. "thylacine": {
  690. name: "Thylacine",
  691. parents: ["mammal"]
  692. },
  693. "gabumon": {
  694. name: "Gabumon",
  695. parents: ["digimon"]
  696. },
  697. "border-collie": {
  698. name: "Border Collie",
  699. parents: ["dog"]
  700. },
  701. "imp": {
  702. name: "Imp",
  703. parents: ["demon"]
  704. },
  705. "kangaroo": {
  706. name: "Kangaroo",
  707. parents: ["marsupial"]
  708. },
  709. "renamon": {
  710. name: "Renamon",
  711. parents: ["digimon", "fox"]
  712. },
  713. "candy-orca-dragon": {
  714. name: "Candy Orca Dragon",
  715. parents: ["fish", "dragon", "candy"]
  716. },
  717. "sabertooth-tiger": {
  718. name: "Sabertooth Tiger",
  719. parents: ["cat"]
  720. },
  721. "espurr": {
  722. name: "Espurr",
  723. parents: ["pokemon", "cat"]
  724. },
  725. "otter": {
  726. name: "Otter",
  727. parents: ["mustelid"]
  728. },
  729. "elemental": {
  730. name: "Elemental",
  731. parents: ["mammal"]
  732. },
  733. "mew": {
  734. name: "Mew",
  735. parents: ["pokemon"]
  736. },
  737. "goodra": {
  738. name: "Goodra",
  739. parents: ["pokemon"]
  740. },
  741. "fairy": {
  742. name: "Fairy",
  743. parents: ["magical"]
  744. },
  745. "typhlosion": {
  746. name: "Typhlosion",
  747. parents: ["pokemon"]
  748. },
  749. "magical": {
  750. name: "Magical",
  751. parents: []
  752. },
  753. "xenomorph": {
  754. name: "Xenomorph",
  755. parents: ["monster", "alien"]
  756. },
  757. "charr": {
  758. name: "Charr",
  759. parents: ["cat"]
  760. },
  761. "siberian-husky": {
  762. name: "Siberian Husky",
  763. parents: ["husky"]
  764. },
  765. "alligator": {
  766. name: "Alligator",
  767. parents: ["reptile"]
  768. },
  769. "bernese-mountain-dog": {
  770. name: "Bernese Mountain Dog",
  771. parents: ["dog"]
  772. },
  773. "reshiram": {
  774. name: "Reshiram",
  775. parents: ["pokemon", "dragon"]
  776. },
  777. "grizzly-bear": {
  778. name: "Grizzly Bear",
  779. parents: ["bear"]
  780. },
  781. "water-monitor": {
  782. name: "Water Monitor",
  783. parents: ["lizard"]
  784. },
  785. "banchofossa": {
  786. name: "Banchofossa",
  787. parents: ["mammal"]
  788. },
  789. "kirin": {
  790. name: "Kirin",
  791. parents: ["monster"]
  792. },
  793. "quilava": {
  794. name: "Quilava",
  795. parents: ["pokemon"]
  796. },
  797. "seviper": {
  798. name: "Seviper",
  799. parents: ["pokemon", "viper"]
  800. },
  801. "flying-fox": {
  802. name: "Flying Fox",
  803. parents: ["bat"]
  804. },
  805. "keynain": {
  806. name: "Keynain",
  807. parents: ["avian"]
  808. },
  809. "lucario": {
  810. name: "Lucario",
  811. parents: ["pokemon", "jackal"]
  812. },
  813. "siamese-cat": {
  814. name: "Siamese Cat",
  815. parents: ["cat"]
  816. },
  817. "spider": {
  818. name: "Spider",
  819. parents: ["insect"]
  820. },
  821. "samurott": {
  822. name: "Samurott",
  823. parents: ["pokemon", "otter"]
  824. },
  825. "megalodon": {
  826. name: "Megalodon",
  827. parents: ["shark"]
  828. },
  829. "unicorn": {
  830. name: "Unicorn",
  831. parents: ["horse"]
  832. },
  833. "greninja": {
  834. name: "Greninja",
  835. parents: ["pokemon", "frog"]
  836. },
  837. "water-dragon": {
  838. name: "Water Dragon",
  839. parents: ["dragon"]
  840. },
  841. "cross-fox": {
  842. name: "Cross Fox",
  843. parents: ["fox"]
  844. },
  845. "synth": {
  846. name: "Synth",
  847. parents: ["machine"]
  848. },
  849. "construct": {
  850. name: "Construct",
  851. parents: []
  852. },
  853. "mexican-wolf": {
  854. name: "Mexican Wolf",
  855. parents: ["wolf"]
  856. },
  857. "leopard": {
  858. name: "Leopard",
  859. parents: ["cat"]
  860. },
  861. "pig": {
  862. name: "Pig",
  863. parents: ["mammal"]
  864. },
  865. "ampharos": {
  866. name: "Ampharos",
  867. parents: ["pokemon", "sheep"]
  868. },
  869. "orca": {
  870. name: "Orca",
  871. parents: ["fish"]
  872. },
  873. "lycanroc": {
  874. name: "Lycanroc",
  875. parents: ["pokemon", "wolf"]
  876. },
  877. "surkanu": {
  878. name: "Surkanu",
  879. parents: ["monster"]
  880. },
  881. "seal": {
  882. name: "Seal",
  883. parents: ["mammal"]
  884. },
  885. "keldeo": {
  886. name: "Keldeo",
  887. parents: ["pokemon"]
  888. },
  889. "great-dane": {
  890. name: "Great Dane",
  891. parents: ["dog"]
  892. },
  893. "black-backed-jackal": {
  894. name: "Black Backed Jackal",
  895. parents: ["jackal"]
  896. },
  897. "sheep": {
  898. name: "Sheep",
  899. parents: ["mammal"]
  900. },
  901. "leopard-seal": {
  902. name: "Leopard Seal",
  903. parents: ["seal"]
  904. },
  905. "zoroark": {
  906. name: "Zoroark",
  907. parents: ["pokemon", "fox"]
  908. },
  909. "maned-wolf": {
  910. name: "Maned Wolf",
  911. parents: ["canine"]
  912. },
  913. "dracha": {
  914. name: "Dracha",
  915. parents: ["dragon"]
  916. },
  917. "wolxi": {
  918. name: "Wolxi",
  919. parents: ["mammal", "alien"]
  920. },
  921. "dratini": {
  922. name: "Dratini",
  923. parents: ["pokemon", "dragon"]
  924. },
  925. "skaven": {
  926. name: "Skaven",
  927. parents: ["rat"]
  928. },
  929. "mongoose": {
  930. name: "Mongoose",
  931. parents: ["mammal"]
  932. },
  933. "lopunny": {
  934. name: "Lopunny",
  935. parents: ["pokemon", "rabbit"]
  936. },
  937. "feraligatr": {
  938. name: "Feraligatr",
  939. parents: ["pokemon", "alligator"]
  940. },
  941. "houndoom": {
  942. name: "Houndoom",
  943. parents: ["pokemon", "dog"]
  944. },
  945. "protogen": {
  946. name: "Protogen",
  947. parents: ["machine"]
  948. },
  949. "saint-bernard": {
  950. name: "Saint Bernard",
  951. parents: ["dog"]
  952. },
  953. "crow": {
  954. name: "Crow",
  955. parents: ["corvid"]
  956. },
  957. "delphox": {
  958. name: "Delphox",
  959. parents: ["pokemon", "fox"]
  960. },
  961. "moose": {
  962. name: "Moose",
  963. parents: ["mammal"]
  964. },
  965. "joraxian": {
  966. name: "Joraxian",
  967. parents: ["monster", "canine", "demon"]
  968. },
  969. "nimbat": {
  970. name: "Nimbat",
  971. parents: ["mammal"]
  972. },
  973. "aardwolf": {
  974. name: "Aardwolf",
  975. parents: ["canine"]
  976. },
  977. "fluudrani": {
  978. name: "Fluudrani",
  979. parents: ["animal"]
  980. },
  981. "arcanine": {
  982. name: "Arcanine",
  983. parents: ["pokemon", "dog"]
  984. },
  985. "inteleon": {
  986. name: "Inteleon",
  987. parents: ["pokemon", "fish"]
  988. },
  989. "ninetales": {
  990. name: "Ninetales",
  991. parents: ["pokemon", "kitsune"]
  992. },
  993. "tigrex": {
  994. name: "Tigrex",
  995. parents: ["tiger"]
  996. },
  997. "zorua": {
  998. name: "Zorua",
  999. parents: ["pokemon", "fox"]
  1000. },
  1001. "vulpix": {
  1002. name: "Vulpix",
  1003. parents: ["pokemon", "fox"]
  1004. },
  1005. "barghest": {
  1006. name: "Barghest",
  1007. parents: ["monster"]
  1008. },
  1009. "gray-wolf": {
  1010. name: "Gray Wolf",
  1011. parents: ["wolf"]
  1012. },
  1013. "ruppells-fox": {
  1014. name: "Rüppell's Fox",
  1015. parents: ["fox"]
  1016. },
  1017. "bull-terrier": {
  1018. name: "Bull Terrier",
  1019. parents: ["dog"]
  1020. },
  1021. "european-honey-buzzard": {
  1022. name: "European Honey Buzzard",
  1023. parents: ["avian"]
  1024. },
  1025. "t-rex": {
  1026. name: "Tyrannosaurus Rex",
  1027. parents: ["dinosaur"]
  1028. },
  1029. "mactarian": {
  1030. name: "Mactarian",
  1031. parents: ["shark", "monster"]
  1032. },
  1033. "mewtwo-y": {
  1034. name: "Mewtwo Y",
  1035. parents: ["mewtwo"]
  1036. },
  1037. "mewtwo": {
  1038. name: "Mewtwo",
  1039. parents: ["pokemon"]
  1040. },
  1041. "eevee": {
  1042. name: "Eevee",
  1043. parents: ["eeveelution"]
  1044. },
  1045. "mienshao": {
  1046. name: "Mienshao",
  1047. parents: ["pokemon"]
  1048. },
  1049. "sugar-glider": {
  1050. name: "Sugar Glider",
  1051. parents: ["opossum"]
  1052. },
  1053. "spectral-bat": {
  1054. name: "Spectral Bat",
  1055. parents: ["bat"]
  1056. },
  1057. "scolipede": {
  1058. name: "Scolipede",
  1059. parents: ["pokemon", "insect"]
  1060. },
  1061. "jackalope": {
  1062. name: "Jackalope",
  1063. parents: ["rabbit", "antelope"]
  1064. },
  1065. "caracal": {
  1066. name: "Caracal",
  1067. parents: ["cat"]
  1068. },
  1069. "stoat": {
  1070. name: "Stoat",
  1071. parents: ["mammal"]
  1072. },
  1073. "african-golden-cat": {
  1074. name: "African Golden Cat",
  1075. parents: ["cat"]
  1076. },
  1077. "gigantosaurus": {
  1078. name: "Gigantosaurus",
  1079. parents: ["dinosaur"]
  1080. },
  1081. "zorgoia": {
  1082. name: "Zorgoia",
  1083. parents: ["mammal"]
  1084. },
  1085. "monitor-lizard": {
  1086. name: "Monitor Lizard",
  1087. parents: ["lizard"]
  1088. },
  1089. "ziralkia": {
  1090. name: "Ziralkia",
  1091. parents: ["mammal"]
  1092. },
  1093. "kiiasi": {
  1094. name: "Kiiasi",
  1095. parents: ["animal"]
  1096. },
  1097. "synx": {
  1098. name: "Synx",
  1099. parents: ["monster"]
  1100. },
  1101. "panther": {
  1102. name: "Panther",
  1103. parents: ["cat"]
  1104. },
  1105. "azumarill": {
  1106. name: "Azumarill",
  1107. parents: ["pokemon"]
  1108. },
  1109. "river-snaptail": {
  1110. name: "River Snaptail",
  1111. parents: ["otter", "crocodile"]
  1112. },
  1113. "great-blue-heron": {
  1114. name: "Great Blue Heron",
  1115. parents: ["avian"]
  1116. },
  1117. "smeargle": {
  1118. name: "Smeargle",
  1119. parents: ["pokemon"]
  1120. },
  1121. "vendeilen": {
  1122. name: "Vendeilen",
  1123. parents: ["monster"]
  1124. },
  1125. "ventura": {
  1126. name: "Ventura",
  1127. parents: ["canine"]
  1128. },
  1129. "clouded-leopard": {
  1130. name: "Clouded Leopard",
  1131. parents: ["leopard"]
  1132. },
  1133. "argonian": {
  1134. name: "Argonian",
  1135. parents: ["lizard"]
  1136. },
  1137. "salazzle": {
  1138. name: "Salazzle",
  1139. parents: ["pokemon", "lizard"]
  1140. },
  1141. "je-stoff-drachen": {
  1142. name: "Je-Stoff Drachen",
  1143. parents: ["dragon"]
  1144. },
  1145. "finnish-spitz-dog": {
  1146. name: "Finnish Spitz Dog",
  1147. parents: ["dog"]
  1148. },
  1149. "gray-fox": {
  1150. name: "Gray Fox",
  1151. parents: ["fox"]
  1152. },
  1153. "opossum": {
  1154. name: "Opossum",
  1155. parents: ["mammal"]
  1156. },
  1157. "antelope": {
  1158. name: "Antelope",
  1159. parents: ["mammal"]
  1160. },
  1161. "weavile": {
  1162. name: "Weavile",
  1163. parents: ["pokemon"]
  1164. },
  1165. "pikachu": {
  1166. name: "Pikachu",
  1167. parents: ["pokemon", "mouse"]
  1168. },
  1169. "grovyle": {
  1170. name: "Grovyle",
  1171. parents: ["pokemon", "plant"]
  1172. },
  1173. "sthara": {
  1174. name: "Sthara",
  1175. parents: ["snow-leopard", "reptile"]
  1176. },
  1177. "star-warrior": {
  1178. name: "Star Warrior",
  1179. parents: ["magical"]
  1180. },
  1181. "dragonoid": {
  1182. name: "Dragonoid",
  1183. parents: ["dragon"]
  1184. },
  1185. "suicune": {
  1186. name: "Suicune",
  1187. parents: ["pokemon"]
  1188. },
  1189. "vole": {
  1190. name: "Vole",
  1191. parents: ["mammal"]
  1192. },
  1193. "blaziken": {
  1194. name: "Blaziken",
  1195. parents: ["pokemon", "avian"]
  1196. },
  1197. "buizel": {
  1198. name: "Buizel",
  1199. parents: ["pokemon", "fish"]
  1200. },
  1201. "floatzel": {
  1202. name: "Floatzel",
  1203. parents: ["pokemon", "fish"]
  1204. },
  1205. "umok": {
  1206. name: "Umok",
  1207. parents: ["avian"]
  1208. },
  1209. "sea-monster": {
  1210. name: "Sea Monster",
  1211. parents: ["monster", "fish"]
  1212. },
  1213. "egyptian-vulture": {
  1214. name: "Egyptian Vulture",
  1215. parents: ["avian"]
  1216. },
  1217. "doberman": {
  1218. name: "Doberman",
  1219. parents: ["dog"]
  1220. },
  1221. "zangoose": {
  1222. name: "Zangoose",
  1223. parents: ["pokemon", "mongoose"]
  1224. },
  1225. "mongoose": {
  1226. name: "Mongoose",
  1227. parents: ["mammal"]
  1228. },
  1229. "wickerbeast": {
  1230. name: "Wickerbeast",
  1231. parents: ["monster"]
  1232. },
  1233. "zenari": {
  1234. name: "Zenari",
  1235. parents: ["lizard"]
  1236. },
  1237. "plant": {
  1238. name: "Plant",
  1239. parents: []
  1240. },
  1241. "raskatox": {
  1242. name: "Raskatox",
  1243. parents: ["raccoon", "skunk", "cat", "fox"]
  1244. },
  1245. "mikromare": {
  1246. name: "mikromare",
  1247. parents: ["alien"]
  1248. },
  1249. "alien": {
  1250. name: "Alien",
  1251. parents: ["animal"]
  1252. },
  1253. "deity": {
  1254. name: "Deity",
  1255. parents: []
  1256. },
  1257. "skarlan": {
  1258. name: "Skarlan",
  1259. parents: ["slug", "dragon"]
  1260. },
  1261. "slug": {
  1262. name: "Slug",
  1263. parents: ["mollusk"]
  1264. },
  1265. "mollusk": {
  1266. name: "Mollusk",
  1267. parents: ["animal"]
  1268. },
  1269. "chimera": {
  1270. name: "Chimera",
  1271. parents: ["monster"]
  1272. },
  1273. "gestalt": {
  1274. name: "Gestalt",
  1275. parents: ["construct"]
  1276. },
  1277. "mimic": {
  1278. name: "Mimic",
  1279. parents: ["monster"]
  1280. },
  1281. "calico-rat": {
  1282. name: "Calico Rat",
  1283. parents: ["rat"]
  1284. },
  1285. "panda": {
  1286. name: "Panda",
  1287. parents: ["mammal"]
  1288. },
  1289. "oni": {
  1290. name: "Oni",
  1291. parents: ["monster"]
  1292. },
  1293. "pegasus": {
  1294. name: "Pegasus",
  1295. parents: ["horse"]
  1296. },
  1297. "vulpera": {
  1298. name: "Vulpera",
  1299. parents: ["fennec-fox"]
  1300. },
  1301. "ceratosaurus": {
  1302. name: "Ceratosaurus",
  1303. parents: ["dinosaur"]
  1304. },
  1305. "nykur": {
  1306. name: "Nykur",
  1307. parents: ["horse", "monster"]
  1308. },
  1309. "giraffe": {
  1310. name: "Giraffe",
  1311. parents: ["mammal"]
  1312. },
  1313. "tauren": {
  1314. name: "Tauren",
  1315. parents: ["cow"]
  1316. },
  1317. "draconi": {
  1318. name: "Draconi",
  1319. parents: ["alien", "cat", "cyborg"]
  1320. },
  1321. "dire-wolf": {
  1322. name: "Dire Wolf",
  1323. parents: ["wolf"]
  1324. },
  1325. "ferromorph": {
  1326. name: "Ferromorph",
  1327. parents: ["construct"]
  1328. },
  1329. "meowth": {
  1330. name: "Meowth",
  1331. parents: ["cat", "pokemon"]
  1332. },
  1333. "pavodragon": {
  1334. name: "Pavodragon",
  1335. parents: ["dragon"]
  1336. },
  1337. "aaltranae": {
  1338. name: "Aaltranae",
  1339. parents: ["dragon"]
  1340. },
  1341. "cyborg": {
  1342. name: "Cyborg",
  1343. parents: ["machine"]
  1344. },
  1345. "draptor": {
  1346. name: "Draptor",
  1347. parents: ["dragon"]
  1348. },
  1349. "candy": {
  1350. name: "Candy",
  1351. parents: []
  1352. },
  1353. "drenath": {
  1354. name: "Drenath",
  1355. parents: ["dragon", "snake", "rabbit"]
  1356. },
  1357. "coyju": {
  1358. name: "Coyju",
  1359. parents: ["coyote", "kaiju"]
  1360. },
  1361. "kaiju": {
  1362. name: "Kaiju",
  1363. parents: ["monster"]
  1364. },
  1365. "nickit": {
  1366. name: "Nickit",
  1367. parents: ["pokemon", "cat"]
  1368. },
  1369. "lopunny": {
  1370. name: "Lopunny",
  1371. parents: ["pokemon", "rabbit"]
  1372. },
  1373. "korean-jindo-dog": {
  1374. name: "Korean Jindo Dog",
  1375. parents: ["dog"]
  1376. },
  1377. "naga": {
  1378. name: "Naga",
  1379. parents: ["snake", "monster"]
  1380. },
  1381. "undead": {
  1382. name: "Undead",
  1383. parents: ["monster"]
  1384. },
  1385. "whale": {
  1386. name: "Whale",
  1387. parents: ["fish"]
  1388. },
  1389. "gelato-bee": {
  1390. name: "Gelato Bee",
  1391. parents: ["bee"]
  1392. },
  1393. "bee": {
  1394. name: "Bee",
  1395. parents: ["insect"]
  1396. },
  1397. "gardevoir": {
  1398. name: "Gardevoir",
  1399. parents: ["pokemon"]
  1400. },
  1401. "ant": {
  1402. name: "Ant",
  1403. parents: ["insect"]
  1404. },
  1405. "frog": {
  1406. name: "Frog",
  1407. parents: ["amphibian"]
  1408. },
  1409. "amphibian": {
  1410. name: "Amphibian",
  1411. parents: ["animal"]
  1412. },
  1413. "pangolin": {
  1414. name: "Pangolin",
  1415. parents: ["mammal"]
  1416. },
  1417. "uragi'viidorn": {
  1418. name: "Uragi'viidorn",
  1419. parents: ["avian", "bear"]
  1420. },
  1421. "gryphdelphais": {
  1422. name: "Gryphdelphais",
  1423. parents: ["dolphin", "gryphon"]
  1424. },
  1425. "plush": {
  1426. name: "Plush",
  1427. parents: ["construct"]
  1428. },
  1429. "draiger": {
  1430. name: "Draiger",
  1431. parents: ["dragon","tiger"]
  1432. },
  1433. "foxsky": {
  1434. name: "Foxsky",
  1435. parents: ["fox", "husky"]
  1436. },
  1437. "umbreon": {
  1438. name: "Umbreon",
  1439. parents: ["eeveelution"]
  1440. },
  1441. "slime-dragon": {
  1442. name: "Slime Dragon",
  1443. parents: ["dragon", "goo"]
  1444. },
  1445. "enderman": {
  1446. name: "Enderman",
  1447. parents: ["monster"]
  1448. },
  1449. "gremlin": {
  1450. name: "Gremlin",
  1451. parents: ["monster"]
  1452. },
  1453. "dragonsune": {
  1454. name: "Dragonsune",
  1455. parents: ["dragon", "kitsune"]
  1456. },
  1457. "ghost": {
  1458. name: "Ghost",
  1459. parents: ["supernatural"]
  1460. },
  1461. "false-vampire-bat": {
  1462. name: "False Vampire Bat",
  1463. parents: ["bat"]
  1464. },
  1465. "succubus": {
  1466. name: "Succubus",
  1467. parents: ["demon"]
  1468. },
  1469. "mia": {
  1470. name: "Mia",
  1471. parents: ["canine"]
  1472. },
  1473. "rainbow": {
  1474. name: "Rainbow",
  1475. parents: ["monster"]
  1476. },
  1477. "solgaleo": {
  1478. name: "Solgaleo",
  1479. parents: ["pokemon"]
  1480. },
  1481. "lucent-nargacuga": {
  1482. name: "Lucent Nargacuga",
  1483. parents: ["monster-hunter"]
  1484. },
  1485. "monster-hunter": {
  1486. name: "Monster Hunter",
  1487. parents: ["monster"]
  1488. },
  1489. "leviathan": {
  1490. "name": "Leviathan",
  1491. "url": "sea-monster"
  1492. },
  1493. "bull": {
  1494. name: "Bull",
  1495. parents: ["mammal"]
  1496. },
  1497. "tanuki": {
  1498. name: "Tanuki",
  1499. parents: ["monster"]
  1500. },
  1501. "chakat": {
  1502. name: "Chakat",
  1503. parents: ["cat"]
  1504. },
  1505. "hydra": {
  1506. name: "Hydra",
  1507. parents: ["monster"]
  1508. },
  1509. "zigzagoon": {
  1510. name: "Zigzagoon",
  1511. parents: ["raccoon", "pokemon"]
  1512. },
  1513. "vulture": {
  1514. name: "Vulture",
  1515. parents: ["avian"]
  1516. },
  1517. "eastern-dragon": {
  1518. name: "Eastern Dragon",
  1519. parents: ["dragon"]
  1520. },
  1521. "gryffon": {
  1522. name: "Gryffon",
  1523. parents: ["phoenix", "red-panda"]
  1524. },
  1525. "amtsvane": {
  1526. name: "Amtsvane",
  1527. parents: ["reptile"]
  1528. },
  1529. "kigavi": {
  1530. name: "Kigavi",
  1531. parents: ["avian"]
  1532. },
  1533. "turian": {
  1534. name: "Turian",
  1535. parents: ["avian"]
  1536. },
  1537. "zeraora": {
  1538. name: "Zeraora",
  1539. parents: ["pokemon", "cat"]
  1540. },
  1541. "sandshrew": {
  1542. name: "Sandshrew",
  1543. parents: ["pokemon", "pangolin"]
  1544. },
  1545. "valais-blacknose-sheep": {
  1546. name: "Valais Blacknose Sheep",
  1547. parents: ["sheep"]
  1548. },
  1549. "novaleit": {
  1550. name: "Novaleit",
  1551. parents: ["mammal"]
  1552. },
  1553. "dunnoh": {
  1554. name: "Dunnoh",
  1555. parents: ["mammal"]
  1556. },
  1557. "lunaral-dragon": {
  1558. name: "Lunaral Dragon",
  1559. parents: ["dragon"]
  1560. },
  1561. "arctic-wolf": {
  1562. name: "Arctic Wolf",
  1563. parents: ["wolf"]
  1564. },
  1565. "donkey": {
  1566. name: "Donkey",
  1567. parents: ["horse"]
  1568. },
  1569. "chinchilla": {
  1570. name: "Chinchilla",
  1571. parents: ["rodent"]
  1572. },
  1573. "felkin": {
  1574. name: "Felkin",
  1575. parents: ["dragon"]
  1576. },
  1577. "tykeriel": {
  1578. name: "Tykeriel",
  1579. parents: ["avian"]
  1580. },
  1581. "folf": {
  1582. name: "Folf",
  1583. parents: ["fox", "wolf"]
  1584. },
  1585. "pooltoy": {
  1586. name: "Pooltoy",
  1587. parents: ["construct"]
  1588. },
  1589. "demi": {
  1590. name: "Demi",
  1591. parents: ["human"]
  1592. },
  1593. "stegosaurus": {
  1594. name: "Stegosaurus",
  1595. parents: ["dinosaur"]
  1596. },
  1597. "computer-virus": {
  1598. name: "Computer Virus",
  1599. parents: ["program"]
  1600. },
  1601. "program": {
  1602. name: "Program",
  1603. parents: ["construct"]
  1604. },
  1605. "space-springhare": {
  1606. name: "Space Springhare",
  1607. parents: ["hare"]
  1608. },
  1609. "river-drake": {
  1610. name: "River Drake",
  1611. parents: ["dragon"]
  1612. },
  1613. "djinn": {
  1614. "name": "Djinn",
  1615. "url": "supernatural"
  1616. },
  1617. "supernatural": {
  1618. name: "Supernatural",
  1619. parents: ["monster"]
  1620. },
  1621. "grasshopper-mouse": {
  1622. name: "Grasshopper Mouse",
  1623. parents: ["mouse"]
  1624. },
  1625. "somali-cat": {
  1626. name: "Somali Cat",
  1627. parents: ["cat"]
  1628. },
  1629. "minccino": {
  1630. name: "Minccino",
  1631. parents: ["pokemon", "chinchilla"]
  1632. },
  1633. "pine-marten": {
  1634. name: "Pine Marten",
  1635. parents: ["marten"]
  1636. },
  1637. "marten": {
  1638. name: "Marten",
  1639. parents: ["mustelid"]
  1640. },
  1641. "mustelid": {
  1642. name: "Mustelid",
  1643. parents: ["mammal"]
  1644. },
  1645. "caribou": {
  1646. name: "Caribou",
  1647. parents: ["deer"]
  1648. },
  1649. "gnoll": {
  1650. name: "Gnoll",
  1651. parents: ["hyena", "monster"]
  1652. },
  1653. "peacekeeper": {
  1654. name: "Peacekeeper",
  1655. parents: ["human"]
  1656. },
  1657. "river-otter": {
  1658. name: "River Otter",
  1659. parents: ["otter"]
  1660. },
  1661. "dhole": {
  1662. name: "Dhole",
  1663. parents: ["canine"]
  1664. },
  1665. "springbok": {
  1666. name: "Springbok",
  1667. parents: ["antelope"]
  1668. },
  1669. "marsupial": {
  1670. name: "Marsupial",
  1671. parents: ["mammal"]
  1672. },
  1673. "townsend-big-eared-bat": {
  1674. name: "Townsend Big-eared Bat",
  1675. parents: ["bat"]
  1676. },
  1677. "squirrel": {
  1678. name: "Squirrel",
  1679. parents: ["rodent"]
  1680. },
  1681. "magpie": {
  1682. name: "Magpie",
  1683. parents: ["corvid"]
  1684. },
  1685. "civet": {
  1686. name: "Civet",
  1687. parents: ["feliform"]
  1688. },
  1689. "feliform": {
  1690. name: "Feliform",
  1691. parents: ["mammal"]
  1692. },
  1693. "tiefling": {
  1694. name: "Tiefling",
  1695. parents: ["devil"]
  1696. },
  1697. "devil": {
  1698. name: "Devil",
  1699. parents: ["supernatural"]
  1700. },
  1701. "sika-deer": {
  1702. name: "Sika Deer",
  1703. parents: ["deer"]
  1704. },
  1705. "vaporeon": {
  1706. name: "Vaporeon",
  1707. parents: ["eeveelution"]
  1708. },
  1709. "leafeon": {
  1710. name: "Leafeon",
  1711. parents: ["eeveelution"]
  1712. },
  1713. "jolteon": {
  1714. name: "Jolteon",
  1715. parents: ["eeveelution"]
  1716. },
  1717. "spireborn": {
  1718. name: "Spireborn",
  1719. parents: ["zorgoia"]
  1720. },
  1721. "vampire": {
  1722. name: "Vampire",
  1723. parents: ["monster"]
  1724. },
  1725. "extraplanar": {
  1726. name: "Extraplanar",
  1727. parents: []
  1728. },
  1729. "goo": {
  1730. name: "Goo",
  1731. parents: []
  1732. },
  1733. "skink": {
  1734. name: "Skink",
  1735. parents: ["lizard"]
  1736. },
  1737. "bat-eared-fox": {
  1738. name: "Bat-eared Fox",
  1739. parents: ["fox"]
  1740. },
  1741. "belted-kingfisher": {
  1742. name: "Belted Kingfisher",
  1743. parents: ["avian"]
  1744. },
  1745. "omnifalcon": {
  1746. name: "Omnifalcon",
  1747. parents: ["gryphon", "falcon", "harpy-eagle"]
  1748. },
  1749. "falcon": {
  1750. name: "Falcon",
  1751. parents: ["avian"]
  1752. },
  1753. "avali": {
  1754. name: "Avali",
  1755. parents: ["avian", "alien"]
  1756. },
  1757. "arctic-fox": {
  1758. name: "Arctic Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "snow-tiger": {
  1762. name: "Snow Tiger",
  1763. parents: ["tiger"]
  1764. },
  1765. "marble-fox": {
  1766. name: "Marble Fox",
  1767. parents: ["fox"]
  1768. },
  1769. "king-wickerbeast": {
  1770. name: "King Wickerbeast",
  1771. parents: ["wickerbeast"]
  1772. },
  1773. "wickerbeast": {
  1774. name: "Wickerbeast",
  1775. parents: ["mammal"]
  1776. },
  1777. "european-polecat": {
  1778. name: "European Polecat",
  1779. parents: ["mustelid"]
  1780. },
  1781. "teshari": {
  1782. name: "Teshari",
  1783. parents: ["avian", "raptor"]
  1784. },
  1785. "alicorn": {
  1786. name: "Alicorn",
  1787. parents: ["horse"]
  1788. },
  1789. "atlas-moth": {
  1790. name: "Atlas Moth",
  1791. parents: ["moth"]
  1792. },
  1793. "owlbear": {
  1794. name: "Owlbear",
  1795. parents: ["owl", "bear", "monster"]
  1796. },
  1797. "owl": {
  1798. name: "Owl",
  1799. parents: ["avian"]
  1800. },
  1801. "silvertongue": {
  1802. name: "Silvertongue",
  1803. parents: ["reptile"]
  1804. },
  1805. "ahuizotl": {
  1806. name: "Ahuizotl",
  1807. parents: ["monster"]
  1808. },
  1809. "ender-dragon": {
  1810. name: "Ender Dragon",
  1811. parents: ["dragon"]
  1812. },
  1813. "bruhathkayosaurus": {
  1814. name: "Bruhathkayosaurus",
  1815. parents: ["sauropod"]
  1816. },
  1817. "sauropod": {
  1818. name: "Sauropod",
  1819. parents: ["dinosaur"]
  1820. },
  1821. "black-sable-antelope": {
  1822. name: "Black Sable Antelope",
  1823. parents: ["antelope"]
  1824. },
  1825. "slime": {
  1826. name: "Slime",
  1827. parents: ["goo"]
  1828. },
  1829. "utahraptor": {
  1830. name: "Utahraptor",
  1831. parents: ["raptor"]
  1832. },
  1833. "indian-giant-squirrel": {
  1834. name: "Indian Giant Squirrel",
  1835. parents: ["squirrel"]
  1836. },
  1837. "golden-retriever": {
  1838. name: "Golden Retriever",
  1839. parents: ["dog"]
  1840. },
  1841. "triceratops": {
  1842. name: "Triceratops",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "drake": {
  1846. name: "Drake",
  1847. parents: ["dragon"]
  1848. },
  1849. "okapi": {
  1850. name: "Okapi",
  1851. parents: ["giraffe"]
  1852. },
  1853. "arctic-hare": {
  1854. name: "Arctic Hare",
  1855. parents: ["hare"]
  1856. },
  1857. "hare": {
  1858. name: "Hare",
  1859. parents: ["leporidae"]
  1860. },
  1861. "leporidae": {
  1862. name: "Leporidae",
  1863. parents: ["mammal"]
  1864. },
  1865. "leopard-gecko": {
  1866. name: "Leopard Gecko",
  1867. parents: ["gecko"]
  1868. },
  1869. "dreamspawn": {
  1870. name: "Dreamspawn",
  1871. parents: ["illusion"]
  1872. },
  1873. "illusion": {
  1874. name: "Illusion",
  1875. parents: []
  1876. },
  1877. "purrloin": {
  1878. name: "Purrloin",
  1879. parents: ["cat", "pokemon"]
  1880. },
  1881. "noivern": {
  1882. name: "Noivern",
  1883. parents: ["bat", "dragon", "pokemon"]
  1884. },
  1885. "hedgehog": {
  1886. name: "Hedgehog",
  1887. parents: ["mammal"]
  1888. },
  1889. "liger": {
  1890. name: "Liger",
  1891. parents: ["lion", "tiger", "hybrid"]
  1892. },
  1893. "hybrid": {
  1894. name: "Hybrid",
  1895. parents: []
  1896. },
  1897. "drider": {
  1898. name: "Drider",
  1899. parents: ["spider"]
  1900. },
  1901. "sabresune": {
  1902. name: "Sabresune",
  1903. parents: ["kitsune", "sabertooth-tiger"]
  1904. },
  1905. "ditto": {
  1906. name: "Ditto",
  1907. parents: ["pokemon", "goo"]
  1908. },
  1909. "amogus": {
  1910. name: "Amogus",
  1911. parents: ["deity"]
  1912. },
  1913. "ferret": {
  1914. name: "Ferret",
  1915. parents: ["mustelid"]
  1916. },
  1917. "guinea-pig": {
  1918. name: "Guinea Pig",
  1919. parents: ["rodent"]
  1920. },
  1921. "viper": {
  1922. name: "Viper",
  1923. parents: ["snake"]
  1924. },
  1925. }
  1926. //species
  1927. function getSpeciesInfo(speciesList) {
  1928. let result = new Set();
  1929. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1930. result.add(entry)
  1931. });
  1932. return Array.from(result);
  1933. };
  1934. function getSpeciesInfoHelper(species) {
  1935. if (!speciesData[species]) {
  1936. console.warn(species + " doesn't exist");
  1937. return [];
  1938. }
  1939. if (speciesData[species].parents) {
  1940. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1941. } else {
  1942. return [species];
  1943. }
  1944. }
  1945. characterMakers.push(() => makeCharacter(
  1946. {
  1947. name: "Fen",
  1948. species: ["crux"],
  1949. description: {
  1950. title: "Bio",
  1951. text: "Very furry. Sheds on everything."
  1952. },
  1953. tags: [
  1954. "anthro",
  1955. "goo"
  1956. ]
  1957. },
  1958. {
  1959. front: {
  1960. height: math.unit(12, "feet"),
  1961. weight: math.unit(2400, "lb"),
  1962. name: "Front",
  1963. image: {
  1964. source: "./media/characters/fen/front.svg",
  1965. extra: 1804/1562,
  1966. bottom: 205/2009
  1967. }
  1968. },
  1969. diving: {
  1970. height: math.unit(4.9, "meters"),
  1971. weight: math.unit(2400, "lb"),
  1972. name: "Diving",
  1973. image: {
  1974. source: "./media/characters/fen/diving.svg"
  1975. }
  1976. },
  1977. goo: {
  1978. height: math.unit(12, "feet"),
  1979. weight: math.unit(3600, "lb"),
  1980. volume: math.unit(1000, "liters"),
  1981. capacity: math.unit(6, "people"),
  1982. name: "Goo",
  1983. image: {
  1984. source: "./media/characters/fen/goo.svg",
  1985. extra: 1307/1071,
  1986. bottom: 134/1441
  1987. }
  1988. },
  1989. maw: {
  1990. height: math.unit(5.03, "feet"),
  1991. name: "Maw",
  1992. image: {
  1993. source: "./media/characters/fen/maw.svg"
  1994. }
  1995. },
  1996. gooCeiling: {
  1997. height: math.unit(6.6, "feet"),
  1998. weight: math.unit(3000, "lb"),
  1999. volume: math.unit(1000, "liters"),
  2000. capacity: math.unit(6, "people"),
  2001. name: "Goo (Ceiling)",
  2002. image: {
  2003. source: "./media/characters/fen/goo-ceiling.svg"
  2004. }
  2005. },
  2006. back: {
  2007. height: math.unit(12, "feet"),
  2008. weight: math.unit(2400, "lb"),
  2009. name: "Back",
  2010. image: {
  2011. source: "./media/characters/fen/back.svg",
  2012. },
  2013. info: {
  2014. description: {
  2015. mode: "append",
  2016. text: "\n\nHe is not currently looking at you."
  2017. }
  2018. }
  2019. },
  2020. full: {
  2021. height: math.unit(1.6, "meter"),
  2022. weight: math.unit(3200, "lb"),
  2023. name: "Full",
  2024. image: {
  2025. source: "./media/characters/fen/full.svg",
  2026. extra: 1133/859,
  2027. bottom: 145/1278
  2028. },
  2029. info: {
  2030. description: {
  2031. mode: "append",
  2032. text: "\n\nMunch."
  2033. }
  2034. }
  2035. },
  2036. gooLounging: {
  2037. height: math.unit(4.53, "feet"),
  2038. weight: math.unit(3000, "lb"),
  2039. capacity: math.unit(6, "people"),
  2040. name: "Goo (Lounging)",
  2041. image: {
  2042. source: "./media/characters/fen/goo-lounging.svg",
  2043. bottom: 116 / 613
  2044. }
  2045. },
  2046. lounging: {
  2047. height: math.unit(10.52, "feet"),
  2048. weight: math.unit(2400, "lb"),
  2049. name: "Lounging",
  2050. image: {
  2051. source: "./media/characters/fen/lounging.svg"
  2052. }
  2053. },
  2054. },
  2055. [
  2056. {
  2057. name: "Small",
  2058. height: math.unit(2.2428, "meter")
  2059. },
  2060. {
  2061. name: "Normal",
  2062. height: math.unit(12, "feet"),
  2063. default: true,
  2064. },
  2065. {
  2066. name: "Big",
  2067. height: math.unit(20, "feet")
  2068. },
  2069. {
  2070. name: "Minimacro",
  2071. height: math.unit(40, "feet"),
  2072. info: {
  2073. description: {
  2074. mode: "append",
  2075. text: "\n\nTOO DAMN BIG"
  2076. }
  2077. }
  2078. },
  2079. {
  2080. name: "Macro",
  2081. height: math.unit(100, "feet"),
  2082. info: {
  2083. description: {
  2084. mode: "append",
  2085. text: "\n\nTOO DAMN BIG"
  2086. }
  2087. }
  2088. },
  2089. {
  2090. name: "Megamacro",
  2091. height: math.unit(2, "miles")
  2092. },
  2093. {
  2094. name: "Gigamacro",
  2095. height: math.unit(10, "earths")
  2096. },
  2097. ]
  2098. ))
  2099. characterMakers.push(() => makeCharacter(
  2100. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2101. {
  2102. front: {
  2103. height: math.unit(183, "cm"),
  2104. weight: math.unit(80, "kg"),
  2105. name: "Front",
  2106. image: {
  2107. source: "./media/characters/sofia-fluttertail/front.svg",
  2108. bottom: 0.01,
  2109. extra: 2154 / 2081
  2110. }
  2111. },
  2112. frontAlt: {
  2113. height: math.unit(183, "cm"),
  2114. weight: math.unit(80, "kg"),
  2115. name: "Front (alt)",
  2116. image: {
  2117. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2118. }
  2119. },
  2120. back: {
  2121. height: math.unit(183, "cm"),
  2122. weight: math.unit(80, "kg"),
  2123. name: "Back",
  2124. image: {
  2125. source: "./media/characters/sofia-fluttertail/back.svg"
  2126. }
  2127. },
  2128. kneeling: {
  2129. height: math.unit(125, "cm"),
  2130. weight: math.unit(80, "kg"),
  2131. name: "Kneeling",
  2132. image: {
  2133. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2134. extra: 1033 / 977,
  2135. bottom: 23.7 / 1057
  2136. }
  2137. },
  2138. maw: {
  2139. height: math.unit(183 / 5, "cm"),
  2140. name: "Maw",
  2141. image: {
  2142. source: "./media/characters/sofia-fluttertail/maw.svg"
  2143. }
  2144. },
  2145. mawcloseup: {
  2146. height: math.unit(183 / 5 * 0.41, "cm"),
  2147. name: "Maw (Closeup)",
  2148. image: {
  2149. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2150. }
  2151. },
  2152. paws: {
  2153. height: math.unit(1.17, "feet"),
  2154. name: "Paws",
  2155. image: {
  2156. source: "./media/characters/sofia-fluttertail/paws.svg",
  2157. extra: 851 / 851,
  2158. bottom: 17 / 868
  2159. }
  2160. },
  2161. },
  2162. [
  2163. {
  2164. name: "Normal",
  2165. height: math.unit(1.83, "meter")
  2166. },
  2167. {
  2168. name: "Size Thief",
  2169. height: math.unit(18, "feet")
  2170. },
  2171. {
  2172. name: "50 Foot Collie",
  2173. height: math.unit(50, "feet")
  2174. },
  2175. {
  2176. name: "Macro",
  2177. height: math.unit(96, "feet"),
  2178. default: true
  2179. },
  2180. {
  2181. name: "Megamerger",
  2182. height: math.unit(650, "feet")
  2183. },
  2184. ]
  2185. ))
  2186. characterMakers.push(() => makeCharacter(
  2187. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2188. {
  2189. front: {
  2190. height: math.unit(7, "feet"),
  2191. weight: math.unit(100, "kg"),
  2192. name: "Front",
  2193. image: {
  2194. source: "./media/characters/march/front.svg",
  2195. extra: 1992/1851,
  2196. bottom: 39/2031
  2197. }
  2198. },
  2199. foot: {
  2200. height: math.unit(0.9, "feet"),
  2201. name: "Foot",
  2202. image: {
  2203. source: "./media/characters/march/foot.svg"
  2204. }
  2205. },
  2206. },
  2207. [
  2208. {
  2209. name: "Normal",
  2210. height: math.unit(7.9, "feet")
  2211. },
  2212. {
  2213. name: "Macro",
  2214. height: math.unit(220, "meters")
  2215. },
  2216. {
  2217. name: "Megamacro",
  2218. height: math.unit(2.98, "km"),
  2219. default: true
  2220. },
  2221. {
  2222. name: "Gigamacro",
  2223. height: math.unit(15963, "km")
  2224. },
  2225. {
  2226. name: "Teramacro",
  2227. height: math.unit(2980000000, "km")
  2228. },
  2229. {
  2230. name: "Examacro",
  2231. height: math.unit(250, "parsecs")
  2232. },
  2233. ]
  2234. ))
  2235. characterMakers.push(() => makeCharacter(
  2236. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2237. {
  2238. front: {
  2239. height: math.unit(6, "feet"),
  2240. weight: math.unit(60, "kg"),
  2241. name: "Front",
  2242. image: {
  2243. source: "./media/characters/noir/front.svg",
  2244. extra: 1,
  2245. bottom: 0.032
  2246. }
  2247. },
  2248. },
  2249. [
  2250. {
  2251. name: "Normal",
  2252. height: math.unit(6.6, "feet")
  2253. },
  2254. {
  2255. name: "Macro",
  2256. height: math.unit(500, "feet")
  2257. },
  2258. {
  2259. name: "Megamacro",
  2260. height: math.unit(2.5, "km"),
  2261. default: true
  2262. },
  2263. {
  2264. name: "Gigamacro",
  2265. height: math.unit(22500, "km")
  2266. },
  2267. {
  2268. name: "Teramacro",
  2269. height: math.unit(2500000000, "km")
  2270. },
  2271. {
  2272. name: "Examacro",
  2273. height: math.unit(200, "parsecs")
  2274. },
  2275. ]
  2276. ))
  2277. characterMakers.push(() => makeCharacter(
  2278. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2279. {
  2280. front: {
  2281. height: math.unit(7, "feet"),
  2282. weight: math.unit(100, "kg"),
  2283. name: "Front",
  2284. image: {
  2285. source: "./media/characters/okuri/front.svg",
  2286. extra: 739/665,
  2287. bottom: 39/778
  2288. }
  2289. },
  2290. back: {
  2291. height: math.unit(7, "feet"),
  2292. weight: math.unit(100, "kg"),
  2293. name: "Back",
  2294. image: {
  2295. source: "./media/characters/okuri/back.svg",
  2296. extra: 734/653,
  2297. bottom: 13/747
  2298. }
  2299. },
  2300. sitting: {
  2301. height: math.unit(2.95, "feet"),
  2302. weight: math.unit(100, "kg"),
  2303. name: "Sitting",
  2304. image: {
  2305. source: "./media/characters/okuri/sitting.svg",
  2306. extra: 370/318,
  2307. bottom: 99/469
  2308. }
  2309. },
  2310. },
  2311. [
  2312. {
  2313. name: "Smallest",
  2314. height: math.unit(5 + 2/12, "feet")
  2315. },
  2316. {
  2317. name: "Smaller",
  2318. height: math.unit(300, "feet")
  2319. },
  2320. {
  2321. name: "Small",
  2322. height: math.unit(1000, "feet")
  2323. },
  2324. {
  2325. name: "Macro",
  2326. height: math.unit(1, "mile")
  2327. },
  2328. {
  2329. name: "Mega Macro (Small)",
  2330. height: math.unit(20, "km")
  2331. },
  2332. {
  2333. name: "Mega Macro (Large)",
  2334. height: math.unit(600, "km")
  2335. },
  2336. {
  2337. name: "Giga Macro",
  2338. height: math.unit(10000, "km")
  2339. },
  2340. {
  2341. name: "Normal",
  2342. height: math.unit(577560, "km"),
  2343. default: true
  2344. },
  2345. {
  2346. name: "Large",
  2347. height: math.unit(4, "galaxies")
  2348. },
  2349. {
  2350. name: "Largest",
  2351. height: math.unit(15, "multiverses")
  2352. },
  2353. ]
  2354. ))
  2355. characterMakers.push(() => makeCharacter(
  2356. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2357. {
  2358. front: {
  2359. height: math.unit(7, "feet"),
  2360. weight: math.unit(100, "kg"),
  2361. name: "Front",
  2362. image: {
  2363. source: "./media/characters/manny/front.svg",
  2364. extra: 1,
  2365. bottom: 0.06
  2366. }
  2367. },
  2368. back: {
  2369. height: math.unit(7, "feet"),
  2370. weight: math.unit(100, "kg"),
  2371. name: "Back",
  2372. image: {
  2373. source: "./media/characters/manny/back.svg",
  2374. extra: 1,
  2375. bottom: 0.014
  2376. }
  2377. },
  2378. },
  2379. [
  2380. {
  2381. name: "Normal",
  2382. height: math.unit(7, "feet"),
  2383. },
  2384. {
  2385. name: "Macro",
  2386. height: math.unit(78, "feet"),
  2387. default: true
  2388. },
  2389. {
  2390. name: "Macro+",
  2391. height: math.unit(300, "meters")
  2392. },
  2393. {
  2394. name: "Macro++",
  2395. height: math.unit(2400, "meters")
  2396. },
  2397. {
  2398. name: "Megamacro",
  2399. height: math.unit(5167, "meters")
  2400. },
  2401. {
  2402. name: "Gigamacro",
  2403. height: math.unit(41769, "miles")
  2404. },
  2405. ]
  2406. ))
  2407. characterMakers.push(() => makeCharacter(
  2408. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2409. {
  2410. front: {
  2411. height: math.unit(7, "feet"),
  2412. weight: math.unit(100, "kg"),
  2413. name: "Front",
  2414. image: {
  2415. source: "./media/characters/adake/front-1.svg"
  2416. }
  2417. },
  2418. frontAlt: {
  2419. height: math.unit(7, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Front (Alt)",
  2422. image: {
  2423. source: "./media/characters/adake/front-2.svg",
  2424. extra: 1,
  2425. bottom: 0.01
  2426. }
  2427. },
  2428. back: {
  2429. height: math.unit(7, "feet"),
  2430. weight: math.unit(100, "kg"),
  2431. name: "Back",
  2432. image: {
  2433. source: "./media/characters/adake/back.svg",
  2434. }
  2435. },
  2436. kneel: {
  2437. height: math.unit(5.385, "feet"),
  2438. weight: math.unit(100, "kg"),
  2439. name: "Kneeling",
  2440. image: {
  2441. source: "./media/characters/adake/kneel.svg",
  2442. bottom: 0.052
  2443. }
  2444. },
  2445. },
  2446. [
  2447. {
  2448. name: "Normal",
  2449. height: math.unit(7, "feet"),
  2450. },
  2451. {
  2452. name: "Macro",
  2453. height: math.unit(78, "feet"),
  2454. default: true
  2455. },
  2456. {
  2457. name: "Macro+",
  2458. height: math.unit(300, "meters")
  2459. },
  2460. {
  2461. name: "Macro++",
  2462. height: math.unit(2400, "meters")
  2463. },
  2464. {
  2465. name: "Megamacro",
  2466. height: math.unit(5167, "meters")
  2467. },
  2468. {
  2469. name: "Gigamacro",
  2470. height: math.unit(41769, "miles")
  2471. },
  2472. ]
  2473. ))
  2474. characterMakers.push(() => makeCharacter(
  2475. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2476. {
  2477. front: {
  2478. height: math.unit(1.65, "meters"),
  2479. weight: math.unit(50, "kg"),
  2480. name: "Front",
  2481. image: {
  2482. source: "./media/characters/elijah/front.svg",
  2483. extra: 858 / 830,
  2484. bottom: 95.5 / 953.8559
  2485. }
  2486. },
  2487. back: {
  2488. height: math.unit(1.65, "meters"),
  2489. weight: math.unit(50, "kg"),
  2490. name: "Back",
  2491. image: {
  2492. source: "./media/characters/elijah/back.svg",
  2493. extra: 895 / 850,
  2494. bottom: 5.3 / 897.956
  2495. }
  2496. },
  2497. frontNsfw: {
  2498. height: math.unit(1.65, "meters"),
  2499. weight: math.unit(50, "kg"),
  2500. name: "Front (NSFW)",
  2501. image: {
  2502. source: "./media/characters/elijah/front-nsfw.svg",
  2503. extra: 858 / 830,
  2504. bottom: 95.5 / 953.8559
  2505. }
  2506. },
  2507. backNsfw: {
  2508. height: math.unit(1.65, "meters"),
  2509. weight: math.unit(50, "kg"),
  2510. name: "Back (NSFW)",
  2511. image: {
  2512. source: "./media/characters/elijah/back-nsfw.svg",
  2513. extra: 895 / 850,
  2514. bottom: 5.3 / 897.956
  2515. }
  2516. },
  2517. dick: {
  2518. height: math.unit(1, "feet"),
  2519. name: "Dick",
  2520. image: {
  2521. source: "./media/characters/elijah/dick.svg"
  2522. }
  2523. },
  2524. beakOpen: {
  2525. height: math.unit(1.25, "feet"),
  2526. name: "Beak (Open)",
  2527. image: {
  2528. source: "./media/characters/elijah/beak-open.svg"
  2529. }
  2530. },
  2531. beakShut: {
  2532. height: math.unit(1.25, "feet"),
  2533. name: "Beak (Shut)",
  2534. image: {
  2535. source: "./media/characters/elijah/beak-shut.svg"
  2536. }
  2537. },
  2538. footFlexing: {
  2539. height: math.unit(1.61, "feet"),
  2540. name: "Foot (Flexing)",
  2541. image: {
  2542. source: "./media/characters/elijah/foot-flexing.svg"
  2543. }
  2544. },
  2545. footStepping: {
  2546. height: math.unit(1.44, "feet"),
  2547. name: "Foot (Stepping)",
  2548. image: {
  2549. source: "./media/characters/elijah/foot-stepping.svg"
  2550. }
  2551. },
  2552. plantigradeLeg: {
  2553. height: math.unit(2.34, "feet"),
  2554. name: "Plantigrade Leg",
  2555. image: {
  2556. source: "./media/characters/elijah/plantigrade-leg.svg"
  2557. }
  2558. },
  2559. plantigradeFootLeft: {
  2560. height: math.unit(0.9, "feet"),
  2561. name: "Plantigrade Foot (Left)",
  2562. image: {
  2563. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2564. }
  2565. },
  2566. plantigradeFootRight: {
  2567. height: math.unit(0.9, "feet"),
  2568. name: "Plantigrade Foot (Right)",
  2569. image: {
  2570. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2571. }
  2572. },
  2573. },
  2574. [
  2575. {
  2576. name: "Normal",
  2577. height: math.unit(1.65, "meters")
  2578. },
  2579. {
  2580. name: "Macro",
  2581. height: math.unit(55, "meters"),
  2582. default: true
  2583. },
  2584. {
  2585. name: "Macro+",
  2586. height: math.unit(105, "meters")
  2587. },
  2588. ]
  2589. ))
  2590. characterMakers.push(() => makeCharacter(
  2591. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2592. {
  2593. front: {
  2594. height: math.unit(7 + 2/12, "feet"),
  2595. weight: math.unit(320, "kg"),
  2596. name: "Front",
  2597. image: {
  2598. source: "./media/characters/rai/front.svg",
  2599. extra: 1802/1696,
  2600. bottom: 68/1870
  2601. }
  2602. },
  2603. frontDressed: {
  2604. height: math.unit(7 + 2/12, "feet"),
  2605. weight: math.unit(320, "kg"),
  2606. name: "Front (Dressed)",
  2607. image: {
  2608. source: "./media/characters/rai/front-dressed.svg",
  2609. extra: 1802/1696,
  2610. bottom: 68/1870
  2611. }
  2612. },
  2613. side: {
  2614. height: math.unit(7 + 2/12, "feet"),
  2615. weight: math.unit(320, "kg"),
  2616. name: "Side",
  2617. image: {
  2618. source: "./media/characters/rai/side.svg",
  2619. extra: 1789/1710,
  2620. bottom: 115/1904
  2621. }
  2622. },
  2623. back: {
  2624. height: math.unit(7 + 2/12, "feet"),
  2625. weight: math.unit(320, "kg"),
  2626. name: "Back",
  2627. image: {
  2628. source: "./media/characters/rai/back.svg",
  2629. extra: 1770/1707,
  2630. bottom: 28/1798
  2631. }
  2632. },
  2633. feral: {
  2634. height: math.unit(9.5, "feet"),
  2635. weight: math.unit(640, "kg"),
  2636. name: "Feral",
  2637. image: {
  2638. source: "./media/characters/rai/feral.svg",
  2639. extra: 945/553,
  2640. bottom: 176/1121
  2641. }
  2642. },
  2643. dragon: {
  2644. height: math.unit(23, "feet"),
  2645. weight: math.unit(50000, "lb"),
  2646. name: "Dragon",
  2647. image: {
  2648. source: "./media/characters/rai/dragon.svg",
  2649. extra: 2498 / 2030,
  2650. bottom: 85.2 / 2584
  2651. }
  2652. },
  2653. maw: {
  2654. height: math.unit(1.69, "feet"),
  2655. name: "Maw",
  2656. image: {
  2657. source: "./media/characters/rai/maw.svg"
  2658. }
  2659. },
  2660. },
  2661. [
  2662. {
  2663. name: "Normal",
  2664. height: math.unit(7 + 2/12, "feet")
  2665. },
  2666. {
  2667. name: "Big",
  2668. height: math.unit(11, "feet")
  2669. },
  2670. {
  2671. name: "Macro",
  2672. height: math.unit(302, "feet"),
  2673. default: true
  2674. },
  2675. ]
  2676. ))
  2677. characterMakers.push(() => makeCharacter(
  2678. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2679. {
  2680. frontDressed: {
  2681. height: math.unit(216, "feet"),
  2682. weight: math.unit(7000000, "lb"),
  2683. name: "Front (Dressed)",
  2684. image: {
  2685. source: "./media/characters/jazzy/front-dressed.svg",
  2686. extra: 2738 / 2651,
  2687. bottom: 41.8 / 2786
  2688. }
  2689. },
  2690. backDressed: {
  2691. height: math.unit(216, "feet"),
  2692. weight: math.unit(7000000, "lb"),
  2693. name: "Back (Dressed)",
  2694. image: {
  2695. source: "./media/characters/jazzy/back-dressed.svg",
  2696. extra: 2775 / 2673,
  2697. bottom: 36.8 / 2817
  2698. }
  2699. },
  2700. front: {
  2701. height: math.unit(216, "feet"),
  2702. weight: math.unit(7000000, "lb"),
  2703. name: "Front",
  2704. image: {
  2705. source: "./media/characters/jazzy/front.svg",
  2706. extra: 2738 / 2651,
  2707. bottom: 41.8 / 2786
  2708. }
  2709. },
  2710. back: {
  2711. height: math.unit(216, "feet"),
  2712. weight: math.unit(7000000, "lb"),
  2713. name: "Back",
  2714. image: {
  2715. source: "./media/characters/jazzy/back.svg",
  2716. extra: 2775 / 2673,
  2717. bottom: 36.8 / 2817
  2718. }
  2719. },
  2720. maw: {
  2721. height: math.unit(20, "feet"),
  2722. name: "Maw",
  2723. image: {
  2724. source: "./media/characters/jazzy/maw.svg"
  2725. }
  2726. },
  2727. paws: {
  2728. height: math.unit(27.5, "feet"),
  2729. name: "Paws",
  2730. image: {
  2731. source: "./media/characters/jazzy/paws.svg"
  2732. }
  2733. },
  2734. eye: {
  2735. height: math.unit(4.4, "feet"),
  2736. name: "Eye",
  2737. image: {
  2738. source: "./media/characters/jazzy/eye.svg"
  2739. }
  2740. },
  2741. droneOffense: {
  2742. height: math.unit(9.5, "inches"),
  2743. name: "Drone (Offense)",
  2744. image: {
  2745. source: "./media/characters/jazzy/drone-offense.svg"
  2746. }
  2747. },
  2748. droneRecon: {
  2749. height: math.unit(9.5, "inches"),
  2750. name: "Drone (Recon)",
  2751. image: {
  2752. source: "./media/characters/jazzy/drone-recon.svg"
  2753. }
  2754. },
  2755. droneDefense: {
  2756. height: math.unit(9.5, "inches"),
  2757. name: "Drone (Defense)",
  2758. image: {
  2759. source: "./media/characters/jazzy/drone-defense.svg"
  2760. }
  2761. },
  2762. },
  2763. [
  2764. {
  2765. name: "Macro",
  2766. height: math.unit(216, "feet"),
  2767. default: true
  2768. },
  2769. ]
  2770. ))
  2771. characterMakers.push(() => makeCharacter(
  2772. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2773. {
  2774. front: {
  2775. height: math.unit(9 + 6/12, "feet"),
  2776. weight: math.unit(700, "lb"),
  2777. name: "Front",
  2778. image: {
  2779. source: "./media/characters/flamm/front.svg",
  2780. extra: 1751/1632,
  2781. bottom: 46/1797
  2782. }
  2783. },
  2784. buff: {
  2785. height: math.unit(9 + 6/12, "feet"),
  2786. weight: math.unit(950, "lb"),
  2787. name: "Buff",
  2788. image: {
  2789. source: "./media/characters/flamm/buff.svg",
  2790. extra: 3018/2874,
  2791. bottom: 221/3239
  2792. }
  2793. },
  2794. },
  2795. [
  2796. {
  2797. name: "Normal",
  2798. height: math.unit(9.5, "feet")
  2799. },
  2800. {
  2801. name: "Macro",
  2802. height: math.unit(200, "feet"),
  2803. default: true
  2804. },
  2805. ]
  2806. ))
  2807. characterMakers.push(() => makeCharacter(
  2808. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2809. {
  2810. front: {
  2811. height: math.unit(5 + 3/12, "feet"),
  2812. weight: math.unit(60, "kg"),
  2813. name: "Front",
  2814. image: {
  2815. source: "./media/characters/zephiro/front.svg",
  2816. extra: 2309 / 2162,
  2817. bottom: 0.069
  2818. }
  2819. },
  2820. side: {
  2821. height: math.unit(5 + 3/12, "feet"),
  2822. weight: math.unit(60, "kg"),
  2823. name: "Side",
  2824. image: {
  2825. source: "./media/characters/zephiro/side.svg",
  2826. extra: 2403 / 2279,
  2827. bottom: 0.015
  2828. }
  2829. },
  2830. back: {
  2831. height: math.unit(5 + 3/12, "feet"),
  2832. weight: math.unit(60, "kg"),
  2833. name: "Back",
  2834. image: {
  2835. source: "./media/characters/zephiro/back.svg",
  2836. extra: 2373 / 2244,
  2837. bottom: 0.013
  2838. }
  2839. },
  2840. hand: {
  2841. height: math.unit(0.68, "feet"),
  2842. name: "Hand",
  2843. image: {
  2844. source: "./media/characters/zephiro/hand.svg"
  2845. }
  2846. },
  2847. paw: {
  2848. height: math.unit(1, "feet"),
  2849. name: "Paw",
  2850. image: {
  2851. source: "./media/characters/zephiro/paw.svg"
  2852. }
  2853. },
  2854. beans: {
  2855. height: math.unit(0.93, "feet"),
  2856. name: "Beans",
  2857. image: {
  2858. source: "./media/characters/zephiro/beans.svg"
  2859. }
  2860. },
  2861. },
  2862. [
  2863. {
  2864. name: "Micro",
  2865. height: math.unit(3, "inches")
  2866. },
  2867. {
  2868. name: "Normal",
  2869. height: math.unit(5 + 3 / 12, "feet"),
  2870. default: true
  2871. },
  2872. {
  2873. name: "Macro",
  2874. height: math.unit(118, "feet")
  2875. },
  2876. ]
  2877. ))
  2878. characterMakers.push(() => makeCharacter(
  2879. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2880. {
  2881. front: {
  2882. height: math.unit(5, "feet"),
  2883. weight: math.unit(90, "kg"),
  2884. name: "Front",
  2885. image: {
  2886. source: "./media/characters/fory/front.svg",
  2887. extra: 2862 / 2674,
  2888. bottom: 180 / 3043.8
  2889. }
  2890. },
  2891. back: {
  2892. height: math.unit(5, "feet"),
  2893. weight: math.unit(90, "kg"),
  2894. name: "Back",
  2895. image: {
  2896. source: "./media/characters/fory/back.svg",
  2897. extra: 2962 / 2791,
  2898. bottom: 106 / 3071.8
  2899. }
  2900. },
  2901. foot: {
  2902. height: math.unit(2.14, "feet"),
  2903. name: "Foot",
  2904. image: {
  2905. source: "./media/characters/fory/foot.svg"
  2906. }
  2907. },
  2908. },
  2909. [
  2910. {
  2911. name: "Normal",
  2912. height: math.unit(5, "feet")
  2913. },
  2914. {
  2915. name: "Macro",
  2916. height: math.unit(50, "feet"),
  2917. default: true
  2918. },
  2919. {
  2920. name: "Megamacro",
  2921. height: math.unit(10, "miles")
  2922. },
  2923. {
  2924. name: "Gigamacro",
  2925. height: math.unit(5, "earths")
  2926. },
  2927. ]
  2928. ))
  2929. characterMakers.push(() => makeCharacter(
  2930. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2931. {
  2932. front: {
  2933. height: math.unit(7, "feet"),
  2934. weight: math.unit(90, "kg"),
  2935. name: "Front",
  2936. image: {
  2937. source: "./media/characters/kurrikage/front.svg",
  2938. extra: 1845/1733,
  2939. bottom: 119/1964
  2940. }
  2941. },
  2942. back: {
  2943. height: math.unit(7, "feet"),
  2944. weight: math.unit(90, "kg"),
  2945. name: "Back",
  2946. image: {
  2947. source: "./media/characters/kurrikage/back.svg",
  2948. extra: 1790/1677,
  2949. bottom: 61/1851
  2950. }
  2951. },
  2952. dressed: {
  2953. height: math.unit(7, "feet"),
  2954. weight: math.unit(90, "kg"),
  2955. name: "Dressed",
  2956. image: {
  2957. source: "./media/characters/kurrikage/dressed.svg",
  2958. extra: 1845/1733,
  2959. bottom: 119/1964
  2960. }
  2961. },
  2962. foot: {
  2963. height: math.unit(1.5, "feet"),
  2964. name: "Foot",
  2965. image: {
  2966. source: "./media/characters/kurrikage/foot.svg"
  2967. }
  2968. },
  2969. staff: {
  2970. height: math.unit(6.7, "feet"),
  2971. name: "Staff",
  2972. image: {
  2973. source: "./media/characters/kurrikage/staff.svg"
  2974. }
  2975. },
  2976. peek: {
  2977. height: math.unit(1.05, "feet"),
  2978. name: "Peeking",
  2979. image: {
  2980. source: "./media/characters/kurrikage/peek.svg",
  2981. bottom: 0.08
  2982. }
  2983. },
  2984. },
  2985. [
  2986. {
  2987. name: "Normal",
  2988. height: math.unit(12, "feet"),
  2989. default: true
  2990. },
  2991. {
  2992. name: "Big",
  2993. height: math.unit(20, "feet")
  2994. },
  2995. {
  2996. name: "Macro",
  2997. height: math.unit(500, "feet")
  2998. },
  2999. {
  3000. name: "Megamacro",
  3001. height: math.unit(20, "miles")
  3002. },
  3003. ]
  3004. ))
  3005. characterMakers.push(() => makeCharacter(
  3006. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3007. {
  3008. front: {
  3009. height: math.unit(6, "feet"),
  3010. weight: math.unit(75, "kg"),
  3011. name: "Front",
  3012. image: {
  3013. source: "./media/characters/shingo/front.svg",
  3014. extra: 1900/1825,
  3015. bottom: 82/1982
  3016. }
  3017. },
  3018. side: {
  3019. height: math.unit(6, "feet"),
  3020. weight: math.unit(75, "kg"),
  3021. name: "Side",
  3022. image: {
  3023. source: "./media/characters/shingo/side.svg",
  3024. extra: 1930/1865,
  3025. bottom: 16/1946
  3026. }
  3027. },
  3028. back: {
  3029. height: math.unit(6, "feet"),
  3030. weight: math.unit(75, "kg"),
  3031. name: "Back",
  3032. image: {
  3033. source: "./media/characters/shingo/back.svg",
  3034. extra: 1922/1852,
  3035. bottom: 16/1938
  3036. }
  3037. },
  3038. frontDressed: {
  3039. height: math.unit(6, "feet"),
  3040. weight: math.unit(150, "lb"),
  3041. name: "Front-dressed",
  3042. image: {
  3043. source: "./media/characters/shingo/front-dressed.svg",
  3044. extra: 1900/1825,
  3045. bottom: 82/1982
  3046. }
  3047. },
  3048. paw: {
  3049. height: math.unit(1.29, "feet"),
  3050. name: "Paw",
  3051. image: {
  3052. source: "./media/characters/shingo/paw.svg"
  3053. }
  3054. },
  3055. hand: {
  3056. height: math.unit(1.07, "feet"),
  3057. name: "Hand",
  3058. image: {
  3059. source: "./media/characters/shingo/hand.svg"
  3060. }
  3061. },
  3062. frontAlt: {
  3063. height: math.unit(6, "feet"),
  3064. weight: math.unit(75, "kg"),
  3065. name: "Front (Alt)",
  3066. image: {
  3067. source: "./media/characters/shingo/front-alt.svg",
  3068. extra: 3511 / 3338,
  3069. bottom: 0.005
  3070. }
  3071. },
  3072. frontAlt2: {
  3073. height: math.unit(6, "feet"),
  3074. weight: math.unit(75, "kg"),
  3075. name: "Front (Alt 2)",
  3076. image: {
  3077. source: "./media/characters/shingo/front-alt-2.svg",
  3078. extra: 706/681,
  3079. bottom: 11/717
  3080. }
  3081. },
  3082. pawAlt: {
  3083. height: math.unit(1, "feet"),
  3084. name: "Paw (Alt)",
  3085. image: {
  3086. source: "./media/characters/shingo/paw-alt.svg"
  3087. }
  3088. },
  3089. },
  3090. [
  3091. {
  3092. name: "Micro",
  3093. height: math.unit(4, "inches")
  3094. },
  3095. {
  3096. name: "Normal",
  3097. height: math.unit(6, "feet"),
  3098. default: true
  3099. },
  3100. {
  3101. name: "Macro",
  3102. height: math.unit(108, "feet")
  3103. },
  3104. {
  3105. name: "Macro+",
  3106. height: math.unit(1500, "feet")
  3107. },
  3108. ]
  3109. ))
  3110. characterMakers.push(() => makeCharacter(
  3111. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3112. {
  3113. side: {
  3114. height: math.unit(6, "feet"),
  3115. weight: math.unit(75, "kg"),
  3116. name: "Side",
  3117. image: {
  3118. source: "./media/characters/aigey/side.svg"
  3119. }
  3120. },
  3121. },
  3122. [
  3123. {
  3124. name: "Macro",
  3125. height: math.unit(200, "feet"),
  3126. default: true
  3127. },
  3128. {
  3129. name: "Megamacro",
  3130. height: math.unit(100, "miles")
  3131. },
  3132. ]
  3133. )
  3134. )
  3135. characterMakers.push(() => makeCharacter(
  3136. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3137. {
  3138. front: {
  3139. height: math.unit(5 + 5 / 12, "feet"),
  3140. weight: math.unit(75, "kg"),
  3141. name: "Front",
  3142. image: {
  3143. source: "./media/characters/natasha/front.svg",
  3144. extra: 859 / 824,
  3145. bottom: 23 / 879.6
  3146. }
  3147. },
  3148. frontNsfw: {
  3149. height: math.unit(5 + 5 / 12, "feet"),
  3150. weight: math.unit(75, "kg"),
  3151. name: "Front (NSFW)",
  3152. image: {
  3153. source: "./media/characters/natasha/front-nsfw.svg",
  3154. extra: 859 / 824,
  3155. bottom: 23 / 879.6
  3156. }
  3157. },
  3158. frontErect: {
  3159. height: math.unit(5 + 5 / 12, "feet"),
  3160. weight: math.unit(75, "kg"),
  3161. name: "Front (Erect)",
  3162. image: {
  3163. source: "./media/characters/natasha/front-erect.svg",
  3164. extra: 859 / 824,
  3165. bottom: 23 / 879.6
  3166. }
  3167. },
  3168. back: {
  3169. height: math.unit(5 + 5 / 12, "feet"),
  3170. weight: math.unit(75, "kg"),
  3171. name: "Back",
  3172. image: {
  3173. source: "./media/characters/natasha/back.svg",
  3174. extra: 887.9 / 852.6,
  3175. bottom: 9.7 / 896.4
  3176. }
  3177. },
  3178. backAlt: {
  3179. height: math.unit(5 + 5 / 12, "feet"),
  3180. weight: math.unit(75, "kg"),
  3181. name: "Back (Alt)",
  3182. image: {
  3183. source: "./media/characters/natasha/back-alt.svg",
  3184. extra: 1236.7 / 1192,
  3185. bottom: 22.3 / 1258.2
  3186. }
  3187. },
  3188. dick: {
  3189. height: math.unit(1.772, "feet"),
  3190. name: "Dick",
  3191. image: {
  3192. source: "./media/characters/natasha/dick.svg"
  3193. }
  3194. },
  3195. paw: {
  3196. height: math.unit(0.250, "meters"),
  3197. name: "Paw",
  3198. image: {
  3199. source: "./media/characters/natasha/paw.svg"
  3200. }
  3201. },
  3202. },
  3203. [
  3204. {
  3205. name: "Normal",
  3206. height: math.unit(5 + 5 / 12, "feet")
  3207. },
  3208. {
  3209. name: "Large",
  3210. height: math.unit(12, "feet")
  3211. },
  3212. {
  3213. name: "Macro",
  3214. height: math.unit(100, "feet"),
  3215. default: true
  3216. },
  3217. {
  3218. name: "Macro+",
  3219. height: math.unit(260, "feet")
  3220. },
  3221. {
  3222. name: "Macro++",
  3223. height: math.unit(1, "mile")
  3224. },
  3225. ]
  3226. ))
  3227. characterMakers.push(() => makeCharacter(
  3228. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3229. {
  3230. front: {
  3231. height: math.unit(6, "feet"),
  3232. weight: math.unit(75, "kg"),
  3233. name: "Front",
  3234. image: {
  3235. source: "./media/characters/malik/front.svg"
  3236. }
  3237. },
  3238. side: {
  3239. height: math.unit(6, "feet"),
  3240. weight: math.unit(75, "kg"),
  3241. name: "Side",
  3242. image: {
  3243. source: "./media/characters/malik/side.svg",
  3244. extra: 1.1539
  3245. }
  3246. },
  3247. back: {
  3248. height: math.unit(6, "feet"),
  3249. weight: math.unit(75, "kg"),
  3250. name: "Back",
  3251. image: {
  3252. source: "./media/characters/malik/back.svg"
  3253. }
  3254. },
  3255. },
  3256. [
  3257. {
  3258. name: "Macro",
  3259. height: math.unit(156, "feet"),
  3260. default: true
  3261. },
  3262. {
  3263. name: "Macro+",
  3264. height: math.unit(1188, "feet")
  3265. },
  3266. ]
  3267. ))
  3268. characterMakers.push(() => makeCharacter(
  3269. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3270. {
  3271. front: {
  3272. height: math.unit(6, "feet"),
  3273. weight: math.unit(75, "kg"),
  3274. name: "Front",
  3275. image: {
  3276. source: "./media/characters/sefer/front.svg",
  3277. extra: 848 / 659,
  3278. bottom: 28.3 / 876.442
  3279. }
  3280. },
  3281. back: {
  3282. height: math.unit(6, "feet"),
  3283. weight: math.unit(75, "kg"),
  3284. name: "Back",
  3285. image: {
  3286. source: "./media/characters/sefer/back.svg",
  3287. extra: 864 / 695,
  3288. bottom: 10 / 871
  3289. }
  3290. },
  3291. frontDressed: {
  3292. height: math.unit(6, "feet"),
  3293. weight: math.unit(75, "kg"),
  3294. name: "Front (Dressed)",
  3295. image: {
  3296. source: "./media/characters/sefer/front-dressed.svg",
  3297. extra: 839 / 653,
  3298. bottom: 37.6 / 878
  3299. }
  3300. },
  3301. },
  3302. [
  3303. {
  3304. name: "Normal",
  3305. height: math.unit(6, "feet"),
  3306. default: true
  3307. },
  3308. ]
  3309. ))
  3310. characterMakers.push(() => makeCharacter(
  3311. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3312. {
  3313. body: {
  3314. height: math.unit(2.2428, "meter"),
  3315. weight: math.unit(124.738, "kg"),
  3316. name: "Body",
  3317. image: {
  3318. extra: 1225 / 1050,
  3319. source: "./media/characters/north/front.svg"
  3320. }
  3321. }
  3322. },
  3323. [
  3324. {
  3325. name: "Micro",
  3326. height: math.unit(4, "inches")
  3327. },
  3328. {
  3329. name: "Macro",
  3330. height: math.unit(63, "meters")
  3331. },
  3332. {
  3333. name: "Megamacro",
  3334. height: math.unit(101, "miles"),
  3335. default: true
  3336. }
  3337. ]
  3338. ))
  3339. characterMakers.push(() => makeCharacter(
  3340. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3341. {
  3342. angled: {
  3343. height: math.unit(4, "meter"),
  3344. weight: math.unit(150, "kg"),
  3345. name: "Angled",
  3346. image: {
  3347. source: "./media/characters/talan/angled-sfw.svg",
  3348. bottom: 29 / 3734
  3349. }
  3350. },
  3351. angledNsfw: {
  3352. height: math.unit(4, "meter"),
  3353. weight: math.unit(150, "kg"),
  3354. name: "Angled (NSFW)",
  3355. image: {
  3356. source: "./media/characters/talan/angled-nsfw.svg",
  3357. bottom: 29 / 3734
  3358. }
  3359. },
  3360. frontNsfw: {
  3361. height: math.unit(4, "meter"),
  3362. weight: math.unit(150, "kg"),
  3363. name: "Front (NSFW)",
  3364. image: {
  3365. source: "./media/characters/talan/front-nsfw.svg",
  3366. bottom: 29 / 3734
  3367. }
  3368. },
  3369. sideNsfw: {
  3370. height: math.unit(4, "meter"),
  3371. weight: math.unit(150, "kg"),
  3372. name: "Side (NSFW)",
  3373. image: {
  3374. source: "./media/characters/talan/side-nsfw.svg",
  3375. bottom: 29 / 3734
  3376. }
  3377. },
  3378. back: {
  3379. height: math.unit(4, "meter"),
  3380. weight: math.unit(150, "kg"),
  3381. name: "Back",
  3382. image: {
  3383. source: "./media/characters/talan/back.svg"
  3384. }
  3385. },
  3386. dickBottom: {
  3387. height: math.unit(0.621, "meter"),
  3388. name: "Dick (Bottom)",
  3389. image: {
  3390. source: "./media/characters/talan/dick-bottom.svg"
  3391. }
  3392. },
  3393. dickTop: {
  3394. height: math.unit(0.621, "meter"),
  3395. name: "Dick (Top)",
  3396. image: {
  3397. source: "./media/characters/talan/dick-top.svg"
  3398. }
  3399. },
  3400. dickSide: {
  3401. height: math.unit(0.305, "meter"),
  3402. name: "Dick (Side)",
  3403. image: {
  3404. source: "./media/characters/talan/dick-side.svg"
  3405. }
  3406. },
  3407. dickFront: {
  3408. height: math.unit(0.305, "meter"),
  3409. name: "Dick (Front)",
  3410. image: {
  3411. source: "./media/characters/talan/dick-front.svg"
  3412. }
  3413. },
  3414. },
  3415. [
  3416. {
  3417. name: "Normal",
  3418. height: math.unit(4, "meters")
  3419. },
  3420. {
  3421. name: "Macro",
  3422. height: math.unit(100, "meters")
  3423. },
  3424. {
  3425. name: "Megamacro",
  3426. height: math.unit(2, "miles"),
  3427. default: true
  3428. },
  3429. {
  3430. name: "Gigamacro",
  3431. height: math.unit(5000, "miles")
  3432. },
  3433. {
  3434. name: "Teramacro",
  3435. height: math.unit(100, "parsecs")
  3436. }
  3437. ]
  3438. ))
  3439. characterMakers.push(() => makeCharacter(
  3440. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3441. {
  3442. front: {
  3443. height: math.unit(2, "meter"),
  3444. weight: math.unit(90, "kg"),
  3445. name: "Front",
  3446. image: {
  3447. source: "./media/characters/gael'rathus/front.svg"
  3448. }
  3449. },
  3450. frontAlt: {
  3451. height: math.unit(2, "meter"),
  3452. weight: math.unit(90, "kg"),
  3453. name: "Front (alt)",
  3454. image: {
  3455. source: "./media/characters/gael'rathus/front-alt.svg"
  3456. }
  3457. },
  3458. frontAlt2: {
  3459. height: math.unit(2, "meter"),
  3460. weight: math.unit(90, "kg"),
  3461. name: "Front (alt 2)",
  3462. image: {
  3463. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3464. }
  3465. }
  3466. },
  3467. [
  3468. {
  3469. name: "Normal",
  3470. height: math.unit(9, "feet"),
  3471. default: true
  3472. },
  3473. {
  3474. name: "Large",
  3475. height: math.unit(25, "feet")
  3476. },
  3477. {
  3478. name: "Macro",
  3479. height: math.unit(0.25, "miles")
  3480. },
  3481. {
  3482. name: "Megamacro",
  3483. height: math.unit(10, "miles")
  3484. }
  3485. ]
  3486. ))
  3487. characterMakers.push(() => makeCharacter(
  3488. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3489. {
  3490. side: {
  3491. height: math.unit(2, "meter"),
  3492. weight: math.unit(140, "kg"),
  3493. name: "Side",
  3494. image: {
  3495. source: "./media/characters/sosha/side.svg",
  3496. bottom: 0.042
  3497. }
  3498. },
  3499. },
  3500. [
  3501. {
  3502. name: "Normal",
  3503. height: math.unit(12, "feet"),
  3504. default: true
  3505. }
  3506. ]
  3507. ))
  3508. characterMakers.push(() => makeCharacter(
  3509. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3510. {
  3511. side: {
  3512. height: math.unit(5 + 5 / 12, "feet"),
  3513. weight: math.unit(170, "kg"),
  3514. name: "Side",
  3515. image: {
  3516. source: "./media/characters/runnola/side.svg",
  3517. extra: 741 / 448,
  3518. bottom: 0.05
  3519. }
  3520. },
  3521. },
  3522. [
  3523. {
  3524. name: "Small",
  3525. height: math.unit(3, "feet")
  3526. },
  3527. {
  3528. name: "Normal",
  3529. height: math.unit(5 + 5 / 12, "feet"),
  3530. default: true
  3531. },
  3532. {
  3533. name: "Big",
  3534. height: math.unit(10, "feet")
  3535. },
  3536. ]
  3537. ))
  3538. characterMakers.push(() => makeCharacter(
  3539. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3540. {
  3541. front: {
  3542. height: math.unit(2, "meter"),
  3543. weight: math.unit(50, "kg"),
  3544. name: "Front",
  3545. image: {
  3546. source: "./media/characters/kurribird/front.svg",
  3547. bottom: 0.015
  3548. }
  3549. },
  3550. frontAlt: {
  3551. height: math.unit(1.5, "meter"),
  3552. weight: math.unit(50, "kg"),
  3553. name: "Front (Alt)",
  3554. image: {
  3555. source: "./media/characters/kurribird/front-alt.svg",
  3556. extra: 1.45
  3557. }
  3558. },
  3559. },
  3560. [
  3561. {
  3562. name: "Normal",
  3563. height: math.unit(7, "feet")
  3564. },
  3565. {
  3566. name: "Big",
  3567. height: math.unit(12, "feet"),
  3568. default: true
  3569. },
  3570. {
  3571. name: "Macro",
  3572. height: math.unit(1500, "feet")
  3573. },
  3574. {
  3575. name: "Megamacro",
  3576. height: math.unit(2, "miles")
  3577. }
  3578. ]
  3579. ))
  3580. characterMakers.push(() => makeCharacter(
  3581. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3582. {
  3583. front: {
  3584. height: math.unit(2, "meter"),
  3585. weight: math.unit(80, "kg"),
  3586. name: "Front",
  3587. image: {
  3588. source: "./media/characters/elbial/front.svg",
  3589. extra: 1643 / 1556,
  3590. bottom: 60.2 / 1696
  3591. }
  3592. },
  3593. side: {
  3594. height: math.unit(2, "meter"),
  3595. weight: math.unit(80, "kg"),
  3596. name: "Side",
  3597. image: {
  3598. source: "./media/characters/elbial/side.svg",
  3599. extra: 1601/1528,
  3600. bottom: 97/1698
  3601. }
  3602. },
  3603. back: {
  3604. height: math.unit(2, "meter"),
  3605. weight: math.unit(80, "kg"),
  3606. name: "Back",
  3607. image: {
  3608. source: "./media/characters/elbial/back.svg",
  3609. extra: 1653/1569,
  3610. bottom: 20/1673
  3611. }
  3612. },
  3613. frontDressed: {
  3614. height: math.unit(2, "meter"),
  3615. weight: math.unit(80, "kg"),
  3616. name: "Front (Dressed)",
  3617. image: {
  3618. source: "./media/characters/elbial/front-dressed.svg",
  3619. extra: 1638/1569,
  3620. bottom: 70/1708
  3621. }
  3622. },
  3623. genitals: {
  3624. height: math.unit(2 / 3.367, "meter"),
  3625. name: "Genitals",
  3626. image: {
  3627. source: "./media/characters/elbial/genitals.svg"
  3628. }
  3629. },
  3630. },
  3631. [
  3632. {
  3633. name: "Large",
  3634. height: math.unit(100, "feet")
  3635. },
  3636. {
  3637. name: "Macro",
  3638. height: math.unit(500, "feet"),
  3639. default: true
  3640. },
  3641. {
  3642. name: "Megamacro",
  3643. height: math.unit(10, "miles")
  3644. },
  3645. {
  3646. name: "Gigamacro",
  3647. height: math.unit(25000, "miles")
  3648. },
  3649. {
  3650. name: "Full-Size",
  3651. height: math.unit(8000000, "gigaparsecs")
  3652. }
  3653. ]
  3654. ))
  3655. characterMakers.push(() => makeCharacter(
  3656. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3657. {
  3658. front: {
  3659. height: math.unit(2, "meter"),
  3660. weight: math.unit(60, "kg"),
  3661. name: "Front",
  3662. image: {
  3663. source: "./media/characters/noah/front.svg"
  3664. }
  3665. },
  3666. talons: {
  3667. height: math.unit(0.315, "meter"),
  3668. name: "Talons",
  3669. image: {
  3670. source: "./media/characters/noah/talons.svg"
  3671. }
  3672. }
  3673. },
  3674. [
  3675. {
  3676. name: "Large",
  3677. height: math.unit(50, "feet")
  3678. },
  3679. {
  3680. name: "Macro",
  3681. height: math.unit(750, "feet"),
  3682. default: true
  3683. },
  3684. {
  3685. name: "Megamacro",
  3686. height: math.unit(50, "miles")
  3687. },
  3688. {
  3689. name: "Gigamacro",
  3690. height: math.unit(100000, "miles")
  3691. },
  3692. {
  3693. name: "Full-Size",
  3694. height: math.unit(3000000000, "miles")
  3695. }
  3696. ]
  3697. ))
  3698. characterMakers.push(() => makeCharacter(
  3699. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3700. {
  3701. front: {
  3702. height: math.unit(2, "meter"),
  3703. weight: math.unit(80, "kg"),
  3704. name: "Front",
  3705. image: {
  3706. source: "./media/characters/natalya/front.svg"
  3707. }
  3708. },
  3709. back: {
  3710. height: math.unit(2, "meter"),
  3711. weight: math.unit(80, "kg"),
  3712. name: "Back",
  3713. image: {
  3714. source: "./media/characters/natalya/back.svg"
  3715. }
  3716. }
  3717. },
  3718. [
  3719. {
  3720. name: "Normal",
  3721. height: math.unit(150, "feet"),
  3722. default: true
  3723. },
  3724. {
  3725. name: "Megamacro",
  3726. height: math.unit(5, "miles")
  3727. },
  3728. {
  3729. name: "Full-Size",
  3730. height: math.unit(600, "kiloparsecs")
  3731. }
  3732. ]
  3733. ))
  3734. characterMakers.push(() => makeCharacter(
  3735. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3736. {
  3737. front: {
  3738. height: math.unit(2, "meter"),
  3739. weight: math.unit(50, "kg"),
  3740. name: "Front",
  3741. image: {
  3742. source: "./media/characters/erestrebah/front.svg",
  3743. extra: 1262/1162,
  3744. bottom: 96/1358
  3745. }
  3746. },
  3747. back: {
  3748. height: math.unit(2, "meter"),
  3749. weight: math.unit(50, "kg"),
  3750. name: "Back",
  3751. image: {
  3752. source: "./media/characters/erestrebah/back.svg",
  3753. extra: 1257/1139,
  3754. bottom: 13/1270
  3755. }
  3756. },
  3757. wing: {
  3758. height: math.unit(2, "meter"),
  3759. weight: math.unit(50, "kg"),
  3760. name: "Wing",
  3761. image: {
  3762. source: "./media/characters/erestrebah/wing.svg",
  3763. extra: 1262/1162,
  3764. bottom: 96/1358
  3765. }
  3766. },
  3767. mouth: {
  3768. height: math.unit(0.39, "feet"),
  3769. name: "Mouth",
  3770. image: {
  3771. source: "./media/characters/erestrebah/mouth.svg"
  3772. }
  3773. }
  3774. },
  3775. [
  3776. {
  3777. name: "Normal",
  3778. height: math.unit(10, "feet")
  3779. },
  3780. {
  3781. name: "Large",
  3782. height: math.unit(50, "feet"),
  3783. default: true
  3784. },
  3785. {
  3786. name: "Macro",
  3787. height: math.unit(300, "feet")
  3788. },
  3789. {
  3790. name: "Macro+",
  3791. height: math.unit(750, "feet")
  3792. },
  3793. {
  3794. name: "Megamacro",
  3795. height: math.unit(3, "miles")
  3796. }
  3797. ]
  3798. ))
  3799. characterMakers.push(() => makeCharacter(
  3800. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3801. {
  3802. front: {
  3803. height: math.unit(2, "meter"),
  3804. weight: math.unit(80, "kg"),
  3805. name: "Front",
  3806. image: {
  3807. source: "./media/characters/jennifer/front.svg",
  3808. bottom: 0.11,
  3809. extra: 1.16
  3810. }
  3811. },
  3812. frontAlt: {
  3813. height: math.unit(2, "meter"),
  3814. weight: math.unit(80, "kg"),
  3815. name: "Front (Alt)",
  3816. image: {
  3817. source: "./media/characters/jennifer/front-alt.svg"
  3818. }
  3819. }
  3820. },
  3821. [
  3822. {
  3823. name: "Canon Height",
  3824. height: math.unit(120, "feet"),
  3825. default: true
  3826. },
  3827. {
  3828. name: "Macro+",
  3829. height: math.unit(300, "feet")
  3830. },
  3831. {
  3832. name: "Megamacro",
  3833. height: math.unit(20000, "feet")
  3834. }
  3835. ]
  3836. ))
  3837. characterMakers.push(() => makeCharacter(
  3838. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3839. {
  3840. front: {
  3841. height: math.unit(2, "meter"),
  3842. weight: math.unit(50, "kg"),
  3843. name: "Front",
  3844. image: {
  3845. source: "./media/characters/kalista/front.svg",
  3846. extra: 1314/1145,
  3847. bottom: 101/1415
  3848. }
  3849. },
  3850. back: {
  3851. height: math.unit(2, "meter"),
  3852. weight: math.unit(50, "kg"),
  3853. name: "Back",
  3854. image: {
  3855. source: "./media/characters/kalista/back.svg",
  3856. extra: 1366 / 1156,
  3857. bottom: 33.9 / 1362.78
  3858. }
  3859. }
  3860. },
  3861. [
  3862. {
  3863. name: "Uncomfortably Small",
  3864. height: math.unit(10, "feet")
  3865. },
  3866. {
  3867. name: "Small",
  3868. height: math.unit(30, "feet")
  3869. },
  3870. {
  3871. name: "Macro",
  3872. height: math.unit(100, "feet"),
  3873. default: true
  3874. },
  3875. {
  3876. name: "Macro+",
  3877. height: math.unit(2000, "feet")
  3878. },
  3879. {
  3880. name: "True Form",
  3881. height: math.unit(8924, "miles")
  3882. }
  3883. ]
  3884. ))
  3885. characterMakers.push(() => makeCharacter(
  3886. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3887. {
  3888. front: {
  3889. height: math.unit(2, "meter"),
  3890. weight: math.unit(120, "kg"),
  3891. name: "Front",
  3892. image: {
  3893. source: "./media/characters/ggv/front.svg"
  3894. }
  3895. },
  3896. side: {
  3897. height: math.unit(2, "meter"),
  3898. weight: math.unit(120, "kg"),
  3899. name: "Side",
  3900. image: {
  3901. source: "./media/characters/ggv/side.svg"
  3902. }
  3903. }
  3904. },
  3905. [
  3906. {
  3907. name: "Extremely Puny",
  3908. height: math.unit(9 + 5 / 12, "feet")
  3909. },
  3910. {
  3911. name: "Horribly Small",
  3912. height: math.unit(47.7, "miles"),
  3913. default: true
  3914. },
  3915. {
  3916. name: "Reasonably Sized",
  3917. height: math.unit(25000, "parsecs")
  3918. },
  3919. {
  3920. name: "Slightly Uncompressed",
  3921. height: math.unit(7.77e31, "parsecs")
  3922. },
  3923. {
  3924. name: "Omniversal",
  3925. height: math.unit(1e300, "meters")
  3926. },
  3927. ]
  3928. ))
  3929. characterMakers.push(() => makeCharacter(
  3930. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3931. {
  3932. front: {
  3933. height: math.unit(2, "meter"),
  3934. weight: math.unit(75, "lb"),
  3935. name: "Front",
  3936. image: {
  3937. source: "./media/characters/napalm/front.svg"
  3938. }
  3939. },
  3940. back: {
  3941. height: math.unit(2, "meter"),
  3942. weight: math.unit(75, "lb"),
  3943. name: "Back",
  3944. image: {
  3945. source: "./media/characters/napalm/back.svg"
  3946. }
  3947. }
  3948. },
  3949. [
  3950. {
  3951. name: "Standard",
  3952. height: math.unit(55, "feet"),
  3953. default: true
  3954. }
  3955. ]
  3956. ))
  3957. characterMakers.push(() => makeCharacter(
  3958. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3959. {
  3960. front: {
  3961. height: math.unit(7 + 5 / 6, "feet"),
  3962. weight: math.unit(325, "lb"),
  3963. name: "Front",
  3964. image: {
  3965. source: "./media/characters/asana/front.svg",
  3966. extra: 1133 / 1060,
  3967. bottom: 15.2 / 1148.6
  3968. }
  3969. },
  3970. back: {
  3971. height: math.unit(7 + 5 / 6, "feet"),
  3972. weight: math.unit(325, "lb"),
  3973. name: "Back",
  3974. image: {
  3975. source: "./media/characters/asana/back.svg",
  3976. extra: 1114 / 1043,
  3977. bottom: 5 / 1120
  3978. }
  3979. },
  3980. dressedDark: {
  3981. height: math.unit(7 + 5 / 6, "feet"),
  3982. weight: math.unit(325, "lb"),
  3983. name: "Dressed (Dark)",
  3984. image: {
  3985. source: "./media/characters/asana/dressed-dark.svg",
  3986. extra: 1133 / 1060,
  3987. bottom: 15.2 / 1148.6
  3988. }
  3989. },
  3990. dressedLight: {
  3991. height: math.unit(7 + 5 / 6, "feet"),
  3992. weight: math.unit(325, "lb"),
  3993. name: "Dressed (Light)",
  3994. image: {
  3995. source: "./media/characters/asana/dressed-light.svg",
  3996. extra: 1133 / 1060,
  3997. bottom: 15.2 / 1148.6
  3998. }
  3999. },
  4000. },
  4001. [
  4002. {
  4003. name: "Standard",
  4004. height: math.unit(7 + 5 / 6, "feet"),
  4005. default: true
  4006. },
  4007. {
  4008. name: "Large",
  4009. height: math.unit(10, "meters")
  4010. },
  4011. {
  4012. name: "Macro",
  4013. height: math.unit(2500, "meters")
  4014. },
  4015. {
  4016. name: "Megamacro",
  4017. height: math.unit(5e6, "meters")
  4018. },
  4019. {
  4020. name: "Examacro",
  4021. height: math.unit(5e12, "lightyears")
  4022. },
  4023. {
  4024. name: "Max Size",
  4025. height: math.unit(1e31, "lightyears")
  4026. }
  4027. ]
  4028. ))
  4029. characterMakers.push(() => makeCharacter(
  4030. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4031. {
  4032. front: {
  4033. height: math.unit(2, "meter"),
  4034. weight: math.unit(60, "kg"),
  4035. name: "Front",
  4036. image: {
  4037. source: "./media/characters/ebony/front.svg",
  4038. bottom: 0.03,
  4039. extra: 1045 / 810 + 0.03
  4040. }
  4041. },
  4042. side: {
  4043. height: math.unit(2, "meter"),
  4044. weight: math.unit(60, "kg"),
  4045. name: "Side",
  4046. image: {
  4047. source: "./media/characters/ebony/side.svg",
  4048. bottom: 0.03,
  4049. extra: 1045 / 810 + 0.03
  4050. }
  4051. },
  4052. back: {
  4053. height: math.unit(2, "meter"),
  4054. weight: math.unit(60, "kg"),
  4055. name: "Back",
  4056. image: {
  4057. source: "./media/characters/ebony/back.svg",
  4058. bottom: 0.01,
  4059. extra: 1045 / 810 + 0.01
  4060. }
  4061. },
  4062. },
  4063. [
  4064. // TODO check why I did this lol
  4065. {
  4066. name: "Standard",
  4067. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4068. default: true
  4069. },
  4070. {
  4071. name: "Macro",
  4072. height: math.unit(200, "feet")
  4073. },
  4074. {
  4075. name: "Gigamacro",
  4076. height: math.unit(13000, "km")
  4077. }
  4078. ]
  4079. ))
  4080. characterMakers.push(() => makeCharacter(
  4081. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4082. {
  4083. front: {
  4084. height: math.unit(6, "feet"),
  4085. weight: math.unit(175, "lb"),
  4086. name: "Front",
  4087. image: {
  4088. source: "./media/characters/mountain/front.svg",
  4089. extra: 972 / 955,
  4090. bottom: 64 / 1036.6
  4091. }
  4092. },
  4093. back: {
  4094. height: math.unit(6, "feet"),
  4095. weight: math.unit(175, "lb"),
  4096. name: "Back",
  4097. image: {
  4098. source: "./media/characters/mountain/back.svg",
  4099. extra: 970 / 950,
  4100. bottom: 28.25 / 999
  4101. }
  4102. },
  4103. },
  4104. [
  4105. {
  4106. name: "Large",
  4107. height: math.unit(20, "meters")
  4108. },
  4109. {
  4110. name: "Macro",
  4111. height: math.unit(300, "meters")
  4112. },
  4113. {
  4114. name: "Gigamacro",
  4115. height: math.unit(10000, "km"),
  4116. default: true
  4117. },
  4118. {
  4119. name: "Examacro",
  4120. height: math.unit(10e9, "lightyears")
  4121. }
  4122. ]
  4123. ))
  4124. characterMakers.push(() => makeCharacter(
  4125. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4126. {
  4127. front: {
  4128. height: math.unit(8, "feet"),
  4129. weight: math.unit(500, "lb"),
  4130. name: "Front",
  4131. image: {
  4132. source: "./media/characters/rick/front.svg"
  4133. }
  4134. }
  4135. },
  4136. [
  4137. {
  4138. name: "Normal",
  4139. height: math.unit(8, "feet"),
  4140. default: true
  4141. },
  4142. {
  4143. name: "Macro",
  4144. height: math.unit(5, "km")
  4145. }
  4146. ]
  4147. ))
  4148. characterMakers.push(() => makeCharacter(
  4149. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4150. {
  4151. front: {
  4152. height: math.unit(8, "feet"),
  4153. weight: math.unit(120, "lb"),
  4154. name: "Front",
  4155. image: {
  4156. source: "./media/characters/ona/front.svg"
  4157. }
  4158. },
  4159. frontAlt: {
  4160. height: math.unit(8, "feet"),
  4161. weight: math.unit(120, "lb"),
  4162. name: "Front (Alt)",
  4163. image: {
  4164. source: "./media/characters/ona/front-alt.svg"
  4165. }
  4166. },
  4167. back: {
  4168. height: math.unit(8, "feet"),
  4169. weight: math.unit(120, "lb"),
  4170. name: "Back",
  4171. image: {
  4172. source: "./media/characters/ona/back.svg"
  4173. }
  4174. },
  4175. foot: {
  4176. height: math.unit(1.1, "feet"),
  4177. name: "Foot",
  4178. image: {
  4179. source: "./media/characters/ona/foot.svg"
  4180. }
  4181. }
  4182. },
  4183. [
  4184. {
  4185. name: "Megamacro",
  4186. height: math.unit(70, "km"),
  4187. default: true
  4188. },
  4189. {
  4190. name: "Gigamacro",
  4191. height: math.unit(681818, "miles")
  4192. },
  4193. {
  4194. name: "Examacro",
  4195. height: math.unit(3800000, "lightyears")
  4196. },
  4197. ]
  4198. ))
  4199. characterMakers.push(() => makeCharacter(
  4200. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4201. {
  4202. front: {
  4203. height: math.unit(12, "feet"),
  4204. weight: math.unit(3000, "lb"),
  4205. name: "Front",
  4206. image: {
  4207. source: "./media/characters/mech/front.svg",
  4208. extra: 2900 / 2770,
  4209. bottom: 110 / 3010
  4210. }
  4211. },
  4212. back: {
  4213. height: math.unit(12, "feet"),
  4214. weight: math.unit(3000, "lb"),
  4215. name: "Back",
  4216. image: {
  4217. source: "./media/characters/mech/back.svg",
  4218. extra: 3011 / 2890,
  4219. bottom: 94 / 3105
  4220. }
  4221. },
  4222. maw: {
  4223. height: math.unit(3.07, "feet"),
  4224. name: "Maw",
  4225. image: {
  4226. source: "./media/characters/mech/maw.svg"
  4227. }
  4228. },
  4229. head: {
  4230. height: math.unit(2.82, "feet"),
  4231. name: "Head",
  4232. image: {
  4233. source: "./media/characters/mech/head.svg"
  4234. }
  4235. },
  4236. dick: {
  4237. height: math.unit(1.43, "feet"),
  4238. name: "Dick",
  4239. image: {
  4240. source: "./media/characters/mech/dick.svg"
  4241. }
  4242. },
  4243. },
  4244. [
  4245. {
  4246. name: "Normal",
  4247. height: math.unit(12, "feet")
  4248. },
  4249. {
  4250. name: "Macro",
  4251. height: math.unit(300, "feet"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Macro+",
  4256. height: math.unit(1500, "feet")
  4257. },
  4258. ]
  4259. ))
  4260. characterMakers.push(() => makeCharacter(
  4261. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4262. {
  4263. front: {
  4264. height: math.unit(1.3, "meter"),
  4265. weight: math.unit(30, "kg"),
  4266. name: "Front",
  4267. image: {
  4268. source: "./media/characters/gregory/front.svg",
  4269. }
  4270. }
  4271. },
  4272. [
  4273. {
  4274. name: "Normal",
  4275. height: math.unit(1.3, "meter"),
  4276. default: true
  4277. },
  4278. {
  4279. name: "Macro",
  4280. height: math.unit(20, "meter")
  4281. }
  4282. ]
  4283. ))
  4284. characterMakers.push(() => makeCharacter(
  4285. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4286. {
  4287. front: {
  4288. height: math.unit(2.8, "meter"),
  4289. weight: math.unit(200, "kg"),
  4290. name: "Front",
  4291. image: {
  4292. source: "./media/characters/elory/front.svg",
  4293. }
  4294. }
  4295. },
  4296. [
  4297. {
  4298. name: "Normal",
  4299. height: math.unit(2.8, "meter"),
  4300. default: true
  4301. },
  4302. {
  4303. name: "Macro",
  4304. height: math.unit(38, "meter")
  4305. }
  4306. ]
  4307. ))
  4308. characterMakers.push(() => makeCharacter(
  4309. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4310. {
  4311. front: {
  4312. height: math.unit(470, "feet"),
  4313. weight: math.unit(924, "tons"),
  4314. name: "Front",
  4315. image: {
  4316. source: "./media/characters/angelpatamon/front.svg",
  4317. }
  4318. }
  4319. },
  4320. [
  4321. {
  4322. name: "Normal",
  4323. height: math.unit(470, "feet"),
  4324. default: true
  4325. },
  4326. {
  4327. name: "Deity Size I",
  4328. height: math.unit(28651.2, "km")
  4329. },
  4330. {
  4331. name: "Deity Size II",
  4332. height: math.unit(171907.2, "km")
  4333. }
  4334. ]
  4335. ))
  4336. characterMakers.push(() => makeCharacter(
  4337. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4338. {
  4339. side: {
  4340. height: math.unit(7.2, "meter"),
  4341. weight: math.unit(8.2, "tons"),
  4342. name: "Side",
  4343. image: {
  4344. source: "./media/characters/cryae/side.svg",
  4345. extra: 3500 / 1500
  4346. }
  4347. }
  4348. },
  4349. [
  4350. {
  4351. name: "Normal",
  4352. height: math.unit(7.2, "meter"),
  4353. default: true
  4354. }
  4355. ]
  4356. ))
  4357. characterMakers.push(() => makeCharacter(
  4358. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4359. {
  4360. front: {
  4361. height: math.unit(6, "feet"),
  4362. weight: math.unit(175, "lb"),
  4363. name: "Front",
  4364. image: {
  4365. source: "./media/characters/xera/front.svg",
  4366. extra: 2377 / 1972,
  4367. bottom: 75.5 / 2452
  4368. }
  4369. },
  4370. side: {
  4371. height: math.unit(6, "feet"),
  4372. weight: math.unit(175, "lb"),
  4373. name: "Side",
  4374. image: {
  4375. source: "./media/characters/xera/side.svg",
  4376. extra: 2345 / 2019,
  4377. bottom: 39.7 / 2384
  4378. }
  4379. },
  4380. back: {
  4381. height: math.unit(6, "feet"),
  4382. weight: math.unit(175, "lb"),
  4383. name: "Back",
  4384. image: {
  4385. source: "./media/characters/xera/back.svg",
  4386. extra: 2095 / 1984,
  4387. bottom: 67 / 2166
  4388. }
  4389. },
  4390. },
  4391. [
  4392. {
  4393. name: "Small",
  4394. height: math.unit(10, "feet")
  4395. },
  4396. {
  4397. name: "Macro",
  4398. height: math.unit(500, "meters"),
  4399. default: true
  4400. },
  4401. {
  4402. name: "Macro+",
  4403. height: math.unit(10, "km")
  4404. },
  4405. {
  4406. name: "Gigamacro",
  4407. height: math.unit(25000, "km")
  4408. },
  4409. {
  4410. name: "Teramacro",
  4411. height: math.unit(3e6, "km")
  4412. }
  4413. ]
  4414. ))
  4415. characterMakers.push(() => makeCharacter(
  4416. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4417. {
  4418. front: {
  4419. height: math.unit(6, "feet"),
  4420. weight: math.unit(175, "lb"),
  4421. name: "Front",
  4422. image: {
  4423. source: "./media/characters/nebula/front.svg",
  4424. extra: 2566 / 2362,
  4425. bottom: 81 / 2644
  4426. }
  4427. }
  4428. },
  4429. [
  4430. {
  4431. name: "Small",
  4432. height: math.unit(4.5, "meters")
  4433. },
  4434. {
  4435. name: "Macro",
  4436. height: math.unit(1500, "meters"),
  4437. default: true
  4438. },
  4439. {
  4440. name: "Megamacro",
  4441. height: math.unit(150, "km")
  4442. },
  4443. {
  4444. name: "Gigamacro",
  4445. height: math.unit(27000, "km")
  4446. }
  4447. ]
  4448. ))
  4449. characterMakers.push(() => makeCharacter(
  4450. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4451. {
  4452. front: {
  4453. height: math.unit(6, "feet"),
  4454. weight: math.unit(225, "lb"),
  4455. name: "Front",
  4456. image: {
  4457. source: "./media/characters/abysgar/front.svg"
  4458. }
  4459. }
  4460. },
  4461. [
  4462. {
  4463. name: "Small",
  4464. height: math.unit(4.5, "meters")
  4465. },
  4466. {
  4467. name: "Macro",
  4468. height: math.unit(1250, "meters"),
  4469. default: true
  4470. },
  4471. {
  4472. name: "Megamacro",
  4473. height: math.unit(125, "km")
  4474. },
  4475. {
  4476. name: "Gigamacro",
  4477. height: math.unit(26000, "km")
  4478. }
  4479. ]
  4480. ))
  4481. characterMakers.push(() => makeCharacter(
  4482. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4483. {
  4484. front: {
  4485. height: math.unit(6, "feet"),
  4486. weight: math.unit(180, "lb"),
  4487. name: "Front",
  4488. image: {
  4489. source: "./media/characters/yakuz/front.svg"
  4490. }
  4491. }
  4492. },
  4493. [
  4494. {
  4495. name: "Small",
  4496. height: math.unit(5, "meters")
  4497. },
  4498. {
  4499. name: "Macro",
  4500. height: math.unit(1500, "meters"),
  4501. default: true
  4502. },
  4503. {
  4504. name: "Megamacro",
  4505. height: math.unit(200, "km")
  4506. },
  4507. {
  4508. name: "Gigamacro",
  4509. height: math.unit(100000, "km")
  4510. }
  4511. ]
  4512. ))
  4513. characterMakers.push(() => makeCharacter(
  4514. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4515. {
  4516. front: {
  4517. height: math.unit(6, "feet"),
  4518. weight: math.unit(175, "lb"),
  4519. name: "Front",
  4520. image: {
  4521. source: "./media/characters/mirova/front.svg",
  4522. extra: 3334 / 3071,
  4523. bottom: 42 / 3375.6
  4524. }
  4525. }
  4526. },
  4527. [
  4528. {
  4529. name: "Small",
  4530. height: math.unit(5, "meters")
  4531. },
  4532. {
  4533. name: "Macro",
  4534. height: math.unit(900, "meters"),
  4535. default: true
  4536. },
  4537. {
  4538. name: "Megamacro",
  4539. height: math.unit(135, "km")
  4540. },
  4541. {
  4542. name: "Gigamacro",
  4543. height: math.unit(20000, "km")
  4544. }
  4545. ]
  4546. ))
  4547. characterMakers.push(() => makeCharacter(
  4548. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4549. {
  4550. side: {
  4551. height: math.unit(28.35, "feet"),
  4552. weight: math.unit(99.75, "tons"),
  4553. name: "Side",
  4554. image: {
  4555. source: "./media/characters/asana-mech/side.svg",
  4556. extra: 923 / 699,
  4557. bottom: 50 / 975
  4558. }
  4559. },
  4560. chaingun: {
  4561. height: math.unit(7, "feet"),
  4562. weight: math.unit(2400, "lb"),
  4563. name: "Chaingun",
  4564. image: {
  4565. source: "./media/characters/asana-mech/chaingun.svg"
  4566. }
  4567. },
  4568. laser: {
  4569. height: math.unit(7.12, "feet"),
  4570. weight: math.unit(2000, "lb"),
  4571. name: "Laser",
  4572. image: {
  4573. source: "./media/characters/asana-mech/laser.svg"
  4574. }
  4575. },
  4576. },
  4577. [
  4578. {
  4579. name: "Normal",
  4580. height: math.unit(28.35, "feet"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Macro",
  4585. height: math.unit(2500, "feet")
  4586. },
  4587. {
  4588. name: "Megamacro",
  4589. height: math.unit(25, "miles")
  4590. },
  4591. {
  4592. name: "Examacro",
  4593. height: math.unit(6e8, "lightyears")
  4594. },
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4599. {
  4600. front: {
  4601. height: math.unit(5, "meters"),
  4602. weight: math.unit(1000, "kg"),
  4603. name: "Front",
  4604. image: {
  4605. source: "./media/characters/asche/front.svg",
  4606. extra: 1258 / 1190,
  4607. bottom: 47 / 1305
  4608. }
  4609. },
  4610. frontUnderwear: {
  4611. height: math.unit(5, "meters"),
  4612. weight: math.unit(1000, "kg"),
  4613. name: "Front (Underwear)",
  4614. image: {
  4615. source: "./media/characters/asche/front-underwear.svg",
  4616. extra: 1258 / 1190,
  4617. bottom: 47 / 1305
  4618. }
  4619. },
  4620. frontDressed: {
  4621. height: math.unit(5, "meters"),
  4622. weight: math.unit(1000, "kg"),
  4623. name: "Front (Dressed)",
  4624. image: {
  4625. source: "./media/characters/asche/front-dressed.svg",
  4626. extra: 1258 / 1190,
  4627. bottom: 47 / 1305
  4628. }
  4629. },
  4630. frontArmor: {
  4631. height: math.unit(5, "meters"),
  4632. weight: math.unit(1000, "kg"),
  4633. name: "Front (Armored)",
  4634. image: {
  4635. source: "./media/characters/asche/front-armored.svg",
  4636. extra: 1374 / 1308,
  4637. bottom: 23 / 1397
  4638. }
  4639. },
  4640. mp724: {
  4641. height: math.unit(0.96, "meters"),
  4642. weight: math.unit(38, "kg"),
  4643. name: "H&K MP724",
  4644. image: {
  4645. source: "./media/characters/asche/h&k-mp724.svg"
  4646. }
  4647. },
  4648. side: {
  4649. height: math.unit(5, "meters"),
  4650. weight: math.unit(1000, "kg"),
  4651. name: "Side",
  4652. image: {
  4653. source: "./media/characters/asche/side.svg",
  4654. extra: 1717 / 1609,
  4655. bottom: 0.005
  4656. }
  4657. },
  4658. back: {
  4659. height: math.unit(5, "meters"),
  4660. weight: math.unit(1000, "kg"),
  4661. name: "Back",
  4662. image: {
  4663. source: "./media/characters/asche/back.svg",
  4664. extra: 1570 / 1501
  4665. }
  4666. },
  4667. },
  4668. [
  4669. {
  4670. name: "DEFCON 5",
  4671. height: math.unit(5, "meters")
  4672. },
  4673. {
  4674. name: "DEFCON 4",
  4675. height: math.unit(500, "meters"),
  4676. default: true
  4677. },
  4678. {
  4679. name: "DEFCON 3",
  4680. height: math.unit(5, "km")
  4681. },
  4682. {
  4683. name: "DEFCON 2",
  4684. height: math.unit(500, "km")
  4685. },
  4686. {
  4687. name: "DEFCON 1",
  4688. height: math.unit(500000, "km")
  4689. },
  4690. {
  4691. name: "DEFCON 0",
  4692. height: math.unit(3, "gigaparsecs")
  4693. },
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4698. {
  4699. front: {
  4700. height: math.unit(2, "meters"),
  4701. weight: math.unit(76, "kg"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/gale/front.svg"
  4705. }
  4706. },
  4707. frontAlt1: {
  4708. height: math.unit(2, "meters"),
  4709. weight: math.unit(76, "kg"),
  4710. name: "Front (Alt 1)",
  4711. image: {
  4712. source: "./media/characters/gale/front-alt-1.svg"
  4713. }
  4714. },
  4715. frontAlt2: {
  4716. height: math.unit(2, "meters"),
  4717. weight: math.unit(76, "kg"),
  4718. name: "Front (Alt 2)",
  4719. image: {
  4720. source: "./media/characters/gale/front-alt-2.svg"
  4721. }
  4722. },
  4723. },
  4724. [
  4725. {
  4726. name: "Normal",
  4727. height: math.unit(7, "feet")
  4728. },
  4729. {
  4730. name: "Macro",
  4731. height: math.unit(150, "feet"),
  4732. default: true
  4733. },
  4734. {
  4735. name: "Macro+",
  4736. height: math.unit(300, "feet")
  4737. },
  4738. ]
  4739. ))
  4740. characterMakers.push(() => makeCharacter(
  4741. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4742. {
  4743. front: {
  4744. height: math.unit(5 + 10/12, "feet"),
  4745. weight: math.unit(67, "kg"),
  4746. name: "Front",
  4747. image: {
  4748. source: "./media/characters/draylen/front.svg",
  4749. extra: 832/777,
  4750. bottom: 85/917
  4751. }
  4752. }
  4753. },
  4754. [
  4755. {
  4756. name: "Normal",
  4757. height: math.unit(5 + 10/12, "feet")
  4758. },
  4759. {
  4760. name: "Macro",
  4761. height: math.unit(150, "feet"),
  4762. default: true
  4763. }
  4764. ]
  4765. ))
  4766. characterMakers.push(() => makeCharacter(
  4767. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4768. {
  4769. front: {
  4770. height: math.unit(7 + 9 / 12, "feet"),
  4771. weight: math.unit(379, "lbs"),
  4772. name: "Front",
  4773. image: {
  4774. source: "./media/characters/chez/front.svg"
  4775. }
  4776. },
  4777. side: {
  4778. height: math.unit(7 + 9 / 12, "feet"),
  4779. weight: math.unit(379, "lbs"),
  4780. name: "Side",
  4781. image: {
  4782. source: "./media/characters/chez/side.svg"
  4783. }
  4784. }
  4785. },
  4786. [
  4787. {
  4788. name: "Normal",
  4789. height: math.unit(7 + 9 / 12, "feet"),
  4790. default: true
  4791. },
  4792. {
  4793. name: "God King",
  4794. height: math.unit(9750000, "meters")
  4795. }
  4796. ]
  4797. ))
  4798. characterMakers.push(() => makeCharacter(
  4799. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4800. {
  4801. front: {
  4802. height: math.unit(6, "feet"),
  4803. weight: math.unit(275, "lbs"),
  4804. name: "Front",
  4805. image: {
  4806. source: "./media/characters/kaylum/front.svg",
  4807. bottom: 0.01,
  4808. extra: 1166 / 1031
  4809. }
  4810. },
  4811. frontWingless: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(275, "lbs"),
  4814. name: "Front (Wingless)",
  4815. image: {
  4816. source: "./media/characters/kaylum/front-wingless.svg",
  4817. bottom: 0.01,
  4818. extra: 1117 / 1031
  4819. }
  4820. }
  4821. },
  4822. [
  4823. {
  4824. name: "Normal",
  4825. height: math.unit(3.05, "meters")
  4826. },
  4827. {
  4828. name: "Master",
  4829. height: math.unit(5.5, "meters")
  4830. },
  4831. {
  4832. name: "Rampage",
  4833. height: math.unit(19, "meters")
  4834. },
  4835. {
  4836. name: "Macro Lite",
  4837. height: math.unit(37, "meters")
  4838. },
  4839. {
  4840. name: "Hyper Predator",
  4841. height: math.unit(61, "meters")
  4842. },
  4843. {
  4844. name: "Macro",
  4845. height: math.unit(138, "meters"),
  4846. default: true
  4847. }
  4848. ]
  4849. ))
  4850. characterMakers.push(() => makeCharacter(
  4851. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4852. {
  4853. front: {
  4854. height: math.unit(5 + 5 / 12, "feet"),
  4855. weight: math.unit(120, "lbs"),
  4856. name: "Front",
  4857. image: {
  4858. source: "./media/characters/geta/front.svg",
  4859. extra: 1003/933,
  4860. bottom: 21/1024
  4861. }
  4862. },
  4863. paw: {
  4864. height: math.unit(0.35, "feet"),
  4865. name: "Paw",
  4866. image: {
  4867. source: "./media/characters/geta/paw.svg"
  4868. }
  4869. },
  4870. },
  4871. [
  4872. {
  4873. name: "Micro",
  4874. height: math.unit(3, "inches"),
  4875. default: true
  4876. },
  4877. {
  4878. name: "Normal",
  4879. height: math.unit(5 + 5 / 12, "feet")
  4880. }
  4881. ]
  4882. ))
  4883. characterMakers.push(() => makeCharacter(
  4884. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4885. {
  4886. front: {
  4887. height: math.unit(6, "feet"),
  4888. weight: math.unit(300, "lbs"),
  4889. name: "Front",
  4890. image: {
  4891. source: "./media/characters/tyrnn/front.svg"
  4892. }
  4893. }
  4894. },
  4895. [
  4896. {
  4897. name: "Main Height",
  4898. height: math.unit(355, "feet"),
  4899. default: true
  4900. },
  4901. {
  4902. name: "Fave. Height",
  4903. height: math.unit(2400, "feet")
  4904. }
  4905. ]
  4906. ))
  4907. characterMakers.push(() => makeCharacter(
  4908. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4909. {
  4910. front: {
  4911. height: math.unit(6, "feet"),
  4912. weight: math.unit(300, "lbs"),
  4913. name: "Front",
  4914. image: {
  4915. source: "./media/characters/appledectomy/front.svg"
  4916. }
  4917. }
  4918. },
  4919. [
  4920. {
  4921. name: "Macro",
  4922. height: math.unit(2500, "feet")
  4923. },
  4924. {
  4925. name: "Megamacro",
  4926. height: math.unit(50, "miles"),
  4927. default: true
  4928. },
  4929. {
  4930. name: "Gigamacro",
  4931. height: math.unit(5000, "miles")
  4932. },
  4933. {
  4934. name: "Teramacro",
  4935. height: math.unit(250000, "miles")
  4936. },
  4937. ]
  4938. ))
  4939. characterMakers.push(() => makeCharacter(
  4940. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4941. {
  4942. front: {
  4943. height: math.unit(6, "feet"),
  4944. weight: math.unit(200, "lbs"),
  4945. name: "Front",
  4946. image: {
  4947. source: "./media/characters/vulpes/front.svg",
  4948. extra: 573 / 543,
  4949. bottom: 0.033
  4950. }
  4951. },
  4952. side: {
  4953. height: math.unit(6, "feet"),
  4954. weight: math.unit(200, "lbs"),
  4955. name: "Side",
  4956. image: {
  4957. source: "./media/characters/vulpes/side.svg",
  4958. extra: 577 / 549,
  4959. bottom: 11 / 588
  4960. }
  4961. },
  4962. back: {
  4963. height: math.unit(6, "feet"),
  4964. weight: math.unit(200, "lbs"),
  4965. name: "Back",
  4966. image: {
  4967. source: "./media/characters/vulpes/back.svg",
  4968. extra: 573 / 549,
  4969. bottom: 20 / 593
  4970. }
  4971. },
  4972. feet: {
  4973. height: math.unit(1.276, "feet"),
  4974. name: "Feet",
  4975. image: {
  4976. source: "./media/characters/vulpes/feet.svg"
  4977. }
  4978. },
  4979. maw: {
  4980. height: math.unit(1.18, "feet"),
  4981. name: "Maw",
  4982. image: {
  4983. source: "./media/characters/vulpes/maw.svg"
  4984. }
  4985. },
  4986. },
  4987. [
  4988. {
  4989. name: "Micro",
  4990. height: math.unit(2, "inches")
  4991. },
  4992. {
  4993. name: "Normal",
  4994. height: math.unit(6.3, "feet")
  4995. },
  4996. {
  4997. name: "Macro",
  4998. height: math.unit(850, "feet")
  4999. },
  5000. {
  5001. name: "Megamacro",
  5002. height: math.unit(7500, "feet"),
  5003. default: true
  5004. },
  5005. {
  5006. name: "Gigamacro",
  5007. height: math.unit(570000, "miles")
  5008. }
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5013. {
  5014. front: {
  5015. height: math.unit(6, "feet"),
  5016. weight: math.unit(210, "lbs"),
  5017. name: "Front",
  5018. image: {
  5019. source: "./media/characters/rain-fallen/front.svg"
  5020. }
  5021. },
  5022. side: {
  5023. height: math.unit(6, "feet"),
  5024. weight: math.unit(210, "lbs"),
  5025. name: "Side",
  5026. image: {
  5027. source: "./media/characters/rain-fallen/side.svg"
  5028. }
  5029. },
  5030. back: {
  5031. height: math.unit(6, "feet"),
  5032. weight: math.unit(210, "lbs"),
  5033. name: "Back",
  5034. image: {
  5035. source: "./media/characters/rain-fallen/back.svg"
  5036. }
  5037. },
  5038. feral: {
  5039. height: math.unit(9, "feet"),
  5040. weight: math.unit(700, "lbs"),
  5041. name: "Feral",
  5042. image: {
  5043. source: "./media/characters/rain-fallen/feral.svg"
  5044. }
  5045. },
  5046. },
  5047. [
  5048. {
  5049. name: "Meddling with Mortals",
  5050. height: math.unit(8 + 8/12, "feet")
  5051. },
  5052. {
  5053. name: "Normal",
  5054. height: math.unit(5, "meter")
  5055. },
  5056. {
  5057. name: "Macro",
  5058. height: math.unit(150, "meter"),
  5059. default: true
  5060. },
  5061. {
  5062. name: "Megamacro",
  5063. height: math.unit(278e6, "meter")
  5064. },
  5065. {
  5066. name: "Gigamacro",
  5067. height: math.unit(2e9, "meter")
  5068. },
  5069. {
  5070. name: "Teramacro",
  5071. height: math.unit(8e12, "meter")
  5072. },
  5073. {
  5074. name: "Devourer",
  5075. height: math.unit(14, "zettameters")
  5076. },
  5077. {
  5078. name: "Scarlet King",
  5079. height: math.unit(18, "yottameters")
  5080. },
  5081. {
  5082. name: "Void",
  5083. height: math.unit(1e88, "yottameters")
  5084. }
  5085. ]
  5086. ))
  5087. characterMakers.push(() => makeCharacter(
  5088. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5089. {
  5090. standing: {
  5091. height: math.unit(6, "feet"),
  5092. weight: math.unit(180, "lbs"),
  5093. name: "Standing",
  5094. image: {
  5095. source: "./media/characters/zaakira/standing.svg",
  5096. extra: 1599/1504,
  5097. bottom: 39/1638
  5098. }
  5099. },
  5100. laying: {
  5101. height: math.unit(3, "feet"),
  5102. weight: math.unit(180, "lbs"),
  5103. name: "Laying",
  5104. image: {
  5105. source: "./media/characters/zaakira/laying.svg"
  5106. }
  5107. },
  5108. },
  5109. [
  5110. {
  5111. name: "Normal",
  5112. height: math.unit(12, "feet")
  5113. },
  5114. {
  5115. name: "Macro",
  5116. height: math.unit(279, "feet"),
  5117. default: true
  5118. }
  5119. ]
  5120. ))
  5121. characterMakers.push(() => makeCharacter(
  5122. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5123. {
  5124. femSfw: {
  5125. height: math.unit(8, "feet"),
  5126. weight: math.unit(350, "lb"),
  5127. name: "Fem",
  5128. image: {
  5129. source: "./media/characters/sigvald/fem-sfw.svg",
  5130. extra: 182 / 164,
  5131. bottom: 8.7 / 190.5
  5132. }
  5133. },
  5134. femNsfw: {
  5135. height: math.unit(8, "feet"),
  5136. weight: math.unit(350, "lb"),
  5137. name: "Fem (NSFW)",
  5138. image: {
  5139. source: "./media/characters/sigvald/fem-nsfw.svg",
  5140. extra: 182 / 164,
  5141. bottom: 8.7 / 190.5
  5142. }
  5143. },
  5144. maleNsfw: {
  5145. height: math.unit(8, "feet"),
  5146. weight: math.unit(350, "lb"),
  5147. name: "Male (NSFW)",
  5148. image: {
  5149. source: "./media/characters/sigvald/male-nsfw.svg",
  5150. extra: 182 / 164,
  5151. bottom: 8.7 / 190.5
  5152. }
  5153. },
  5154. hermNsfw: {
  5155. height: math.unit(8, "feet"),
  5156. weight: math.unit(350, "lb"),
  5157. name: "Herm (NSFW)",
  5158. image: {
  5159. source: "./media/characters/sigvald/herm-nsfw.svg",
  5160. extra: 182 / 164,
  5161. bottom: 8.7 / 190.5
  5162. }
  5163. },
  5164. dick: {
  5165. height: math.unit(2.36, "feet"),
  5166. name: "Dick",
  5167. image: {
  5168. source: "./media/characters/sigvald/dick.svg"
  5169. }
  5170. },
  5171. eye: {
  5172. height: math.unit(0.31, "feet"),
  5173. name: "Eye",
  5174. image: {
  5175. source: "./media/characters/sigvald/eye.svg"
  5176. }
  5177. },
  5178. mouth: {
  5179. height: math.unit(0.92, "feet"),
  5180. name: "Mouth",
  5181. image: {
  5182. source: "./media/characters/sigvald/mouth.svg"
  5183. }
  5184. },
  5185. paws: {
  5186. height: math.unit(2.2, "feet"),
  5187. name: "Paws",
  5188. image: {
  5189. source: "./media/characters/sigvald/paws.svg"
  5190. }
  5191. }
  5192. },
  5193. [
  5194. {
  5195. name: "Normal",
  5196. height: math.unit(8, "feet")
  5197. },
  5198. {
  5199. name: "Large",
  5200. height: math.unit(12, "feet")
  5201. },
  5202. {
  5203. name: "Larger",
  5204. height: math.unit(20, "feet")
  5205. },
  5206. {
  5207. name: "Macro",
  5208. height: math.unit(150, "feet")
  5209. },
  5210. {
  5211. name: "Macro+",
  5212. height: math.unit(200, "feet"),
  5213. default: true
  5214. },
  5215. ]
  5216. ))
  5217. characterMakers.push(() => makeCharacter(
  5218. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5219. {
  5220. side: {
  5221. height: math.unit(12, "feet"),
  5222. weight: math.unit(2000, "kg"),
  5223. name: "Side",
  5224. image: {
  5225. source: "./media/characters/scott/side.svg",
  5226. extra: 754 / 724,
  5227. bottom: 0.069
  5228. }
  5229. },
  5230. upright: {
  5231. height: math.unit(12, "feet"),
  5232. weight: math.unit(2000, "kg"),
  5233. name: "Upright",
  5234. image: {
  5235. source: "./media/characters/scott/upright.svg",
  5236. extra: 3881 / 3722,
  5237. bottom: 0.05
  5238. }
  5239. },
  5240. },
  5241. [
  5242. {
  5243. name: "Normal",
  5244. height: math.unit(12, "feet"),
  5245. default: true
  5246. },
  5247. ]
  5248. ))
  5249. characterMakers.push(() => makeCharacter(
  5250. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5251. {
  5252. side: {
  5253. height: math.unit(8, "meters"),
  5254. weight: math.unit(84755, "lbs"),
  5255. name: "Side",
  5256. image: {
  5257. source: "./media/characters/tobias/side.svg",
  5258. extra: 1474 / 1096,
  5259. bottom: 38.9 / 1513.1235
  5260. }
  5261. },
  5262. },
  5263. [
  5264. {
  5265. name: "Normal",
  5266. height: math.unit(8, "meters"),
  5267. default: true
  5268. },
  5269. ]
  5270. ))
  5271. characterMakers.push(() => makeCharacter(
  5272. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5273. {
  5274. front: {
  5275. height: math.unit(5.5, "feet"),
  5276. weight: math.unit(400, "lbs"),
  5277. name: "Front",
  5278. image: {
  5279. source: "./media/characters/kieran/front.svg",
  5280. extra: 2694 / 2364,
  5281. bottom: 217 / 2908
  5282. }
  5283. },
  5284. side: {
  5285. height: math.unit(5.5, "feet"),
  5286. weight: math.unit(400, "lbs"),
  5287. name: "Side",
  5288. image: {
  5289. source: "./media/characters/kieran/side.svg",
  5290. extra: 875 / 777,
  5291. bottom: 84.6 / 959
  5292. }
  5293. },
  5294. },
  5295. [
  5296. {
  5297. name: "Normal",
  5298. height: math.unit(5.5, "feet"),
  5299. default: true
  5300. },
  5301. ]
  5302. ))
  5303. characterMakers.push(() => makeCharacter(
  5304. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5305. {
  5306. side: {
  5307. height: math.unit(2, "meters"),
  5308. weight: math.unit(70, "kg"),
  5309. name: "Side",
  5310. image: {
  5311. source: "./media/characters/sanya/side.svg",
  5312. bottom: 0.02,
  5313. extra: 1.02
  5314. }
  5315. },
  5316. },
  5317. [
  5318. {
  5319. name: "Small",
  5320. height: math.unit(2, "meters")
  5321. },
  5322. {
  5323. name: "Normal",
  5324. height: math.unit(3, "meters")
  5325. },
  5326. {
  5327. name: "Macro",
  5328. height: math.unit(16, "meters"),
  5329. default: true
  5330. },
  5331. ]
  5332. ))
  5333. characterMakers.push(() => makeCharacter(
  5334. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5335. {
  5336. front: {
  5337. height: math.unit(2, "meters"),
  5338. weight: math.unit(120, "kg"),
  5339. name: "Front",
  5340. image: {
  5341. source: "./media/characters/miranda/front.svg",
  5342. extra: 195 / 185,
  5343. bottom: 10.9 / 206.5
  5344. }
  5345. },
  5346. back: {
  5347. height: math.unit(2, "meters"),
  5348. weight: math.unit(120, "kg"),
  5349. name: "Back",
  5350. image: {
  5351. source: "./media/characters/miranda/back.svg",
  5352. extra: 201 / 193,
  5353. bottom: 2.3 / 203.7
  5354. }
  5355. },
  5356. },
  5357. [
  5358. {
  5359. name: "Normal",
  5360. height: math.unit(10, "feet"),
  5361. default: true
  5362. }
  5363. ]
  5364. ))
  5365. characterMakers.push(() => makeCharacter(
  5366. { name: "James", species: ["deer"], tags: ["anthro"] },
  5367. {
  5368. side: {
  5369. height: math.unit(2, "meters"),
  5370. weight: math.unit(100, "kg"),
  5371. name: "Front",
  5372. image: {
  5373. source: "./media/characters/james/front.svg",
  5374. extra: 10 / 8.5
  5375. }
  5376. },
  5377. },
  5378. [
  5379. {
  5380. name: "Normal",
  5381. height: math.unit(8.5, "feet"),
  5382. default: true
  5383. }
  5384. ]
  5385. ))
  5386. characterMakers.push(() => makeCharacter(
  5387. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5388. {
  5389. side: {
  5390. height: math.unit(9.5, "feet"),
  5391. weight: math.unit(2500, "lbs"),
  5392. name: "Side",
  5393. image: {
  5394. source: "./media/characters/heather/side.svg"
  5395. }
  5396. },
  5397. },
  5398. [
  5399. {
  5400. name: "Normal",
  5401. height: math.unit(9.5, "feet"),
  5402. default: true
  5403. }
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5408. {
  5409. side: {
  5410. height: math.unit(6.5, "feet"),
  5411. weight: math.unit(400, "lbs"),
  5412. name: "Side",
  5413. image: {
  5414. source: "./media/characters/lukas/side.svg",
  5415. extra: 7.25 / 6.5
  5416. }
  5417. },
  5418. },
  5419. [
  5420. {
  5421. name: "Normal",
  5422. height: math.unit(6.5, "feet"),
  5423. default: true
  5424. }
  5425. ]
  5426. ))
  5427. characterMakers.push(() => makeCharacter(
  5428. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5429. {
  5430. side: {
  5431. height: math.unit(5, "feet"),
  5432. weight: math.unit(3000, "lbs"),
  5433. name: "Side",
  5434. image: {
  5435. source: "./media/characters/louise/side.svg"
  5436. }
  5437. },
  5438. },
  5439. [
  5440. {
  5441. name: "Normal",
  5442. height: math.unit(5, "feet"),
  5443. default: true
  5444. }
  5445. ]
  5446. ))
  5447. characterMakers.push(() => makeCharacter(
  5448. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5449. {
  5450. side: {
  5451. height: math.unit(6, "feet"),
  5452. weight: math.unit(150, "lbs"),
  5453. name: "Side",
  5454. image: {
  5455. source: "./media/characters/ramona/side.svg",
  5456. extra: 871/854,
  5457. bottom: 41/912
  5458. }
  5459. },
  5460. },
  5461. [
  5462. {
  5463. name: "Normal",
  5464. height: math.unit(5.3, "meters"),
  5465. default: true
  5466. },
  5467. {
  5468. name: "Macro",
  5469. height: math.unit(20, "stories")
  5470. },
  5471. {
  5472. name: "Macro+",
  5473. height: math.unit(50, "stories")
  5474. },
  5475. ]
  5476. ))
  5477. characterMakers.push(() => makeCharacter(
  5478. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5479. {
  5480. standing: {
  5481. height: math.unit(5.75, "feet"),
  5482. weight: math.unit(160, "lbs"),
  5483. name: "Standing",
  5484. image: {
  5485. source: "./media/characters/deerpuff/standing.svg",
  5486. extra: 682 / 624
  5487. }
  5488. },
  5489. sitting: {
  5490. height: math.unit(5.75 / 1.79, "feet"),
  5491. weight: math.unit(160, "lbs"),
  5492. name: "Sitting",
  5493. image: {
  5494. source: "./media/characters/deerpuff/sitting.svg",
  5495. bottom: 44 / 400,
  5496. extra: 1
  5497. }
  5498. },
  5499. taurLaying: {
  5500. height: math.unit(6, "feet"),
  5501. weight: math.unit(400, "lbs"),
  5502. name: "Taur (Laying)",
  5503. image: {
  5504. source: "./media/characters/deerpuff/taur-laying.svg"
  5505. }
  5506. },
  5507. },
  5508. [
  5509. {
  5510. name: "Puffball",
  5511. height: math.unit(6, "inches")
  5512. },
  5513. {
  5514. name: "Normalpuff",
  5515. height: math.unit(5.75, "feet")
  5516. },
  5517. {
  5518. name: "Macropuff",
  5519. height: math.unit(1500, "feet"),
  5520. default: true
  5521. },
  5522. {
  5523. name: "Megapuff",
  5524. height: math.unit(500, "miles")
  5525. },
  5526. {
  5527. name: "Gigapuff",
  5528. height: math.unit(250000, "miles")
  5529. },
  5530. {
  5531. name: "Omegapuff",
  5532. height: math.unit(1000, "lightyears")
  5533. },
  5534. ]
  5535. ))
  5536. characterMakers.push(() => makeCharacter(
  5537. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5538. {
  5539. stomping: {
  5540. height: math.unit(6, "feet"),
  5541. weight: math.unit(170, "lbs"),
  5542. name: "Stomping",
  5543. image: {
  5544. source: "./media/characters/vivian/stomping.svg"
  5545. }
  5546. },
  5547. sitting: {
  5548. height: math.unit(6 / 1.75, "feet"),
  5549. weight: math.unit(170, "lbs"),
  5550. name: "Sitting",
  5551. image: {
  5552. source: "./media/characters/vivian/sitting.svg",
  5553. bottom: 1 / 6.4,
  5554. extra: 1,
  5555. }
  5556. },
  5557. },
  5558. [
  5559. {
  5560. name: "Normal",
  5561. height: math.unit(7, "feet"),
  5562. default: true
  5563. },
  5564. {
  5565. name: "Macro",
  5566. height: math.unit(10, "stories")
  5567. },
  5568. {
  5569. name: "Macro+",
  5570. height: math.unit(30, "stories")
  5571. },
  5572. {
  5573. name: "Megamacro",
  5574. height: math.unit(10, "miles")
  5575. },
  5576. {
  5577. name: "Megamacro+",
  5578. height: math.unit(2750000, "meters")
  5579. },
  5580. ]
  5581. ))
  5582. characterMakers.push(() => makeCharacter(
  5583. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5584. {
  5585. front: {
  5586. height: math.unit(6, "feet"),
  5587. weight: math.unit(160, "lbs"),
  5588. name: "Front",
  5589. image: {
  5590. source: "./media/characters/prince/front.svg",
  5591. extra: 3400 / 3000
  5592. }
  5593. },
  5594. jumping: {
  5595. height: math.unit(6, "feet"),
  5596. weight: math.unit(160, "lbs"),
  5597. name: "Jumping",
  5598. image: {
  5599. source: "./media/characters/prince/jump.svg",
  5600. extra: 2555 / 2134
  5601. }
  5602. },
  5603. },
  5604. [
  5605. {
  5606. name: "Normal",
  5607. height: math.unit(7.75, "feet"),
  5608. default: true
  5609. },
  5610. {
  5611. name: "Not cute",
  5612. height: math.unit(17, "feet")
  5613. },
  5614. {
  5615. name: "I said NOT",
  5616. height: math.unit(91, "feet")
  5617. },
  5618. {
  5619. name: "Please stop",
  5620. height: math.unit(560, "feet")
  5621. },
  5622. {
  5623. name: "What have you done",
  5624. height: math.unit(2200, "feet")
  5625. },
  5626. {
  5627. name: "Deer God",
  5628. height: math.unit(3.6, "miles")
  5629. },
  5630. ]
  5631. ))
  5632. characterMakers.push(() => makeCharacter(
  5633. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5634. {
  5635. standing: {
  5636. height: math.unit(6, "feet"),
  5637. weight: math.unit(300, "lbs"),
  5638. name: "Standing",
  5639. image: {
  5640. source: "./media/characters/psymon/standing.svg",
  5641. extra: 1888 / 1810,
  5642. bottom: 0.05
  5643. }
  5644. },
  5645. slithering: {
  5646. height: math.unit(6, "feet"),
  5647. weight: math.unit(300, "lbs"),
  5648. name: "Slithering",
  5649. image: {
  5650. source: "./media/characters/psymon/slithering.svg",
  5651. extra: 1330 / 1224
  5652. }
  5653. },
  5654. slitheringAlt: {
  5655. height: math.unit(6, "feet"),
  5656. weight: math.unit(300, "lbs"),
  5657. name: "Slithering (Alt)",
  5658. image: {
  5659. source: "./media/characters/psymon/slithering-alt.svg",
  5660. extra: 1330 / 1224
  5661. }
  5662. },
  5663. },
  5664. [
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(11.25, "feet"),
  5668. default: true
  5669. },
  5670. {
  5671. name: "Large",
  5672. height: math.unit(27, "feet")
  5673. },
  5674. {
  5675. name: "Giant",
  5676. height: math.unit(87, "feet")
  5677. },
  5678. {
  5679. name: "Macro",
  5680. height: math.unit(365, "feet")
  5681. },
  5682. {
  5683. name: "Megamacro",
  5684. height: math.unit(3, "miles")
  5685. },
  5686. {
  5687. name: "World Serpent",
  5688. height: math.unit(8000, "miles")
  5689. },
  5690. ]
  5691. ))
  5692. characterMakers.push(() => makeCharacter(
  5693. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5694. {
  5695. front: {
  5696. height: math.unit(6, "feet"),
  5697. weight: math.unit(180, "lbs"),
  5698. name: "Front",
  5699. image: {
  5700. source: "./media/characters/daimos/front.svg",
  5701. extra: 4160 / 3897,
  5702. bottom: 0.021
  5703. }
  5704. }
  5705. },
  5706. [
  5707. {
  5708. name: "Normal",
  5709. height: math.unit(8, "feet"),
  5710. default: true
  5711. },
  5712. {
  5713. name: "Big Dog",
  5714. height: math.unit(22, "feet")
  5715. },
  5716. {
  5717. name: "Macro",
  5718. height: math.unit(127, "feet")
  5719. },
  5720. {
  5721. name: "Megamacro",
  5722. height: math.unit(3600, "feet")
  5723. },
  5724. ]
  5725. ))
  5726. characterMakers.push(() => makeCharacter(
  5727. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5728. {
  5729. side: {
  5730. height: math.unit(6, "feet"),
  5731. weight: math.unit(180, "lbs"),
  5732. name: "Side",
  5733. image: {
  5734. source: "./media/characters/blake/side.svg",
  5735. extra: 1212 / 1120,
  5736. bottom: 0.05
  5737. }
  5738. },
  5739. crouched: {
  5740. height: math.unit(6 * 0.57, "feet"),
  5741. weight: math.unit(180, "lbs"),
  5742. name: "Crouched",
  5743. image: {
  5744. source: "./media/characters/blake/crouched.svg",
  5745. extra: 840 / 587,
  5746. bottom: 0.04
  5747. }
  5748. },
  5749. bent: {
  5750. height: math.unit(6 * 0.75, "feet"),
  5751. weight: math.unit(180, "lbs"),
  5752. name: "Bent",
  5753. image: {
  5754. source: "./media/characters/blake/bent.svg",
  5755. extra: 592 / 544,
  5756. bottom: 0.035
  5757. }
  5758. },
  5759. },
  5760. [
  5761. {
  5762. name: "Normal",
  5763. height: math.unit(8 + 1 / 6, "feet"),
  5764. default: true
  5765. },
  5766. {
  5767. name: "Big Backside",
  5768. height: math.unit(37, "feet")
  5769. },
  5770. {
  5771. name: "Subway Shredder",
  5772. height: math.unit(72, "feet")
  5773. },
  5774. {
  5775. name: "City Carver",
  5776. height: math.unit(1675, "feet")
  5777. },
  5778. {
  5779. name: "Tectonic Tweaker",
  5780. height: math.unit(2300, "miles")
  5781. },
  5782. ]
  5783. ))
  5784. characterMakers.push(() => makeCharacter(
  5785. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5786. {
  5787. front: {
  5788. height: math.unit(6, "feet"),
  5789. weight: math.unit(180, "lbs"),
  5790. name: "Front",
  5791. image: {
  5792. source: "./media/characters/guisetto/front.svg",
  5793. extra: 856 / 817,
  5794. bottom: 0.06
  5795. }
  5796. },
  5797. airborne: {
  5798. height: math.unit(6, "feet"),
  5799. weight: math.unit(180, "lbs"),
  5800. name: "Airborne",
  5801. image: {
  5802. source: "./media/characters/guisetto/airborne.svg",
  5803. extra: 584 / 525
  5804. }
  5805. },
  5806. },
  5807. [
  5808. {
  5809. name: "Normal",
  5810. height: math.unit(10 + 11 / 12, "feet"),
  5811. default: true
  5812. },
  5813. {
  5814. name: "Large",
  5815. height: math.unit(35, "feet")
  5816. },
  5817. {
  5818. name: "Macro",
  5819. height: math.unit(475, "feet")
  5820. },
  5821. ]
  5822. ))
  5823. characterMakers.push(() => makeCharacter(
  5824. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5825. {
  5826. front: {
  5827. height: math.unit(6, "feet"),
  5828. weight: math.unit(180, "lbs"),
  5829. name: "Front",
  5830. image: {
  5831. source: "./media/characters/luxor/front.svg",
  5832. extra: 2940 / 2152
  5833. }
  5834. },
  5835. back: {
  5836. height: math.unit(6, "feet"),
  5837. weight: math.unit(180, "lbs"),
  5838. name: "Back",
  5839. image: {
  5840. source: "./media/characters/luxor/back.svg",
  5841. extra: 1083 / 960
  5842. }
  5843. },
  5844. },
  5845. [
  5846. {
  5847. name: "Normal",
  5848. height: math.unit(5 + 5 / 6, "feet"),
  5849. default: true
  5850. },
  5851. {
  5852. name: "Lamp",
  5853. height: math.unit(50, "feet")
  5854. },
  5855. {
  5856. name: "Lämp",
  5857. height: math.unit(300, "feet")
  5858. },
  5859. {
  5860. name: "The sun is a lamp",
  5861. height: math.unit(250000, "miles")
  5862. },
  5863. ]
  5864. ))
  5865. characterMakers.push(() => makeCharacter(
  5866. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5867. {
  5868. front: {
  5869. height: math.unit(6, "feet"),
  5870. weight: math.unit(50, "lbs"),
  5871. name: "Front",
  5872. image: {
  5873. source: "./media/characters/huoyan/front.svg"
  5874. }
  5875. },
  5876. side: {
  5877. height: math.unit(6, "feet"),
  5878. weight: math.unit(180, "lbs"),
  5879. name: "Side",
  5880. image: {
  5881. source: "./media/characters/huoyan/side.svg"
  5882. }
  5883. },
  5884. },
  5885. [
  5886. {
  5887. name: "Chef",
  5888. height: math.unit(9, "feet")
  5889. },
  5890. {
  5891. name: "Normal",
  5892. height: math.unit(65, "feet"),
  5893. default: true
  5894. },
  5895. {
  5896. name: "Macro",
  5897. height: math.unit(780, "feet")
  5898. },
  5899. {
  5900. name: "Flaming Mountain",
  5901. height: math.unit(4.8, "miles")
  5902. },
  5903. {
  5904. name: "Celestial",
  5905. height: math.unit(765000, "miles")
  5906. },
  5907. ]
  5908. ))
  5909. characterMakers.push(() => makeCharacter(
  5910. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5911. {
  5912. front: {
  5913. height: math.unit(5 + 3 / 4, "feet"),
  5914. weight: math.unit(120, "lbs"),
  5915. name: "Front",
  5916. image: {
  5917. source: "./media/characters/tails/front.svg"
  5918. }
  5919. }
  5920. },
  5921. [
  5922. {
  5923. name: "Normal",
  5924. height: math.unit(5 + 3 / 4, "feet"),
  5925. default: true
  5926. }
  5927. ]
  5928. ))
  5929. characterMakers.push(() => makeCharacter(
  5930. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5931. {
  5932. front: {
  5933. height: math.unit(4, "feet"),
  5934. weight: math.unit(50, "lbs"),
  5935. name: "Front",
  5936. image: {
  5937. source: "./media/characters/rainy/front.svg"
  5938. }
  5939. }
  5940. },
  5941. [
  5942. {
  5943. name: "Macro",
  5944. height: math.unit(800, "feet"),
  5945. default: true
  5946. }
  5947. ]
  5948. ))
  5949. characterMakers.push(() => makeCharacter(
  5950. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5951. {
  5952. front: {
  5953. height: math.unit(6, "feet"),
  5954. weight: math.unit(150, "lbs"),
  5955. name: "Front",
  5956. image: {
  5957. source: "./media/characters/rainier/front.svg"
  5958. }
  5959. }
  5960. },
  5961. [
  5962. {
  5963. name: "Micro",
  5964. height: math.unit(2, "mm"),
  5965. default: true
  5966. }
  5967. ]
  5968. ))
  5969. characterMakers.push(() => makeCharacter(
  5970. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5971. {
  5972. front: {
  5973. height: math.unit(8 + 4/12, "feet"),
  5974. name: "Front",
  5975. image: {
  5976. source: "./media/characters/andy-renard/front.svg",
  5977. extra: 1839/1726,
  5978. bottom: 134/1973
  5979. }
  5980. },
  5981. back: {
  5982. height: math.unit(8 + 4/12, "feet"),
  5983. name: "Back",
  5984. image: {
  5985. source: "./media/characters/andy-renard/back.svg",
  5986. extra: 1838/1710,
  5987. bottom: 105/1943
  5988. }
  5989. },
  5990. },
  5991. [
  5992. {
  5993. name: "Tall",
  5994. height: math.unit(8 + 4/12, "feet")
  5995. },
  5996. {
  5997. name: "Mini Macro",
  5998. height: math.unit(15, "feet"),
  5999. default: true
  6000. },
  6001. {
  6002. name: "Macro",
  6003. height: math.unit(100, "feet")
  6004. },
  6005. {
  6006. name: "Mega Macro",
  6007. height: math.unit(1000, "feet")
  6008. },
  6009. {
  6010. name: "Giga Macro",
  6011. height: math.unit(10, "miles")
  6012. },
  6013. {
  6014. name: "God Macro",
  6015. height: math.unit(1, "multiverse")
  6016. },
  6017. ]
  6018. ))
  6019. characterMakers.push(() => makeCharacter(
  6020. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6021. {
  6022. front: {
  6023. height: math.unit(6, "feet"),
  6024. weight: math.unit(210, "lbs"),
  6025. name: "Front",
  6026. image: {
  6027. source: "./media/characters/cimmaron/front-sfw.svg",
  6028. extra: 701 / 676,
  6029. bottom: 0.046
  6030. }
  6031. },
  6032. back: {
  6033. height: math.unit(6, "feet"),
  6034. weight: math.unit(210, "lbs"),
  6035. name: "Back",
  6036. image: {
  6037. source: "./media/characters/cimmaron/back-sfw.svg",
  6038. extra: 701 / 676,
  6039. bottom: 0.046
  6040. }
  6041. },
  6042. frontNsfw: {
  6043. height: math.unit(6, "feet"),
  6044. weight: math.unit(210, "lbs"),
  6045. name: "Front (NSFW)",
  6046. image: {
  6047. source: "./media/characters/cimmaron/front-nsfw.svg",
  6048. extra: 701 / 676,
  6049. bottom: 0.046
  6050. }
  6051. },
  6052. backNsfw: {
  6053. height: math.unit(6, "feet"),
  6054. weight: math.unit(210, "lbs"),
  6055. name: "Back (NSFW)",
  6056. image: {
  6057. source: "./media/characters/cimmaron/back-nsfw.svg",
  6058. extra: 701 / 676,
  6059. bottom: 0.046
  6060. }
  6061. },
  6062. dick: {
  6063. height: math.unit(1.714, "feet"),
  6064. name: "Dick",
  6065. image: {
  6066. source: "./media/characters/cimmaron/dick.svg"
  6067. }
  6068. },
  6069. },
  6070. [
  6071. {
  6072. name: "Normal",
  6073. height: math.unit(6, "feet"),
  6074. default: true
  6075. },
  6076. {
  6077. name: "Macro Mayor",
  6078. height: math.unit(350, "meters")
  6079. },
  6080. ]
  6081. ))
  6082. characterMakers.push(() => makeCharacter(
  6083. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6084. {
  6085. front: {
  6086. height: math.unit(6, "feet"),
  6087. weight: math.unit(200, "lbs"),
  6088. name: "Front",
  6089. image: {
  6090. source: "./media/characters/akari/front.svg",
  6091. extra: 962 / 901,
  6092. bottom: 0.04
  6093. }
  6094. }
  6095. },
  6096. [
  6097. {
  6098. name: "Micro",
  6099. height: math.unit(5, "inches"),
  6100. default: true
  6101. },
  6102. {
  6103. name: "Normal",
  6104. height: math.unit(7, "feet")
  6105. },
  6106. ]
  6107. ))
  6108. characterMakers.push(() => makeCharacter(
  6109. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6110. {
  6111. front: {
  6112. height: math.unit(6, "feet"),
  6113. weight: math.unit(140, "lbs"),
  6114. name: "Front",
  6115. image: {
  6116. source: "./media/characters/cynosura/front.svg",
  6117. extra: 896 / 847
  6118. }
  6119. },
  6120. back: {
  6121. height: math.unit(6, "feet"),
  6122. weight: math.unit(140, "lbs"),
  6123. name: "Back",
  6124. image: {
  6125. source: "./media/characters/cynosura/back.svg",
  6126. extra: 1365 / 1250
  6127. }
  6128. },
  6129. },
  6130. [
  6131. {
  6132. name: "Micro",
  6133. height: math.unit(4, "inches")
  6134. },
  6135. {
  6136. name: "Normal",
  6137. height: math.unit(5.75, "feet"),
  6138. default: true
  6139. },
  6140. {
  6141. name: "Tall",
  6142. height: math.unit(10, "feet")
  6143. },
  6144. {
  6145. name: "Big",
  6146. height: math.unit(20, "feet")
  6147. },
  6148. {
  6149. name: "Macro",
  6150. height: math.unit(50, "feet")
  6151. },
  6152. ]
  6153. ))
  6154. characterMakers.push(() => makeCharacter(
  6155. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6156. {
  6157. front: {
  6158. height: math.unit(13 + 2/12, "feet"),
  6159. weight: math.unit(800, "kg"),
  6160. name: "Front",
  6161. image: {
  6162. source: "./media/characters/gin/front.svg",
  6163. extra: 1312/1191,
  6164. bottom: 45/1357
  6165. }
  6166. },
  6167. mouth: {
  6168. height: math.unit(2.39 * 1.8, "feet"),
  6169. name: "Mouth",
  6170. image: {
  6171. source: "./media/characters/gin/mouth.svg"
  6172. }
  6173. },
  6174. hand: {
  6175. height: math.unit(1.57 * 2.19, "feet"),
  6176. name: "Hand",
  6177. image: {
  6178. source: "./media/characters/gin/hand.svg"
  6179. }
  6180. },
  6181. foot: {
  6182. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6183. name: "Foot",
  6184. image: {
  6185. source: "./media/characters/gin/foot.svg"
  6186. }
  6187. },
  6188. sole: {
  6189. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6190. name: "Sole",
  6191. image: {
  6192. source: "./media/characters/gin/sole.svg"
  6193. }
  6194. },
  6195. },
  6196. [
  6197. {
  6198. name: "Very Small",
  6199. height: math.unit(13 + 2 / 12, "feet")
  6200. },
  6201. {
  6202. name: "Micro",
  6203. height: math.unit(600, "miles")
  6204. },
  6205. {
  6206. name: "Regular",
  6207. height: math.unit(20, "earths"),
  6208. default: true
  6209. },
  6210. {
  6211. name: "Macro",
  6212. height: math.unit(2.2, "solarradii")
  6213. },
  6214. {
  6215. name: "Teramacro",
  6216. height: math.unit(1.2, "galaxies")
  6217. },
  6218. {
  6219. name: "Omegamacro",
  6220. height: math.unit(200, "universes")
  6221. },
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6226. {
  6227. front: {
  6228. height: math.unit(6 + 1 / 6, "feet"),
  6229. weight: math.unit(178, "lbs"),
  6230. name: "Front",
  6231. image: {
  6232. source: "./media/characters/guy/front.svg"
  6233. }
  6234. }
  6235. },
  6236. [
  6237. {
  6238. name: "Normal",
  6239. height: math.unit(6 + 1 / 6, "feet"),
  6240. default: true
  6241. },
  6242. {
  6243. name: "Large",
  6244. height: math.unit(25 + 7 / 12, "feet")
  6245. },
  6246. {
  6247. name: "Macro",
  6248. height: math.unit(60 + 9 / 12, "feet")
  6249. },
  6250. {
  6251. name: "Macro+",
  6252. height: math.unit(246, "feet")
  6253. },
  6254. {
  6255. name: "Macro++",
  6256. height: math.unit(878, "feet")
  6257. }
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(9, "feet"),
  6265. weight: math.unit(800, "lbs"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/tiberius/front.svg",
  6269. extra: 2295 / 2071
  6270. }
  6271. },
  6272. back: {
  6273. height: math.unit(9, "feet"),
  6274. weight: math.unit(800, "lbs"),
  6275. name: "Back",
  6276. image: {
  6277. source: "./media/characters/tiberius/back.svg",
  6278. extra: 2373 / 2160
  6279. }
  6280. },
  6281. },
  6282. [
  6283. {
  6284. name: "Normal",
  6285. height: math.unit(9, "feet"),
  6286. default: true
  6287. }
  6288. ]
  6289. ))
  6290. characterMakers.push(() => makeCharacter(
  6291. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6292. {
  6293. front: {
  6294. height: math.unit(6, "feet"),
  6295. weight: math.unit(600, "lbs"),
  6296. name: "Front",
  6297. image: {
  6298. source: "./media/characters/surgo/front.svg",
  6299. extra: 3591 / 2227
  6300. }
  6301. },
  6302. back: {
  6303. height: math.unit(6, "feet"),
  6304. weight: math.unit(600, "lbs"),
  6305. name: "Back",
  6306. image: {
  6307. source: "./media/characters/surgo/back.svg",
  6308. extra: 3557 / 2228
  6309. }
  6310. },
  6311. laying: {
  6312. height: math.unit(6 * 0.85, "feet"),
  6313. weight: math.unit(600, "lbs"),
  6314. name: "Laying",
  6315. image: {
  6316. source: "./media/characters/surgo/laying.svg"
  6317. }
  6318. },
  6319. },
  6320. [
  6321. {
  6322. name: "Normal",
  6323. height: math.unit(6, "feet"),
  6324. default: true
  6325. }
  6326. ]
  6327. ))
  6328. characterMakers.push(() => makeCharacter(
  6329. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6330. {
  6331. side: {
  6332. height: math.unit(6, "feet"),
  6333. weight: math.unit(150, "lbs"),
  6334. name: "Side",
  6335. image: {
  6336. source: "./media/characters/cibus/side.svg",
  6337. extra: 800 / 400
  6338. }
  6339. },
  6340. },
  6341. [
  6342. {
  6343. name: "Normal",
  6344. height: math.unit(6, "feet"),
  6345. default: true
  6346. }
  6347. ]
  6348. ))
  6349. characterMakers.push(() => makeCharacter(
  6350. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6351. {
  6352. front: {
  6353. height: math.unit(6, "feet"),
  6354. weight: math.unit(240, "lbs"),
  6355. name: "Front",
  6356. image: {
  6357. source: "./media/characters/nibbles/front.svg"
  6358. }
  6359. },
  6360. side: {
  6361. height: math.unit(6, "feet"),
  6362. weight: math.unit(240, "lbs"),
  6363. name: "Side",
  6364. image: {
  6365. source: "./media/characters/nibbles/side.svg"
  6366. }
  6367. },
  6368. },
  6369. [
  6370. {
  6371. name: "Normal",
  6372. height: math.unit(9, "feet"),
  6373. default: true
  6374. }
  6375. ]
  6376. ))
  6377. characterMakers.push(() => makeCharacter(
  6378. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6379. {
  6380. side: {
  6381. height: math.unit(5 + 1 / 6, "feet"),
  6382. weight: math.unit(130, "lbs"),
  6383. name: "Side",
  6384. image: {
  6385. source: "./media/characters/rikky/side.svg",
  6386. extra: 851 / 801
  6387. }
  6388. },
  6389. },
  6390. [
  6391. {
  6392. name: "Normal",
  6393. height: math.unit(5 + 1 / 6, "feet")
  6394. },
  6395. {
  6396. name: "Macro",
  6397. height: math.unit(152, "feet"),
  6398. default: true
  6399. },
  6400. {
  6401. name: "Megamacro",
  6402. height: math.unit(7, "miles")
  6403. }
  6404. ]
  6405. ))
  6406. characterMakers.push(() => makeCharacter(
  6407. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6408. {
  6409. side: {
  6410. height: math.unit(370, "cm"),
  6411. weight: math.unit(350, "lbs"),
  6412. name: "Side",
  6413. image: {
  6414. source: "./media/characters/malfressa/side.svg"
  6415. }
  6416. },
  6417. walking: {
  6418. height: math.unit(370, "cm"),
  6419. weight: math.unit(350, "lbs"),
  6420. name: "Walking",
  6421. image: {
  6422. source: "./media/characters/malfressa/walking.svg"
  6423. }
  6424. },
  6425. feral: {
  6426. height: math.unit(2500, "cm"),
  6427. weight: math.unit(100000, "lbs"),
  6428. name: "Feral",
  6429. image: {
  6430. source: "./media/characters/malfressa/feral.svg",
  6431. extra: 2108 / 837,
  6432. bottom: 0.02
  6433. }
  6434. },
  6435. },
  6436. [
  6437. {
  6438. name: "Normal",
  6439. height: math.unit(370, "cm")
  6440. },
  6441. {
  6442. name: "Macro",
  6443. height: math.unit(300, "meters"),
  6444. default: true
  6445. }
  6446. ]
  6447. ))
  6448. characterMakers.push(() => makeCharacter(
  6449. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6450. {
  6451. front: {
  6452. height: math.unit(6, "feet"),
  6453. weight: math.unit(60, "kg"),
  6454. name: "Front",
  6455. image: {
  6456. source: "./media/characters/jaro/front.svg",
  6457. extra: 845/817,
  6458. bottom: 45/890
  6459. }
  6460. },
  6461. back: {
  6462. height: math.unit(6, "feet"),
  6463. weight: math.unit(60, "kg"),
  6464. name: "Back",
  6465. image: {
  6466. source: "./media/characters/jaro/back.svg",
  6467. extra: 847/817,
  6468. bottom: 34/881
  6469. }
  6470. },
  6471. },
  6472. [
  6473. {
  6474. name: "Micro",
  6475. height: math.unit(7, "inches")
  6476. },
  6477. {
  6478. name: "Normal",
  6479. height: math.unit(5.5, "feet"),
  6480. default: true
  6481. },
  6482. {
  6483. name: "Minimacro",
  6484. height: math.unit(20, "feet")
  6485. },
  6486. {
  6487. name: "Macro",
  6488. height: math.unit(200, "meters")
  6489. }
  6490. ]
  6491. ))
  6492. characterMakers.push(() => makeCharacter(
  6493. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6494. {
  6495. front: {
  6496. height: math.unit(6, "feet"),
  6497. weight: math.unit(195, "lb"),
  6498. name: "Front",
  6499. image: {
  6500. source: "./media/characters/rogue/front.svg"
  6501. }
  6502. },
  6503. },
  6504. [
  6505. {
  6506. name: "Macro",
  6507. height: math.unit(90, "feet"),
  6508. default: true
  6509. },
  6510. ]
  6511. ))
  6512. characterMakers.push(() => makeCharacter(
  6513. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6514. {
  6515. standing: {
  6516. height: math.unit(5 + 8 / 12, "feet"),
  6517. weight: math.unit(140, "lb"),
  6518. name: "Standing",
  6519. image: {
  6520. source: "./media/characters/piper/standing.svg",
  6521. extra: 1440/1284,
  6522. bottom: 66/1506
  6523. }
  6524. },
  6525. running: {
  6526. height: math.unit(5 + 8 / 12, "feet"),
  6527. weight: math.unit(140, "lb"),
  6528. name: "Running",
  6529. image: {
  6530. source: "./media/characters/piper/running.svg",
  6531. extra: 3948/3655,
  6532. bottom: 0/3948
  6533. }
  6534. },
  6535. sole: {
  6536. height: math.unit(0.81, "feet"),
  6537. weight: math.unit(2, "kg"),
  6538. name: "Sole",
  6539. image: {
  6540. source: "./media/characters/piper/sole.svg"
  6541. }
  6542. },
  6543. nipple: {
  6544. height: math.unit(0.25, "feet"),
  6545. weight: math.unit(1.5, "lb"),
  6546. name: "Nipple",
  6547. image: {
  6548. source: "./media/characters/piper/nipple.svg"
  6549. }
  6550. },
  6551. head: {
  6552. height: math.unit(1.1, "feet"),
  6553. name: "Head",
  6554. image: {
  6555. source: "./media/characters/piper/head.svg"
  6556. }
  6557. },
  6558. },
  6559. [
  6560. {
  6561. name: "Micro",
  6562. height: math.unit(2, "inches")
  6563. },
  6564. {
  6565. name: "Normal",
  6566. height: math.unit(5 + 8 / 12, "feet")
  6567. },
  6568. {
  6569. name: "Macro",
  6570. height: math.unit(250, "feet"),
  6571. default: true
  6572. },
  6573. {
  6574. name: "Megamacro",
  6575. height: math.unit(7, "miles")
  6576. },
  6577. ]
  6578. ))
  6579. characterMakers.push(() => makeCharacter(
  6580. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6581. {
  6582. front: {
  6583. height: math.unit(6, "feet"),
  6584. weight: math.unit(220, "lb"),
  6585. name: "Front",
  6586. image: {
  6587. source: "./media/characters/gemini/front.svg"
  6588. }
  6589. },
  6590. back: {
  6591. height: math.unit(6, "feet"),
  6592. weight: math.unit(220, "lb"),
  6593. name: "Back",
  6594. image: {
  6595. source: "./media/characters/gemini/back.svg"
  6596. }
  6597. },
  6598. kneeling: {
  6599. height: math.unit(6 / 1.5, "feet"),
  6600. weight: math.unit(220, "lb"),
  6601. name: "Kneeling",
  6602. image: {
  6603. source: "./media/characters/gemini/kneeling.svg",
  6604. bottom: 0.02
  6605. }
  6606. },
  6607. },
  6608. [
  6609. {
  6610. name: "Macro",
  6611. height: math.unit(300, "meters"),
  6612. default: true
  6613. },
  6614. {
  6615. name: "Megamacro",
  6616. height: math.unit(6900, "meters")
  6617. },
  6618. ]
  6619. ))
  6620. characterMakers.push(() => makeCharacter(
  6621. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6622. {
  6623. anthro: {
  6624. height: math.unit(2.35, "meters"),
  6625. weight: math.unit(73, "kg"),
  6626. name: "Anthro",
  6627. image: {
  6628. source: "./media/characters/alicia/anthro.svg",
  6629. extra: 2571 / 2385,
  6630. bottom: 75 / 2648
  6631. }
  6632. },
  6633. paw: {
  6634. height: math.unit(1.32, "feet"),
  6635. name: "Paw",
  6636. image: {
  6637. source: "./media/characters/alicia/paw.svg"
  6638. }
  6639. },
  6640. feral: {
  6641. height: math.unit(1.69, "meters"),
  6642. weight: math.unit(73, "kg"),
  6643. name: "Feral",
  6644. image: {
  6645. source: "./media/characters/alicia/feral.svg",
  6646. extra: 2123 / 1715,
  6647. bottom: 222 / 2349
  6648. }
  6649. },
  6650. },
  6651. [
  6652. {
  6653. name: "Normal",
  6654. height: math.unit(2.35, "meters")
  6655. },
  6656. {
  6657. name: "Macro",
  6658. height: math.unit(60, "meters"),
  6659. default: true
  6660. },
  6661. {
  6662. name: "Megamacro",
  6663. height: math.unit(10000, "kilometers")
  6664. },
  6665. ]
  6666. ))
  6667. characterMakers.push(() => makeCharacter(
  6668. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6669. {
  6670. front: {
  6671. height: math.unit(7, "feet"),
  6672. weight: math.unit(250, "lbs"),
  6673. name: "Front",
  6674. image: {
  6675. source: "./media/characters/archy/front.svg"
  6676. }
  6677. }
  6678. },
  6679. [
  6680. {
  6681. name: "Micro",
  6682. height: math.unit(1, "inch")
  6683. },
  6684. {
  6685. name: "Shorty",
  6686. height: math.unit(5, "feet")
  6687. },
  6688. {
  6689. name: "Normal",
  6690. height: math.unit(7, "feet")
  6691. },
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(600, "meters"),
  6695. default: true
  6696. },
  6697. {
  6698. name: "Megamacro",
  6699. height: math.unit(1, "mile")
  6700. },
  6701. ]
  6702. ))
  6703. characterMakers.push(() => makeCharacter(
  6704. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6705. {
  6706. front: {
  6707. height: math.unit(1.65, "meters"),
  6708. weight: math.unit(74, "kg"),
  6709. name: "Front",
  6710. image: {
  6711. source: "./media/characters/berri/front.svg",
  6712. extra: 857 / 837,
  6713. bottom: 18 / 877
  6714. }
  6715. },
  6716. bum: {
  6717. height: math.unit(1.46, "feet"),
  6718. name: "Bum",
  6719. image: {
  6720. source: "./media/characters/berri/bum.svg"
  6721. }
  6722. },
  6723. mouth: {
  6724. height: math.unit(0.44, "feet"),
  6725. name: "Mouth",
  6726. image: {
  6727. source: "./media/characters/berri/mouth.svg"
  6728. }
  6729. },
  6730. paw: {
  6731. height: math.unit(0.826, "feet"),
  6732. name: "Paw",
  6733. image: {
  6734. source: "./media/characters/berri/paw.svg"
  6735. }
  6736. },
  6737. },
  6738. [
  6739. {
  6740. name: "Normal",
  6741. height: math.unit(1.65, "meters")
  6742. },
  6743. {
  6744. name: "Macro",
  6745. height: math.unit(60, "m"),
  6746. default: true
  6747. },
  6748. {
  6749. name: "Megamacro",
  6750. height: math.unit(9.213, "km")
  6751. },
  6752. {
  6753. name: "Planet Eater",
  6754. height: math.unit(489, "megameters")
  6755. },
  6756. {
  6757. name: "Teramacro",
  6758. height: math.unit(2471635000000, "meters")
  6759. },
  6760. {
  6761. name: "Examacro",
  6762. height: math.unit(8.0624e+26, "meters")
  6763. }
  6764. ]
  6765. ))
  6766. characterMakers.push(() => makeCharacter(
  6767. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6768. {
  6769. front: {
  6770. height: math.unit(1.72, "meters"),
  6771. weight: math.unit(68, "kg"),
  6772. name: "Front",
  6773. image: {
  6774. source: "./media/characters/lexi/front.svg"
  6775. }
  6776. }
  6777. },
  6778. [
  6779. {
  6780. name: "Very Smol",
  6781. height: math.unit(10, "mm")
  6782. },
  6783. {
  6784. name: "Micro",
  6785. height: math.unit(6.8, "cm"),
  6786. default: true
  6787. },
  6788. {
  6789. name: "Normal",
  6790. height: math.unit(1.72, "m")
  6791. }
  6792. ]
  6793. ))
  6794. characterMakers.push(() => makeCharacter(
  6795. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6796. {
  6797. front: {
  6798. height: math.unit(1.69, "meters"),
  6799. weight: math.unit(68, "kg"),
  6800. name: "Front",
  6801. image: {
  6802. source: "./media/characters/martin/front.svg",
  6803. extra: 596 / 581
  6804. }
  6805. }
  6806. },
  6807. [
  6808. {
  6809. name: "Micro",
  6810. height: math.unit(6.85, "cm"),
  6811. default: true
  6812. },
  6813. {
  6814. name: "Normal",
  6815. height: math.unit(1.69, "m")
  6816. }
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6821. {
  6822. front: {
  6823. height: math.unit(1.69, "meters"),
  6824. weight: math.unit(68, "kg"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/juno/front.svg"
  6828. }
  6829. }
  6830. },
  6831. [
  6832. {
  6833. name: "Micro",
  6834. height: math.unit(7, "cm")
  6835. },
  6836. {
  6837. name: "Normal",
  6838. height: math.unit(1.89, "m")
  6839. },
  6840. {
  6841. name: "Macro",
  6842. height: math.unit(353, "meters"),
  6843. default: true
  6844. }
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6849. {
  6850. front: {
  6851. height: math.unit(1.93, "meters"),
  6852. weight: math.unit(83, "kg"),
  6853. name: "Front",
  6854. image: {
  6855. source: "./media/characters/samantha/front.svg"
  6856. }
  6857. },
  6858. frontClothed: {
  6859. height: math.unit(1.93, "meters"),
  6860. weight: math.unit(83, "kg"),
  6861. name: "Front (Clothed)",
  6862. image: {
  6863. source: "./media/characters/samantha/front-clothed.svg"
  6864. }
  6865. },
  6866. back: {
  6867. height: math.unit(1.93, "meters"),
  6868. weight: math.unit(83, "kg"),
  6869. name: "Back",
  6870. image: {
  6871. source: "./media/characters/samantha/back.svg"
  6872. }
  6873. },
  6874. },
  6875. [
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(1.93, "m")
  6879. },
  6880. {
  6881. name: "Macro",
  6882. height: math.unit(74, "meters"),
  6883. default: true
  6884. },
  6885. {
  6886. name: "Macro+",
  6887. height: math.unit(223, "meters"),
  6888. },
  6889. {
  6890. name: "Megamacro",
  6891. height: math.unit(8381, "meters"),
  6892. },
  6893. {
  6894. name: "Megamacro+",
  6895. height: math.unit(12000, "kilometers")
  6896. },
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6901. {
  6902. front: {
  6903. height: math.unit(1.92, "meters"),
  6904. weight: math.unit(80, "kg"),
  6905. name: "Front",
  6906. image: {
  6907. source: "./media/characters/dr-clay/front.svg"
  6908. }
  6909. },
  6910. frontClothed: {
  6911. height: math.unit(1.92, "meters"),
  6912. weight: math.unit(80, "kg"),
  6913. name: "Front (Clothed)",
  6914. image: {
  6915. source: "./media/characters/dr-clay/front-clothed.svg"
  6916. }
  6917. }
  6918. },
  6919. [
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(1.92, "m")
  6923. },
  6924. {
  6925. name: "Macro",
  6926. height: math.unit(214, "meters"),
  6927. default: true
  6928. },
  6929. {
  6930. name: "Macro+",
  6931. height: math.unit(12.237, "meters"),
  6932. },
  6933. {
  6934. name: "Megamacro",
  6935. height: math.unit(557, "megameters"),
  6936. },
  6937. {
  6938. name: "Unimaginable",
  6939. height: math.unit(120e9, "lightyears")
  6940. },
  6941. ]
  6942. ))
  6943. characterMakers.push(() => makeCharacter(
  6944. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6945. {
  6946. front: {
  6947. height: math.unit(2, "meters"),
  6948. weight: math.unit(80, "kg"),
  6949. name: "Front",
  6950. image: {
  6951. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6952. }
  6953. }
  6954. },
  6955. [
  6956. {
  6957. name: "Teramacro",
  6958. height: math.unit(500000, "lightyears"),
  6959. default: true
  6960. },
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6965. {
  6966. crux: {
  6967. height: math.unit(2, "meters"),
  6968. weight: math.unit(150, "kg"),
  6969. name: "Crux",
  6970. image: {
  6971. source: "./media/characters/vemus/crux.svg",
  6972. extra: 1074/936,
  6973. bottom: 23/1097
  6974. }
  6975. },
  6976. skunkTanuki: {
  6977. height: math.unit(2, "meters"),
  6978. weight: math.unit(150, "kg"),
  6979. name: "Skunk-Tanuki",
  6980. image: {
  6981. source: "./media/characters/vemus/skunk-tanuki.svg",
  6982. extra: 926/893,
  6983. bottom: 20/946
  6984. }
  6985. },
  6986. },
  6987. [
  6988. {
  6989. name: "Normal",
  6990. height: math.unit(3.75, "meters"),
  6991. default: true
  6992. },
  6993. {
  6994. name: "Big",
  6995. height: math.unit(8, "meters")
  6996. },
  6997. {
  6998. name: "Macro",
  6999. height: math.unit(100, "meters")
  7000. },
  7001. {
  7002. name: "Macro+",
  7003. height: math.unit(1500, "meters")
  7004. },
  7005. {
  7006. name: "Stellar",
  7007. height: math.unit(14e8, "meters")
  7008. },
  7009. ]
  7010. ))
  7011. characterMakers.push(() => makeCharacter(
  7012. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7013. {
  7014. front: {
  7015. height: math.unit(2, "meters"),
  7016. weight: math.unit(70, "kg"),
  7017. name: "Front",
  7018. image: {
  7019. source: "./media/characters/beherit/front.svg",
  7020. extra: 1234/1109,
  7021. bottom: 55/1289
  7022. }
  7023. }
  7024. },
  7025. [
  7026. {
  7027. name: "Normal",
  7028. height: math.unit(6, "feet")
  7029. },
  7030. {
  7031. name: "Lorg",
  7032. height: math.unit(25, "feet"),
  7033. default: true
  7034. },
  7035. {
  7036. name: "Lorger",
  7037. height: math.unit(75, "feet")
  7038. },
  7039. {
  7040. name: "Macro",
  7041. height: math.unit(200, "meters")
  7042. },
  7043. ]
  7044. ))
  7045. characterMakers.push(() => makeCharacter(
  7046. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7047. {
  7048. front: {
  7049. height: math.unit(2, "meters"),
  7050. weight: math.unit(150, "kg"),
  7051. name: "Front",
  7052. image: {
  7053. source: "./media/characters/everett/front.svg",
  7054. extra: 1017/866,
  7055. bottom: 86/1103
  7056. }
  7057. },
  7058. paw: {
  7059. height: math.unit(2 / 3.6, "meters"),
  7060. name: "Paw",
  7061. image: {
  7062. source: "./media/characters/everett/paw.svg"
  7063. }
  7064. },
  7065. },
  7066. [
  7067. {
  7068. name: "Normal",
  7069. height: math.unit(15, "feet"),
  7070. default: true
  7071. },
  7072. {
  7073. name: "Lorg",
  7074. height: math.unit(70, "feet"),
  7075. default: true
  7076. },
  7077. {
  7078. name: "Lorger",
  7079. height: math.unit(250, "feet")
  7080. },
  7081. {
  7082. name: "Macro",
  7083. height: math.unit(500, "meters")
  7084. },
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(2, "meters"),
  7092. weight: math.unit(86, "kg"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/rose/front.svg",
  7096. extra: 1785/1636,
  7097. bottom: 30/1815
  7098. },
  7099. form: "liom",
  7100. default: true
  7101. },
  7102. frontSporty: {
  7103. height: math.unit(2, "meters"),
  7104. weight: math.unit(86, "kg"),
  7105. name: "Front (Sporty)",
  7106. image: {
  7107. source: "./media/characters/rose/front-sporty.svg",
  7108. extra: 350/335,
  7109. bottom: 10/360
  7110. },
  7111. form: "liom"
  7112. },
  7113. frontAlt: {
  7114. height: math.unit(1.6, "meters"),
  7115. weight: math.unit(86, "kg"),
  7116. name: "Front (Alt)",
  7117. image: {
  7118. source: "./media/characters/rose/front-alt.svg",
  7119. extra: 299/283,
  7120. bottom: 3/302
  7121. },
  7122. form: "liom"
  7123. },
  7124. plush: {
  7125. height: math.unit(2, "meters"),
  7126. weight: math.unit(86/3, "kg"),
  7127. name: "Plush",
  7128. image: {
  7129. source: "./media/characters/rose/plush.svg",
  7130. extra: 361/337,
  7131. bottom: 11/372
  7132. },
  7133. form: "plush",
  7134. default: true
  7135. },
  7136. faeStanding: {
  7137. height: math.unit(10, "cm"),
  7138. weight: math.unit(10, "grams"),
  7139. name: "Standing",
  7140. image: {
  7141. source: "./media/characters/rose/fae-standing.svg",
  7142. extra: 1189/1060,
  7143. bottom: 27/1216
  7144. },
  7145. form: "fae",
  7146. default: true
  7147. },
  7148. faeSitting: {
  7149. height: math.unit(5, "cm"),
  7150. weight: math.unit(10, "grams"),
  7151. name: "Sitting",
  7152. image: {
  7153. source: "./media/characters/rose/fae-sitting.svg",
  7154. extra: 737/577,
  7155. bottom: 356/1093
  7156. },
  7157. form: "fae"
  7158. },
  7159. faePaw: {
  7160. height: math.unit(1.35, "cm"),
  7161. name: "Paw",
  7162. image: {
  7163. source: "./media/characters/rose/fae-paw.svg"
  7164. },
  7165. form: "fae"
  7166. },
  7167. },
  7168. [
  7169. {
  7170. name: "True Micro",
  7171. height: math.unit(9, "cm"),
  7172. form: "liom"
  7173. },
  7174. {
  7175. name: "Micro",
  7176. height: math.unit(16, "cm"),
  7177. form: "liom"
  7178. },
  7179. {
  7180. name: "Normal",
  7181. height: math.unit(1.85, "meters"),
  7182. default: true,
  7183. form: "liom"
  7184. },
  7185. {
  7186. name: "Mini-Macro",
  7187. height: math.unit(5, "meters"),
  7188. form: "liom"
  7189. },
  7190. {
  7191. name: "Macro",
  7192. height: math.unit(15, "meters"),
  7193. form: "liom"
  7194. },
  7195. {
  7196. name: "True Macro",
  7197. height: math.unit(40, "meters"),
  7198. form: "liom"
  7199. },
  7200. {
  7201. name: "City Scale",
  7202. height: math.unit(1, "km"),
  7203. form: "liom"
  7204. },
  7205. {
  7206. name: "Plushie",
  7207. height: math.unit(9, "cm"),
  7208. form: "plush",
  7209. default: true
  7210. },
  7211. {
  7212. name: "Fae",
  7213. height: math.unit(10, "cm"),
  7214. form: "fae",
  7215. default: true
  7216. },
  7217. ],
  7218. {
  7219. "liom": {
  7220. name: "Liom"
  7221. },
  7222. "plush": {
  7223. name: "Plush"
  7224. },
  7225. "fae": {
  7226. name: "Fae Fox",
  7227. default: true
  7228. }
  7229. }
  7230. ))
  7231. characterMakers.push(() => makeCharacter(
  7232. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7233. {
  7234. front: {
  7235. height: math.unit(2, "meters"),
  7236. weight: math.unit(350, "lbs"),
  7237. name: "Front",
  7238. image: {
  7239. source: "./media/characters/regal/front.svg"
  7240. }
  7241. },
  7242. back: {
  7243. height: math.unit(2, "meters"),
  7244. weight: math.unit(350, "lbs"),
  7245. name: "Back",
  7246. image: {
  7247. source: "./media/characters/regal/back.svg"
  7248. }
  7249. },
  7250. },
  7251. [
  7252. {
  7253. name: "Macro",
  7254. height: math.unit(350, "feet"),
  7255. default: true
  7256. }
  7257. ]
  7258. ))
  7259. characterMakers.push(() => makeCharacter(
  7260. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7261. {
  7262. front: {
  7263. height: math.unit(4 + 11 / 12, "feet"),
  7264. weight: math.unit(100, "lbs"),
  7265. name: "Front",
  7266. image: {
  7267. source: "./media/characters/opal/front.svg"
  7268. }
  7269. },
  7270. frontAlt: {
  7271. height: math.unit(4 + 11 / 12, "feet"),
  7272. weight: math.unit(100, "lbs"),
  7273. name: "Front (Alt)",
  7274. image: {
  7275. source: "./media/characters/opal/front-alt.svg"
  7276. }
  7277. },
  7278. },
  7279. [
  7280. {
  7281. name: "Small",
  7282. height: math.unit(4 + 11 / 12, "feet")
  7283. },
  7284. {
  7285. name: "Normal",
  7286. height: math.unit(20, "feet"),
  7287. default: true
  7288. },
  7289. {
  7290. name: "Macro",
  7291. height: math.unit(120, "feet")
  7292. },
  7293. {
  7294. name: "Megamacro",
  7295. height: math.unit(80, "miles")
  7296. },
  7297. {
  7298. name: "True Size",
  7299. height: math.unit(100000, "lightyears")
  7300. },
  7301. ]
  7302. ))
  7303. characterMakers.push(() => makeCharacter(
  7304. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7305. {
  7306. front: {
  7307. height: math.unit(6, "feet"),
  7308. weight: math.unit(200, "lbs"),
  7309. name: "Front",
  7310. image: {
  7311. source: "./media/characters/vector-wuff/front.svg"
  7312. }
  7313. }
  7314. },
  7315. [
  7316. {
  7317. name: "Normal",
  7318. height: math.unit(2.8, "meters")
  7319. },
  7320. {
  7321. name: "Macro",
  7322. height: math.unit(450, "meters"),
  7323. default: true
  7324. },
  7325. {
  7326. name: "Megamacro",
  7327. height: math.unit(15, "kilometers")
  7328. }
  7329. ]
  7330. ))
  7331. characterMakers.push(() => makeCharacter(
  7332. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7333. {
  7334. front: {
  7335. height: math.unit(6, "feet"),
  7336. weight: math.unit(256, "lbs"),
  7337. name: "Front",
  7338. image: {
  7339. source: "./media/characters/dannik/front.svg"
  7340. }
  7341. }
  7342. },
  7343. [
  7344. {
  7345. name: "Macro",
  7346. height: math.unit(69.57, "meters"),
  7347. default: true
  7348. },
  7349. ]
  7350. ))
  7351. characterMakers.push(() => makeCharacter(
  7352. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7353. {
  7354. front: {
  7355. height: math.unit(6, "feet"),
  7356. weight: math.unit(120, "lbs"),
  7357. name: "Front",
  7358. image: {
  7359. source: "./media/characters/azura-saharah/front.svg"
  7360. }
  7361. },
  7362. back: {
  7363. height: math.unit(6, "feet"),
  7364. weight: math.unit(120, "lbs"),
  7365. name: "Back",
  7366. image: {
  7367. source: "./media/characters/azura-saharah/back.svg"
  7368. }
  7369. },
  7370. },
  7371. [
  7372. {
  7373. name: "Macro",
  7374. height: math.unit(100, "feet"),
  7375. default: true
  7376. },
  7377. ]
  7378. ))
  7379. characterMakers.push(() => makeCharacter(
  7380. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7381. {
  7382. side: {
  7383. height: math.unit(5 + 4 / 12, "feet"),
  7384. weight: math.unit(163, "lbs"),
  7385. name: "Side",
  7386. image: {
  7387. source: "./media/characters/kennedy/side.svg"
  7388. }
  7389. }
  7390. },
  7391. [
  7392. {
  7393. name: "Standard Doggo",
  7394. height: math.unit(5 + 4 / 12, "feet")
  7395. },
  7396. {
  7397. name: "Big Doggo",
  7398. height: math.unit(25 + 3 / 12, "feet"),
  7399. default: true
  7400. },
  7401. ]
  7402. ))
  7403. characterMakers.push(() => makeCharacter(
  7404. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7405. {
  7406. front: {
  7407. height: math.unit(5 + 5/12, "feet"),
  7408. weight: math.unit(100, "lbs"),
  7409. name: "Front",
  7410. image: {
  7411. source: "./media/characters/odios-de-lunar/front.svg",
  7412. extra: 1468/1323,
  7413. bottom: 22/1490
  7414. }
  7415. }
  7416. },
  7417. [
  7418. {
  7419. name: "Micro",
  7420. height: math.unit(3, "inches")
  7421. },
  7422. {
  7423. name: "Normal",
  7424. height: math.unit(5.5, "feet"),
  7425. default: true
  7426. },
  7427. {
  7428. name: "Macro",
  7429. height: math.unit(100, "feet")
  7430. },
  7431. ]
  7432. ))
  7433. characterMakers.push(() => makeCharacter(
  7434. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7435. {
  7436. back: {
  7437. height: math.unit(6, "feet"),
  7438. weight: math.unit(220, "lbs"),
  7439. name: "Back",
  7440. image: {
  7441. source: "./media/characters/mandake/back.svg"
  7442. }
  7443. }
  7444. },
  7445. [
  7446. {
  7447. name: "Normal",
  7448. height: math.unit(7, "feet"),
  7449. default: true
  7450. },
  7451. {
  7452. name: "Macro",
  7453. height: math.unit(78, "feet")
  7454. },
  7455. {
  7456. name: "Macro+",
  7457. height: math.unit(300, "meters")
  7458. },
  7459. {
  7460. name: "Macro++",
  7461. height: math.unit(2400, "feet")
  7462. },
  7463. {
  7464. name: "Megamacro",
  7465. height: math.unit(5167, "meters")
  7466. },
  7467. {
  7468. name: "Gigamacro",
  7469. height: math.unit(41769, "miles")
  7470. },
  7471. ]
  7472. ))
  7473. characterMakers.push(() => makeCharacter(
  7474. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7475. {
  7476. front: {
  7477. height: math.unit(6, "feet"),
  7478. weight: math.unit(120, "lbs"),
  7479. name: "Front",
  7480. image: {
  7481. source: "./media/characters/yozey/front.svg"
  7482. }
  7483. },
  7484. frontAlt: {
  7485. height: math.unit(6, "feet"),
  7486. weight: math.unit(120, "lbs"),
  7487. name: "Front (Alt)",
  7488. image: {
  7489. source: "./media/characters/yozey/front-alt.svg"
  7490. }
  7491. },
  7492. side: {
  7493. height: math.unit(6, "feet"),
  7494. weight: math.unit(120, "lbs"),
  7495. name: "Side",
  7496. image: {
  7497. source: "./media/characters/yozey/side.svg"
  7498. }
  7499. },
  7500. },
  7501. [
  7502. {
  7503. name: "Micro",
  7504. height: math.unit(3, "inches"),
  7505. default: true
  7506. },
  7507. {
  7508. name: "Normal",
  7509. height: math.unit(6, "feet")
  7510. }
  7511. ]
  7512. ))
  7513. characterMakers.push(() => makeCharacter(
  7514. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7515. {
  7516. front: {
  7517. height: math.unit(6, "feet"),
  7518. weight: math.unit(103, "lbs"),
  7519. name: "Front",
  7520. image: {
  7521. source: "./media/characters/valeska-voss/front.svg"
  7522. }
  7523. }
  7524. },
  7525. [
  7526. {
  7527. name: "Mini-Sized Sub",
  7528. height: math.unit(3.1, "inches")
  7529. },
  7530. {
  7531. name: "Mid-Sized Sub",
  7532. height: math.unit(6.2, "inches")
  7533. },
  7534. {
  7535. name: "Full-Sized Sub",
  7536. height: math.unit(9.3, "inches")
  7537. },
  7538. {
  7539. name: "Normal",
  7540. height: math.unit(5 + 2 / 12, "foot"),
  7541. default: true
  7542. },
  7543. ]
  7544. ))
  7545. characterMakers.push(() => makeCharacter(
  7546. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7547. {
  7548. front: {
  7549. height: math.unit(6, "feet"),
  7550. weight: math.unit(160, "lbs"),
  7551. name: "Front",
  7552. image: {
  7553. source: "./media/characters/gene-zeta/front.svg",
  7554. extra: 3006 / 2826,
  7555. bottom: 182 / 3188
  7556. }
  7557. }
  7558. },
  7559. [
  7560. {
  7561. name: "Micro",
  7562. height: math.unit(6, "inches")
  7563. },
  7564. {
  7565. name: "Normal",
  7566. height: math.unit(5 + 11 / 12, "foot"),
  7567. default: true
  7568. },
  7569. {
  7570. name: "Macro",
  7571. height: math.unit(140, "feet")
  7572. },
  7573. {
  7574. name: "Supercharged",
  7575. height: math.unit(2500, "feet")
  7576. },
  7577. ]
  7578. ))
  7579. characterMakers.push(() => makeCharacter(
  7580. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7581. {
  7582. front: {
  7583. height: math.unit(6, "feet"),
  7584. weight: math.unit(350, "lbs"),
  7585. name: "Front",
  7586. image: {
  7587. source: "./media/characters/razinox/front.svg",
  7588. extra: 1686 / 1548,
  7589. bottom: 28.2 / 1868
  7590. }
  7591. },
  7592. back: {
  7593. height: math.unit(6, "feet"),
  7594. weight: math.unit(350, "lbs"),
  7595. name: "Back",
  7596. image: {
  7597. source: "./media/characters/razinox/back.svg",
  7598. extra: 1660 / 1590,
  7599. bottom: 15 / 1665
  7600. }
  7601. },
  7602. },
  7603. [
  7604. {
  7605. name: "Normal",
  7606. height: math.unit(10 + 8 / 12, "foot")
  7607. },
  7608. {
  7609. name: "Minimacro",
  7610. height: math.unit(15, "foot")
  7611. },
  7612. {
  7613. name: "Macro",
  7614. height: math.unit(60, "foot"),
  7615. default: true
  7616. },
  7617. {
  7618. name: "Megamacro",
  7619. height: math.unit(5, "miles")
  7620. },
  7621. {
  7622. name: "Gigamacro",
  7623. height: math.unit(6000, "miles")
  7624. },
  7625. ]
  7626. ))
  7627. characterMakers.push(() => makeCharacter(
  7628. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7629. {
  7630. front: {
  7631. height: math.unit(6, "feet"),
  7632. weight: math.unit(150, "lbs"),
  7633. name: "Front",
  7634. image: {
  7635. source: "./media/characters/cobalt/front.svg"
  7636. }
  7637. }
  7638. },
  7639. [
  7640. {
  7641. name: "Normal",
  7642. height: math.unit(8 + 1 / 12, "foot")
  7643. },
  7644. {
  7645. name: "Macro",
  7646. height: math.unit(111, "foot"),
  7647. default: true
  7648. },
  7649. {
  7650. name: "Supracosmic",
  7651. height: math.unit(1e42, "feet")
  7652. },
  7653. ]
  7654. ))
  7655. characterMakers.push(() => makeCharacter(
  7656. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7657. {
  7658. front: {
  7659. height: math.unit(5, "inches"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/amanda/front.svg",
  7663. extra: 926/791,
  7664. bottom: 38/964
  7665. }
  7666. },
  7667. back: {
  7668. height: math.unit(5, "inches"),
  7669. name: "Back",
  7670. image: {
  7671. source: "./media/characters/amanda/back.svg",
  7672. extra: 909/805,
  7673. bottom: 43/952
  7674. }
  7675. },
  7676. },
  7677. [
  7678. {
  7679. name: "Micro",
  7680. height: math.unit(5, "inches"),
  7681. default: true
  7682. },
  7683. ]
  7684. ))
  7685. characterMakers.push(() => makeCharacter(
  7686. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7687. {
  7688. front: {
  7689. height: math.unit(2.75, "meters"),
  7690. weight: math.unit(1200, "lb"),
  7691. name: "Front",
  7692. image: {
  7693. source: "./media/characters/teal/front.svg",
  7694. extra: 2463 / 2320,
  7695. bottom: 166 / 2629
  7696. }
  7697. },
  7698. back: {
  7699. height: math.unit(2.75, "meters"),
  7700. weight: math.unit(1200, "lb"),
  7701. name: "Back",
  7702. image: {
  7703. source: "./media/characters/teal/back.svg",
  7704. extra: 2580 / 2489,
  7705. bottom: 151 / 2731
  7706. }
  7707. },
  7708. sitting: {
  7709. height: math.unit(1.9, "meters"),
  7710. weight: math.unit(1200, "lb"),
  7711. name: "Sitting",
  7712. image: {
  7713. source: "./media/characters/teal/sitting.svg",
  7714. extra: 623 / 590,
  7715. bottom: 121 / 744
  7716. }
  7717. },
  7718. standing: {
  7719. height: math.unit(2.75, "meters"),
  7720. weight: math.unit(1200, "lb"),
  7721. name: "Standing",
  7722. image: {
  7723. source: "./media/characters/teal/standing.svg",
  7724. extra: 923 / 893,
  7725. bottom: 60 / 983
  7726. }
  7727. },
  7728. stretching: {
  7729. height: math.unit(3.65, "meters"),
  7730. weight: math.unit(1200, "lb"),
  7731. name: "Stretching",
  7732. image: {
  7733. source: "./media/characters/teal/stretching.svg",
  7734. extra: 1276 / 1244,
  7735. bottom: 0 / 1276
  7736. }
  7737. },
  7738. legged: {
  7739. height: math.unit(1.3, "meters"),
  7740. weight: math.unit(100, "lb"),
  7741. name: "Legged",
  7742. image: {
  7743. source: "./media/characters/teal/legged.svg",
  7744. extra: 462 / 437,
  7745. bottom: 24 / 486
  7746. }
  7747. },
  7748. naga: {
  7749. height: math.unit(5.4, "meters"),
  7750. weight: math.unit(4000, "lb"),
  7751. name: "Naga",
  7752. image: {
  7753. source: "./media/characters/teal/naga.svg",
  7754. extra: 1902 / 1858,
  7755. bottom: 0 / 1902
  7756. }
  7757. },
  7758. hand: {
  7759. height: math.unit(0.52, "meters"),
  7760. name: "Hand",
  7761. image: {
  7762. source: "./media/characters/teal/hand.svg"
  7763. }
  7764. },
  7765. maw: {
  7766. height: math.unit(0.43, "meters"),
  7767. name: "Maw",
  7768. image: {
  7769. source: "./media/characters/teal/maw.svg"
  7770. }
  7771. },
  7772. slit: {
  7773. height: math.unit(0.25, "meters"),
  7774. name: "Slit",
  7775. image: {
  7776. source: "./media/characters/teal/slit.svg"
  7777. }
  7778. },
  7779. },
  7780. [
  7781. {
  7782. name: "Normal",
  7783. height: math.unit(2.75, "meters"),
  7784. default: true
  7785. },
  7786. {
  7787. name: "Macro",
  7788. height: math.unit(300, "feet")
  7789. },
  7790. {
  7791. name: "Macro+",
  7792. height: math.unit(2000, "feet")
  7793. },
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7798. {
  7799. frontCat: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(180, "lbs"),
  7802. name: "Front (Cat)",
  7803. image: {
  7804. source: "./media/characters/ravin-amulet/front-cat.svg"
  7805. }
  7806. },
  7807. frontCatAlt: {
  7808. height: math.unit(6, "feet"),
  7809. weight: math.unit(180, "lbs"),
  7810. name: "Front (Alt, Cat)",
  7811. image: {
  7812. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7813. }
  7814. },
  7815. frontWerewolf: {
  7816. height: math.unit(6 * 1.2, "feet"),
  7817. weight: math.unit(225, "lbs"),
  7818. name: "Front (Werewolf)",
  7819. image: {
  7820. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7821. }
  7822. },
  7823. backWerewolf: {
  7824. height: math.unit(6 * 1.2, "feet"),
  7825. weight: math.unit(225, "lbs"),
  7826. name: "Back (Werewolf)",
  7827. image: {
  7828. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7829. }
  7830. },
  7831. },
  7832. [
  7833. {
  7834. name: "Nano",
  7835. height: math.unit(1, "micrometer")
  7836. },
  7837. {
  7838. name: "Micro",
  7839. height: math.unit(1, "inch")
  7840. },
  7841. {
  7842. name: "Normal",
  7843. height: math.unit(6, "feet"),
  7844. default: true
  7845. },
  7846. {
  7847. name: "Macro",
  7848. height: math.unit(60, "feet")
  7849. }
  7850. ]
  7851. ))
  7852. characterMakers.push(() => makeCharacter(
  7853. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7854. {
  7855. front: {
  7856. height: math.unit(6, "feet"),
  7857. weight: math.unit(165, "lbs"),
  7858. name: "Front",
  7859. image: {
  7860. source: "./media/characters/fluoresce/front.svg"
  7861. }
  7862. }
  7863. },
  7864. [
  7865. {
  7866. name: "Micro",
  7867. height: math.unit(6, "cm")
  7868. },
  7869. {
  7870. name: "Normal",
  7871. height: math.unit(5 + 7 / 12, "feet"),
  7872. default: true
  7873. },
  7874. {
  7875. name: "Macro",
  7876. height: math.unit(56, "feet")
  7877. },
  7878. {
  7879. name: "Megamacro",
  7880. height: math.unit(1.9, "miles")
  7881. },
  7882. ]
  7883. ))
  7884. characterMakers.push(() => makeCharacter(
  7885. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7886. {
  7887. front: {
  7888. height: math.unit(9 + 6 / 12, "feet"),
  7889. weight: math.unit(523, "lbs"),
  7890. name: "Side",
  7891. image: {
  7892. source: "./media/characters/aurora/side.svg"
  7893. }
  7894. }
  7895. },
  7896. [
  7897. {
  7898. name: "Normal",
  7899. height: math.unit(9 + 6 / 12, "feet")
  7900. },
  7901. {
  7902. name: "Macro",
  7903. height: math.unit(96, "feet"),
  7904. default: true
  7905. },
  7906. {
  7907. name: "Macro+",
  7908. height: math.unit(243, "feet")
  7909. },
  7910. ]
  7911. ))
  7912. characterMakers.push(() => makeCharacter(
  7913. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7914. {
  7915. front: {
  7916. height: math.unit(194, "cm"),
  7917. weight: math.unit(90, "kg"),
  7918. name: "Front",
  7919. image: {
  7920. source: "./media/characters/ranek/front.svg",
  7921. extra: 1862/1791,
  7922. bottom: 80/1942
  7923. }
  7924. },
  7925. back: {
  7926. height: math.unit(194, "cm"),
  7927. weight: math.unit(90, "kg"),
  7928. name: "Back",
  7929. image: {
  7930. source: "./media/characters/ranek/back.svg",
  7931. extra: 1853/1787,
  7932. bottom: 74/1927
  7933. }
  7934. },
  7935. feral: {
  7936. height: math.unit(30, "cm"),
  7937. weight: math.unit(1.6, "lbs"),
  7938. name: "Feral",
  7939. image: {
  7940. source: "./media/characters/ranek/feral.svg",
  7941. extra: 990/631,
  7942. bottom: 29/1019
  7943. }
  7944. },
  7945. },
  7946. [
  7947. {
  7948. name: "Normal",
  7949. height: math.unit(194, "cm"),
  7950. default: true
  7951. },
  7952. {
  7953. name: "Macro",
  7954. height: math.unit(100, "meters")
  7955. },
  7956. ]
  7957. ))
  7958. characterMakers.push(() => makeCharacter(
  7959. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7960. {
  7961. front: {
  7962. height: math.unit(5 + 6 / 12, "feet"),
  7963. weight: math.unit(153, "lbs"),
  7964. name: "Front",
  7965. image: {
  7966. source: "./media/characters/andrew-cooper/front.svg"
  7967. }
  7968. },
  7969. },
  7970. [
  7971. {
  7972. name: "Nano",
  7973. height: math.unit(1, "mm")
  7974. },
  7975. {
  7976. name: "Micro",
  7977. height: math.unit(2, "inches")
  7978. },
  7979. {
  7980. name: "Normal",
  7981. height: math.unit(5 + 6 / 12, "feet"),
  7982. default: true
  7983. }
  7984. ]
  7985. ))
  7986. characterMakers.push(() => makeCharacter(
  7987. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7988. {
  7989. front: {
  7990. height: math.unit(6, "feet"),
  7991. weight: math.unit(180, "lbs"),
  7992. name: "Front",
  7993. image: {
  7994. source: "./media/characters/akane-sato/front.svg",
  7995. extra: 1219 / 1140
  7996. }
  7997. },
  7998. back: {
  7999. height: math.unit(6, "feet"),
  8000. weight: math.unit(180, "lbs"),
  8001. name: "Back",
  8002. image: {
  8003. source: "./media/characters/akane-sato/back.svg",
  8004. extra: 1219 / 1170
  8005. }
  8006. },
  8007. },
  8008. [
  8009. {
  8010. name: "Normal",
  8011. height: math.unit(2.5, "meters")
  8012. },
  8013. {
  8014. name: "Macro",
  8015. height: math.unit(250, "meters"),
  8016. default: true
  8017. },
  8018. {
  8019. name: "Megamacro",
  8020. height: math.unit(25, "km")
  8021. },
  8022. ]
  8023. ))
  8024. characterMakers.push(() => makeCharacter(
  8025. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8026. {
  8027. front: {
  8028. height: math.unit(6, "feet"),
  8029. weight: math.unit(65, "kg"),
  8030. name: "Front",
  8031. image: {
  8032. source: "./media/characters/rook/front.svg",
  8033. extra: 960 / 950
  8034. }
  8035. }
  8036. },
  8037. [
  8038. {
  8039. name: "Normal",
  8040. height: math.unit(8.8, "feet")
  8041. },
  8042. {
  8043. name: "Macro",
  8044. height: math.unit(88, "feet"),
  8045. default: true
  8046. },
  8047. {
  8048. name: "Megamacro",
  8049. height: math.unit(8, "miles")
  8050. },
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8055. {
  8056. front: {
  8057. height: math.unit(12 + 2 / 12, "feet"),
  8058. weight: math.unit(808, "lbs"),
  8059. name: "Front",
  8060. image: {
  8061. source: "./media/characters/prodigy/front.svg"
  8062. }
  8063. }
  8064. },
  8065. [
  8066. {
  8067. name: "Normal",
  8068. height: math.unit(12 + 2 / 12, "feet"),
  8069. default: true
  8070. },
  8071. {
  8072. name: "Macro",
  8073. height: math.unit(143, "feet")
  8074. },
  8075. {
  8076. name: "Macro+",
  8077. height: math.unit(400, "feet")
  8078. },
  8079. ]
  8080. ))
  8081. characterMakers.push(() => makeCharacter(
  8082. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8083. {
  8084. front: {
  8085. height: math.unit(6, "feet"),
  8086. weight: math.unit(225, "lbs"),
  8087. name: "Front",
  8088. image: {
  8089. source: "./media/characters/daniel/front.svg"
  8090. }
  8091. },
  8092. leaning: {
  8093. height: math.unit(6, "feet"),
  8094. weight: math.unit(225, "lbs"),
  8095. name: "Leaning",
  8096. image: {
  8097. source: "./media/characters/daniel/leaning.svg"
  8098. }
  8099. },
  8100. },
  8101. [
  8102. {
  8103. name: "Macro",
  8104. height: math.unit(1000, "feet"),
  8105. default: true
  8106. },
  8107. ]
  8108. ))
  8109. characterMakers.push(() => makeCharacter(
  8110. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8111. {
  8112. front: {
  8113. height: math.unit(6, "feet"),
  8114. weight: math.unit(88, "lbs"),
  8115. name: "Front",
  8116. image: {
  8117. source: "./media/characters/chiros/front.svg",
  8118. extra: 306 / 226
  8119. }
  8120. },
  8121. side: {
  8122. height: math.unit(6, "feet"),
  8123. weight: math.unit(88, "lbs"),
  8124. name: "Side",
  8125. image: {
  8126. source: "./media/characters/chiros/side.svg",
  8127. extra: 306 / 226
  8128. }
  8129. },
  8130. },
  8131. [
  8132. {
  8133. name: "Normal",
  8134. height: math.unit(6, "cm"),
  8135. default: true
  8136. },
  8137. ]
  8138. ))
  8139. characterMakers.push(() => makeCharacter(
  8140. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8141. {
  8142. front: {
  8143. height: math.unit(6, "feet"),
  8144. weight: math.unit(100, "lbs"),
  8145. name: "Front",
  8146. image: {
  8147. source: "./media/characters/selka/front.svg",
  8148. extra: 947 / 887
  8149. }
  8150. }
  8151. },
  8152. [
  8153. {
  8154. name: "Normal",
  8155. height: math.unit(5, "cm"),
  8156. default: true
  8157. },
  8158. ]
  8159. ))
  8160. characterMakers.push(() => makeCharacter(
  8161. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8162. {
  8163. front: {
  8164. height: math.unit(8 + 3 / 12, "feet"),
  8165. weight: math.unit(424, "lbs"),
  8166. name: "Front",
  8167. image: {
  8168. source: "./media/characters/verin/front.svg",
  8169. extra: 1845 / 1550
  8170. }
  8171. },
  8172. frontArmored: {
  8173. height: math.unit(8 + 3 / 12, "feet"),
  8174. weight: math.unit(424, "lbs"),
  8175. name: "Front (Armored)",
  8176. image: {
  8177. source: "./media/characters/verin/front-armor.svg",
  8178. extra: 1845 / 1550,
  8179. bottom: 0.01
  8180. }
  8181. },
  8182. back: {
  8183. height: math.unit(8 + 3 / 12, "feet"),
  8184. weight: math.unit(424, "lbs"),
  8185. name: "Back",
  8186. image: {
  8187. source: "./media/characters/verin/back.svg",
  8188. bottom: 0.1,
  8189. extra: 1
  8190. }
  8191. },
  8192. foot: {
  8193. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8194. name: "Foot",
  8195. image: {
  8196. source: "./media/characters/verin/foot.svg"
  8197. }
  8198. },
  8199. },
  8200. [
  8201. {
  8202. name: "Normal",
  8203. height: math.unit(8 + 3 / 12, "feet")
  8204. },
  8205. {
  8206. name: "Minimacro",
  8207. height: math.unit(21, "feet"),
  8208. default: true
  8209. },
  8210. {
  8211. name: "Macro",
  8212. height: math.unit(626, "feet")
  8213. },
  8214. ]
  8215. ))
  8216. characterMakers.push(() => makeCharacter(
  8217. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8218. {
  8219. front: {
  8220. height: math.unit(2.718, "meters"),
  8221. weight: math.unit(150, "lbs"),
  8222. name: "Front",
  8223. image: {
  8224. source: "./media/characters/sovrim-terraquian/front.svg",
  8225. extra: 1752/1689,
  8226. bottom: 36/1788
  8227. }
  8228. },
  8229. back: {
  8230. height: math.unit(2.718, "meters"),
  8231. weight: math.unit(150, "lbs"),
  8232. name: "Back",
  8233. image: {
  8234. source: "./media/characters/sovrim-terraquian/back.svg",
  8235. extra: 1698/1657,
  8236. bottom: 58/1756
  8237. }
  8238. },
  8239. tongue: {
  8240. height: math.unit(2.865, "feet"),
  8241. name: "Tongue",
  8242. image: {
  8243. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8244. }
  8245. },
  8246. hand: {
  8247. height: math.unit(1.61, "feet"),
  8248. name: "Hand",
  8249. image: {
  8250. source: "./media/characters/sovrim-terraquian/hand.svg"
  8251. }
  8252. },
  8253. foot: {
  8254. height: math.unit(1.05, "feet"),
  8255. name: "Foot",
  8256. image: {
  8257. source: "./media/characters/sovrim-terraquian/foot.svg"
  8258. }
  8259. },
  8260. footAlt: {
  8261. height: math.unit(0.88, "feet"),
  8262. name: "Foot (Alt)",
  8263. image: {
  8264. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8265. }
  8266. },
  8267. },
  8268. [
  8269. {
  8270. name: "Micro",
  8271. height: math.unit(2, "inches")
  8272. },
  8273. {
  8274. name: "Small",
  8275. height: math.unit(1, "meter")
  8276. },
  8277. {
  8278. name: "Normal",
  8279. height: math.unit(Math.E, "meters"),
  8280. default: true
  8281. },
  8282. {
  8283. name: "Macro",
  8284. height: math.unit(20, "meters")
  8285. },
  8286. {
  8287. name: "Macro+",
  8288. height: math.unit(400, "meters")
  8289. },
  8290. ]
  8291. ))
  8292. characterMakers.push(() => makeCharacter(
  8293. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8294. {
  8295. front: {
  8296. height: math.unit(7, "feet"),
  8297. weight: math.unit(489, "lbs"),
  8298. name: "Front",
  8299. image: {
  8300. source: "./media/characters/reece-silvermane/front.svg",
  8301. bottom: 0.02,
  8302. extra: 1
  8303. }
  8304. },
  8305. },
  8306. [
  8307. {
  8308. name: "Macro",
  8309. height: math.unit(1.5, "miles"),
  8310. default: true
  8311. },
  8312. ]
  8313. ))
  8314. characterMakers.push(() => makeCharacter(
  8315. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8316. {
  8317. front: {
  8318. height: math.unit(6, "feet"),
  8319. weight: math.unit(78, "kg"),
  8320. name: "Front",
  8321. image: {
  8322. source: "./media/characters/kane/front.svg",
  8323. extra: 978 / 899
  8324. }
  8325. },
  8326. },
  8327. [
  8328. {
  8329. name: "Normal",
  8330. height: math.unit(2.1, "m"),
  8331. },
  8332. {
  8333. name: "Macro",
  8334. height: math.unit(1, "km"),
  8335. default: true
  8336. },
  8337. ]
  8338. ))
  8339. characterMakers.push(() => makeCharacter(
  8340. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8341. {
  8342. front: {
  8343. height: math.unit(6, "feet"),
  8344. weight: math.unit(200, "kg"),
  8345. name: "Front",
  8346. image: {
  8347. source: "./media/characters/tegon/front.svg",
  8348. bottom: 0.01,
  8349. extra: 1
  8350. }
  8351. },
  8352. },
  8353. [
  8354. {
  8355. name: "Micro",
  8356. height: math.unit(1, "inch")
  8357. },
  8358. {
  8359. name: "Normal",
  8360. height: math.unit(6 + 3 / 12, "feet"),
  8361. default: true
  8362. },
  8363. {
  8364. name: "Macro",
  8365. height: math.unit(300, "feet")
  8366. },
  8367. {
  8368. name: "Megamacro",
  8369. height: math.unit(69, "miles")
  8370. },
  8371. ]
  8372. ))
  8373. characterMakers.push(() => makeCharacter(
  8374. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8375. {
  8376. side: {
  8377. height: math.unit(6, "feet"),
  8378. weight: math.unit(2304, "lbs"),
  8379. name: "Side",
  8380. image: {
  8381. source: "./media/characters/arcturax/side.svg",
  8382. extra: 790 / 376,
  8383. bottom: 0.01
  8384. }
  8385. },
  8386. },
  8387. [
  8388. {
  8389. name: "Micro",
  8390. height: math.unit(2, "inch")
  8391. },
  8392. {
  8393. name: "Normal",
  8394. height: math.unit(6, "feet")
  8395. },
  8396. {
  8397. name: "Macro",
  8398. height: math.unit(39, "feet"),
  8399. default: true
  8400. },
  8401. {
  8402. name: "Megamacro",
  8403. height: math.unit(7, "miles")
  8404. },
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8409. {
  8410. front: {
  8411. height: math.unit(6, "feet"),
  8412. weight: math.unit(50, "lbs"),
  8413. name: "Front",
  8414. image: {
  8415. source: "./media/characters/sentri/front.svg",
  8416. extra: 1750 / 1570,
  8417. bottom: 0.025
  8418. }
  8419. },
  8420. frontAlt: {
  8421. height: math.unit(6, "feet"),
  8422. weight: math.unit(50, "lbs"),
  8423. name: "Front (Alt)",
  8424. image: {
  8425. source: "./media/characters/sentri/front-alt.svg",
  8426. extra: 1750 / 1570,
  8427. bottom: 0.025
  8428. }
  8429. },
  8430. },
  8431. [
  8432. {
  8433. name: "Normal",
  8434. height: math.unit(15, "feet"),
  8435. default: true
  8436. },
  8437. {
  8438. name: "Macro",
  8439. height: math.unit(2500, "feet")
  8440. }
  8441. ]
  8442. ))
  8443. characterMakers.push(() => makeCharacter(
  8444. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8445. {
  8446. front: {
  8447. height: math.unit(5 + 8 / 12, "feet"),
  8448. weight: math.unit(130, "lbs"),
  8449. name: "Front",
  8450. image: {
  8451. source: "./media/characters/corvin/front.svg",
  8452. extra: 1803 / 1629
  8453. }
  8454. },
  8455. frontShirt: {
  8456. height: math.unit(5 + 8 / 12, "feet"),
  8457. weight: math.unit(130, "lbs"),
  8458. name: "Front (Shirt)",
  8459. image: {
  8460. source: "./media/characters/corvin/front-shirt.svg",
  8461. extra: 1803 / 1629
  8462. }
  8463. },
  8464. frontPoncho: {
  8465. height: math.unit(5 + 8 / 12, "feet"),
  8466. weight: math.unit(130, "lbs"),
  8467. name: "Front (Poncho)",
  8468. image: {
  8469. source: "./media/characters/corvin/front-poncho.svg",
  8470. extra: 1803 / 1629
  8471. }
  8472. },
  8473. side: {
  8474. height: math.unit(5 + 8 / 12, "feet"),
  8475. weight: math.unit(130, "lbs"),
  8476. name: "Side",
  8477. image: {
  8478. source: "./media/characters/corvin/side.svg",
  8479. extra: 1012 / 945
  8480. }
  8481. },
  8482. back: {
  8483. height: math.unit(5 + 8 / 12, "feet"),
  8484. weight: math.unit(130, "lbs"),
  8485. name: "Back",
  8486. image: {
  8487. source: "./media/characters/corvin/back.svg",
  8488. extra: 1803 / 1629
  8489. }
  8490. },
  8491. },
  8492. [
  8493. {
  8494. name: "Micro",
  8495. height: math.unit(3, "inches")
  8496. },
  8497. {
  8498. name: "Normal",
  8499. height: math.unit(5 + 8 / 12, "feet")
  8500. },
  8501. {
  8502. name: "Macro",
  8503. height: math.unit(300, "feet"),
  8504. default: true
  8505. },
  8506. {
  8507. name: "Megamacro",
  8508. height: math.unit(500, "miles")
  8509. }
  8510. ]
  8511. ))
  8512. characterMakers.push(() => makeCharacter(
  8513. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8514. {
  8515. front: {
  8516. height: math.unit(6, "feet"),
  8517. weight: math.unit(135, "lbs"),
  8518. name: "Front",
  8519. image: {
  8520. source: "./media/characters/q/front.svg",
  8521. extra: 854 / 752,
  8522. bottom: 0.005
  8523. }
  8524. },
  8525. back: {
  8526. height: math.unit(6, "feet"),
  8527. weight: math.unit(130, "lbs"),
  8528. name: "Back",
  8529. image: {
  8530. source: "./media/characters/q/back.svg",
  8531. extra: 854 / 752
  8532. }
  8533. },
  8534. },
  8535. [
  8536. {
  8537. name: "Macro",
  8538. height: math.unit(90, "feet"),
  8539. default: true
  8540. },
  8541. {
  8542. name: "Extra Macro",
  8543. height: math.unit(300, "feet"),
  8544. },
  8545. {
  8546. name: "BIG WALF",
  8547. height: math.unit(750, "feet"),
  8548. },
  8549. ]
  8550. ))
  8551. characterMakers.push(() => makeCharacter(
  8552. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8553. {
  8554. front: {
  8555. height: math.unit(6, "feet"),
  8556. weight: math.unit(150, "lbs"),
  8557. name: "Front",
  8558. image: {
  8559. source: "./media/characters/carley/front.svg",
  8560. extra: 3927 / 3540,
  8561. bottom: 29.2 / 735
  8562. }
  8563. }
  8564. },
  8565. [
  8566. {
  8567. name: "Normal",
  8568. height: math.unit(6 + 3 / 12, "feet")
  8569. },
  8570. {
  8571. name: "Macro",
  8572. height: math.unit(185, "feet"),
  8573. default: true
  8574. },
  8575. {
  8576. name: "Megamacro",
  8577. height: math.unit(8, "miles"),
  8578. },
  8579. ]
  8580. ))
  8581. characterMakers.push(() => makeCharacter(
  8582. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8583. {
  8584. front: {
  8585. height: math.unit(3, "feet"),
  8586. weight: math.unit(28, "lbs"),
  8587. name: "Front",
  8588. image: {
  8589. source: "./media/characters/citrine/front.svg"
  8590. }
  8591. }
  8592. },
  8593. [
  8594. {
  8595. name: "Normal",
  8596. height: math.unit(3, "feet"),
  8597. default: true
  8598. }
  8599. ]
  8600. ))
  8601. characterMakers.push(() => makeCharacter(
  8602. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8603. {
  8604. front: {
  8605. height: math.unit(14, "feet"),
  8606. weight: math.unit(1450, "kg"),
  8607. capacity: math.unit(15, "people"),
  8608. name: "Front",
  8609. image: {
  8610. source: "./media/characters/aura-starwind/front.svg",
  8611. extra: 1440/1327,
  8612. bottom: 11/1451
  8613. }
  8614. },
  8615. side: {
  8616. height: math.unit(14, "feet"),
  8617. weight: math.unit(1450, "kg"),
  8618. capacity: math.unit(15, "people"),
  8619. name: "Side",
  8620. image: {
  8621. source: "./media/characters/aura-starwind/side.svg",
  8622. extra: 1654 / 1497
  8623. }
  8624. },
  8625. taur: {
  8626. height: math.unit(18, "feet"),
  8627. weight: math.unit(5500, "kg"),
  8628. capacity: math.unit(50, "people"),
  8629. name: "Taur",
  8630. image: {
  8631. source: "./media/characters/aura-starwind/taur.svg",
  8632. extra: 1760 / 1650
  8633. }
  8634. },
  8635. feral: {
  8636. height: math.unit(46, "feet"),
  8637. weight: math.unit(25000, "kg"),
  8638. capacity: math.unit(120, "people"),
  8639. name: "Feral",
  8640. image: {
  8641. source: "./media/characters/aura-starwind/feral.svg"
  8642. }
  8643. },
  8644. },
  8645. [
  8646. {
  8647. name: "Normal",
  8648. height: math.unit(14, "feet"),
  8649. default: true
  8650. },
  8651. {
  8652. name: "Macro",
  8653. height: math.unit(50, "meters")
  8654. },
  8655. {
  8656. name: "Megamacro",
  8657. height: math.unit(5000, "meters")
  8658. },
  8659. {
  8660. name: "Gigamacro",
  8661. height: math.unit(100000, "kilometers")
  8662. },
  8663. ]
  8664. ))
  8665. characterMakers.push(() => makeCharacter(
  8666. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8667. {
  8668. front: {
  8669. height: math.unit(2 + 7 / 12, "feet"),
  8670. weight: math.unit(32, "lbs"),
  8671. name: "Front",
  8672. image: {
  8673. source: "./media/characters/rivet/front.svg",
  8674. extra: 1716 / 1658,
  8675. bottom: 0.03
  8676. }
  8677. },
  8678. foot: {
  8679. height: math.unit(0.551, "feet"),
  8680. name: "Rivet's Foot",
  8681. image: {
  8682. source: "./media/characters/rivet/foot.svg"
  8683. },
  8684. rename: true
  8685. }
  8686. },
  8687. [
  8688. {
  8689. name: "Micro",
  8690. height: math.unit(1.5, "inches"),
  8691. },
  8692. {
  8693. name: "Normal",
  8694. height: math.unit(2 + 7 / 12, "feet"),
  8695. default: true
  8696. },
  8697. {
  8698. name: "Macro",
  8699. height: math.unit(85, "feet")
  8700. },
  8701. {
  8702. name: "Megamacro",
  8703. height: math.unit(2.2, "km")
  8704. }
  8705. ]
  8706. ))
  8707. characterMakers.push(() => makeCharacter(
  8708. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8709. {
  8710. front: {
  8711. height: math.unit(5 + 9 / 12, "feet"),
  8712. weight: math.unit(150, "lbs"),
  8713. name: "Front",
  8714. image: {
  8715. source: "./media/characters/coffee/front.svg",
  8716. extra: 3666 / 3032,
  8717. bottom: 0.04
  8718. }
  8719. },
  8720. foot: {
  8721. height: math.unit(1.29, "feet"),
  8722. name: "Foot",
  8723. image: {
  8724. source: "./media/characters/coffee/foot.svg"
  8725. }
  8726. },
  8727. },
  8728. [
  8729. {
  8730. name: "Micro",
  8731. height: math.unit(2, "inches"),
  8732. },
  8733. {
  8734. name: "Normal",
  8735. height: math.unit(5 + 9 / 12, "feet"),
  8736. default: true
  8737. },
  8738. {
  8739. name: "Macro",
  8740. height: math.unit(800, "feet")
  8741. },
  8742. {
  8743. name: "Megamacro",
  8744. height: math.unit(25, "miles")
  8745. }
  8746. ]
  8747. ))
  8748. characterMakers.push(() => makeCharacter(
  8749. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8750. {
  8751. front: {
  8752. height: math.unit(6, "feet"),
  8753. weight: math.unit(200, "lbs"),
  8754. name: "Front",
  8755. image: {
  8756. source: "./media/characters/chari-gal/front.svg",
  8757. extra: 1568 / 1385,
  8758. bottom: 0.047
  8759. }
  8760. },
  8761. gigantamax: {
  8762. height: math.unit(6 * 16, "feet"),
  8763. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8764. name: "Gigantamax",
  8765. image: {
  8766. source: "./media/characters/chari-gal/gigantamax.svg",
  8767. extra: 1124 / 888,
  8768. bottom: 0.03
  8769. }
  8770. },
  8771. },
  8772. [
  8773. {
  8774. name: "Normal",
  8775. height: math.unit(5 + 7 / 12, "feet")
  8776. },
  8777. {
  8778. name: "Macro",
  8779. height: math.unit(200, "feet"),
  8780. default: true
  8781. }
  8782. ]
  8783. ))
  8784. characterMakers.push(() => makeCharacter(
  8785. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8786. {
  8787. front: {
  8788. height: math.unit(6, "feet"),
  8789. weight: math.unit(150, "lbs"),
  8790. name: "Front",
  8791. image: {
  8792. source: "./media/characters/nova/front.svg",
  8793. extra: 5000 / 4722,
  8794. bottom: 0.02
  8795. }
  8796. }
  8797. },
  8798. [
  8799. {
  8800. name: "Micro-",
  8801. height: math.unit(0.8, "inches")
  8802. },
  8803. {
  8804. name: "Micro",
  8805. height: math.unit(2, "inches"),
  8806. default: true
  8807. },
  8808. ]
  8809. ))
  8810. characterMakers.push(() => makeCharacter(
  8811. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8812. {
  8813. front: {
  8814. height: math.unit(3 + 1 / 12, "feet"),
  8815. weight: math.unit(21.7, "lbs"),
  8816. name: "Front",
  8817. image: {
  8818. source: "./media/characters/argent/front.svg",
  8819. extra: 1471 / 1331,
  8820. bottom: 100.8 / 1575.5
  8821. }
  8822. }
  8823. },
  8824. [
  8825. {
  8826. name: "Micro",
  8827. height: math.unit(2, "inches")
  8828. },
  8829. {
  8830. name: "Normal",
  8831. height: math.unit(3 + 1 / 12, "feet"),
  8832. default: true
  8833. },
  8834. {
  8835. name: "Macro",
  8836. height: math.unit(120, "feet")
  8837. },
  8838. ]
  8839. ))
  8840. characterMakers.push(() => makeCharacter(
  8841. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8842. {
  8843. lamp: {
  8844. height: math.unit(7 * 1559 / 989, "feet"),
  8845. name: "Magic Lamp",
  8846. image: {
  8847. source: "./media/characters/mira-al-cul/lamp.svg",
  8848. extra: 1617 / 1559
  8849. }
  8850. },
  8851. front: {
  8852. height: math.unit(7, "feet"),
  8853. name: "Front",
  8854. image: {
  8855. source: "./media/characters/mira-al-cul/front.svg",
  8856. extra: 1044 / 990
  8857. }
  8858. },
  8859. },
  8860. [
  8861. {
  8862. name: "Heavily Restricted",
  8863. height: math.unit(7 * 1559 / 989, "feet")
  8864. },
  8865. {
  8866. name: "Freshly Freed",
  8867. height: math.unit(50 * 1559 / 989, "feet")
  8868. },
  8869. {
  8870. name: "World Encompassing",
  8871. height: math.unit(10000 * 1559 / 989, "miles")
  8872. },
  8873. {
  8874. name: "Galactic",
  8875. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8876. },
  8877. {
  8878. name: "Palmed Universe",
  8879. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8880. default: true
  8881. },
  8882. {
  8883. name: "Multiversal Matriarch",
  8884. height: math.unit(8.87e10, "yottameters")
  8885. },
  8886. {
  8887. name: "Void Mother",
  8888. height: math.unit(3.14e110, "yottaparsecs")
  8889. },
  8890. {
  8891. name: "Toying with Transcendence",
  8892. height: math.unit(1e307, "meters")
  8893. },
  8894. ]
  8895. ))
  8896. characterMakers.push(() => makeCharacter(
  8897. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8898. {
  8899. front: {
  8900. height: math.unit(17 + 1 / 12, "feet"),
  8901. weight: math.unit(476.2 * 5, "lbs"),
  8902. name: "Front",
  8903. image: {
  8904. source: "./media/characters/kuro-shi-uchū/front.svg",
  8905. extra: 2329 / 1835,
  8906. bottom: 0.02
  8907. }
  8908. },
  8909. },
  8910. [
  8911. {
  8912. name: "Micro",
  8913. height: math.unit(2, "inches")
  8914. },
  8915. {
  8916. name: "Normal",
  8917. height: math.unit(12, "meters")
  8918. },
  8919. {
  8920. name: "Planetary",
  8921. height: math.unit(0.00929, "AU"),
  8922. default: true
  8923. },
  8924. {
  8925. name: "Universal",
  8926. height: math.unit(20, "gigaparsecs")
  8927. },
  8928. ]
  8929. ))
  8930. characterMakers.push(() => makeCharacter(
  8931. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8932. {
  8933. front: {
  8934. height: math.unit(5 + 2 / 12, "feet"),
  8935. weight: math.unit(120, "lbs"),
  8936. name: "Front",
  8937. image: {
  8938. source: "./media/characters/katherine/front.svg",
  8939. extra: 2075 / 1969
  8940. }
  8941. },
  8942. dress: {
  8943. height: math.unit(5 + 2 / 12, "feet"),
  8944. weight: math.unit(120, "lbs"),
  8945. name: "Dress",
  8946. image: {
  8947. source: "./media/characters/katherine/dress.svg",
  8948. extra: 2258 / 2064
  8949. }
  8950. },
  8951. },
  8952. [
  8953. {
  8954. name: "Micro",
  8955. height: math.unit(1, "inches"),
  8956. default: true
  8957. },
  8958. {
  8959. name: "Normal",
  8960. height: math.unit(5 + 2 / 12, "feet")
  8961. },
  8962. {
  8963. name: "Macro",
  8964. height: math.unit(100, "meters")
  8965. },
  8966. {
  8967. name: "Megamacro",
  8968. height: math.unit(80, "miles")
  8969. },
  8970. ]
  8971. ))
  8972. characterMakers.push(() => makeCharacter(
  8973. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8974. {
  8975. front: {
  8976. height: math.unit(7 + 8 / 12, "feet"),
  8977. weight: math.unit(250, "lbs"),
  8978. name: "Front",
  8979. image: {
  8980. source: "./media/characters/yevis/front.svg",
  8981. extra: 1938 / 1755
  8982. }
  8983. }
  8984. },
  8985. [
  8986. {
  8987. name: "Mortal",
  8988. height: math.unit(7 + 8 / 12, "feet")
  8989. },
  8990. {
  8991. name: "Battle",
  8992. height: math.unit(25 + 11 / 12, "feet")
  8993. },
  8994. {
  8995. name: "Wrath",
  8996. height: math.unit(1654 + 11 / 12, "feet")
  8997. },
  8998. {
  8999. name: "Planet Destroyer",
  9000. height: math.unit(12000, "miles")
  9001. },
  9002. {
  9003. name: "Galaxy Conqueror",
  9004. height: math.unit(1.45, "zettameters"),
  9005. default: true
  9006. },
  9007. {
  9008. name: "Universal War",
  9009. height: math.unit(184, "gigaparsecs")
  9010. },
  9011. {
  9012. name: "Eternity War",
  9013. height: math.unit(1.98e55, "yottaparsecs")
  9014. },
  9015. ]
  9016. ))
  9017. characterMakers.push(() => makeCharacter(
  9018. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9019. {
  9020. front: {
  9021. height: math.unit(5 + 8 / 12, "feet"),
  9022. weight: math.unit(63, "kg"),
  9023. name: "Front",
  9024. image: {
  9025. source: "./media/characters/xavier/front.svg",
  9026. extra: 944 / 883
  9027. }
  9028. },
  9029. frontStretch: {
  9030. height: math.unit(5 + 8 / 12, "feet"),
  9031. weight: math.unit(63, "kg"),
  9032. name: "Stretching",
  9033. image: {
  9034. source: "./media/characters/xavier/front-stretch.svg",
  9035. extra: 962 / 820
  9036. }
  9037. },
  9038. },
  9039. [
  9040. {
  9041. name: "Normal",
  9042. height: math.unit(5 + 8 / 12, "feet")
  9043. },
  9044. {
  9045. name: "Macro",
  9046. height: math.unit(100, "meters"),
  9047. default: true
  9048. },
  9049. {
  9050. name: "McLargeHuge",
  9051. height: math.unit(10, "miles")
  9052. },
  9053. ]
  9054. ))
  9055. characterMakers.push(() => makeCharacter(
  9056. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9057. {
  9058. front: {
  9059. height: math.unit(5 + 5 / 12, "feet"),
  9060. weight: math.unit(150, "lb"),
  9061. name: "Front",
  9062. image: {
  9063. source: "./media/characters/joshii/front.svg",
  9064. extra: 765 / 653,
  9065. bottom: 51 / 816
  9066. }
  9067. },
  9068. foot: {
  9069. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9070. name: "Foot",
  9071. image: {
  9072. source: "./media/characters/joshii/foot.svg"
  9073. }
  9074. },
  9075. },
  9076. [
  9077. {
  9078. name: "Micro",
  9079. height: math.unit(2, "inches"),
  9080. default: true
  9081. },
  9082. {
  9083. name: "Normal",
  9084. height: math.unit(5 + 5 / 12, "feet")
  9085. },
  9086. {
  9087. name: "Macro",
  9088. height: math.unit(785, "feet")
  9089. },
  9090. {
  9091. name: "Megamacro",
  9092. height: math.unit(24.5, "miles")
  9093. },
  9094. ]
  9095. ))
  9096. characterMakers.push(() => makeCharacter(
  9097. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9098. {
  9099. front: {
  9100. height: math.unit(6, "feet"),
  9101. weight: math.unit(150, "lb"),
  9102. name: "Front",
  9103. image: {
  9104. source: "./media/characters/goddess-elizabeth/front.svg",
  9105. extra: 1800 / 1525,
  9106. bottom: 0.005
  9107. }
  9108. },
  9109. foot: {
  9110. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9111. name: "Foot",
  9112. image: {
  9113. source: "./media/characters/goddess-elizabeth/foot.svg"
  9114. }
  9115. },
  9116. mouth: {
  9117. height: math.unit(6, "feet"),
  9118. name: "Mouth",
  9119. image: {
  9120. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9121. }
  9122. },
  9123. },
  9124. [
  9125. {
  9126. name: "Micro",
  9127. height: math.unit(12, "feet")
  9128. },
  9129. {
  9130. name: "Normal",
  9131. height: math.unit(80, "miles"),
  9132. default: true
  9133. },
  9134. {
  9135. name: "Macro",
  9136. height: math.unit(15000, "parsecs")
  9137. },
  9138. ]
  9139. ))
  9140. characterMakers.push(() => makeCharacter(
  9141. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9142. {
  9143. front: {
  9144. height: math.unit(5 + 9 / 12, "feet"),
  9145. weight: math.unit(144, "lb"),
  9146. name: "Front",
  9147. image: {
  9148. source: "./media/characters/kara/front.svg"
  9149. }
  9150. },
  9151. feet: {
  9152. height: math.unit(6 / 6.765, "feet"),
  9153. name: "Kara's Feet",
  9154. rename: true,
  9155. image: {
  9156. source: "./media/characters/kara/feet.svg"
  9157. }
  9158. },
  9159. },
  9160. [
  9161. {
  9162. name: "Normal",
  9163. height: math.unit(5 + 9 / 12, "feet")
  9164. },
  9165. {
  9166. name: "Macro",
  9167. height: math.unit(174, "feet"),
  9168. default: true
  9169. },
  9170. ]
  9171. ))
  9172. characterMakers.push(() => makeCharacter(
  9173. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9174. {
  9175. front: {
  9176. height: math.unit(18, "feet"),
  9177. weight: math.unit(4050, "lb"),
  9178. name: "Front",
  9179. image: {
  9180. source: "./media/characters/tyrone/front.svg",
  9181. extra: 2405 / 2270,
  9182. bottom: 182 / 2587
  9183. }
  9184. },
  9185. },
  9186. [
  9187. {
  9188. name: "Normal",
  9189. height: math.unit(18, "feet"),
  9190. default: true
  9191. },
  9192. {
  9193. name: "Macro",
  9194. height: math.unit(300, "feet")
  9195. },
  9196. {
  9197. name: "Megamacro",
  9198. height: math.unit(15, "km")
  9199. },
  9200. {
  9201. name: "Gigamacro",
  9202. height: math.unit(500, "km")
  9203. },
  9204. {
  9205. name: "Teramacro",
  9206. height: math.unit(0.5, "gigameters")
  9207. },
  9208. {
  9209. name: "Omnimacro",
  9210. height: math.unit(1e252, "yottauniverse")
  9211. },
  9212. ]
  9213. ))
  9214. characterMakers.push(() => makeCharacter(
  9215. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9216. {
  9217. front: {
  9218. height: math.unit(7 + 8 / 12, "feet"),
  9219. weight: math.unit(120, "lb"),
  9220. name: "Front",
  9221. image: {
  9222. source: "./media/characters/danny/front.svg",
  9223. extra: 1490 / 1350
  9224. }
  9225. },
  9226. back: {
  9227. height: math.unit(7 + 8 / 12, "feet"),
  9228. weight: math.unit(120, "lb"),
  9229. name: "Back",
  9230. image: {
  9231. source: "./media/characters/danny/back.svg",
  9232. extra: 1490 / 1350
  9233. }
  9234. },
  9235. },
  9236. [
  9237. {
  9238. name: "Normal",
  9239. height: math.unit(7 + 8 / 12, "feet"),
  9240. default: true
  9241. },
  9242. ]
  9243. ))
  9244. characterMakers.push(() => makeCharacter(
  9245. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9246. {
  9247. front: {
  9248. height: math.unit(3.5, "inches"),
  9249. weight: math.unit(19, "grams"),
  9250. name: "Front",
  9251. image: {
  9252. source: "./media/characters/mallow/front.svg",
  9253. extra: 471 / 431
  9254. }
  9255. },
  9256. back: {
  9257. height: math.unit(3.5, "inches"),
  9258. weight: math.unit(19, "grams"),
  9259. name: "Back",
  9260. image: {
  9261. source: "./media/characters/mallow/back.svg",
  9262. extra: 471 / 431
  9263. }
  9264. },
  9265. },
  9266. [
  9267. {
  9268. name: "Normal",
  9269. height: math.unit(3.5, "inches"),
  9270. default: true
  9271. },
  9272. ]
  9273. ))
  9274. characterMakers.push(() => makeCharacter(
  9275. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9276. {
  9277. front: {
  9278. height: math.unit(9, "feet"),
  9279. weight: math.unit(230, "kg"),
  9280. name: "Front",
  9281. image: {
  9282. source: "./media/characters/starry-aqua/front.svg"
  9283. }
  9284. },
  9285. back: {
  9286. height: math.unit(9, "feet"),
  9287. weight: math.unit(230, "kg"),
  9288. name: "Back",
  9289. image: {
  9290. source: "./media/characters/starry-aqua/back.svg"
  9291. }
  9292. },
  9293. hand: {
  9294. height: math.unit(9 * 0.1168, "feet"),
  9295. name: "Hand",
  9296. image: {
  9297. source: "./media/characters/starry-aqua/hand.svg"
  9298. }
  9299. },
  9300. foot: {
  9301. height: math.unit(9 * 0.18, "feet"),
  9302. name: "Foot",
  9303. image: {
  9304. source: "./media/characters/starry-aqua/foot.svg"
  9305. }
  9306. }
  9307. },
  9308. [
  9309. {
  9310. name: "Micro",
  9311. height: math.unit(3, "inches")
  9312. },
  9313. {
  9314. name: "Normal",
  9315. height: math.unit(9, "feet")
  9316. },
  9317. {
  9318. name: "Macro",
  9319. height: math.unit(300, "feet"),
  9320. default: true
  9321. },
  9322. {
  9323. name: "Megamacro",
  9324. height: math.unit(3200, "feet")
  9325. }
  9326. ]
  9327. ))
  9328. characterMakers.push(() => makeCharacter(
  9329. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9330. {
  9331. front: {
  9332. height: math.unit(15, "feet"),
  9333. weight: math.unit(5026, "lb"),
  9334. name: "Front",
  9335. image: {
  9336. source: "./media/characters/luka-towers/front.svg",
  9337. extra: 1269/1133,
  9338. bottom: 51/1320
  9339. }
  9340. },
  9341. },
  9342. [
  9343. {
  9344. name: "Normal",
  9345. height: math.unit(15, "feet"),
  9346. default: true
  9347. },
  9348. {
  9349. name: "Minimacro",
  9350. height: math.unit(25, "feet")
  9351. },
  9352. {
  9353. name: "Macro",
  9354. height: math.unit(320, "feet")
  9355. },
  9356. {
  9357. name: "Megamacro",
  9358. height: math.unit(35000, "feet")
  9359. },
  9360. {
  9361. name: "Gigamacro",
  9362. height: math.unit(4000, "miles")
  9363. },
  9364. {
  9365. name: "Teramacro",
  9366. height: math.unit(15000, "miles")
  9367. },
  9368. ]
  9369. ))
  9370. characterMakers.push(() => makeCharacter(
  9371. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9372. {
  9373. front: {
  9374. height: math.unit(6, "feet"),
  9375. weight: math.unit(150, "lb"),
  9376. name: "Front",
  9377. image: {
  9378. source: "./media/characters/natalie-nightring/front.svg",
  9379. extra: 1,
  9380. bottom: 0.06
  9381. }
  9382. },
  9383. },
  9384. [
  9385. {
  9386. name: "Uh Oh",
  9387. height: math.unit(0.1, "mm")
  9388. },
  9389. {
  9390. name: "Small",
  9391. height: math.unit(3, "inches")
  9392. },
  9393. {
  9394. name: "Human Scale",
  9395. height: math.unit(6, "feet")
  9396. },
  9397. {
  9398. name: "Librarian",
  9399. height: math.unit(50, "feet"),
  9400. default: true
  9401. },
  9402. {
  9403. name: "Immense",
  9404. height: math.unit(200, "miles")
  9405. },
  9406. ]
  9407. ))
  9408. characterMakers.push(() => makeCharacter(
  9409. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9410. {
  9411. front: {
  9412. height: math.unit(6, "feet"),
  9413. weight: math.unit(180, "lbs"),
  9414. name: "Front",
  9415. image: {
  9416. source: "./media/characters/danni-rosie/front.svg",
  9417. extra: 1260 / 1128,
  9418. bottom: 0.022
  9419. }
  9420. },
  9421. },
  9422. [
  9423. {
  9424. name: "Micro",
  9425. height: math.unit(2, "inches"),
  9426. default: true
  9427. },
  9428. ]
  9429. ))
  9430. characterMakers.push(() => makeCharacter(
  9431. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9432. {
  9433. front: {
  9434. height: math.unit(5 + 9 / 12, "feet"),
  9435. weight: math.unit(220, "lb"),
  9436. name: "Front",
  9437. image: {
  9438. source: "./media/characters/samantha-kruse/front.svg",
  9439. extra: (985 / 935),
  9440. bottom: 0.03
  9441. }
  9442. },
  9443. frontUndressed: {
  9444. height: math.unit(5 + 9 / 12, "feet"),
  9445. weight: math.unit(220, "lb"),
  9446. name: "Front (Undressed)",
  9447. image: {
  9448. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9449. extra: (973 / 923),
  9450. bottom: 0.025
  9451. }
  9452. },
  9453. fat: {
  9454. height: math.unit(5 + 9 / 12, "feet"),
  9455. weight: math.unit(900, "lb"),
  9456. name: "Front (Fat)",
  9457. image: {
  9458. source: "./media/characters/samantha-kruse/fat.svg",
  9459. extra: 2688 / 2561
  9460. }
  9461. },
  9462. },
  9463. [
  9464. {
  9465. name: "Normal",
  9466. height: math.unit(5 + 9 / 12, "feet"),
  9467. default: true
  9468. }
  9469. ]
  9470. ))
  9471. characterMakers.push(() => makeCharacter(
  9472. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9473. {
  9474. back: {
  9475. height: math.unit(5 + 4 / 12, "feet"),
  9476. weight: math.unit(4963, "lb"),
  9477. name: "Back",
  9478. image: {
  9479. source: "./media/characters/amelia-rosie/back.svg",
  9480. extra: 1113 / 963,
  9481. bottom: 0.01
  9482. }
  9483. },
  9484. },
  9485. [
  9486. {
  9487. name: "Level 0",
  9488. height: math.unit(5 + 4 / 12, "feet")
  9489. },
  9490. {
  9491. name: "Level 1",
  9492. height: math.unit(164597, "feet"),
  9493. default: true
  9494. },
  9495. {
  9496. name: "Level 2",
  9497. height: math.unit(956243, "miles")
  9498. },
  9499. {
  9500. name: "Level 3",
  9501. height: math.unit(29421709423, "miles")
  9502. },
  9503. {
  9504. name: "Level 4",
  9505. height: math.unit(154, "lightyears")
  9506. },
  9507. {
  9508. name: "Level 5",
  9509. height: math.unit(4738272, "lightyears")
  9510. },
  9511. {
  9512. name: "Level 6",
  9513. height: math.unit(145787152896, "lightyears")
  9514. },
  9515. ]
  9516. ))
  9517. characterMakers.push(() => makeCharacter(
  9518. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9519. {
  9520. front: {
  9521. height: math.unit(5 + 11 / 12, "feet"),
  9522. weight: math.unit(65, "kg"),
  9523. name: "Front",
  9524. image: {
  9525. source: "./media/characters/rook-kitara/front.svg",
  9526. extra: 1347 / 1274,
  9527. bottom: 0.005
  9528. }
  9529. },
  9530. },
  9531. [
  9532. {
  9533. name: "Totally Unfair",
  9534. height: math.unit(1.8, "mm")
  9535. },
  9536. {
  9537. name: "Lap Rookie",
  9538. height: math.unit(1.4, "feet")
  9539. },
  9540. {
  9541. name: "Normal",
  9542. height: math.unit(5 + 11 / 12, "feet"),
  9543. default: true
  9544. },
  9545. {
  9546. name: "How Did This Happen",
  9547. height: math.unit(80, "miles")
  9548. }
  9549. ]
  9550. ))
  9551. characterMakers.push(() => makeCharacter(
  9552. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9553. {
  9554. front: {
  9555. height: math.unit(7, "feet"),
  9556. weight: math.unit(300, "lb"),
  9557. name: "Front",
  9558. image: {
  9559. source: "./media/characters/pisces/front.svg",
  9560. extra: 2255 / 2115,
  9561. bottom: 0.03
  9562. }
  9563. },
  9564. back: {
  9565. height: math.unit(7, "feet"),
  9566. weight: math.unit(300, "lb"),
  9567. name: "Back",
  9568. image: {
  9569. source: "./media/characters/pisces/back.svg",
  9570. extra: 2146 / 2055,
  9571. bottom: 0.04
  9572. }
  9573. },
  9574. },
  9575. [
  9576. {
  9577. name: "Normal",
  9578. height: math.unit(7, "feet"),
  9579. default: true
  9580. },
  9581. {
  9582. name: "Swimming Pool",
  9583. height: math.unit(12.2, "meters")
  9584. },
  9585. {
  9586. name: "Olympic Swimming Pool",
  9587. height: math.unit(56.3, "meters")
  9588. },
  9589. {
  9590. name: "Lake Superior",
  9591. height: math.unit(93900, "meters")
  9592. },
  9593. {
  9594. name: "Mediterranean Sea",
  9595. height: math.unit(644457, "meters")
  9596. },
  9597. {
  9598. name: "World's Oceans",
  9599. height: math.unit(4567491, "meters")
  9600. },
  9601. ]
  9602. ))
  9603. characterMakers.push(() => makeCharacter(
  9604. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9605. {
  9606. front: {
  9607. height: math.unit(2.3, "meters"),
  9608. weight: math.unit(120, "kg"),
  9609. name: "Front",
  9610. image: {
  9611. source: "./media/characters/zelas/front.svg"
  9612. }
  9613. },
  9614. side: {
  9615. height: math.unit(2.3, "meters"),
  9616. weight: math.unit(120, "kg"),
  9617. name: "Side",
  9618. image: {
  9619. source: "./media/characters/zelas/side.svg"
  9620. }
  9621. },
  9622. back: {
  9623. height: math.unit(2.3, "meters"),
  9624. weight: math.unit(120, "kg"),
  9625. name: "Back",
  9626. image: {
  9627. source: "./media/characters/zelas/back.svg"
  9628. }
  9629. },
  9630. foot: {
  9631. height: math.unit(1.116, "feet"),
  9632. name: "Foot",
  9633. image: {
  9634. source: "./media/characters/zelas/foot.svg"
  9635. }
  9636. },
  9637. },
  9638. [
  9639. {
  9640. name: "Normal",
  9641. height: math.unit(2.3, "meters")
  9642. },
  9643. {
  9644. name: "Macro",
  9645. height: math.unit(30, "meters"),
  9646. default: true
  9647. },
  9648. ]
  9649. ))
  9650. characterMakers.push(() => makeCharacter(
  9651. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9652. {
  9653. front: {
  9654. height: math.unit(1, "inch"),
  9655. weight: math.unit(0.21, "grams"),
  9656. name: "Front",
  9657. image: {
  9658. source: "./media/characters/talbot/front.svg",
  9659. extra: 594 / 544
  9660. }
  9661. },
  9662. },
  9663. [
  9664. {
  9665. name: "Micro",
  9666. height: math.unit(1, "inch"),
  9667. default: true
  9668. },
  9669. ]
  9670. ))
  9671. characterMakers.push(() => makeCharacter(
  9672. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9673. {
  9674. front: {
  9675. height: math.unit(3 + 3 / 12, "feet"),
  9676. weight: math.unit(51.8, "lb"),
  9677. name: "Front",
  9678. image: {
  9679. source: "./media/characters/fliss/front.svg",
  9680. extra: 840 / 640
  9681. }
  9682. },
  9683. },
  9684. [
  9685. {
  9686. name: "Teeny Tiny",
  9687. height: math.unit(1, "mm")
  9688. },
  9689. {
  9690. name: "Small",
  9691. height: math.unit(1, "inch"),
  9692. default: true
  9693. },
  9694. {
  9695. name: "Standard Sylveon",
  9696. height: math.unit(3 + 3 / 12, "feet")
  9697. },
  9698. {
  9699. name: "Large Nuisance",
  9700. height: math.unit(33, "feet")
  9701. },
  9702. {
  9703. name: "City Filler",
  9704. height: math.unit(3000, "feet")
  9705. },
  9706. {
  9707. name: "New Horizon",
  9708. height: math.unit(6000, "miles")
  9709. },
  9710. ]
  9711. ))
  9712. characterMakers.push(() => makeCharacter(
  9713. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9714. {
  9715. front: {
  9716. height: math.unit(5, "cm"),
  9717. weight: math.unit(1.94, "g"),
  9718. name: "Front",
  9719. image: {
  9720. source: "./media/characters/fleta/front.svg",
  9721. extra: 835 / 803
  9722. }
  9723. },
  9724. back: {
  9725. height: math.unit(5, "cm"),
  9726. weight: math.unit(1.94, "g"),
  9727. name: "Back",
  9728. image: {
  9729. source: "./media/characters/fleta/back.svg",
  9730. extra: 835 / 803
  9731. }
  9732. },
  9733. },
  9734. [
  9735. {
  9736. name: "Micro",
  9737. height: math.unit(5, "cm"),
  9738. default: true
  9739. },
  9740. ]
  9741. ))
  9742. characterMakers.push(() => makeCharacter(
  9743. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9744. {
  9745. front: {
  9746. height: math.unit(6, "feet"),
  9747. weight: math.unit(225, "lb"),
  9748. name: "Front",
  9749. image: {
  9750. source: "./media/characters/dominic/front.svg",
  9751. extra: 1770 / 1620,
  9752. bottom: 0.025
  9753. }
  9754. },
  9755. back: {
  9756. height: math.unit(6, "feet"),
  9757. weight: math.unit(225, "lb"),
  9758. name: "Back",
  9759. image: {
  9760. source: "./media/characters/dominic/back.svg",
  9761. extra: 1745 / 1620,
  9762. bottom: 0.065
  9763. }
  9764. },
  9765. },
  9766. [
  9767. {
  9768. name: "Nano",
  9769. height: math.unit(0.1, "mm")
  9770. },
  9771. {
  9772. name: "Micro-",
  9773. height: math.unit(1, "mm")
  9774. },
  9775. {
  9776. name: "Micro",
  9777. height: math.unit(4, "inches")
  9778. },
  9779. {
  9780. name: "Normal",
  9781. height: math.unit(6 + 4 / 12, "feet"),
  9782. default: true
  9783. },
  9784. {
  9785. name: "Macro",
  9786. height: math.unit(115, "feet")
  9787. },
  9788. {
  9789. name: "Macro+",
  9790. height: math.unit(955, "feet")
  9791. },
  9792. {
  9793. name: "Megamacro",
  9794. height: math.unit(8990, "feet")
  9795. },
  9796. {
  9797. name: "Gigmacro",
  9798. height: math.unit(9310, "miles")
  9799. },
  9800. {
  9801. name: "Teramacro",
  9802. height: math.unit(1567005010, "miles")
  9803. },
  9804. {
  9805. name: "Examacro",
  9806. height: math.unit(1425, "parsecs")
  9807. },
  9808. ]
  9809. ))
  9810. characterMakers.push(() => makeCharacter(
  9811. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9812. {
  9813. front: {
  9814. height: math.unit(400, "feet"),
  9815. weight: math.unit(44444444, "lb"),
  9816. name: "Front",
  9817. image: {
  9818. source: "./media/characters/major-colonel/front.svg"
  9819. }
  9820. },
  9821. back: {
  9822. height: math.unit(400, "feet"),
  9823. weight: math.unit(44444444, "lb"),
  9824. name: "Back",
  9825. image: {
  9826. source: "./media/characters/major-colonel/back.svg"
  9827. }
  9828. },
  9829. },
  9830. [
  9831. {
  9832. name: "Macro",
  9833. height: math.unit(400, "feet"),
  9834. default: true
  9835. },
  9836. ]
  9837. ))
  9838. characterMakers.push(() => makeCharacter(
  9839. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9840. {
  9841. catFront: {
  9842. height: math.unit(6, "feet"),
  9843. weight: math.unit(120, "lb"),
  9844. name: "Front (Cat Side)",
  9845. image: {
  9846. source: "./media/characters/axel-lycan/cat-front.svg",
  9847. extra: 430 / 402,
  9848. bottom: 43 / 472.35
  9849. }
  9850. },
  9851. catBack: {
  9852. height: math.unit(6, "feet"),
  9853. weight: math.unit(120, "lb"),
  9854. name: "Back (Cat Side)",
  9855. image: {
  9856. source: "./media/characters/axel-lycan/cat-back.svg",
  9857. extra: 447 / 419,
  9858. bottom: 23.3 / 469
  9859. }
  9860. },
  9861. wolfFront: {
  9862. height: math.unit(6, "feet"),
  9863. weight: math.unit(120, "lb"),
  9864. name: "Front (Wolf Side)",
  9865. image: {
  9866. source: "./media/characters/axel-lycan/wolf-front.svg",
  9867. extra: 485 / 456,
  9868. bottom: 19 / 504
  9869. }
  9870. },
  9871. wolfBack: {
  9872. height: math.unit(6, "feet"),
  9873. weight: math.unit(120, "lb"),
  9874. name: "Back (Wolf Side)",
  9875. image: {
  9876. source: "./media/characters/axel-lycan/wolf-back.svg",
  9877. extra: 475 / 438,
  9878. bottom: 39.2 / 514
  9879. }
  9880. },
  9881. },
  9882. [
  9883. {
  9884. name: "Macro",
  9885. height: math.unit(1, "km"),
  9886. default: true
  9887. },
  9888. ]
  9889. ))
  9890. characterMakers.push(() => makeCharacter(
  9891. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9892. {
  9893. front: {
  9894. height: math.unit(5 + 9 / 12, "feet"),
  9895. weight: math.unit(175, "lb"),
  9896. name: "Front",
  9897. image: {
  9898. source: "./media/characters/vanrel-hyena/front.svg",
  9899. extra: 1086 / 1010,
  9900. bottom: 0.04
  9901. }
  9902. },
  9903. },
  9904. [
  9905. {
  9906. name: "Normal",
  9907. height: math.unit(5 + 9 / 12, "feet"),
  9908. default: true
  9909. },
  9910. ]
  9911. ))
  9912. characterMakers.push(() => makeCharacter(
  9913. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9914. {
  9915. front: {
  9916. height: math.unit(6, "feet"),
  9917. weight: math.unit(103, "lb"),
  9918. name: "Front",
  9919. image: {
  9920. source: "./media/characters/abbott-absol/front.svg",
  9921. extra: 2010 / 1842
  9922. }
  9923. },
  9924. },
  9925. [
  9926. {
  9927. name: "Megamicro",
  9928. height: math.unit(0.1, "mm")
  9929. },
  9930. {
  9931. name: "Micro",
  9932. height: math.unit(1, "inch")
  9933. },
  9934. {
  9935. name: "Normal",
  9936. height: math.unit(6, "feet"),
  9937. default: true
  9938. },
  9939. ]
  9940. ))
  9941. characterMakers.push(() => makeCharacter(
  9942. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9943. {
  9944. front: {
  9945. height: math.unit(6, "feet"),
  9946. weight: math.unit(264, "lb"),
  9947. name: "Front",
  9948. image: {
  9949. source: "./media/characters/hector/front.svg",
  9950. extra: 2280 / 2130,
  9951. bottom: 0.07
  9952. }
  9953. },
  9954. },
  9955. [
  9956. {
  9957. name: "Normal",
  9958. height: math.unit(12.25, "foot"),
  9959. default: true
  9960. },
  9961. {
  9962. name: "Macro",
  9963. height: math.unit(160, "feet")
  9964. },
  9965. ]
  9966. ))
  9967. characterMakers.push(() => makeCharacter(
  9968. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9969. {
  9970. front: {
  9971. height: math.unit(6, "feet"),
  9972. weight: math.unit(150, "lb"),
  9973. name: "Front",
  9974. image: {
  9975. source: "./media/characters/sal/front.svg",
  9976. extra: 1846 / 1699,
  9977. bottom: 0.04
  9978. }
  9979. },
  9980. },
  9981. [
  9982. {
  9983. name: "Megamacro",
  9984. height: math.unit(10, "miles"),
  9985. default: true
  9986. },
  9987. ]
  9988. ))
  9989. characterMakers.push(() => makeCharacter(
  9990. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9991. {
  9992. front: {
  9993. height: math.unit(3, "meters"),
  9994. weight: math.unit(450, "kg"),
  9995. name: "front",
  9996. image: {
  9997. source: "./media/characters/ranger/front.svg",
  9998. extra: 2401 / 2243,
  9999. bottom: 0.05
  10000. }
  10001. },
  10002. },
  10003. [
  10004. {
  10005. name: "Normal",
  10006. height: math.unit(3, "meters"),
  10007. default: true
  10008. },
  10009. ]
  10010. ))
  10011. characterMakers.push(() => makeCharacter(
  10012. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10013. {
  10014. front: {
  10015. height: math.unit(14, "feet"),
  10016. weight: math.unit(800, "kg"),
  10017. name: "Front",
  10018. image: {
  10019. source: "./media/characters/theresa/front.svg",
  10020. extra: 3575 / 3346,
  10021. bottom: 0.03
  10022. }
  10023. },
  10024. },
  10025. [
  10026. {
  10027. name: "Normal",
  10028. height: math.unit(14, "feet"),
  10029. default: true
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10035. {
  10036. front: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(3, "kg"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/ine/front.svg",
  10042. extra: 678 / 539,
  10043. bottom: 0.023
  10044. }
  10045. },
  10046. },
  10047. [
  10048. {
  10049. name: "Normal",
  10050. height: math.unit(2.265, "feet"),
  10051. default: true
  10052. },
  10053. ]
  10054. ))
  10055. characterMakers.push(() => makeCharacter(
  10056. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10057. {
  10058. front: {
  10059. height: math.unit(5, "feet"),
  10060. weight: math.unit(30, "kg"),
  10061. name: "Front",
  10062. image: {
  10063. source: "./media/characters/vial/front.svg",
  10064. extra: 1365 / 1277,
  10065. bottom: 0.04
  10066. }
  10067. },
  10068. },
  10069. [
  10070. {
  10071. name: "Normal",
  10072. height: math.unit(5, "feet"),
  10073. default: true
  10074. },
  10075. ]
  10076. ))
  10077. characterMakers.push(() => makeCharacter(
  10078. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10079. {
  10080. side: {
  10081. height: math.unit(3.4, "meters"),
  10082. weight: math.unit(1000, "lb"),
  10083. name: "Side",
  10084. image: {
  10085. source: "./media/characters/rovoska/side.svg",
  10086. extra: 4403 / 1515
  10087. }
  10088. },
  10089. },
  10090. [
  10091. {
  10092. name: "Normal",
  10093. height: math.unit(3.4, "meters"),
  10094. default: true
  10095. },
  10096. ]
  10097. ))
  10098. characterMakers.push(() => makeCharacter(
  10099. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10100. {
  10101. front: {
  10102. height: math.unit(8, "feet"),
  10103. weight: math.unit(315, "lb"),
  10104. name: "Front",
  10105. image: {
  10106. source: "./media/characters/gunner-rotthbauer/front.svg"
  10107. }
  10108. },
  10109. back: {
  10110. height: math.unit(8, "feet"),
  10111. weight: math.unit(315, "lb"),
  10112. name: "Back",
  10113. image: {
  10114. source: "./media/characters/gunner-rotthbauer/back.svg"
  10115. }
  10116. },
  10117. },
  10118. [
  10119. {
  10120. name: "Micro",
  10121. height: math.unit(3.5, "inches")
  10122. },
  10123. {
  10124. name: "Normal",
  10125. height: math.unit(8, "feet"),
  10126. default: true
  10127. },
  10128. {
  10129. name: "Macro",
  10130. height: math.unit(250, "feet")
  10131. },
  10132. {
  10133. name: "Megamacro",
  10134. height: math.unit(1, "AU")
  10135. },
  10136. ]
  10137. ))
  10138. characterMakers.push(() => makeCharacter(
  10139. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10140. {
  10141. front: {
  10142. height: math.unit(5 + 5 / 12, "feet"),
  10143. weight: math.unit(140, "lb"),
  10144. name: "Front",
  10145. image: {
  10146. source: "./media/characters/allatia/front.svg",
  10147. extra: 1227 / 1180,
  10148. bottom: 0.027
  10149. }
  10150. },
  10151. },
  10152. [
  10153. {
  10154. name: "Normal",
  10155. height: math.unit(5 + 5 / 12, "feet")
  10156. },
  10157. {
  10158. name: "Macro",
  10159. height: math.unit(250, "feet"),
  10160. default: true
  10161. },
  10162. {
  10163. name: "Megamacro",
  10164. height: math.unit(8, "miles")
  10165. }
  10166. ]
  10167. ))
  10168. characterMakers.push(() => makeCharacter(
  10169. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10170. {
  10171. front: {
  10172. height: math.unit(6, "feet"),
  10173. weight: math.unit(120, "lb"),
  10174. name: "Front",
  10175. image: {
  10176. source: "./media/characters/tene/front.svg",
  10177. extra: 814/750,
  10178. bottom: 36/850
  10179. }
  10180. },
  10181. stomping: {
  10182. height: math.unit(2.025, "meters"),
  10183. weight: math.unit(120, "lb"),
  10184. name: "Stomping",
  10185. image: {
  10186. source: "./media/characters/tene/stomping.svg",
  10187. extra: 885/821,
  10188. bottom: 15/900
  10189. }
  10190. },
  10191. sitting: {
  10192. height: math.unit(1, "meter"),
  10193. weight: math.unit(120, "lb"),
  10194. name: "Sitting",
  10195. image: {
  10196. source: "./media/characters/tene/sitting.svg",
  10197. extra: 396/366,
  10198. bottom: 79/475
  10199. }
  10200. },
  10201. smiling: {
  10202. height: math.unit(1.2, "feet"),
  10203. name: "Smiling",
  10204. image: {
  10205. source: "./media/characters/tene/smiling.svg",
  10206. extra: 1364/1071,
  10207. bottom: 0/1364
  10208. }
  10209. },
  10210. smug: {
  10211. height: math.unit(1.3, "feet"),
  10212. name: "Smug",
  10213. image: {
  10214. source: "./media/characters/tene/smug.svg",
  10215. extra: 1323/1082,
  10216. bottom: 0/1323
  10217. }
  10218. },
  10219. feral: {
  10220. height: math.unit(3.9, "feet"),
  10221. weight: math.unit(250, "lb"),
  10222. name: "Feral",
  10223. image: {
  10224. source: "./media/characters/tene/feral.svg",
  10225. extra: 717 / 458,
  10226. bottom: 0.179
  10227. }
  10228. },
  10229. },
  10230. [
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(6, "feet")
  10234. },
  10235. {
  10236. name: "Macro",
  10237. height: math.unit(300, "feet"),
  10238. default: true
  10239. },
  10240. {
  10241. name: "Megamacro",
  10242. height: math.unit(5, "miles")
  10243. },
  10244. ]
  10245. ))
  10246. characterMakers.push(() => makeCharacter(
  10247. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10248. {
  10249. side: {
  10250. height: math.unit(6, "feet"),
  10251. name: "Side",
  10252. image: {
  10253. source: "./media/characters/evander/side.svg",
  10254. extra: 877 / 477
  10255. }
  10256. },
  10257. },
  10258. [
  10259. {
  10260. name: "Normal",
  10261. height: math.unit(0.83, "meters"),
  10262. default: true
  10263. },
  10264. ]
  10265. ))
  10266. characterMakers.push(() => makeCharacter(
  10267. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10268. {
  10269. front: {
  10270. height: math.unit(12, "feet"),
  10271. weight: math.unit(1000, "lb"),
  10272. name: "Front",
  10273. image: {
  10274. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10275. extra: 1762 / 1611
  10276. }
  10277. },
  10278. back: {
  10279. height: math.unit(12, "feet"),
  10280. weight: math.unit(1000, "lb"),
  10281. name: "Back",
  10282. image: {
  10283. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10284. extra: 1762 / 1611
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Normal",
  10291. height: math.unit(12, "feet"),
  10292. default: true
  10293. },
  10294. {
  10295. name: "Kaiju",
  10296. height: math.unit(150, "feet")
  10297. },
  10298. ]
  10299. ))
  10300. characterMakers.push(() => makeCharacter(
  10301. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10302. {
  10303. front: {
  10304. height: math.unit(6, "feet"),
  10305. weight: math.unit(150, "lb"),
  10306. name: "Front",
  10307. image: {
  10308. source: "./media/characters/zero-alurus/front.svg"
  10309. }
  10310. },
  10311. back: {
  10312. height: math.unit(6, "feet"),
  10313. weight: math.unit(150, "lb"),
  10314. name: "Back",
  10315. image: {
  10316. source: "./media/characters/zero-alurus/back.svg"
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Normal",
  10323. height: math.unit(5 + 10 / 12, "feet")
  10324. },
  10325. {
  10326. name: "Macro",
  10327. height: math.unit(60, "feet"),
  10328. default: true
  10329. },
  10330. {
  10331. name: "Macro+",
  10332. height: math.unit(450, "feet")
  10333. },
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10338. {
  10339. front: {
  10340. height: math.unit(6, "feet"),
  10341. weight: math.unit(200, "lb"),
  10342. name: "Front",
  10343. image: {
  10344. source: "./media/characters/mega-shi/front.svg",
  10345. extra: 1279 / 1250,
  10346. bottom: 0.02
  10347. }
  10348. },
  10349. back: {
  10350. height: math.unit(6, "feet"),
  10351. weight: math.unit(200, "lb"),
  10352. name: "Back",
  10353. image: {
  10354. source: "./media/characters/mega-shi/back.svg",
  10355. extra: 1279 / 1250,
  10356. bottom: 0.02
  10357. }
  10358. },
  10359. },
  10360. [
  10361. {
  10362. name: "Micro",
  10363. height: math.unit(16 + 6 / 12, "feet")
  10364. },
  10365. {
  10366. name: "Third Dimension",
  10367. height: math.unit(40, "meters")
  10368. },
  10369. {
  10370. name: "Normal",
  10371. height: math.unit(660, "feet"),
  10372. default: true
  10373. },
  10374. {
  10375. name: "Megamacro",
  10376. height: math.unit(10, "miles")
  10377. },
  10378. {
  10379. name: "Planetary Launch",
  10380. height: math.unit(500, "miles")
  10381. },
  10382. {
  10383. name: "Interstellar",
  10384. height: math.unit(1e9, "miles")
  10385. },
  10386. {
  10387. name: "Leaving the Universe",
  10388. height: math.unit(1, "gigaparsec")
  10389. },
  10390. {
  10391. name: "Travelling Universes",
  10392. height: math.unit(30e15, "parsecs")
  10393. },
  10394. ]
  10395. ))
  10396. characterMakers.push(() => makeCharacter(
  10397. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10398. {
  10399. front: {
  10400. height: math.unit(5 + 4/12, "feet"),
  10401. weight: math.unit(120, "lb"),
  10402. name: "Front",
  10403. image: {
  10404. source: "./media/characters/odyssey/front.svg",
  10405. extra: 1747/1571,
  10406. bottom: 47/1794
  10407. }
  10408. },
  10409. side: {
  10410. height: math.unit(5.1, "feet"),
  10411. weight: math.unit(120, "lb"),
  10412. name: "Side",
  10413. image: {
  10414. source: "./media/characters/odyssey/side.svg",
  10415. extra: 1847/1619,
  10416. bottom: 47/1894
  10417. }
  10418. },
  10419. lounging: {
  10420. height: math.unit(1.464, "feet"),
  10421. weight: math.unit(120, "lb"),
  10422. name: "Lounging",
  10423. image: {
  10424. source: "./media/characters/odyssey/lounging.svg",
  10425. extra: 1235/837,
  10426. bottom: 551/1786
  10427. }
  10428. },
  10429. },
  10430. [
  10431. {
  10432. name: "Normal",
  10433. height: math.unit(5 + 4 / 12, "feet")
  10434. },
  10435. {
  10436. name: "Macro",
  10437. height: math.unit(1, "km")
  10438. },
  10439. {
  10440. name: "Megamacro",
  10441. height: math.unit(3000, "km")
  10442. },
  10443. {
  10444. name: "Gigamacro",
  10445. height: math.unit(1, "AU"),
  10446. default: true
  10447. },
  10448. {
  10449. name: "Omniversal",
  10450. height: math.unit(100e14, "lightyears")
  10451. },
  10452. ]
  10453. ))
  10454. characterMakers.push(() => makeCharacter(
  10455. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10456. {
  10457. front: {
  10458. height: math.unit(6, "feet"),
  10459. weight: math.unit(300, "lb"),
  10460. name: "Front",
  10461. image: {
  10462. source: "./media/characters/mekuto/front.svg",
  10463. extra: 921 / 832,
  10464. bottom: 0.03
  10465. }
  10466. },
  10467. hand: {
  10468. height: math.unit(6 / 10.24, "feet"),
  10469. name: "Hand",
  10470. image: {
  10471. source: "./media/characters/mekuto/hand.svg"
  10472. }
  10473. },
  10474. foot: {
  10475. height: math.unit(6 / 5.05, "feet"),
  10476. name: "Foot",
  10477. image: {
  10478. source: "./media/characters/mekuto/foot.svg"
  10479. }
  10480. },
  10481. },
  10482. [
  10483. {
  10484. name: "Minimicro",
  10485. height: math.unit(0.2, "inches")
  10486. },
  10487. {
  10488. name: "Micro",
  10489. height: math.unit(1.5, "inches")
  10490. },
  10491. {
  10492. name: "Normal",
  10493. height: math.unit(5 + 11 / 12, "feet"),
  10494. default: true
  10495. },
  10496. {
  10497. name: "Minimacro",
  10498. height: math.unit(17 + 9 / 12, "feet")
  10499. },
  10500. {
  10501. name: "Macro",
  10502. height: math.unit(177.5, "feet")
  10503. },
  10504. {
  10505. name: "Megamacro",
  10506. height: math.unit(152, "miles")
  10507. },
  10508. ]
  10509. ))
  10510. characterMakers.push(() => makeCharacter(
  10511. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10512. {
  10513. front: {
  10514. height: math.unit(6.5, "inches"),
  10515. weight: math.unit(13, "oz"),
  10516. name: "Front",
  10517. image: {
  10518. source: "./media/characters/dafydd-tomos/front.svg",
  10519. extra: 2990 / 2603,
  10520. bottom: 0.03
  10521. }
  10522. },
  10523. },
  10524. [
  10525. {
  10526. name: "Micro",
  10527. height: math.unit(6.5, "inches"),
  10528. default: true
  10529. },
  10530. ]
  10531. ))
  10532. characterMakers.push(() => makeCharacter(
  10533. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10534. {
  10535. front: {
  10536. height: math.unit(6, "feet"),
  10537. weight: math.unit(150, "lb"),
  10538. name: "Front",
  10539. image: {
  10540. source: "./media/characters/splinter/front.svg",
  10541. extra: 2990 / 2882,
  10542. bottom: 0.04
  10543. }
  10544. },
  10545. back: {
  10546. height: math.unit(6, "feet"),
  10547. weight: math.unit(150, "lb"),
  10548. name: "Back",
  10549. image: {
  10550. source: "./media/characters/splinter/back.svg",
  10551. extra: 2990 / 2882,
  10552. bottom: 0.04
  10553. }
  10554. },
  10555. },
  10556. [
  10557. {
  10558. name: "Normal",
  10559. height: math.unit(6, "feet")
  10560. },
  10561. {
  10562. name: "Macro",
  10563. height: math.unit(230, "meters"),
  10564. default: true
  10565. },
  10566. ]
  10567. ))
  10568. characterMakers.push(() => makeCharacter(
  10569. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10570. {
  10571. front: {
  10572. height: math.unit(4 + 10 / 12, "feet"),
  10573. weight: math.unit(480, "lb"),
  10574. name: "Front",
  10575. image: {
  10576. source: "./media/characters/snow-gabumon/front.svg",
  10577. extra: 1140 / 963,
  10578. bottom: 0.058
  10579. }
  10580. },
  10581. back: {
  10582. height: math.unit(4 + 10 / 12, "feet"),
  10583. weight: math.unit(480, "lb"),
  10584. name: "Back",
  10585. image: {
  10586. source: "./media/characters/snow-gabumon/back.svg",
  10587. extra: 1115 / 962,
  10588. bottom: 0.041
  10589. }
  10590. },
  10591. frontUndresed: {
  10592. height: math.unit(4 + 10 / 12, "feet"),
  10593. weight: math.unit(480, "lb"),
  10594. name: "Front (Undressed)",
  10595. image: {
  10596. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10597. extra: 1061 / 960,
  10598. bottom: 0.045
  10599. }
  10600. },
  10601. },
  10602. [
  10603. {
  10604. name: "Micro",
  10605. height: math.unit(1, "inch")
  10606. },
  10607. {
  10608. name: "Normal",
  10609. height: math.unit(4 + 10 / 12, "feet"),
  10610. default: true
  10611. },
  10612. {
  10613. name: "Macro",
  10614. height: math.unit(200, "feet")
  10615. },
  10616. {
  10617. name: "Megamacro",
  10618. height: math.unit(120, "miles")
  10619. },
  10620. {
  10621. name: "Gigamacro",
  10622. height: math.unit(9800, "miles")
  10623. },
  10624. ]
  10625. ))
  10626. characterMakers.push(() => makeCharacter(
  10627. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10628. {
  10629. front: {
  10630. height: math.unit(1.7, "meters"),
  10631. weight: math.unit(140, "lb"),
  10632. name: "Front",
  10633. image: {
  10634. source: "./media/characters/moody/front.svg",
  10635. extra: 3226 / 3007,
  10636. bottom: 0.087
  10637. }
  10638. },
  10639. },
  10640. [
  10641. {
  10642. name: "Micro",
  10643. height: math.unit(1, "mm")
  10644. },
  10645. {
  10646. name: "Normal",
  10647. height: math.unit(1.7, "meters"),
  10648. default: true
  10649. },
  10650. {
  10651. name: "Macro",
  10652. height: math.unit(80, "meters")
  10653. },
  10654. {
  10655. name: "Macro+",
  10656. height: math.unit(500, "meters")
  10657. },
  10658. ]
  10659. ))
  10660. characterMakers.push(() => makeCharacter(
  10661. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10662. {
  10663. front: {
  10664. height: math.unit(6, "feet"),
  10665. weight: math.unit(150, "lb"),
  10666. name: "Front",
  10667. image: {
  10668. source: "./media/characters/zyas/front.svg",
  10669. extra: 1180 / 1120,
  10670. bottom: 0.045
  10671. }
  10672. },
  10673. },
  10674. [
  10675. {
  10676. name: "Normal",
  10677. height: math.unit(10, "feet"),
  10678. default: true
  10679. },
  10680. {
  10681. name: "Macro",
  10682. height: math.unit(500, "feet")
  10683. },
  10684. {
  10685. name: "Megamacro",
  10686. height: math.unit(5, "miles")
  10687. },
  10688. {
  10689. name: "Teramacro",
  10690. height: math.unit(150000, "miles")
  10691. },
  10692. ]
  10693. ))
  10694. characterMakers.push(() => makeCharacter(
  10695. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10696. {
  10697. front: {
  10698. height: math.unit(6, "feet"),
  10699. weight: math.unit(150, "lb"),
  10700. name: "Front",
  10701. image: {
  10702. source: "./media/characters/cuon/front.svg",
  10703. extra: 1390 / 1320,
  10704. bottom: 0.008
  10705. }
  10706. },
  10707. },
  10708. [
  10709. {
  10710. name: "Micro",
  10711. height: math.unit(3, "inches")
  10712. },
  10713. {
  10714. name: "Normal",
  10715. height: math.unit(18 + 9 / 12, "feet"),
  10716. default: true
  10717. },
  10718. {
  10719. name: "Macro",
  10720. height: math.unit(360, "feet")
  10721. },
  10722. {
  10723. name: "Megamacro",
  10724. height: math.unit(360, "miles")
  10725. },
  10726. ]
  10727. ))
  10728. characterMakers.push(() => makeCharacter(
  10729. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10730. {
  10731. front: {
  10732. height: math.unit(2.4, "meters"),
  10733. weight: math.unit(70, "kg"),
  10734. name: "Front",
  10735. image: {
  10736. source: "./media/characters/nyanuxk/front.svg",
  10737. extra: 1172 / 1084,
  10738. bottom: 0.065
  10739. }
  10740. },
  10741. side: {
  10742. height: math.unit(2.4, "meters"),
  10743. weight: math.unit(70, "kg"),
  10744. name: "Side",
  10745. image: {
  10746. source: "./media/characters/nyanuxk/side.svg",
  10747. extra: 1190 / 1132,
  10748. bottom: 0.007
  10749. }
  10750. },
  10751. back: {
  10752. height: math.unit(2.4, "meters"),
  10753. weight: math.unit(70, "kg"),
  10754. name: "Back",
  10755. image: {
  10756. source: "./media/characters/nyanuxk/back.svg",
  10757. extra: 1200 / 1141,
  10758. bottom: 0.015
  10759. }
  10760. },
  10761. foot: {
  10762. height: math.unit(0.52, "meters"),
  10763. name: "Foot",
  10764. image: {
  10765. source: "./media/characters/nyanuxk/foot.svg"
  10766. }
  10767. },
  10768. },
  10769. [
  10770. {
  10771. name: "Micro",
  10772. height: math.unit(2, "cm")
  10773. },
  10774. {
  10775. name: "Normal",
  10776. height: math.unit(2.4, "meters"),
  10777. default: true
  10778. },
  10779. {
  10780. name: "Smaller Macro",
  10781. height: math.unit(120, "meters")
  10782. },
  10783. {
  10784. name: "Bigger Macro",
  10785. height: math.unit(1.2, "km")
  10786. },
  10787. {
  10788. name: "Megamacro",
  10789. height: math.unit(15, "kilometers")
  10790. },
  10791. {
  10792. name: "Gigamacro",
  10793. height: math.unit(2000, "km")
  10794. },
  10795. {
  10796. name: "Teramacro",
  10797. height: math.unit(500000, "km")
  10798. },
  10799. ]
  10800. ))
  10801. characterMakers.push(() => makeCharacter(
  10802. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10803. {
  10804. side: {
  10805. height: math.unit(6, "feet"),
  10806. name: "Side",
  10807. image: {
  10808. source: "./media/characters/ailbhe/side.svg",
  10809. extra: 757 / 464,
  10810. bottom: 0.041
  10811. }
  10812. },
  10813. },
  10814. [
  10815. {
  10816. name: "Normal",
  10817. height: math.unit(1.07, "meters"),
  10818. default: true
  10819. },
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10824. {
  10825. front: {
  10826. height: math.unit(6, "feet"),
  10827. weight: math.unit(120, "kg"),
  10828. name: "Front",
  10829. image: {
  10830. source: "./media/characters/zevulfius/front.svg",
  10831. extra: 965 / 903
  10832. }
  10833. },
  10834. side: {
  10835. height: math.unit(6, "feet"),
  10836. weight: math.unit(120, "kg"),
  10837. name: "Side",
  10838. image: {
  10839. source: "./media/characters/zevulfius/side.svg",
  10840. extra: 939 / 900
  10841. }
  10842. },
  10843. back: {
  10844. height: math.unit(6, "feet"),
  10845. weight: math.unit(120, "kg"),
  10846. name: "Back",
  10847. image: {
  10848. source: "./media/characters/zevulfius/back.svg",
  10849. extra: 918 / 854,
  10850. bottom: 0.005
  10851. }
  10852. },
  10853. foot: {
  10854. height: math.unit(6 / 3.72, "feet"),
  10855. name: "Foot",
  10856. image: {
  10857. source: "./media/characters/zevulfius/foot.svg"
  10858. }
  10859. },
  10860. },
  10861. [
  10862. {
  10863. name: "Macro",
  10864. height: math.unit(750, "meters")
  10865. },
  10866. {
  10867. name: "Megamacro",
  10868. height: math.unit(20, "km"),
  10869. default: true
  10870. },
  10871. {
  10872. name: "Gigamacro",
  10873. height: math.unit(2000, "km")
  10874. },
  10875. {
  10876. name: "Teramacro",
  10877. height: math.unit(250000, "km")
  10878. },
  10879. ]
  10880. ))
  10881. characterMakers.push(() => makeCharacter(
  10882. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10883. {
  10884. front: {
  10885. height: math.unit(100, "feet"),
  10886. weight: math.unit(350, "kg"),
  10887. name: "Front",
  10888. image: {
  10889. source: "./media/characters/rikes/front.svg",
  10890. extra: 1565 / 1483,
  10891. bottom: 0.017
  10892. }
  10893. },
  10894. },
  10895. [
  10896. {
  10897. name: "Macro",
  10898. height: math.unit(100, "feet"),
  10899. default: true
  10900. },
  10901. ]
  10902. ))
  10903. characterMakers.push(() => makeCharacter(
  10904. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10905. {
  10906. front: {
  10907. height: math.unit(8, "feet"),
  10908. weight: math.unit(356, "lb"),
  10909. name: "Front",
  10910. image: {
  10911. source: "./media/characters/adam-silver-mane/front.svg",
  10912. extra: 1036/937,
  10913. bottom: 63/1099
  10914. }
  10915. },
  10916. side: {
  10917. height: math.unit(8, "feet"),
  10918. weight: math.unit(356, "lb"),
  10919. name: "Side",
  10920. image: {
  10921. source: "./media/characters/adam-silver-mane/side.svg",
  10922. extra: 997/901,
  10923. bottom: 59/1056
  10924. }
  10925. },
  10926. frontNsfw: {
  10927. height: math.unit(8, "feet"),
  10928. weight: math.unit(356, "lb"),
  10929. name: "Front (NSFW)",
  10930. image: {
  10931. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10932. extra: 1036/937,
  10933. bottom: 63/1099
  10934. }
  10935. },
  10936. sideNsfw: {
  10937. height: math.unit(8, "feet"),
  10938. weight: math.unit(356, "lb"),
  10939. name: "Side (NSFW)",
  10940. image: {
  10941. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10942. extra: 997/901,
  10943. bottom: 59/1056
  10944. }
  10945. },
  10946. dick: {
  10947. height: math.unit(2.1, "feet"),
  10948. name: "Dick",
  10949. image: {
  10950. source: "./media/characters/adam-silver-mane/dick.svg"
  10951. }
  10952. },
  10953. taur: {
  10954. height: math.unit(16, "feet"),
  10955. weight: math.unit(1500, "kg"),
  10956. name: "Taur",
  10957. image: {
  10958. source: "./media/characters/adam-silver-mane/taur.svg",
  10959. extra: 1713 / 1571,
  10960. bottom: 0.01
  10961. }
  10962. },
  10963. },
  10964. [
  10965. {
  10966. name: "Normal",
  10967. height: math.unit(8, "feet")
  10968. },
  10969. {
  10970. name: "Minimacro",
  10971. height: math.unit(80, "feet")
  10972. },
  10973. {
  10974. name: "MDA",
  10975. height: math.unit(80, "meters")
  10976. },
  10977. {
  10978. name: "Macro",
  10979. height: math.unit(800, "feet"),
  10980. default: true
  10981. },
  10982. {
  10983. name: "Megamacro",
  10984. height: math.unit(8000, "feet")
  10985. },
  10986. {
  10987. name: "Gigamacro",
  10988. height: math.unit(800, "miles")
  10989. },
  10990. {
  10991. name: "Teramacro",
  10992. height: math.unit(80000, "miles")
  10993. },
  10994. {
  10995. name: "Celestial",
  10996. height: math.unit(8e6, "miles")
  10997. },
  10998. {
  10999. name: "Star Dragon",
  11000. height: math.unit(800000, "parsecs")
  11001. },
  11002. {
  11003. name: "Godly",
  11004. height: math.unit(800, "teraparsecs")
  11005. },
  11006. ]
  11007. ))
  11008. characterMakers.push(() => makeCharacter(
  11009. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11010. {
  11011. front: {
  11012. height: math.unit(6, "feet"),
  11013. weight: math.unit(150, "lb"),
  11014. name: "Front",
  11015. image: {
  11016. source: "./media/characters/ky'owin/front.svg",
  11017. extra: 3888 / 3068,
  11018. bottom: 0.015
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Normal",
  11025. height: math.unit(6 + 8 / 12, "feet")
  11026. },
  11027. {
  11028. name: "Large",
  11029. height: math.unit(68, "feet")
  11030. },
  11031. {
  11032. name: "Macro",
  11033. height: math.unit(132, "feet")
  11034. },
  11035. {
  11036. name: "Macro+",
  11037. height: math.unit(340, "feet")
  11038. },
  11039. {
  11040. name: "Macro++",
  11041. height: math.unit(680, "feet"),
  11042. default: true
  11043. },
  11044. {
  11045. name: "Megamacro",
  11046. height: math.unit(1, "mile")
  11047. },
  11048. {
  11049. name: "Megamacro+",
  11050. height: math.unit(10, "miles")
  11051. },
  11052. ]
  11053. ))
  11054. characterMakers.push(() => makeCharacter(
  11055. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11056. {
  11057. front: {
  11058. height: math.unit(4, "feet"),
  11059. weight: math.unit(50, "lb"),
  11060. name: "Front",
  11061. image: {
  11062. source: "./media/characters/mal/front.svg",
  11063. extra: 785 / 724,
  11064. bottom: 0.07
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Micro",
  11071. height: math.unit(4, "inches")
  11072. },
  11073. {
  11074. name: "Normal",
  11075. height: math.unit(4, "feet"),
  11076. default: true
  11077. },
  11078. {
  11079. name: "Macro",
  11080. height: math.unit(200, "feet")
  11081. },
  11082. ]
  11083. ))
  11084. characterMakers.push(() => makeCharacter(
  11085. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11086. {
  11087. front: {
  11088. height: math.unit(6, "feet"),
  11089. weight: math.unit(150, "lb"),
  11090. name: "Front",
  11091. image: {
  11092. source: "./media/characters/jordan-deware/front.svg",
  11093. extra: 1191 / 1012
  11094. }
  11095. },
  11096. },
  11097. [
  11098. {
  11099. name: "Nano",
  11100. height: math.unit(0.01, "mm")
  11101. },
  11102. {
  11103. name: "Minimicro",
  11104. height: math.unit(1, "mm")
  11105. },
  11106. {
  11107. name: "Micro",
  11108. height: math.unit(0.5, "inches")
  11109. },
  11110. {
  11111. name: "Normal",
  11112. height: math.unit(4, "feet"),
  11113. default: true
  11114. },
  11115. {
  11116. name: "Minimacro",
  11117. height: math.unit(40, "meters")
  11118. },
  11119. {
  11120. name: "Small Macro",
  11121. height: math.unit(400, "meters")
  11122. },
  11123. {
  11124. name: "Macro",
  11125. height: math.unit(4, "miles")
  11126. },
  11127. {
  11128. name: "Megamacro",
  11129. height: math.unit(40, "miles")
  11130. },
  11131. {
  11132. name: "Megamacro+",
  11133. height: math.unit(400, "miles")
  11134. },
  11135. {
  11136. name: "Gigamacro",
  11137. height: math.unit(400000, "miles")
  11138. },
  11139. ]
  11140. ))
  11141. characterMakers.push(() => makeCharacter(
  11142. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11143. {
  11144. side: {
  11145. height: math.unit(6, "feet"),
  11146. weight: math.unit(150, "lb"),
  11147. name: "Side",
  11148. image: {
  11149. source: "./media/characters/kimiko/side.svg",
  11150. extra: 600 / 358
  11151. }
  11152. },
  11153. },
  11154. [
  11155. {
  11156. name: "Normal",
  11157. height: math.unit(15, "feet"),
  11158. default: true
  11159. },
  11160. {
  11161. name: "Macro",
  11162. height: math.unit(220, "feet")
  11163. },
  11164. {
  11165. name: "Macro+",
  11166. height: math.unit(1450, "feet")
  11167. },
  11168. {
  11169. name: "Megamacro",
  11170. height: math.unit(11500, "feet")
  11171. },
  11172. {
  11173. name: "Gigamacro",
  11174. height: math.unit(9500, "miles")
  11175. },
  11176. {
  11177. name: "Teramacro",
  11178. height: math.unit(2208005005, "miles")
  11179. },
  11180. {
  11181. name: "Examacro",
  11182. height: math.unit(2750, "parsecs")
  11183. },
  11184. {
  11185. name: "Zettamacro",
  11186. height: math.unit(101500, "parsecs")
  11187. },
  11188. ]
  11189. ))
  11190. characterMakers.push(() => makeCharacter(
  11191. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11192. {
  11193. front: {
  11194. height: math.unit(6, "feet"),
  11195. weight: math.unit(70, "kg"),
  11196. name: "Front",
  11197. image: {
  11198. source: "./media/characters/andrew-sleepy/front.svg"
  11199. }
  11200. },
  11201. side: {
  11202. height: math.unit(6, "feet"),
  11203. weight: math.unit(70, "kg"),
  11204. name: "Side",
  11205. image: {
  11206. source: "./media/characters/andrew-sleepy/side.svg"
  11207. }
  11208. },
  11209. },
  11210. [
  11211. {
  11212. name: "Micro",
  11213. height: math.unit(1, "mm"),
  11214. default: true
  11215. },
  11216. ]
  11217. ))
  11218. characterMakers.push(() => makeCharacter(
  11219. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11220. {
  11221. front: {
  11222. height: math.unit(6, "feet"),
  11223. weight: math.unit(150, "lb"),
  11224. name: "Front",
  11225. image: {
  11226. source: "./media/characters/judio/front.svg",
  11227. extra: 1258 / 1110
  11228. }
  11229. },
  11230. },
  11231. [
  11232. {
  11233. name: "Normal",
  11234. height: math.unit(5 + 6 / 12, "feet")
  11235. },
  11236. {
  11237. name: "Macro",
  11238. height: math.unit(1000, "feet"),
  11239. default: true
  11240. },
  11241. {
  11242. name: "Megamacro",
  11243. height: math.unit(10, "miles")
  11244. },
  11245. ]
  11246. ))
  11247. characterMakers.push(() => makeCharacter(
  11248. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11249. {
  11250. frontDressed: {
  11251. height: math.unit(6, "feet"),
  11252. weight: math.unit(68, "kg"),
  11253. name: "Front (Dressed)",
  11254. image: {
  11255. source: "./media/characters/nomaxice/front-dressed.svg",
  11256. extra: 1137/824,
  11257. bottom: 74/1211
  11258. }
  11259. },
  11260. frontShorts: {
  11261. height: math.unit(6, "feet"),
  11262. weight: math.unit(68, "kg"),
  11263. name: "Front (Shorts)",
  11264. image: {
  11265. source: "./media/characters/nomaxice/front-shorts.svg",
  11266. extra: 1137/824,
  11267. bottom: 74/1211
  11268. }
  11269. },
  11270. back: {
  11271. height: math.unit(6, "feet"),
  11272. weight: math.unit(68, "kg"),
  11273. name: "Back",
  11274. image: {
  11275. source: "./media/characters/nomaxice/back.svg",
  11276. extra: 822/786,
  11277. bottom: 39/861
  11278. }
  11279. },
  11280. hand: {
  11281. height: math.unit(0.565, "feet"),
  11282. name: "Hand",
  11283. image: {
  11284. source: "./media/characters/nomaxice/hand.svg"
  11285. }
  11286. },
  11287. foot: {
  11288. height: math.unit(1, "feet"),
  11289. name: "Foot",
  11290. image: {
  11291. source: "./media/characters/nomaxice/foot.svg"
  11292. }
  11293. },
  11294. },
  11295. [
  11296. {
  11297. name: "Micro",
  11298. height: math.unit(8, "cm")
  11299. },
  11300. {
  11301. name: "Norm",
  11302. height: math.unit(1.82, "m")
  11303. },
  11304. {
  11305. name: "Norm+",
  11306. height: math.unit(8.8, "feet"),
  11307. default: true
  11308. },
  11309. {
  11310. name: "Big",
  11311. height: math.unit(8, "meters")
  11312. },
  11313. {
  11314. name: "Macro",
  11315. height: math.unit(18, "meters")
  11316. },
  11317. {
  11318. name: "Macro+",
  11319. height: math.unit(88, "meters")
  11320. },
  11321. ]
  11322. ))
  11323. characterMakers.push(() => makeCharacter(
  11324. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11325. {
  11326. front: {
  11327. height: math.unit(12, "feet"),
  11328. weight: math.unit(1.5, "tons"),
  11329. name: "Front",
  11330. image: {
  11331. source: "./media/characters/dydros/front.svg",
  11332. extra: 863 / 800,
  11333. bottom: 0.015
  11334. }
  11335. },
  11336. back: {
  11337. height: math.unit(12, "feet"),
  11338. weight: math.unit(1.5, "tons"),
  11339. name: "Back",
  11340. image: {
  11341. source: "./media/characters/dydros/back.svg",
  11342. extra: 900 / 843,
  11343. bottom: 0.005
  11344. }
  11345. },
  11346. },
  11347. [
  11348. {
  11349. name: "Normal",
  11350. height: math.unit(12, "feet"),
  11351. default: true
  11352. },
  11353. ]
  11354. ))
  11355. characterMakers.push(() => makeCharacter(
  11356. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11357. {
  11358. front: {
  11359. height: math.unit(6, "feet"),
  11360. weight: math.unit(100, "kg"),
  11361. name: "Front",
  11362. image: {
  11363. source: "./media/characters/riggi/front.svg",
  11364. extra: 5787 / 5303
  11365. }
  11366. },
  11367. hyper: {
  11368. height: math.unit(6 * 5 / 3, "feet"),
  11369. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11370. name: "Hyper",
  11371. image: {
  11372. source: "./media/characters/riggi/hyper.svg",
  11373. extra: 3595 / 3485
  11374. }
  11375. },
  11376. },
  11377. [
  11378. {
  11379. name: "Small Macro",
  11380. height: math.unit(50, "feet")
  11381. },
  11382. {
  11383. name: "Default",
  11384. height: math.unit(200, "feet"),
  11385. default: true
  11386. },
  11387. {
  11388. name: "Loom",
  11389. height: math.unit(10000, "feet")
  11390. },
  11391. {
  11392. name: "Cruising Altitude",
  11393. height: math.unit(30000, "feet")
  11394. },
  11395. {
  11396. name: "Megamacro",
  11397. height: math.unit(100, "miles")
  11398. },
  11399. {
  11400. name: "Continent Sized",
  11401. height: math.unit(2800, "miles")
  11402. },
  11403. {
  11404. name: "Earth Sized",
  11405. height: math.unit(8000, "miles")
  11406. },
  11407. ]
  11408. ))
  11409. characterMakers.push(() => makeCharacter(
  11410. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11411. {
  11412. front: {
  11413. height: math.unit(6, "feet"),
  11414. weight: math.unit(250, "lb"),
  11415. name: "Front",
  11416. image: {
  11417. source: "./media/characters/alexi/front.svg",
  11418. extra: 3483 / 3291,
  11419. bottom: 0.04
  11420. }
  11421. },
  11422. back: {
  11423. height: math.unit(6, "feet"),
  11424. weight: math.unit(250, "lb"),
  11425. name: "Back",
  11426. image: {
  11427. source: "./media/characters/alexi/back.svg",
  11428. extra: 3533 / 3356,
  11429. bottom: 0.021
  11430. }
  11431. },
  11432. frontTransforming: {
  11433. height: math.unit(8.58, "feet"),
  11434. weight: math.unit(1300, "lb"),
  11435. name: "Transforming",
  11436. image: {
  11437. source: "./media/characters/alexi/front-transforming.svg",
  11438. extra: 437 / 409,
  11439. bottom: 19 / 458.66
  11440. }
  11441. },
  11442. frontTransformed: {
  11443. height: math.unit(12.5, "feet"),
  11444. weight: math.unit(4000, "lb"),
  11445. name: "Transformed",
  11446. image: {
  11447. source: "./media/characters/alexi/front-transformed.svg",
  11448. extra: 639 / 614,
  11449. bottom: 30.55 / 671
  11450. }
  11451. },
  11452. },
  11453. [
  11454. {
  11455. name: "Normal",
  11456. height: math.unit(14, "feet"),
  11457. default: true
  11458. },
  11459. {
  11460. name: "Minimacro",
  11461. height: math.unit(30, "meters")
  11462. },
  11463. {
  11464. name: "Macro",
  11465. height: math.unit(500, "meters")
  11466. },
  11467. {
  11468. name: "Megamacro",
  11469. height: math.unit(9000, "km")
  11470. },
  11471. {
  11472. name: "Teramacro",
  11473. height: math.unit(384000, "km")
  11474. },
  11475. ]
  11476. ))
  11477. characterMakers.push(() => makeCharacter(
  11478. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11479. {
  11480. front: {
  11481. height: math.unit(6, "feet"),
  11482. weight: math.unit(150, "lb"),
  11483. name: "Front",
  11484. image: {
  11485. source: "./media/characters/kayroo/front.svg",
  11486. extra: 1153 / 1038,
  11487. bottom: 0.06
  11488. }
  11489. },
  11490. foot: {
  11491. height: math.unit(6, "feet"),
  11492. weight: math.unit(150, "lb"),
  11493. name: "Foot",
  11494. image: {
  11495. source: "./media/characters/kayroo/foot.svg"
  11496. }
  11497. },
  11498. },
  11499. [
  11500. {
  11501. name: "Normal",
  11502. height: math.unit(8, "feet"),
  11503. default: true
  11504. },
  11505. {
  11506. name: "Minimacro",
  11507. height: math.unit(250, "feet")
  11508. },
  11509. {
  11510. name: "Macro",
  11511. height: math.unit(2800, "feet")
  11512. },
  11513. {
  11514. name: "Megamacro",
  11515. height: math.unit(5200, "feet")
  11516. },
  11517. {
  11518. name: "Gigamacro",
  11519. height: math.unit(27000, "feet")
  11520. },
  11521. {
  11522. name: "Omega",
  11523. height: math.unit(45000, "feet")
  11524. },
  11525. ]
  11526. ))
  11527. characterMakers.push(() => makeCharacter(
  11528. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11529. {
  11530. front: {
  11531. height: math.unit(18, "feet"),
  11532. weight: math.unit(5800, "lb"),
  11533. name: "Front",
  11534. image: {
  11535. source: "./media/characters/rhys/front.svg",
  11536. extra: 3386 / 3090,
  11537. bottom: 0.07
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Normal",
  11544. height: math.unit(18, "feet"),
  11545. default: true
  11546. },
  11547. {
  11548. name: "Working Size",
  11549. height: math.unit(200, "feet")
  11550. },
  11551. {
  11552. name: "Demolition Size",
  11553. height: math.unit(2000, "feet")
  11554. },
  11555. {
  11556. name: "Maximum Licensed Size",
  11557. height: math.unit(5, "miles")
  11558. },
  11559. {
  11560. name: "Maximum Observed Size",
  11561. height: math.unit(10, "yottameters")
  11562. },
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11567. {
  11568. front: {
  11569. height: math.unit(6, "feet"),
  11570. weight: math.unit(250, "lb"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/toto/front.svg",
  11574. extra: 527 / 479,
  11575. bottom: 0.05
  11576. }
  11577. },
  11578. },
  11579. [
  11580. {
  11581. name: "Micro",
  11582. height: math.unit(3, "feet")
  11583. },
  11584. {
  11585. name: "Normal",
  11586. height: math.unit(10, "feet")
  11587. },
  11588. {
  11589. name: "Macro",
  11590. height: math.unit(150, "feet"),
  11591. default: true
  11592. },
  11593. {
  11594. name: "Megamacro",
  11595. height: math.unit(1200, "feet")
  11596. },
  11597. ]
  11598. ))
  11599. characterMakers.push(() => makeCharacter(
  11600. { name: "King", species: ["lion"], tags: ["anthro"] },
  11601. {
  11602. back: {
  11603. height: math.unit(6, "feet"),
  11604. weight: math.unit(150, "lb"),
  11605. name: "Back",
  11606. image: {
  11607. source: "./media/characters/king/back.svg"
  11608. }
  11609. },
  11610. },
  11611. [
  11612. {
  11613. name: "Micro",
  11614. height: math.unit(2, "inches")
  11615. },
  11616. {
  11617. name: "Normal",
  11618. height: math.unit(8, "feet")
  11619. },
  11620. {
  11621. name: "Macro",
  11622. height: math.unit(200, "feet"),
  11623. default: true
  11624. },
  11625. {
  11626. name: "Megamacro",
  11627. height: math.unit(50, "miles")
  11628. },
  11629. ]
  11630. ))
  11631. characterMakers.push(() => makeCharacter(
  11632. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11633. {
  11634. front: {
  11635. height: math.unit(11, "feet"),
  11636. weight: math.unit(1400, "lb"),
  11637. name: "Front",
  11638. image: {
  11639. source: "./media/characters/cordite/front.svg",
  11640. extra: 1919/1827,
  11641. bottom: 40/1959
  11642. }
  11643. },
  11644. side: {
  11645. height: math.unit(11, "feet"),
  11646. weight: math.unit(1400, "lb"),
  11647. name: "Side",
  11648. image: {
  11649. source: "./media/characters/cordite/side.svg",
  11650. extra: 1908/1793,
  11651. bottom: 38/1946
  11652. }
  11653. },
  11654. back: {
  11655. height: math.unit(11, "feet"),
  11656. weight: math.unit(1400, "lb"),
  11657. name: "Back",
  11658. image: {
  11659. source: "./media/characters/cordite/back.svg",
  11660. extra: 1938/1837,
  11661. bottom: 10/1948
  11662. }
  11663. },
  11664. feral: {
  11665. height: math.unit(2, "feet"),
  11666. weight: math.unit(90, "lb"),
  11667. name: "Feral",
  11668. image: {
  11669. source: "./media/characters/cordite/feral.svg",
  11670. extra: 1260 / 755,
  11671. bottom: 0.05
  11672. }
  11673. },
  11674. },
  11675. [
  11676. {
  11677. name: "Normal",
  11678. height: math.unit(11, "feet"),
  11679. default: true
  11680. },
  11681. ]
  11682. ))
  11683. characterMakers.push(() => makeCharacter(
  11684. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11685. {
  11686. front: {
  11687. height: math.unit(6, "feet"),
  11688. weight: math.unit(150, "lb"),
  11689. name: "Front",
  11690. image: {
  11691. source: "./media/characters/pianostrong/front.svg",
  11692. extra: 6577 / 6254,
  11693. bottom: 0.02
  11694. }
  11695. },
  11696. side: {
  11697. height: math.unit(6, "feet"),
  11698. weight: math.unit(150, "lb"),
  11699. name: "Side",
  11700. image: {
  11701. source: "./media/characters/pianostrong/side.svg",
  11702. extra: 6106 / 5730
  11703. }
  11704. },
  11705. back: {
  11706. height: math.unit(6, "feet"),
  11707. weight: math.unit(150, "lb"),
  11708. name: "Back",
  11709. image: {
  11710. source: "./media/characters/pianostrong/back.svg",
  11711. extra: 6085 / 5733,
  11712. bottom: 0.01
  11713. }
  11714. },
  11715. },
  11716. [
  11717. {
  11718. name: "Macro",
  11719. height: math.unit(100, "feet")
  11720. },
  11721. {
  11722. name: "Macro+",
  11723. height: math.unit(300, "feet"),
  11724. default: true
  11725. },
  11726. {
  11727. name: "Macro++",
  11728. height: math.unit(1000, "feet")
  11729. },
  11730. ]
  11731. ))
  11732. characterMakers.push(() => makeCharacter(
  11733. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11734. {
  11735. front: {
  11736. height: math.unit(6, "feet"),
  11737. weight: math.unit(150, "lb"),
  11738. name: "Front",
  11739. image: {
  11740. source: "./media/characters/kona/front.svg",
  11741. extra: 2960 / 2629,
  11742. bottom: 0.005
  11743. }
  11744. },
  11745. },
  11746. [
  11747. {
  11748. name: "Normal",
  11749. height: math.unit(11 + 8 / 12, "feet")
  11750. },
  11751. {
  11752. name: "Macro",
  11753. height: math.unit(850, "feet"),
  11754. default: true
  11755. },
  11756. {
  11757. name: "Macro+",
  11758. height: math.unit(1.5, "km"),
  11759. default: true
  11760. },
  11761. {
  11762. name: "Megamacro",
  11763. height: math.unit(80, "miles")
  11764. },
  11765. {
  11766. name: "Gigamacro",
  11767. height: math.unit(3500, "miles")
  11768. },
  11769. ]
  11770. ))
  11771. characterMakers.push(() => makeCharacter(
  11772. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11773. {
  11774. side: {
  11775. height: math.unit(1.9, "meters"),
  11776. weight: math.unit(326, "kg"),
  11777. name: "Side",
  11778. image: {
  11779. source: "./media/characters/levi/side.svg",
  11780. extra: 1704 / 1334,
  11781. bottom: 0.02
  11782. }
  11783. },
  11784. },
  11785. [
  11786. {
  11787. name: "Normal",
  11788. height: math.unit(1.9, "meters"),
  11789. default: true
  11790. },
  11791. {
  11792. name: "Macro",
  11793. height: math.unit(20, "meters")
  11794. },
  11795. {
  11796. name: "Macro+",
  11797. height: math.unit(200, "meters")
  11798. },
  11799. {
  11800. name: "Megamacro",
  11801. height: math.unit(2, "km")
  11802. },
  11803. {
  11804. name: "Megamacro+",
  11805. height: math.unit(20, "km")
  11806. },
  11807. {
  11808. name: "Gigamacro",
  11809. height: math.unit(2500, "km")
  11810. },
  11811. {
  11812. name: "Gigamacro+",
  11813. height: math.unit(120000, "km")
  11814. },
  11815. {
  11816. name: "Teramacro",
  11817. height: math.unit(7.77e6, "km")
  11818. },
  11819. ]
  11820. ))
  11821. characterMakers.push(() => makeCharacter(
  11822. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11823. {
  11824. front: {
  11825. height: math.unit(6 + 4/12, "feet"),
  11826. weight: math.unit(190, "lb"),
  11827. name: "Front",
  11828. image: {
  11829. source: "./media/characters/bmc/front.svg",
  11830. extra: 1626/1472,
  11831. bottom: 79/1705
  11832. }
  11833. },
  11834. back: {
  11835. height: math.unit(6 + 4/12, "feet"),
  11836. weight: math.unit(190, "lb"),
  11837. name: "Back",
  11838. image: {
  11839. source: "./media/characters/bmc/back.svg",
  11840. extra: 1640/1479,
  11841. bottom: 45/1685
  11842. }
  11843. },
  11844. frontArmor: {
  11845. height: math.unit(6 + 4/12, "feet"),
  11846. weight: math.unit(190, "lb"),
  11847. name: "Front-armor",
  11848. image: {
  11849. source: "./media/characters/bmc/front-armor.svg",
  11850. extra: 1538/1468,
  11851. bottom: 79/1617
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Human-sized",
  11858. height: math.unit(6 + 4 / 12, "feet")
  11859. },
  11860. {
  11861. name: "Interactive Size",
  11862. height: math.unit(25, "feet")
  11863. },
  11864. {
  11865. name: "Small",
  11866. height: math.unit(250, "feet")
  11867. },
  11868. {
  11869. name: "Normal",
  11870. height: math.unit(1250, "feet"),
  11871. default: true
  11872. },
  11873. {
  11874. name: "Good Day",
  11875. height: math.unit(88, "miles")
  11876. },
  11877. {
  11878. name: "Largest Measured Size",
  11879. height: math.unit(105.960, "galaxies")
  11880. },
  11881. ]
  11882. ))
  11883. characterMakers.push(() => makeCharacter(
  11884. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11885. {
  11886. front: {
  11887. height: math.unit(20, "feet"),
  11888. weight: math.unit(2016, "kg"),
  11889. name: "Front",
  11890. image: {
  11891. source: "./media/characters/sven-the-kaiju/front.svg",
  11892. extra: 1277/1250,
  11893. bottom: 35/1312
  11894. }
  11895. },
  11896. mouth: {
  11897. height: math.unit(1.85, "feet"),
  11898. name: "Mouth",
  11899. image: {
  11900. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11901. }
  11902. },
  11903. },
  11904. [
  11905. {
  11906. name: "Fairy",
  11907. height: math.unit(6, "inches")
  11908. },
  11909. {
  11910. name: "Normal",
  11911. height: math.unit(20, "feet"),
  11912. default: true
  11913. },
  11914. {
  11915. name: "Rampage",
  11916. height: math.unit(200, "feet")
  11917. },
  11918. {
  11919. name: "Archfey Forest Guardian",
  11920. height: math.unit(1, "mile")
  11921. },
  11922. ]
  11923. ))
  11924. characterMakers.push(() => makeCharacter(
  11925. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11926. {
  11927. front: {
  11928. height: math.unit(4, "meters"),
  11929. weight: math.unit(2, "tons"),
  11930. name: "Front",
  11931. image: {
  11932. source: "./media/characters/marik/front.svg",
  11933. extra: 1057 / 1003,
  11934. bottom: 0.08
  11935. }
  11936. },
  11937. },
  11938. [
  11939. {
  11940. name: "Normal",
  11941. height: math.unit(4, "meters"),
  11942. default: true
  11943. },
  11944. {
  11945. name: "Macro",
  11946. height: math.unit(20, "meters")
  11947. },
  11948. {
  11949. name: "Megamacro",
  11950. height: math.unit(50, "km")
  11951. },
  11952. {
  11953. name: "Gigamacro",
  11954. height: math.unit(100, "km")
  11955. },
  11956. {
  11957. name: "Alpha Macro",
  11958. height: math.unit(7.88e7, "yottameters")
  11959. },
  11960. ]
  11961. ))
  11962. characterMakers.push(() => makeCharacter(
  11963. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11964. {
  11965. front: {
  11966. height: math.unit(6, "feet"),
  11967. weight: math.unit(110, "lb"),
  11968. name: "Front",
  11969. image: {
  11970. source: "./media/characters/mel/front.svg",
  11971. extra: 736 / 617,
  11972. bottom: 0.017
  11973. }
  11974. },
  11975. },
  11976. [
  11977. {
  11978. name: "Pico",
  11979. height: math.unit(3, "pm")
  11980. },
  11981. {
  11982. name: "Nano",
  11983. height: math.unit(3, "nm")
  11984. },
  11985. {
  11986. name: "Micro",
  11987. height: math.unit(0.3, "mm"),
  11988. default: true
  11989. },
  11990. {
  11991. name: "Micro+",
  11992. height: math.unit(3, "mm")
  11993. },
  11994. {
  11995. name: "Normal",
  11996. height: math.unit(5 + 10.5 / 12, "feet")
  11997. },
  11998. ]
  11999. ))
  12000. characterMakers.push(() => makeCharacter(
  12001. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12002. {
  12003. kaiju: {
  12004. height: math.unit(1.75, "meters"),
  12005. weight: math.unit(55, "kg"),
  12006. name: "Kaiju",
  12007. image: {
  12008. source: "./media/characters/lykonous/kaiju.svg",
  12009. extra: 1055 / 946,
  12010. bottom: 0.135
  12011. }
  12012. },
  12013. },
  12014. [
  12015. {
  12016. name: "Normal",
  12017. height: math.unit(2.5, "meters"),
  12018. default: true
  12019. },
  12020. {
  12021. name: "Kaiju Dragon",
  12022. height: math.unit(60, "meters")
  12023. },
  12024. {
  12025. name: "Mega Kaiju",
  12026. height: math.unit(120, "km")
  12027. },
  12028. {
  12029. name: "Giga Kaiju",
  12030. height: math.unit(200, "megameters")
  12031. },
  12032. {
  12033. name: "Terra Kaiju",
  12034. height: math.unit(400, "gigameters")
  12035. },
  12036. {
  12037. name: "Kaiju Dragon God",
  12038. height: math.unit(13000, "exaparsecs")
  12039. },
  12040. ]
  12041. ))
  12042. characterMakers.push(() => makeCharacter(
  12043. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12044. {
  12045. front: {
  12046. height: math.unit(6, "feet"),
  12047. weight: math.unit(150, "lb"),
  12048. name: "Front",
  12049. image: {
  12050. source: "./media/characters/blü/front.svg",
  12051. extra: 1883 / 1564,
  12052. bottom: 0.031
  12053. }
  12054. },
  12055. },
  12056. [
  12057. {
  12058. name: "Normal",
  12059. height: math.unit(13, "feet"),
  12060. default: true
  12061. },
  12062. {
  12063. name: "Big Boi",
  12064. height: math.unit(150, "meters")
  12065. },
  12066. {
  12067. name: "Mini Stomper",
  12068. height: math.unit(300, "meters")
  12069. },
  12070. {
  12071. name: "Macro",
  12072. height: math.unit(1000, "meters")
  12073. },
  12074. {
  12075. name: "Megamacro",
  12076. height: math.unit(11000, "meters")
  12077. },
  12078. {
  12079. name: "Gigamacro",
  12080. height: math.unit(11000, "km")
  12081. },
  12082. {
  12083. name: "Teramacro",
  12084. height: math.unit(420000, "km")
  12085. },
  12086. {
  12087. name: "Examacro",
  12088. height: math.unit(120, "parsecs")
  12089. },
  12090. {
  12091. name: "God Tho",
  12092. height: math.unit(98000000000, "parsecs")
  12093. },
  12094. ]
  12095. ))
  12096. characterMakers.push(() => makeCharacter(
  12097. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12098. {
  12099. taurFront: {
  12100. height: math.unit(6, "feet"),
  12101. weight: math.unit(200, "lb"),
  12102. name: "Taur (Front)",
  12103. image: {
  12104. source: "./media/characters/scales/taur-front.svg",
  12105. extra: 1,
  12106. bottom: 0.05
  12107. }
  12108. },
  12109. taurBack: {
  12110. height: math.unit(6, "feet"),
  12111. weight: math.unit(200, "lb"),
  12112. name: "Taur (Back)",
  12113. image: {
  12114. source: "./media/characters/scales/taur-back.svg",
  12115. extra: 1,
  12116. bottom: 0.08
  12117. }
  12118. },
  12119. anthro: {
  12120. height: math.unit(6 * 7 / 12, "feet"),
  12121. weight: math.unit(100, "lb"),
  12122. name: "Anthro",
  12123. image: {
  12124. source: "./media/characters/scales/anthro.svg",
  12125. extra: 1,
  12126. bottom: 0.06
  12127. }
  12128. },
  12129. },
  12130. [
  12131. {
  12132. name: "Normal",
  12133. height: math.unit(12, "feet"),
  12134. default: true
  12135. },
  12136. ]
  12137. ))
  12138. characterMakers.push(() => makeCharacter(
  12139. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12140. {
  12141. front: {
  12142. height: math.unit(6, "feet"),
  12143. weight: math.unit(150, "lb"),
  12144. name: "Front",
  12145. image: {
  12146. source: "./media/characters/koragos/front.svg",
  12147. extra: 841 / 794,
  12148. bottom: 0.035
  12149. }
  12150. },
  12151. back: {
  12152. height: math.unit(6, "feet"),
  12153. weight: math.unit(150, "lb"),
  12154. name: "Back",
  12155. image: {
  12156. source: "./media/characters/koragos/back.svg",
  12157. extra: 841 / 810,
  12158. bottom: 0.022
  12159. }
  12160. },
  12161. },
  12162. [
  12163. {
  12164. name: "Normal",
  12165. height: math.unit(6 + 11 / 12, "feet"),
  12166. default: true
  12167. },
  12168. {
  12169. name: "Macro",
  12170. height: math.unit(490, "feet")
  12171. },
  12172. {
  12173. name: "Megamacro",
  12174. height: math.unit(10, "miles")
  12175. },
  12176. {
  12177. name: "Gigamacro",
  12178. height: math.unit(50, "miles")
  12179. },
  12180. ]
  12181. ))
  12182. characterMakers.push(() => makeCharacter(
  12183. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12184. {
  12185. front: {
  12186. height: math.unit(6, "feet"),
  12187. weight: math.unit(250, "lb"),
  12188. name: "Front",
  12189. image: {
  12190. source: "./media/characters/xylrem/front.svg",
  12191. extra: 3323 / 3050,
  12192. bottom: 0.065
  12193. }
  12194. },
  12195. },
  12196. [
  12197. {
  12198. name: "Micro",
  12199. height: math.unit(4, "feet")
  12200. },
  12201. {
  12202. name: "Normal",
  12203. height: math.unit(16, "feet"),
  12204. default: true
  12205. },
  12206. {
  12207. name: "Macro",
  12208. height: math.unit(2720, "feet")
  12209. },
  12210. {
  12211. name: "Megamacro",
  12212. height: math.unit(25000, "miles")
  12213. },
  12214. ]
  12215. ))
  12216. characterMakers.push(() => makeCharacter(
  12217. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12218. {
  12219. front: {
  12220. height: math.unit(8, "feet"),
  12221. weight: math.unit(250, "kg"),
  12222. name: "Front",
  12223. image: {
  12224. source: "./media/characters/ikideru/front.svg",
  12225. extra: 930 / 870,
  12226. bottom: 0.087
  12227. }
  12228. },
  12229. back: {
  12230. height: math.unit(8, "feet"),
  12231. weight: math.unit(250, "kg"),
  12232. name: "Back",
  12233. image: {
  12234. source: "./media/characters/ikideru/back.svg",
  12235. extra: 919 / 852,
  12236. bottom: 0.055
  12237. }
  12238. },
  12239. },
  12240. [
  12241. {
  12242. name: "Rare",
  12243. height: math.unit(8, "feet"),
  12244. default: true
  12245. },
  12246. {
  12247. name: "Playful Loom",
  12248. height: math.unit(80, "feet")
  12249. },
  12250. {
  12251. name: "City Leaner",
  12252. height: math.unit(230, "feet")
  12253. },
  12254. {
  12255. name: "Megamacro",
  12256. height: math.unit(2500, "feet")
  12257. },
  12258. {
  12259. name: "Gigamacro",
  12260. height: math.unit(26400, "feet")
  12261. },
  12262. {
  12263. name: "Tectonic Shifter",
  12264. height: math.unit(1.7, "megameters")
  12265. },
  12266. {
  12267. name: "Planet Carer",
  12268. height: math.unit(21, "megameters")
  12269. },
  12270. {
  12271. name: "God",
  12272. height: math.unit(11157.22, "parsecs")
  12273. },
  12274. ]
  12275. ))
  12276. characterMakers.push(() => makeCharacter(
  12277. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12278. {
  12279. front: {
  12280. height: math.unit(6, "feet"),
  12281. weight: math.unit(120, "lb"),
  12282. name: "Front",
  12283. image: {
  12284. source: "./media/characters/neo/front.svg"
  12285. }
  12286. },
  12287. },
  12288. [
  12289. {
  12290. name: "Micro",
  12291. height: math.unit(2, "inches"),
  12292. default: true
  12293. },
  12294. {
  12295. name: "Human Size",
  12296. height: math.unit(5 + 8 / 12, "feet")
  12297. },
  12298. ]
  12299. ))
  12300. characterMakers.push(() => makeCharacter(
  12301. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12302. {
  12303. front: {
  12304. height: math.unit(13 + 10 / 12, "feet"),
  12305. weight: math.unit(5320, "lb"),
  12306. name: "Front",
  12307. image: {
  12308. source: "./media/characters/chauncey-chantz/front.svg",
  12309. extra: 1587 / 1435,
  12310. bottom: 0.02
  12311. }
  12312. },
  12313. },
  12314. [
  12315. {
  12316. name: "Normal",
  12317. height: math.unit(13 + 10 / 12, "feet"),
  12318. default: true
  12319. },
  12320. {
  12321. name: "Macro",
  12322. height: math.unit(45, "feet")
  12323. },
  12324. {
  12325. name: "Megamacro",
  12326. height: math.unit(250, "miles")
  12327. },
  12328. {
  12329. name: "Planetary",
  12330. height: math.unit(10000, "miles")
  12331. },
  12332. {
  12333. name: "Galactic",
  12334. height: math.unit(40000, "parsecs")
  12335. },
  12336. {
  12337. name: "Universal",
  12338. height: math.unit(1, "yottameter")
  12339. },
  12340. ]
  12341. ))
  12342. characterMakers.push(() => makeCharacter(
  12343. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12344. {
  12345. front: {
  12346. height: math.unit(6, "feet"),
  12347. weight: math.unit(150, "lb"),
  12348. name: "Front",
  12349. image: {
  12350. source: "./media/characters/epifox/front.svg",
  12351. extra: 1,
  12352. bottom: 0.075
  12353. }
  12354. },
  12355. },
  12356. [
  12357. {
  12358. name: "Micro",
  12359. height: math.unit(6, "inches")
  12360. },
  12361. {
  12362. name: "Normal",
  12363. height: math.unit(12, "feet"),
  12364. default: true
  12365. },
  12366. {
  12367. name: "Macro",
  12368. height: math.unit(3810, "feet")
  12369. },
  12370. {
  12371. name: "Megamacro",
  12372. height: math.unit(500, "miles")
  12373. },
  12374. ]
  12375. ))
  12376. characterMakers.push(() => makeCharacter(
  12377. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12378. {
  12379. front: {
  12380. height: math.unit(1.8796, "m"),
  12381. weight: math.unit(230, "lb"),
  12382. name: "Front",
  12383. image: {
  12384. source: "./media/characters/colin-t/front.svg",
  12385. extra: 1272 / 1193,
  12386. bottom: 0.07
  12387. }
  12388. },
  12389. },
  12390. [
  12391. {
  12392. name: "Micro",
  12393. height: math.unit(0.571, "meters")
  12394. },
  12395. {
  12396. name: "Normal",
  12397. height: math.unit(1.8796, "meters"),
  12398. default: true
  12399. },
  12400. {
  12401. name: "Tall",
  12402. height: math.unit(4, "meters")
  12403. },
  12404. {
  12405. name: "Macro",
  12406. height: math.unit(67.241, "meters")
  12407. },
  12408. {
  12409. name: "Megamacro",
  12410. height: math.unit(371.856, "meters")
  12411. },
  12412. {
  12413. name: "Planetary",
  12414. height: math.unit(12631.5689, "km")
  12415. },
  12416. ]
  12417. ))
  12418. characterMakers.push(() => makeCharacter(
  12419. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12420. {
  12421. front: {
  12422. height: math.unit(1.85, "meters"),
  12423. weight: math.unit(80, "kg"),
  12424. name: "Front",
  12425. image: {
  12426. source: "./media/characters/matvei/front.svg",
  12427. extra: 614 / 594,
  12428. bottom: 0.01
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Normal",
  12435. height: math.unit(1.85, "meters"),
  12436. default: true
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12442. {
  12443. front: {
  12444. height: math.unit(5 + 9 / 12, "feet"),
  12445. weight: math.unit(70, "lb"),
  12446. name: "Front",
  12447. image: {
  12448. source: "./media/characters/quincy/front.svg",
  12449. extra: 3041 / 2751
  12450. }
  12451. },
  12452. back: {
  12453. height: math.unit(5 + 9 / 12, "feet"),
  12454. weight: math.unit(70, "lb"),
  12455. name: "Back",
  12456. image: {
  12457. source: "./media/characters/quincy/back.svg",
  12458. extra: 3041 / 2751
  12459. }
  12460. },
  12461. flying: {
  12462. height: math.unit(5 + 4 / 12, "feet"),
  12463. weight: math.unit(70, "lb"),
  12464. name: "Flying",
  12465. image: {
  12466. source: "./media/characters/quincy/flying.svg",
  12467. extra: 1044 / 930
  12468. }
  12469. },
  12470. },
  12471. [
  12472. {
  12473. name: "Micro",
  12474. height: math.unit(3, "cm")
  12475. },
  12476. {
  12477. name: "Normal",
  12478. height: math.unit(5 + 9 / 12, "feet")
  12479. },
  12480. {
  12481. name: "Macro",
  12482. height: math.unit(200, "meters"),
  12483. default: true
  12484. },
  12485. {
  12486. name: "Megamacro",
  12487. height: math.unit(1000, "meters")
  12488. },
  12489. ]
  12490. ))
  12491. characterMakers.push(() => makeCharacter(
  12492. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12493. {
  12494. front: {
  12495. height: math.unit(3 + 11/12, "feet"),
  12496. weight: math.unit(50, "lb"),
  12497. name: "Front",
  12498. image: {
  12499. source: "./media/characters/vanrel/front.svg",
  12500. extra: 1104/949,
  12501. bottom: 52/1156
  12502. }
  12503. },
  12504. back: {
  12505. height: math.unit(3 + 11/12, "feet"),
  12506. weight: math.unit(50, "lb"),
  12507. name: "Back",
  12508. image: {
  12509. source: "./media/characters/vanrel/back.svg",
  12510. extra: 1119/976,
  12511. bottom: 37/1156
  12512. }
  12513. },
  12514. tome: {
  12515. height: math.unit(1.35, "feet"),
  12516. weight: math.unit(10, "lb"),
  12517. name: "Vanrel's Tome",
  12518. rename: true,
  12519. image: {
  12520. source: "./media/characters/vanrel/tome.svg"
  12521. }
  12522. },
  12523. beans: {
  12524. height: math.unit(0.89, "feet"),
  12525. name: "Beans",
  12526. image: {
  12527. source: "./media/characters/vanrel/beans.svg"
  12528. }
  12529. },
  12530. },
  12531. [
  12532. {
  12533. name: "Normal",
  12534. height: math.unit(3 + 11/12, "feet"),
  12535. default: true
  12536. },
  12537. ]
  12538. ))
  12539. characterMakers.push(() => makeCharacter(
  12540. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12541. {
  12542. front: {
  12543. height: math.unit(7 + 5 / 12, "feet"),
  12544. name: "Front",
  12545. image: {
  12546. source: "./media/characters/kuiper-vanrel/front.svg",
  12547. extra: 1219/1169,
  12548. bottom: 69/1288
  12549. }
  12550. },
  12551. back: {
  12552. height: math.unit(7 + 5 / 12, "feet"),
  12553. name: "Back",
  12554. image: {
  12555. source: "./media/characters/kuiper-vanrel/back.svg",
  12556. extra: 1236/1193,
  12557. bottom: 27/1263
  12558. }
  12559. },
  12560. foot: {
  12561. height: math.unit(0.55, "meters"),
  12562. name: "Foot",
  12563. image: {
  12564. source: "./media/characters/kuiper-vanrel/foot.svg",
  12565. }
  12566. },
  12567. battle: {
  12568. height: math.unit(6.824, "feet"),
  12569. name: "Battle",
  12570. image: {
  12571. source: "./media/characters/kuiper-vanrel/battle.svg",
  12572. extra: 1466 / 1327,
  12573. bottom: 29 / 1492.5
  12574. }
  12575. },
  12576. meerkui: {
  12577. height: math.unit(18, "inches"),
  12578. name: "Meerkui",
  12579. image: {
  12580. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12581. extra: 1354/1289,
  12582. bottom: 69/1423
  12583. }
  12584. },
  12585. },
  12586. [
  12587. {
  12588. name: "Normal",
  12589. height: math.unit(7 + 5 / 12, "feet"),
  12590. default: true
  12591. },
  12592. ]
  12593. ))
  12594. characterMakers.push(() => makeCharacter(
  12595. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12596. {
  12597. front: {
  12598. height: math.unit(8 + 5 / 12, "feet"),
  12599. name: "Front",
  12600. image: {
  12601. source: "./media/characters/keset-vanrel/front.svg",
  12602. extra: 1231/1148,
  12603. bottom: 82/1313
  12604. }
  12605. },
  12606. back: {
  12607. height: math.unit(8 + 5 / 12, "feet"),
  12608. name: "Back",
  12609. image: {
  12610. source: "./media/characters/keset-vanrel/back.svg",
  12611. extra: 1240/1174,
  12612. bottom: 33/1273
  12613. }
  12614. },
  12615. hand: {
  12616. height: math.unit(0.6, "meters"),
  12617. name: "Hand",
  12618. image: {
  12619. source: "./media/characters/keset-vanrel/hand.svg"
  12620. }
  12621. },
  12622. foot: {
  12623. height: math.unit(0.94978, "meters"),
  12624. name: "Foot",
  12625. image: {
  12626. source: "./media/characters/keset-vanrel/foot.svg"
  12627. }
  12628. },
  12629. battle: {
  12630. height: math.unit(7.408, "feet"),
  12631. name: "Battle",
  12632. image: {
  12633. source: "./media/characters/keset-vanrel/battle.svg",
  12634. extra: 1890 / 1386,
  12635. bottom: 73.28 / 1970
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Normal",
  12642. height: math.unit(8 + 5 / 12, "feet"),
  12643. default: true
  12644. },
  12645. ]
  12646. ))
  12647. characterMakers.push(() => makeCharacter(
  12648. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12649. {
  12650. front: {
  12651. height: math.unit(6, "feet"),
  12652. weight: math.unit(150, "lb"),
  12653. name: "Front",
  12654. image: {
  12655. source: "./media/characters/neos/front.svg",
  12656. extra: 1696 / 992,
  12657. bottom: 0.14
  12658. }
  12659. },
  12660. },
  12661. [
  12662. {
  12663. name: "Normal",
  12664. height: math.unit(54, "cm"),
  12665. default: true
  12666. },
  12667. {
  12668. name: "Macro",
  12669. height: math.unit(100, "m")
  12670. },
  12671. {
  12672. name: "Megamacro",
  12673. height: math.unit(10, "km")
  12674. },
  12675. {
  12676. name: "Megamacro+",
  12677. height: math.unit(100, "km")
  12678. },
  12679. {
  12680. name: "Gigamacro",
  12681. height: math.unit(100, "Mm")
  12682. },
  12683. {
  12684. name: "Teramacro",
  12685. height: math.unit(100, "Gm")
  12686. },
  12687. {
  12688. name: "Examacro",
  12689. height: math.unit(100, "Em")
  12690. },
  12691. {
  12692. name: "Godly",
  12693. height: math.unit(10000, "Ym")
  12694. },
  12695. {
  12696. name: "Beyond Godly",
  12697. height: math.unit(25, "multiverses")
  12698. },
  12699. ]
  12700. ))
  12701. characterMakers.push(() => makeCharacter(
  12702. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12703. {
  12704. feminine: {
  12705. height: math.unit(5, "feet"),
  12706. weight: math.unit(100, "lb"),
  12707. name: "Feminine",
  12708. image: {
  12709. source: "./media/characters/sammy-mouse/feminine.svg",
  12710. extra: 2526 / 2425,
  12711. bottom: 0.123
  12712. }
  12713. },
  12714. masculine: {
  12715. height: math.unit(5, "feet"),
  12716. weight: math.unit(100, "lb"),
  12717. name: "Masculine",
  12718. image: {
  12719. source: "./media/characters/sammy-mouse/masculine.svg",
  12720. extra: 2526 / 2425,
  12721. bottom: 0.123
  12722. }
  12723. },
  12724. },
  12725. [
  12726. {
  12727. name: "Micro",
  12728. height: math.unit(5, "inches")
  12729. },
  12730. {
  12731. name: "Normal",
  12732. height: math.unit(5, "feet"),
  12733. default: true
  12734. },
  12735. {
  12736. name: "Macro",
  12737. height: math.unit(60, "feet")
  12738. },
  12739. ]
  12740. ))
  12741. characterMakers.push(() => makeCharacter(
  12742. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12743. {
  12744. front: {
  12745. height: math.unit(4, "feet"),
  12746. weight: math.unit(50, "lb"),
  12747. name: "Front",
  12748. image: {
  12749. source: "./media/characters/kole/front.svg",
  12750. extra: 1423 / 1303,
  12751. bottom: 0.025
  12752. }
  12753. },
  12754. back: {
  12755. height: math.unit(4, "feet"),
  12756. weight: math.unit(50, "lb"),
  12757. name: "Back",
  12758. image: {
  12759. source: "./media/characters/kole/back.svg",
  12760. extra: 1426 / 1280,
  12761. bottom: 0.02
  12762. }
  12763. },
  12764. },
  12765. [
  12766. {
  12767. name: "Normal",
  12768. height: math.unit(4, "feet"),
  12769. default: true
  12770. },
  12771. ]
  12772. ))
  12773. characterMakers.push(() => makeCharacter(
  12774. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12775. {
  12776. front: {
  12777. height: math.unit(2.5, "feet"),
  12778. weight: math.unit(32, "lb"),
  12779. name: "Front",
  12780. image: {
  12781. source: "./media/characters/rufran/front.svg",
  12782. extra: 1313/885,
  12783. bottom: 94/1407
  12784. }
  12785. },
  12786. side: {
  12787. height: math.unit(2.5, "feet"),
  12788. weight: math.unit(32, "lb"),
  12789. name: "Side",
  12790. image: {
  12791. source: "./media/characters/rufran/side.svg",
  12792. extra: 1109/852,
  12793. bottom: 118/1227
  12794. }
  12795. },
  12796. back: {
  12797. height: math.unit(2.5, "feet"),
  12798. weight: math.unit(32, "lb"),
  12799. name: "Back",
  12800. image: {
  12801. source: "./media/characters/rufran/back.svg",
  12802. extra: 1280/878,
  12803. bottom: 131/1411
  12804. }
  12805. },
  12806. mouth: {
  12807. height: math.unit(1.13, "feet"),
  12808. name: "Mouth",
  12809. image: {
  12810. source: "./media/characters/rufran/mouth.svg"
  12811. }
  12812. },
  12813. foot: {
  12814. height: math.unit(1.33, "feet"),
  12815. name: "Foot",
  12816. image: {
  12817. source: "./media/characters/rufran/foot.svg"
  12818. }
  12819. },
  12820. koboldFront: {
  12821. height: math.unit(2 + 6 / 12, "feet"),
  12822. weight: math.unit(20, "lb"),
  12823. name: "Front (Kobold)",
  12824. image: {
  12825. source: "./media/characters/rufran/kobold-front.svg",
  12826. extra: 2041 / 1839,
  12827. bottom: 0.055
  12828. }
  12829. },
  12830. koboldBack: {
  12831. height: math.unit(2 + 6 / 12, "feet"),
  12832. weight: math.unit(20, "lb"),
  12833. name: "Back (Kobold)",
  12834. image: {
  12835. source: "./media/characters/rufran/kobold-back.svg",
  12836. extra: 2054 / 1839,
  12837. bottom: 0.01
  12838. }
  12839. },
  12840. koboldHand: {
  12841. height: math.unit(0.2166, "meters"),
  12842. name: "Hand (Kobold)",
  12843. image: {
  12844. source: "./media/characters/rufran/kobold-hand.svg"
  12845. }
  12846. },
  12847. koboldFoot: {
  12848. height: math.unit(0.185, "meters"),
  12849. name: "Foot (Kobold)",
  12850. image: {
  12851. source: "./media/characters/rufran/kobold-foot.svg"
  12852. }
  12853. },
  12854. },
  12855. [
  12856. {
  12857. name: "Micro",
  12858. height: math.unit(1, "inch")
  12859. },
  12860. {
  12861. name: "Normal",
  12862. height: math.unit(2 + 6 / 12, "feet"),
  12863. default: true
  12864. },
  12865. {
  12866. name: "Big",
  12867. height: math.unit(60, "feet")
  12868. },
  12869. {
  12870. name: "Macro",
  12871. height: math.unit(325, "feet")
  12872. },
  12873. ]
  12874. ))
  12875. characterMakers.push(() => makeCharacter(
  12876. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12877. {
  12878. front: {
  12879. height: math.unit(0.3, "meters"),
  12880. weight: math.unit(3.5, "kg"),
  12881. name: "Front",
  12882. image: {
  12883. source: "./media/characters/chip/front.svg",
  12884. extra: 748 / 674
  12885. }
  12886. },
  12887. },
  12888. [
  12889. {
  12890. name: "Micro",
  12891. height: math.unit(1, "inch"),
  12892. default: true
  12893. },
  12894. ]
  12895. ))
  12896. characterMakers.push(() => makeCharacter(
  12897. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12898. {
  12899. side: {
  12900. height: math.unit(2.3, "meters"),
  12901. weight: math.unit(3500, "lb"),
  12902. name: "Side",
  12903. image: {
  12904. source: "./media/characters/torvid/side.svg",
  12905. extra: 1972 / 722,
  12906. bottom: 0.035
  12907. }
  12908. },
  12909. },
  12910. [
  12911. {
  12912. name: "Normal",
  12913. height: math.unit(2.3, "meters"),
  12914. default: true
  12915. },
  12916. ]
  12917. ))
  12918. characterMakers.push(() => makeCharacter(
  12919. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12920. {
  12921. front: {
  12922. height: math.unit(2, "meters"),
  12923. weight: math.unit(150.5, "kg"),
  12924. name: "Front",
  12925. image: {
  12926. source: "./media/characters/susan/front.svg",
  12927. extra: 693 / 635,
  12928. bottom: 0.05
  12929. }
  12930. },
  12931. },
  12932. [
  12933. {
  12934. name: "Megamacro",
  12935. height: math.unit(505, "miles"),
  12936. default: true
  12937. },
  12938. ]
  12939. ))
  12940. characterMakers.push(() => makeCharacter(
  12941. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12942. {
  12943. front: {
  12944. height: math.unit(6, "feet"),
  12945. weight: math.unit(150, "lb"),
  12946. name: "Front",
  12947. image: {
  12948. source: "./media/characters/raindrops/front.svg",
  12949. extra: 2655 / 2461,
  12950. bottom: 49 / 2705
  12951. }
  12952. },
  12953. back: {
  12954. height: math.unit(6, "feet"),
  12955. weight: math.unit(150, "lb"),
  12956. name: "Back",
  12957. image: {
  12958. source: "./media/characters/raindrops/back.svg",
  12959. extra: 2574 / 2400,
  12960. bottom: 65 / 2634
  12961. }
  12962. },
  12963. },
  12964. [
  12965. {
  12966. name: "Micro",
  12967. height: math.unit(6, "inches")
  12968. },
  12969. {
  12970. name: "Normal",
  12971. height: math.unit(6 + 2 / 12, "feet")
  12972. },
  12973. {
  12974. name: "Macro",
  12975. height: math.unit(131, "feet"),
  12976. default: true
  12977. },
  12978. {
  12979. name: "Megamacro",
  12980. height: math.unit(15, "miles")
  12981. },
  12982. {
  12983. name: "Gigamacro",
  12984. height: math.unit(4000, "miles")
  12985. },
  12986. {
  12987. name: "Teramacro",
  12988. height: math.unit(315000, "miles")
  12989. },
  12990. ]
  12991. ))
  12992. characterMakers.push(() => makeCharacter(
  12993. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12994. {
  12995. front: {
  12996. height: math.unit(2.794, "meters"),
  12997. weight: math.unit(325, "kg"),
  12998. name: "Front",
  12999. image: {
  13000. source: "./media/characters/tezwa/front.svg",
  13001. extra: 2083 / 1906,
  13002. bottom: 0.031
  13003. }
  13004. },
  13005. foot: {
  13006. height: math.unit(0.687, "meters"),
  13007. name: "Foot",
  13008. image: {
  13009. source: "./media/characters/tezwa/foot.svg"
  13010. }
  13011. },
  13012. },
  13013. [
  13014. {
  13015. name: "Normal",
  13016. height: math.unit(9 + 2 / 12, "feet"),
  13017. default: true
  13018. },
  13019. ]
  13020. ))
  13021. characterMakers.push(() => makeCharacter(
  13022. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13023. {
  13024. front: {
  13025. height: math.unit(58, "feet"),
  13026. weight: math.unit(89000, "lb"),
  13027. name: "Front",
  13028. image: {
  13029. source: "./media/characters/typhus/front.svg",
  13030. extra: 816 / 800,
  13031. bottom: 0.065
  13032. }
  13033. },
  13034. },
  13035. [
  13036. {
  13037. name: "Macro",
  13038. height: math.unit(58, "feet"),
  13039. default: true
  13040. },
  13041. ]
  13042. ))
  13043. characterMakers.push(() => makeCharacter(
  13044. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13045. {
  13046. front: {
  13047. height: math.unit(12, "feet"),
  13048. weight: math.unit(6, "tonnes"),
  13049. name: "Front",
  13050. image: {
  13051. source: "./media/characters/lyra-von-wulf/front.svg",
  13052. extra: 1,
  13053. bottom: 0.10
  13054. }
  13055. },
  13056. frontMecha: {
  13057. height: math.unit(12, "feet"),
  13058. weight: math.unit(12, "tonnes"),
  13059. name: "Front (Mecha)",
  13060. image: {
  13061. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13062. extra: 1,
  13063. bottom: 0.042
  13064. }
  13065. },
  13066. maw: {
  13067. height: math.unit(2.2, "feet"),
  13068. name: "Maw",
  13069. image: {
  13070. source: "./media/characters/lyra-von-wulf/maw.svg"
  13071. }
  13072. },
  13073. },
  13074. [
  13075. {
  13076. name: "Normal",
  13077. height: math.unit(12, "feet"),
  13078. default: true
  13079. },
  13080. {
  13081. name: "Classic",
  13082. height: math.unit(50, "feet")
  13083. },
  13084. {
  13085. name: "Macro",
  13086. height: math.unit(500, "feet")
  13087. },
  13088. {
  13089. name: "Megamacro",
  13090. height: math.unit(1, "mile")
  13091. },
  13092. {
  13093. name: "Gigamacro",
  13094. height: math.unit(400, "miles")
  13095. },
  13096. {
  13097. name: "Teramacro",
  13098. height: math.unit(22000, "miles")
  13099. },
  13100. {
  13101. name: "Solarmacro",
  13102. height: math.unit(8600000, "miles")
  13103. },
  13104. {
  13105. name: "Galactic",
  13106. height: math.unit(1057000, "lightyears")
  13107. },
  13108. ]
  13109. ))
  13110. characterMakers.push(() => makeCharacter(
  13111. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13112. {
  13113. front: {
  13114. height: math.unit(6 + 10 / 12, "feet"),
  13115. weight: math.unit(150, "lb"),
  13116. name: "Front",
  13117. image: {
  13118. source: "./media/characters/dixon/front.svg",
  13119. extra: 3361 / 3209,
  13120. bottom: 0.01
  13121. }
  13122. },
  13123. },
  13124. [
  13125. {
  13126. name: "Normal",
  13127. height: math.unit(6 + 10 / 12, "feet"),
  13128. default: true
  13129. },
  13130. {
  13131. name: "Big",
  13132. height: math.unit(12, "meters")
  13133. },
  13134. {
  13135. name: "Macro",
  13136. height: math.unit(500, "meters")
  13137. },
  13138. {
  13139. name: "Megamacro",
  13140. height: math.unit(2, "km")
  13141. },
  13142. ]
  13143. ))
  13144. characterMakers.push(() => makeCharacter(
  13145. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13146. {
  13147. front: {
  13148. height: math.unit(185, "cm"),
  13149. weight: math.unit(68, "kg"),
  13150. name: "Front",
  13151. image: {
  13152. source: "./media/characters/kauko/front.svg",
  13153. extra: 1455 / 1421,
  13154. bottom: 0.03
  13155. }
  13156. },
  13157. back: {
  13158. height: math.unit(185, "cm"),
  13159. weight: math.unit(68, "kg"),
  13160. name: "Back",
  13161. image: {
  13162. source: "./media/characters/kauko/back.svg",
  13163. extra: 1455 / 1421,
  13164. bottom: 0.004
  13165. }
  13166. },
  13167. },
  13168. [
  13169. {
  13170. name: "Normal",
  13171. height: math.unit(185, "cm"),
  13172. default: true
  13173. },
  13174. ]
  13175. ))
  13176. characterMakers.push(() => makeCharacter(
  13177. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13178. {
  13179. front: {
  13180. height: math.unit(6, "feet"),
  13181. weight: math.unit(150, "kg"),
  13182. name: "Front",
  13183. image: {
  13184. source: "./media/characters/varg/front.svg",
  13185. extra: 1108 / 1018,
  13186. bottom: 0.0375
  13187. }
  13188. },
  13189. },
  13190. [
  13191. {
  13192. name: "Normal",
  13193. height: math.unit(5, "meters")
  13194. },
  13195. {
  13196. name: "Macro",
  13197. height: math.unit(200, "meters")
  13198. },
  13199. {
  13200. name: "Megamacro",
  13201. height: math.unit(20, "kilometers")
  13202. },
  13203. {
  13204. name: "True Size",
  13205. height: math.unit(211, "km"),
  13206. default: true
  13207. },
  13208. {
  13209. name: "Gigamacro",
  13210. height: math.unit(1000, "km")
  13211. },
  13212. {
  13213. name: "Gigamacro+",
  13214. height: math.unit(8000, "km")
  13215. },
  13216. {
  13217. name: "Teramacro",
  13218. height: math.unit(1000000, "km")
  13219. },
  13220. ]
  13221. ))
  13222. characterMakers.push(() => makeCharacter(
  13223. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13224. {
  13225. front: {
  13226. height: math.unit(7 + 7 / 12, "feet"),
  13227. weight: math.unit(267, "lb"),
  13228. name: "Front",
  13229. image: {
  13230. source: "./media/characters/dayza/front.svg",
  13231. extra: 1262 / 1200,
  13232. bottom: 0.035
  13233. }
  13234. },
  13235. side: {
  13236. height: math.unit(7 + 7 / 12, "feet"),
  13237. weight: math.unit(267, "lb"),
  13238. name: "Side",
  13239. image: {
  13240. source: "./media/characters/dayza/side.svg",
  13241. extra: 1295 / 1245,
  13242. bottom: 0.05
  13243. }
  13244. },
  13245. back: {
  13246. height: math.unit(7 + 7 / 12, "feet"),
  13247. weight: math.unit(267, "lb"),
  13248. name: "Back",
  13249. image: {
  13250. source: "./media/characters/dayza/back.svg",
  13251. extra: 1241 / 1170
  13252. }
  13253. },
  13254. },
  13255. [
  13256. {
  13257. name: "Normal",
  13258. height: math.unit(7 + 7 / 12, "feet"),
  13259. default: true
  13260. },
  13261. {
  13262. name: "Macro",
  13263. height: math.unit(155, "feet")
  13264. },
  13265. ]
  13266. ))
  13267. characterMakers.push(() => makeCharacter(
  13268. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13269. {
  13270. front: {
  13271. height: math.unit(6 + 5 / 12, "feet"),
  13272. weight: math.unit(160, "lb"),
  13273. name: "Front",
  13274. image: {
  13275. source: "./media/characters/xanthos/front.svg",
  13276. extra: 1,
  13277. bottom: 0.04
  13278. }
  13279. },
  13280. back: {
  13281. height: math.unit(6 + 5 / 12, "feet"),
  13282. weight: math.unit(160, "lb"),
  13283. name: "Back",
  13284. image: {
  13285. source: "./media/characters/xanthos/back.svg",
  13286. extra: 1,
  13287. bottom: 0.03
  13288. }
  13289. },
  13290. hand: {
  13291. height: math.unit(0.928, "feet"),
  13292. name: "Hand",
  13293. image: {
  13294. source: "./media/characters/xanthos/hand.svg"
  13295. }
  13296. },
  13297. foot: {
  13298. height: math.unit(1.286, "feet"),
  13299. name: "Foot",
  13300. image: {
  13301. source: "./media/characters/xanthos/foot.svg"
  13302. }
  13303. },
  13304. },
  13305. [
  13306. {
  13307. name: "Normal",
  13308. height: math.unit(6 + 5 / 12, "feet"),
  13309. default: true
  13310. },
  13311. {
  13312. name: "Normal+",
  13313. height: math.unit(6, "meters")
  13314. },
  13315. {
  13316. name: "Macro",
  13317. height: math.unit(40, "feet")
  13318. },
  13319. {
  13320. name: "Macro+",
  13321. height: math.unit(200, "meters")
  13322. },
  13323. {
  13324. name: "Megamacro",
  13325. height: math.unit(20, "km")
  13326. },
  13327. {
  13328. name: "Megamacro+",
  13329. height: math.unit(100, "km")
  13330. },
  13331. {
  13332. name: "Gigamacro",
  13333. height: math.unit(200, "megameters")
  13334. },
  13335. {
  13336. name: "Gigamacro+",
  13337. height: math.unit(1.5, "gigameters")
  13338. },
  13339. ]
  13340. ))
  13341. characterMakers.push(() => makeCharacter(
  13342. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13343. {
  13344. front: {
  13345. height: math.unit(6 + 3 / 12, "feet"),
  13346. weight: math.unit(215, "lb"),
  13347. name: "Front",
  13348. image: {
  13349. source: "./media/characters/grynn/front.svg",
  13350. extra: 4627 / 4209,
  13351. bottom: 0.047
  13352. }
  13353. },
  13354. },
  13355. [
  13356. {
  13357. name: "Micro",
  13358. height: math.unit(6, "inches")
  13359. },
  13360. {
  13361. name: "Normal",
  13362. height: math.unit(6 + 3 / 12, "feet"),
  13363. default: true
  13364. },
  13365. {
  13366. name: "Big",
  13367. height: math.unit(104, "feet")
  13368. },
  13369. {
  13370. name: "Macro",
  13371. height: math.unit(944, "feet")
  13372. },
  13373. {
  13374. name: "Macro+",
  13375. height: math.unit(9480, "feet")
  13376. },
  13377. {
  13378. name: "Megamacro",
  13379. height: math.unit(78752, "feet")
  13380. },
  13381. {
  13382. name: "Megamacro+",
  13383. height: math.unit(630128, "feet")
  13384. },
  13385. {
  13386. name: "Megamacro++",
  13387. height: math.unit(3150695, "feet")
  13388. },
  13389. ]
  13390. ))
  13391. characterMakers.push(() => makeCharacter(
  13392. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13393. {
  13394. front: {
  13395. height: math.unit(7 + 5 / 12, "feet"),
  13396. weight: math.unit(450, "lb"),
  13397. name: "Front",
  13398. image: {
  13399. source: "./media/characters/mocha-aura/front.svg",
  13400. extra: 1907 / 1817,
  13401. bottom: 0.04
  13402. }
  13403. },
  13404. back: {
  13405. height: math.unit(7 + 5 / 12, "feet"),
  13406. weight: math.unit(450, "lb"),
  13407. name: "Back",
  13408. image: {
  13409. source: "./media/characters/mocha-aura/back.svg",
  13410. extra: 1900 / 1825,
  13411. bottom: 0.045
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Nano",
  13418. height: math.unit(1, "nm")
  13419. },
  13420. {
  13421. name: "Megamicro",
  13422. height: math.unit(1, "mm")
  13423. },
  13424. {
  13425. name: "Micro",
  13426. height: math.unit(3, "inches")
  13427. },
  13428. {
  13429. name: "Normal",
  13430. height: math.unit(7 + 5 / 12, "feet"),
  13431. default: true
  13432. },
  13433. {
  13434. name: "Macro",
  13435. height: math.unit(30, "feet")
  13436. },
  13437. {
  13438. name: "Megamacro",
  13439. height: math.unit(3500, "feet")
  13440. },
  13441. {
  13442. name: "Teramacro",
  13443. height: math.unit(500000, "miles")
  13444. },
  13445. {
  13446. name: "Petamacro",
  13447. height: math.unit(50000000000000000, "parsecs")
  13448. },
  13449. ]
  13450. ))
  13451. characterMakers.push(() => makeCharacter(
  13452. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13453. {
  13454. front: {
  13455. height: math.unit(6, "feet"),
  13456. weight: math.unit(150, "lb"),
  13457. name: "Front",
  13458. image: {
  13459. source: "./media/characters/ilisha-devya/front.svg",
  13460. extra: 1053/1049,
  13461. bottom: 270/1323
  13462. }
  13463. },
  13464. back: {
  13465. height: math.unit(6, "feet"),
  13466. weight: math.unit(150, "lb"),
  13467. name: "Back",
  13468. image: {
  13469. source: "./media/characters/ilisha-devya/back.svg",
  13470. extra: 1131/1128,
  13471. bottom: 39/1170
  13472. }
  13473. },
  13474. },
  13475. [
  13476. {
  13477. name: "Macro",
  13478. height: math.unit(500, "feet"),
  13479. default: true
  13480. },
  13481. {
  13482. name: "Megamacro",
  13483. height: math.unit(10, "miles")
  13484. },
  13485. {
  13486. name: "Gigamacro",
  13487. height: math.unit(100000, "miles")
  13488. },
  13489. {
  13490. name: "Examacro",
  13491. height: math.unit(1e9, "lightyears")
  13492. },
  13493. {
  13494. name: "Omniversal",
  13495. height: math.unit(1e33, "lightyears")
  13496. },
  13497. {
  13498. name: "Beyond Infinite",
  13499. height: math.unit(1e100, "lightyears")
  13500. },
  13501. ]
  13502. ))
  13503. characterMakers.push(() => makeCharacter(
  13504. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13505. {
  13506. Side: {
  13507. height: math.unit(6, "feet"),
  13508. weight: math.unit(150, "lb"),
  13509. name: "Side",
  13510. image: {
  13511. source: "./media/characters/mira/side.svg",
  13512. extra: 900 / 799,
  13513. bottom: 0.02
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Human Size",
  13520. height: math.unit(6, "feet")
  13521. },
  13522. {
  13523. name: "Macro",
  13524. height: math.unit(100, "feet"),
  13525. default: true
  13526. },
  13527. {
  13528. name: "Megamacro",
  13529. height: math.unit(10, "miles")
  13530. },
  13531. {
  13532. name: "Gigamacro",
  13533. height: math.unit(25000, "miles")
  13534. },
  13535. {
  13536. name: "Teramacro",
  13537. height: math.unit(300, "AU")
  13538. },
  13539. {
  13540. name: "Full Size",
  13541. height: math.unit(4.5e10, "lightyears")
  13542. },
  13543. ]
  13544. ))
  13545. characterMakers.push(() => makeCharacter(
  13546. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13547. {
  13548. front: {
  13549. height: math.unit(6, "feet"),
  13550. weight: math.unit(150, "lb"),
  13551. name: "Front",
  13552. image: {
  13553. source: "./media/characters/holly/front.svg",
  13554. extra: 639 / 606
  13555. }
  13556. },
  13557. back: {
  13558. height: math.unit(6, "feet"),
  13559. weight: math.unit(150, "lb"),
  13560. name: "Back",
  13561. image: {
  13562. source: "./media/characters/holly/back.svg",
  13563. extra: 623 / 598
  13564. }
  13565. },
  13566. frontWorking: {
  13567. height: math.unit(6, "feet"),
  13568. weight: math.unit(150, "lb"),
  13569. name: "Front (Working)",
  13570. image: {
  13571. source: "./media/characters/holly/front-working.svg",
  13572. extra: 607 / 577,
  13573. bottom: 0.048
  13574. }
  13575. },
  13576. },
  13577. [
  13578. {
  13579. name: "Normal",
  13580. height: math.unit(12 + 3 / 12, "feet"),
  13581. default: true
  13582. },
  13583. ]
  13584. ))
  13585. characterMakers.push(() => makeCharacter(
  13586. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13587. {
  13588. front: {
  13589. height: math.unit(6, "feet"),
  13590. weight: math.unit(150, "lb"),
  13591. name: "Front",
  13592. image: {
  13593. source: "./media/characters/porter/front.svg",
  13594. extra: 1,
  13595. bottom: 0.01
  13596. }
  13597. },
  13598. frontRobes: {
  13599. height: math.unit(6, "feet"),
  13600. weight: math.unit(150, "lb"),
  13601. name: "Front (Robes)",
  13602. image: {
  13603. source: "./media/characters/porter/front-robes.svg",
  13604. extra: 1.01,
  13605. bottom: 0.01
  13606. }
  13607. },
  13608. },
  13609. [
  13610. {
  13611. name: "Normal",
  13612. height: math.unit(11 + 9 / 12, "feet"),
  13613. default: true
  13614. },
  13615. ]
  13616. ))
  13617. characterMakers.push(() => makeCharacter(
  13618. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13619. {
  13620. legendary: {
  13621. height: math.unit(6, "feet"),
  13622. weight: math.unit(150, "lb"),
  13623. name: "Legendary",
  13624. image: {
  13625. source: "./media/characters/lucy/legendary.svg",
  13626. extra: 1355 / 1100,
  13627. bottom: 0.045
  13628. }
  13629. },
  13630. },
  13631. [
  13632. {
  13633. name: "Legendary",
  13634. height: math.unit(86882 * 2, "miles"),
  13635. default: true
  13636. },
  13637. ]
  13638. ))
  13639. characterMakers.push(() => makeCharacter(
  13640. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13641. {
  13642. front: {
  13643. height: math.unit(6, "feet"),
  13644. weight: math.unit(150, "lb"),
  13645. name: "Front",
  13646. image: {
  13647. source: "./media/characters/drusilla/front.svg",
  13648. extra: 678 / 635,
  13649. bottom: 0.03
  13650. }
  13651. },
  13652. back: {
  13653. height: math.unit(6, "feet"),
  13654. weight: math.unit(150, "lb"),
  13655. name: "Back",
  13656. image: {
  13657. source: "./media/characters/drusilla/back.svg",
  13658. extra: 678 / 635,
  13659. bottom: 0.005
  13660. }
  13661. },
  13662. },
  13663. [
  13664. {
  13665. name: "Macro",
  13666. height: math.unit(100, "feet")
  13667. },
  13668. {
  13669. name: "Canon Height",
  13670. height: math.unit(2000, "feet"),
  13671. default: true
  13672. },
  13673. ]
  13674. ))
  13675. characterMakers.push(() => makeCharacter(
  13676. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13677. {
  13678. front: {
  13679. height: math.unit(6, "feet"),
  13680. weight: math.unit(180, "lb"),
  13681. name: "Front",
  13682. image: {
  13683. source: "./media/characters/renard-thatch/front.svg",
  13684. extra: 2411 / 2275,
  13685. bottom: 0.01
  13686. }
  13687. },
  13688. frontPosing: {
  13689. height: math.unit(6, "feet"),
  13690. weight: math.unit(180, "lb"),
  13691. name: "Front (Posing)",
  13692. image: {
  13693. source: "./media/characters/renard-thatch/front-posing.svg",
  13694. extra: 2381 / 2261,
  13695. bottom: 0.01
  13696. }
  13697. },
  13698. back: {
  13699. height: math.unit(6, "feet"),
  13700. weight: math.unit(180, "lb"),
  13701. name: "Back",
  13702. image: {
  13703. source: "./media/characters/renard-thatch/back.svg",
  13704. extra: 2428 / 2288
  13705. }
  13706. },
  13707. },
  13708. [
  13709. {
  13710. name: "Micro",
  13711. height: math.unit(3, "inches")
  13712. },
  13713. {
  13714. name: "Default",
  13715. height: math.unit(6, "feet"),
  13716. default: true
  13717. },
  13718. {
  13719. name: "Macro",
  13720. height: math.unit(75, "feet")
  13721. },
  13722. ]
  13723. ))
  13724. characterMakers.push(() => makeCharacter(
  13725. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13726. {
  13727. front: {
  13728. height: math.unit(1450, "feet"),
  13729. weight: math.unit(1.21e6, "tons"),
  13730. name: "Front",
  13731. image: {
  13732. source: "./media/characters/sekvra/front.svg",
  13733. extra: 1193/1190,
  13734. bottom: 78/1271
  13735. }
  13736. },
  13737. side: {
  13738. height: math.unit(1450, "feet"),
  13739. weight: math.unit(1.21e6, "tons"),
  13740. name: "Side",
  13741. image: {
  13742. source: "./media/characters/sekvra/side.svg",
  13743. extra: 1193/1190,
  13744. bottom: 52/1245
  13745. }
  13746. },
  13747. back: {
  13748. height: math.unit(1450, "feet"),
  13749. weight: math.unit(1.21e6, "tons"),
  13750. name: "Back",
  13751. image: {
  13752. source: "./media/characters/sekvra/back.svg",
  13753. extra: 1219/1216,
  13754. bottom: 21/1240
  13755. }
  13756. },
  13757. frontClothed: {
  13758. height: math.unit(1450, "feet"),
  13759. weight: math.unit(1.21e6, "tons"),
  13760. name: "Front (Clothed)",
  13761. image: {
  13762. source: "./media/characters/sekvra/front-clothed.svg",
  13763. extra: 1192/1189,
  13764. bottom: 79/1271
  13765. }
  13766. },
  13767. },
  13768. [
  13769. {
  13770. name: "Macro",
  13771. height: math.unit(1450, "feet"),
  13772. default: true
  13773. },
  13774. {
  13775. name: "Megamacro",
  13776. height: math.unit(15000, "feet")
  13777. },
  13778. ]
  13779. ))
  13780. characterMakers.push(() => makeCharacter(
  13781. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13782. {
  13783. front: {
  13784. height: math.unit(6, "feet"),
  13785. weight: math.unit(150, "lb"),
  13786. name: "Front",
  13787. image: {
  13788. source: "./media/characters/carmine/front.svg",
  13789. extra: 1,
  13790. bottom: 0.035
  13791. }
  13792. },
  13793. frontArmor: {
  13794. height: math.unit(6, "feet"),
  13795. weight: math.unit(150, "lb"),
  13796. name: "Front (Armor)",
  13797. image: {
  13798. source: "./media/characters/carmine/front-armor.svg",
  13799. extra: 1,
  13800. bottom: 0.035
  13801. }
  13802. },
  13803. },
  13804. [
  13805. {
  13806. name: "Large",
  13807. height: math.unit(1, "mile")
  13808. },
  13809. {
  13810. name: "Huge",
  13811. height: math.unit(40, "miles"),
  13812. default: true
  13813. },
  13814. {
  13815. name: "Colossal",
  13816. height: math.unit(2500, "miles")
  13817. },
  13818. ]
  13819. ))
  13820. characterMakers.push(() => makeCharacter(
  13821. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13822. {
  13823. front: {
  13824. height: math.unit(6, "feet"),
  13825. weight: math.unit(150, "lb"),
  13826. name: "Front",
  13827. image: {
  13828. source: "./media/characters/elyssia/front.svg",
  13829. extra: 2201 / 2035,
  13830. bottom: 0.05
  13831. }
  13832. },
  13833. frontClothed: {
  13834. height: math.unit(6, "feet"),
  13835. weight: math.unit(150, "lb"),
  13836. name: "Front (Clothed)",
  13837. image: {
  13838. source: "./media/characters/elyssia/front-clothed.svg",
  13839. extra: 2201 / 2035,
  13840. bottom: 0.05
  13841. }
  13842. },
  13843. back: {
  13844. height: math.unit(6, "feet"),
  13845. weight: math.unit(150, "lb"),
  13846. name: "Back",
  13847. image: {
  13848. source: "./media/characters/elyssia/back.svg",
  13849. extra: 2201 / 2035,
  13850. bottom: 0.013
  13851. }
  13852. },
  13853. },
  13854. [
  13855. {
  13856. name: "Smaller",
  13857. height: math.unit(150, "feet")
  13858. },
  13859. {
  13860. name: "Standard",
  13861. height: math.unit(1400, "feet"),
  13862. default: true
  13863. },
  13864. {
  13865. name: "Distracted",
  13866. height: math.unit(15000, "feet")
  13867. },
  13868. ]
  13869. ))
  13870. characterMakers.push(() => makeCharacter(
  13871. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13872. {
  13873. front: {
  13874. height: math.unit(7 + 4/12, "feet"),
  13875. weight: math.unit(690, "lb"),
  13876. name: "Front",
  13877. image: {
  13878. source: "./media/characters/geno-maxwell/front.svg",
  13879. extra: 984/856,
  13880. bottom: 87/1071
  13881. }
  13882. },
  13883. back: {
  13884. height: math.unit(7 + 4/12, "feet"),
  13885. weight: math.unit(690, "lb"),
  13886. name: "Back",
  13887. image: {
  13888. source: "./media/characters/geno-maxwell/back.svg",
  13889. extra: 981/854,
  13890. bottom: 57/1038
  13891. }
  13892. },
  13893. frontCostume: {
  13894. height: math.unit(7 + 4/12, "feet"),
  13895. weight: math.unit(690, "lb"),
  13896. name: "Front (Costume)",
  13897. image: {
  13898. source: "./media/characters/geno-maxwell/front-costume.svg",
  13899. extra: 984/856,
  13900. bottom: 87/1071
  13901. }
  13902. },
  13903. backcostume: {
  13904. height: math.unit(7 + 4/12, "feet"),
  13905. weight: math.unit(690, "lb"),
  13906. name: "Back (Costume)",
  13907. image: {
  13908. source: "./media/characters/geno-maxwell/back-costume.svg",
  13909. extra: 981/854,
  13910. bottom: 57/1038
  13911. }
  13912. },
  13913. },
  13914. [
  13915. {
  13916. name: "Micro",
  13917. height: math.unit(3, "inches")
  13918. },
  13919. {
  13920. name: "Normal",
  13921. height: math.unit(7 + 4 / 12, "feet"),
  13922. default: true
  13923. },
  13924. {
  13925. name: "Macro",
  13926. height: math.unit(220, "feet")
  13927. },
  13928. {
  13929. name: "Megamacro",
  13930. height: math.unit(11, "miles")
  13931. },
  13932. ]
  13933. ))
  13934. characterMakers.push(() => makeCharacter(
  13935. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13936. {
  13937. front: {
  13938. height: math.unit(7 + 4/12, "feet"),
  13939. weight: math.unit(750, "lb"),
  13940. name: "Front",
  13941. image: {
  13942. source: "./media/characters/regena-maxwell/front.svg",
  13943. extra: 984/856,
  13944. bottom: 87/1071
  13945. }
  13946. },
  13947. back: {
  13948. height: math.unit(7 + 4/12, "feet"),
  13949. weight: math.unit(750, "lb"),
  13950. name: "Back",
  13951. image: {
  13952. source: "./media/characters/regena-maxwell/back.svg",
  13953. extra: 981/854,
  13954. bottom: 57/1038
  13955. }
  13956. },
  13957. frontCostume: {
  13958. height: math.unit(7 + 4/12, "feet"),
  13959. weight: math.unit(750, "lb"),
  13960. name: "Front (Costume)",
  13961. image: {
  13962. source: "./media/characters/regena-maxwell/front-costume.svg",
  13963. extra: 984/856,
  13964. bottom: 87/1071
  13965. }
  13966. },
  13967. backcostume: {
  13968. height: math.unit(7 + 4/12, "feet"),
  13969. weight: math.unit(750, "lb"),
  13970. name: "Back (Costume)",
  13971. image: {
  13972. source: "./media/characters/regena-maxwell/back-costume.svg",
  13973. extra: 981/854,
  13974. bottom: 57/1038
  13975. }
  13976. },
  13977. },
  13978. [
  13979. {
  13980. name: "Normal",
  13981. height: math.unit(7 + 4 / 12, "feet"),
  13982. default: true
  13983. },
  13984. {
  13985. name: "Macro",
  13986. height: math.unit(220, "feet")
  13987. },
  13988. {
  13989. name: "Megamacro",
  13990. height: math.unit(11, "miles")
  13991. },
  13992. ]
  13993. ))
  13994. characterMakers.push(() => makeCharacter(
  13995. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13996. {
  13997. front: {
  13998. height: math.unit(6, "feet"),
  13999. weight: math.unit(150, "lb"),
  14000. name: "Front",
  14001. image: {
  14002. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14003. extra: 860 / 690,
  14004. bottom: 0.03
  14005. }
  14006. },
  14007. },
  14008. [
  14009. {
  14010. name: "Normal",
  14011. height: math.unit(1.7, "meters"),
  14012. default: true
  14013. },
  14014. ]
  14015. ))
  14016. characterMakers.push(() => makeCharacter(
  14017. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14018. {
  14019. front: {
  14020. height: math.unit(6, "feet"),
  14021. weight: math.unit(150, "lb"),
  14022. name: "Front",
  14023. image: {
  14024. source: "./media/characters/quilly/front.svg",
  14025. extra: 890 / 776
  14026. }
  14027. },
  14028. },
  14029. [
  14030. {
  14031. name: "Gigamacro",
  14032. height: math.unit(404090, "miles"),
  14033. default: true
  14034. },
  14035. ]
  14036. ))
  14037. characterMakers.push(() => makeCharacter(
  14038. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14039. {
  14040. front: {
  14041. height: math.unit(7 + 8 / 12, "feet"),
  14042. weight: math.unit(350, "lb"),
  14043. name: "Front",
  14044. image: {
  14045. source: "./media/characters/tempest/front.svg",
  14046. extra: 1175 / 1086,
  14047. bottom: 0.02
  14048. }
  14049. },
  14050. },
  14051. [
  14052. {
  14053. name: "Normal",
  14054. height: math.unit(7 + 8 / 12, "feet"),
  14055. default: true
  14056. },
  14057. ]
  14058. ))
  14059. characterMakers.push(() => makeCharacter(
  14060. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14061. {
  14062. side: {
  14063. height: math.unit(4 + 5 / 12, "feet"),
  14064. weight: math.unit(80, "lb"),
  14065. name: "Side",
  14066. image: {
  14067. source: "./media/characters/rodger/side.svg",
  14068. extra: 1235 / 1118
  14069. }
  14070. },
  14071. },
  14072. [
  14073. {
  14074. name: "Micro",
  14075. height: math.unit(1, "inch")
  14076. },
  14077. {
  14078. name: "Normal",
  14079. height: math.unit(4 + 5 / 12, "feet"),
  14080. default: true
  14081. },
  14082. {
  14083. name: "Macro",
  14084. height: math.unit(120, "feet")
  14085. },
  14086. ]
  14087. ))
  14088. characterMakers.push(() => makeCharacter(
  14089. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14090. {
  14091. front: {
  14092. height: math.unit(6, "feet"),
  14093. weight: math.unit(150, "lb"),
  14094. name: "Front",
  14095. image: {
  14096. source: "./media/characters/danyel/front.svg",
  14097. extra: 1185 / 1123,
  14098. bottom: 0.05
  14099. }
  14100. },
  14101. },
  14102. [
  14103. {
  14104. name: "Shrunken",
  14105. height: math.unit(0.5, "mm")
  14106. },
  14107. {
  14108. name: "Micro",
  14109. height: math.unit(1, "mm"),
  14110. default: true
  14111. },
  14112. {
  14113. name: "Upsized",
  14114. height: math.unit(5 + 5 / 12, "feet")
  14115. },
  14116. ]
  14117. ))
  14118. characterMakers.push(() => makeCharacter(
  14119. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14120. {
  14121. front: {
  14122. height: math.unit(5 + 6 / 12, "feet"),
  14123. weight: math.unit(200, "lb"),
  14124. name: "Front",
  14125. image: {
  14126. source: "./media/characters/vivian-bijoux/front.svg",
  14127. extra: 1217/1209,
  14128. bottom: 76/1293
  14129. }
  14130. },
  14131. back: {
  14132. height: math.unit(5 + 6 / 12, "feet"),
  14133. weight: math.unit(200, "lb"),
  14134. name: "Back",
  14135. image: {
  14136. source: "./media/characters/vivian-bijoux/back.svg",
  14137. extra: 1214/1208,
  14138. bottom: 51/1265
  14139. }
  14140. },
  14141. dressed: {
  14142. height: math.unit(5 + 6 / 12, "feet"),
  14143. weight: math.unit(200, "lb"),
  14144. name: "Dressed",
  14145. image: {
  14146. source: "./media/characters/vivian-bijoux/dressed.svg",
  14147. extra: 1217/1209,
  14148. bottom: 76/1293
  14149. }
  14150. },
  14151. },
  14152. [
  14153. {
  14154. name: "Normal",
  14155. height: math.unit(5 + 6 / 12, "feet"),
  14156. default: true
  14157. },
  14158. {
  14159. name: "Bad Dream",
  14160. height: math.unit(500, "feet")
  14161. },
  14162. {
  14163. name: "Nightmare",
  14164. height: math.unit(500, "miles")
  14165. },
  14166. ]
  14167. ))
  14168. characterMakers.push(() => makeCharacter(
  14169. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14170. {
  14171. front: {
  14172. height: math.unit(6 + 1 / 12, "feet"),
  14173. weight: math.unit(260, "lb"),
  14174. name: "Front",
  14175. image: {
  14176. source: "./media/characters/zeta/front.svg",
  14177. extra: 1968 / 1889,
  14178. bottom: 0.06
  14179. }
  14180. },
  14181. back: {
  14182. height: math.unit(6 + 1 / 12, "feet"),
  14183. weight: math.unit(260, "lb"),
  14184. name: "Back",
  14185. image: {
  14186. source: "./media/characters/zeta/back.svg",
  14187. extra: 1944 / 1858,
  14188. bottom: 0.03
  14189. }
  14190. },
  14191. hand: {
  14192. height: math.unit(1.112, "feet"),
  14193. name: "Hand",
  14194. image: {
  14195. source: "./media/characters/zeta/hand.svg"
  14196. }
  14197. },
  14198. foot: {
  14199. height: math.unit(1.48, "feet"),
  14200. name: "Foot",
  14201. image: {
  14202. source: "./media/characters/zeta/foot.svg"
  14203. }
  14204. },
  14205. },
  14206. [
  14207. {
  14208. name: "Micro",
  14209. height: math.unit(6, "inches")
  14210. },
  14211. {
  14212. name: "Normal",
  14213. height: math.unit(6 + 1 / 12, "feet"),
  14214. default: true
  14215. },
  14216. {
  14217. name: "Macro",
  14218. height: math.unit(20, "feet")
  14219. },
  14220. ]
  14221. ))
  14222. characterMakers.push(() => makeCharacter(
  14223. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14224. {
  14225. front: {
  14226. height: math.unit(6, "feet"),
  14227. weight: math.unit(150, "lb"),
  14228. name: "Front",
  14229. image: {
  14230. source: "./media/characters/jamie-larsen/front.svg",
  14231. extra: 962 / 933,
  14232. bottom: 0.02
  14233. }
  14234. },
  14235. back: {
  14236. height: math.unit(6, "feet"),
  14237. weight: math.unit(150, "lb"),
  14238. name: "Back",
  14239. image: {
  14240. source: "./media/characters/jamie-larsen/back.svg",
  14241. extra: 997 / 946
  14242. }
  14243. },
  14244. },
  14245. [
  14246. {
  14247. name: "Macro",
  14248. height: math.unit(28 + 7 / 12, "feet"),
  14249. default: true
  14250. },
  14251. {
  14252. name: "Macro+",
  14253. height: math.unit(180, "feet")
  14254. },
  14255. {
  14256. name: "Megamacro",
  14257. height: math.unit(10, "miles")
  14258. },
  14259. {
  14260. name: "Gigamacro",
  14261. height: math.unit(200000, "miles")
  14262. },
  14263. ]
  14264. ))
  14265. characterMakers.push(() => makeCharacter(
  14266. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14267. {
  14268. front: {
  14269. height: math.unit(6, "feet"),
  14270. weight: math.unit(120, "lb"),
  14271. name: "Front",
  14272. image: {
  14273. source: "./media/characters/vance/front.svg",
  14274. extra: 1980 / 1890,
  14275. bottom: 0.09
  14276. }
  14277. },
  14278. back: {
  14279. height: math.unit(6, "feet"),
  14280. weight: math.unit(120, "lb"),
  14281. name: "Back",
  14282. image: {
  14283. source: "./media/characters/vance/back.svg",
  14284. extra: 2081 / 1994,
  14285. bottom: 0.014
  14286. }
  14287. },
  14288. hand: {
  14289. height: math.unit(0.88, "feet"),
  14290. name: "Hand",
  14291. image: {
  14292. source: "./media/characters/vance/hand.svg"
  14293. }
  14294. },
  14295. foot: {
  14296. height: math.unit(0.64, "feet"),
  14297. name: "Foot",
  14298. image: {
  14299. source: "./media/characters/vance/foot.svg"
  14300. }
  14301. },
  14302. },
  14303. [
  14304. {
  14305. name: "Small",
  14306. height: math.unit(90, "feet"),
  14307. default: true
  14308. },
  14309. {
  14310. name: "Macro",
  14311. height: math.unit(100, "meters")
  14312. },
  14313. {
  14314. name: "Megamacro",
  14315. height: math.unit(15, "miles")
  14316. },
  14317. ]
  14318. ))
  14319. characterMakers.push(() => makeCharacter(
  14320. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14321. {
  14322. front: {
  14323. height: math.unit(6, "feet"),
  14324. weight: math.unit(180, "lb"),
  14325. name: "Front",
  14326. image: {
  14327. source: "./media/characters/xochitl/front.svg",
  14328. extra: 2297 / 2261,
  14329. bottom: 0.065
  14330. }
  14331. },
  14332. back: {
  14333. height: math.unit(6, "feet"),
  14334. weight: math.unit(180, "lb"),
  14335. name: "Back",
  14336. image: {
  14337. source: "./media/characters/xochitl/back.svg",
  14338. extra: 2386 / 2354,
  14339. bottom: 0.01
  14340. }
  14341. },
  14342. foot: {
  14343. height: math.unit(6 / 5 * 1.15, "feet"),
  14344. weight: math.unit(150, "lb"),
  14345. name: "Foot",
  14346. image: {
  14347. source: "./media/characters/xochitl/foot.svg"
  14348. }
  14349. },
  14350. },
  14351. [
  14352. {
  14353. name: "Macro",
  14354. height: math.unit(80, "feet")
  14355. },
  14356. {
  14357. name: "Macro+",
  14358. height: math.unit(400, "feet"),
  14359. default: true
  14360. },
  14361. {
  14362. name: "Gigamacro",
  14363. height: math.unit(80000, "miles")
  14364. },
  14365. {
  14366. name: "Gigamacro+",
  14367. height: math.unit(400000, "miles")
  14368. },
  14369. {
  14370. name: "Teramacro",
  14371. height: math.unit(300, "AU")
  14372. },
  14373. ]
  14374. ))
  14375. characterMakers.push(() => makeCharacter(
  14376. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14377. {
  14378. front: {
  14379. height: math.unit(6, "feet"),
  14380. weight: math.unit(150, "lb"),
  14381. name: "Front",
  14382. image: {
  14383. source: "./media/characters/vincent/front.svg",
  14384. extra: 1130 / 1080,
  14385. bottom: 0.055
  14386. }
  14387. },
  14388. beak: {
  14389. height: math.unit(6 * 0.1, "feet"),
  14390. name: "Beak",
  14391. image: {
  14392. source: "./media/characters/vincent/beak.svg"
  14393. }
  14394. },
  14395. hand: {
  14396. height: math.unit(6 * 0.85, "feet"),
  14397. weight: math.unit(150, "lb"),
  14398. name: "Hand",
  14399. image: {
  14400. source: "./media/characters/vincent/hand.svg"
  14401. }
  14402. },
  14403. foot: {
  14404. height: math.unit(6 * 0.19, "feet"),
  14405. weight: math.unit(150, "lb"),
  14406. name: "Foot",
  14407. image: {
  14408. source: "./media/characters/vincent/foot.svg"
  14409. }
  14410. },
  14411. },
  14412. [
  14413. {
  14414. name: "Base",
  14415. height: math.unit(6 + 5 / 12, "feet"),
  14416. default: true
  14417. },
  14418. {
  14419. name: "Macro",
  14420. height: math.unit(300, "feet")
  14421. },
  14422. {
  14423. name: "Megamacro",
  14424. height: math.unit(2, "miles")
  14425. },
  14426. {
  14427. name: "Gigamacro",
  14428. height: math.unit(1000, "miles")
  14429. },
  14430. ]
  14431. ))
  14432. characterMakers.push(() => makeCharacter(
  14433. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14434. {
  14435. front: {
  14436. height: math.unit(2, "meters"),
  14437. weight: math.unit(500, "kg"),
  14438. name: "Front",
  14439. image: {
  14440. source: "./media/characters/coatl/front.svg",
  14441. extra: 3948 / 3500,
  14442. bottom: 0.082
  14443. }
  14444. },
  14445. },
  14446. [
  14447. {
  14448. name: "Normal",
  14449. height: math.unit(4, "meters")
  14450. },
  14451. {
  14452. name: "Macro",
  14453. height: math.unit(100, "meters"),
  14454. default: true
  14455. },
  14456. {
  14457. name: "Macro+",
  14458. height: math.unit(300, "meters")
  14459. },
  14460. {
  14461. name: "Megamacro",
  14462. height: math.unit(3, "gigameters")
  14463. },
  14464. {
  14465. name: "Megamacro+",
  14466. height: math.unit(300, "terameters")
  14467. },
  14468. {
  14469. name: "Megamacro++",
  14470. height: math.unit(3, "lightyears")
  14471. },
  14472. ]
  14473. ))
  14474. characterMakers.push(() => makeCharacter(
  14475. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14476. {
  14477. front: {
  14478. height: math.unit(6, "feet"),
  14479. weight: math.unit(50, "kg"),
  14480. name: "front",
  14481. image: {
  14482. source: "./media/characters/shiroryu/front.svg",
  14483. extra: 1990 / 1935
  14484. }
  14485. },
  14486. },
  14487. [
  14488. {
  14489. name: "Mortal Mingling",
  14490. height: math.unit(3, "meters")
  14491. },
  14492. {
  14493. name: "Kaiju-ish",
  14494. height: math.unit(250, "meters")
  14495. },
  14496. {
  14497. name: "Somewhat Godly",
  14498. height: math.unit(400, "km"),
  14499. default: true
  14500. },
  14501. {
  14502. name: "Planetary",
  14503. height: math.unit(300, "megameters")
  14504. },
  14505. {
  14506. name: "Galaxy-dwarfing",
  14507. height: math.unit(450, "kiloparsecs")
  14508. },
  14509. {
  14510. name: "Universe Eater",
  14511. height: math.unit(150, "gigaparsecs")
  14512. },
  14513. {
  14514. name: "Almost Immeasurable",
  14515. height: math.unit(1.3e266, "yottaparsecs")
  14516. },
  14517. ]
  14518. ))
  14519. characterMakers.push(() => makeCharacter(
  14520. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14521. {
  14522. front: {
  14523. height: math.unit(6, "feet"),
  14524. weight: math.unit(150, "lb"),
  14525. name: "Front",
  14526. image: {
  14527. source: "./media/characters/umeko/front.svg",
  14528. extra: 1,
  14529. bottom: 0.019
  14530. }
  14531. },
  14532. frontArmored: {
  14533. height: math.unit(6, "feet"),
  14534. weight: math.unit(150, "lb"),
  14535. name: "Front (Armored)",
  14536. image: {
  14537. source: "./media/characters/umeko/front-armored.svg",
  14538. extra: 1,
  14539. bottom: 0.021
  14540. }
  14541. },
  14542. },
  14543. [
  14544. {
  14545. name: "Macro",
  14546. height: math.unit(220, "feet"),
  14547. default: true
  14548. },
  14549. {
  14550. name: "Guardian Dragon",
  14551. height: math.unit(50, "miles")
  14552. },
  14553. {
  14554. name: "Cosmic",
  14555. height: math.unit(800000, "miles")
  14556. },
  14557. ]
  14558. ))
  14559. characterMakers.push(() => makeCharacter(
  14560. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14561. {
  14562. front: {
  14563. height: math.unit(6, "feet"),
  14564. weight: math.unit(150, "lb"),
  14565. name: "Front",
  14566. image: {
  14567. source: "./media/characters/cassidy/front.svg",
  14568. extra: 810/808,
  14569. bottom: 41/851
  14570. }
  14571. },
  14572. },
  14573. [
  14574. {
  14575. name: "Canon Height",
  14576. height: math.unit(120, "feet"),
  14577. default: true
  14578. },
  14579. {
  14580. name: "Macro+",
  14581. height: math.unit(400, "feet")
  14582. },
  14583. {
  14584. name: "Macro++",
  14585. height: math.unit(4000, "feet")
  14586. },
  14587. {
  14588. name: "Megamacro",
  14589. height: math.unit(3, "miles")
  14590. },
  14591. ]
  14592. ))
  14593. characterMakers.push(() => makeCharacter(
  14594. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14595. {
  14596. front: {
  14597. height: math.unit(6, "feet"),
  14598. weight: math.unit(150, "lb"),
  14599. name: "Front",
  14600. image: {
  14601. source: "./media/characters/isaac/front.svg",
  14602. extra: 896 / 815,
  14603. bottom: 0.11
  14604. }
  14605. },
  14606. },
  14607. [
  14608. {
  14609. name: "Human Size",
  14610. height: math.unit(8, "feet"),
  14611. default: true
  14612. },
  14613. {
  14614. name: "Macro",
  14615. height: math.unit(400, "feet")
  14616. },
  14617. {
  14618. name: "Megamacro",
  14619. height: math.unit(50, "miles")
  14620. },
  14621. {
  14622. name: "Canon Height",
  14623. height: math.unit(200, "AU")
  14624. },
  14625. ]
  14626. ))
  14627. characterMakers.push(() => makeCharacter(
  14628. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14629. {
  14630. front: {
  14631. height: math.unit(6, "feet"),
  14632. weight: math.unit(72, "kg"),
  14633. name: "Front",
  14634. image: {
  14635. source: "./media/characters/sleekit/front.svg",
  14636. extra: 4693 / 4487,
  14637. bottom: 0.012
  14638. }
  14639. },
  14640. },
  14641. [
  14642. {
  14643. name: "Minimum Height",
  14644. height: math.unit(10, "meters")
  14645. },
  14646. {
  14647. name: "Smaller",
  14648. height: math.unit(25, "meters")
  14649. },
  14650. {
  14651. name: "Larger",
  14652. height: math.unit(38, "meters"),
  14653. default: true
  14654. },
  14655. {
  14656. name: "Maximum height",
  14657. height: math.unit(100, "meters")
  14658. },
  14659. ]
  14660. ))
  14661. characterMakers.push(() => makeCharacter(
  14662. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14663. {
  14664. front: {
  14665. height: math.unit(6, "feet"),
  14666. weight: math.unit(150, "lb"),
  14667. name: "Front",
  14668. image: {
  14669. source: "./media/characters/nillia/front.svg",
  14670. extra: 2195 / 2037,
  14671. bottom: 0.005
  14672. }
  14673. },
  14674. back: {
  14675. height: math.unit(6, "feet"),
  14676. weight: math.unit(150, "lb"),
  14677. name: "Back",
  14678. image: {
  14679. source: "./media/characters/nillia/back.svg",
  14680. extra: 2195 / 2037,
  14681. bottom: 0.005
  14682. }
  14683. },
  14684. },
  14685. [
  14686. {
  14687. name: "Canon Height",
  14688. height: math.unit(489, "feet"),
  14689. default: true
  14690. }
  14691. ]
  14692. ))
  14693. characterMakers.push(() => makeCharacter(
  14694. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14695. {
  14696. front: {
  14697. height: math.unit(6, "feet"),
  14698. weight: math.unit(150, "lb"),
  14699. name: "Front",
  14700. image: {
  14701. source: "./media/characters/mesmyriza/front.svg",
  14702. extra: 2067 / 1784,
  14703. bottom: 0.035
  14704. }
  14705. },
  14706. foot: {
  14707. height: math.unit(6 / (250 / 35), "feet"),
  14708. name: "Foot",
  14709. image: {
  14710. source: "./media/characters/mesmyriza/foot.svg"
  14711. }
  14712. },
  14713. },
  14714. [
  14715. {
  14716. name: "Macro",
  14717. height: math.unit(457, "meters"),
  14718. default: true
  14719. },
  14720. {
  14721. name: "Megamacro",
  14722. height: math.unit(8, "megameters")
  14723. },
  14724. ]
  14725. ))
  14726. characterMakers.push(() => makeCharacter(
  14727. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14728. {
  14729. front: {
  14730. height: math.unit(6, "feet"),
  14731. weight: math.unit(250, "lb"),
  14732. name: "Front",
  14733. image: {
  14734. source: "./media/characters/saudade/front.svg",
  14735. extra: 1172 / 1139,
  14736. bottom: 0.035
  14737. }
  14738. },
  14739. },
  14740. [
  14741. {
  14742. name: "Micro",
  14743. height: math.unit(3, "inches")
  14744. },
  14745. {
  14746. name: "Normal",
  14747. height: math.unit(6, "feet"),
  14748. default: true
  14749. },
  14750. {
  14751. name: "Macro",
  14752. height: math.unit(50, "feet")
  14753. },
  14754. {
  14755. name: "Megamacro",
  14756. height: math.unit(2800, "feet")
  14757. },
  14758. ]
  14759. ))
  14760. characterMakers.push(() => makeCharacter(
  14761. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14762. {
  14763. front: {
  14764. height: math.unit(5 + 4 / 12, "feet"),
  14765. weight: math.unit(100, "lb"),
  14766. name: "Front",
  14767. image: {
  14768. source: "./media/characters/keireer/front.svg",
  14769. extra: 716 / 666,
  14770. bottom: 0.05
  14771. }
  14772. },
  14773. },
  14774. [
  14775. {
  14776. name: "Normal",
  14777. height: math.unit(5 + 4 / 12, "feet"),
  14778. default: true
  14779. },
  14780. ]
  14781. ))
  14782. characterMakers.push(() => makeCharacter(
  14783. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14784. {
  14785. front: {
  14786. height: math.unit(6, "feet"),
  14787. weight: math.unit(90, "kg"),
  14788. name: "Front",
  14789. image: {
  14790. source: "./media/characters/mirja/front.svg",
  14791. extra: 1789 / 1683,
  14792. bottom: 0.05
  14793. }
  14794. },
  14795. frontDressed: {
  14796. height: math.unit(6, "feet"),
  14797. weight: math.unit(90, "lb"),
  14798. name: "Front (Dressed)",
  14799. image: {
  14800. source: "./media/characters/mirja/front-dressed.svg",
  14801. extra: 1789 / 1683,
  14802. bottom: 0.05
  14803. }
  14804. },
  14805. back: {
  14806. height: math.unit(6, "feet"),
  14807. weight: math.unit(90, "lb"),
  14808. name: "Back",
  14809. image: {
  14810. source: "./media/characters/mirja/back.svg",
  14811. extra: 953 / 917,
  14812. bottom: 0.017
  14813. }
  14814. },
  14815. },
  14816. [
  14817. {
  14818. name: "\"Incognito\"",
  14819. height: math.unit(3, "meters")
  14820. },
  14821. {
  14822. name: "Strolling Size",
  14823. height: math.unit(15, "km")
  14824. },
  14825. {
  14826. name: "Larger Strolling Size",
  14827. height: math.unit(400, "km")
  14828. },
  14829. {
  14830. name: "Preferred Size",
  14831. height: math.unit(5000, "km")
  14832. },
  14833. {
  14834. name: "True Size",
  14835. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14836. default: true
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14842. {
  14843. front: {
  14844. height: math.unit(15, "feet"),
  14845. weight: math.unit(880, "kg"),
  14846. name: "Front",
  14847. image: {
  14848. source: "./media/characters/nightraver/front.svg",
  14849. extra: 2444 / 2160,
  14850. bottom: 0.027
  14851. }
  14852. },
  14853. back: {
  14854. height: math.unit(15, "feet"),
  14855. weight: math.unit(880, "kg"),
  14856. name: "Back",
  14857. image: {
  14858. source: "./media/characters/nightraver/back.svg",
  14859. extra: 2309 / 2180,
  14860. bottom: 0.005
  14861. }
  14862. },
  14863. sole: {
  14864. height: math.unit(2.878, "feet"),
  14865. name: "Sole",
  14866. image: {
  14867. source: "./media/characters/nightraver/sole.svg"
  14868. }
  14869. },
  14870. foot: {
  14871. height: math.unit(2.285, "feet"),
  14872. name: "Foot",
  14873. image: {
  14874. source: "./media/characters/nightraver/foot.svg"
  14875. }
  14876. },
  14877. maw: {
  14878. height: math.unit(2.67, "feet"),
  14879. name: "Maw",
  14880. image: {
  14881. source: "./media/characters/nightraver/maw.svg"
  14882. }
  14883. },
  14884. },
  14885. [
  14886. {
  14887. name: "Micro",
  14888. height: math.unit(1, "cm")
  14889. },
  14890. {
  14891. name: "Normal",
  14892. height: math.unit(15, "feet"),
  14893. default: true
  14894. },
  14895. {
  14896. name: "Macro",
  14897. height: math.unit(300, "feet")
  14898. },
  14899. {
  14900. name: "Megamacro",
  14901. height: math.unit(300, "miles")
  14902. },
  14903. {
  14904. name: "Gigamacro",
  14905. height: math.unit(10000, "miles")
  14906. },
  14907. ]
  14908. ))
  14909. characterMakers.push(() => makeCharacter(
  14910. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14911. {
  14912. side: {
  14913. height: math.unit(2, "inches"),
  14914. weight: math.unit(5, "grams"),
  14915. name: "Side",
  14916. image: {
  14917. source: "./media/characters/arc/side.svg"
  14918. }
  14919. },
  14920. },
  14921. [
  14922. {
  14923. name: "Micro",
  14924. height: math.unit(2, "inches"),
  14925. default: true
  14926. },
  14927. ]
  14928. ))
  14929. characterMakers.push(() => makeCharacter(
  14930. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14931. {
  14932. front: {
  14933. height: math.unit(1.1938, "meters"),
  14934. weight: math.unit(54, "kg"),
  14935. name: "Front",
  14936. image: {
  14937. source: "./media/characters/nebula-shahar/front.svg",
  14938. extra: 1642 / 1436,
  14939. bottom: 0.06
  14940. }
  14941. },
  14942. },
  14943. [
  14944. {
  14945. name: "Megamicro",
  14946. height: math.unit(0.3, "mm")
  14947. },
  14948. {
  14949. name: "Micro",
  14950. height: math.unit(3, "cm")
  14951. },
  14952. {
  14953. name: "Normal",
  14954. height: math.unit(138, "cm"),
  14955. default: true
  14956. },
  14957. {
  14958. name: "Macro",
  14959. height: math.unit(30, "m")
  14960. },
  14961. ]
  14962. ))
  14963. characterMakers.push(() => makeCharacter(
  14964. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14965. {
  14966. front: {
  14967. height: math.unit(5.24, "feet"),
  14968. weight: math.unit(150, "lb"),
  14969. name: "Front",
  14970. image: {
  14971. source: "./media/characters/shayla/front.svg",
  14972. extra: 1512 / 1414,
  14973. bottom: 0.01
  14974. }
  14975. },
  14976. back: {
  14977. height: math.unit(5.24, "feet"),
  14978. weight: math.unit(150, "lb"),
  14979. name: "Back",
  14980. image: {
  14981. source: "./media/characters/shayla/back.svg",
  14982. extra: 1512 / 1414
  14983. }
  14984. },
  14985. hand: {
  14986. height: math.unit(0.7781496062992126, "feet"),
  14987. name: "Hand",
  14988. image: {
  14989. source: "./media/characters/shayla/hand.svg"
  14990. }
  14991. },
  14992. foot: {
  14993. height: math.unit(1.4206036745406823, "feet"),
  14994. name: "Foot",
  14995. image: {
  14996. source: "./media/characters/shayla/foot.svg"
  14997. }
  14998. },
  14999. },
  15000. [
  15001. {
  15002. name: "Micro",
  15003. height: math.unit(0.32, "feet")
  15004. },
  15005. {
  15006. name: "Normal",
  15007. height: math.unit(5.24, "feet"),
  15008. default: true
  15009. },
  15010. {
  15011. name: "Macro",
  15012. height: math.unit(492.12, "feet")
  15013. },
  15014. {
  15015. name: "Megamacro",
  15016. height: math.unit(186.41, "miles")
  15017. },
  15018. ]
  15019. ))
  15020. characterMakers.push(() => makeCharacter(
  15021. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15022. {
  15023. front: {
  15024. height: math.unit(2.2, "m"),
  15025. weight: math.unit(120, "kg"),
  15026. name: "Front",
  15027. image: {
  15028. source: "./media/characters/pia-jr/front.svg",
  15029. extra: 1000 / 970,
  15030. bottom: 0.035
  15031. }
  15032. },
  15033. hand: {
  15034. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15035. name: "Hand",
  15036. image: {
  15037. source: "./media/characters/pia-jr/hand.svg"
  15038. }
  15039. },
  15040. paw: {
  15041. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15042. name: "Paw",
  15043. image: {
  15044. source: "./media/characters/pia-jr/paw.svg"
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Micro",
  15051. height: math.unit(1.2, "cm")
  15052. },
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(2.2, "m"),
  15056. default: true
  15057. },
  15058. {
  15059. name: "Macro",
  15060. height: math.unit(180, "m")
  15061. },
  15062. {
  15063. name: "Megamacro",
  15064. height: math.unit(420, "km")
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15070. {
  15071. front: {
  15072. height: math.unit(2, "m"),
  15073. weight: math.unit(115, "kg"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/pia-sr/front.svg",
  15077. extra: 760 / 730,
  15078. bottom: 0.015
  15079. }
  15080. },
  15081. back: {
  15082. height: math.unit(2, "m"),
  15083. weight: math.unit(115, "kg"),
  15084. name: "Back",
  15085. image: {
  15086. source: "./media/characters/pia-sr/back.svg",
  15087. extra: 760 / 730,
  15088. bottom: 0.01
  15089. }
  15090. },
  15091. hand: {
  15092. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15093. name: "Hand",
  15094. image: {
  15095. source: "./media/characters/pia-sr/hand.svg"
  15096. }
  15097. },
  15098. foot: {
  15099. height: math.unit(1.83, "feet"),
  15100. name: "Foot",
  15101. image: {
  15102. source: "./media/characters/pia-sr/foot.svg"
  15103. }
  15104. },
  15105. },
  15106. [
  15107. {
  15108. name: "Micro",
  15109. height: math.unit(88, "mm")
  15110. },
  15111. {
  15112. name: "Normal",
  15113. height: math.unit(2, "m"),
  15114. default: true
  15115. },
  15116. {
  15117. name: "Macro",
  15118. height: math.unit(200, "m")
  15119. },
  15120. {
  15121. name: "Megamacro",
  15122. height: math.unit(420, "km")
  15123. },
  15124. ]
  15125. ))
  15126. characterMakers.push(() => makeCharacter(
  15127. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15128. {
  15129. front: {
  15130. height: math.unit(8 + 2 / 12, "feet"),
  15131. weight: math.unit(300, "lb"),
  15132. name: "Front",
  15133. image: {
  15134. source: "./media/characters/kibibyte/front.svg",
  15135. extra: 2221 / 2098,
  15136. bottom: 0.04
  15137. }
  15138. },
  15139. },
  15140. [
  15141. {
  15142. name: "Normal",
  15143. height: math.unit(8 + 2 / 12, "feet"),
  15144. default: true
  15145. },
  15146. {
  15147. name: "Socialable Macro",
  15148. height: math.unit(50, "feet")
  15149. },
  15150. {
  15151. name: "Macro",
  15152. height: math.unit(300, "feet")
  15153. },
  15154. {
  15155. name: "Megamacro",
  15156. height: math.unit(500, "miles")
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15162. {
  15163. front: {
  15164. height: math.unit(6, "feet"),
  15165. weight: math.unit(150, "lb"),
  15166. name: "Front",
  15167. image: {
  15168. source: "./media/characters/felix/front.svg",
  15169. extra: 762 / 722,
  15170. bottom: 0.02
  15171. }
  15172. },
  15173. frontClothed: {
  15174. height: math.unit(6, "feet"),
  15175. weight: math.unit(150, "lb"),
  15176. name: "Front (Clothed)",
  15177. image: {
  15178. source: "./media/characters/felix/front-clothed.svg",
  15179. extra: 762 / 722,
  15180. bottom: 0.02
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Normal",
  15187. height: math.unit(6 + 8 / 12, "feet"),
  15188. default: true
  15189. },
  15190. {
  15191. name: "Macro",
  15192. height: math.unit(2600, "feet")
  15193. },
  15194. {
  15195. name: "Megamacro",
  15196. height: math.unit(450, "miles")
  15197. },
  15198. ]
  15199. ))
  15200. characterMakers.push(() => makeCharacter(
  15201. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15202. {
  15203. front: {
  15204. height: math.unit(6 + 1 / 12, "feet"),
  15205. weight: math.unit(250, "lb"),
  15206. name: "Front",
  15207. image: {
  15208. source: "./media/characters/tobo/front.svg",
  15209. extra: 608 / 586,
  15210. bottom: 0.023
  15211. }
  15212. },
  15213. back: {
  15214. height: math.unit(6 + 1 / 12, "feet"),
  15215. weight: math.unit(250, "lb"),
  15216. name: "Back",
  15217. image: {
  15218. source: "./media/characters/tobo/back.svg",
  15219. extra: 608 / 586
  15220. }
  15221. },
  15222. },
  15223. [
  15224. {
  15225. name: "Nano",
  15226. height: math.unit(2, "nm")
  15227. },
  15228. {
  15229. name: "Megamicro",
  15230. height: math.unit(0.1, "mm")
  15231. },
  15232. {
  15233. name: "Micro",
  15234. height: math.unit(1, "inch"),
  15235. default: true
  15236. },
  15237. {
  15238. name: "Human-sized",
  15239. height: math.unit(6 + 1 / 12, "feet")
  15240. },
  15241. {
  15242. name: "Macro",
  15243. height: math.unit(250, "feet")
  15244. },
  15245. {
  15246. name: "Megamacro",
  15247. height: math.unit(75, "miles")
  15248. },
  15249. {
  15250. name: "Texas-sized",
  15251. height: math.unit(750, "miles")
  15252. },
  15253. {
  15254. name: "Teramacro",
  15255. height: math.unit(50000, "miles")
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15261. {
  15262. front: {
  15263. height: math.unit(6, "feet"),
  15264. weight: math.unit(269, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/danny-kapowsky/front.svg",
  15268. extra: 766 / 736,
  15269. bottom: 0.044
  15270. }
  15271. },
  15272. back: {
  15273. height: math.unit(6, "feet"),
  15274. weight: math.unit(269, "lb"),
  15275. name: "Back",
  15276. image: {
  15277. source: "./media/characters/danny-kapowsky/back.svg",
  15278. extra: 797 / 760,
  15279. bottom: 0.025
  15280. }
  15281. },
  15282. },
  15283. [
  15284. {
  15285. name: "Macro",
  15286. height: math.unit(150, "feet"),
  15287. default: true
  15288. },
  15289. {
  15290. name: "Macro+",
  15291. height: math.unit(200, "feet")
  15292. },
  15293. {
  15294. name: "Macro++",
  15295. height: math.unit(300, "feet")
  15296. },
  15297. {
  15298. name: "Macro+++",
  15299. height: math.unit(400, "feet")
  15300. },
  15301. ]
  15302. ))
  15303. characterMakers.push(() => makeCharacter(
  15304. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15305. {
  15306. side: {
  15307. height: math.unit(6, "feet"),
  15308. weight: math.unit(170, "lb"),
  15309. name: "Side",
  15310. image: {
  15311. source: "./media/characters/finn/side.svg",
  15312. extra: 1953 / 1807,
  15313. bottom: 0.057
  15314. }
  15315. },
  15316. },
  15317. [
  15318. {
  15319. name: "Megamacro",
  15320. height: math.unit(14445, "feet"),
  15321. default: true
  15322. },
  15323. ]
  15324. ))
  15325. characterMakers.push(() => makeCharacter(
  15326. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15327. {
  15328. front: {
  15329. height: math.unit(5 + 6 / 12, "feet"),
  15330. weight: math.unit(125, "lb"),
  15331. name: "Front",
  15332. image: {
  15333. source: "./media/characters/roy/front.svg",
  15334. extra: 1,
  15335. bottom: 0.11
  15336. }
  15337. },
  15338. },
  15339. [
  15340. {
  15341. name: "Micro",
  15342. height: math.unit(3, "inches"),
  15343. default: true
  15344. },
  15345. {
  15346. name: "Normal",
  15347. height: math.unit(5 + 6 / 12, "feet")
  15348. },
  15349. {
  15350. name: "Lesser Macro",
  15351. height: math.unit(60, "feet")
  15352. },
  15353. {
  15354. name: "Greater Macro",
  15355. height: math.unit(120, "feet")
  15356. },
  15357. ]
  15358. ))
  15359. characterMakers.push(() => makeCharacter(
  15360. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15361. {
  15362. front: {
  15363. height: math.unit(6, "feet"),
  15364. weight: math.unit(100, "lb"),
  15365. name: "Front",
  15366. image: {
  15367. source: "./media/characters/aevsivs/front.svg",
  15368. extra: 1,
  15369. bottom: 0.03
  15370. }
  15371. },
  15372. back: {
  15373. height: math.unit(6, "feet"),
  15374. weight: math.unit(100, "lb"),
  15375. name: "Back",
  15376. image: {
  15377. source: "./media/characters/aevsivs/back.svg"
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Micro",
  15384. height: math.unit(2, "inches"),
  15385. default: true
  15386. },
  15387. {
  15388. name: "Normal",
  15389. height: math.unit(5, "feet")
  15390. },
  15391. ]
  15392. ))
  15393. characterMakers.push(() => makeCharacter(
  15394. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15395. {
  15396. front: {
  15397. height: math.unit(5 + 7 / 12, "feet"),
  15398. weight: math.unit(159, "lb"),
  15399. name: "Front",
  15400. image: {
  15401. source: "./media/characters/hildegard/front.svg",
  15402. extra: 289 / 269,
  15403. bottom: 7.63 / 297.8
  15404. }
  15405. },
  15406. back: {
  15407. height: math.unit(5 + 7 / 12, "feet"),
  15408. weight: math.unit(159, "lb"),
  15409. name: "Back",
  15410. image: {
  15411. source: "./media/characters/hildegard/back.svg",
  15412. extra: 280 / 260,
  15413. bottom: 2.3 / 282
  15414. }
  15415. },
  15416. },
  15417. [
  15418. {
  15419. name: "Normal",
  15420. height: math.unit(5 + 7 / 12, "feet"),
  15421. default: true
  15422. },
  15423. ]
  15424. ))
  15425. characterMakers.push(() => makeCharacter(
  15426. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15427. {
  15428. bernard: {
  15429. height: math.unit(2 + 7 / 12, "feet"),
  15430. weight: math.unit(66, "lb"),
  15431. name: "Bernard",
  15432. rename: true,
  15433. image: {
  15434. source: "./media/characters/bernard-wilder/bernard.svg",
  15435. extra: 192 / 128,
  15436. bottom: 0.05
  15437. }
  15438. },
  15439. wilder: {
  15440. height: math.unit(5 + 8 / 12, "feet"),
  15441. weight: math.unit(143, "lb"),
  15442. name: "Wilder",
  15443. rename: true,
  15444. image: {
  15445. source: "./media/characters/bernard-wilder/wilder.svg",
  15446. extra: 361 / 312,
  15447. bottom: 0.02
  15448. }
  15449. },
  15450. },
  15451. [
  15452. {
  15453. name: "Normal",
  15454. height: math.unit(2 + 7 / 12, "feet"),
  15455. default: true
  15456. },
  15457. ]
  15458. ))
  15459. characterMakers.push(() => makeCharacter(
  15460. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15461. {
  15462. anthro: {
  15463. height: math.unit(6 + 1 / 12, "feet"),
  15464. weight: math.unit(155, "lb"),
  15465. name: "Anthro",
  15466. image: {
  15467. source: "./media/characters/hearth/anthro.svg",
  15468. extra: 1178/1136,
  15469. bottom: 28/1206
  15470. }
  15471. },
  15472. feral: {
  15473. height: math.unit(3.78, "feet"),
  15474. weight: math.unit(35, "kg"),
  15475. name: "Feral",
  15476. image: {
  15477. source: "./media/characters/hearth/feral.svg",
  15478. extra: 153 / 135,
  15479. bottom: 0.03
  15480. }
  15481. },
  15482. },
  15483. [
  15484. {
  15485. name: "Normal",
  15486. height: math.unit(6 + 1 / 12, "feet"),
  15487. default: true
  15488. },
  15489. ]
  15490. ))
  15491. characterMakers.push(() => makeCharacter(
  15492. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15493. {
  15494. front: {
  15495. height: math.unit(6, "feet"),
  15496. weight: math.unit(182, "lb"),
  15497. name: "Front",
  15498. image: {
  15499. source: "./media/characters/ingrid/front.svg",
  15500. extra: 294 / 268,
  15501. bottom: 0.027
  15502. }
  15503. },
  15504. },
  15505. [
  15506. {
  15507. name: "Normal",
  15508. height: math.unit(6, "feet"),
  15509. default: true
  15510. },
  15511. ]
  15512. ))
  15513. characterMakers.push(() => makeCharacter(
  15514. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15515. {
  15516. eevee: {
  15517. height: math.unit(2 + 10 / 12, "feet"),
  15518. weight: math.unit(86, "lb"),
  15519. name: "Malgam",
  15520. image: {
  15521. source: "./media/characters/malgam/eevee.svg",
  15522. extra: 952/784,
  15523. bottom: 38/990
  15524. }
  15525. },
  15526. sylveon: {
  15527. height: math.unit(4, "feet"),
  15528. weight: math.unit(101, "lb"),
  15529. name: "Future Malgam",
  15530. rename: true,
  15531. image: {
  15532. source: "./media/characters/malgam/sylveon.svg",
  15533. extra: 371 / 325,
  15534. bottom: 0.015
  15535. }
  15536. },
  15537. gigantamax: {
  15538. height: math.unit(50, "feet"),
  15539. name: "Gigantamax Malgam",
  15540. rename: true,
  15541. image: {
  15542. source: "./media/characters/malgam/gigantamax.svg"
  15543. }
  15544. },
  15545. },
  15546. [
  15547. {
  15548. name: "Normal",
  15549. height: math.unit(2 + 10 / 12, "feet"),
  15550. default: true
  15551. },
  15552. ]
  15553. ))
  15554. characterMakers.push(() => makeCharacter(
  15555. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15556. {
  15557. front: {
  15558. height: math.unit(5 + 11 / 12, "feet"),
  15559. weight: math.unit(188, "lb"),
  15560. name: "Front",
  15561. image: {
  15562. source: "./media/characters/fleur/front.svg",
  15563. extra: 309 / 283,
  15564. bottom: 0.007
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Normal",
  15571. height: math.unit(5 + 11 / 12, "feet"),
  15572. default: true
  15573. },
  15574. ]
  15575. ))
  15576. characterMakers.push(() => makeCharacter(
  15577. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15578. {
  15579. front: {
  15580. height: math.unit(5 + 4 / 12, "feet"),
  15581. weight: math.unit(122, "lb"),
  15582. name: "Front",
  15583. image: {
  15584. source: "./media/characters/jude/front.svg",
  15585. extra: 288 / 273,
  15586. bottom: 0.03
  15587. }
  15588. },
  15589. },
  15590. [
  15591. {
  15592. name: "Normal",
  15593. height: math.unit(5 + 4 / 12, "feet"),
  15594. default: true
  15595. },
  15596. ]
  15597. ))
  15598. characterMakers.push(() => makeCharacter(
  15599. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15600. {
  15601. front: {
  15602. height: math.unit(5 + 11 / 12, "feet"),
  15603. weight: math.unit(190, "lb"),
  15604. name: "Front",
  15605. image: {
  15606. source: "./media/characters/seara/front.svg",
  15607. extra: 1,
  15608. bottom: 0.05
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Normal",
  15615. height: math.unit(5 + 11 / 12, "feet"),
  15616. default: true
  15617. },
  15618. ]
  15619. ))
  15620. characterMakers.push(() => makeCharacter(
  15621. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15622. {
  15623. front: {
  15624. height: math.unit(16 + 5 / 12, "feet"),
  15625. weight: math.unit(524, "lb"),
  15626. name: "Front",
  15627. image: {
  15628. source: "./media/characters/caspian-lugia/front.svg",
  15629. extra: 1,
  15630. bottom: 0.04
  15631. }
  15632. },
  15633. },
  15634. [
  15635. {
  15636. name: "Normal",
  15637. height: math.unit(16 + 5 / 12, "feet"),
  15638. default: true
  15639. },
  15640. ]
  15641. ))
  15642. characterMakers.push(() => makeCharacter(
  15643. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15644. {
  15645. front: {
  15646. height: math.unit(5 + 7 / 12, "feet"),
  15647. weight: math.unit(170, "lb"),
  15648. name: "Front",
  15649. image: {
  15650. source: "./media/characters/mika/front.svg",
  15651. extra: 1,
  15652. bottom: 0.016
  15653. }
  15654. },
  15655. },
  15656. [
  15657. {
  15658. name: "Normal",
  15659. height: math.unit(5 + 7 / 12, "feet"),
  15660. default: true
  15661. },
  15662. ]
  15663. ))
  15664. characterMakers.push(() => makeCharacter(
  15665. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15666. {
  15667. front: {
  15668. height: math.unit(6 + 2 / 12, "feet"),
  15669. weight: math.unit(268, "lb"),
  15670. name: "Front",
  15671. image: {
  15672. source: "./media/characters/sol/front.svg",
  15673. extra: 247 / 231,
  15674. bottom: 0.05
  15675. }
  15676. },
  15677. },
  15678. [
  15679. {
  15680. name: "Normal",
  15681. height: math.unit(6 + 2 / 12, "feet"),
  15682. default: true
  15683. },
  15684. ]
  15685. ))
  15686. characterMakers.push(() => makeCharacter(
  15687. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15688. {
  15689. buizel: {
  15690. height: math.unit(2 + 5 / 12, "feet"),
  15691. weight: math.unit(87, "lb"),
  15692. name: "Front",
  15693. image: {
  15694. source: "./media/characters/umiko/buizel.svg",
  15695. extra: 172 / 157,
  15696. bottom: 0.01
  15697. },
  15698. form: "buizel",
  15699. default: true
  15700. },
  15701. floatzel: {
  15702. height: math.unit(5 + 9 / 12, "feet"),
  15703. weight: math.unit(250, "lb"),
  15704. name: "Front",
  15705. image: {
  15706. source: "./media/characters/umiko/floatzel.svg",
  15707. extra: 1076/1006,
  15708. bottom: 15/1091
  15709. },
  15710. form: "floatzel",
  15711. default: true
  15712. },
  15713. },
  15714. [
  15715. {
  15716. name: "Normal",
  15717. height: math.unit(2 + 5 / 12, "feet"),
  15718. form: "buizel",
  15719. default: true
  15720. },
  15721. {
  15722. name: "Normal",
  15723. height: math.unit(5 + 9 / 12, "feet"),
  15724. form: "floatzel",
  15725. default: true
  15726. },
  15727. ],
  15728. {
  15729. "buizel": {
  15730. name: "Buizel"
  15731. },
  15732. "floatzel": {
  15733. name: "Floatzel",
  15734. default: true
  15735. }
  15736. }
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15740. {
  15741. front: {
  15742. height: math.unit(6 + 2 / 12, "feet"),
  15743. weight: math.unit(146, "lb"),
  15744. name: "Front",
  15745. image: {
  15746. source: "./media/characters/iliac/front.svg",
  15747. extra: 389 / 365,
  15748. bottom: 0.035
  15749. }
  15750. },
  15751. },
  15752. [
  15753. {
  15754. name: "Normal",
  15755. height: math.unit(6 + 2 / 12, "feet"),
  15756. default: true
  15757. },
  15758. ]
  15759. ))
  15760. characterMakers.push(() => makeCharacter(
  15761. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15762. {
  15763. front: {
  15764. height: math.unit(6, "feet"),
  15765. weight: math.unit(170, "lb"),
  15766. name: "Front",
  15767. image: {
  15768. source: "./media/characters/topaz/front.svg",
  15769. extra: 317 / 303,
  15770. bottom: 0.055
  15771. }
  15772. },
  15773. },
  15774. [
  15775. {
  15776. name: "Normal",
  15777. height: math.unit(6, "feet"),
  15778. default: true
  15779. },
  15780. ]
  15781. ))
  15782. characterMakers.push(() => makeCharacter(
  15783. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15784. {
  15785. front: {
  15786. height: math.unit(5 + 11 / 12, "feet"),
  15787. weight: math.unit(144, "lb"),
  15788. name: "Front",
  15789. image: {
  15790. source: "./media/characters/gabriel/front.svg",
  15791. extra: 285 / 262,
  15792. bottom: 0.004
  15793. }
  15794. },
  15795. },
  15796. [
  15797. {
  15798. name: "Normal",
  15799. height: math.unit(5 + 11 / 12, "feet"),
  15800. default: true
  15801. },
  15802. ]
  15803. ))
  15804. characterMakers.push(() => makeCharacter(
  15805. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15806. {
  15807. side: {
  15808. height: math.unit(6 + 5 / 12, "feet"),
  15809. weight: math.unit(300, "lb"),
  15810. name: "Side",
  15811. image: {
  15812. source: "./media/characters/tempest-suicune/side.svg",
  15813. extra: 195 / 154,
  15814. bottom: 0.04
  15815. }
  15816. },
  15817. },
  15818. [
  15819. {
  15820. name: "Normal",
  15821. height: math.unit(6 + 5 / 12, "feet"),
  15822. default: true
  15823. },
  15824. ]
  15825. ))
  15826. characterMakers.push(() => makeCharacter(
  15827. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15828. {
  15829. front: {
  15830. height: math.unit(7 + 2 / 12, "feet"),
  15831. weight: math.unit(322, "lb"),
  15832. name: "Front",
  15833. image: {
  15834. source: "./media/characters/vulcan/front.svg",
  15835. extra: 154 / 147,
  15836. bottom: 0.04
  15837. }
  15838. },
  15839. },
  15840. [
  15841. {
  15842. name: "Normal",
  15843. height: math.unit(7 + 2 / 12, "feet"),
  15844. default: true
  15845. },
  15846. ]
  15847. ))
  15848. characterMakers.push(() => makeCharacter(
  15849. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15850. {
  15851. front: {
  15852. height: math.unit(5 + 10 / 12, "feet"),
  15853. weight: math.unit(264, "lb"),
  15854. name: "Front",
  15855. image: {
  15856. source: "./media/characters/gault/front.svg",
  15857. extra: 161 / 140,
  15858. bottom: 0.028
  15859. }
  15860. },
  15861. },
  15862. [
  15863. {
  15864. name: "Normal",
  15865. height: math.unit(5 + 10 / 12, "feet"),
  15866. default: true
  15867. },
  15868. ]
  15869. ))
  15870. characterMakers.push(() => makeCharacter(
  15871. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15872. {
  15873. front: {
  15874. height: math.unit(6, "feet"),
  15875. weight: math.unit(150, "lb"),
  15876. name: "Front",
  15877. image: {
  15878. source: "./media/characters/shard/front.svg",
  15879. extra: 273 / 238,
  15880. bottom: 0.02
  15881. }
  15882. },
  15883. },
  15884. [
  15885. {
  15886. name: "Normal",
  15887. height: math.unit(3 + 6 / 12, "feet"),
  15888. default: true
  15889. },
  15890. ]
  15891. ))
  15892. characterMakers.push(() => makeCharacter(
  15893. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15894. {
  15895. front: {
  15896. height: math.unit(5 + 11 / 12, "feet"),
  15897. weight: math.unit(146, "lb"),
  15898. name: "Front",
  15899. image: {
  15900. source: "./media/characters/ashe/front.svg",
  15901. extra: 400 / 373,
  15902. bottom: 0.01
  15903. }
  15904. },
  15905. },
  15906. [
  15907. {
  15908. name: "Normal",
  15909. height: math.unit(5 + 11 / 12, "feet"),
  15910. default: true
  15911. },
  15912. ]
  15913. ))
  15914. characterMakers.push(() => makeCharacter(
  15915. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15916. {
  15917. front: {
  15918. height: math.unit(5 + 5 / 12, "feet"),
  15919. weight: math.unit(135, "lb"),
  15920. name: "Front",
  15921. image: {
  15922. source: "./media/characters/beatrix/front.svg",
  15923. extra: 392 / 379,
  15924. bottom: 0.01
  15925. }
  15926. },
  15927. },
  15928. [
  15929. {
  15930. name: "Normal",
  15931. height: math.unit(6, "feet"),
  15932. default: true
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15938. {
  15939. front: {
  15940. height: math.unit(6 + 2/12, "feet"),
  15941. weight: math.unit(135, "lb"),
  15942. name: "Front",
  15943. image: {
  15944. source: "./media/characters/ignatius/front.svg",
  15945. extra: 1380/1259,
  15946. bottom: 27/1407
  15947. }
  15948. },
  15949. },
  15950. [
  15951. {
  15952. name: "Normal",
  15953. height: math.unit(6 + 2/12, "feet"),
  15954. default: true
  15955. },
  15956. ]
  15957. ))
  15958. characterMakers.push(() => makeCharacter(
  15959. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15960. {
  15961. front: {
  15962. height: math.unit(6 + 2 / 12, "feet"),
  15963. weight: math.unit(138, "lb"),
  15964. name: "Front",
  15965. image: {
  15966. source: "./media/characters/mei-li/front.svg",
  15967. extra: 237 / 229,
  15968. bottom: 0.03
  15969. }
  15970. },
  15971. },
  15972. [
  15973. {
  15974. name: "Normal",
  15975. height: math.unit(6 + 2 / 12, "feet"),
  15976. default: true
  15977. },
  15978. ]
  15979. ))
  15980. characterMakers.push(() => makeCharacter(
  15981. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15982. {
  15983. front: {
  15984. height: math.unit(2 + 4 / 12, "feet"),
  15985. weight: math.unit(62, "lb"),
  15986. name: "Front",
  15987. image: {
  15988. source: "./media/characters/puru/front.svg",
  15989. extra: 206 / 149,
  15990. bottom: 0.06
  15991. }
  15992. },
  15993. },
  15994. [
  15995. {
  15996. name: "Normal",
  15997. height: math.unit(2 + 4 / 12, "feet"),
  15998. default: true
  15999. },
  16000. ]
  16001. ))
  16002. characterMakers.push(() => makeCharacter(
  16003. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16004. {
  16005. anthro: {
  16006. height: math.unit(5 + 8/12, "feet"),
  16007. weight: math.unit(200, "lb"),
  16008. energyNeed: math.unit(2000, "kcal"),
  16009. name: "Anthro",
  16010. image: {
  16011. source: "./media/characters/kee/anthro.svg",
  16012. extra: 3251/3184,
  16013. bottom: 250/3501
  16014. }
  16015. },
  16016. taur: {
  16017. height: math.unit(11, "feet"),
  16018. weight: math.unit(500, "lb"),
  16019. energyNeed: math.unit(5000, "kcal"),
  16020. name: "Taur",
  16021. image: {
  16022. source: "./media/characters/kee/taur.svg",
  16023. extra: 1362/1320,
  16024. bottom: 83/1445
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Normal",
  16031. height: math.unit(5 + 8/12, "feet"),
  16032. default: true
  16033. },
  16034. {
  16035. name: "Macro",
  16036. height: math.unit(35, "feet")
  16037. },
  16038. ]
  16039. ))
  16040. characterMakers.push(() => makeCharacter(
  16041. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16042. {
  16043. anthro: {
  16044. height: math.unit(7, "feet"),
  16045. weight: math.unit(190, "lb"),
  16046. name: "Anthro",
  16047. image: {
  16048. source: "./media/characters/cobalt-dracha/anthro.svg",
  16049. extra: 231 / 225,
  16050. bottom: 0.04
  16051. }
  16052. },
  16053. feral: {
  16054. height: math.unit(9 + 7 / 12, "feet"),
  16055. weight: math.unit(294, "lb"),
  16056. name: "Feral",
  16057. image: {
  16058. source: "./media/characters/cobalt-dracha/feral.svg",
  16059. extra: 692 / 633,
  16060. bottom: 0.05
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Normal",
  16067. height: math.unit(7, "feet"),
  16068. default: true
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16074. {
  16075. fallen: {
  16076. height: math.unit(11 + 8 / 12, "feet"),
  16077. weight: math.unit(485, "lb"),
  16078. name: "Java (Fallen)",
  16079. rename: true,
  16080. image: {
  16081. source: "./media/characters/java/fallen.svg",
  16082. extra: 226 / 208,
  16083. bottom: 0.005
  16084. }
  16085. },
  16086. godkin: {
  16087. height: math.unit(10 + 6 / 12, "feet"),
  16088. weight: math.unit(328, "lb"),
  16089. name: "Java (Godkin)",
  16090. rename: true,
  16091. image: {
  16092. source: "./media/characters/java/godkin.svg",
  16093. extra: 1104/1068,
  16094. bottom: 36/1140
  16095. }
  16096. },
  16097. },
  16098. [
  16099. {
  16100. name: "Normal",
  16101. height: math.unit(11 + 8 / 12, "feet"),
  16102. default: true
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(5 + 9 / 12, "feet"),
  16111. weight: math.unit(170, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/purna/front.svg",
  16115. extra: 239 / 229,
  16116. bottom: 0.01
  16117. }
  16118. },
  16119. },
  16120. [
  16121. {
  16122. name: "Normal",
  16123. height: math.unit(5 + 9 / 12, "feet"),
  16124. default: true
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16130. {
  16131. front: {
  16132. height: math.unit(5 + 9 / 12, "feet"),
  16133. weight: math.unit(142, "lb"),
  16134. name: "Front",
  16135. image: {
  16136. source: "./media/characters/kuva/front.svg",
  16137. extra: 281 / 271,
  16138. bottom: 0.006
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Normal",
  16145. height: math.unit(5 + 9 / 12, "feet"),
  16146. default: true
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16152. {
  16153. anthro: {
  16154. height: math.unit(9 + 2 / 12, "feet"),
  16155. weight: math.unit(270, "lb"),
  16156. name: "Anthro",
  16157. image: {
  16158. source: "./media/characters/embra/anthro.svg",
  16159. extra: 200 / 187,
  16160. bottom: 0.02
  16161. }
  16162. },
  16163. feral: {
  16164. height: math.unit(18 + 8 / 12, "feet"),
  16165. weight: math.unit(576, "lb"),
  16166. name: "Feral",
  16167. image: {
  16168. source: "./media/characters/embra/feral.svg",
  16169. extra: 152 / 137,
  16170. bottom: 0.037
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Normal",
  16177. height: math.unit(9 + 2 / 12, "feet"),
  16178. default: true
  16179. },
  16180. ]
  16181. ))
  16182. characterMakers.push(() => makeCharacter(
  16183. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16184. {
  16185. anthro: {
  16186. height: math.unit(10 + 9 / 12, "feet"),
  16187. weight: math.unit(224, "lb"),
  16188. name: "Anthro",
  16189. image: {
  16190. source: "./media/characters/grottos/anthro.svg",
  16191. extra: 350 / 332,
  16192. bottom: 0.045
  16193. }
  16194. },
  16195. feral: {
  16196. height: math.unit(20 + 7 / 12, "feet"),
  16197. weight: math.unit(629, "lb"),
  16198. name: "Feral",
  16199. image: {
  16200. source: "./media/characters/grottos/feral.svg",
  16201. extra: 207 / 190,
  16202. bottom: 0.05
  16203. }
  16204. },
  16205. },
  16206. [
  16207. {
  16208. name: "Normal",
  16209. height: math.unit(10 + 9 / 12, "feet"),
  16210. default: true
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16216. {
  16217. anthro: {
  16218. height: math.unit(9 + 6 / 12, "feet"),
  16219. weight: math.unit(298, "lb"),
  16220. name: "Anthro",
  16221. image: {
  16222. source: "./media/characters/frifna/anthro.svg",
  16223. extra: 282 / 269,
  16224. bottom: 0.015
  16225. }
  16226. },
  16227. feral: {
  16228. height: math.unit(16 + 2 / 12, "feet"),
  16229. weight: math.unit(624, "lb"),
  16230. name: "Feral",
  16231. image: {
  16232. source: "./media/characters/frifna/feral.svg"
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Normal",
  16239. height: math.unit(9 + 6 / 12, "feet"),
  16240. default: true
  16241. },
  16242. ]
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16246. {
  16247. front: {
  16248. height: math.unit(6 + 2 / 12, "feet"),
  16249. weight: math.unit(168, "lb"),
  16250. name: "Front",
  16251. image: {
  16252. source: "./media/characters/elise/front.svg",
  16253. extra: 276 / 271
  16254. }
  16255. },
  16256. },
  16257. [
  16258. {
  16259. name: "Normal",
  16260. height: math.unit(6 + 2 / 12, "feet"),
  16261. default: true
  16262. },
  16263. ]
  16264. ))
  16265. characterMakers.push(() => makeCharacter(
  16266. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16267. {
  16268. front: {
  16269. height: math.unit(5 + 10 / 12, "feet"),
  16270. weight: math.unit(210, "lb"),
  16271. name: "Front",
  16272. image: {
  16273. source: "./media/characters/glade/front.svg",
  16274. extra: 258 / 247,
  16275. bottom: 0.008
  16276. }
  16277. },
  16278. },
  16279. [
  16280. {
  16281. name: "Normal",
  16282. height: math.unit(5 + 10 / 12, "feet"),
  16283. default: true
  16284. },
  16285. ]
  16286. ))
  16287. characterMakers.push(() => makeCharacter(
  16288. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16289. {
  16290. front: {
  16291. height: math.unit(5 + 10 / 12, "feet"),
  16292. weight: math.unit(129, "lb"),
  16293. name: "Front",
  16294. image: {
  16295. source: "./media/characters/rina/front.svg",
  16296. extra: 266 / 255,
  16297. bottom: 0.005
  16298. }
  16299. },
  16300. },
  16301. [
  16302. {
  16303. name: "Normal",
  16304. height: math.unit(5 + 10 / 12, "feet"),
  16305. default: true
  16306. },
  16307. ]
  16308. ))
  16309. characterMakers.push(() => makeCharacter(
  16310. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16311. {
  16312. front: {
  16313. height: math.unit(6 + 1 / 12, "feet"),
  16314. weight: math.unit(192, "lb"),
  16315. name: "Front",
  16316. image: {
  16317. source: "./media/characters/veronica/front.svg",
  16318. extra: 319 / 309,
  16319. bottom: 0.005
  16320. }
  16321. },
  16322. },
  16323. [
  16324. {
  16325. name: "Normal",
  16326. height: math.unit(6 + 1 / 12, "feet"),
  16327. default: true
  16328. },
  16329. ]
  16330. ))
  16331. characterMakers.push(() => makeCharacter(
  16332. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16333. {
  16334. front: {
  16335. height: math.unit(9 + 3 / 12, "feet"),
  16336. weight: math.unit(1100, "lb"),
  16337. name: "Front",
  16338. image: {
  16339. source: "./media/characters/braxton/front.svg",
  16340. extra: 1057 / 984,
  16341. bottom: 0.05
  16342. }
  16343. },
  16344. },
  16345. [
  16346. {
  16347. name: "Normal",
  16348. height: math.unit(9 + 3 / 12, "feet")
  16349. },
  16350. {
  16351. name: "Giant",
  16352. height: math.unit(300, "feet"),
  16353. default: true
  16354. },
  16355. {
  16356. name: "Macro",
  16357. height: math.unit(700, "feet")
  16358. },
  16359. {
  16360. name: "Megamacro",
  16361. height: math.unit(6000, "feet")
  16362. },
  16363. ]
  16364. ))
  16365. characterMakers.push(() => makeCharacter(
  16366. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16367. {
  16368. front: {
  16369. height: math.unit(6 + 7 / 12, "feet"),
  16370. weight: math.unit(150, "lb"),
  16371. name: "Front",
  16372. image: {
  16373. source: "./media/characters/blue-feyonics/front.svg",
  16374. extra: 1403 / 1306,
  16375. bottom: 0.047
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "Normal",
  16382. height: math.unit(6 + 7 / 12, "feet"),
  16383. default: true
  16384. },
  16385. ]
  16386. ))
  16387. characterMakers.push(() => makeCharacter(
  16388. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16389. {
  16390. front: {
  16391. height: math.unit(1.8, "meters"),
  16392. weight: math.unit(60, "kg"),
  16393. name: "Front",
  16394. image: {
  16395. source: "./media/characters/maxwell/front.svg",
  16396. extra: 2060 / 1873
  16397. }
  16398. },
  16399. },
  16400. [
  16401. {
  16402. name: "Micro",
  16403. height: math.unit(1, "mm")
  16404. },
  16405. {
  16406. name: "Normal",
  16407. height: math.unit(1.8, "meter"),
  16408. default: true
  16409. },
  16410. {
  16411. name: "Macro",
  16412. height: math.unit(30, "meters")
  16413. },
  16414. {
  16415. name: "Megamacro",
  16416. height: math.unit(10, "km")
  16417. },
  16418. ]
  16419. ))
  16420. characterMakers.push(() => makeCharacter(
  16421. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16422. {
  16423. front: {
  16424. height: math.unit(6, "feet"),
  16425. weight: math.unit(150, "lb"),
  16426. name: "Front",
  16427. image: {
  16428. source: "./media/characters/jack/front.svg",
  16429. extra: 1754 / 1640,
  16430. bottom: 0.01
  16431. }
  16432. },
  16433. },
  16434. [
  16435. {
  16436. name: "Normal",
  16437. height: math.unit(80000, "feet"),
  16438. default: true
  16439. },
  16440. {
  16441. name: "Max size",
  16442. height: math.unit(10, "lightyears")
  16443. },
  16444. ]
  16445. ))
  16446. characterMakers.push(() => makeCharacter(
  16447. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16448. {
  16449. urban: {
  16450. height: math.unit(5, "feet"),
  16451. weight: math.unit(240, "lb"),
  16452. name: "Urban",
  16453. image: {
  16454. source: "./media/characters/cafat/urban.svg",
  16455. extra: 1223/1126,
  16456. bottom: 205/1428
  16457. }
  16458. },
  16459. summer: {
  16460. height: math.unit(5, "feet"),
  16461. weight: math.unit(240, "lb"),
  16462. name: "Summer",
  16463. image: {
  16464. source: "./media/characters/cafat/summer.svg",
  16465. extra: 1223/1126,
  16466. bottom: 205/1428
  16467. }
  16468. },
  16469. winter: {
  16470. height: math.unit(5, "feet"),
  16471. weight: math.unit(240, "lb"),
  16472. name: "Winter",
  16473. image: {
  16474. source: "./media/characters/cafat/winter.svg",
  16475. extra: 1223/1126,
  16476. bottom: 205/1428
  16477. }
  16478. },
  16479. lingerie: {
  16480. height: math.unit(5, "feet"),
  16481. weight: math.unit(240, "lb"),
  16482. name: "Lingerie",
  16483. image: {
  16484. source: "./media/characters/cafat/lingerie.svg",
  16485. extra: 1223/1126,
  16486. bottom: 205/1428
  16487. }
  16488. },
  16489. upright: {
  16490. height: math.unit(6.3, "feet"),
  16491. weight: math.unit(240, "lb"),
  16492. name: "Upright",
  16493. image: {
  16494. source: "./media/characters/cafat/upright.svg",
  16495. bottom: 0.01
  16496. }
  16497. },
  16498. uprightFull: {
  16499. height: math.unit(6.3, "feet"),
  16500. weight: math.unit(240, "lb"),
  16501. name: "Upright (Full)",
  16502. image: {
  16503. source: "./media/characters/cafat/upright-full.svg",
  16504. bottom: 0.01
  16505. }
  16506. },
  16507. },
  16508. [
  16509. {
  16510. name: "Small",
  16511. height: math.unit(5, "feet"),
  16512. default: true
  16513. },
  16514. {
  16515. name: "Large",
  16516. height: math.unit(13, "feet")
  16517. },
  16518. ]
  16519. ))
  16520. characterMakers.push(() => makeCharacter(
  16521. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16522. {
  16523. front: {
  16524. height: math.unit(6, "feet"),
  16525. weight: math.unit(150, "lb"),
  16526. name: "Front",
  16527. image: {
  16528. source: "./media/characters/verin-raharra/front.svg",
  16529. extra: 5019 / 4835,
  16530. bottom: 0.023
  16531. }
  16532. },
  16533. },
  16534. [
  16535. {
  16536. name: "Normal",
  16537. height: math.unit(7 + 5 / 12, "feet"),
  16538. default: true
  16539. },
  16540. {
  16541. name: "Upsized",
  16542. height: math.unit(20, "feet")
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16548. {
  16549. front: {
  16550. height: math.unit(7, "feet"),
  16551. weight: math.unit(230, "lb"),
  16552. name: "Front",
  16553. image: {
  16554. source: "./media/characters/nakata/front.svg",
  16555. extra: 1.005,
  16556. bottom: 0.01
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(7, "feet"),
  16564. default: true
  16565. },
  16566. {
  16567. name: "Big",
  16568. height: math.unit(14, "feet")
  16569. },
  16570. {
  16571. name: "Macro",
  16572. height: math.unit(400, "feet")
  16573. },
  16574. ]
  16575. ))
  16576. characterMakers.push(() => makeCharacter(
  16577. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16578. {
  16579. front: {
  16580. height: math.unit(4.91, "feet"),
  16581. weight: math.unit(100, "lb"),
  16582. name: "Front",
  16583. image: {
  16584. source: "./media/characters/lily/front.svg",
  16585. extra: 1585 / 1415,
  16586. bottom: 0.02
  16587. }
  16588. },
  16589. },
  16590. [
  16591. {
  16592. name: "Normal",
  16593. height: math.unit(4.91, "feet"),
  16594. default: true
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16600. {
  16601. laying: {
  16602. height: math.unit(4 + 4 / 12, "feet"),
  16603. weight: math.unit(600, "lb"),
  16604. name: "Laying",
  16605. image: {
  16606. source: "./media/characters/sheila/laying.svg",
  16607. extra: 1333 / 1265,
  16608. bottom: 0.16
  16609. }
  16610. },
  16611. },
  16612. [
  16613. {
  16614. name: "Normal",
  16615. height: math.unit(4 + 4 / 12, "feet"),
  16616. default: true
  16617. },
  16618. ]
  16619. ))
  16620. characterMakers.push(() => makeCharacter(
  16621. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16622. {
  16623. front: {
  16624. height: math.unit(6, "feet"),
  16625. weight: math.unit(190, "lb"),
  16626. name: "Front",
  16627. image: {
  16628. source: "./media/characters/sax/front.svg",
  16629. extra: 1187 / 973,
  16630. bottom: 0.042
  16631. }
  16632. },
  16633. },
  16634. [
  16635. {
  16636. name: "Micro",
  16637. height: math.unit(4, "inches"),
  16638. default: true
  16639. },
  16640. ]
  16641. ))
  16642. characterMakers.push(() => makeCharacter(
  16643. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16644. {
  16645. front: {
  16646. height: math.unit(6, "feet"),
  16647. weight: math.unit(150, "lb"),
  16648. name: "Front",
  16649. image: {
  16650. source: "./media/characters/pandora/front.svg",
  16651. extra: 2720 / 2556,
  16652. bottom: 0.015
  16653. }
  16654. },
  16655. back: {
  16656. height: math.unit(6, "feet"),
  16657. weight: math.unit(150, "lb"),
  16658. name: "Back",
  16659. image: {
  16660. source: "./media/characters/pandora/back.svg",
  16661. extra: 2720 / 2556,
  16662. bottom: 0.01
  16663. }
  16664. },
  16665. beans: {
  16666. height: math.unit(6 / 8, "feet"),
  16667. name: "Beans",
  16668. image: {
  16669. source: "./media/characters/pandora/beans.svg"
  16670. }
  16671. },
  16672. collar: {
  16673. height: math.unit(0.31, "feet"),
  16674. name: "Collar",
  16675. image: {
  16676. source: "./media/characters/pandora/collar.svg"
  16677. }
  16678. },
  16679. skirt: {
  16680. height: math.unit(6, "feet"),
  16681. weight: math.unit(150, "lb"),
  16682. name: "Skirt",
  16683. image: {
  16684. source: "./media/characters/pandora/skirt.svg",
  16685. extra: 1622 / 1525,
  16686. bottom: 0.015
  16687. }
  16688. },
  16689. hoodie: {
  16690. height: math.unit(6, "feet"),
  16691. weight: math.unit(150, "lb"),
  16692. name: "Hoodie",
  16693. image: {
  16694. source: "./media/characters/pandora/hoodie.svg",
  16695. extra: 1622 / 1525,
  16696. bottom: 0.015
  16697. }
  16698. },
  16699. casual: {
  16700. height: math.unit(6, "feet"),
  16701. weight: math.unit(150, "lb"),
  16702. name: "Casual",
  16703. image: {
  16704. source: "./media/characters/pandora/casual.svg",
  16705. extra: 1622 / 1525,
  16706. bottom: 0.015
  16707. }
  16708. },
  16709. },
  16710. [
  16711. {
  16712. name: "Normal",
  16713. height: math.unit(6, "feet")
  16714. },
  16715. {
  16716. name: "Big Steppy",
  16717. height: math.unit(1, "km"),
  16718. default: true
  16719. },
  16720. {
  16721. name: "Galactic Steppy",
  16722. height: math.unit(2, "gigameters")
  16723. },
  16724. ]
  16725. ))
  16726. characterMakers.push(() => makeCharacter(
  16727. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16728. {
  16729. side: {
  16730. height: math.unit(10, "feet"),
  16731. weight: math.unit(800, "kg"),
  16732. name: "Side",
  16733. image: {
  16734. source: "./media/characters/venio-darcony/side.svg",
  16735. extra: 1373 / 1003,
  16736. bottom: 0.037
  16737. }
  16738. },
  16739. front: {
  16740. height: math.unit(19, "feet"),
  16741. weight: math.unit(800, "kg"),
  16742. name: "Front",
  16743. image: {
  16744. source: "./media/characters/venio-darcony/front.svg"
  16745. }
  16746. },
  16747. back: {
  16748. height: math.unit(19, "feet"),
  16749. weight: math.unit(800, "kg"),
  16750. name: "Back",
  16751. image: {
  16752. source: "./media/characters/venio-darcony/back.svg"
  16753. }
  16754. },
  16755. sideNsfw: {
  16756. height: math.unit(10, "feet"),
  16757. weight: math.unit(800, "kg"),
  16758. name: "Side (NSFW)",
  16759. image: {
  16760. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16761. extra: 1373 / 1003,
  16762. bottom: 0.037
  16763. }
  16764. },
  16765. frontNsfw: {
  16766. height: math.unit(19, "feet"),
  16767. weight: math.unit(800, "kg"),
  16768. name: "Front (NSFW)",
  16769. image: {
  16770. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16771. }
  16772. },
  16773. backNsfw: {
  16774. height: math.unit(19, "feet"),
  16775. weight: math.unit(800, "kg"),
  16776. name: "Back (NSFW)",
  16777. image: {
  16778. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16779. }
  16780. },
  16781. sideArmored: {
  16782. height: math.unit(10, "feet"),
  16783. weight: math.unit(800, "kg"),
  16784. name: "Side (Armored)",
  16785. image: {
  16786. source: "./media/characters/venio-darcony/side-armored.svg",
  16787. extra: 1373 / 1003,
  16788. bottom: 0.037
  16789. }
  16790. },
  16791. frontArmored: {
  16792. height: math.unit(19, "feet"),
  16793. weight: math.unit(900, "kg"),
  16794. name: "Front (Armored)",
  16795. image: {
  16796. source: "./media/characters/venio-darcony/front-armored.svg"
  16797. }
  16798. },
  16799. backArmored: {
  16800. height: math.unit(19, "feet"),
  16801. weight: math.unit(900, "kg"),
  16802. name: "Back (Armored)",
  16803. image: {
  16804. source: "./media/characters/venio-darcony/back-armored.svg"
  16805. }
  16806. },
  16807. sword: {
  16808. height: math.unit(10, "feet"),
  16809. weight: math.unit(50, "lb"),
  16810. name: "Sword",
  16811. image: {
  16812. source: "./media/characters/venio-darcony/sword.svg"
  16813. }
  16814. },
  16815. },
  16816. [
  16817. {
  16818. name: "Normal",
  16819. height: math.unit(10, "feet")
  16820. },
  16821. {
  16822. name: "Macro",
  16823. height: math.unit(130, "feet"),
  16824. default: true
  16825. },
  16826. {
  16827. name: "Macro+",
  16828. height: math.unit(240, "feet")
  16829. },
  16830. ]
  16831. ))
  16832. characterMakers.push(() => makeCharacter(
  16833. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16834. {
  16835. front: {
  16836. height: math.unit(6, "feet"),
  16837. weight: math.unit(150, "lb"),
  16838. name: "Front",
  16839. image: {
  16840. source: "./media/characters/veski/front.svg",
  16841. extra: 1299 / 1225,
  16842. bottom: 0.04
  16843. }
  16844. },
  16845. back: {
  16846. height: math.unit(6, "feet"),
  16847. weight: math.unit(150, "lb"),
  16848. name: "Back",
  16849. image: {
  16850. source: "./media/characters/veski/back.svg",
  16851. extra: 1299 / 1225,
  16852. bottom: 0.008
  16853. }
  16854. },
  16855. maw: {
  16856. height: math.unit(1.5 * 1.21, "feet"),
  16857. name: "Maw",
  16858. image: {
  16859. source: "./media/characters/veski/maw.svg"
  16860. }
  16861. },
  16862. },
  16863. [
  16864. {
  16865. name: "Macro",
  16866. height: math.unit(2, "km"),
  16867. default: true
  16868. },
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16873. {
  16874. front: {
  16875. height: math.unit(5 + 7 / 12, "feet"),
  16876. name: "Front",
  16877. image: {
  16878. source: "./media/characters/isabelle/front.svg",
  16879. extra: 2130 / 1976,
  16880. bottom: 0.05
  16881. }
  16882. },
  16883. },
  16884. [
  16885. {
  16886. name: "Supermicro",
  16887. height: math.unit(10, "micrometers")
  16888. },
  16889. {
  16890. name: "Micro",
  16891. height: math.unit(1, "inch")
  16892. },
  16893. {
  16894. name: "Tiny",
  16895. height: math.unit(5, "inches")
  16896. },
  16897. {
  16898. name: "Standard",
  16899. height: math.unit(5 + 7 / 12, "inches")
  16900. },
  16901. {
  16902. name: "Macro",
  16903. height: math.unit(80, "meters"),
  16904. default: true
  16905. },
  16906. {
  16907. name: "Megamacro",
  16908. height: math.unit(250, "meters")
  16909. },
  16910. {
  16911. name: "Gigamacro",
  16912. height: math.unit(5, "km")
  16913. },
  16914. {
  16915. name: "Cosmic",
  16916. height: math.unit(2.5e6, "miles")
  16917. },
  16918. ]
  16919. ))
  16920. characterMakers.push(() => makeCharacter(
  16921. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16922. {
  16923. front: {
  16924. height: math.unit(6, "feet"),
  16925. weight: math.unit(150, "lb"),
  16926. name: "Front",
  16927. image: {
  16928. source: "./media/characters/hanzo/front.svg",
  16929. extra: 374 / 344,
  16930. bottom: 0.02
  16931. }
  16932. },
  16933. },
  16934. [
  16935. {
  16936. name: "Normal",
  16937. height: math.unit(8, "feet"),
  16938. default: true
  16939. },
  16940. ]
  16941. ))
  16942. characterMakers.push(() => makeCharacter(
  16943. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16944. {
  16945. front: {
  16946. height: math.unit(7, "feet"),
  16947. weight: math.unit(130, "lb"),
  16948. name: "Front",
  16949. image: {
  16950. source: "./media/characters/anna/front.svg",
  16951. extra: 169 / 145,
  16952. bottom: 0.06
  16953. }
  16954. },
  16955. full: {
  16956. height: math.unit(4.96, "feet"),
  16957. weight: math.unit(220, "lb"),
  16958. name: "Full",
  16959. image: {
  16960. source: "./media/characters/anna/full.svg",
  16961. extra: 138 / 114,
  16962. bottom: 0.15
  16963. }
  16964. },
  16965. tongue: {
  16966. height: math.unit(2.53, "feet"),
  16967. name: "Tongue",
  16968. image: {
  16969. source: "./media/characters/anna/tongue.svg"
  16970. }
  16971. },
  16972. },
  16973. [
  16974. {
  16975. name: "Normal",
  16976. height: math.unit(7, "feet"),
  16977. default: true
  16978. },
  16979. ]
  16980. ))
  16981. characterMakers.push(() => makeCharacter(
  16982. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16983. {
  16984. front: {
  16985. height: math.unit(7, "feet"),
  16986. weight: math.unit(150, "lb"),
  16987. name: "Front",
  16988. image: {
  16989. source: "./media/characters/ian-corvid/front.svg",
  16990. extra: 150 / 142,
  16991. bottom: 0.02
  16992. }
  16993. },
  16994. back: {
  16995. height: math.unit(7, "feet"),
  16996. weight: math.unit(150, "lb"),
  16997. name: "Back",
  16998. image: {
  16999. source: "./media/characters/ian-corvid/back.svg",
  17000. extra: 150 / 143,
  17001. bottom: 0.01
  17002. }
  17003. },
  17004. stomping: {
  17005. height: math.unit(7, "feet"),
  17006. weight: math.unit(150, "lb"),
  17007. name: "Stomping",
  17008. image: {
  17009. source: "./media/characters/ian-corvid/stomping.svg",
  17010. extra: 76 / 72
  17011. }
  17012. },
  17013. sitting: {
  17014. height: math.unit(7 / 1.8, "feet"),
  17015. weight: math.unit(150, "lb"),
  17016. name: "Sitting",
  17017. image: {
  17018. source: "./media/characters/ian-corvid/sitting.svg",
  17019. extra: 1400 / 1269,
  17020. bottom: 0.15
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Tiny Microw",
  17027. height: math.unit(1, "inch")
  17028. },
  17029. {
  17030. name: "Microw",
  17031. height: math.unit(6, "inches")
  17032. },
  17033. {
  17034. name: "Crow",
  17035. height: math.unit(7 + 1 / 12, "feet"),
  17036. default: true
  17037. },
  17038. {
  17039. name: "Macrow",
  17040. height: math.unit(176, "feet")
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17046. {
  17047. front: {
  17048. height: math.unit(5 + 7 / 12, "feet"),
  17049. weight: math.unit(147, "lb"),
  17050. name: "Front",
  17051. image: {
  17052. source: "./media/characters/natalie-kellon/front.svg",
  17053. extra: 1214 / 1141,
  17054. bottom: 0.02
  17055. }
  17056. },
  17057. },
  17058. [
  17059. {
  17060. name: "Micro",
  17061. height: math.unit(1 / 16, "inch")
  17062. },
  17063. {
  17064. name: "Tiny",
  17065. height: math.unit(4, "inches")
  17066. },
  17067. {
  17068. name: "Normal",
  17069. height: math.unit(5 + 7 / 12, "feet"),
  17070. default: true
  17071. },
  17072. {
  17073. name: "Amazon",
  17074. height: math.unit(12, "feet")
  17075. },
  17076. {
  17077. name: "Giantess",
  17078. height: math.unit(160, "meters")
  17079. },
  17080. {
  17081. name: "Titaness",
  17082. height: math.unit(800, "meters")
  17083. },
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17088. {
  17089. front: {
  17090. height: math.unit(6, "feet"),
  17091. weight: math.unit(150, "lb"),
  17092. name: "Front",
  17093. image: {
  17094. source: "./media/characters/alluria/front.svg",
  17095. extra: 806 / 738,
  17096. bottom: 0.01
  17097. }
  17098. },
  17099. side: {
  17100. height: math.unit(6, "feet"),
  17101. weight: math.unit(150, "lb"),
  17102. name: "Side",
  17103. image: {
  17104. source: "./media/characters/alluria/side.svg",
  17105. extra: 800 / 750,
  17106. }
  17107. },
  17108. back: {
  17109. height: math.unit(6, "feet"),
  17110. weight: math.unit(150, "lb"),
  17111. name: "Back",
  17112. image: {
  17113. source: "./media/characters/alluria/back.svg",
  17114. extra: 806 / 738,
  17115. }
  17116. },
  17117. frontMaid: {
  17118. height: math.unit(6, "feet"),
  17119. weight: math.unit(150, "lb"),
  17120. name: "Front (Maid)",
  17121. image: {
  17122. source: "./media/characters/alluria/front-maid.svg",
  17123. extra: 806 / 738,
  17124. bottom: 0.01
  17125. }
  17126. },
  17127. sideMaid: {
  17128. height: math.unit(6, "feet"),
  17129. weight: math.unit(150, "lb"),
  17130. name: "Side (Maid)",
  17131. image: {
  17132. source: "./media/characters/alluria/side-maid.svg",
  17133. extra: 800 / 750,
  17134. bottom: 0.005
  17135. }
  17136. },
  17137. backMaid: {
  17138. height: math.unit(6, "feet"),
  17139. weight: math.unit(150, "lb"),
  17140. name: "Back (Maid)",
  17141. image: {
  17142. source: "./media/characters/alluria/back-maid.svg",
  17143. extra: 806 / 738,
  17144. }
  17145. },
  17146. },
  17147. [
  17148. {
  17149. name: "Micro",
  17150. height: math.unit(6, "inches"),
  17151. default: true
  17152. },
  17153. ]
  17154. ))
  17155. characterMakers.push(() => makeCharacter(
  17156. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17157. {
  17158. front: {
  17159. height: math.unit(6, "feet"),
  17160. weight: math.unit(150, "lb"),
  17161. name: "Front",
  17162. image: {
  17163. source: "./media/characters/kyle/front.svg",
  17164. extra: 1069 / 962,
  17165. bottom: 77.228 / 1727.45
  17166. }
  17167. },
  17168. },
  17169. [
  17170. {
  17171. name: "Macro",
  17172. height: math.unit(150, "feet"),
  17173. default: true
  17174. },
  17175. ]
  17176. ))
  17177. characterMakers.push(() => makeCharacter(
  17178. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17179. {
  17180. front: {
  17181. height: math.unit(6, "feet"),
  17182. weight: math.unit(300, "lb"),
  17183. name: "Front",
  17184. image: {
  17185. source: "./media/characters/duncan/front.svg",
  17186. extra: 1650 / 1482,
  17187. bottom: 0.05
  17188. }
  17189. },
  17190. },
  17191. [
  17192. {
  17193. name: "Macro",
  17194. height: math.unit(100, "feet"),
  17195. default: true
  17196. },
  17197. ]
  17198. ))
  17199. characterMakers.push(() => makeCharacter(
  17200. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17201. {
  17202. front: {
  17203. height: math.unit(5 + 4 / 12, "feet"),
  17204. weight: math.unit(220, "lb"),
  17205. name: "Front",
  17206. image: {
  17207. source: "./media/characters/memory/front.svg",
  17208. extra: 3641 / 3545,
  17209. bottom: 0.03
  17210. }
  17211. },
  17212. back: {
  17213. height: math.unit(5 + 4 / 12, "feet"),
  17214. weight: math.unit(220, "lb"),
  17215. name: "Back",
  17216. image: {
  17217. source: "./media/characters/memory/back.svg",
  17218. extra: 3641 / 3545,
  17219. bottom: 0.025
  17220. }
  17221. },
  17222. frontSkirt: {
  17223. height: math.unit(5 + 4 / 12, "feet"),
  17224. weight: math.unit(220, "lb"),
  17225. name: "Front (Skirt)",
  17226. image: {
  17227. source: "./media/characters/memory/front-skirt.svg",
  17228. extra: 3641 / 3545,
  17229. bottom: 0.03
  17230. }
  17231. },
  17232. frontDress: {
  17233. height: math.unit(5 + 4 / 12, "feet"),
  17234. weight: math.unit(220, "lb"),
  17235. name: "Front (Dress)",
  17236. image: {
  17237. source: "./media/characters/memory/front-dress.svg",
  17238. extra: 3641 / 3545,
  17239. bottom: 0.03
  17240. }
  17241. },
  17242. },
  17243. [
  17244. {
  17245. name: "Micro",
  17246. height: math.unit(6, "inches"),
  17247. default: true
  17248. },
  17249. {
  17250. name: "Normal",
  17251. height: math.unit(5 + 4 / 12, "feet")
  17252. },
  17253. ]
  17254. ))
  17255. characterMakers.push(() => makeCharacter(
  17256. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17257. {
  17258. front: {
  17259. height: math.unit(4 + 11 / 12, "feet"),
  17260. weight: math.unit(100, "lb"),
  17261. name: "Front",
  17262. image: {
  17263. source: "./media/characters/luno/front.svg",
  17264. extra: 1535 / 1487,
  17265. bottom: 0.03
  17266. }
  17267. },
  17268. },
  17269. [
  17270. {
  17271. name: "Micro",
  17272. height: math.unit(3, "inches")
  17273. },
  17274. {
  17275. name: "Normal",
  17276. height: math.unit(4 + 11 / 12, "feet"),
  17277. default: true
  17278. },
  17279. {
  17280. name: "Macro",
  17281. height: math.unit(300, "feet")
  17282. },
  17283. {
  17284. name: "Megamacro",
  17285. height: math.unit(700, "miles")
  17286. },
  17287. ]
  17288. ))
  17289. characterMakers.push(() => makeCharacter(
  17290. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17291. {
  17292. front: {
  17293. height: math.unit(6 + 2 / 12, "feet"),
  17294. weight: math.unit(170, "lb"),
  17295. name: "Front",
  17296. image: {
  17297. source: "./media/characters/jamesy/front.svg",
  17298. extra: 440 / 382,
  17299. bottom: 0.005
  17300. }
  17301. },
  17302. },
  17303. [
  17304. {
  17305. name: "Micro",
  17306. height: math.unit(3, "inches")
  17307. },
  17308. {
  17309. name: "Normal",
  17310. height: math.unit(6 + 2 / 12, "feet"),
  17311. default: true
  17312. },
  17313. {
  17314. name: "Macro",
  17315. height: math.unit(300, "feet")
  17316. },
  17317. {
  17318. name: "Megamacro",
  17319. height: math.unit(700, "miles")
  17320. },
  17321. ]
  17322. ))
  17323. characterMakers.push(() => makeCharacter(
  17324. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17325. {
  17326. front: {
  17327. height: math.unit(6, "feet"),
  17328. weight: math.unit(160, "lb"),
  17329. name: "Front",
  17330. image: {
  17331. source: "./media/characters/mark/front.svg",
  17332. extra: 3300 / 3100,
  17333. bottom: 136.42 / 3440.47
  17334. }
  17335. },
  17336. },
  17337. [
  17338. {
  17339. name: "Macro",
  17340. height: math.unit(120, "meters")
  17341. },
  17342. {
  17343. name: "Bigger Macro",
  17344. height: math.unit(350, "meters")
  17345. },
  17346. {
  17347. name: "Megamacro",
  17348. height: math.unit(8, "km"),
  17349. default: true
  17350. },
  17351. {
  17352. name: "Continental",
  17353. height: math.unit(4550, "km")
  17354. },
  17355. {
  17356. name: "Planetary",
  17357. height: math.unit(65000, "km")
  17358. },
  17359. ]
  17360. ))
  17361. characterMakers.push(() => makeCharacter(
  17362. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17363. {
  17364. front: {
  17365. height: math.unit(6, "feet"),
  17366. weight: math.unit(400, "lb"),
  17367. name: "Front",
  17368. image: {
  17369. source: "./media/characters/mac/front.svg",
  17370. extra: 1048 / 987.7,
  17371. bottom: 60 / 1107.6,
  17372. }
  17373. },
  17374. },
  17375. [
  17376. {
  17377. name: "Macro",
  17378. height: math.unit(500, "feet"),
  17379. default: true
  17380. },
  17381. ]
  17382. ))
  17383. characterMakers.push(() => makeCharacter(
  17384. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17385. {
  17386. front: {
  17387. height: math.unit(5 + 2 / 12, "feet"),
  17388. weight: math.unit(190, "lb"),
  17389. name: "Front",
  17390. image: {
  17391. source: "./media/characters/bari/front.svg",
  17392. extra: 3156 / 2880,
  17393. bottom: 0.03
  17394. }
  17395. },
  17396. back: {
  17397. height: math.unit(5 + 2 / 12, "feet"),
  17398. weight: math.unit(190, "lb"),
  17399. name: "Back",
  17400. image: {
  17401. source: "./media/characters/bari/back.svg",
  17402. extra: 3260 / 2834,
  17403. bottom: 0.025
  17404. }
  17405. },
  17406. frontPlush: {
  17407. height: math.unit(5 + 2 / 12, "feet"),
  17408. weight: math.unit(190, "lb"),
  17409. name: "Front (Plush)",
  17410. image: {
  17411. source: "./media/characters/bari/front-plush.svg",
  17412. extra: 1112 / 1061,
  17413. bottom: 0.002
  17414. }
  17415. },
  17416. },
  17417. [
  17418. {
  17419. name: "Micro",
  17420. height: math.unit(3, "inches")
  17421. },
  17422. {
  17423. name: "Normal",
  17424. height: math.unit(5 + 2 / 12, "feet"),
  17425. default: true
  17426. },
  17427. {
  17428. name: "Macro",
  17429. height: math.unit(20, "feet")
  17430. },
  17431. ]
  17432. ))
  17433. characterMakers.push(() => makeCharacter(
  17434. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17435. {
  17436. front: {
  17437. height: math.unit(6 + 1 / 12, "feet"),
  17438. weight: math.unit(275, "lb"),
  17439. name: "Front",
  17440. image: {
  17441. source: "./media/characters/hunter-misha-raven/front.svg"
  17442. }
  17443. },
  17444. },
  17445. [
  17446. {
  17447. name: "Mortal",
  17448. height: math.unit(6 + 1 / 12, "feet")
  17449. },
  17450. {
  17451. name: "Divine",
  17452. height: math.unit(1.12134e34, "parsecs"),
  17453. default: true
  17454. },
  17455. ]
  17456. ))
  17457. characterMakers.push(() => makeCharacter(
  17458. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17459. {
  17460. front: {
  17461. height: math.unit(6 + 3 / 12, "feet"),
  17462. weight: math.unit(220, "lb"),
  17463. name: "Front",
  17464. image: {
  17465. source: "./media/characters/max-calore/front.svg",
  17466. extra: 1700 / 1648,
  17467. bottom: 0.01
  17468. }
  17469. },
  17470. back: {
  17471. height: math.unit(6 + 3 / 12, "feet"),
  17472. weight: math.unit(220, "lb"),
  17473. name: "Back",
  17474. image: {
  17475. source: "./media/characters/max-calore/back.svg",
  17476. extra: 1700 / 1648,
  17477. bottom: 0.01
  17478. }
  17479. },
  17480. },
  17481. [
  17482. {
  17483. name: "Normal",
  17484. height: math.unit(6 + 3 / 12, "feet"),
  17485. default: true
  17486. },
  17487. ]
  17488. ))
  17489. characterMakers.push(() => makeCharacter(
  17490. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17491. {
  17492. side: {
  17493. height: math.unit(2 + 8 / 12, "feet"),
  17494. weight: math.unit(99, "lb"),
  17495. name: "Side",
  17496. image: {
  17497. source: "./media/characters/aspen/side.svg",
  17498. extra: 152 / 138,
  17499. bottom: 0.032
  17500. }
  17501. },
  17502. },
  17503. [
  17504. {
  17505. name: "Normal",
  17506. height: math.unit(2 + 8 / 12, "feet"),
  17507. default: true
  17508. },
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17513. {
  17514. side: {
  17515. height: math.unit(3 + 2 / 12, "feet"),
  17516. weight: math.unit(224, "lb"),
  17517. name: "Side",
  17518. image: {
  17519. source: "./media/characters/sheila-feral-wolf/side.svg",
  17520. extra: 179 / 166,
  17521. bottom: 0.03
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(3 + 2 / 12, "feet"),
  17529. default: true
  17530. },
  17531. ]
  17532. ))
  17533. characterMakers.push(() => makeCharacter(
  17534. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17535. {
  17536. side: {
  17537. height: math.unit(1 + 9 / 12, "feet"),
  17538. weight: math.unit(38, "lb"),
  17539. name: "Side",
  17540. image: {
  17541. source: "./media/characters/michelle/side.svg",
  17542. extra: 147 / 136.7,
  17543. bottom: 0.03
  17544. }
  17545. },
  17546. },
  17547. [
  17548. {
  17549. name: "Normal",
  17550. height: math.unit(1 + 9 / 12, "feet"),
  17551. default: true
  17552. },
  17553. ]
  17554. ))
  17555. characterMakers.push(() => makeCharacter(
  17556. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17557. {
  17558. front: {
  17559. height: math.unit(1.54, "feet"),
  17560. weight: math.unit(50, "lb"),
  17561. name: "Front",
  17562. image: {
  17563. source: "./media/characters/nino/front.svg"
  17564. }
  17565. },
  17566. },
  17567. [
  17568. {
  17569. name: "Normal",
  17570. height: math.unit(1.54, "feet"),
  17571. default: true
  17572. },
  17573. ]
  17574. ))
  17575. characterMakers.push(() => makeCharacter(
  17576. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17577. {
  17578. front: {
  17579. height: math.unit(1.49, "feet"),
  17580. weight: math.unit(45, "lb"),
  17581. name: "Front",
  17582. image: {
  17583. source: "./media/characters/viola/front.svg"
  17584. }
  17585. },
  17586. },
  17587. [
  17588. {
  17589. name: "Normal",
  17590. height: math.unit(1.49, "feet"),
  17591. default: true
  17592. },
  17593. ]
  17594. ))
  17595. characterMakers.push(() => makeCharacter(
  17596. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17597. {
  17598. front: {
  17599. height: math.unit(6 + 5 / 12, "feet"),
  17600. weight: math.unit(580, "lb"),
  17601. name: "Front",
  17602. image: {
  17603. source: "./media/characters/atlas/front.svg",
  17604. extra: 298.5 / 290,
  17605. bottom: 0.015
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Normal",
  17612. height: math.unit(6 + 5 / 12, "feet"),
  17613. default: true
  17614. },
  17615. ]
  17616. ))
  17617. characterMakers.push(() => makeCharacter(
  17618. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17619. {
  17620. side: {
  17621. height: math.unit(15.6, "inches"),
  17622. weight: math.unit(10, "lb"),
  17623. name: "Side",
  17624. image: {
  17625. source: "./media/characters/davy/side.svg",
  17626. extra: 200 / 170,
  17627. bottom: 0.01
  17628. }
  17629. },
  17630. },
  17631. [
  17632. {
  17633. name: "Normal",
  17634. height: math.unit(15.6, "inches"),
  17635. default: true
  17636. },
  17637. ]
  17638. ))
  17639. characterMakers.push(() => makeCharacter(
  17640. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17641. {
  17642. side: {
  17643. height: math.unit(4 + 8 / 12, "feet"),
  17644. weight: math.unit(166, "lb"),
  17645. name: "Side",
  17646. image: {
  17647. source: "./media/characters/fiona/side.svg",
  17648. extra: 232 / 220,
  17649. bottom: 0.03
  17650. }
  17651. },
  17652. },
  17653. [
  17654. {
  17655. name: "Normal",
  17656. height: math.unit(4 + 8 / 12, "feet"),
  17657. default: true
  17658. },
  17659. ]
  17660. ))
  17661. characterMakers.push(() => makeCharacter(
  17662. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17663. {
  17664. front: {
  17665. height: math.unit(26, "inches"),
  17666. weight: math.unit(35, "lb"),
  17667. name: "Front",
  17668. image: {
  17669. source: "./media/characters/lyla/front.svg",
  17670. bottom: 0.1
  17671. }
  17672. },
  17673. },
  17674. [
  17675. {
  17676. name: "Normal",
  17677. height: math.unit(3, "feet"),
  17678. default: true
  17679. },
  17680. ]
  17681. ))
  17682. characterMakers.push(() => makeCharacter(
  17683. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17684. {
  17685. side: {
  17686. height: math.unit(1.8, "feet"),
  17687. weight: math.unit(44, "lb"),
  17688. name: "Side",
  17689. image: {
  17690. source: "./media/characters/perseus/side.svg",
  17691. bottom: 0.21
  17692. }
  17693. },
  17694. },
  17695. [
  17696. {
  17697. name: "Normal",
  17698. height: math.unit(1.8, "feet"),
  17699. default: true
  17700. },
  17701. ]
  17702. ))
  17703. characterMakers.push(() => makeCharacter(
  17704. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17705. {
  17706. side: {
  17707. height: math.unit(4 + 2 / 12, "feet"),
  17708. weight: math.unit(20, "lb"),
  17709. name: "Side",
  17710. image: {
  17711. source: "./media/characters/remus/side.svg"
  17712. }
  17713. },
  17714. },
  17715. [
  17716. {
  17717. name: "Normal",
  17718. height: math.unit(4 + 2 / 12, "feet"),
  17719. default: true
  17720. },
  17721. ]
  17722. ))
  17723. characterMakers.push(() => makeCharacter(
  17724. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17725. {
  17726. front: {
  17727. height: math.unit(4 + 11 / 12, "feet"),
  17728. weight: math.unit(114, "lb"),
  17729. name: "Front",
  17730. image: {
  17731. source: "./media/characters/raf/front.svg",
  17732. extra: 1504/1339,
  17733. bottom: 26/1530
  17734. }
  17735. },
  17736. side: {
  17737. height: math.unit(4 + 11 / 12, "feet"),
  17738. weight: math.unit(114, "lb"),
  17739. name: "Side",
  17740. image: {
  17741. source: "./media/characters/raf/side.svg",
  17742. extra: 1466/1316,
  17743. bottom: 29/1495
  17744. }
  17745. },
  17746. },
  17747. [
  17748. {
  17749. name: "Micro",
  17750. height: math.unit(2, "inches")
  17751. },
  17752. {
  17753. name: "Normal",
  17754. height: math.unit(4 + 11 / 12, "feet"),
  17755. default: true
  17756. },
  17757. {
  17758. name: "Macro",
  17759. height: math.unit(70, "feet")
  17760. },
  17761. ]
  17762. ))
  17763. characterMakers.push(() => makeCharacter(
  17764. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17765. {
  17766. front: {
  17767. height: math.unit(1.5, "meters"),
  17768. weight: math.unit(68, "kg"),
  17769. name: "Front",
  17770. image: {
  17771. source: "./media/characters/liam-einarr/front.svg",
  17772. extra: 2822 / 2666
  17773. }
  17774. },
  17775. back: {
  17776. height: math.unit(1.5, "meters"),
  17777. weight: math.unit(68, "kg"),
  17778. name: "Back",
  17779. image: {
  17780. source: "./media/characters/liam-einarr/back.svg",
  17781. extra: 2822 / 2666,
  17782. bottom: 0.015
  17783. }
  17784. },
  17785. },
  17786. [
  17787. {
  17788. name: "Normal",
  17789. height: math.unit(1.5, "meters"),
  17790. default: true
  17791. },
  17792. {
  17793. name: "Macro",
  17794. height: math.unit(150, "meters")
  17795. },
  17796. {
  17797. name: "Megamacro",
  17798. height: math.unit(35, "km")
  17799. },
  17800. ]
  17801. ))
  17802. characterMakers.push(() => makeCharacter(
  17803. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17804. {
  17805. front: {
  17806. height: math.unit(6, "feet"),
  17807. weight: math.unit(75, "kg"),
  17808. name: "Front",
  17809. image: {
  17810. source: "./media/characters/linda/front.svg",
  17811. extra: 930 / 874,
  17812. bottom: 0.004
  17813. }
  17814. },
  17815. },
  17816. [
  17817. {
  17818. name: "Normal",
  17819. height: math.unit(6, "feet"),
  17820. default: true
  17821. },
  17822. ]
  17823. ))
  17824. characterMakers.push(() => makeCharacter(
  17825. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17826. {
  17827. front: {
  17828. height: math.unit(6 + 8 / 12, "feet"),
  17829. weight: math.unit(220, "lb"),
  17830. name: "Front",
  17831. image: {
  17832. source: "./media/characters/caylex/front.svg",
  17833. extra: 821 / 772,
  17834. bottom: 0.07
  17835. }
  17836. },
  17837. back: {
  17838. height: math.unit(6 + 8 / 12, "feet"),
  17839. weight: math.unit(220, "lb"),
  17840. name: "Back",
  17841. image: {
  17842. source: "./media/characters/caylex/back.svg",
  17843. extra: 821 / 772,
  17844. bottom: 0.022
  17845. }
  17846. },
  17847. hand: {
  17848. height: math.unit(1.25, "feet"),
  17849. name: "Hand",
  17850. image: {
  17851. source: "./media/characters/caylex/hand.svg"
  17852. }
  17853. },
  17854. foot: {
  17855. height: math.unit(1.6, "feet"),
  17856. name: "Foot",
  17857. image: {
  17858. source: "./media/characters/caylex/foot.svg"
  17859. }
  17860. },
  17861. armored: {
  17862. height: math.unit(6 + 8 / 12, "feet"),
  17863. weight: math.unit(250, "lb"),
  17864. name: "Armored",
  17865. image: {
  17866. source: "./media/characters/caylex/armored.svg",
  17867. extra: 1420 / 1310,
  17868. bottom: 0.045
  17869. }
  17870. },
  17871. },
  17872. [
  17873. {
  17874. name: "Normal",
  17875. height: math.unit(6 + 8 / 12, "feet"),
  17876. default: true
  17877. },
  17878. {
  17879. name: "Normal+",
  17880. height: math.unit(12, "feet")
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(7 + 6 / 12, "feet"),
  17889. weight: math.unit(288, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/alana/front.svg",
  17893. extra: 679 / 653,
  17894. bottom: 22.5 / 701
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Normal",
  17901. height: math.unit(7 + 6 / 12, "feet")
  17902. },
  17903. {
  17904. name: "Large",
  17905. height: math.unit(50, "feet")
  17906. },
  17907. {
  17908. name: "Macro",
  17909. height: math.unit(100, "feet"),
  17910. default: true
  17911. },
  17912. {
  17913. name: "Macro+",
  17914. height: math.unit(200, "feet")
  17915. },
  17916. ]
  17917. ))
  17918. characterMakers.push(() => makeCharacter(
  17919. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17920. {
  17921. front: {
  17922. height: math.unit(6 + 1 / 12, "feet"),
  17923. weight: math.unit(210, "lb"),
  17924. name: "Front",
  17925. image: {
  17926. source: "./media/characters/hasani/front.svg",
  17927. extra: 244 / 232,
  17928. bottom: 0.01
  17929. }
  17930. },
  17931. back: {
  17932. height: math.unit(6 + 1 / 12, "feet"),
  17933. weight: math.unit(210, "lb"),
  17934. name: "Back",
  17935. image: {
  17936. source: "./media/characters/hasani/back.svg",
  17937. extra: 244 / 232,
  17938. bottom: 0.01
  17939. }
  17940. },
  17941. },
  17942. [
  17943. {
  17944. name: "Normal",
  17945. height: math.unit(6 + 1 / 12, "feet")
  17946. },
  17947. {
  17948. name: "Macro",
  17949. height: math.unit(175, "feet"),
  17950. default: true
  17951. },
  17952. ]
  17953. ))
  17954. characterMakers.push(() => makeCharacter(
  17955. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17956. {
  17957. front: {
  17958. height: math.unit(1.82, "meters"),
  17959. weight: math.unit(140, "lb"),
  17960. name: "Front",
  17961. image: {
  17962. source: "./media/characters/nita/front.svg",
  17963. extra: 2473 / 2363,
  17964. bottom: 0.01
  17965. }
  17966. },
  17967. },
  17968. [
  17969. {
  17970. name: "Normal",
  17971. height: math.unit(1.82, "m")
  17972. },
  17973. {
  17974. name: "Macro",
  17975. height: math.unit(300, "m")
  17976. },
  17977. {
  17978. name: "Mistake Canon",
  17979. height: math.unit(0.5, "miles"),
  17980. default: true
  17981. },
  17982. {
  17983. name: "Big Mistake",
  17984. height: math.unit(13, "miles")
  17985. },
  17986. {
  17987. name: "Playing God",
  17988. height: math.unit(2450, "miles")
  17989. },
  17990. ]
  17991. ))
  17992. characterMakers.push(() => makeCharacter(
  17993. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17994. {
  17995. front: {
  17996. height: math.unit(4, "feet"),
  17997. weight: math.unit(120, "lb"),
  17998. name: "Front",
  17999. image: {
  18000. source: "./media/characters/shiriko/front.svg",
  18001. extra: 970/934,
  18002. bottom: 5/975
  18003. }
  18004. },
  18005. },
  18006. [
  18007. {
  18008. name: "Normal",
  18009. height: math.unit(4, "feet"),
  18010. default: true
  18011. },
  18012. ]
  18013. ))
  18014. characterMakers.push(() => makeCharacter(
  18015. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18016. {
  18017. front: {
  18018. height: math.unit(6, "feet"),
  18019. name: "front",
  18020. image: {
  18021. source: "./media/characters/deja/front.svg",
  18022. extra: 926 / 840,
  18023. bottom: 0.07
  18024. }
  18025. },
  18026. },
  18027. [
  18028. {
  18029. name: "Planck Length",
  18030. height: math.unit(1.6e-35, "meters")
  18031. },
  18032. {
  18033. name: "Normal",
  18034. height: math.unit(30.48, "meters"),
  18035. default: true
  18036. },
  18037. {
  18038. name: "Universal",
  18039. height: math.unit(8.8e26, "meters")
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18045. {
  18046. side: {
  18047. height: math.unit(8, "feet"),
  18048. weight: math.unit(6300, "lb"),
  18049. name: "Side",
  18050. image: {
  18051. source: "./media/characters/anima/side.svg",
  18052. bottom: 0.035
  18053. }
  18054. },
  18055. },
  18056. [
  18057. {
  18058. name: "Normal",
  18059. height: math.unit(8, "feet"),
  18060. default: true
  18061. },
  18062. ]
  18063. ))
  18064. characterMakers.push(() => makeCharacter(
  18065. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18066. {
  18067. front: {
  18068. height: math.unit(8, "feet"),
  18069. weight: math.unit(350, "lb"),
  18070. name: "Front",
  18071. image: {
  18072. source: "./media/characters/bianca/front.svg",
  18073. extra: 234 / 225,
  18074. bottom: 0.03
  18075. }
  18076. },
  18077. },
  18078. [
  18079. {
  18080. name: "Normal",
  18081. height: math.unit(8, "feet"),
  18082. default: true
  18083. },
  18084. ]
  18085. ))
  18086. characterMakers.push(() => makeCharacter(
  18087. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18088. {
  18089. front: {
  18090. height: math.unit(6, "feet"),
  18091. weight: math.unit(150, "lb"),
  18092. name: "Front",
  18093. image: {
  18094. source: "./media/characters/adinia/front.svg",
  18095. extra: 1845 / 1672,
  18096. bottom: 0.02
  18097. }
  18098. },
  18099. back: {
  18100. height: math.unit(6, "feet"),
  18101. weight: math.unit(150, "lb"),
  18102. name: "Back",
  18103. image: {
  18104. source: "./media/characters/adinia/back.svg",
  18105. extra: 1845 / 1672,
  18106. bottom: 0.002
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Normal",
  18113. height: math.unit(11 + 5 / 12, "feet"),
  18114. default: true
  18115. },
  18116. ]
  18117. ))
  18118. characterMakers.push(() => makeCharacter(
  18119. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18120. {
  18121. front: {
  18122. height: math.unit(3, "meters"),
  18123. weight: math.unit(200, "kg"),
  18124. name: "Front",
  18125. image: {
  18126. source: "./media/characters/lykasa/front.svg",
  18127. extra: 1076 / 976,
  18128. bottom: 0.06
  18129. }
  18130. },
  18131. },
  18132. [
  18133. {
  18134. name: "Normal",
  18135. height: math.unit(3, "meters")
  18136. },
  18137. {
  18138. name: "Kaiju",
  18139. height: math.unit(120, "meters"),
  18140. default: true
  18141. },
  18142. {
  18143. name: "Mega Kaiju",
  18144. height: math.unit(240, "km")
  18145. },
  18146. {
  18147. name: "Giga Kaiju",
  18148. height: math.unit(400, "megameters")
  18149. },
  18150. {
  18151. name: "Tera Kaiju",
  18152. height: math.unit(800, "gigameters")
  18153. },
  18154. {
  18155. name: "Kaiju Dragon Goddess",
  18156. height: math.unit(26, "zettaparsecs")
  18157. },
  18158. ]
  18159. ))
  18160. characterMakers.push(() => makeCharacter(
  18161. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18162. {
  18163. side: {
  18164. height: math.unit(283 / 124 * 6, "feet"),
  18165. weight: math.unit(35000, "lb"),
  18166. name: "Side",
  18167. image: {
  18168. source: "./media/characters/malfaren/side.svg",
  18169. extra: 1310/529,
  18170. bottom: 24/1334
  18171. }
  18172. },
  18173. front: {
  18174. height: math.unit(22.36, "feet"),
  18175. weight: math.unit(35000, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/malfaren/front.svg",
  18179. extra: 1237/1115,
  18180. bottom: 32/1269
  18181. }
  18182. },
  18183. maw: {
  18184. height: math.unit(6.9, "feet"),
  18185. name: "Maw",
  18186. image: {
  18187. source: "./media/characters/malfaren/maw.svg"
  18188. }
  18189. },
  18190. dick: {
  18191. height: math.unit(6.19, "feet"),
  18192. name: "Dick",
  18193. image: {
  18194. source: "./media/characters/malfaren/dick.svg"
  18195. }
  18196. },
  18197. eye: {
  18198. height: math.unit(0.69, "feet"),
  18199. name: "Eye",
  18200. image: {
  18201. source: "./media/characters/malfaren/eye.svg"
  18202. }
  18203. },
  18204. },
  18205. [
  18206. {
  18207. name: "Big",
  18208. height: math.unit(283 / 162 * 6, "feet"),
  18209. },
  18210. {
  18211. name: "Bigger",
  18212. height: math.unit(283 / 124 * 6, "feet")
  18213. },
  18214. {
  18215. name: "Massive",
  18216. height: math.unit(283 / 92 * 6, "feet"),
  18217. default: true
  18218. },
  18219. {
  18220. name: "👀💦",
  18221. height: math.unit(283 / 73 * 6, "feet"),
  18222. },
  18223. ]
  18224. ))
  18225. characterMakers.push(() => makeCharacter(
  18226. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18227. {
  18228. front: {
  18229. height: math.unit(1.7, "m"),
  18230. weight: math.unit(70, "kg"),
  18231. name: "Front",
  18232. image: {
  18233. source: "./media/characters/kernel/front.svg",
  18234. extra: 222 / 210,
  18235. bottom: 0.007
  18236. }
  18237. },
  18238. },
  18239. [
  18240. {
  18241. name: "Nano",
  18242. height: math.unit(17, "micrometers")
  18243. },
  18244. {
  18245. name: "Micro",
  18246. height: math.unit(1.7, "mm")
  18247. },
  18248. {
  18249. name: "Small",
  18250. height: math.unit(1.7, "cm")
  18251. },
  18252. {
  18253. name: "Normal",
  18254. height: math.unit(1.7, "m"),
  18255. default: true
  18256. },
  18257. ]
  18258. ))
  18259. characterMakers.push(() => makeCharacter(
  18260. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18261. {
  18262. front: {
  18263. height: math.unit(1.75, "meters"),
  18264. weight: math.unit(65, "kg"),
  18265. name: "Front",
  18266. image: {
  18267. source: "./media/characters/jayne-folest/front.svg",
  18268. extra: 2115 / 2007,
  18269. bottom: 0.02
  18270. }
  18271. },
  18272. back: {
  18273. height: math.unit(1.75, "meters"),
  18274. weight: math.unit(65, "kg"),
  18275. name: "Back",
  18276. image: {
  18277. source: "./media/characters/jayne-folest/back.svg",
  18278. extra: 2115 / 2007,
  18279. bottom: 0.005
  18280. }
  18281. },
  18282. frontClothed: {
  18283. height: math.unit(1.75, "meters"),
  18284. weight: math.unit(65, "kg"),
  18285. name: "Front (Clothed)",
  18286. image: {
  18287. source: "./media/characters/jayne-folest/front-clothed.svg",
  18288. extra: 2115 / 2007,
  18289. bottom: 0.035
  18290. }
  18291. },
  18292. hand: {
  18293. height: math.unit(1 / 1.260, "feet"),
  18294. name: "Hand",
  18295. image: {
  18296. source: "./media/characters/jayne-folest/hand.svg"
  18297. }
  18298. },
  18299. foot: {
  18300. height: math.unit(1 / 0.918, "feet"),
  18301. name: "Foot",
  18302. image: {
  18303. source: "./media/characters/jayne-folest/foot.svg"
  18304. }
  18305. },
  18306. },
  18307. [
  18308. {
  18309. name: "Micro",
  18310. height: math.unit(4, "cm")
  18311. },
  18312. {
  18313. name: "Normal",
  18314. height: math.unit(1.75, "meters")
  18315. },
  18316. {
  18317. name: "Macro",
  18318. height: math.unit(47.5, "meters"),
  18319. default: true
  18320. },
  18321. ]
  18322. ))
  18323. characterMakers.push(() => makeCharacter(
  18324. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18325. {
  18326. front: {
  18327. height: math.unit(180, "cm"),
  18328. weight: math.unit(70, "kg"),
  18329. name: "Front",
  18330. image: {
  18331. source: "./media/characters/algier/front.svg",
  18332. extra: 596 / 572,
  18333. bottom: 0.04
  18334. }
  18335. },
  18336. back: {
  18337. height: math.unit(180, "cm"),
  18338. weight: math.unit(70, "kg"),
  18339. name: "Back",
  18340. image: {
  18341. source: "./media/characters/algier/back.svg",
  18342. extra: 596 / 572,
  18343. bottom: 0.025
  18344. }
  18345. },
  18346. frontdressed: {
  18347. height: math.unit(180, "cm"),
  18348. weight: math.unit(150, "kg"),
  18349. name: "Front-dressed",
  18350. image: {
  18351. source: "./media/characters/algier/front-dressed.svg",
  18352. extra: 596 / 572,
  18353. bottom: 0.038
  18354. }
  18355. },
  18356. },
  18357. [
  18358. {
  18359. name: "Micro",
  18360. height: math.unit(5, "cm")
  18361. },
  18362. {
  18363. name: "Normal",
  18364. height: math.unit(180, "cm"),
  18365. default: true
  18366. },
  18367. {
  18368. name: "Macro",
  18369. height: math.unit(64, "m")
  18370. },
  18371. ]
  18372. ))
  18373. characterMakers.push(() => makeCharacter(
  18374. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18375. {
  18376. upright: {
  18377. height: math.unit(7, "feet"),
  18378. weight: math.unit(300, "lb"),
  18379. name: "Upright",
  18380. image: {
  18381. source: "./media/characters/pretzel/upright.svg",
  18382. extra: 534 / 522,
  18383. bottom: 0.065
  18384. }
  18385. },
  18386. sprawling: {
  18387. height: math.unit(3.75, "feet"),
  18388. weight: math.unit(300, "lb"),
  18389. name: "Sprawling",
  18390. image: {
  18391. source: "./media/characters/pretzel/sprawling.svg",
  18392. extra: 314 / 281,
  18393. bottom: 0.1
  18394. }
  18395. },
  18396. tongue: {
  18397. height: math.unit(2, "feet"),
  18398. name: "Tongue",
  18399. image: {
  18400. source: "./media/characters/pretzel/tongue.svg"
  18401. }
  18402. },
  18403. },
  18404. [
  18405. {
  18406. name: "Normal",
  18407. height: math.unit(7, "feet"),
  18408. default: true
  18409. },
  18410. {
  18411. name: "Oversized",
  18412. height: math.unit(15, "feet")
  18413. },
  18414. {
  18415. name: "Huge",
  18416. height: math.unit(30, "feet")
  18417. },
  18418. {
  18419. name: "Macro",
  18420. height: math.unit(250, "feet")
  18421. },
  18422. ]
  18423. ))
  18424. characterMakers.push(() => makeCharacter(
  18425. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18426. {
  18427. sideFront: {
  18428. height: math.unit(5 + 2 / 12, "feet"),
  18429. weight: math.unit(120, "lb"),
  18430. name: "Front Side",
  18431. image: {
  18432. source: "./media/characters/roxi/side-front.svg",
  18433. extra: 2924 / 2717,
  18434. bottom: 0.08
  18435. }
  18436. },
  18437. sideBack: {
  18438. height: math.unit(5 + 2 / 12, "feet"),
  18439. weight: math.unit(120, "lb"),
  18440. name: "Back Side",
  18441. image: {
  18442. source: "./media/characters/roxi/side-back.svg",
  18443. extra: 2904 / 2693,
  18444. bottom: 0.06
  18445. }
  18446. },
  18447. front: {
  18448. height: math.unit(5 + 2 / 12, "feet"),
  18449. weight: math.unit(120, "lb"),
  18450. name: "Front",
  18451. image: {
  18452. source: "./media/characters/roxi/front.svg",
  18453. extra: 2028 / 1907,
  18454. bottom: 0.01
  18455. }
  18456. },
  18457. frontAlt: {
  18458. height: math.unit(5 + 2 / 12, "feet"),
  18459. weight: math.unit(120, "lb"),
  18460. name: "Front (Alt)",
  18461. image: {
  18462. source: "./media/characters/roxi/front-alt.svg",
  18463. extra: 1828 / 1798,
  18464. bottom: 0.01
  18465. }
  18466. },
  18467. sitting: {
  18468. height: math.unit(2.8, "feet"),
  18469. weight: math.unit(120, "lb"),
  18470. name: "Sitting",
  18471. image: {
  18472. source: "./media/characters/roxi/sitting.svg",
  18473. extra: 2660 / 2462,
  18474. bottom: 0.1
  18475. }
  18476. },
  18477. },
  18478. [
  18479. {
  18480. name: "Normal",
  18481. height: math.unit(5 + 2 / 12, "feet"),
  18482. default: true
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18488. {
  18489. side: {
  18490. height: math.unit(55, "feet"),
  18491. weight: math.unit(153, "tons"),
  18492. name: "Side",
  18493. image: {
  18494. source: "./media/characters/shadow/side.svg",
  18495. extra: 701 / 628,
  18496. bottom: 0.02
  18497. }
  18498. },
  18499. flying: {
  18500. height: math.unit(145, "feet"),
  18501. weight: math.unit(153, "tons"),
  18502. name: "Flying",
  18503. image: {
  18504. source: "./media/characters/shadow/flying.svg"
  18505. }
  18506. },
  18507. },
  18508. [
  18509. {
  18510. name: "Normal",
  18511. height: math.unit(55, "feet"),
  18512. default: true
  18513. },
  18514. ]
  18515. ))
  18516. characterMakers.push(() => makeCharacter(
  18517. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18518. {
  18519. front: {
  18520. height: math.unit(6, "feet"),
  18521. weight: math.unit(200, "lb"),
  18522. name: "Front",
  18523. image: {
  18524. source: "./media/characters/marcie/front.svg",
  18525. extra: 960 / 876,
  18526. bottom: 58 / 1017.87
  18527. }
  18528. },
  18529. },
  18530. [
  18531. {
  18532. name: "Macro",
  18533. height: math.unit(1, "mile"),
  18534. default: true
  18535. },
  18536. ]
  18537. ))
  18538. characterMakers.push(() => makeCharacter(
  18539. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18540. {
  18541. front: {
  18542. height: math.unit(7, "feet"),
  18543. weight: math.unit(200, "lb"),
  18544. name: "Front",
  18545. image: {
  18546. source: "./media/characters/kachina/front.svg",
  18547. extra: 1290.68 / 1119,
  18548. bottom: 36.5 / 1327.18
  18549. }
  18550. },
  18551. },
  18552. [
  18553. {
  18554. name: "Normal",
  18555. height: math.unit(7, "feet"),
  18556. default: true
  18557. },
  18558. ]
  18559. ))
  18560. characterMakers.push(() => makeCharacter(
  18561. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18562. {
  18563. looking: {
  18564. height: math.unit(2, "meters"),
  18565. weight: math.unit(300, "kg"),
  18566. name: "Looking",
  18567. image: {
  18568. source: "./media/characters/kash/looking.svg",
  18569. extra: 474 / 344,
  18570. bottom: 0.03
  18571. }
  18572. },
  18573. side: {
  18574. height: math.unit(2, "meters"),
  18575. weight: math.unit(300, "kg"),
  18576. name: "Side",
  18577. image: {
  18578. source: "./media/characters/kash/side.svg",
  18579. extra: 302 / 251,
  18580. bottom: 0.03
  18581. }
  18582. },
  18583. front: {
  18584. height: math.unit(2, "meters"),
  18585. weight: math.unit(300, "kg"),
  18586. name: "Front",
  18587. image: {
  18588. source: "./media/characters/kash/front.svg",
  18589. extra: 495 / 360,
  18590. bottom: 0.015
  18591. }
  18592. },
  18593. },
  18594. [
  18595. {
  18596. name: "Normal",
  18597. height: math.unit(2, "meters"),
  18598. default: true
  18599. },
  18600. {
  18601. name: "Big",
  18602. height: math.unit(3, "meters")
  18603. },
  18604. {
  18605. name: "Large",
  18606. height: math.unit(5, "meters")
  18607. },
  18608. ]
  18609. ))
  18610. characterMakers.push(() => makeCharacter(
  18611. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18612. {
  18613. feeding: {
  18614. height: math.unit(6.7, "feet"),
  18615. weight: math.unit(350, "lb"),
  18616. name: "Feeding",
  18617. image: {
  18618. source: "./media/characters/lalim/feeding.svg",
  18619. }
  18620. },
  18621. },
  18622. [
  18623. {
  18624. name: "Normal",
  18625. height: math.unit(6.7, "feet"),
  18626. default: true
  18627. },
  18628. ]
  18629. ))
  18630. characterMakers.push(() => makeCharacter(
  18631. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18632. {
  18633. front: {
  18634. height: math.unit(9.5, "feet"),
  18635. weight: math.unit(600, "lb"),
  18636. name: "Front",
  18637. image: {
  18638. source: "./media/characters/de'vout/front.svg",
  18639. extra: 1443 / 1328,
  18640. bottom: 0.025
  18641. }
  18642. },
  18643. back: {
  18644. height: math.unit(9.5, "feet"),
  18645. weight: math.unit(600, "lb"),
  18646. name: "Back",
  18647. image: {
  18648. source: "./media/characters/de'vout/back.svg",
  18649. extra: 1443 / 1328
  18650. }
  18651. },
  18652. frontDressed: {
  18653. height: math.unit(9.5, "feet"),
  18654. weight: math.unit(600, "lb"),
  18655. name: "Front (Dressed",
  18656. image: {
  18657. source: "./media/characters/de'vout/front-dressed.svg",
  18658. extra: 1443 / 1328,
  18659. bottom: 0.025
  18660. }
  18661. },
  18662. backDressed: {
  18663. height: math.unit(9.5, "feet"),
  18664. weight: math.unit(600, "lb"),
  18665. name: "Back (Dressed",
  18666. image: {
  18667. source: "./media/characters/de'vout/back-dressed.svg",
  18668. extra: 1443 / 1328
  18669. }
  18670. },
  18671. },
  18672. [
  18673. {
  18674. name: "Normal",
  18675. height: math.unit(9.5, "feet"),
  18676. default: true
  18677. },
  18678. ]
  18679. ))
  18680. characterMakers.push(() => makeCharacter(
  18681. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18682. {
  18683. front: {
  18684. height: math.unit(8, "feet"),
  18685. weight: math.unit(225, "lb"),
  18686. name: "Front",
  18687. image: {
  18688. source: "./media/characters/talana/front.svg",
  18689. extra: 1410 / 1300,
  18690. bottom: 0.015
  18691. }
  18692. },
  18693. frontDressed: {
  18694. height: math.unit(8, "feet"),
  18695. weight: math.unit(225, "lb"),
  18696. name: "Front (Dressed",
  18697. image: {
  18698. source: "./media/characters/talana/front-dressed.svg",
  18699. extra: 1410 / 1300,
  18700. bottom: 0.015
  18701. }
  18702. },
  18703. },
  18704. [
  18705. {
  18706. name: "Normal",
  18707. height: math.unit(8, "feet"),
  18708. default: true
  18709. },
  18710. ]
  18711. ))
  18712. characterMakers.push(() => makeCharacter(
  18713. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18714. {
  18715. side: {
  18716. height: math.unit(7.2, "feet"),
  18717. weight: math.unit(150, "lb"),
  18718. name: "Side",
  18719. image: {
  18720. source: "./media/characters/xeauvok/side.svg",
  18721. extra: 1975 / 1523,
  18722. bottom: 0.07
  18723. }
  18724. },
  18725. },
  18726. [
  18727. {
  18728. name: "Normal",
  18729. height: math.unit(7.2, "feet"),
  18730. default: true
  18731. },
  18732. ]
  18733. ))
  18734. characterMakers.push(() => makeCharacter(
  18735. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18736. {
  18737. side: {
  18738. height: math.unit(10, "feet"),
  18739. weight: math.unit(900, "kg"),
  18740. name: "Side",
  18741. image: {
  18742. source: "./media/characters/zara/side.svg",
  18743. extra: 504 / 498
  18744. }
  18745. },
  18746. },
  18747. [
  18748. {
  18749. name: "Normal",
  18750. height: math.unit(10, "feet"),
  18751. default: true
  18752. },
  18753. ]
  18754. ))
  18755. characterMakers.push(() => makeCharacter(
  18756. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18757. {
  18758. side: {
  18759. height: math.unit(6, "feet"),
  18760. weight: math.unit(150, "lb"),
  18761. name: "Side",
  18762. image: {
  18763. source: "./media/characters/richard-dragon/side.svg",
  18764. extra: 845 / 340,
  18765. bottom: 0.017
  18766. }
  18767. },
  18768. maw: {
  18769. height: math.unit(2.97, "feet"),
  18770. name: "Maw",
  18771. image: {
  18772. source: "./media/characters/richard-dragon/maw.svg"
  18773. }
  18774. },
  18775. },
  18776. [
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18781. {
  18782. front: {
  18783. height: math.unit(4, "feet"),
  18784. weight: math.unit(100, "lb"),
  18785. name: "Front",
  18786. image: {
  18787. source: "./media/characters/richard-smeargle/front.svg",
  18788. extra: 2952 / 2820,
  18789. bottom: 0.028
  18790. }
  18791. },
  18792. },
  18793. [
  18794. {
  18795. name: "Normal",
  18796. height: math.unit(4, "feet"),
  18797. default: true
  18798. },
  18799. {
  18800. name: "Dynamax",
  18801. height: math.unit(20, "meters")
  18802. },
  18803. ]
  18804. ))
  18805. characterMakers.push(() => makeCharacter(
  18806. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18807. {
  18808. front: {
  18809. height: math.unit(6, "feet"),
  18810. weight: math.unit(110, "lb"),
  18811. name: "Front",
  18812. image: {
  18813. source: "./media/characters/klay/front.svg",
  18814. extra: 962 / 883,
  18815. bottom: 0.04
  18816. }
  18817. },
  18818. back: {
  18819. height: math.unit(6, "feet"),
  18820. weight: math.unit(110, "lb"),
  18821. name: "Back",
  18822. image: {
  18823. source: "./media/characters/klay/back.svg",
  18824. extra: 962 / 883
  18825. }
  18826. },
  18827. beans: {
  18828. height: math.unit(1.15, "feet"),
  18829. name: "Beans",
  18830. image: {
  18831. source: "./media/characters/klay/beans.svg"
  18832. }
  18833. },
  18834. },
  18835. [
  18836. {
  18837. name: "Micro",
  18838. height: math.unit(6, "inches")
  18839. },
  18840. {
  18841. name: "Mini",
  18842. height: math.unit(3, "feet")
  18843. },
  18844. {
  18845. name: "Normal",
  18846. height: math.unit(6, "feet"),
  18847. default: true
  18848. },
  18849. {
  18850. name: "Big",
  18851. height: math.unit(25, "feet")
  18852. },
  18853. {
  18854. name: "Macro",
  18855. height: math.unit(100, "feet")
  18856. },
  18857. {
  18858. name: "Megamacro",
  18859. height: math.unit(400, "feet")
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18865. {
  18866. front: {
  18867. height: math.unit(6, "feet"),
  18868. weight: math.unit(160, "lb"),
  18869. name: "Front",
  18870. image: {
  18871. source: "./media/characters/marcus/front.svg",
  18872. extra: 734 / 676,
  18873. bottom: 0.03
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Little",
  18880. height: math.unit(6, "feet")
  18881. },
  18882. {
  18883. name: "Normal",
  18884. height: math.unit(110, "feet"),
  18885. default: true
  18886. },
  18887. {
  18888. name: "Macro",
  18889. height: math.unit(250, "feet")
  18890. },
  18891. {
  18892. name: "Megamacro",
  18893. height: math.unit(1000, "feet")
  18894. },
  18895. ]
  18896. ))
  18897. characterMakers.push(() => makeCharacter(
  18898. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18899. {
  18900. front: {
  18901. height: math.unit(7, "feet"),
  18902. weight: math.unit(275, "lb"),
  18903. name: "Front",
  18904. image: {
  18905. source: "./media/characters/claude-delroute/front.svg",
  18906. extra: 902/827,
  18907. bottom: 26/928
  18908. }
  18909. },
  18910. side: {
  18911. height: math.unit(7, "feet"),
  18912. weight: math.unit(275, "lb"),
  18913. name: "Side",
  18914. image: {
  18915. source: "./media/characters/claude-delroute/side.svg",
  18916. extra: 908/853,
  18917. bottom: 16/924
  18918. }
  18919. },
  18920. back: {
  18921. height: math.unit(7, "feet"),
  18922. weight: math.unit(275, "lb"),
  18923. name: "Back",
  18924. image: {
  18925. source: "./media/characters/claude-delroute/back.svg",
  18926. extra: 911/829,
  18927. bottom: 18/929
  18928. }
  18929. },
  18930. maw: {
  18931. height: math.unit(0.6407, "meters"),
  18932. name: "Maw",
  18933. image: {
  18934. source: "./media/characters/claude-delroute/maw.svg"
  18935. }
  18936. },
  18937. },
  18938. [
  18939. {
  18940. name: "Normal",
  18941. height: math.unit(7, "feet"),
  18942. default: true
  18943. },
  18944. {
  18945. name: "Lorge",
  18946. height: math.unit(20, "feet")
  18947. },
  18948. ]
  18949. ))
  18950. characterMakers.push(() => makeCharacter(
  18951. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18952. {
  18953. front: {
  18954. height: math.unit(8 + 4 / 12, "feet"),
  18955. weight: math.unit(600, "lb"),
  18956. name: "Front",
  18957. image: {
  18958. source: "./media/characters/dragonien/front.svg",
  18959. extra: 100 / 94,
  18960. bottom: 3.3 / 103.3445
  18961. }
  18962. },
  18963. back: {
  18964. height: math.unit(8 + 4 / 12, "feet"),
  18965. weight: math.unit(600, "lb"),
  18966. name: "Back",
  18967. image: {
  18968. source: "./media/characters/dragonien/back.svg",
  18969. extra: 776 / 746,
  18970. bottom: 6.4 / 782.0616
  18971. }
  18972. },
  18973. foot: {
  18974. height: math.unit(1.54, "feet"),
  18975. name: "Foot",
  18976. image: {
  18977. source: "./media/characters/dragonien/foot.svg",
  18978. }
  18979. },
  18980. },
  18981. [
  18982. {
  18983. name: "Normal",
  18984. height: math.unit(8 + 4 / 12, "feet"),
  18985. default: true
  18986. },
  18987. {
  18988. name: "Macro",
  18989. height: math.unit(200, "feet")
  18990. },
  18991. {
  18992. name: "Megamacro",
  18993. height: math.unit(1, "mile")
  18994. },
  18995. {
  18996. name: "Gigamacro",
  18997. height: math.unit(1000, "miles")
  18998. },
  18999. ]
  19000. ))
  19001. characterMakers.push(() => makeCharacter(
  19002. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19003. {
  19004. front: {
  19005. height: math.unit(5 + 2 / 12, "feet"),
  19006. weight: math.unit(110, "lb"),
  19007. name: "Front",
  19008. image: {
  19009. source: "./media/characters/desta/front.svg",
  19010. extra: 767 / 726,
  19011. bottom: 11.7 / 779
  19012. }
  19013. },
  19014. back: {
  19015. height: math.unit(5 + 2 / 12, "feet"),
  19016. weight: math.unit(110, "lb"),
  19017. name: "Back",
  19018. image: {
  19019. source: "./media/characters/desta/back.svg",
  19020. extra: 777 / 728,
  19021. bottom: 6 / 784
  19022. }
  19023. },
  19024. frontAlt: {
  19025. height: math.unit(5 + 2 / 12, "feet"),
  19026. weight: math.unit(110, "lb"),
  19027. name: "Front",
  19028. image: {
  19029. source: "./media/characters/desta/front-alt.svg",
  19030. extra: 1482 / 1417
  19031. }
  19032. },
  19033. side: {
  19034. height: math.unit(5 + 2 / 12, "feet"),
  19035. weight: math.unit(110, "lb"),
  19036. name: "Side",
  19037. image: {
  19038. source: "./media/characters/desta/side.svg",
  19039. extra: 2579 / 2491,
  19040. bottom: 0.053
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Micro",
  19047. height: math.unit(6, "inches")
  19048. },
  19049. {
  19050. name: "Normal",
  19051. height: math.unit(5 + 2 / 12, "feet"),
  19052. default: true
  19053. },
  19054. {
  19055. name: "Macro",
  19056. height: math.unit(62, "feet")
  19057. },
  19058. {
  19059. name: "Megamacro",
  19060. height: math.unit(1800, "feet")
  19061. },
  19062. ]
  19063. ))
  19064. characterMakers.push(() => makeCharacter(
  19065. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19066. {
  19067. front: {
  19068. height: math.unit(10, "feet"),
  19069. weight: math.unit(700, "lb"),
  19070. name: "Front",
  19071. image: {
  19072. source: "./media/characters/storm-alystar/front.svg",
  19073. extra: 2112 / 1898,
  19074. bottom: 0.034
  19075. }
  19076. },
  19077. },
  19078. [
  19079. {
  19080. name: "Micro",
  19081. height: math.unit(3.5, "inches")
  19082. },
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(10, "feet"),
  19086. default: true
  19087. },
  19088. {
  19089. name: "Macro",
  19090. height: math.unit(400, "feet")
  19091. },
  19092. {
  19093. name: "Deific",
  19094. height: math.unit(60, "miles")
  19095. },
  19096. ]
  19097. ))
  19098. characterMakers.push(() => makeCharacter(
  19099. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19100. {
  19101. front: {
  19102. height: math.unit(2.35, "meters"),
  19103. weight: math.unit(119, "kg"),
  19104. name: "Front",
  19105. image: {
  19106. source: "./media/characters/ilia/front.svg",
  19107. extra: 1285 / 1255,
  19108. bottom: 0.06
  19109. }
  19110. },
  19111. },
  19112. [
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(2.35, "meters")
  19116. },
  19117. {
  19118. name: "Macro",
  19119. height: math.unit(140, "meters"),
  19120. default: true
  19121. },
  19122. {
  19123. name: "Megamacro",
  19124. height: math.unit(100, "miles")
  19125. },
  19126. ]
  19127. ))
  19128. characterMakers.push(() => makeCharacter(
  19129. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19130. {
  19131. front: {
  19132. height: math.unit(6 + 5 / 12, "feet"),
  19133. weight: math.unit(190, "lb"),
  19134. name: "Front",
  19135. image: {
  19136. source: "./media/characters/kingdead/front.svg",
  19137. extra: 1228 / 1177
  19138. }
  19139. },
  19140. },
  19141. [
  19142. {
  19143. name: "Micro",
  19144. height: math.unit(7, "inches")
  19145. },
  19146. {
  19147. name: "Normal",
  19148. height: math.unit(6 + 5 / 12, "feet")
  19149. },
  19150. {
  19151. name: "Macro",
  19152. height: math.unit(150, "feet"),
  19153. default: true
  19154. },
  19155. {
  19156. name: "Megamacro",
  19157. height: math.unit(200, "miles")
  19158. },
  19159. ]
  19160. ))
  19161. characterMakers.push(() => makeCharacter(
  19162. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19163. {
  19164. front: {
  19165. height: math.unit(8, "feet"),
  19166. weight: math.unit(600, "lb"),
  19167. name: "Front",
  19168. image: {
  19169. source: "./media/characters/kyrehx/front.svg",
  19170. extra: 1195 / 1095,
  19171. bottom: 0.034
  19172. }
  19173. },
  19174. },
  19175. [
  19176. {
  19177. name: "Micro",
  19178. height: math.unit(2, "inches")
  19179. },
  19180. {
  19181. name: "Normal",
  19182. height: math.unit(8, "feet"),
  19183. default: true
  19184. },
  19185. {
  19186. name: "Macro",
  19187. height: math.unit(255, "feet")
  19188. },
  19189. ]
  19190. ))
  19191. characterMakers.push(() => makeCharacter(
  19192. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19193. {
  19194. front: {
  19195. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19196. weight: math.unit(184, "lb"),
  19197. name: "Front",
  19198. image: {
  19199. source: "./media/characters/xang/front.svg",
  19200. extra: 845 / 755
  19201. }
  19202. },
  19203. },
  19204. [
  19205. {
  19206. name: "Normal",
  19207. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19208. default: true
  19209. },
  19210. {
  19211. name: "Macro",
  19212. height: math.unit(0.935 * 146, "feet")
  19213. },
  19214. {
  19215. name: "Megamacro",
  19216. height: math.unit(0.935 * 3, "miles")
  19217. },
  19218. ]
  19219. ))
  19220. characterMakers.push(() => makeCharacter(
  19221. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19222. {
  19223. frontDressed: {
  19224. height: math.unit(5 + 7 / 12, "feet"),
  19225. weight: math.unit(140, "lb"),
  19226. name: "Front (Dressed)",
  19227. image: {
  19228. source: "./media/characters/doc-weardno/front-dressed.svg",
  19229. extra: 263 / 234
  19230. }
  19231. },
  19232. backDressed: {
  19233. height: math.unit(5 + 7 / 12, "feet"),
  19234. weight: math.unit(140, "lb"),
  19235. name: "Back (Dressed)",
  19236. image: {
  19237. source: "./media/characters/doc-weardno/back-dressed.svg",
  19238. extra: 266 / 238
  19239. }
  19240. },
  19241. front: {
  19242. height: math.unit(5 + 7 / 12, "feet"),
  19243. weight: math.unit(140, "lb"),
  19244. name: "Front",
  19245. image: {
  19246. source: "./media/characters/doc-weardno/front.svg",
  19247. extra: 254 / 233
  19248. }
  19249. },
  19250. },
  19251. [
  19252. {
  19253. name: "Micro",
  19254. height: math.unit(3, "inches")
  19255. },
  19256. {
  19257. name: "Normal",
  19258. height: math.unit(5 + 7 / 12, "feet"),
  19259. default: true
  19260. },
  19261. {
  19262. name: "Macro",
  19263. height: math.unit(25, "feet")
  19264. },
  19265. {
  19266. name: "Megamacro",
  19267. height: math.unit(2, "miles")
  19268. },
  19269. ]
  19270. ))
  19271. characterMakers.push(() => makeCharacter(
  19272. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19273. {
  19274. front: {
  19275. height: math.unit(6 + 2 / 12, "feet"),
  19276. weight: math.unit(153, "lb"),
  19277. name: "Front",
  19278. image: {
  19279. source: "./media/characters/seth-whilst/front.svg",
  19280. bottom: 0.07
  19281. }
  19282. },
  19283. },
  19284. [
  19285. {
  19286. name: "Micro",
  19287. height: math.unit(5, "inches")
  19288. },
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(6 + 2 / 12, "feet"),
  19292. default: true
  19293. },
  19294. ]
  19295. ))
  19296. characterMakers.push(() => makeCharacter(
  19297. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19298. {
  19299. front: {
  19300. height: math.unit(3, "inches"),
  19301. weight: math.unit(8, "grams"),
  19302. name: "Front",
  19303. image: {
  19304. source: "./media/characters/pocket-jabari/front.svg",
  19305. extra: 1024 / 974,
  19306. bottom: 0.039
  19307. }
  19308. },
  19309. },
  19310. [
  19311. {
  19312. name: "Minimicro",
  19313. height: math.unit(8, "mm")
  19314. },
  19315. {
  19316. name: "Micro",
  19317. height: math.unit(3, "inches"),
  19318. default: true
  19319. },
  19320. {
  19321. name: "Normal",
  19322. height: math.unit(3, "feet")
  19323. },
  19324. ]
  19325. ))
  19326. characterMakers.push(() => makeCharacter(
  19327. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19328. {
  19329. frontDressed: {
  19330. height: math.unit(15, "feet"),
  19331. weight: math.unit(3280, "lb"),
  19332. name: "Front (Dressed)",
  19333. image: {
  19334. source: "./media/characters/sapphy/front-dressed.svg",
  19335. extra: 1951/1654,
  19336. bottom: 194/2145
  19337. },
  19338. form: "anthro",
  19339. default: true
  19340. },
  19341. backDressed: {
  19342. height: math.unit(15, "feet"),
  19343. weight: math.unit(3280, "lb"),
  19344. name: "Back (Dressed)",
  19345. image: {
  19346. source: "./media/characters/sapphy/back-dressed.svg",
  19347. extra: 2058/1918,
  19348. bottom: 125/2183
  19349. },
  19350. form: "anthro"
  19351. },
  19352. frontNude: {
  19353. height: math.unit(15, "feet"),
  19354. weight: math.unit(3280, "lb"),
  19355. name: "Front (Nude)",
  19356. image: {
  19357. source: "./media/characters/sapphy/front-nude.svg",
  19358. extra: 1951/1654,
  19359. bottom: 194/2145
  19360. },
  19361. form: "anthro"
  19362. },
  19363. backNude: {
  19364. height: math.unit(15, "feet"),
  19365. weight: math.unit(3280, "lb"),
  19366. name: "Back (Nude)",
  19367. image: {
  19368. source: "./media/characters/sapphy/back-nude.svg",
  19369. extra: 2058/1918,
  19370. bottom: 125/2183
  19371. },
  19372. form: "anthro"
  19373. },
  19374. full: {
  19375. height: math.unit(15, "feet"),
  19376. weight: math.unit(3280, "lb"),
  19377. name: "Full",
  19378. image: {
  19379. source: "./media/characters/sapphy/full.svg",
  19380. extra: 1396/1317,
  19381. bottom: 44/1440
  19382. },
  19383. form: "anthro"
  19384. },
  19385. dick: {
  19386. height: math.unit(3.8, "feet"),
  19387. name: "Dick",
  19388. image: {
  19389. source: "./media/characters/sapphy/dick.svg"
  19390. },
  19391. form: "anthro"
  19392. },
  19393. feral: {
  19394. height: math.unit(35, "feet"),
  19395. weight: math.unit(160, "tons"),
  19396. name: "Feral",
  19397. image: {
  19398. source: "./media/characters/sapphy/feral.svg",
  19399. extra: 1050/573,
  19400. bottom: 60/1110
  19401. },
  19402. form: "feral",
  19403. default: true
  19404. },
  19405. },
  19406. [
  19407. {
  19408. name: "Normal",
  19409. height: math.unit(15, "feet"),
  19410. form: "anthro"
  19411. },
  19412. {
  19413. name: "Casual Macro",
  19414. height: math.unit(120, "feet"),
  19415. form: "anthro"
  19416. },
  19417. {
  19418. name: "Macro",
  19419. height: math.unit(2150, "feet"),
  19420. default: true,
  19421. form: "anthro"
  19422. },
  19423. {
  19424. name: "Megamacro",
  19425. height: math.unit(8, "miles"),
  19426. form: "anthro"
  19427. },
  19428. {
  19429. name: "Galaxy Mom",
  19430. height: math.unit(6, "megalightyears"),
  19431. form: "anthro"
  19432. },
  19433. {
  19434. name: "Normal",
  19435. height: math.unit(35, "feet"),
  19436. form: "feral",
  19437. default: true
  19438. },
  19439. {
  19440. name: "Macro",
  19441. height: math.unit(300, "feet"),
  19442. form: "feral"
  19443. },
  19444. {
  19445. name: "Galaxy Mom",
  19446. height: math.unit(10, "megalightyears"),
  19447. form: "feral"
  19448. },
  19449. ],
  19450. {
  19451. "anthro": {
  19452. name: "Anthro",
  19453. default: true
  19454. },
  19455. "feral": {
  19456. name: "Feral"
  19457. }
  19458. }
  19459. ))
  19460. characterMakers.push(() => makeCharacter(
  19461. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19462. {
  19463. front: {
  19464. height: math.unit(6, "feet"),
  19465. weight: math.unit(170, "lb"),
  19466. name: "Front",
  19467. image: {
  19468. source: "./media/characters/kiro/front.svg",
  19469. extra: 1064 / 1012,
  19470. bottom: 0.052
  19471. }
  19472. },
  19473. },
  19474. [
  19475. {
  19476. name: "Micro",
  19477. height: math.unit(6, "inches")
  19478. },
  19479. {
  19480. name: "Normal",
  19481. height: math.unit(6, "feet"),
  19482. default: true
  19483. },
  19484. {
  19485. name: "Macro",
  19486. height: math.unit(72, "feet")
  19487. },
  19488. ]
  19489. ))
  19490. characterMakers.push(() => makeCharacter(
  19491. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19492. {
  19493. front: {
  19494. height: math.unit(5 + 9 / 12, "feet"),
  19495. weight: math.unit(175, "lb"),
  19496. name: "Front",
  19497. image: {
  19498. source: "./media/characters/irishfox/front.svg",
  19499. extra: 1912 / 1680,
  19500. bottom: 0.02
  19501. }
  19502. },
  19503. },
  19504. [
  19505. {
  19506. name: "Nano",
  19507. height: math.unit(1, "mm")
  19508. },
  19509. {
  19510. name: "Micro",
  19511. height: math.unit(2, "inches")
  19512. },
  19513. {
  19514. name: "Normal",
  19515. height: math.unit(5 + 9 / 12, "feet"),
  19516. default: true
  19517. },
  19518. {
  19519. name: "Macro",
  19520. height: math.unit(45, "feet")
  19521. },
  19522. ]
  19523. ))
  19524. characterMakers.push(() => makeCharacter(
  19525. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19526. {
  19527. front: {
  19528. height: math.unit(6 + 1 / 12, "feet"),
  19529. weight: math.unit(75, "lb"),
  19530. name: "Front",
  19531. image: {
  19532. source: "./media/characters/aronai-sieyes/front.svg",
  19533. extra: 1532/1450,
  19534. bottom: 42/1574
  19535. }
  19536. },
  19537. side: {
  19538. height: math.unit(6 + 1 / 12, "feet"),
  19539. weight: math.unit(75, "lb"),
  19540. name: "Side",
  19541. image: {
  19542. source: "./media/characters/aronai-sieyes/side.svg",
  19543. extra: 1422/1365,
  19544. bottom: 148/1570
  19545. }
  19546. },
  19547. back: {
  19548. height: math.unit(6 + 1 / 12, "feet"),
  19549. weight: math.unit(75, "lb"),
  19550. name: "Back",
  19551. image: {
  19552. source: "./media/characters/aronai-sieyes/back.svg",
  19553. extra: 1526/1464,
  19554. bottom: 51/1577
  19555. }
  19556. },
  19557. dressed: {
  19558. height: math.unit(6 + 1 / 12, "feet"),
  19559. weight: math.unit(75, "lb"),
  19560. name: "Dressed",
  19561. image: {
  19562. source: "./media/characters/aronai-sieyes/dressed.svg",
  19563. extra: 1559/1483,
  19564. bottom: 39/1598
  19565. }
  19566. },
  19567. slit: {
  19568. height: math.unit(1.3, "feet"),
  19569. name: "Slit",
  19570. image: {
  19571. source: "./media/characters/aronai-sieyes/slit.svg"
  19572. }
  19573. },
  19574. slitSpread: {
  19575. height: math.unit(0.9, "feet"),
  19576. name: "Slit (Spread)",
  19577. image: {
  19578. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19579. }
  19580. },
  19581. rump: {
  19582. height: math.unit(1.3, "feet"),
  19583. name: "Rump",
  19584. image: {
  19585. source: "./media/characters/aronai-sieyes/rump.svg"
  19586. }
  19587. },
  19588. maw: {
  19589. height: math.unit(1.25, "feet"),
  19590. name: "Maw",
  19591. image: {
  19592. source: "./media/characters/aronai-sieyes/maw.svg"
  19593. }
  19594. },
  19595. feral: {
  19596. height: math.unit(18, "feet"),
  19597. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19598. name: "Feral",
  19599. image: {
  19600. source: "./media/characters/aronai-sieyes/feral.svg",
  19601. extra: 1530 / 1240,
  19602. bottom: 0.035
  19603. }
  19604. },
  19605. },
  19606. [
  19607. {
  19608. name: "Micro",
  19609. height: math.unit(2, "inches")
  19610. },
  19611. {
  19612. name: "Normal",
  19613. height: math.unit(6 + 1 / 12, "feet"),
  19614. default: true
  19615. }
  19616. ]
  19617. ))
  19618. characterMakers.push(() => makeCharacter(
  19619. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19620. {
  19621. front: {
  19622. height: math.unit(12, "feet"),
  19623. weight: math.unit(410, "kg"),
  19624. name: "Front",
  19625. image: {
  19626. source: "./media/characters/xuna/front.svg",
  19627. extra: 2184 / 1980
  19628. }
  19629. },
  19630. side: {
  19631. height: math.unit(12, "feet"),
  19632. weight: math.unit(410, "kg"),
  19633. name: "Side",
  19634. image: {
  19635. source: "./media/characters/xuna/side.svg",
  19636. extra: 2184 / 1980
  19637. }
  19638. },
  19639. back: {
  19640. height: math.unit(12, "feet"),
  19641. weight: math.unit(410, "kg"),
  19642. name: "Back",
  19643. image: {
  19644. source: "./media/characters/xuna/back.svg",
  19645. extra: 2184 / 1980
  19646. }
  19647. },
  19648. },
  19649. [
  19650. {
  19651. name: "Nano glow",
  19652. height: math.unit(10, "nm")
  19653. },
  19654. {
  19655. name: "Micro floof",
  19656. height: math.unit(0.3, "m")
  19657. },
  19658. {
  19659. name: "Huggable softy boi",
  19660. height: math.unit(3.6576, "m"),
  19661. default: true
  19662. },
  19663. {
  19664. name: "Admirable floof",
  19665. height: math.unit(80, "meters")
  19666. },
  19667. {
  19668. name: "Gentle macro",
  19669. height: math.unit(300, "meters")
  19670. },
  19671. {
  19672. name: "Very careful floof",
  19673. height: math.unit(3200, "meters")
  19674. },
  19675. {
  19676. name: "The mega floof",
  19677. height: math.unit(36000, "meters")
  19678. },
  19679. {
  19680. name: "Giga-fur-Wicker",
  19681. height: math.unit(4800000, "meters")
  19682. },
  19683. {
  19684. name: "Licky world",
  19685. height: math.unit(20000000, "meters")
  19686. },
  19687. {
  19688. name: "Floofy cyan sun",
  19689. height: math.unit(1500000000, "meters")
  19690. },
  19691. {
  19692. name: "Milky Wicker",
  19693. height: math.unit(1000000000000000000000, "meters")
  19694. },
  19695. {
  19696. name: "The observing Wicker",
  19697. height: math.unit(999999999999999999999999999, "meters")
  19698. },
  19699. ]
  19700. ))
  19701. characterMakers.push(() => makeCharacter(
  19702. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19703. {
  19704. front: {
  19705. height: math.unit(5 + 9 / 12, "feet"),
  19706. weight: math.unit(150, "lb"),
  19707. name: "Front",
  19708. image: {
  19709. source: "./media/characters/arokha-sieyes/front.svg",
  19710. extra: 1425 / 1284,
  19711. bottom: 0.05
  19712. }
  19713. },
  19714. },
  19715. [
  19716. {
  19717. name: "Normal",
  19718. height: math.unit(5 + 9 / 12, "feet")
  19719. },
  19720. {
  19721. name: "Macro",
  19722. height: math.unit(30, "meters"),
  19723. default: true
  19724. },
  19725. ]
  19726. ))
  19727. characterMakers.push(() => makeCharacter(
  19728. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19729. {
  19730. front: {
  19731. height: math.unit(6, "feet"),
  19732. weight: math.unit(180, "lb"),
  19733. name: "Front",
  19734. image: {
  19735. source: "./media/characters/arokh-sieyes/front.svg",
  19736. extra: 1830 / 1769,
  19737. bottom: 0.01
  19738. }
  19739. },
  19740. },
  19741. [
  19742. {
  19743. name: "Normal",
  19744. height: math.unit(6, "feet")
  19745. },
  19746. {
  19747. name: "Macro",
  19748. height: math.unit(30, "meters"),
  19749. default: true
  19750. },
  19751. ]
  19752. ))
  19753. characterMakers.push(() => makeCharacter(
  19754. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19755. {
  19756. side: {
  19757. height: math.unit(13 + 1 / 12, "feet"),
  19758. weight: math.unit(8.5, "tonnes"),
  19759. name: "Side",
  19760. image: {
  19761. source: "./media/characters/goldeneye/side.svg",
  19762. extra: 1182 / 778,
  19763. bottom: 0.067
  19764. }
  19765. },
  19766. paw: {
  19767. height: math.unit(3.4, "feet"),
  19768. name: "Paw",
  19769. image: {
  19770. source: "./media/characters/goldeneye/paw.svg"
  19771. }
  19772. },
  19773. },
  19774. [
  19775. {
  19776. name: "Normal",
  19777. height: math.unit(13 + 1 / 12, "feet"),
  19778. default: true
  19779. },
  19780. ]
  19781. ))
  19782. characterMakers.push(() => makeCharacter(
  19783. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19784. {
  19785. front: {
  19786. height: math.unit(6 + 1 / 12, "feet"),
  19787. weight: math.unit(210, "lb"),
  19788. name: "Front",
  19789. image: {
  19790. source: "./media/characters/leonardo-lycheborne/front.svg",
  19791. extra: 776/723,
  19792. bottom: 34/810
  19793. }
  19794. },
  19795. side: {
  19796. height: math.unit(6 + 1 / 12, "feet"),
  19797. weight: math.unit(210, "lb"),
  19798. name: "Side",
  19799. image: {
  19800. source: "./media/characters/leonardo-lycheborne/side.svg",
  19801. extra: 780/728,
  19802. bottom: 12/792
  19803. }
  19804. },
  19805. back: {
  19806. height: math.unit(6 + 1 / 12, "feet"),
  19807. weight: math.unit(210, "lb"),
  19808. name: "Back",
  19809. image: {
  19810. source: "./media/characters/leonardo-lycheborne/back.svg",
  19811. extra: 775/721,
  19812. bottom: 17/792
  19813. }
  19814. },
  19815. hand: {
  19816. height: math.unit(1.08, "feet"),
  19817. name: "Hand",
  19818. image: {
  19819. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19820. }
  19821. },
  19822. foot: {
  19823. height: math.unit(1.32, "feet"),
  19824. name: "Foot",
  19825. image: {
  19826. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19827. }
  19828. },
  19829. maw: {
  19830. height: math.unit(1, "feet"),
  19831. name: "Maw",
  19832. image: {
  19833. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19834. }
  19835. },
  19836. were: {
  19837. height: math.unit(20, "feet"),
  19838. weight: math.unit(7800, "lb"),
  19839. name: "Were",
  19840. image: {
  19841. source: "./media/characters/leonardo-lycheborne/were.svg",
  19842. extra: 1224/1165,
  19843. bottom: 72/1296
  19844. }
  19845. },
  19846. feral: {
  19847. height: math.unit(7.5, "feet"),
  19848. weight: math.unit(600, "lb"),
  19849. name: "Feral",
  19850. image: {
  19851. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19852. extra: 797/702,
  19853. bottom: 139/936
  19854. }
  19855. },
  19856. taur: {
  19857. height: math.unit(11, "feet"),
  19858. weight: math.unit(3300, "lb"),
  19859. name: "Taur",
  19860. image: {
  19861. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19862. extra: 1271/1197,
  19863. bottom: 47/1318
  19864. }
  19865. },
  19866. barghest: {
  19867. height: math.unit(11, "feet"),
  19868. weight: math.unit(1300, "lb"),
  19869. name: "Barghest",
  19870. image: {
  19871. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19872. extra: 1291/1204,
  19873. bottom: 37/1328
  19874. }
  19875. },
  19876. dick: {
  19877. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19878. name: "Dick",
  19879. image: {
  19880. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19881. }
  19882. },
  19883. dickWere: {
  19884. height: math.unit((20) / 3.8, "feet"),
  19885. name: "Dick (Were)",
  19886. image: {
  19887. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19888. }
  19889. },
  19890. },
  19891. [
  19892. {
  19893. name: "Normal",
  19894. height: math.unit(6 + 1 / 12, "feet"),
  19895. default: true
  19896. },
  19897. ]
  19898. ))
  19899. characterMakers.push(() => makeCharacter(
  19900. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19901. {
  19902. front: {
  19903. height: math.unit(10, "feet"),
  19904. weight: math.unit(350, "lb"),
  19905. name: "Front",
  19906. image: {
  19907. source: "./media/characters/jet/front.svg",
  19908. extra: 2050 / 1980,
  19909. bottom: 0.013
  19910. }
  19911. },
  19912. back: {
  19913. height: math.unit(10, "feet"),
  19914. weight: math.unit(350, "lb"),
  19915. name: "Back",
  19916. image: {
  19917. source: "./media/characters/jet/back.svg",
  19918. extra: 2050 / 1980,
  19919. bottom: 0.013
  19920. }
  19921. },
  19922. },
  19923. [
  19924. {
  19925. name: "Micro",
  19926. height: math.unit(6, "inches")
  19927. },
  19928. {
  19929. name: "Normal",
  19930. height: math.unit(10, "feet"),
  19931. default: true
  19932. },
  19933. {
  19934. name: "Macro",
  19935. height: math.unit(100, "feet")
  19936. },
  19937. ]
  19938. ))
  19939. characterMakers.push(() => makeCharacter(
  19940. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19941. {
  19942. front: {
  19943. height: math.unit(15, "feet"),
  19944. weight: math.unit(2800, "lb"),
  19945. name: "Front",
  19946. image: {
  19947. source: "./media/characters/tanarath/front.svg",
  19948. extra: 2392 / 2220,
  19949. bottom: 0.03
  19950. }
  19951. },
  19952. back: {
  19953. height: math.unit(15, "feet"),
  19954. weight: math.unit(2800, "lb"),
  19955. name: "Back",
  19956. image: {
  19957. source: "./media/characters/tanarath/back.svg",
  19958. extra: 2392 / 2220,
  19959. bottom: 0.03
  19960. }
  19961. },
  19962. },
  19963. [
  19964. {
  19965. name: "Normal",
  19966. height: math.unit(15, "feet"),
  19967. default: true
  19968. },
  19969. ]
  19970. ))
  19971. characterMakers.push(() => makeCharacter(
  19972. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19973. {
  19974. front: {
  19975. height: math.unit(7 + 1 / 12, "feet"),
  19976. weight: math.unit(175, "lb"),
  19977. name: "Front",
  19978. image: {
  19979. source: "./media/characters/patty-cattybatty/front.svg",
  19980. extra: 908 / 874,
  19981. bottom: 0.025
  19982. }
  19983. },
  19984. },
  19985. [
  19986. {
  19987. name: "Micro",
  19988. height: math.unit(1, "inch")
  19989. },
  19990. {
  19991. name: "Normal",
  19992. height: math.unit(7 + 1 / 12, "feet")
  19993. },
  19994. {
  19995. name: "Mini Macro",
  19996. height: math.unit(155, "feet")
  19997. },
  19998. {
  19999. name: "Macro",
  20000. height: math.unit(1077, "feet")
  20001. },
  20002. {
  20003. name: "Mega Macro",
  20004. height: math.unit(47650, "feet"),
  20005. default: true
  20006. },
  20007. {
  20008. name: "Giga Macro",
  20009. height: math.unit(440, "miles")
  20010. },
  20011. {
  20012. name: "Tera Macro",
  20013. height: math.unit(8700, "miles")
  20014. },
  20015. {
  20016. name: "Planetary Macro",
  20017. height: math.unit(32700, "miles")
  20018. },
  20019. {
  20020. name: "Solar Macro",
  20021. height: math.unit(550000, "miles")
  20022. },
  20023. {
  20024. name: "Celestial Macro",
  20025. height: math.unit(2.5, "AU")
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20031. {
  20032. front: {
  20033. height: math.unit(4 + 5 / 12, "feet"),
  20034. weight: math.unit(90, "lb"),
  20035. name: "Front",
  20036. image: {
  20037. source: "./media/characters/cappu/front.svg",
  20038. extra: 1247 / 1152,
  20039. bottom: 0.012
  20040. }
  20041. },
  20042. },
  20043. [
  20044. {
  20045. name: "Normal",
  20046. height: math.unit(4 + 5 / 12, "feet"),
  20047. default: true
  20048. },
  20049. ]
  20050. ))
  20051. characterMakers.push(() => makeCharacter(
  20052. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20053. {
  20054. frontDressed: {
  20055. height: math.unit(70, "cm"),
  20056. weight: math.unit(6, "kg"),
  20057. name: "Front (Dressed)",
  20058. image: {
  20059. source: "./media/characters/sebi/front-dressed.svg",
  20060. extra: 713.5 / 686.5,
  20061. bottom: 0.003
  20062. }
  20063. },
  20064. front: {
  20065. height: math.unit(70, "cm"),
  20066. weight: math.unit(5, "kg"),
  20067. name: "Front",
  20068. image: {
  20069. source: "./media/characters/sebi/front.svg",
  20070. extra: 713.5 / 686.5,
  20071. bottom: 0.003
  20072. }
  20073. }
  20074. },
  20075. [
  20076. {
  20077. name: "Normal",
  20078. height: math.unit(70, "cm"),
  20079. default: true
  20080. },
  20081. {
  20082. name: "Macro",
  20083. height: math.unit(8, "meters")
  20084. },
  20085. ]
  20086. ))
  20087. characterMakers.push(() => makeCharacter(
  20088. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20089. {
  20090. front: {
  20091. height: math.unit(6, "feet"),
  20092. weight: math.unit(150, "lb"),
  20093. name: "Front",
  20094. image: {
  20095. source: "./media/characters/typhek/front.svg",
  20096. extra: 1948 / 1929,
  20097. bottom: 0.025
  20098. }
  20099. },
  20100. side: {
  20101. height: math.unit(6, "feet"),
  20102. weight: math.unit(150, "lb"),
  20103. name: "Side",
  20104. image: {
  20105. source: "./media/characters/typhek/side.svg",
  20106. extra: 2034 / 2010,
  20107. bottom: 0.003
  20108. }
  20109. },
  20110. back: {
  20111. height: math.unit(6, "feet"),
  20112. weight: math.unit(150, "lb"),
  20113. name: "Back",
  20114. image: {
  20115. source: "./media/characters/typhek/back.svg",
  20116. extra: 2005 / 1978,
  20117. bottom: 0.004
  20118. }
  20119. },
  20120. palm: {
  20121. height: math.unit(1.2, "feet"),
  20122. name: "Palm",
  20123. image: {
  20124. source: "./media/characters/typhek/palm.svg"
  20125. }
  20126. },
  20127. fist: {
  20128. height: math.unit(1.1, "feet"),
  20129. name: "Fist",
  20130. image: {
  20131. source: "./media/characters/typhek/fist.svg"
  20132. }
  20133. },
  20134. foot: {
  20135. height: math.unit(1.57, "feet"),
  20136. name: "Foot",
  20137. image: {
  20138. source: "./media/characters/typhek/foot.svg"
  20139. }
  20140. },
  20141. sole: {
  20142. height: math.unit(2.05, "feet"),
  20143. name: "Sole",
  20144. image: {
  20145. source: "./media/characters/typhek/sole.svg"
  20146. }
  20147. },
  20148. },
  20149. [
  20150. {
  20151. name: "Macro",
  20152. height: math.unit(40, "stories"),
  20153. default: true
  20154. },
  20155. {
  20156. name: "Megamacro",
  20157. height: math.unit(1, "mile")
  20158. },
  20159. {
  20160. name: "Gigamacro",
  20161. height: math.unit(4000, "solarradii")
  20162. },
  20163. {
  20164. name: "Universal",
  20165. height: math.unit(1.1, "universes")
  20166. }
  20167. ]
  20168. ))
  20169. characterMakers.push(() => makeCharacter(
  20170. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20171. {
  20172. side: {
  20173. height: math.unit(5 + 7 / 12, "feet"),
  20174. weight: math.unit(150, "lb"),
  20175. name: "Side",
  20176. image: {
  20177. source: "./media/characters/kassy/side.svg",
  20178. extra: 1280 / 1225,
  20179. bottom: 0.002
  20180. }
  20181. },
  20182. front: {
  20183. height: math.unit(5 + 7 / 12, "feet"),
  20184. weight: math.unit(150, "lb"),
  20185. name: "Front",
  20186. image: {
  20187. source: "./media/characters/kassy/front.svg",
  20188. extra: 1280 / 1225,
  20189. bottom: 0.025
  20190. }
  20191. },
  20192. back: {
  20193. height: math.unit(5 + 7 / 12, "feet"),
  20194. weight: math.unit(150, "lb"),
  20195. name: "Back",
  20196. image: {
  20197. source: "./media/characters/kassy/back.svg",
  20198. extra: 1280 / 1225,
  20199. bottom: 0.002
  20200. }
  20201. },
  20202. foot: {
  20203. height: math.unit(1.266, "feet"),
  20204. name: "Foot",
  20205. image: {
  20206. source: "./media/characters/kassy/foot.svg"
  20207. }
  20208. },
  20209. },
  20210. [
  20211. {
  20212. name: "Normal",
  20213. height: math.unit(5 + 7 / 12, "feet")
  20214. },
  20215. {
  20216. name: "Macro",
  20217. height: math.unit(137, "feet"),
  20218. default: true
  20219. },
  20220. {
  20221. name: "Megamacro",
  20222. height: math.unit(1, "mile")
  20223. },
  20224. ]
  20225. ))
  20226. characterMakers.push(() => makeCharacter(
  20227. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20228. {
  20229. front: {
  20230. height: math.unit(6 + 1 / 12, "feet"),
  20231. weight: math.unit(200, "lb"),
  20232. name: "Front",
  20233. image: {
  20234. source: "./media/characters/neil/front.svg",
  20235. extra: 1326 / 1250,
  20236. bottom: 0.023
  20237. }
  20238. },
  20239. },
  20240. [
  20241. {
  20242. name: "Normal",
  20243. height: math.unit(6 + 1 / 12, "feet"),
  20244. default: true
  20245. },
  20246. {
  20247. name: "Macro",
  20248. height: math.unit(200, "feet")
  20249. },
  20250. ]
  20251. ))
  20252. characterMakers.push(() => makeCharacter(
  20253. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20254. {
  20255. front: {
  20256. height: math.unit(5 + 9 / 12, "feet"),
  20257. weight: math.unit(190, "lb"),
  20258. name: "Front",
  20259. image: {
  20260. source: "./media/characters/atticus/front.svg",
  20261. extra: 2934 / 2785,
  20262. bottom: 0.025
  20263. }
  20264. },
  20265. },
  20266. [
  20267. {
  20268. name: "Normal",
  20269. height: math.unit(5 + 9 / 12, "feet"),
  20270. default: true
  20271. },
  20272. {
  20273. name: "Macro",
  20274. height: math.unit(180, "feet")
  20275. },
  20276. ]
  20277. ))
  20278. characterMakers.push(() => makeCharacter(
  20279. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20280. {
  20281. side: {
  20282. height: math.unit(9, "feet"),
  20283. weight: math.unit(650, "lb"),
  20284. name: "Side",
  20285. image: {
  20286. source: "./media/characters/milo/side.svg",
  20287. extra: 2644 / 2310,
  20288. bottom: 0.032
  20289. }
  20290. },
  20291. },
  20292. [
  20293. {
  20294. name: "Normal",
  20295. height: math.unit(9, "feet"),
  20296. default: true
  20297. },
  20298. {
  20299. name: "Macro",
  20300. height: math.unit(300, "feet")
  20301. },
  20302. ]
  20303. ))
  20304. characterMakers.push(() => makeCharacter(
  20305. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20306. {
  20307. side: {
  20308. height: math.unit(8, "meters"),
  20309. weight: math.unit(90000, "kg"),
  20310. name: "Side",
  20311. image: {
  20312. source: "./media/characters/ijzer/side.svg",
  20313. extra: 2756 / 1600,
  20314. bottom: 0.01
  20315. }
  20316. },
  20317. },
  20318. [
  20319. {
  20320. name: "Small",
  20321. height: math.unit(3, "meters")
  20322. },
  20323. {
  20324. name: "Normal",
  20325. height: math.unit(8, "meters"),
  20326. default: true
  20327. },
  20328. {
  20329. name: "Normal+",
  20330. height: math.unit(10, "meters")
  20331. },
  20332. {
  20333. name: "Bigger",
  20334. height: math.unit(24, "meters")
  20335. },
  20336. {
  20337. name: "Huge",
  20338. height: math.unit(80, "meters")
  20339. },
  20340. ]
  20341. ))
  20342. characterMakers.push(() => makeCharacter(
  20343. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20344. {
  20345. front: {
  20346. height: math.unit(6 + 2 / 12, "feet"),
  20347. weight: math.unit(153, "lb"),
  20348. name: "Front",
  20349. image: {
  20350. source: "./media/characters/luca-cervicum/front.svg",
  20351. extra: 370 / 327,
  20352. bottom: 0.015
  20353. }
  20354. },
  20355. back: {
  20356. height: math.unit(6 + 2 / 12, "feet"),
  20357. weight: math.unit(153, "lb"),
  20358. name: "Back",
  20359. image: {
  20360. source: "./media/characters/luca-cervicum/back.svg",
  20361. extra: 367 / 333,
  20362. bottom: 0.005
  20363. }
  20364. },
  20365. frontGear: {
  20366. height: math.unit(6 + 2 / 12, "feet"),
  20367. weight: math.unit(173, "lb"),
  20368. name: "Front (Gear)",
  20369. image: {
  20370. source: "./media/characters/luca-cervicum/front-gear.svg",
  20371. extra: 377 / 333,
  20372. bottom: 0.006
  20373. }
  20374. },
  20375. },
  20376. [
  20377. {
  20378. name: "Normal",
  20379. height: math.unit(6 + 2 / 12, "feet"),
  20380. default: true
  20381. },
  20382. ]
  20383. ))
  20384. characterMakers.push(() => makeCharacter(
  20385. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20386. {
  20387. front: {
  20388. height: math.unit(6 + 1 / 12, "feet"),
  20389. weight: math.unit(304, "lb"),
  20390. name: "Front",
  20391. image: {
  20392. source: "./media/characters/oliver/front.svg",
  20393. extra: 157 / 143,
  20394. bottom: 0.08
  20395. }
  20396. },
  20397. },
  20398. [
  20399. {
  20400. name: "Normal",
  20401. height: math.unit(6 + 1 / 12, "feet"),
  20402. default: true
  20403. },
  20404. ]
  20405. ))
  20406. characterMakers.push(() => makeCharacter(
  20407. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20408. {
  20409. front: {
  20410. height: math.unit(5 + 7 / 12, "feet"),
  20411. weight: math.unit(140, "lb"),
  20412. name: "Front",
  20413. image: {
  20414. source: "./media/characters/shane/front.svg",
  20415. extra: 304 / 289,
  20416. bottom: 0.005
  20417. }
  20418. },
  20419. },
  20420. [
  20421. {
  20422. name: "Normal",
  20423. height: math.unit(5 + 7 / 12, "feet"),
  20424. default: true
  20425. },
  20426. ]
  20427. ))
  20428. characterMakers.push(() => makeCharacter(
  20429. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20430. {
  20431. front: {
  20432. height: math.unit(5 + 9 / 12, "feet"),
  20433. weight: math.unit(178, "lb"),
  20434. name: "Front",
  20435. image: {
  20436. source: "./media/characters/shin/front.svg",
  20437. extra: 159 / 151,
  20438. bottom: 0.015
  20439. }
  20440. },
  20441. },
  20442. [
  20443. {
  20444. name: "Normal",
  20445. height: math.unit(5 + 9 / 12, "feet"),
  20446. default: true
  20447. },
  20448. ]
  20449. ))
  20450. characterMakers.push(() => makeCharacter(
  20451. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20452. {
  20453. front: {
  20454. height: math.unit(5 + 10 / 12, "feet"),
  20455. weight: math.unit(168, "lb"),
  20456. name: "Front",
  20457. image: {
  20458. source: "./media/characters/xerxes/front.svg",
  20459. extra: 282 / 260,
  20460. bottom: 0.045
  20461. }
  20462. },
  20463. },
  20464. [
  20465. {
  20466. name: "Normal",
  20467. height: math.unit(5 + 10 / 12, "feet"),
  20468. default: true
  20469. },
  20470. ]
  20471. ))
  20472. characterMakers.push(() => makeCharacter(
  20473. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20474. {
  20475. front: {
  20476. height: math.unit(6 + 7 / 12, "feet"),
  20477. weight: math.unit(208, "lb"),
  20478. name: "Front",
  20479. image: {
  20480. source: "./media/characters/chaska/front.svg",
  20481. extra: 332 / 319,
  20482. bottom: 0.015
  20483. }
  20484. },
  20485. },
  20486. [
  20487. {
  20488. name: "Normal",
  20489. height: math.unit(6 + 7 / 12, "feet"),
  20490. default: true
  20491. },
  20492. ]
  20493. ))
  20494. characterMakers.push(() => makeCharacter(
  20495. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20496. {
  20497. front: {
  20498. height: math.unit(5 + 8 / 12, "feet"),
  20499. weight: math.unit(208, "lb"),
  20500. name: "Front",
  20501. image: {
  20502. source: "./media/characters/enuk/front.svg",
  20503. extra: 437 / 406,
  20504. bottom: 0.02
  20505. }
  20506. },
  20507. },
  20508. [
  20509. {
  20510. name: "Normal",
  20511. height: math.unit(5 + 8 / 12, "feet"),
  20512. default: true
  20513. },
  20514. ]
  20515. ))
  20516. characterMakers.push(() => makeCharacter(
  20517. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20518. {
  20519. front: {
  20520. height: math.unit(5 + 10 / 12, "feet"),
  20521. weight: math.unit(252, "lb"),
  20522. name: "Front",
  20523. image: {
  20524. source: "./media/characters/bruun/front.svg",
  20525. extra: 197 / 187,
  20526. bottom: 0.012
  20527. }
  20528. },
  20529. },
  20530. [
  20531. {
  20532. name: "Normal",
  20533. height: math.unit(5 + 10 / 12, "feet"),
  20534. default: true
  20535. },
  20536. ]
  20537. ))
  20538. characterMakers.push(() => makeCharacter(
  20539. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20540. {
  20541. front: {
  20542. height: math.unit(6 + 10 / 12, "feet"),
  20543. weight: math.unit(255, "lb"),
  20544. name: "Front",
  20545. image: {
  20546. source: "./media/characters/alexeev/front.svg",
  20547. extra: 213 / 200,
  20548. bottom: 0.05
  20549. }
  20550. },
  20551. },
  20552. [
  20553. {
  20554. name: "Normal",
  20555. height: math.unit(6 + 10 / 12, "feet"),
  20556. default: true
  20557. },
  20558. ]
  20559. ))
  20560. characterMakers.push(() => makeCharacter(
  20561. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20562. {
  20563. front: {
  20564. height: math.unit(2 + 8 / 12, "feet"),
  20565. weight: math.unit(22, "lb"),
  20566. name: "Front",
  20567. image: {
  20568. source: "./media/characters/evelyn/front.svg",
  20569. extra: 208 / 180
  20570. }
  20571. },
  20572. },
  20573. [
  20574. {
  20575. name: "Normal",
  20576. height: math.unit(2 + 8 / 12, "feet"),
  20577. default: true
  20578. },
  20579. ]
  20580. ))
  20581. characterMakers.push(() => makeCharacter(
  20582. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20583. {
  20584. front: {
  20585. height: math.unit(5 + 9 / 12, "feet"),
  20586. weight: math.unit(139, "lb"),
  20587. name: "Front",
  20588. image: {
  20589. source: "./media/characters/inca/front.svg",
  20590. extra: 294 / 291,
  20591. bottom: 0.03
  20592. }
  20593. },
  20594. },
  20595. [
  20596. {
  20597. name: "Normal",
  20598. height: math.unit(5 + 9 / 12, "feet"),
  20599. default: true
  20600. },
  20601. ]
  20602. ))
  20603. characterMakers.push(() => makeCharacter(
  20604. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20605. {
  20606. front: {
  20607. height: math.unit(6 + 3 / 12, "feet"),
  20608. weight: math.unit(185, "lb"),
  20609. name: "Front",
  20610. image: {
  20611. source: "./media/characters/mera/front.svg",
  20612. extra: 291 / 277,
  20613. bottom: 0.03
  20614. }
  20615. },
  20616. },
  20617. [
  20618. {
  20619. name: "Normal",
  20620. height: math.unit(6 + 3 / 12, "feet"),
  20621. default: true
  20622. },
  20623. ]
  20624. ))
  20625. characterMakers.push(() => makeCharacter(
  20626. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20627. {
  20628. front: {
  20629. height: math.unit(6 + 7 / 12, "feet"),
  20630. weight: math.unit(160, "lb"),
  20631. name: "Front",
  20632. image: {
  20633. source: "./media/characters/ceres/front.svg",
  20634. extra: 1023 / 950,
  20635. bottom: 0.027
  20636. }
  20637. },
  20638. back: {
  20639. height: math.unit(6 + 7 / 12, "feet"),
  20640. weight: math.unit(160, "lb"),
  20641. name: "Back",
  20642. image: {
  20643. source: "./media/characters/ceres/back.svg",
  20644. extra: 1023 / 950
  20645. }
  20646. },
  20647. },
  20648. [
  20649. {
  20650. name: "Normal",
  20651. height: math.unit(6 + 7 / 12, "feet"),
  20652. default: true
  20653. },
  20654. ]
  20655. ))
  20656. characterMakers.push(() => makeCharacter(
  20657. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20658. {
  20659. front: {
  20660. height: math.unit(5 + 10 / 12, "feet"),
  20661. weight: math.unit(150, "lb"),
  20662. name: "Front",
  20663. image: {
  20664. source: "./media/characters/kris/front.svg",
  20665. extra: 885 / 803,
  20666. bottom: 0.03
  20667. }
  20668. },
  20669. },
  20670. [
  20671. {
  20672. name: "Normal",
  20673. height: math.unit(5 + 10 / 12, "feet"),
  20674. default: true
  20675. },
  20676. ]
  20677. ))
  20678. characterMakers.push(() => makeCharacter(
  20679. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20680. {
  20681. front: {
  20682. height: math.unit(7, "feet"),
  20683. weight: math.unit(120, "kg"),
  20684. name: "Front",
  20685. image: {
  20686. source: "./media/characters/taluthus/front.svg",
  20687. extra: 903 / 833,
  20688. bottom: 0.015
  20689. }
  20690. },
  20691. },
  20692. [
  20693. {
  20694. name: "Normal",
  20695. height: math.unit(7, "feet"),
  20696. default: true
  20697. },
  20698. {
  20699. name: "Macro",
  20700. height: math.unit(300, "feet")
  20701. },
  20702. ]
  20703. ))
  20704. characterMakers.push(() => makeCharacter(
  20705. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20706. {
  20707. front: {
  20708. height: math.unit(5 + 9 / 12, "feet"),
  20709. weight: math.unit(145, "lb"),
  20710. name: "Front",
  20711. image: {
  20712. source: "./media/characters/dawn/front.svg",
  20713. extra: 2094 / 2016,
  20714. bottom: 0.025
  20715. }
  20716. },
  20717. back: {
  20718. height: math.unit(5 + 9 / 12, "feet"),
  20719. weight: math.unit(160, "lb"),
  20720. name: "Back",
  20721. image: {
  20722. source: "./media/characters/dawn/back.svg",
  20723. extra: 2112 / 2080,
  20724. bottom: 0.005
  20725. }
  20726. },
  20727. },
  20728. [
  20729. {
  20730. name: "Normal",
  20731. height: math.unit(6 + 7 / 12, "feet"),
  20732. default: true
  20733. },
  20734. ]
  20735. ))
  20736. characterMakers.push(() => makeCharacter(
  20737. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20738. {
  20739. anthro: {
  20740. height: math.unit(8 + 3 / 12, "feet"),
  20741. weight: math.unit(450, "lb"),
  20742. name: "Anthro",
  20743. image: {
  20744. source: "./media/characters/arador/anthro.svg",
  20745. extra: 1835 / 1718,
  20746. bottom: 0.025
  20747. }
  20748. },
  20749. feral: {
  20750. height: math.unit(4, "feet"),
  20751. weight: math.unit(200, "lb"),
  20752. name: "Feral",
  20753. image: {
  20754. source: "./media/characters/arador/feral.svg",
  20755. extra: 1683 / 1514,
  20756. bottom: 0.07
  20757. }
  20758. },
  20759. },
  20760. [
  20761. {
  20762. name: "Normal",
  20763. height: math.unit(8 + 3 / 12, "feet")
  20764. },
  20765. {
  20766. name: "Macro",
  20767. height: math.unit(82.5, "feet"),
  20768. default: true
  20769. },
  20770. ]
  20771. ))
  20772. characterMakers.push(() => makeCharacter(
  20773. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20774. {
  20775. front: {
  20776. height: math.unit(5 + 10 / 12, "feet"),
  20777. weight: math.unit(125, "lb"),
  20778. name: "Front",
  20779. image: {
  20780. source: "./media/characters/dharsi/front.svg",
  20781. extra: 716 / 630,
  20782. bottom: 0.035
  20783. }
  20784. },
  20785. },
  20786. [
  20787. {
  20788. name: "Nano",
  20789. height: math.unit(100, "nm")
  20790. },
  20791. {
  20792. name: "Micro",
  20793. height: math.unit(2, "inches")
  20794. },
  20795. {
  20796. name: "Normal",
  20797. height: math.unit(5 + 10 / 12, "feet"),
  20798. default: true
  20799. },
  20800. {
  20801. name: "Macro",
  20802. height: math.unit(1000, "feet")
  20803. },
  20804. {
  20805. name: "Megamacro",
  20806. height: math.unit(10, "miles")
  20807. },
  20808. {
  20809. name: "Gigamacro",
  20810. height: math.unit(3000, "miles")
  20811. },
  20812. {
  20813. name: "Teramacro",
  20814. height: math.unit(500000, "miles")
  20815. },
  20816. {
  20817. name: "Teramacro+",
  20818. height: math.unit(30, "galaxies")
  20819. },
  20820. ]
  20821. ))
  20822. characterMakers.push(() => makeCharacter(
  20823. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20824. {
  20825. front: {
  20826. height: math.unit(6, "feet"),
  20827. weight: math.unit(150, "lb"),
  20828. name: "Front",
  20829. image: {
  20830. source: "./media/characters/deathy/front.svg",
  20831. extra: 1552 / 1463,
  20832. bottom: 0.025
  20833. }
  20834. },
  20835. side: {
  20836. height: math.unit(6, "feet"),
  20837. weight: math.unit(150, "lb"),
  20838. name: "Side",
  20839. image: {
  20840. source: "./media/characters/deathy/side.svg",
  20841. extra: 1604 / 1455,
  20842. bottom: 0.025
  20843. }
  20844. },
  20845. back: {
  20846. height: math.unit(6, "feet"),
  20847. weight: math.unit(150, "lb"),
  20848. name: "Back",
  20849. image: {
  20850. source: "./media/characters/deathy/back.svg",
  20851. extra: 1580 / 1463,
  20852. bottom: 0.005
  20853. }
  20854. },
  20855. },
  20856. [
  20857. {
  20858. name: "Micro",
  20859. height: math.unit(5, "millimeters")
  20860. },
  20861. {
  20862. name: "Normal",
  20863. height: math.unit(6 + 5 / 12, "feet"),
  20864. default: true
  20865. },
  20866. ]
  20867. ))
  20868. characterMakers.push(() => makeCharacter(
  20869. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20870. {
  20871. front: {
  20872. height: math.unit(16, "feet"),
  20873. weight: math.unit(4000, "lb"),
  20874. name: "Front",
  20875. image: {
  20876. source: "./media/characters/juniper/front.svg",
  20877. bottom: 0.04
  20878. }
  20879. },
  20880. },
  20881. [
  20882. {
  20883. name: "Normal",
  20884. height: math.unit(16, "feet"),
  20885. default: true
  20886. },
  20887. ]
  20888. ))
  20889. characterMakers.push(() => makeCharacter(
  20890. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20891. {
  20892. front: {
  20893. height: math.unit(6, "feet"),
  20894. weight: math.unit(150, "lb"),
  20895. name: "Front",
  20896. image: {
  20897. source: "./media/characters/hipster/front.svg",
  20898. extra: 1312 / 1209,
  20899. bottom: 0.025
  20900. }
  20901. },
  20902. back: {
  20903. height: math.unit(6, "feet"),
  20904. weight: math.unit(150, "lb"),
  20905. name: "Back",
  20906. image: {
  20907. source: "./media/characters/hipster/back.svg",
  20908. extra: 1281 / 1196,
  20909. bottom: 0.01
  20910. }
  20911. },
  20912. },
  20913. [
  20914. {
  20915. name: "Micro",
  20916. height: math.unit(1, "mm")
  20917. },
  20918. {
  20919. name: "Normal",
  20920. height: math.unit(4, "inches"),
  20921. default: true
  20922. },
  20923. {
  20924. name: "Macro",
  20925. height: math.unit(500, "feet")
  20926. },
  20927. {
  20928. name: "Megamacro",
  20929. height: math.unit(1000, "miles")
  20930. },
  20931. ]
  20932. ))
  20933. characterMakers.push(() => makeCharacter(
  20934. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20935. {
  20936. front: {
  20937. height: math.unit(6, "feet"),
  20938. weight: math.unit(150, "lb"),
  20939. name: "Front",
  20940. image: {
  20941. source: "./media/characters/tendirmuldr/front.svg",
  20942. extra: 1878 / 1772,
  20943. bottom: 0.015
  20944. }
  20945. },
  20946. },
  20947. [
  20948. {
  20949. name: "Megamacro",
  20950. height: math.unit(1500, "miles"),
  20951. default: true
  20952. },
  20953. ]
  20954. ))
  20955. characterMakers.push(() => makeCharacter(
  20956. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20957. {
  20958. front: {
  20959. height: math.unit(14, "feet"),
  20960. weight: math.unit(12000, "lb"),
  20961. name: "Front",
  20962. image: {
  20963. source: "./media/characters/mort/front.svg",
  20964. extra: 365 / 318,
  20965. bottom: 0.01
  20966. }
  20967. },
  20968. side: {
  20969. height: math.unit(14, "feet"),
  20970. weight: math.unit(12000, "lb"),
  20971. name: "Side",
  20972. image: {
  20973. source: "./media/characters/mort/side.svg",
  20974. extra: 365 / 318,
  20975. bottom: 0.052
  20976. },
  20977. default: true
  20978. },
  20979. back: {
  20980. height: math.unit(14, "feet"),
  20981. weight: math.unit(12000, "lb"),
  20982. name: "Back",
  20983. image: {
  20984. source: "./media/characters/mort/back.svg",
  20985. extra: 371 / 332,
  20986. bottom: 0.18
  20987. }
  20988. },
  20989. },
  20990. [
  20991. {
  20992. name: "Normal",
  20993. height: math.unit(14, "feet"),
  20994. default: true
  20995. },
  20996. ]
  20997. ))
  20998. characterMakers.push(() => makeCharacter(
  20999. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21000. {
  21001. front: {
  21002. height: math.unit(8, "feet"),
  21003. weight: math.unit(1, "ton"),
  21004. name: "Front",
  21005. image: {
  21006. source: "./media/characters/lycoa/front.svg",
  21007. extra: 1836/1728,
  21008. bottom: 81/1917
  21009. }
  21010. },
  21011. back: {
  21012. height: math.unit(8, "feet"),
  21013. weight: math.unit(1, "ton"),
  21014. name: "Back",
  21015. image: {
  21016. source: "./media/characters/lycoa/back.svg",
  21017. extra: 1785/1720,
  21018. bottom: 91/1876
  21019. }
  21020. },
  21021. head: {
  21022. height: math.unit(1.6243, "feet"),
  21023. name: "Head",
  21024. image: {
  21025. source: "./media/characters/lycoa/head.svg",
  21026. extra: 1011/782,
  21027. bottom: 0/1011
  21028. }
  21029. },
  21030. tailmaw: {
  21031. height: math.unit(1.9, "feet"),
  21032. name: "Tailmaw",
  21033. image: {
  21034. source: "./media/characters/lycoa/tailmaw.svg"
  21035. }
  21036. },
  21037. tentacles: {
  21038. height: math.unit(2.1, "feet"),
  21039. name: "Tentacles",
  21040. image: {
  21041. source: "./media/characters/lycoa/tentacles.svg"
  21042. }
  21043. },
  21044. dick: {
  21045. height: math.unit(1.73, "feet"),
  21046. name: "Dick",
  21047. image: {
  21048. source: "./media/characters/lycoa/dick.svg"
  21049. }
  21050. },
  21051. },
  21052. [
  21053. {
  21054. name: "Normal",
  21055. height: math.unit(8, "feet"),
  21056. default: true
  21057. },
  21058. {
  21059. name: "Macro",
  21060. height: math.unit(30, "feet")
  21061. },
  21062. ]
  21063. ))
  21064. characterMakers.push(() => makeCharacter(
  21065. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21066. {
  21067. front: {
  21068. height: math.unit(4 + 2 / 12, "feet"),
  21069. weight: math.unit(70, "lb"),
  21070. name: "Front",
  21071. image: {
  21072. source: "./media/characters/naldara/front.svg",
  21073. extra: 1664/1387,
  21074. bottom: 81/1745
  21075. },
  21076. form: "anthro",
  21077. default: true
  21078. },
  21079. naga: {
  21080. height: math.unit(20, "feet"),
  21081. weight: math.unit(15000, "kg"),
  21082. name: "Front",
  21083. image: {
  21084. source: "./media/characters/naldara/naga.svg",
  21085. extra: 1590/1396,
  21086. bottom: 285/1875
  21087. },
  21088. form: "naga",
  21089. default: true
  21090. },
  21091. },
  21092. [
  21093. {
  21094. name: "Normal",
  21095. height: math.unit(4 + 2 / 12, "feet"),
  21096. form: "anthro",
  21097. default: true
  21098. },
  21099. {
  21100. name: "Normal",
  21101. height: math.unit(20, "feet"),
  21102. form: "naga",
  21103. default: true
  21104. },
  21105. ],
  21106. {
  21107. "anthro": {
  21108. name: "Anthro",
  21109. default: true
  21110. },
  21111. "naga": {
  21112. name: "Naga"
  21113. }
  21114. }
  21115. ))
  21116. characterMakers.push(() => makeCharacter(
  21117. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21118. {
  21119. front: {
  21120. height: math.unit(13 + 7 / 12, "feet"),
  21121. weight: math.unit(1500, "lb"),
  21122. name: "Front",
  21123. image: {
  21124. source: "./media/characters/briar/front.svg",
  21125. extra: 1223/1157,
  21126. bottom: 123/1346
  21127. }
  21128. },
  21129. },
  21130. [
  21131. {
  21132. name: "Normal",
  21133. height: math.unit(13 + 7 / 12, "feet"),
  21134. default: true
  21135. },
  21136. ]
  21137. ))
  21138. characterMakers.push(() => makeCharacter(
  21139. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21140. {
  21141. side: {
  21142. height: math.unit(16, "feet"),
  21143. weight: math.unit(500, "lb"),
  21144. name: "Side",
  21145. image: {
  21146. source: "./media/characters/vanguard/side.svg",
  21147. extra: 1022/914,
  21148. bottom: 30/1052
  21149. }
  21150. },
  21151. sideAlt: {
  21152. height: math.unit(10, "feet"),
  21153. weight: math.unit(500, "lb"),
  21154. name: "Side (Alt)",
  21155. image: {
  21156. source: "./media/characters/vanguard/side-alt.svg",
  21157. extra: 502 / 425,
  21158. bottom: 0.087
  21159. }
  21160. },
  21161. },
  21162. [
  21163. {
  21164. name: "Normal",
  21165. height: math.unit(17.71, "feet"),
  21166. default: true
  21167. },
  21168. ]
  21169. ))
  21170. characterMakers.push(() => makeCharacter(
  21171. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21172. {
  21173. front: {
  21174. height: math.unit(7.5, "feet"),
  21175. weight: math.unit(2, "lb"),
  21176. name: "Front",
  21177. image: {
  21178. source: "./media/characters/artemis/work-safe-front.svg",
  21179. extra: 1192 / 1075,
  21180. bottom: 0.07
  21181. },
  21182. form: "work-safe",
  21183. default: true
  21184. },
  21185. frontNsfw: {
  21186. height: math.unit(7.5, "feet"),
  21187. weight: math.unit(2, "lb"),
  21188. name: "Front",
  21189. image: {
  21190. source: "./media/characters/artemis/calibrating-front.svg",
  21191. extra: 1192 / 1075,
  21192. bottom: 0.07
  21193. },
  21194. form: "calibrating",
  21195. default: true
  21196. },
  21197. frontNsfwer: {
  21198. height: math.unit(7.5, "feet"),
  21199. weight: math.unit(2, "lb"),
  21200. name: "Front",
  21201. image: {
  21202. source: "./media/characters/artemis/oversize-load-front.svg",
  21203. extra: 1192 / 1075,
  21204. bottom: 0.07
  21205. },
  21206. form: "oversize-load",
  21207. default: true
  21208. },
  21209. side: {
  21210. height: math.unit(7.5, "feet"),
  21211. weight: math.unit(2, "lb"),
  21212. name: "Side",
  21213. image: {
  21214. source: "./media/characters/artemis/work-safe-side.svg",
  21215. extra: 1192 / 1075,
  21216. bottom: 0.07
  21217. },
  21218. form: "work-safe"
  21219. },
  21220. sideNsfw: {
  21221. height: math.unit(7.5, "feet"),
  21222. weight: math.unit(2, "lb"),
  21223. name: "Side",
  21224. image: {
  21225. source: "./media/characters/artemis/calibrating-side.svg",
  21226. extra: 1192 / 1075,
  21227. bottom: 0.07
  21228. },
  21229. form: "calibrating"
  21230. },
  21231. sideNsfwer: {
  21232. height: math.unit(7.5, "feet"),
  21233. weight: math.unit(2, "lb"),
  21234. name: "Side",
  21235. image: {
  21236. source: "./media/characters/artemis/oversize-load-side.svg",
  21237. extra: 1192 / 1075,
  21238. bottom: 0.07
  21239. },
  21240. form: "oversize-load"
  21241. },
  21242. maw: {
  21243. height: math.unit(1.1, "feet"),
  21244. name: "Maw",
  21245. image: {
  21246. source: "./media/characters/artemis/maw.svg"
  21247. },
  21248. form: "work-safe"
  21249. },
  21250. stomach: {
  21251. height: math.unit(0.95, "feet"),
  21252. name: "Stomach",
  21253. image: {
  21254. source: "./media/characters/artemis/stomach.svg"
  21255. },
  21256. form: "work-safe"
  21257. },
  21258. dickCanine: {
  21259. height: math.unit(1, "feet"),
  21260. name: "Dick (Canine)",
  21261. image: {
  21262. source: "./media/characters/artemis/dick-canine.svg"
  21263. },
  21264. form: "calibrating"
  21265. },
  21266. dickEquine: {
  21267. height: math.unit(0.85, "feet"),
  21268. name: "Dick (Equine)",
  21269. image: {
  21270. source: "./media/characters/artemis/dick-equine.svg"
  21271. },
  21272. form: "calibrating"
  21273. },
  21274. dickExotic: {
  21275. height: math.unit(0.85, "feet"),
  21276. name: "Dick (Exotic)",
  21277. image: {
  21278. source: "./media/characters/artemis/dick-exotic.svg"
  21279. },
  21280. form: "calibrating"
  21281. },
  21282. dickCanineBigger: {
  21283. height: math.unit(1 * 1.33, "feet"),
  21284. name: "Dick (Canine)",
  21285. image: {
  21286. source: "./media/characters/artemis/dick-canine.svg"
  21287. },
  21288. form: "oversize-load"
  21289. },
  21290. dickEquineBigger: {
  21291. height: math.unit(0.85 * 1.33, "feet"),
  21292. name: "Dick (Equine)",
  21293. image: {
  21294. source: "./media/characters/artemis/dick-equine.svg"
  21295. },
  21296. form: "oversize-load"
  21297. },
  21298. dickExoticBigger: {
  21299. height: math.unit(0.85 * 1.33, "feet"),
  21300. name: "Dick (Exotic)",
  21301. image: {
  21302. source: "./media/characters/artemis/dick-exotic.svg"
  21303. },
  21304. form: "oversize-load"
  21305. },
  21306. },
  21307. [
  21308. {
  21309. name: "Normal",
  21310. height: math.unit(7.5, "feet"),
  21311. form: "work-safe",
  21312. default: true
  21313. },
  21314. {
  21315. name: "Normal",
  21316. height: math.unit(7.5, "feet"),
  21317. form: "calibrating",
  21318. default: true
  21319. },
  21320. {
  21321. name: "Normal",
  21322. height: math.unit(7.5, "feet"),
  21323. form: "oversize-load",
  21324. default: true
  21325. },
  21326. {
  21327. name: "Enlarged",
  21328. height: math.unit(12, "feet"),
  21329. form: "work-safe",
  21330. },
  21331. {
  21332. name: "Enlarged",
  21333. height: math.unit(12, "feet"),
  21334. form: "calibrating",
  21335. },
  21336. {
  21337. name: "Enlarged",
  21338. height: math.unit(12, "feet"),
  21339. form: "oversize-load",
  21340. },
  21341. ],
  21342. {
  21343. "work-safe": {
  21344. name: "Work-Safe",
  21345. default: true
  21346. },
  21347. "calibrating": {
  21348. name: "Calibrating"
  21349. },
  21350. "oversize-load": {
  21351. name: "Oversize Load"
  21352. }
  21353. }
  21354. ))
  21355. characterMakers.push(() => makeCharacter(
  21356. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21357. {
  21358. front: {
  21359. height: math.unit(5 + 3 / 12, "feet"),
  21360. weight: math.unit(160, "lb"),
  21361. name: "Front",
  21362. image: {
  21363. source: "./media/characters/kira/front.svg",
  21364. extra: 906 / 786,
  21365. bottom: 0.01
  21366. }
  21367. },
  21368. back: {
  21369. height: math.unit(5 + 3 / 12, "feet"),
  21370. weight: math.unit(160, "lb"),
  21371. name: "Back",
  21372. image: {
  21373. source: "./media/characters/kira/back.svg",
  21374. extra: 882 / 757,
  21375. bottom: 0.005
  21376. }
  21377. },
  21378. frontDressed: {
  21379. height: math.unit(5 + 3 / 12, "feet"),
  21380. weight: math.unit(160, "lb"),
  21381. name: "Front (Dressed)",
  21382. image: {
  21383. source: "./media/characters/kira/front-dressed.svg",
  21384. extra: 906 / 786,
  21385. bottom: 0.01
  21386. }
  21387. },
  21388. beans: {
  21389. height: math.unit(0.92, "feet"),
  21390. name: "Beans",
  21391. image: {
  21392. source: "./media/characters/kira/beans.svg"
  21393. }
  21394. },
  21395. },
  21396. [
  21397. {
  21398. name: "Normal",
  21399. height: math.unit(5 + 3 / 12, "feet"),
  21400. default: true
  21401. },
  21402. ]
  21403. ))
  21404. characterMakers.push(() => makeCharacter(
  21405. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21406. {
  21407. front: {
  21408. height: math.unit(5 + 4 / 12, "feet"),
  21409. weight: math.unit(145, "lb"),
  21410. name: "Front",
  21411. image: {
  21412. source: "./media/characters/scramble/front.svg",
  21413. extra: 763 / 727,
  21414. bottom: 0.05
  21415. }
  21416. },
  21417. back: {
  21418. height: math.unit(5 + 4 / 12, "feet"),
  21419. weight: math.unit(145, "lb"),
  21420. name: "Back",
  21421. image: {
  21422. source: "./media/characters/scramble/back.svg",
  21423. extra: 826 / 737,
  21424. bottom: 0.002
  21425. }
  21426. },
  21427. },
  21428. [
  21429. {
  21430. name: "Normal",
  21431. height: math.unit(5 + 4 / 12, "feet"),
  21432. default: true
  21433. },
  21434. ]
  21435. ))
  21436. characterMakers.push(() => makeCharacter(
  21437. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21438. {
  21439. side: {
  21440. height: math.unit(6 + 2 / 12, "feet"),
  21441. weight: math.unit(190, "lb"),
  21442. name: "Side",
  21443. image: {
  21444. source: "./media/characters/biscuit/side.svg",
  21445. extra: 858 / 791,
  21446. bottom: 0.044
  21447. }
  21448. },
  21449. },
  21450. [
  21451. {
  21452. name: "Normal",
  21453. height: math.unit(6 + 2 / 12, "feet"),
  21454. default: true
  21455. },
  21456. ]
  21457. ))
  21458. characterMakers.push(() => makeCharacter(
  21459. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21460. {
  21461. front: {
  21462. height: math.unit(5 + 2 / 12, "feet"),
  21463. weight: math.unit(120, "lb"),
  21464. name: "Front",
  21465. image: {
  21466. source: "./media/characters/poffin/front.svg",
  21467. extra: 786 / 680,
  21468. bottom: 0.005
  21469. }
  21470. },
  21471. },
  21472. [
  21473. {
  21474. name: "Normal",
  21475. height: math.unit(5 + 2 / 12, "feet"),
  21476. default: true
  21477. },
  21478. ]
  21479. ))
  21480. characterMakers.push(() => makeCharacter(
  21481. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21482. {
  21483. front: {
  21484. height: math.unit(6 + 3 / 12, "feet"),
  21485. weight: math.unit(519, "lb"),
  21486. name: "Front",
  21487. image: {
  21488. source: "./media/characters/dhari/front.svg",
  21489. extra: 1048 / 946,
  21490. bottom: 0.015
  21491. }
  21492. },
  21493. back: {
  21494. height: math.unit(6 + 3 / 12, "feet"),
  21495. weight: math.unit(519, "lb"),
  21496. name: "Back",
  21497. image: {
  21498. source: "./media/characters/dhari/back.svg",
  21499. extra: 1048 / 931,
  21500. bottom: 0.005
  21501. }
  21502. },
  21503. frontDressed: {
  21504. height: math.unit(6 + 3 / 12, "feet"),
  21505. weight: math.unit(519, "lb"),
  21506. name: "Front (Dressed)",
  21507. image: {
  21508. source: "./media/characters/dhari/front-dressed.svg",
  21509. extra: 1713 / 1546,
  21510. bottom: 0.02
  21511. }
  21512. },
  21513. backDressed: {
  21514. height: math.unit(6 + 3 / 12, "feet"),
  21515. weight: math.unit(519, "lb"),
  21516. name: "Back (Dressed)",
  21517. image: {
  21518. source: "./media/characters/dhari/back-dressed.svg",
  21519. extra: 1699 / 1537,
  21520. bottom: 0.01
  21521. }
  21522. },
  21523. maw: {
  21524. height: math.unit(0.95, "feet"),
  21525. name: "Maw",
  21526. image: {
  21527. source: "./media/characters/dhari/maw.svg"
  21528. }
  21529. },
  21530. wereFront: {
  21531. height: math.unit(12 + 8 / 12, "feet"),
  21532. weight: math.unit(4000, "lb"),
  21533. name: "Front (Were)",
  21534. image: {
  21535. source: "./media/characters/dhari/were-front.svg",
  21536. extra: 1065 / 969,
  21537. bottom: 0.015
  21538. }
  21539. },
  21540. wereBack: {
  21541. height: math.unit(12 + 8 / 12, "feet"),
  21542. weight: math.unit(4000, "lb"),
  21543. name: "Back (Were)",
  21544. image: {
  21545. source: "./media/characters/dhari/were-back.svg",
  21546. extra: 1065 / 969,
  21547. bottom: 0.012
  21548. }
  21549. },
  21550. wereMaw: {
  21551. height: math.unit(0.625, "meters"),
  21552. name: "Maw (Were)",
  21553. image: {
  21554. source: "./media/characters/dhari/were-maw.svg"
  21555. }
  21556. },
  21557. },
  21558. [
  21559. {
  21560. name: "Normal",
  21561. height: math.unit(6 + 3 / 12, "feet"),
  21562. default: true
  21563. },
  21564. ]
  21565. ))
  21566. characterMakers.push(() => makeCharacter(
  21567. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21568. {
  21569. anthro: {
  21570. height: math.unit(5 + 7 / 12, "feet"),
  21571. weight: math.unit(175, "lb"),
  21572. name: "Anthro",
  21573. image: {
  21574. source: "./media/characters/rena-dyne/anthro.svg",
  21575. extra: 1849 / 1785,
  21576. bottom: 0.005
  21577. }
  21578. },
  21579. taur: {
  21580. height: math.unit(15 + 6 / 12, "feet"),
  21581. weight: math.unit(8000, "lb"),
  21582. name: "Taur",
  21583. image: {
  21584. source: "./media/characters/rena-dyne/taur.svg",
  21585. extra: 2315 / 2234,
  21586. bottom: 0.033
  21587. }
  21588. },
  21589. },
  21590. [
  21591. {
  21592. name: "Normal",
  21593. height: math.unit(5 + 7 / 12, "feet"),
  21594. default: true
  21595. },
  21596. ]
  21597. ))
  21598. characterMakers.push(() => makeCharacter(
  21599. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21600. {
  21601. front: {
  21602. height: math.unit(8, "feet"),
  21603. weight: math.unit(600, "lb"),
  21604. name: "Front",
  21605. image: {
  21606. source: "./media/characters/weremeep/front.svg",
  21607. extra: 967 / 862,
  21608. bottom: 0.01
  21609. }
  21610. },
  21611. },
  21612. [
  21613. {
  21614. name: "Normal",
  21615. height: math.unit(8, "feet"),
  21616. default: true
  21617. },
  21618. {
  21619. name: "Lorg",
  21620. height: math.unit(12, "feet")
  21621. },
  21622. {
  21623. name: "Oh Lawd She Comin'",
  21624. height: math.unit(20, "feet")
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21630. {
  21631. front: {
  21632. height: math.unit(4, "feet"),
  21633. weight: math.unit(90, "lb"),
  21634. name: "Front",
  21635. image: {
  21636. source: "./media/characters/reza/front.svg",
  21637. extra: 1183 / 1111,
  21638. bottom: 0.017
  21639. }
  21640. },
  21641. back: {
  21642. height: math.unit(4, "feet"),
  21643. weight: math.unit(90, "lb"),
  21644. name: "Back",
  21645. image: {
  21646. source: "./media/characters/reza/back.svg",
  21647. extra: 1183 / 1111,
  21648. bottom: 0.01
  21649. }
  21650. },
  21651. drake: {
  21652. height: math.unit(30, "feet"),
  21653. weight: math.unit(246960, "lb"),
  21654. name: "Drake",
  21655. image: {
  21656. source: "./media/characters/reza/drake.svg",
  21657. extra: 2350 / 2024,
  21658. bottom: 60.7 / 2403
  21659. }
  21660. },
  21661. },
  21662. [
  21663. {
  21664. name: "Normal",
  21665. height: math.unit(4, "feet"),
  21666. default: true
  21667. },
  21668. ]
  21669. ))
  21670. characterMakers.push(() => makeCharacter(
  21671. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21672. {
  21673. side: {
  21674. height: math.unit(15, "feet"),
  21675. weight: math.unit(14, "tons"),
  21676. name: "Side",
  21677. image: {
  21678. source: "./media/characters/athea/side.svg",
  21679. extra: 960 / 540,
  21680. bottom: 0.003
  21681. }
  21682. },
  21683. sitting: {
  21684. height: math.unit(6 * 2.85, "feet"),
  21685. weight: math.unit(14, "tons"),
  21686. name: "Sitting",
  21687. image: {
  21688. source: "./media/characters/athea/sitting.svg",
  21689. extra: 621 / 581,
  21690. bottom: 0.075
  21691. }
  21692. },
  21693. maw: {
  21694. height: math.unit(7.59498031496063, "feet"),
  21695. name: "Maw",
  21696. image: {
  21697. source: "./media/characters/athea/maw.svg"
  21698. }
  21699. },
  21700. },
  21701. [
  21702. {
  21703. name: "Lap Cat",
  21704. height: math.unit(2.5, "feet")
  21705. },
  21706. {
  21707. name: "Minimacro",
  21708. height: math.unit(15, "feet"),
  21709. default: true
  21710. },
  21711. {
  21712. name: "Macro",
  21713. height: math.unit(120, "feet")
  21714. },
  21715. {
  21716. name: "Macro+",
  21717. height: math.unit(640, "feet")
  21718. },
  21719. {
  21720. name: "Colossus",
  21721. height: math.unit(2.2, "miles")
  21722. },
  21723. ]
  21724. ))
  21725. characterMakers.push(() => makeCharacter(
  21726. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21727. {
  21728. front: {
  21729. height: math.unit(8 + 8 / 12, "feet"),
  21730. weight: math.unit(130, "kg"),
  21731. name: "Front",
  21732. image: {
  21733. source: "./media/characters/seroko/front.svg",
  21734. extra: 1385 / 1280,
  21735. bottom: 0.025
  21736. }
  21737. },
  21738. back: {
  21739. height: math.unit(8 + 8 / 12, "feet"),
  21740. weight: math.unit(130, "kg"),
  21741. name: "Back",
  21742. image: {
  21743. source: "./media/characters/seroko/back.svg",
  21744. extra: 1369 / 1238,
  21745. bottom: 0.018
  21746. }
  21747. },
  21748. frontDressed: {
  21749. height: math.unit(8 + 8 / 12, "feet"),
  21750. weight: math.unit(130, "kg"),
  21751. name: "Front (Dressed)",
  21752. image: {
  21753. source: "./media/characters/seroko/front-dressed.svg",
  21754. extra: 1366 / 1275,
  21755. bottom: 0.03
  21756. }
  21757. },
  21758. },
  21759. [
  21760. {
  21761. name: "Normal",
  21762. height: math.unit(8 + 8 / 12, "feet"),
  21763. default: true
  21764. },
  21765. ]
  21766. ))
  21767. characterMakers.push(() => makeCharacter(
  21768. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21769. {
  21770. front: {
  21771. height: math.unit(5.5, "feet"),
  21772. weight: math.unit(160, "lb"),
  21773. name: "Front",
  21774. image: {
  21775. source: "./media/characters/quatzi/front.svg",
  21776. extra: 2346 / 2242,
  21777. bottom: 0.015
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(5.5, "feet"),
  21785. default: true
  21786. },
  21787. {
  21788. name: "Big",
  21789. height: math.unit(7.7, "feet")
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21795. {
  21796. front: {
  21797. height: math.unit(5 + 11 / 12, "feet"),
  21798. weight: math.unit(180, "lb"),
  21799. name: "Front",
  21800. image: {
  21801. source: "./media/characters/sen/front.svg",
  21802. extra: 1321 / 1254,
  21803. bottom: 0.015
  21804. }
  21805. },
  21806. side: {
  21807. height: math.unit(5 + 11 / 12, "feet"),
  21808. weight: math.unit(180, "lb"),
  21809. name: "Side",
  21810. image: {
  21811. source: "./media/characters/sen/side.svg",
  21812. extra: 1321 / 1254,
  21813. bottom: 0.007
  21814. }
  21815. },
  21816. back: {
  21817. height: math.unit(5 + 11 / 12, "feet"),
  21818. weight: math.unit(180, "lb"),
  21819. name: "Back",
  21820. image: {
  21821. source: "./media/characters/sen/back.svg",
  21822. extra: 1321 / 1254
  21823. }
  21824. },
  21825. },
  21826. [
  21827. {
  21828. name: "Normal",
  21829. height: math.unit(5 + 11 / 12, "feet"),
  21830. default: true
  21831. },
  21832. ]
  21833. ))
  21834. characterMakers.push(() => makeCharacter(
  21835. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21836. {
  21837. front: {
  21838. height: math.unit(166.6, "cm"),
  21839. weight: math.unit(66.6, "kg"),
  21840. name: "Front",
  21841. image: {
  21842. source: "./media/characters/fruity/front.svg",
  21843. extra: 1510 / 1386,
  21844. bottom: 0.04
  21845. }
  21846. },
  21847. back: {
  21848. height: math.unit(166.6, "cm"),
  21849. weight: math.unit(66.6, "lb"),
  21850. name: "Back",
  21851. image: {
  21852. source: "./media/characters/fruity/back.svg",
  21853. extra: 1563 / 1435,
  21854. bottom: 0.005
  21855. }
  21856. },
  21857. },
  21858. [
  21859. {
  21860. name: "Normal",
  21861. height: math.unit(166.6, "cm"),
  21862. default: true
  21863. },
  21864. {
  21865. name: "Demonic",
  21866. height: math.unit(166.6, "feet")
  21867. },
  21868. ]
  21869. ))
  21870. characterMakers.push(() => makeCharacter(
  21871. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21872. {
  21873. side: {
  21874. height: math.unit(10, "feet"),
  21875. weight: math.unit(500, "lb"),
  21876. name: "Side",
  21877. image: {
  21878. source: "./media/characters/zost/side.svg",
  21879. extra: 2870/2533,
  21880. bottom: 252/3122
  21881. }
  21882. },
  21883. mawFront: {
  21884. height: math.unit(1.08, "meters"),
  21885. name: "Maw (Front)",
  21886. image: {
  21887. source: "./media/characters/zost/maw-front.svg"
  21888. }
  21889. },
  21890. mawSide: {
  21891. height: math.unit(2.66, "feet"),
  21892. name: "Maw (Side)",
  21893. image: {
  21894. source: "./media/characters/zost/maw-side.svg"
  21895. }
  21896. },
  21897. wingspan: {
  21898. height: math.unit(7.4, "feet"),
  21899. name: "Wingspan",
  21900. image: {
  21901. source: "./media/characters/zost/wingspan.svg"
  21902. }
  21903. },
  21904. },
  21905. [
  21906. {
  21907. name: "Normal",
  21908. height: math.unit(10, "feet"),
  21909. default: true
  21910. },
  21911. ]
  21912. ))
  21913. characterMakers.push(() => makeCharacter(
  21914. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21915. {
  21916. front: {
  21917. height: math.unit(5 + 4 / 12, "feet"),
  21918. weight: math.unit(120, "lb"),
  21919. name: "Front",
  21920. image: {
  21921. source: "./media/characters/luci/front.svg",
  21922. extra: 1985 / 1884,
  21923. bottom: 0.04
  21924. }
  21925. },
  21926. back: {
  21927. height: math.unit(5 + 4 / 12, "feet"),
  21928. weight: math.unit(120, "lb"),
  21929. name: "Back",
  21930. image: {
  21931. source: "./media/characters/luci/back.svg",
  21932. extra: 1892 / 1791,
  21933. bottom: 0.002
  21934. }
  21935. },
  21936. },
  21937. [
  21938. {
  21939. name: "Normal",
  21940. height: math.unit(5 + 4 / 12, "feet"),
  21941. default: true
  21942. },
  21943. ]
  21944. ))
  21945. characterMakers.push(() => makeCharacter(
  21946. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21947. {
  21948. front: {
  21949. height: math.unit(1500, "feet"),
  21950. weight: math.unit(3.8e6, "tons"),
  21951. name: "Front",
  21952. image: {
  21953. source: "./media/characters/2th/front.svg",
  21954. extra: 3489 / 3350,
  21955. bottom: 0.1
  21956. }
  21957. },
  21958. foot: {
  21959. height: math.unit(461, "feet"),
  21960. name: "Foot",
  21961. image: {
  21962. source: "./media/characters/2th/foot.svg"
  21963. }
  21964. },
  21965. },
  21966. [
  21967. {
  21968. name: "\"Micro\"",
  21969. height: math.unit(15 + 7 / 12, "feet")
  21970. },
  21971. {
  21972. name: "Normal",
  21973. height: math.unit(1500, "feet"),
  21974. default: true
  21975. },
  21976. {
  21977. name: "Macro",
  21978. height: math.unit(5000, "feet")
  21979. },
  21980. {
  21981. name: "Megamacro",
  21982. height: math.unit(15, "miles")
  21983. },
  21984. {
  21985. name: "Gigamacro",
  21986. height: math.unit(4000, "miles")
  21987. },
  21988. {
  21989. name: "Galactic",
  21990. height: math.unit(50, "AU")
  21991. },
  21992. ]
  21993. ))
  21994. characterMakers.push(() => makeCharacter(
  21995. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21996. {
  21997. front: {
  21998. height: math.unit(5 + 6 / 12, "feet"),
  21999. weight: math.unit(220, "lb"),
  22000. name: "Front",
  22001. image: {
  22002. source: "./media/characters/amethyst/front.svg",
  22003. extra: 2078 / 2040,
  22004. bottom: 0.045
  22005. }
  22006. },
  22007. back: {
  22008. height: math.unit(5 + 6 / 12, "feet"),
  22009. weight: math.unit(220, "lb"),
  22010. name: "Back",
  22011. image: {
  22012. source: "./media/characters/amethyst/back.svg",
  22013. extra: 2021 / 1989,
  22014. bottom: 0.02
  22015. }
  22016. },
  22017. },
  22018. [
  22019. {
  22020. name: "Normal",
  22021. height: math.unit(5 + 6 / 12, "feet"),
  22022. default: true
  22023. },
  22024. ]
  22025. ))
  22026. characterMakers.push(() => makeCharacter(
  22027. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22028. {
  22029. front: {
  22030. height: math.unit(4 + 11 / 12, "feet"),
  22031. weight: math.unit(120, "lb"),
  22032. name: "Front",
  22033. image: {
  22034. source: "./media/characters/yumi-akiyama/front.svg",
  22035. extra: 1327 / 1235,
  22036. bottom: 0.02
  22037. }
  22038. },
  22039. back: {
  22040. height: math.unit(4 + 11 / 12, "feet"),
  22041. weight: math.unit(120, "lb"),
  22042. name: "Back",
  22043. image: {
  22044. source: "./media/characters/yumi-akiyama/back.svg",
  22045. extra: 1287 / 1245,
  22046. bottom: 0.002
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Galactic",
  22053. height: math.unit(50, "galaxies"),
  22054. default: true
  22055. },
  22056. {
  22057. name: "Universal",
  22058. height: math.unit(100, "universes")
  22059. },
  22060. ]
  22061. ))
  22062. characterMakers.push(() => makeCharacter(
  22063. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22064. {
  22065. front: {
  22066. height: math.unit(8, "feet"),
  22067. weight: math.unit(500, "lb"),
  22068. name: "Front",
  22069. image: {
  22070. source: "./media/characters/rifter-yrmori/front.svg",
  22071. extra: 1180 / 1125,
  22072. bottom: 0.02
  22073. }
  22074. },
  22075. back: {
  22076. height: math.unit(8, "feet"),
  22077. weight: math.unit(500, "lb"),
  22078. name: "Back",
  22079. image: {
  22080. source: "./media/characters/rifter-yrmori/back.svg",
  22081. extra: 1190 / 1145,
  22082. bottom: 0.001
  22083. }
  22084. },
  22085. wings: {
  22086. height: math.unit(7.75, "feet"),
  22087. weight: math.unit(500, "lb"),
  22088. name: "Wings",
  22089. image: {
  22090. source: "./media/characters/rifter-yrmori/wings.svg",
  22091. extra: 1357 / 1285
  22092. }
  22093. },
  22094. maw: {
  22095. height: math.unit(0.8, "feet"),
  22096. name: "Maw",
  22097. image: {
  22098. source: "./media/characters/rifter-yrmori/maw.svg"
  22099. }
  22100. },
  22101. mawfront: {
  22102. height: math.unit(1.45, "feet"),
  22103. name: "Maw (Front)",
  22104. image: {
  22105. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22106. }
  22107. },
  22108. },
  22109. [
  22110. {
  22111. name: "Normal",
  22112. height: math.unit(8, "feet"),
  22113. default: true
  22114. },
  22115. {
  22116. name: "Macro",
  22117. height: math.unit(42, "meters")
  22118. },
  22119. ]
  22120. ))
  22121. characterMakers.push(() => makeCharacter(
  22122. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22123. {
  22124. were: {
  22125. height: math.unit(25 + 6 / 12, "feet"),
  22126. weight: math.unit(10000, "lb"),
  22127. name: "Were",
  22128. image: {
  22129. source: "./media/characters/tahajin/were.svg",
  22130. extra: 801 / 770,
  22131. bottom: 0.042
  22132. }
  22133. },
  22134. aquatic: {
  22135. height: math.unit(6 + 4 / 12, "feet"),
  22136. weight: math.unit(160, "lb"),
  22137. name: "Aquatic",
  22138. image: {
  22139. source: "./media/characters/tahajin/aquatic.svg",
  22140. extra: 572 / 542,
  22141. bottom: 0.04
  22142. }
  22143. },
  22144. chow: {
  22145. height: math.unit(8 + 11 / 12, "feet"),
  22146. weight: math.unit(450, "lb"),
  22147. name: "Chow",
  22148. image: {
  22149. source: "./media/characters/tahajin/chow.svg",
  22150. extra: 660 / 640,
  22151. bottom: 0.015
  22152. }
  22153. },
  22154. demiNaga: {
  22155. height: math.unit(6 + 8 / 12, "feet"),
  22156. weight: math.unit(300, "lb"),
  22157. name: "Demi Naga",
  22158. image: {
  22159. source: "./media/characters/tahajin/demi-naga.svg",
  22160. extra: 643 / 615,
  22161. bottom: 0.1
  22162. }
  22163. },
  22164. data: {
  22165. height: math.unit(5, "inches"),
  22166. weight: math.unit(0.1, "lb"),
  22167. name: "Data",
  22168. image: {
  22169. source: "./media/characters/tahajin/data.svg"
  22170. }
  22171. },
  22172. fluu: {
  22173. height: math.unit(5 + 7 / 12, "feet"),
  22174. weight: math.unit(140, "lb"),
  22175. name: "Fluu",
  22176. image: {
  22177. source: "./media/characters/tahajin/fluu.svg",
  22178. extra: 628 / 592,
  22179. bottom: 0.02
  22180. }
  22181. },
  22182. starWarrior: {
  22183. height: math.unit(4 + 5 / 12, "feet"),
  22184. weight: math.unit(50, "lb"),
  22185. name: "Star Warrior",
  22186. image: {
  22187. source: "./media/characters/tahajin/star-warrior.svg"
  22188. }
  22189. },
  22190. },
  22191. [
  22192. {
  22193. name: "Normal",
  22194. height: math.unit(25 + 6 / 12, "feet"),
  22195. default: true
  22196. },
  22197. ]
  22198. ))
  22199. characterMakers.push(() => makeCharacter(
  22200. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22201. {
  22202. front: {
  22203. height: math.unit(8, "feet"),
  22204. weight: math.unit(350, "lb"),
  22205. name: "Front",
  22206. image: {
  22207. source: "./media/characters/gabira/front.svg",
  22208. extra: 608 / 580,
  22209. bottom: 0.03
  22210. }
  22211. },
  22212. back: {
  22213. height: math.unit(8, "feet"),
  22214. weight: math.unit(350, "lb"),
  22215. name: "Back",
  22216. image: {
  22217. source: "./media/characters/gabira/back.svg",
  22218. extra: 608 / 580,
  22219. bottom: 0.03
  22220. }
  22221. },
  22222. },
  22223. [
  22224. {
  22225. name: "Normal",
  22226. height: math.unit(8, "feet"),
  22227. default: true
  22228. },
  22229. ]
  22230. ))
  22231. characterMakers.push(() => makeCharacter(
  22232. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22233. {
  22234. front: {
  22235. height: math.unit(5 + 3 / 12, "feet"),
  22236. weight: math.unit(137, "lb"),
  22237. name: "Front",
  22238. image: {
  22239. source: "./media/characters/sasha-katraine/front.svg",
  22240. extra: 1745/1694,
  22241. bottom: 37/1782
  22242. }
  22243. },
  22244. back: {
  22245. height: math.unit(5 + 3 / 12, "feet"),
  22246. weight: math.unit(137, "lb"),
  22247. name: "Back",
  22248. image: {
  22249. source: "./media/characters/sasha-katraine/back.svg",
  22250. extra: 1776/1699,
  22251. bottom: 26/1802
  22252. }
  22253. },
  22254. },
  22255. [
  22256. {
  22257. name: "Micro",
  22258. height: math.unit(5, "inches")
  22259. },
  22260. {
  22261. name: "Normal",
  22262. height: math.unit(5 + 3 / 12, "feet"),
  22263. default: true
  22264. },
  22265. ]
  22266. ))
  22267. characterMakers.push(() => makeCharacter(
  22268. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22269. {
  22270. side: {
  22271. height: math.unit(4, "inches"),
  22272. weight: math.unit(200, "grams"),
  22273. name: "Side",
  22274. image: {
  22275. source: "./media/characters/der/side.svg",
  22276. extra: 719 / 400,
  22277. bottom: 30.6 / 749.9187
  22278. }
  22279. },
  22280. },
  22281. [
  22282. {
  22283. name: "Micro",
  22284. height: math.unit(4, "inches"),
  22285. default: true
  22286. },
  22287. ]
  22288. ))
  22289. characterMakers.push(() => makeCharacter(
  22290. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22291. {
  22292. side: {
  22293. height: math.unit(30, "meters"),
  22294. weight: math.unit(700, "tonnes"),
  22295. name: "Side",
  22296. image: {
  22297. source: "./media/characters/fixerdragon/side.svg",
  22298. extra: (1293.0514 - 116.03) / 1106.86,
  22299. bottom: 116.03 / 1293.0514
  22300. }
  22301. },
  22302. },
  22303. [
  22304. {
  22305. name: "Planck",
  22306. height: math.unit(1.6e-35, "meters")
  22307. },
  22308. {
  22309. name: "Micro",
  22310. height: math.unit(0.4, "meters")
  22311. },
  22312. {
  22313. name: "Normal",
  22314. height: math.unit(30, "meters"),
  22315. default: true
  22316. },
  22317. {
  22318. name: "Megamacro",
  22319. height: math.unit(1.2, "megameters")
  22320. },
  22321. {
  22322. name: "Teramacro",
  22323. height: math.unit(130, "terameters")
  22324. },
  22325. {
  22326. name: "Yottamacro",
  22327. height: math.unit(6200, "yottameters")
  22328. },
  22329. ]
  22330. ));
  22331. characterMakers.push(() => makeCharacter(
  22332. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22333. {
  22334. front: {
  22335. height: math.unit(8, "feet"),
  22336. weight: math.unit(250, "lb"),
  22337. name: "Front",
  22338. image: {
  22339. source: "./media/characters/kite/front.svg",
  22340. extra: 2796 / 2659,
  22341. bottom: 0.002
  22342. }
  22343. },
  22344. },
  22345. [
  22346. {
  22347. name: "Normal",
  22348. height: math.unit(8, "feet"),
  22349. default: true
  22350. },
  22351. {
  22352. name: "Macro",
  22353. height: math.unit(360, "feet")
  22354. },
  22355. {
  22356. name: "Megamacro",
  22357. height: math.unit(1500, "feet")
  22358. },
  22359. ]
  22360. ))
  22361. characterMakers.push(() => makeCharacter(
  22362. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22363. {
  22364. front: {
  22365. height: math.unit(5 + 11/12, "feet"),
  22366. weight: math.unit(170, "lb"),
  22367. name: "Front",
  22368. image: {
  22369. source: "./media/characters/poojawa-vynar/front.svg",
  22370. extra: 1735/1585,
  22371. bottom: 96/1831
  22372. }
  22373. },
  22374. back: {
  22375. height: math.unit(5 + 11/12, "feet"),
  22376. weight: math.unit(170, "lb"),
  22377. name: "Back",
  22378. image: {
  22379. source: "./media/characters/poojawa-vynar/back.svg",
  22380. extra: 1749/1607,
  22381. bottom: 28/1777
  22382. }
  22383. },
  22384. male: {
  22385. height: math.unit(5 + 11/12, "feet"),
  22386. weight: math.unit(170, "lb"),
  22387. name: "Male",
  22388. image: {
  22389. source: "./media/characters/poojawa-vynar/male.svg",
  22390. extra: 1855/1713,
  22391. bottom: 63/1918
  22392. }
  22393. },
  22394. taur: {
  22395. height: math.unit(5 + 11/12, "feet"),
  22396. weight: math.unit(170, "lb"),
  22397. name: "Taur",
  22398. image: {
  22399. source: "./media/characters/poojawa-vynar/taur.svg",
  22400. extra: 1151/1059,
  22401. bottom: 356/1507
  22402. }
  22403. },
  22404. frontDressed: {
  22405. height: math.unit(5 + 11/12, "feet"),
  22406. weight: math.unit(170, "lb"),
  22407. name: "Front (Dressed)",
  22408. image: {
  22409. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22410. extra: 1735/1585,
  22411. bottom: 96/1831
  22412. }
  22413. },
  22414. backDressed: {
  22415. height: math.unit(5 + 11/12, "feet"),
  22416. weight: math.unit(170, "lb"),
  22417. name: "Back (Dressed)",
  22418. image: {
  22419. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22420. extra: 1749/1607,
  22421. bottom: 28/1777
  22422. }
  22423. },
  22424. maleDressed: {
  22425. height: math.unit(5 + 11/12, "feet"),
  22426. weight: math.unit(170, "lb"),
  22427. name: "Male (Dressed)",
  22428. image: {
  22429. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22430. extra: 1855/1713,
  22431. bottom: 63/1918
  22432. }
  22433. },
  22434. taurDressed: {
  22435. height: math.unit(5 + 11/12, "feet"),
  22436. weight: math.unit(170, "lb"),
  22437. name: "Taur (Dressed)",
  22438. image: {
  22439. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22440. extra: 1151/1059,
  22441. bottom: 356/1507
  22442. }
  22443. },
  22444. maw: {
  22445. height: math.unit(1.46, "feet"),
  22446. name: "Maw",
  22447. image: {
  22448. source: "./media/characters/poojawa-vynar/maw.svg"
  22449. }
  22450. },
  22451. head: {
  22452. height: math.unit(2.34, "feet"),
  22453. name: "Head",
  22454. image: {
  22455. source: "./media/characters/poojawa-vynar/head.svg"
  22456. }
  22457. },
  22458. paw: {
  22459. height: math.unit(1.61, "feet"),
  22460. name: "Paw",
  22461. image: {
  22462. source: "./media/characters/poojawa-vynar/paw.svg"
  22463. }
  22464. },
  22465. pawToering: {
  22466. height: math.unit(1.72, "feet"),
  22467. name: "Paw (Toering)",
  22468. image: {
  22469. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22470. }
  22471. },
  22472. toering: {
  22473. height: math.unit(2.9, "inches"),
  22474. name: "Toering",
  22475. image: {
  22476. source: "./media/characters/poojawa-vynar/toering.svg"
  22477. }
  22478. },
  22479. shaft: {
  22480. height: math.unit(0.625, "feet"),
  22481. name: "Shaft",
  22482. image: {
  22483. source: "./media/characters/poojawa-vynar/shaft.svg"
  22484. }
  22485. },
  22486. spade: {
  22487. height: math.unit(0.42, "feet"),
  22488. name: "Spade",
  22489. image: {
  22490. source: "./media/characters/poojawa-vynar/spade.svg"
  22491. }
  22492. },
  22493. },
  22494. [
  22495. {
  22496. name: "Shortstack",
  22497. height: math.unit(4, "feet")
  22498. },
  22499. {
  22500. name: "Normal",
  22501. height: math.unit(5 + 11 / 12, "feet"),
  22502. default: true
  22503. },
  22504. {
  22505. name: "Tauric",
  22506. height: math.unit(4, "meters")
  22507. },
  22508. ]
  22509. ))
  22510. characterMakers.push(() => makeCharacter(
  22511. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22512. {
  22513. front: {
  22514. height: math.unit(293, "meters"),
  22515. weight: math.unit(70400, "tons"),
  22516. name: "Front",
  22517. image: {
  22518. source: "./media/characters/violette/front.svg",
  22519. extra: 1227 / 1180,
  22520. bottom: 0.005
  22521. }
  22522. },
  22523. back: {
  22524. height: math.unit(293, "meters"),
  22525. weight: math.unit(70400, "tons"),
  22526. name: "Back",
  22527. image: {
  22528. source: "./media/characters/violette/back.svg",
  22529. extra: 1227 / 1180,
  22530. bottom: 0.005
  22531. }
  22532. },
  22533. },
  22534. [
  22535. {
  22536. name: "Macro",
  22537. height: math.unit(293, "meters"),
  22538. default: true
  22539. },
  22540. ]
  22541. ))
  22542. characterMakers.push(() => makeCharacter(
  22543. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22544. {
  22545. front: {
  22546. height: math.unit(1050, "feet"),
  22547. weight: math.unit(200000, "tons"),
  22548. name: "Front",
  22549. image: {
  22550. source: "./media/characters/alessandra/front.svg",
  22551. extra: 960 / 912,
  22552. bottom: 0.06
  22553. }
  22554. },
  22555. },
  22556. [
  22557. {
  22558. name: "Macro",
  22559. height: math.unit(1050, "feet")
  22560. },
  22561. {
  22562. name: "Macro+",
  22563. height: math.unit(900, "meters"),
  22564. default: true
  22565. },
  22566. ]
  22567. ))
  22568. characterMakers.push(() => makeCharacter(
  22569. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22570. {
  22571. front: {
  22572. height: math.unit(5, "feet"),
  22573. weight: math.unit(187, "lb"),
  22574. name: "Front",
  22575. image: {
  22576. source: "./media/characters/person/front.svg",
  22577. extra: 3087 / 2945,
  22578. bottom: 91 / 3181
  22579. }
  22580. },
  22581. },
  22582. [
  22583. {
  22584. name: "Micro",
  22585. height: math.unit(3, "inches")
  22586. },
  22587. {
  22588. name: "Normal",
  22589. height: math.unit(5, "feet"),
  22590. default: true
  22591. },
  22592. {
  22593. name: "Macro",
  22594. height: math.unit(90, "feet")
  22595. },
  22596. {
  22597. name: "Max Size",
  22598. height: math.unit(280, "feet")
  22599. },
  22600. ]
  22601. ))
  22602. characterMakers.push(() => makeCharacter(
  22603. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22604. {
  22605. front: {
  22606. height: math.unit(4.5, "meters"),
  22607. weight: math.unit(3200, "lb"),
  22608. name: "Front",
  22609. image: {
  22610. source: "./media/characters/ty/front.svg",
  22611. extra: 1038 / 960,
  22612. bottom: 31.156 / 1068
  22613. }
  22614. },
  22615. back: {
  22616. height: math.unit(4.5, "meters"),
  22617. weight: math.unit(3200, "lb"),
  22618. name: "Back",
  22619. image: {
  22620. source: "./media/characters/ty/back.svg",
  22621. extra: 1044 / 966,
  22622. bottom: 7.48 / 1049
  22623. }
  22624. },
  22625. },
  22626. [
  22627. {
  22628. name: "Normal",
  22629. height: math.unit(4.5, "meters"),
  22630. default: true
  22631. },
  22632. ]
  22633. ))
  22634. characterMakers.push(() => makeCharacter(
  22635. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22636. {
  22637. front: {
  22638. height: math.unit(5 + 4 / 12, "feet"),
  22639. weight: math.unit(115, "lb"),
  22640. name: "Front",
  22641. image: {
  22642. source: "./media/characters/rocky/front.svg",
  22643. extra: 1012 / 975,
  22644. bottom: 54 / 1066
  22645. }
  22646. },
  22647. },
  22648. [
  22649. {
  22650. name: "Normal",
  22651. height: math.unit(5 + 4 / 12, "feet"),
  22652. default: true
  22653. },
  22654. ]
  22655. ))
  22656. characterMakers.push(() => makeCharacter(
  22657. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22658. {
  22659. upright: {
  22660. height: math.unit(6, "meters"),
  22661. weight: math.unit(4000, "kg"),
  22662. name: "Upright",
  22663. image: {
  22664. source: "./media/characters/ruin/upright.svg",
  22665. extra: 668 / 661,
  22666. bottom: 42 / 799.8396
  22667. }
  22668. },
  22669. },
  22670. [
  22671. {
  22672. name: "Normal",
  22673. height: math.unit(6, "meters"),
  22674. default: true
  22675. },
  22676. ]
  22677. ))
  22678. characterMakers.push(() => makeCharacter(
  22679. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22680. {
  22681. front: {
  22682. height: math.unit(5, "feet"),
  22683. weight: math.unit(106, "lb"),
  22684. name: "Front",
  22685. image: {
  22686. source: "./media/characters/robin/front.svg",
  22687. extra: 862 / 799,
  22688. bottom: 42.4 / 914.8856
  22689. }
  22690. },
  22691. },
  22692. [
  22693. {
  22694. name: "Normal",
  22695. height: math.unit(5, "feet"),
  22696. default: true
  22697. },
  22698. ]
  22699. ))
  22700. characterMakers.push(() => makeCharacter(
  22701. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22702. {
  22703. side: {
  22704. height: math.unit(3, "feet"),
  22705. weight: math.unit(225, "lb"),
  22706. name: "Side",
  22707. image: {
  22708. source: "./media/characters/saian/side.svg",
  22709. extra: 566 / 356,
  22710. bottom: 79.7 / 643
  22711. }
  22712. },
  22713. maw: {
  22714. height: math.unit(2.85, "feet"),
  22715. name: "Maw",
  22716. image: {
  22717. source: "./media/characters/saian/maw.svg"
  22718. }
  22719. },
  22720. },
  22721. [
  22722. {
  22723. name: "Normal",
  22724. height: math.unit(3, "feet"),
  22725. default: true
  22726. },
  22727. ]
  22728. ))
  22729. characterMakers.push(() => makeCharacter(
  22730. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22731. {
  22732. side: {
  22733. height: math.unit(8, "feet"),
  22734. weight: math.unit(300, "lb"),
  22735. name: "Side",
  22736. image: {
  22737. source: "./media/characters/equus-silvermane/side.svg",
  22738. extra: 2176 / 2050,
  22739. bottom: 65.7 / 2245
  22740. }
  22741. },
  22742. front: {
  22743. height: math.unit(8, "feet"),
  22744. weight: math.unit(300, "lb"),
  22745. name: "Front",
  22746. image: {
  22747. source: "./media/characters/equus-silvermane/front.svg",
  22748. extra: 4633 / 4400,
  22749. bottom: 71.3 / 4706.915
  22750. }
  22751. },
  22752. sideStepping: {
  22753. height: math.unit(8, "feet"),
  22754. weight: math.unit(300, "lb"),
  22755. name: "Side (Stepping)",
  22756. image: {
  22757. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22758. extra: 1968 / 1860,
  22759. bottom: 16.4 / 1989
  22760. }
  22761. },
  22762. },
  22763. [
  22764. {
  22765. name: "Normal",
  22766. height: math.unit(8, "feet")
  22767. },
  22768. {
  22769. name: "Minimacro",
  22770. height: math.unit(75, "feet"),
  22771. default: true
  22772. },
  22773. {
  22774. name: "Macro",
  22775. height: math.unit(150, "feet")
  22776. },
  22777. {
  22778. name: "Macro+",
  22779. height: math.unit(1000, "feet")
  22780. },
  22781. {
  22782. name: "Megamacro",
  22783. height: math.unit(1, "mile")
  22784. },
  22785. ]
  22786. ))
  22787. characterMakers.push(() => makeCharacter(
  22788. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22789. {
  22790. side: {
  22791. height: math.unit(20, "feet"),
  22792. weight: math.unit(30000, "kg"),
  22793. name: "Side",
  22794. image: {
  22795. source: "./media/characters/windar/side.svg",
  22796. extra: 1491 / 1248,
  22797. bottom: 82.56 / 1568
  22798. }
  22799. },
  22800. },
  22801. [
  22802. {
  22803. name: "Normal",
  22804. height: math.unit(20, "feet"),
  22805. default: true
  22806. },
  22807. ]
  22808. ))
  22809. characterMakers.push(() => makeCharacter(
  22810. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22811. {
  22812. side: {
  22813. height: math.unit(15.66, "feet"),
  22814. weight: math.unit(150, "lb"),
  22815. name: "Side",
  22816. image: {
  22817. source: "./media/characters/melody/side.svg",
  22818. extra: 1097 / 944,
  22819. bottom: 11.8 / 1109
  22820. }
  22821. },
  22822. sideOutfit: {
  22823. height: math.unit(15.66, "feet"),
  22824. weight: math.unit(150, "lb"),
  22825. name: "Side (Outfit)",
  22826. image: {
  22827. source: "./media/characters/melody/side-outfit.svg",
  22828. extra: 1097 / 944,
  22829. bottom: 11.8 / 1109
  22830. }
  22831. },
  22832. },
  22833. [
  22834. {
  22835. name: "Normal",
  22836. height: math.unit(15.66, "feet"),
  22837. default: true
  22838. },
  22839. ]
  22840. ))
  22841. characterMakers.push(() => makeCharacter(
  22842. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22843. {
  22844. front: {
  22845. height: math.unit(8, "feet"),
  22846. weight: math.unit(325, "lb"),
  22847. name: "Front",
  22848. image: {
  22849. source: "./media/characters/windera/front.svg",
  22850. extra: 3180 / 2845,
  22851. bottom: 178 / 3365
  22852. }
  22853. },
  22854. },
  22855. [
  22856. {
  22857. name: "Normal",
  22858. height: math.unit(8, "feet"),
  22859. default: true
  22860. },
  22861. ]
  22862. ))
  22863. characterMakers.push(() => makeCharacter(
  22864. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22865. {
  22866. front: {
  22867. height: math.unit(28.75, "feet"),
  22868. weight: math.unit(2000, "kg"),
  22869. name: "Front",
  22870. image: {
  22871. source: "./media/characters/sonear/front.svg",
  22872. extra: 1041.1 / 964.9,
  22873. bottom: 53.7 / 1096.6
  22874. }
  22875. },
  22876. },
  22877. [
  22878. {
  22879. name: "Normal",
  22880. height: math.unit(28.75, "feet"),
  22881. default: true
  22882. },
  22883. ]
  22884. ))
  22885. characterMakers.push(() => makeCharacter(
  22886. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22887. {
  22888. side: {
  22889. height: math.unit(25.5, "feet"),
  22890. weight: math.unit(23000, "kg"),
  22891. name: "Side",
  22892. image: {
  22893. source: "./media/characters/kanara/side.svg"
  22894. }
  22895. },
  22896. },
  22897. [
  22898. {
  22899. name: "Normal",
  22900. height: math.unit(25.5, "feet"),
  22901. default: true
  22902. },
  22903. ]
  22904. ))
  22905. characterMakers.push(() => makeCharacter(
  22906. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22907. {
  22908. side: {
  22909. height: math.unit(10, "feet"),
  22910. weight: math.unit(1000, "kg"),
  22911. name: "Side",
  22912. image: {
  22913. source: "./media/characters/ereus/side.svg",
  22914. extra: 1157 / 959,
  22915. bottom: 153 / 1312.5
  22916. }
  22917. },
  22918. },
  22919. [
  22920. {
  22921. name: "Normal",
  22922. height: math.unit(10, "feet"),
  22923. default: true
  22924. },
  22925. ]
  22926. ))
  22927. characterMakers.push(() => makeCharacter(
  22928. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22929. {
  22930. side: {
  22931. height: math.unit(4.5, "feet"),
  22932. weight: math.unit(500, "lb"),
  22933. name: "Side",
  22934. image: {
  22935. source: "./media/characters/e-ter/side.svg",
  22936. extra: 1550 / 1248,
  22937. bottom: 146 / 1694
  22938. }
  22939. },
  22940. },
  22941. [
  22942. {
  22943. name: "Normal",
  22944. height: math.unit(4.5, "feet"),
  22945. default: true
  22946. },
  22947. ]
  22948. ))
  22949. characterMakers.push(() => makeCharacter(
  22950. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22951. {
  22952. side: {
  22953. height: math.unit(9.7, "feet"),
  22954. weight: math.unit(4000, "kg"),
  22955. name: "Side",
  22956. image: {
  22957. source: "./media/characters/yamie/side.svg"
  22958. }
  22959. },
  22960. },
  22961. [
  22962. {
  22963. name: "Normal",
  22964. height: math.unit(9.7, "feet"),
  22965. default: true
  22966. },
  22967. ]
  22968. ))
  22969. characterMakers.push(() => makeCharacter(
  22970. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22971. {
  22972. front: {
  22973. height: math.unit(50, "feet"),
  22974. weight: math.unit(50000, "kg"),
  22975. name: "Front",
  22976. image: {
  22977. source: "./media/characters/anders/front.svg",
  22978. extra: 570 / 539,
  22979. bottom: 14.7 / 586.7
  22980. }
  22981. },
  22982. },
  22983. [
  22984. {
  22985. name: "Large",
  22986. height: math.unit(50, "feet")
  22987. },
  22988. {
  22989. name: "Macro",
  22990. height: math.unit(2000, "feet"),
  22991. default: true
  22992. },
  22993. {
  22994. name: "Megamacro",
  22995. height: math.unit(12, "miles")
  22996. },
  22997. ]
  22998. ))
  22999. characterMakers.push(() => makeCharacter(
  23000. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23001. {
  23002. front: {
  23003. height: math.unit(7 + 2 / 12, "feet"),
  23004. weight: math.unit(300, "lb"),
  23005. name: "Front",
  23006. image: {
  23007. source: "./media/characters/reban/front.svg",
  23008. extra: 1287/1212,
  23009. bottom: 148/1435
  23010. }
  23011. },
  23012. head: {
  23013. height: math.unit(1.95, "feet"),
  23014. name: "Head",
  23015. image: {
  23016. source: "./media/characters/reban/head.svg"
  23017. }
  23018. },
  23019. maw: {
  23020. height: math.unit(0.95, "feet"),
  23021. name: "Maw",
  23022. image: {
  23023. source: "./media/characters/reban/maw.svg"
  23024. }
  23025. },
  23026. foot: {
  23027. height: math.unit(1.65, "feet"),
  23028. name: "Foot",
  23029. image: {
  23030. source: "./media/characters/reban/foot.svg"
  23031. }
  23032. },
  23033. dick: {
  23034. height: math.unit(7 / 5, "feet"),
  23035. name: "Dick",
  23036. image: {
  23037. source: "./media/characters/reban/dick.svg"
  23038. }
  23039. },
  23040. },
  23041. [
  23042. {
  23043. name: "Natural Height",
  23044. height: math.unit(7 + 2 / 12, "feet")
  23045. },
  23046. {
  23047. name: "Macro",
  23048. height: math.unit(500, "feet"),
  23049. default: true
  23050. },
  23051. {
  23052. name: "Canon Height",
  23053. height: math.unit(50, "AU")
  23054. },
  23055. ]
  23056. ))
  23057. characterMakers.push(() => makeCharacter(
  23058. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23059. {
  23060. front: {
  23061. height: math.unit(6, "feet"),
  23062. weight: math.unit(150, "lb"),
  23063. name: "Front",
  23064. image: {
  23065. source: "./media/characters/terrance-keayes/front.svg",
  23066. extra: 1.005,
  23067. bottom: 151 / 1615
  23068. }
  23069. },
  23070. side: {
  23071. height: math.unit(6, "feet"),
  23072. weight: math.unit(150, "lb"),
  23073. name: "Side",
  23074. image: {
  23075. source: "./media/characters/terrance-keayes/side.svg",
  23076. extra: 1.005,
  23077. bottom: 129.4 / 1544
  23078. }
  23079. },
  23080. back: {
  23081. height: math.unit(6, "feet"),
  23082. weight: math.unit(150, "lb"),
  23083. name: "Back",
  23084. image: {
  23085. source: "./media/characters/terrance-keayes/back.svg",
  23086. extra: 1.005,
  23087. bottom: 58.4 / 1557.3
  23088. }
  23089. },
  23090. dick: {
  23091. height: math.unit(6 * 0.208, "feet"),
  23092. name: "Dick",
  23093. image: {
  23094. source: "./media/characters/terrance-keayes/dick.svg"
  23095. }
  23096. },
  23097. },
  23098. [
  23099. {
  23100. name: "Canon Height",
  23101. height: math.unit(35, "miles"),
  23102. default: true
  23103. },
  23104. ]
  23105. ))
  23106. characterMakers.push(() => makeCharacter(
  23107. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23108. {
  23109. front: {
  23110. height: math.unit(6, "feet"),
  23111. weight: math.unit(150, "lb"),
  23112. name: "Front",
  23113. image: {
  23114. source: "./media/characters/ofelia/front.svg",
  23115. extra: 1130/1117,
  23116. bottom: 91/1221
  23117. }
  23118. },
  23119. back: {
  23120. height: math.unit(6, "feet"),
  23121. weight: math.unit(150, "lb"),
  23122. name: "Back",
  23123. image: {
  23124. source: "./media/characters/ofelia/back.svg",
  23125. extra: 1172/1159,
  23126. bottom: 28/1200
  23127. }
  23128. },
  23129. maw: {
  23130. height: math.unit(1, "feet"),
  23131. name: "Maw",
  23132. image: {
  23133. source: "./media/characters/ofelia/maw.svg"
  23134. }
  23135. },
  23136. foot: {
  23137. height: math.unit(1.949, "feet"),
  23138. name: "Foot",
  23139. image: {
  23140. source: "./media/characters/ofelia/foot.svg"
  23141. }
  23142. },
  23143. },
  23144. [
  23145. {
  23146. name: "Canon Height",
  23147. height: math.unit(2000, "miles"),
  23148. default: true
  23149. },
  23150. ]
  23151. ))
  23152. characterMakers.push(() => makeCharacter(
  23153. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23154. {
  23155. front: {
  23156. height: math.unit(6, "feet"),
  23157. weight: math.unit(150, "lb"),
  23158. name: "Front",
  23159. image: {
  23160. source: "./media/characters/samuel/front.svg",
  23161. extra: 265 / 258,
  23162. bottom: 2 / 266.1566
  23163. }
  23164. },
  23165. },
  23166. [
  23167. {
  23168. name: "Macro",
  23169. height: math.unit(100, "feet"),
  23170. default: true
  23171. },
  23172. {
  23173. name: "Full Size",
  23174. height: math.unit(1000, "miles")
  23175. },
  23176. ]
  23177. ))
  23178. characterMakers.push(() => makeCharacter(
  23179. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23180. {
  23181. front: {
  23182. height: math.unit(6, "feet"),
  23183. weight: math.unit(300, "lb"),
  23184. name: "Front",
  23185. image: {
  23186. source: "./media/characters/beishir-kiel/front.svg",
  23187. extra: 569 / 547,
  23188. bottom: 41.9 / 609
  23189. }
  23190. },
  23191. maw: {
  23192. height: math.unit(6 * 0.202, "feet"),
  23193. name: "Maw",
  23194. image: {
  23195. source: "./media/characters/beishir-kiel/maw.svg"
  23196. }
  23197. },
  23198. },
  23199. [
  23200. {
  23201. name: "Macro",
  23202. height: math.unit(300, "feet"),
  23203. default: true
  23204. },
  23205. ]
  23206. ))
  23207. characterMakers.push(() => makeCharacter(
  23208. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23209. {
  23210. front: {
  23211. height: math.unit(5 + 7/12, "feet"),
  23212. weight: math.unit(120, "lb"),
  23213. name: "Front",
  23214. image: {
  23215. source: "./media/characters/logan-grey/front.svg",
  23216. extra: 1836/1738,
  23217. bottom: 108/1944
  23218. }
  23219. },
  23220. back: {
  23221. height: math.unit(5 + 7/12, "feet"),
  23222. weight: math.unit(120, "lb"),
  23223. name: "Back",
  23224. image: {
  23225. source: "./media/characters/logan-grey/back.svg",
  23226. extra: 1880/1794,
  23227. bottom: 24/1904
  23228. }
  23229. },
  23230. frontSfw: {
  23231. height: math.unit(5 + 7/12, "feet"),
  23232. weight: math.unit(120, "lb"),
  23233. name: "Front (SFW)",
  23234. image: {
  23235. source: "./media/characters/logan-grey/front-sfw.svg",
  23236. extra: 1836/1738,
  23237. bottom: 108/1944
  23238. }
  23239. },
  23240. backSfw: {
  23241. height: math.unit(5 + 7/12, "feet"),
  23242. weight: math.unit(120, "lb"),
  23243. name: "Back (SFW)",
  23244. image: {
  23245. source: "./media/characters/logan-grey/back-sfw.svg",
  23246. extra: 1880/1794,
  23247. bottom: 24/1904
  23248. }
  23249. },
  23250. hands: {
  23251. height: math.unit(0.84, "feet"),
  23252. name: "Hands",
  23253. image: {
  23254. source: "./media/characters/logan-grey/hands.svg"
  23255. }
  23256. },
  23257. paws: {
  23258. height: math.unit(0.72, "feet"),
  23259. name: "Paws",
  23260. image: {
  23261. source: "./media/characters/logan-grey/paws.svg"
  23262. }
  23263. },
  23264. cock: {
  23265. height: math.unit(1.45, "feet"),
  23266. name: "Cock",
  23267. image: {
  23268. source: "./media/characters/logan-grey/cock.svg"
  23269. }
  23270. },
  23271. cockAlt: {
  23272. height: math.unit(1.437, "feet"),
  23273. name: "Cock (alt)",
  23274. image: {
  23275. source: "./media/characters/logan-grey/cock-alt.svg"
  23276. }
  23277. },
  23278. },
  23279. [
  23280. {
  23281. name: "Normal",
  23282. height: math.unit(5 + 8 / 12, "feet")
  23283. },
  23284. {
  23285. name: "The 500 Foot Femboy",
  23286. height: math.unit(500, "feet"),
  23287. default: true
  23288. },
  23289. {
  23290. name: "Megmacro",
  23291. height: math.unit(20, "miles")
  23292. },
  23293. ]
  23294. ))
  23295. characterMakers.push(() => makeCharacter(
  23296. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23297. {
  23298. front: {
  23299. height: math.unit(8 + 2 / 12, "feet"),
  23300. weight: math.unit(275, "lb"),
  23301. name: "Front",
  23302. image: {
  23303. source: "./media/characters/draganta/front.svg",
  23304. extra: 1177 / 1135,
  23305. bottom: 33.46 / 1212.1
  23306. }
  23307. },
  23308. },
  23309. [
  23310. {
  23311. name: "Normal",
  23312. height: math.unit(8 + 6 / 12, "feet"),
  23313. default: true
  23314. },
  23315. {
  23316. name: "Macro",
  23317. height: math.unit(150, "feet")
  23318. },
  23319. {
  23320. name: "Megamacro",
  23321. height: math.unit(1000, "miles")
  23322. },
  23323. ]
  23324. ))
  23325. characterMakers.push(() => makeCharacter(
  23326. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23327. {
  23328. front: {
  23329. height: math.unit(1.72, "m"),
  23330. weight: math.unit(80, "lb"),
  23331. name: "Front",
  23332. image: {
  23333. source: "./media/characters/voski/front.svg",
  23334. extra: 2076.22 / 2022.4,
  23335. bottom: 102.7 / 2177.3866
  23336. }
  23337. },
  23338. frontFlaccid: {
  23339. height: math.unit(1.72, "m"),
  23340. weight: math.unit(80, "lb"),
  23341. name: "Front (Flaccid)",
  23342. image: {
  23343. source: "./media/characters/voski/front-flaccid.svg",
  23344. extra: 2076.22 / 2022.4,
  23345. bottom: 102.7 / 2177.3866
  23346. }
  23347. },
  23348. frontErect: {
  23349. height: math.unit(1.72, "m"),
  23350. weight: math.unit(80, "lb"),
  23351. name: "Front (Erect)",
  23352. image: {
  23353. source: "./media/characters/voski/front-erect.svg",
  23354. extra: 2076.22 / 2022.4,
  23355. bottom: 102.7 / 2177.3866
  23356. }
  23357. },
  23358. back: {
  23359. height: math.unit(1.72, "m"),
  23360. weight: math.unit(80, "lb"),
  23361. name: "Back",
  23362. image: {
  23363. source: "./media/characters/voski/back.svg",
  23364. extra: 2104 / 2051,
  23365. bottom: 10.45 / 2113.63
  23366. }
  23367. },
  23368. },
  23369. [
  23370. {
  23371. name: "Normal",
  23372. height: math.unit(1.72, "m")
  23373. },
  23374. {
  23375. name: "Macro",
  23376. height: math.unit(55, "m"),
  23377. default: true
  23378. },
  23379. {
  23380. name: "Macro+",
  23381. height: math.unit(300, "m")
  23382. },
  23383. {
  23384. name: "Macro++",
  23385. height: math.unit(700, "m")
  23386. },
  23387. {
  23388. name: "Macro+++",
  23389. height: math.unit(4500, "m")
  23390. },
  23391. {
  23392. name: "Macro++++",
  23393. height: math.unit(45, "km")
  23394. },
  23395. {
  23396. name: "Macro+++++",
  23397. height: math.unit(1220, "km")
  23398. },
  23399. ]
  23400. ))
  23401. characterMakers.push(() => makeCharacter(
  23402. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23403. {
  23404. front: {
  23405. height: math.unit(2.3, "m"),
  23406. weight: math.unit(304, "kg"),
  23407. name: "Front",
  23408. image: {
  23409. source: "./media/characters/icowom-lee/front.svg",
  23410. extra: 985 / 955,
  23411. bottom: 25.4 / 1012
  23412. }
  23413. },
  23414. fronttentacles: {
  23415. height: math.unit(2.3, "m"),
  23416. weight: math.unit(304, "kg"),
  23417. name: "Front-tentacles",
  23418. image: {
  23419. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23420. extra: 985 / 955,
  23421. bottom: 25.4 / 1012
  23422. }
  23423. },
  23424. back: {
  23425. height: math.unit(2.3, "m"),
  23426. weight: math.unit(304, "kg"),
  23427. name: "Back",
  23428. image: {
  23429. source: "./media/characters/icowom-lee/back.svg",
  23430. extra: 975 / 954,
  23431. bottom: 9.5 / 985
  23432. }
  23433. },
  23434. backtentacles: {
  23435. height: math.unit(2.3, "m"),
  23436. weight: math.unit(304, "kg"),
  23437. name: "Back-tentacles",
  23438. image: {
  23439. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23440. extra: 975 / 954,
  23441. bottom: 9.5 / 985
  23442. }
  23443. },
  23444. frontDressed: {
  23445. height: math.unit(2.3, "m"),
  23446. weight: math.unit(304, "kg"),
  23447. name: "Front (Dressed)",
  23448. image: {
  23449. source: "./media/characters/icowom-lee/front-dressed.svg",
  23450. extra: 3076 / 2933,
  23451. bottom: 51.4 / 3125.1889
  23452. }
  23453. },
  23454. rump: {
  23455. height: math.unit(0.776, "meters"),
  23456. name: "Rump",
  23457. image: {
  23458. source: "./media/characters/icowom-lee/rump.svg"
  23459. }
  23460. },
  23461. genitals: {
  23462. height: math.unit(0.78, "meters"),
  23463. name: "Genitals",
  23464. image: {
  23465. source: "./media/characters/icowom-lee/genitals.svg"
  23466. }
  23467. },
  23468. },
  23469. [
  23470. {
  23471. name: "Normal",
  23472. height: math.unit(2.3, "meters"),
  23473. default: true
  23474. },
  23475. {
  23476. name: "Macro",
  23477. height: math.unit(94, "meters"),
  23478. default: true
  23479. },
  23480. ]
  23481. ))
  23482. characterMakers.push(() => makeCharacter(
  23483. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23484. {
  23485. front: {
  23486. height: math.unit(22, "meters"),
  23487. weight: math.unit(21000, "kg"),
  23488. name: "Front",
  23489. image: {
  23490. source: "./media/characters/shock-diamond/front.svg",
  23491. extra: 2204 / 2053,
  23492. bottom: 65 / 2239.47
  23493. }
  23494. },
  23495. frontNude: {
  23496. height: math.unit(22, "meters"),
  23497. weight: math.unit(21000, "kg"),
  23498. name: "Front (Nude)",
  23499. image: {
  23500. source: "./media/characters/shock-diamond/front-nude.svg",
  23501. extra: 2514 / 2285,
  23502. bottom: 13 / 2527.56
  23503. }
  23504. },
  23505. },
  23506. [
  23507. {
  23508. name: "Normal",
  23509. height: math.unit(3, "meters")
  23510. },
  23511. {
  23512. name: "Macro",
  23513. height: math.unit(22, "meters"),
  23514. default: true
  23515. },
  23516. ]
  23517. ))
  23518. characterMakers.push(() => makeCharacter(
  23519. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23520. {
  23521. front: {
  23522. height: math.unit(5 + 4 / 12, "feet"),
  23523. weight: math.unit(120, "lb"),
  23524. name: "Front",
  23525. image: {
  23526. source: "./media/characters/rory/front.svg",
  23527. extra: 1318/1241,
  23528. bottom: 42/1360
  23529. }
  23530. },
  23531. back: {
  23532. height: math.unit(5 + 4 / 12, "feet"),
  23533. weight: math.unit(120, "lb"),
  23534. name: "Back",
  23535. image: {
  23536. source: "./media/characters/rory/back.svg",
  23537. extra: 1318/1241,
  23538. bottom: 42/1360
  23539. }
  23540. },
  23541. butt: {
  23542. height: math.unit(1.74, "feet"),
  23543. name: "Butt",
  23544. image: {
  23545. source: "./media/characters/rory/butt.svg"
  23546. }
  23547. },
  23548. dick: {
  23549. height: math.unit(1.02, "feet"),
  23550. name: "Dick",
  23551. image: {
  23552. source: "./media/characters/rory/dick.svg"
  23553. }
  23554. },
  23555. paws: {
  23556. height: math.unit(1, "feet"),
  23557. name: "Paws",
  23558. image: {
  23559. source: "./media/characters/rory/paws.svg"
  23560. }
  23561. },
  23562. frontAlt: {
  23563. height: math.unit(5 + 4 / 12, "feet"),
  23564. weight: math.unit(120, "lb"),
  23565. name: "Front (Alt)",
  23566. image: {
  23567. source: "./media/characters/rory/front-alt.svg",
  23568. extra: 589 / 556,
  23569. bottom: 45.7 / 635.76
  23570. }
  23571. },
  23572. frontAltNude: {
  23573. height: math.unit(5 + 4 / 12, "feet"),
  23574. weight: math.unit(120, "lb"),
  23575. name: "Front (Alt, Nude)",
  23576. image: {
  23577. source: "./media/characters/rory/front-alt-nude.svg",
  23578. extra: 589 / 556,
  23579. bottom: 45.7 / 635.76
  23580. }
  23581. },
  23582. side: {
  23583. height: math.unit(5 + 4 / 12, "feet"),
  23584. weight: math.unit(120, "lb"),
  23585. name: "Side",
  23586. image: {
  23587. source: "./media/characters/rory/side.svg",
  23588. extra: 597 / 564,
  23589. bottom: 55 / 653
  23590. }
  23591. },
  23592. backAlt: {
  23593. height: math.unit(5 + 4 / 12, "feet"),
  23594. weight: math.unit(120, "lb"),
  23595. name: "Back (Alt)",
  23596. image: {
  23597. source: "./media/characters/rory/back-alt.svg",
  23598. extra: 620 / 585,
  23599. bottom: 8.86 / 630.43
  23600. }
  23601. },
  23602. dickAlt: {
  23603. height: math.unit(0.86, "feet"),
  23604. name: "Dick (Alt)",
  23605. image: {
  23606. source: "./media/characters/rory/dick-alt.svg"
  23607. }
  23608. },
  23609. },
  23610. [
  23611. {
  23612. name: "Normal",
  23613. height: math.unit(5 + 4 / 12, "feet"),
  23614. default: true
  23615. },
  23616. {
  23617. name: "Macro",
  23618. height: math.unit(100, "feet")
  23619. },
  23620. {
  23621. name: "Macro+",
  23622. height: math.unit(140, "feet")
  23623. },
  23624. {
  23625. name: "Macro++",
  23626. height: math.unit(300, "feet")
  23627. },
  23628. ]
  23629. ))
  23630. characterMakers.push(() => makeCharacter(
  23631. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23632. {
  23633. front: {
  23634. height: math.unit(5 + 9 / 12, "feet"),
  23635. weight: math.unit(190, "lb"),
  23636. name: "Front",
  23637. image: {
  23638. source: "./media/characters/sprisk/front.svg",
  23639. extra: 1225 / 1180,
  23640. bottom: 42.7 / 1266.4
  23641. }
  23642. },
  23643. frontNsfw: {
  23644. height: math.unit(5 + 9 / 12, "feet"),
  23645. weight: math.unit(190, "lb"),
  23646. name: "Front (NSFW)",
  23647. image: {
  23648. source: "./media/characters/sprisk/front-nsfw.svg",
  23649. extra: 1225 / 1180,
  23650. bottom: 42.7 / 1266.4
  23651. }
  23652. },
  23653. back: {
  23654. height: math.unit(5 + 9 / 12, "feet"),
  23655. weight: math.unit(190, "lb"),
  23656. name: "Back",
  23657. image: {
  23658. source: "./media/characters/sprisk/back.svg",
  23659. extra: 1247 / 1200,
  23660. bottom: 5.6 / 1253.04
  23661. }
  23662. },
  23663. },
  23664. [
  23665. {
  23666. name: "Tiny",
  23667. height: math.unit(2, "inches")
  23668. },
  23669. {
  23670. name: "Normal",
  23671. height: math.unit(5 + 9 / 12, "feet"),
  23672. default: true
  23673. },
  23674. {
  23675. name: "Mini Macro",
  23676. height: math.unit(18, "feet")
  23677. },
  23678. {
  23679. name: "Macro",
  23680. height: math.unit(100, "feet")
  23681. },
  23682. {
  23683. name: "MACRO",
  23684. height: math.unit(50, "miles")
  23685. },
  23686. {
  23687. name: "M A C R O",
  23688. height: math.unit(300, "miles")
  23689. },
  23690. ]
  23691. ))
  23692. characterMakers.push(() => makeCharacter(
  23693. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23694. {
  23695. side: {
  23696. height: math.unit(15.6, "meters"),
  23697. weight: math.unit(700000, "kg"),
  23698. name: "Side",
  23699. image: {
  23700. source: "./media/characters/bunsen/side.svg",
  23701. extra: 1644 / 358
  23702. }
  23703. },
  23704. foot: {
  23705. height: math.unit(1.611 * 1644 / 358, "meter"),
  23706. name: "Foot",
  23707. image: {
  23708. source: "./media/characters/bunsen/foot.svg"
  23709. }
  23710. },
  23711. },
  23712. [
  23713. {
  23714. name: "Small",
  23715. height: math.unit(10, "feet")
  23716. },
  23717. {
  23718. name: "Normal",
  23719. height: math.unit(15.6, "meters"),
  23720. default: true
  23721. },
  23722. ]
  23723. ))
  23724. characterMakers.push(() => makeCharacter(
  23725. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23726. {
  23727. front: {
  23728. height: math.unit(4 + 11 / 12, "feet"),
  23729. weight: math.unit(140, "lb"),
  23730. name: "Front",
  23731. image: {
  23732. source: "./media/characters/sesh/front.svg",
  23733. extra: 3420 / 3231,
  23734. bottom: 72 / 3949.5
  23735. }
  23736. },
  23737. },
  23738. [
  23739. {
  23740. name: "Normal",
  23741. height: math.unit(4 + 11 / 12, "feet")
  23742. },
  23743. {
  23744. name: "Grown",
  23745. height: math.unit(15, "feet"),
  23746. default: true
  23747. },
  23748. {
  23749. name: "Macro",
  23750. height: math.unit(1500, "feet")
  23751. },
  23752. {
  23753. name: "Megamacro",
  23754. height: math.unit(30, "miles")
  23755. },
  23756. {
  23757. name: "Continental",
  23758. height: math.unit(3000, "miles")
  23759. },
  23760. {
  23761. name: "Gravity Mass",
  23762. height: math.unit(300000, "miles")
  23763. },
  23764. {
  23765. name: "Planet Buster",
  23766. height: math.unit(30000000, "miles")
  23767. },
  23768. {
  23769. name: "Big",
  23770. height: math.unit(3000000000, "miles")
  23771. },
  23772. ]
  23773. ))
  23774. characterMakers.push(() => makeCharacter(
  23775. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23776. {
  23777. front: {
  23778. height: math.unit(9, "feet"),
  23779. weight: math.unit(350, "lb"),
  23780. name: "Front",
  23781. image: {
  23782. source: "./media/characters/pepper/front.svg",
  23783. extra: 1448 / 1312,
  23784. bottom: 9.4 / 1457.88
  23785. }
  23786. },
  23787. back: {
  23788. height: math.unit(9, "feet"),
  23789. weight: math.unit(350, "lb"),
  23790. name: "Back",
  23791. image: {
  23792. source: "./media/characters/pepper/back.svg",
  23793. extra: 1423 / 1300,
  23794. bottom: 4.6 / 1429
  23795. }
  23796. },
  23797. maw: {
  23798. height: math.unit(0.932, "feet"),
  23799. name: "Maw",
  23800. image: {
  23801. source: "./media/characters/pepper/maw.svg"
  23802. }
  23803. },
  23804. },
  23805. [
  23806. {
  23807. name: "Normal",
  23808. height: math.unit(9, "feet"),
  23809. default: true
  23810. },
  23811. ]
  23812. ))
  23813. characterMakers.push(() => makeCharacter(
  23814. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23815. {
  23816. front: {
  23817. height: math.unit(6, "feet"),
  23818. weight: math.unit(150, "lb"),
  23819. name: "Front",
  23820. image: {
  23821. source: "./media/characters/maelstrom/front.svg",
  23822. extra: 2100 / 1883,
  23823. bottom: 94 / 2196.7
  23824. }
  23825. },
  23826. },
  23827. [
  23828. {
  23829. name: "Less Kaiju",
  23830. height: math.unit(200, "feet")
  23831. },
  23832. {
  23833. name: "Kaiju",
  23834. height: math.unit(400, "feet"),
  23835. default: true
  23836. },
  23837. {
  23838. name: "Kaiju-er",
  23839. height: math.unit(600, "feet")
  23840. },
  23841. ]
  23842. ))
  23843. characterMakers.push(() => makeCharacter(
  23844. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23845. {
  23846. front: {
  23847. height: math.unit(6 + 5 / 12, "feet"),
  23848. weight: math.unit(180, "lb"),
  23849. name: "Front",
  23850. image: {
  23851. source: "./media/characters/lexir/front.svg",
  23852. extra: 180 / 172,
  23853. bottom: 12 / 192
  23854. }
  23855. },
  23856. back: {
  23857. height: math.unit(6 + 5 / 12, "feet"),
  23858. weight: math.unit(180, "lb"),
  23859. name: "Back",
  23860. image: {
  23861. source: "./media/characters/lexir/back.svg",
  23862. extra: 1273/1201,
  23863. bottom: 39/1312
  23864. }
  23865. },
  23866. },
  23867. [
  23868. {
  23869. name: "Very Smal",
  23870. height: math.unit(1, "nm")
  23871. },
  23872. {
  23873. name: "Normal",
  23874. height: math.unit(6 + 5 / 12, "feet"),
  23875. default: true
  23876. },
  23877. {
  23878. name: "Macro",
  23879. height: math.unit(1, "mile")
  23880. },
  23881. {
  23882. name: "Megamacro",
  23883. height: math.unit(50, "miles")
  23884. },
  23885. ]
  23886. ))
  23887. characterMakers.push(() => makeCharacter(
  23888. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23889. {
  23890. front: {
  23891. height: math.unit(1.5, "meters"),
  23892. weight: math.unit(100, "lb"),
  23893. name: "Front",
  23894. image: {
  23895. source: "./media/characters/maksio/front.svg",
  23896. extra: 1549 / 1531,
  23897. bottom: 123.7 / 1674.5429
  23898. }
  23899. },
  23900. back: {
  23901. height: math.unit(1.5, "meters"),
  23902. weight: math.unit(100, "lb"),
  23903. name: "Back",
  23904. image: {
  23905. source: "./media/characters/maksio/back.svg",
  23906. extra: 1541 / 1509,
  23907. bottom: 97 / 1639
  23908. }
  23909. },
  23910. hand: {
  23911. height: math.unit(0.621, "feet"),
  23912. name: "Hand",
  23913. image: {
  23914. source: "./media/characters/maksio/hand.svg"
  23915. }
  23916. },
  23917. foot: {
  23918. height: math.unit(1.611, "feet"),
  23919. name: "Foot",
  23920. image: {
  23921. source: "./media/characters/maksio/foot.svg"
  23922. }
  23923. },
  23924. },
  23925. [
  23926. {
  23927. name: "Shrunken",
  23928. height: math.unit(10, "cm")
  23929. },
  23930. {
  23931. name: "Normal",
  23932. height: math.unit(150, "cm"),
  23933. default: true
  23934. },
  23935. ]
  23936. ))
  23937. characterMakers.push(() => makeCharacter(
  23938. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23939. {
  23940. front: {
  23941. height: math.unit(100, "feet"),
  23942. name: "Front",
  23943. image: {
  23944. source: "./media/characters/erza-bear/front.svg",
  23945. extra: 2449 / 2390,
  23946. bottom: 46 / 2494
  23947. }
  23948. },
  23949. back: {
  23950. height: math.unit(100, "feet"),
  23951. name: "Back",
  23952. image: {
  23953. source: "./media/characters/erza-bear/back.svg",
  23954. extra: 2489 / 2430,
  23955. bottom: 85.4 / 2480
  23956. }
  23957. },
  23958. tail: {
  23959. height: math.unit(42, "feet"),
  23960. name: "Tail",
  23961. image: {
  23962. source: "./media/characters/erza-bear/tail.svg"
  23963. }
  23964. },
  23965. tongue: {
  23966. height: math.unit(8, "feet"),
  23967. name: "Tongue",
  23968. image: {
  23969. source: "./media/characters/erza-bear/tongue.svg"
  23970. }
  23971. },
  23972. dick: {
  23973. height: math.unit(10.5, "feet"),
  23974. name: "Dick",
  23975. image: {
  23976. source: "./media/characters/erza-bear/dick.svg"
  23977. }
  23978. },
  23979. dickVertical: {
  23980. height: math.unit(16.9, "feet"),
  23981. name: "Dick (Vertical)",
  23982. image: {
  23983. source: "./media/characters/erza-bear/dick-vertical.svg"
  23984. }
  23985. },
  23986. },
  23987. [
  23988. {
  23989. name: "Macro",
  23990. height: math.unit(100, "feet"),
  23991. default: true
  23992. },
  23993. ]
  23994. ))
  23995. characterMakers.push(() => makeCharacter(
  23996. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23997. {
  23998. front: {
  23999. height: math.unit(172, "cm"),
  24000. weight: math.unit(73, "kg"),
  24001. name: "Front",
  24002. image: {
  24003. source: "./media/characters/violet-flor/front.svg",
  24004. extra: 1530 / 1442,
  24005. bottom: 61.9 / 1588.8
  24006. }
  24007. },
  24008. back: {
  24009. height: math.unit(180, "cm"),
  24010. weight: math.unit(73, "kg"),
  24011. name: "Back",
  24012. image: {
  24013. source: "./media/characters/violet-flor/back.svg",
  24014. extra: 1692 / 1630,
  24015. bottom: 20 / 1712
  24016. }
  24017. },
  24018. },
  24019. [
  24020. {
  24021. name: "Normal",
  24022. height: math.unit(172, "cm"),
  24023. default: true
  24024. },
  24025. ]
  24026. ))
  24027. characterMakers.push(() => makeCharacter(
  24028. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24029. {
  24030. front: {
  24031. height: math.unit(6, "feet"),
  24032. weight: math.unit(220, "lb"),
  24033. name: "Front",
  24034. image: {
  24035. source: "./media/characters/lynn-rhea/front.svg",
  24036. extra: 310 / 273
  24037. }
  24038. },
  24039. back: {
  24040. height: math.unit(6, "feet"),
  24041. weight: math.unit(220, "lb"),
  24042. name: "Back",
  24043. image: {
  24044. source: "./media/characters/lynn-rhea/back.svg",
  24045. extra: 310 / 273
  24046. }
  24047. },
  24048. dicks: {
  24049. height: math.unit(0.9, "feet"),
  24050. name: "Dicks",
  24051. image: {
  24052. source: "./media/characters/lynn-rhea/dicks.svg"
  24053. }
  24054. },
  24055. slit: {
  24056. height: math.unit(0.4, "feet"),
  24057. name: "Slit",
  24058. image: {
  24059. source: "./media/characters/lynn-rhea/slit.svg"
  24060. }
  24061. },
  24062. },
  24063. [
  24064. {
  24065. name: "Micro",
  24066. height: math.unit(1, "inch")
  24067. },
  24068. {
  24069. name: "Macro",
  24070. height: math.unit(60, "feet"),
  24071. default: true
  24072. },
  24073. {
  24074. name: "Megamacro",
  24075. height: math.unit(2, "miles")
  24076. },
  24077. {
  24078. name: "Gigamacro",
  24079. height: math.unit(3, "earths")
  24080. },
  24081. {
  24082. name: "Galactic",
  24083. height: math.unit(0.8, "galaxies")
  24084. },
  24085. ]
  24086. ))
  24087. characterMakers.push(() => makeCharacter(
  24088. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24089. {
  24090. front: {
  24091. height: math.unit(1600, "feet"),
  24092. weight: math.unit(85758785169, "kg"),
  24093. name: "Front",
  24094. image: {
  24095. source: "./media/characters/valathos/front.svg",
  24096. extra: 1451 / 1339
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Macro",
  24103. height: math.unit(1600, "feet"),
  24104. default: true
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24110. {
  24111. front: {
  24112. height: math.unit(7 + 5 / 12, "feet"),
  24113. weight: math.unit(300, "lb"),
  24114. name: "Front",
  24115. image: {
  24116. source: "./media/characters/azula/front.svg",
  24117. extra: 3208 / 2880,
  24118. bottom: 80.2 / 3277
  24119. }
  24120. },
  24121. back: {
  24122. height: math.unit(7 + 5 / 12, "feet"),
  24123. weight: math.unit(300, "lb"),
  24124. name: "Back",
  24125. image: {
  24126. source: "./media/characters/azula/back.svg",
  24127. extra: 3169 / 2822,
  24128. bottom: 150.6 / 3321
  24129. }
  24130. },
  24131. },
  24132. [
  24133. {
  24134. name: "Normal",
  24135. height: math.unit(7 + 5 / 12, "feet"),
  24136. default: true
  24137. },
  24138. {
  24139. name: "Big",
  24140. height: math.unit(20, "feet")
  24141. },
  24142. ]
  24143. ))
  24144. characterMakers.push(() => makeCharacter(
  24145. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24146. {
  24147. front: {
  24148. height: math.unit(5 + 1 / 12, "feet"),
  24149. weight: math.unit(110, "lb"),
  24150. name: "Front",
  24151. image: {
  24152. source: "./media/characters/rupert/front.svg",
  24153. extra: 1549 / 1495,
  24154. bottom: 54.2 / 1604.4
  24155. }
  24156. },
  24157. },
  24158. [
  24159. {
  24160. name: "Normal",
  24161. height: math.unit(5 + 1 / 12, "feet"),
  24162. default: true
  24163. },
  24164. ]
  24165. ))
  24166. characterMakers.push(() => makeCharacter(
  24167. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24168. {
  24169. front: {
  24170. height: math.unit(8 + 4 / 12, "feet"),
  24171. weight: math.unit(350, "lb"),
  24172. name: "Front",
  24173. image: {
  24174. source: "./media/characters/sheera-castellar/front.svg",
  24175. extra: 1957 / 1894,
  24176. bottom: 26.97 / 1975.017
  24177. }
  24178. },
  24179. side: {
  24180. height: math.unit(8 + 4 / 12, "feet"),
  24181. weight: math.unit(350, "lb"),
  24182. name: "Side",
  24183. image: {
  24184. source: "./media/characters/sheera-castellar/side.svg",
  24185. extra: 1957 / 1894
  24186. }
  24187. },
  24188. back: {
  24189. height: math.unit(8 + 4 / 12, "feet"),
  24190. weight: math.unit(350, "lb"),
  24191. name: "Back",
  24192. image: {
  24193. source: "./media/characters/sheera-castellar/back.svg",
  24194. extra: 1957 / 1894
  24195. }
  24196. },
  24197. angled: {
  24198. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24199. weight: math.unit(350, "lb"),
  24200. name: "Angled",
  24201. image: {
  24202. source: "./media/characters/sheera-castellar/angled.svg",
  24203. extra: 1807 / 1707,
  24204. bottom: 68 / 1875
  24205. }
  24206. },
  24207. genitals: {
  24208. height: math.unit(2.2, "feet"),
  24209. name: "Genitals",
  24210. image: {
  24211. source: "./media/characters/sheera-castellar/genitals.svg"
  24212. }
  24213. },
  24214. taur: {
  24215. height: math.unit(10 + 6/12, "feet"),
  24216. name: "Taur",
  24217. image: {
  24218. source: "./media/characters/sheera-castellar/taur.svg",
  24219. extra: 2017/1909,
  24220. bottom: 185/2202
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Normal",
  24227. height: math.unit(8 + 4 / 12, "feet")
  24228. },
  24229. {
  24230. name: "Macro",
  24231. height: math.unit(150, "feet"),
  24232. default: true
  24233. },
  24234. {
  24235. name: "Macro+",
  24236. height: math.unit(800, "feet")
  24237. },
  24238. ]
  24239. ))
  24240. characterMakers.push(() => makeCharacter(
  24241. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24242. {
  24243. front: {
  24244. height: math.unit(6, "feet"),
  24245. weight: math.unit(150, "lb"),
  24246. name: "Front",
  24247. image: {
  24248. source: "./media/characters/jaipur/front.svg",
  24249. extra: 3860 / 3731,
  24250. bottom: 287 / 4140
  24251. }
  24252. },
  24253. back: {
  24254. height: math.unit(6, "feet"),
  24255. weight: math.unit(150, "lb"),
  24256. name: "Back",
  24257. image: {
  24258. source: "./media/characters/jaipur/back.svg",
  24259. extra: 1637/1561,
  24260. bottom: 154/1791
  24261. }
  24262. },
  24263. },
  24264. [
  24265. {
  24266. name: "Normal",
  24267. height: math.unit(1.85, "meters"),
  24268. default: true
  24269. },
  24270. {
  24271. name: "Macro",
  24272. height: math.unit(150, "meters")
  24273. },
  24274. {
  24275. name: "Macro+",
  24276. height: math.unit(0.5, "miles")
  24277. },
  24278. {
  24279. name: "Macro++",
  24280. height: math.unit(2.5, "miles")
  24281. },
  24282. {
  24283. name: "Macro+++",
  24284. height: math.unit(12, "miles")
  24285. },
  24286. {
  24287. name: "Macro++++",
  24288. height: math.unit(120, "miles")
  24289. },
  24290. {
  24291. name: "Macro+++++",
  24292. height: math.unit(1200, "miles")
  24293. },
  24294. ]
  24295. ))
  24296. characterMakers.push(() => makeCharacter(
  24297. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24298. {
  24299. front: {
  24300. height: math.unit(6, "feet"),
  24301. weight: math.unit(150, "lb"),
  24302. name: "Front",
  24303. image: {
  24304. source: "./media/characters/sheila-wolf/front.svg",
  24305. extra: 1931 / 1808,
  24306. bottom: 29.5 / 1960
  24307. }
  24308. },
  24309. dick: {
  24310. height: math.unit(1.464, "feet"),
  24311. name: "Dick",
  24312. image: {
  24313. source: "./media/characters/sheila-wolf/dick.svg"
  24314. }
  24315. },
  24316. muzzle: {
  24317. height: math.unit(0.513, "feet"),
  24318. name: "Muzzle",
  24319. image: {
  24320. source: "./media/characters/sheila-wolf/muzzle.svg"
  24321. }
  24322. },
  24323. },
  24324. [
  24325. {
  24326. name: "Macro",
  24327. height: math.unit(70, "feet"),
  24328. default: true
  24329. },
  24330. ]
  24331. ))
  24332. characterMakers.push(() => makeCharacter(
  24333. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24334. {
  24335. front: {
  24336. height: math.unit(32, "meters"),
  24337. weight: math.unit(300000, "kg"),
  24338. name: "Front",
  24339. image: {
  24340. source: "./media/characters/almor/front.svg",
  24341. extra: 1408 / 1322,
  24342. bottom: 94.6 / 1506.5
  24343. }
  24344. },
  24345. },
  24346. [
  24347. {
  24348. name: "Macro",
  24349. height: math.unit(32, "meters"),
  24350. default: true
  24351. },
  24352. ]
  24353. ))
  24354. characterMakers.push(() => makeCharacter(
  24355. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24356. {
  24357. front: {
  24358. height: math.unit(7, "feet"),
  24359. weight: math.unit(200, "lb"),
  24360. name: "Front",
  24361. image: {
  24362. source: "./media/characters/silver/front.svg",
  24363. extra: 472.1 / 450.5,
  24364. bottom: 26.5 / 499.424
  24365. }
  24366. },
  24367. },
  24368. [
  24369. {
  24370. name: "Normal",
  24371. height: math.unit(7, "feet"),
  24372. default: true
  24373. },
  24374. {
  24375. name: "Macro",
  24376. height: math.unit(800, "feet")
  24377. },
  24378. {
  24379. name: "Megamacro",
  24380. height: math.unit(250, "miles")
  24381. },
  24382. ]
  24383. ))
  24384. characterMakers.push(() => makeCharacter(
  24385. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24386. {
  24387. front: {
  24388. height: math.unit(6, "feet"),
  24389. weight: math.unit(150, "lb"),
  24390. name: "Front",
  24391. image: {
  24392. source: "./media/characters/pliskin/front.svg",
  24393. extra: 1469 / 1359,
  24394. bottom: 70 / 1540
  24395. }
  24396. },
  24397. },
  24398. [
  24399. {
  24400. name: "Micro",
  24401. height: math.unit(3, "inches")
  24402. },
  24403. {
  24404. name: "Normal",
  24405. height: math.unit(5 + 11 / 12, "feet"),
  24406. default: true
  24407. },
  24408. {
  24409. name: "Macro",
  24410. height: math.unit(120, "feet")
  24411. },
  24412. ]
  24413. ))
  24414. characterMakers.push(() => makeCharacter(
  24415. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24416. {
  24417. front: {
  24418. height: math.unit(6, "feet"),
  24419. weight: math.unit(150, "lb"),
  24420. name: "Front",
  24421. image: {
  24422. source: "./media/characters/sammy/front.svg",
  24423. extra: 1193 / 1089,
  24424. bottom: 30.5 / 1226
  24425. }
  24426. },
  24427. },
  24428. [
  24429. {
  24430. name: "Macro",
  24431. height: math.unit(1700, "feet"),
  24432. default: true
  24433. },
  24434. {
  24435. name: "Examacro",
  24436. height: math.unit(2.5e9, "lightyears")
  24437. },
  24438. ]
  24439. ))
  24440. characterMakers.push(() => makeCharacter(
  24441. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24442. {
  24443. front: {
  24444. height: math.unit(21, "meters"),
  24445. weight: math.unit(12, "tonnes"),
  24446. name: "Front",
  24447. image: {
  24448. source: "./media/characters/kuru/front.svg",
  24449. extra: 4301 / 3785,
  24450. bottom: 371.3 / 4691
  24451. }
  24452. },
  24453. },
  24454. [
  24455. {
  24456. name: "Macro",
  24457. height: math.unit(21, "meters"),
  24458. default: true
  24459. },
  24460. ]
  24461. ))
  24462. characterMakers.push(() => makeCharacter(
  24463. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24464. {
  24465. front: {
  24466. height: math.unit(23, "meters"),
  24467. weight: math.unit(12.2, "tonnes"),
  24468. name: "Front",
  24469. image: {
  24470. source: "./media/characters/rakka/front.svg",
  24471. extra: 4670 / 4169,
  24472. bottom: 301 / 4968.7
  24473. }
  24474. },
  24475. },
  24476. [
  24477. {
  24478. name: "Macro",
  24479. height: math.unit(23, "meters"),
  24480. default: true
  24481. },
  24482. ]
  24483. ))
  24484. characterMakers.push(() => makeCharacter(
  24485. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24486. {
  24487. front: {
  24488. height: math.unit(6, "feet"),
  24489. weight: math.unit(150, "lb"),
  24490. name: "Front",
  24491. image: {
  24492. source: "./media/characters/rhys-feline/front.svg",
  24493. extra: 2488 / 2308,
  24494. bottom: 35.67 / 2519.19
  24495. }
  24496. },
  24497. },
  24498. [
  24499. {
  24500. name: "Really Small",
  24501. height: math.unit(1, "nm")
  24502. },
  24503. {
  24504. name: "Micro",
  24505. height: math.unit(4, "inches")
  24506. },
  24507. {
  24508. name: "Normal",
  24509. height: math.unit(4 + 10 / 12, "feet"),
  24510. default: true
  24511. },
  24512. {
  24513. name: "Macro",
  24514. height: math.unit(100, "feet")
  24515. },
  24516. {
  24517. name: "Megamacto",
  24518. height: math.unit(50, "miles")
  24519. },
  24520. ]
  24521. ))
  24522. characterMakers.push(() => makeCharacter(
  24523. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24524. {
  24525. side: {
  24526. height: math.unit(30, "feet"),
  24527. weight: math.unit(35000, "kg"),
  24528. name: "Side",
  24529. image: {
  24530. source: "./media/characters/alydar/side.svg",
  24531. extra: 234 / 222,
  24532. bottom: 6.5 / 241
  24533. }
  24534. },
  24535. front: {
  24536. height: math.unit(30, "feet"),
  24537. weight: math.unit(35000, "kg"),
  24538. name: "Front",
  24539. image: {
  24540. source: "./media/characters/alydar/front.svg",
  24541. extra: 223.37 / 210.2,
  24542. bottom: 22.3 / 246.76
  24543. }
  24544. },
  24545. top: {
  24546. height: math.unit(64.54, "feet"),
  24547. weight: math.unit(35000, "kg"),
  24548. name: "Top",
  24549. image: {
  24550. source: "./media/characters/alydar/top.svg"
  24551. }
  24552. },
  24553. anthro: {
  24554. height: math.unit(30, "feet"),
  24555. weight: math.unit(9000, "kg"),
  24556. name: "Anthro",
  24557. image: {
  24558. source: "./media/characters/alydar/anthro.svg",
  24559. extra: 432 / 421,
  24560. bottom: 7.18 / 440
  24561. }
  24562. },
  24563. maw: {
  24564. height: math.unit(11.693, "feet"),
  24565. name: "Maw",
  24566. image: {
  24567. source: "./media/characters/alydar/maw.svg"
  24568. }
  24569. },
  24570. head: {
  24571. height: math.unit(11.693, "feet"),
  24572. name: "Head",
  24573. image: {
  24574. source: "./media/characters/alydar/head.svg"
  24575. }
  24576. },
  24577. headAlt: {
  24578. height: math.unit(12.861, "feet"),
  24579. name: "Head (Alt)",
  24580. image: {
  24581. source: "./media/characters/alydar/head-alt.svg"
  24582. }
  24583. },
  24584. wing: {
  24585. height: math.unit(20.712, "feet"),
  24586. name: "Wing",
  24587. image: {
  24588. source: "./media/characters/alydar/wing.svg"
  24589. }
  24590. },
  24591. wingFeather: {
  24592. height: math.unit(9.662, "feet"),
  24593. name: "Wing Feather",
  24594. image: {
  24595. source: "./media/characters/alydar/wing-feather.svg"
  24596. }
  24597. },
  24598. countourFeather: {
  24599. height: math.unit(4.154, "feet"),
  24600. name: "Contour Feather",
  24601. image: {
  24602. source: "./media/characters/alydar/contour-feather.svg"
  24603. }
  24604. },
  24605. },
  24606. [
  24607. {
  24608. name: "Diplomatic",
  24609. height: math.unit(13, "feet"),
  24610. default: true
  24611. },
  24612. {
  24613. name: "Small",
  24614. height: math.unit(30, "feet")
  24615. },
  24616. {
  24617. name: "Normal",
  24618. height: math.unit(95, "feet"),
  24619. default: true
  24620. },
  24621. {
  24622. name: "Large",
  24623. height: math.unit(285, "feet")
  24624. },
  24625. {
  24626. name: "Incomprehensible",
  24627. height: math.unit(450, "megameters")
  24628. },
  24629. ]
  24630. ))
  24631. characterMakers.push(() => makeCharacter(
  24632. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24633. {
  24634. side: {
  24635. height: math.unit(11, "feet"),
  24636. weight: math.unit(1750, "kg"),
  24637. name: "Side",
  24638. image: {
  24639. source: "./media/characters/selicia/side.svg",
  24640. extra: 440 / 396,
  24641. bottom: 24.8 / 465.979
  24642. }
  24643. },
  24644. maw: {
  24645. height: math.unit(4.665, "feet"),
  24646. name: "Maw",
  24647. image: {
  24648. source: "./media/characters/selicia/maw.svg"
  24649. }
  24650. },
  24651. },
  24652. [
  24653. {
  24654. name: "Normal",
  24655. height: math.unit(11, "feet"),
  24656. default: true
  24657. },
  24658. ]
  24659. ))
  24660. characterMakers.push(() => makeCharacter(
  24661. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24662. {
  24663. side: {
  24664. height: math.unit(2 + 6 / 12, "feet"),
  24665. weight: math.unit(30, "lb"),
  24666. name: "Side",
  24667. image: {
  24668. source: "./media/characters/layla/side.svg",
  24669. extra: 244 / 188,
  24670. bottom: 18.2 / 262.1
  24671. }
  24672. },
  24673. back: {
  24674. height: math.unit(2 + 6 / 12, "feet"),
  24675. weight: math.unit(30, "lb"),
  24676. name: "Back",
  24677. image: {
  24678. source: "./media/characters/layla/back.svg",
  24679. extra: 308 / 241.5,
  24680. bottom: 8.9 / 316.8
  24681. }
  24682. },
  24683. cumming: {
  24684. height: math.unit(2 + 6 / 12, "feet"),
  24685. weight: math.unit(30, "lb"),
  24686. name: "Cumming",
  24687. image: {
  24688. source: "./media/characters/layla/cumming.svg",
  24689. extra: 342 / 279,
  24690. bottom: 595 / 938
  24691. }
  24692. },
  24693. dickFlaccid: {
  24694. height: math.unit(2.595, "feet"),
  24695. name: "Flaccid Genitals",
  24696. image: {
  24697. source: "./media/characters/layla/dick-flaccid.svg"
  24698. }
  24699. },
  24700. dickErect: {
  24701. height: math.unit(2.359, "feet"),
  24702. name: "Erect Genitals",
  24703. image: {
  24704. source: "./media/characters/layla/dick-erect.svg"
  24705. }
  24706. },
  24707. dragon: {
  24708. height: math.unit(40, "feet"),
  24709. name: "Dragon",
  24710. image: {
  24711. source: "./media/characters/layla/dragon.svg",
  24712. extra: 610/535,
  24713. bottom: 367/977
  24714. }
  24715. },
  24716. taur: {
  24717. height: math.unit(30, "feet"),
  24718. name: "Taur",
  24719. image: {
  24720. source: "./media/characters/layla/taur.svg",
  24721. extra: 1268/1199,
  24722. bottom: 112/1380
  24723. }
  24724. },
  24725. },
  24726. [
  24727. {
  24728. name: "Micro",
  24729. height: math.unit(1, "inch")
  24730. },
  24731. {
  24732. name: "Small",
  24733. height: math.unit(1, "foot")
  24734. },
  24735. {
  24736. name: "Normal",
  24737. height: math.unit(2 + 6 / 12, "feet"),
  24738. default: true
  24739. },
  24740. {
  24741. name: "Macro",
  24742. height: math.unit(200, "feet")
  24743. },
  24744. {
  24745. name: "Megamacro",
  24746. height: math.unit(1000, "miles")
  24747. },
  24748. {
  24749. name: "Planetary",
  24750. height: math.unit(8000, "miles")
  24751. },
  24752. {
  24753. name: "True Layla",
  24754. height: math.unit(200000 * 7, "multiverses")
  24755. },
  24756. ]
  24757. ))
  24758. characterMakers.push(() => makeCharacter(
  24759. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24760. {
  24761. back: {
  24762. height: math.unit(10.5, "feet"),
  24763. weight: math.unit(800, "lb"),
  24764. name: "Back",
  24765. image: {
  24766. source: "./media/characters/knox/back.svg",
  24767. extra: 1486 / 1089,
  24768. bottom: 107 / 1601.4
  24769. }
  24770. },
  24771. side: {
  24772. height: math.unit(10.5, "feet"),
  24773. weight: math.unit(800, "lb"),
  24774. name: "Side",
  24775. image: {
  24776. source: "./media/characters/knox/side.svg",
  24777. extra: 244 / 218,
  24778. bottom: 14 / 260
  24779. }
  24780. },
  24781. },
  24782. [
  24783. {
  24784. name: "Compact",
  24785. height: math.unit(10.5, "feet"),
  24786. default: true
  24787. },
  24788. {
  24789. name: "Dynamax",
  24790. height: math.unit(210, "feet")
  24791. },
  24792. {
  24793. name: "Full Macro",
  24794. height: math.unit(850, "feet")
  24795. },
  24796. ]
  24797. ))
  24798. characterMakers.push(() => makeCharacter(
  24799. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24800. {
  24801. front: {
  24802. height: math.unit(28, "feet"),
  24803. weight: math.unit(10500, "lb"),
  24804. name: "Front",
  24805. image: {
  24806. source: "./media/characters/kayda/front.svg",
  24807. extra: 1536 / 1428,
  24808. bottom: 68.7 / 1603
  24809. }
  24810. },
  24811. back: {
  24812. height: math.unit(28, "feet"),
  24813. weight: math.unit(10500, "lb"),
  24814. name: "Back",
  24815. image: {
  24816. source: "./media/characters/kayda/back.svg",
  24817. extra: 1557 / 1464,
  24818. bottom: 39.5 / 1597.49
  24819. }
  24820. },
  24821. dick: {
  24822. height: math.unit(3.858, "feet"),
  24823. name: "Dick",
  24824. image: {
  24825. source: "./media/characters/kayda/dick.svg"
  24826. }
  24827. },
  24828. },
  24829. [
  24830. {
  24831. name: "Macro",
  24832. height: math.unit(28, "feet"),
  24833. default: true
  24834. },
  24835. ]
  24836. ))
  24837. characterMakers.push(() => makeCharacter(
  24838. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24839. {
  24840. front: {
  24841. height: math.unit(10 + 11 / 12, "feet"),
  24842. weight: math.unit(1400, "lb"),
  24843. name: "Front",
  24844. image: {
  24845. source: "./media/characters/brian/front.svg",
  24846. extra: 737 / 692,
  24847. bottom: 55.4 / 785
  24848. }
  24849. },
  24850. },
  24851. [
  24852. {
  24853. name: "Normal",
  24854. height: math.unit(10 + 11 / 12, "feet"),
  24855. default: true
  24856. },
  24857. ]
  24858. ))
  24859. characterMakers.push(() => makeCharacter(
  24860. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24861. {
  24862. front: {
  24863. height: math.unit(5 + 8 / 12, "feet"),
  24864. weight: math.unit(140, "lb"),
  24865. name: "Front",
  24866. image: {
  24867. source: "./media/characters/khemri/front.svg",
  24868. extra: 4780 / 4059,
  24869. bottom: 80.1 / 4859.25
  24870. }
  24871. },
  24872. },
  24873. [
  24874. {
  24875. name: "Micro",
  24876. height: math.unit(6, "inches")
  24877. },
  24878. {
  24879. name: "Normal",
  24880. height: math.unit(5 + 8 / 12, "feet"),
  24881. default: true
  24882. },
  24883. ]
  24884. ))
  24885. characterMakers.push(() => makeCharacter(
  24886. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24887. {
  24888. front: {
  24889. height: math.unit(13, "feet"),
  24890. weight: math.unit(1700, "lb"),
  24891. name: "Front",
  24892. image: {
  24893. source: "./media/characters/felix-braveheart/front.svg",
  24894. extra: 1222 / 1157,
  24895. bottom: 53.2 / 1280
  24896. }
  24897. },
  24898. back: {
  24899. height: math.unit(13, "feet"),
  24900. weight: math.unit(1700, "lb"),
  24901. name: "Back",
  24902. image: {
  24903. source: "./media/characters/felix-braveheart/back.svg",
  24904. extra: 1277 / 1203,
  24905. bottom: 50.2 / 1327
  24906. }
  24907. },
  24908. feral: {
  24909. height: math.unit(6, "feet"),
  24910. weight: math.unit(400, "lb"),
  24911. name: "Feral",
  24912. image: {
  24913. source: "./media/characters/felix-braveheart/feral.svg",
  24914. extra: 682 / 625,
  24915. bottom: 6.9 / 688
  24916. }
  24917. },
  24918. },
  24919. [
  24920. {
  24921. name: "Normal",
  24922. height: math.unit(13, "feet"),
  24923. default: true
  24924. },
  24925. ]
  24926. ))
  24927. characterMakers.push(() => makeCharacter(
  24928. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24929. {
  24930. side: {
  24931. height: math.unit(5 + 11 / 12, "feet"),
  24932. weight: math.unit(1400, "lb"),
  24933. name: "Side",
  24934. image: {
  24935. source: "./media/characters/shadow-blade/side.svg",
  24936. extra: 1726 / 1267,
  24937. bottom: 58.4 / 1785
  24938. }
  24939. },
  24940. },
  24941. [
  24942. {
  24943. name: "Normal",
  24944. height: math.unit(5 + 11 / 12, "feet"),
  24945. default: true
  24946. },
  24947. ]
  24948. ))
  24949. characterMakers.push(() => makeCharacter(
  24950. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24951. {
  24952. front: {
  24953. height: math.unit(1 + 6 / 12, "feet"),
  24954. weight: math.unit(25, "lb"),
  24955. name: "Front",
  24956. image: {
  24957. source: "./media/characters/karla-halldor/front.svg",
  24958. extra: 1459 / 1383,
  24959. bottom: 12 / 1472
  24960. }
  24961. },
  24962. },
  24963. [
  24964. {
  24965. name: "Normal",
  24966. height: math.unit(1 + 6 / 12, "feet"),
  24967. default: true
  24968. },
  24969. ]
  24970. ))
  24971. characterMakers.push(() => makeCharacter(
  24972. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24973. {
  24974. front: {
  24975. height: math.unit(6 + 2 / 12, "feet"),
  24976. weight: math.unit(160, "lb"),
  24977. name: "Front",
  24978. image: {
  24979. source: "./media/characters/ariam/front.svg",
  24980. extra: 1073/976,
  24981. bottom: 52/1125
  24982. }
  24983. },
  24984. back: {
  24985. height: math.unit(6 + 2/12, "feet"),
  24986. weight: math.unit(160, "lb"),
  24987. name: "Back",
  24988. image: {
  24989. source: "./media/characters/ariam/back.svg",
  24990. extra: 1103/1023,
  24991. bottom: 9/1112
  24992. }
  24993. },
  24994. dressed: {
  24995. height: math.unit(6 + 2/12, "feet"),
  24996. weight: math.unit(160, "lb"),
  24997. name: "Dressed",
  24998. image: {
  24999. source: "./media/characters/ariam/dressed.svg",
  25000. extra: 1099/1009,
  25001. bottom: 25/1124
  25002. }
  25003. },
  25004. squatting: {
  25005. height: math.unit(4.1, "feet"),
  25006. weight: math.unit(160, "lb"),
  25007. name: "Squatting",
  25008. image: {
  25009. source: "./media/characters/ariam/squatting.svg",
  25010. extra: 2617 / 2112,
  25011. bottom: 61.2 / 2681,
  25012. }
  25013. },
  25014. },
  25015. [
  25016. {
  25017. name: "Normal",
  25018. height: math.unit(6 + 2 / 12, "feet"),
  25019. default: true
  25020. },
  25021. {
  25022. name: "Normal+",
  25023. height: math.unit(4, "meters")
  25024. },
  25025. {
  25026. name: "Macro",
  25027. height: math.unit(50, "meters")
  25028. },
  25029. {
  25030. name: "Macro+",
  25031. height: math.unit(100, "meters")
  25032. },
  25033. {
  25034. name: "Megamacro",
  25035. height: math.unit(20, "km")
  25036. },
  25037. {
  25038. name: "Caretaker",
  25039. height: math.unit(444, "megameters")
  25040. },
  25041. ]
  25042. ))
  25043. characterMakers.push(() => makeCharacter(
  25044. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25045. {
  25046. front: {
  25047. height: math.unit(1.67, "meters"),
  25048. weight: math.unit(140, "lb"),
  25049. name: "Front",
  25050. image: {
  25051. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25052. extra: 438 / 410,
  25053. bottom: 0.75 / 439
  25054. }
  25055. },
  25056. },
  25057. [
  25058. {
  25059. name: "Shrunken",
  25060. height: math.unit(7.6, "cm")
  25061. },
  25062. {
  25063. name: "Human Scale",
  25064. height: math.unit(1.67, "meters")
  25065. },
  25066. {
  25067. name: "Wolxi Scale",
  25068. height: math.unit(36.7, "meters"),
  25069. default: true
  25070. },
  25071. ]
  25072. ))
  25073. characterMakers.push(() => makeCharacter(
  25074. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25075. {
  25076. front: {
  25077. height: math.unit(1.73, "meters"),
  25078. weight: math.unit(240, "lb"),
  25079. name: "Front",
  25080. image: {
  25081. source: "./media/characters/izue-two-mothers/front.svg",
  25082. extra: 469 / 437,
  25083. bottom: 1.24 / 470.6
  25084. }
  25085. },
  25086. },
  25087. [
  25088. {
  25089. name: "Shrunken",
  25090. height: math.unit(7.86, "cm")
  25091. },
  25092. {
  25093. name: "Human Scale",
  25094. height: math.unit(1.73, "meters")
  25095. },
  25096. {
  25097. name: "Wolxi Scale",
  25098. height: math.unit(38, "meters"),
  25099. default: true
  25100. },
  25101. ]
  25102. ))
  25103. characterMakers.push(() => makeCharacter(
  25104. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25105. {
  25106. front: {
  25107. height: math.unit(1.55, "meters"),
  25108. weight: math.unit(120, "lb"),
  25109. name: "Front",
  25110. image: {
  25111. source: "./media/characters/teeku-love-shack/front.svg",
  25112. extra: 387 / 362,
  25113. bottom: 1.51 / 388
  25114. }
  25115. },
  25116. },
  25117. [
  25118. {
  25119. name: "Shrunken",
  25120. height: math.unit(7, "cm")
  25121. },
  25122. {
  25123. name: "Human Scale",
  25124. height: math.unit(1.55, "meters")
  25125. },
  25126. {
  25127. name: "Wolxi Scale",
  25128. height: math.unit(34.1, "meters"),
  25129. default: true
  25130. },
  25131. ]
  25132. ))
  25133. characterMakers.push(() => makeCharacter(
  25134. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25135. {
  25136. front: {
  25137. height: math.unit(1.83, "meters"),
  25138. weight: math.unit(135, "lb"),
  25139. name: "Front",
  25140. image: {
  25141. source: "./media/characters/dejma-the-red/front.svg",
  25142. extra: 480 / 458,
  25143. bottom: 1.8 / 482
  25144. }
  25145. },
  25146. },
  25147. [
  25148. {
  25149. name: "Shrunken",
  25150. height: math.unit(8.3, "cm")
  25151. },
  25152. {
  25153. name: "Human Scale",
  25154. height: math.unit(1.83, "meters")
  25155. },
  25156. {
  25157. name: "Wolxi Scale",
  25158. height: math.unit(40, "meters"),
  25159. default: true
  25160. },
  25161. ]
  25162. ))
  25163. characterMakers.push(() => makeCharacter(
  25164. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25165. {
  25166. front: {
  25167. height: math.unit(1.78, "meters"),
  25168. weight: math.unit(65, "kg"),
  25169. name: "Front",
  25170. image: {
  25171. source: "./media/characters/aki/front.svg",
  25172. extra: 452 / 415
  25173. }
  25174. },
  25175. frontNsfw: {
  25176. height: math.unit(1.78, "meters"),
  25177. weight: math.unit(65, "kg"),
  25178. name: "Front (NSFW)",
  25179. image: {
  25180. source: "./media/characters/aki/front-nsfw.svg",
  25181. extra: 452 / 415
  25182. }
  25183. },
  25184. back: {
  25185. height: math.unit(1.78, "meters"),
  25186. weight: math.unit(65, "kg"),
  25187. name: "Back",
  25188. image: {
  25189. source: "./media/characters/aki/back.svg",
  25190. extra: 452 / 415
  25191. }
  25192. },
  25193. rump: {
  25194. height: math.unit(2.05, "feet"),
  25195. name: "Rump",
  25196. image: {
  25197. source: "./media/characters/aki/rump.svg"
  25198. }
  25199. },
  25200. dick: {
  25201. height: math.unit(0.95, "feet"),
  25202. name: "Dick",
  25203. image: {
  25204. source: "./media/characters/aki/dick.svg"
  25205. }
  25206. },
  25207. },
  25208. [
  25209. {
  25210. name: "Micro",
  25211. height: math.unit(15, "cm")
  25212. },
  25213. {
  25214. name: "Normal",
  25215. height: math.unit(178, "cm"),
  25216. default: true
  25217. },
  25218. {
  25219. name: "Macro",
  25220. height: math.unit(214, "m")
  25221. },
  25222. {
  25223. name: "Macro+",
  25224. height: math.unit(534, "m")
  25225. },
  25226. ]
  25227. ))
  25228. characterMakers.push(() => makeCharacter(
  25229. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25230. {
  25231. front: {
  25232. height: math.unit(5 + 5 / 12, "feet"),
  25233. weight: math.unit(120, "lb"),
  25234. name: "Front",
  25235. image: {
  25236. source: "./media/characters/ari/front.svg",
  25237. extra: 1550/1471,
  25238. bottom: 39/1589
  25239. }
  25240. },
  25241. },
  25242. [
  25243. {
  25244. name: "Normal",
  25245. height: math.unit(5 + 5 / 12, "feet")
  25246. },
  25247. {
  25248. name: "Macro",
  25249. height: math.unit(100, "feet"),
  25250. default: true
  25251. },
  25252. {
  25253. name: "Megamacro",
  25254. height: math.unit(100, "miles")
  25255. },
  25256. {
  25257. name: "Gigamacro",
  25258. height: math.unit(80000, "miles")
  25259. },
  25260. ]
  25261. ))
  25262. characterMakers.push(() => makeCharacter(
  25263. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25264. {
  25265. side: {
  25266. height: math.unit(9, "feet"),
  25267. weight: math.unit(400, "kg"),
  25268. name: "Side",
  25269. image: {
  25270. source: "./media/characters/bolt/side.svg",
  25271. extra: 1126 / 896,
  25272. bottom: 60 / 1187.3,
  25273. }
  25274. },
  25275. },
  25276. [
  25277. {
  25278. name: "Micro",
  25279. height: math.unit(5, "inches")
  25280. },
  25281. {
  25282. name: "Normal",
  25283. height: math.unit(9, "feet"),
  25284. default: true
  25285. },
  25286. {
  25287. name: "Macro",
  25288. height: math.unit(700, "feet")
  25289. },
  25290. {
  25291. name: "Max Size",
  25292. height: math.unit(1.52e22, "yottameters")
  25293. },
  25294. ]
  25295. ))
  25296. characterMakers.push(() => makeCharacter(
  25297. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25298. {
  25299. front: {
  25300. height: math.unit(4.3, "meters"),
  25301. weight: math.unit(3, "tons"),
  25302. name: "Front",
  25303. image: {
  25304. source: "./media/characters/draekon-sylviar/front.svg",
  25305. extra: 2072/1512,
  25306. bottom: 74/2146
  25307. }
  25308. },
  25309. back: {
  25310. height: math.unit(4.3, "meters"),
  25311. weight: math.unit(3, "tons"),
  25312. name: "Back",
  25313. image: {
  25314. source: "./media/characters/draekon-sylviar/back.svg",
  25315. extra: 1639/1483,
  25316. bottom: 41/1680
  25317. }
  25318. },
  25319. feral: {
  25320. height: math.unit(1.15, "meters"),
  25321. weight: math.unit(3, "tons"),
  25322. name: "Feral",
  25323. image: {
  25324. source: "./media/characters/draekon-sylviar/feral.svg",
  25325. extra: 1033/395,
  25326. bottom: 130/1163
  25327. }
  25328. },
  25329. maw: {
  25330. height: math.unit(1.3, "meters"),
  25331. name: "Maw",
  25332. image: {
  25333. source: "./media/characters/draekon-sylviar/maw.svg"
  25334. }
  25335. },
  25336. mawSeparated: {
  25337. height: math.unit(1.53, "meters"),
  25338. name: "Separated Maw",
  25339. image: {
  25340. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25341. }
  25342. },
  25343. tail: {
  25344. height: math.unit(1.15, "meters"),
  25345. name: "Tail",
  25346. image: {
  25347. source: "./media/characters/draekon-sylviar/tail.svg"
  25348. }
  25349. },
  25350. tailDick: {
  25351. height: math.unit(1.15, "meters"),
  25352. name: "Tail (Dick)",
  25353. image: {
  25354. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25355. }
  25356. },
  25357. tailDickSeparated: {
  25358. height: math.unit(1.19, "meters"),
  25359. name: "Tail (Separated Dick)",
  25360. image: {
  25361. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25362. }
  25363. },
  25364. slit: {
  25365. height: math.unit(1, "meters"),
  25366. name: "Slit",
  25367. image: {
  25368. source: "./media/characters/draekon-sylviar/slit.svg"
  25369. }
  25370. },
  25371. dick: {
  25372. height: math.unit(1.15, "meters"),
  25373. name: "Dick",
  25374. image: {
  25375. source: "./media/characters/draekon-sylviar/dick.svg"
  25376. }
  25377. },
  25378. dickSeparated: {
  25379. height: math.unit(1.1, "meters"),
  25380. name: "Separated Dick",
  25381. image: {
  25382. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25383. }
  25384. },
  25385. sheath: {
  25386. height: math.unit(1.15, "meters"),
  25387. name: "Sheath",
  25388. image: {
  25389. source: "./media/characters/draekon-sylviar/sheath.svg"
  25390. }
  25391. },
  25392. },
  25393. [
  25394. {
  25395. name: "Small",
  25396. height: math.unit(4.53 / 2, "meters"),
  25397. default: true
  25398. },
  25399. {
  25400. name: "Normal",
  25401. height: math.unit(4.53, "meters"),
  25402. default: true
  25403. },
  25404. {
  25405. name: "Large",
  25406. height: math.unit(4.53 * 2, "meters"),
  25407. },
  25408. ]
  25409. ))
  25410. characterMakers.push(() => makeCharacter(
  25411. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25412. {
  25413. front: {
  25414. height: math.unit(6 + 2 / 12, "feet"),
  25415. weight: math.unit(180, "lb"),
  25416. name: "Front",
  25417. image: {
  25418. source: "./media/characters/brawler/front.svg",
  25419. extra: 3301 / 3027,
  25420. bottom: 138 / 3439
  25421. }
  25422. },
  25423. },
  25424. [
  25425. {
  25426. name: "Normal",
  25427. height: math.unit(6 + 2 / 12, "feet"),
  25428. default: true
  25429. },
  25430. ]
  25431. ))
  25432. characterMakers.push(() => makeCharacter(
  25433. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25434. {
  25435. front: {
  25436. height: math.unit(11, "feet"),
  25437. weight: math.unit(1000, "lb"),
  25438. name: "Front",
  25439. image: {
  25440. source: "./media/characters/alex/front.svg",
  25441. bottom: 44.5 / 620
  25442. }
  25443. },
  25444. },
  25445. [
  25446. {
  25447. name: "Micro",
  25448. height: math.unit(5, "inches")
  25449. },
  25450. {
  25451. name: "Normal",
  25452. height: math.unit(11, "feet"),
  25453. default: true
  25454. },
  25455. {
  25456. name: "Macro",
  25457. height: math.unit(9.5e9, "feet")
  25458. },
  25459. {
  25460. name: "Max Size",
  25461. height: math.unit(1.4e283, "yottameters")
  25462. },
  25463. ]
  25464. ))
  25465. characterMakers.push(() => makeCharacter(
  25466. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25467. {
  25468. female: {
  25469. height: math.unit(29.9, "m"),
  25470. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25471. name: "Female",
  25472. image: {
  25473. source: "./media/characters/zenari/female.svg",
  25474. extra: 3281.6 / 3217,
  25475. bottom: 72.2 / 3353
  25476. }
  25477. },
  25478. male: {
  25479. height: math.unit(27.7, "m"),
  25480. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25481. name: "Male",
  25482. image: {
  25483. source: "./media/characters/zenari/male.svg",
  25484. extra: 3008 / 2991,
  25485. bottom: 54.6 / 3069
  25486. }
  25487. },
  25488. },
  25489. [
  25490. {
  25491. name: "Macro",
  25492. height: math.unit(29.7, "meters"),
  25493. default: true
  25494. },
  25495. ]
  25496. ))
  25497. characterMakers.push(() => makeCharacter(
  25498. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25499. {
  25500. female: {
  25501. height: math.unit(23.8, "m"),
  25502. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25503. name: "Female",
  25504. image: {
  25505. source: "./media/characters/mactarian/female.svg",
  25506. extra: 2662 / 2569,
  25507. bottom: 73 / 2736
  25508. }
  25509. },
  25510. male: {
  25511. height: math.unit(23.8, "m"),
  25512. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25513. name: "Male",
  25514. image: {
  25515. source: "./media/characters/mactarian/male.svg",
  25516. extra: 2673 / 2600,
  25517. bottom: 76 / 2750
  25518. }
  25519. },
  25520. },
  25521. [
  25522. {
  25523. name: "Macro",
  25524. height: math.unit(23.8, "meters"),
  25525. default: true
  25526. },
  25527. ]
  25528. ))
  25529. characterMakers.push(() => makeCharacter(
  25530. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25531. {
  25532. female: {
  25533. height: math.unit(19.3, "m"),
  25534. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25535. name: "Female",
  25536. image: {
  25537. source: "./media/characters/umok/female.svg",
  25538. extra: 2186 / 2078,
  25539. bottom: 87 / 2277
  25540. }
  25541. },
  25542. male: {
  25543. height: math.unit(19.5, "m"),
  25544. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25545. name: "Male",
  25546. image: {
  25547. source: "./media/characters/umok/male.svg",
  25548. extra: 2233 / 2140,
  25549. bottom: 24.4 / 2258
  25550. }
  25551. },
  25552. },
  25553. [
  25554. {
  25555. name: "Macro",
  25556. height: math.unit(19.3, "meters"),
  25557. default: true
  25558. },
  25559. ]
  25560. ))
  25561. characterMakers.push(() => makeCharacter(
  25562. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25563. {
  25564. female: {
  25565. height: math.unit(26.15, "m"),
  25566. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25567. name: "Female",
  25568. image: {
  25569. source: "./media/characters/joraxian/female.svg",
  25570. extra: 2912 / 2824,
  25571. bottom: 36 / 2956
  25572. }
  25573. },
  25574. male: {
  25575. height: math.unit(25.4, "m"),
  25576. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25577. name: "Male",
  25578. image: {
  25579. source: "./media/characters/joraxian/male.svg",
  25580. extra: 2877 / 2721,
  25581. bottom: 82 / 2967
  25582. }
  25583. },
  25584. },
  25585. [
  25586. {
  25587. name: "Macro",
  25588. height: math.unit(26.15, "meters"),
  25589. default: true
  25590. },
  25591. ]
  25592. ))
  25593. characterMakers.push(() => makeCharacter(
  25594. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25595. {
  25596. female: {
  25597. height: math.unit(21.6, "m"),
  25598. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25599. name: "Female",
  25600. image: {
  25601. source: "./media/characters/sthara/female.svg",
  25602. extra: 2516 / 2347,
  25603. bottom: 21.5 / 2537
  25604. }
  25605. },
  25606. male: {
  25607. height: math.unit(24, "m"),
  25608. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25609. name: "Male",
  25610. image: {
  25611. source: "./media/characters/sthara/male.svg",
  25612. extra: 2732 / 2607,
  25613. bottom: 23 / 2732
  25614. }
  25615. },
  25616. },
  25617. [
  25618. {
  25619. name: "Macro",
  25620. height: math.unit(21.6, "meters"),
  25621. default: true
  25622. },
  25623. ]
  25624. ))
  25625. characterMakers.push(() => makeCharacter(
  25626. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25627. {
  25628. front: {
  25629. height: math.unit(6 + 4 / 12, "feet"),
  25630. weight: math.unit(175, "lb"),
  25631. name: "Front",
  25632. image: {
  25633. source: "./media/characters/luka-bryzant/front.svg",
  25634. extra: 311 / 289,
  25635. bottom: 4 / 315
  25636. }
  25637. },
  25638. back: {
  25639. height: math.unit(6 + 4 / 12, "feet"),
  25640. weight: math.unit(175, "lb"),
  25641. name: "Back",
  25642. image: {
  25643. source: "./media/characters/luka-bryzant/back.svg",
  25644. extra: 311 / 289,
  25645. bottom: 3.8 / 313.7
  25646. }
  25647. },
  25648. },
  25649. [
  25650. {
  25651. name: "Micro",
  25652. height: math.unit(10, "inches")
  25653. },
  25654. {
  25655. name: "Normal",
  25656. height: math.unit(6 + 4 / 12, "feet"),
  25657. default: true
  25658. },
  25659. {
  25660. name: "Large",
  25661. height: math.unit(12, "feet")
  25662. },
  25663. ]
  25664. ))
  25665. characterMakers.push(() => makeCharacter(
  25666. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25667. {
  25668. front: {
  25669. height: math.unit(5 + 7 / 12, "feet"),
  25670. weight: math.unit(185, "lb"),
  25671. name: "Front",
  25672. image: {
  25673. source: "./media/characters/aman-aquila/front.svg",
  25674. extra: 1013 / 976,
  25675. bottom: 45.6 / 1057
  25676. }
  25677. },
  25678. side: {
  25679. height: math.unit(5 + 7 / 12, "feet"),
  25680. weight: math.unit(185, "lb"),
  25681. name: "Side",
  25682. image: {
  25683. source: "./media/characters/aman-aquila/side.svg",
  25684. extra: 1054 / 1011,
  25685. bottom: 15 / 1070
  25686. }
  25687. },
  25688. back: {
  25689. height: math.unit(5 + 7 / 12, "feet"),
  25690. weight: math.unit(185, "lb"),
  25691. name: "Back",
  25692. image: {
  25693. source: "./media/characters/aman-aquila/back.svg",
  25694. extra: 1026 / 970,
  25695. bottom: 12 / 1039
  25696. }
  25697. },
  25698. head: {
  25699. height: math.unit(1.211, "feet"),
  25700. name: "Head",
  25701. image: {
  25702. source: "./media/characters/aman-aquila/head.svg",
  25703. }
  25704. },
  25705. },
  25706. [
  25707. {
  25708. name: "Minimicro",
  25709. height: math.unit(0.057, "inches")
  25710. },
  25711. {
  25712. name: "Micro",
  25713. height: math.unit(7, "inches")
  25714. },
  25715. {
  25716. name: "Mini",
  25717. height: math.unit(3 + 7 / 12, "feet")
  25718. },
  25719. {
  25720. name: "Normal",
  25721. height: math.unit(5 + 7 / 12, "feet"),
  25722. default: true
  25723. },
  25724. {
  25725. name: "Macro",
  25726. height: math.unit(157 + 7 / 12, "feet")
  25727. },
  25728. {
  25729. name: "Megamacro",
  25730. height: math.unit(1557 + 7 / 12, "feet")
  25731. },
  25732. {
  25733. name: "Gigamacro",
  25734. height: math.unit(15557 + 7 / 12, "feet")
  25735. },
  25736. ]
  25737. ))
  25738. characterMakers.push(() => makeCharacter(
  25739. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25740. {
  25741. front: {
  25742. height: math.unit(3 + 2 / 12, "inches"),
  25743. weight: math.unit(0.3, "ounces"),
  25744. name: "Front",
  25745. image: {
  25746. source: "./media/characters/hiphae/front.svg",
  25747. extra: 1931 / 1683,
  25748. bottom: 24 / 1955
  25749. }
  25750. },
  25751. },
  25752. [
  25753. {
  25754. name: "Normal",
  25755. height: math.unit(3 + 1 / 2, "inches"),
  25756. default: true
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25762. {
  25763. front: {
  25764. height: math.unit(5 + 10 / 12, "feet"),
  25765. weight: math.unit(165, "lb"),
  25766. name: "Front",
  25767. image: {
  25768. source: "./media/characters/nicky/front.svg",
  25769. extra: 3144 / 2886,
  25770. bottom: 45.6 / 3192
  25771. }
  25772. },
  25773. back: {
  25774. height: math.unit(5 + 10 / 12, "feet"),
  25775. weight: math.unit(165, "lb"),
  25776. name: "Back",
  25777. image: {
  25778. source: "./media/characters/nicky/back.svg",
  25779. extra: 3055 / 2804,
  25780. bottom: 28.4 / 3087
  25781. }
  25782. },
  25783. frontclothed: {
  25784. height: math.unit(5 + 10 / 12, "feet"),
  25785. weight: math.unit(165, "lb"),
  25786. name: "Front-clothed",
  25787. image: {
  25788. source: "./media/characters/nicky/front-clothed.svg",
  25789. extra: 3184.9 / 2926.9,
  25790. bottom: 86.5 / 3239.9
  25791. }
  25792. },
  25793. foot: {
  25794. height: math.unit(1.16, "feet"),
  25795. name: "Foot",
  25796. image: {
  25797. source: "./media/characters/nicky/foot.svg"
  25798. }
  25799. },
  25800. feet: {
  25801. height: math.unit(1.34, "feet"),
  25802. name: "Feet",
  25803. image: {
  25804. source: "./media/characters/nicky/feet.svg"
  25805. }
  25806. },
  25807. maw: {
  25808. height: math.unit(0.9, "feet"),
  25809. name: "Maw",
  25810. image: {
  25811. source: "./media/characters/nicky/maw.svg"
  25812. }
  25813. },
  25814. },
  25815. [
  25816. {
  25817. name: "Normal",
  25818. height: math.unit(5 + 10 / 12, "feet"),
  25819. default: true
  25820. },
  25821. {
  25822. name: "Macro",
  25823. height: math.unit(60, "feet")
  25824. },
  25825. {
  25826. name: "Megamacro",
  25827. height: math.unit(1, "mile")
  25828. },
  25829. ]
  25830. ))
  25831. characterMakers.push(() => makeCharacter(
  25832. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25833. {
  25834. side: {
  25835. height: math.unit(10, "feet"),
  25836. weight: math.unit(600, "lb"),
  25837. name: "Side",
  25838. image: {
  25839. source: "./media/characters/blair/side.svg",
  25840. bottom: 16.6 / 475,
  25841. extra: 458 / 431
  25842. }
  25843. },
  25844. },
  25845. [
  25846. {
  25847. name: "Micro",
  25848. height: math.unit(8, "inches")
  25849. },
  25850. {
  25851. name: "Normal",
  25852. height: math.unit(10, "feet"),
  25853. default: true
  25854. },
  25855. {
  25856. name: "Macro",
  25857. height: math.unit(180, "feet")
  25858. },
  25859. ]
  25860. ))
  25861. characterMakers.push(() => makeCharacter(
  25862. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25863. {
  25864. front: {
  25865. height: math.unit(5 + 4 / 12, "feet"),
  25866. weight: math.unit(125, "lb"),
  25867. name: "Front",
  25868. image: {
  25869. source: "./media/characters/fisher/front.svg",
  25870. extra: 444 / 390,
  25871. bottom: 2 / 444.8
  25872. }
  25873. },
  25874. },
  25875. [
  25876. {
  25877. name: "Micro",
  25878. height: math.unit(4, "inches")
  25879. },
  25880. {
  25881. name: "Normal",
  25882. height: math.unit(5 + 4 / 12, "feet"),
  25883. default: true
  25884. },
  25885. {
  25886. name: "Macro",
  25887. height: math.unit(100, "feet")
  25888. },
  25889. ]
  25890. ))
  25891. characterMakers.push(() => makeCharacter(
  25892. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25893. {
  25894. front: {
  25895. height: math.unit(6.71, "feet"),
  25896. weight: math.unit(200, "lb"),
  25897. capacity: math.unit(1000000, "people"),
  25898. name: "Front",
  25899. image: {
  25900. source: "./media/characters/gliss/front.svg",
  25901. extra: 2347 / 2231,
  25902. bottom: 113 / 2462
  25903. }
  25904. },
  25905. hammerspaceSize: {
  25906. height: math.unit(6.71 * 717, "feet"),
  25907. weight: math.unit(200, "lb"),
  25908. capacity: math.unit(1000000, "people"),
  25909. name: "Hammerspace Size",
  25910. image: {
  25911. source: "./media/characters/gliss/front.svg",
  25912. extra: 2347 / 2231,
  25913. bottom: 113 / 2462
  25914. }
  25915. },
  25916. },
  25917. [
  25918. {
  25919. name: "Normal",
  25920. height: math.unit(6.71, "feet"),
  25921. default: true
  25922. },
  25923. ]
  25924. ))
  25925. characterMakers.push(() => makeCharacter(
  25926. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25927. {
  25928. side: {
  25929. height: math.unit(1.44, "m"),
  25930. weight: math.unit(80, "kg"),
  25931. name: "Side",
  25932. image: {
  25933. source: "./media/characters/dune-anderson/side.svg",
  25934. bottom: 49 / 1426
  25935. }
  25936. },
  25937. },
  25938. [
  25939. {
  25940. name: "Wolf-sized",
  25941. height: math.unit(1.44, "meters")
  25942. },
  25943. {
  25944. name: "Normal",
  25945. height: math.unit(5.05, "meters"),
  25946. default: true
  25947. },
  25948. {
  25949. name: "Big",
  25950. height: math.unit(14.4, "meters")
  25951. },
  25952. {
  25953. name: "Huge",
  25954. height: math.unit(144, "meters")
  25955. },
  25956. ]
  25957. ))
  25958. characterMakers.push(() => makeCharacter(
  25959. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25960. {
  25961. front: {
  25962. height: math.unit(7, "feet"),
  25963. weight: math.unit(425, "lb"),
  25964. name: "Front",
  25965. image: {
  25966. source: "./media/characters/hind/front.svg",
  25967. extra: 2091 / 1860,
  25968. bottom: 129 / 2220
  25969. }
  25970. },
  25971. back: {
  25972. height: math.unit(7, "feet"),
  25973. weight: math.unit(425, "lb"),
  25974. name: "Back",
  25975. image: {
  25976. source: "./media/characters/hind/back.svg",
  25977. extra: 2091 / 1860,
  25978. bottom: 24.6 / 2309
  25979. }
  25980. },
  25981. tail: {
  25982. height: math.unit(2.8, "feet"),
  25983. name: "Tail",
  25984. image: {
  25985. source: "./media/characters/hind/tail.svg"
  25986. }
  25987. },
  25988. head: {
  25989. height: math.unit(2.55, "feet"),
  25990. name: "Head",
  25991. image: {
  25992. source: "./media/characters/hind/head.svg"
  25993. }
  25994. },
  25995. },
  25996. [
  25997. {
  25998. name: "XS",
  25999. height: math.unit(0.7, "feet")
  26000. },
  26001. {
  26002. name: "Normal",
  26003. height: math.unit(7, "feet"),
  26004. default: true
  26005. },
  26006. {
  26007. name: "XL",
  26008. height: math.unit(70, "feet")
  26009. },
  26010. ]
  26011. ))
  26012. characterMakers.push(() => makeCharacter(
  26013. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26014. {
  26015. front: {
  26016. height: math.unit(2.1, "meters"),
  26017. weight: math.unit(150, "lb"),
  26018. name: "Front",
  26019. image: {
  26020. source: "./media/characters/tharquench-sizestealer/front.svg",
  26021. extra: 1605/1470,
  26022. bottom: 36/1641
  26023. }
  26024. },
  26025. frontAlt: {
  26026. height: math.unit(2.1, "meters"),
  26027. weight: math.unit(150, "lb"),
  26028. name: "Front (Alt)",
  26029. image: {
  26030. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26031. extra: 2318 / 2063,
  26032. bottom: 93.4 / 2410
  26033. }
  26034. },
  26035. },
  26036. [
  26037. {
  26038. name: "Nano",
  26039. height: math.unit(1, "mm")
  26040. },
  26041. {
  26042. name: "Micro",
  26043. height: math.unit(1, "cm")
  26044. },
  26045. {
  26046. name: "Normal",
  26047. height: math.unit(2.1, "meters"),
  26048. default: true
  26049. },
  26050. ]
  26051. ))
  26052. characterMakers.push(() => makeCharacter(
  26053. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26054. {
  26055. front: {
  26056. height: math.unit(7 + 5 / 12, "feet"),
  26057. weight: math.unit(357, "lb"),
  26058. name: "Front",
  26059. image: {
  26060. source: "./media/characters/solex-draconov/front.svg",
  26061. extra: 1993 / 1865,
  26062. bottom: 117 / 2111
  26063. }
  26064. },
  26065. },
  26066. [
  26067. {
  26068. name: "Natural Height",
  26069. height: math.unit(7 + 5 / 12, "feet"),
  26070. default: true
  26071. },
  26072. {
  26073. name: "Macro",
  26074. height: math.unit(350, "feet")
  26075. },
  26076. {
  26077. name: "Macro+",
  26078. height: math.unit(1000, "feet")
  26079. },
  26080. {
  26081. name: "Megamacro",
  26082. height: math.unit(20, "km")
  26083. },
  26084. {
  26085. name: "Megamacro+",
  26086. height: math.unit(1000, "km")
  26087. },
  26088. {
  26089. name: "Gigamacro",
  26090. height: math.unit(2.5, "Gm")
  26091. },
  26092. {
  26093. name: "Teramacro",
  26094. height: math.unit(15, "Tm")
  26095. },
  26096. {
  26097. name: "Galactic",
  26098. height: math.unit(30, "Zm")
  26099. },
  26100. {
  26101. name: "Universal",
  26102. height: math.unit(21000, "Ym")
  26103. },
  26104. {
  26105. name: "Omniversal",
  26106. height: math.unit(9.861e50, "Ym")
  26107. },
  26108. {
  26109. name: "Existential",
  26110. height: math.unit(1e300, "meters")
  26111. },
  26112. ]
  26113. ))
  26114. characterMakers.push(() => makeCharacter(
  26115. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26116. {
  26117. side: {
  26118. height: math.unit(25, "feet"),
  26119. weight: math.unit(90000, "lb"),
  26120. name: "Side",
  26121. image: {
  26122. source: "./media/characters/mandarax/side.svg",
  26123. extra: 614 / 332,
  26124. bottom: 55 / 630
  26125. }
  26126. },
  26127. lounging: {
  26128. height: math.unit(15.4, "feet"),
  26129. weight: math.unit(90000, "lb"),
  26130. name: "Lounging",
  26131. image: {
  26132. source: "./media/characters/mandarax/lounging.svg",
  26133. extra: 817/609,
  26134. bottom: 685/1502
  26135. }
  26136. },
  26137. head: {
  26138. height: math.unit(11.4, "feet"),
  26139. name: "Head",
  26140. image: {
  26141. source: "./media/characters/mandarax/head.svg"
  26142. }
  26143. },
  26144. belly: {
  26145. height: math.unit(33, "feet"),
  26146. name: "Belly",
  26147. capacity: math.unit(500, "people"),
  26148. image: {
  26149. source: "./media/characters/mandarax/belly.svg"
  26150. }
  26151. },
  26152. dick: {
  26153. height: math.unit(8.46, "feet"),
  26154. name: "Dick",
  26155. image: {
  26156. source: "./media/characters/mandarax/dick.svg"
  26157. }
  26158. },
  26159. top: {
  26160. height: math.unit(28, "meters"),
  26161. name: "Top",
  26162. image: {
  26163. source: "./media/characters/mandarax/top.svg"
  26164. }
  26165. },
  26166. },
  26167. [
  26168. {
  26169. name: "Normal",
  26170. height: math.unit(25, "feet"),
  26171. default: true
  26172. },
  26173. ]
  26174. ))
  26175. characterMakers.push(() => makeCharacter(
  26176. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26177. {
  26178. front: {
  26179. height: math.unit(5, "feet"),
  26180. weight: math.unit(90, "lb"),
  26181. name: "Front",
  26182. image: {
  26183. source: "./media/characters/pixil/front.svg",
  26184. extra: 2000 / 1618,
  26185. bottom: 12.3 / 2011
  26186. }
  26187. },
  26188. },
  26189. [
  26190. {
  26191. name: "Normal",
  26192. height: math.unit(5, "feet"),
  26193. default: true
  26194. },
  26195. {
  26196. name: "Megamacro",
  26197. height: math.unit(10, "miles"),
  26198. },
  26199. ]
  26200. ))
  26201. characterMakers.push(() => makeCharacter(
  26202. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26203. {
  26204. front: {
  26205. height: math.unit(7 + 2 / 12, "feet"),
  26206. weight: math.unit(200, "lb"),
  26207. name: "Front",
  26208. image: {
  26209. source: "./media/characters/angel/front.svg",
  26210. extra: 1830 / 1737,
  26211. bottom: 22.6 / 1854,
  26212. }
  26213. },
  26214. },
  26215. [
  26216. {
  26217. name: "Normal",
  26218. height: math.unit(7 + 2 / 12, "feet"),
  26219. default: true
  26220. },
  26221. {
  26222. name: "Macro",
  26223. height: math.unit(1000, "feet")
  26224. },
  26225. {
  26226. name: "Megamacro",
  26227. height: math.unit(2, "miles")
  26228. },
  26229. {
  26230. name: "Gigamacro",
  26231. height: math.unit(20, "earths")
  26232. },
  26233. ]
  26234. ))
  26235. characterMakers.push(() => makeCharacter(
  26236. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26237. {
  26238. front: {
  26239. height: math.unit(5, "feet"),
  26240. weight: math.unit(180, "lb"),
  26241. name: "Front",
  26242. image: {
  26243. source: "./media/characters/mekana/front.svg",
  26244. extra: 1671 / 1605,
  26245. bottom: 3.5 / 1691
  26246. }
  26247. },
  26248. side: {
  26249. height: math.unit(5, "feet"),
  26250. weight: math.unit(180, "lb"),
  26251. name: "Side",
  26252. image: {
  26253. source: "./media/characters/mekana/side.svg",
  26254. extra: 1671 / 1605,
  26255. bottom: 3.5 / 1691
  26256. }
  26257. },
  26258. back: {
  26259. height: math.unit(5, "feet"),
  26260. weight: math.unit(180, "lb"),
  26261. name: "Back",
  26262. image: {
  26263. source: "./media/characters/mekana/back.svg",
  26264. extra: 1671 / 1605,
  26265. bottom: 3.5 / 1691
  26266. }
  26267. },
  26268. },
  26269. [
  26270. {
  26271. name: "Normal",
  26272. height: math.unit(5, "feet"),
  26273. default: true
  26274. },
  26275. ]
  26276. ))
  26277. characterMakers.push(() => makeCharacter(
  26278. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26279. {
  26280. front: {
  26281. height: math.unit(4 + 6 / 12, "feet"),
  26282. weight: math.unit(80, "lb"),
  26283. name: "Front",
  26284. image: {
  26285. source: "./media/characters/pixie/front.svg",
  26286. extra: 1924 / 1825,
  26287. bottom: 22.4 / 1946
  26288. }
  26289. },
  26290. },
  26291. [
  26292. {
  26293. name: "Normal",
  26294. height: math.unit(4 + 6 / 12, "feet"),
  26295. default: true
  26296. },
  26297. {
  26298. name: "Macro",
  26299. height: math.unit(40, "feet")
  26300. },
  26301. ]
  26302. ))
  26303. characterMakers.push(() => makeCharacter(
  26304. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26305. {
  26306. front: {
  26307. height: math.unit(2.1, "meters"),
  26308. weight: math.unit(200, "lb"),
  26309. name: "Front",
  26310. image: {
  26311. source: "./media/characters/the-lascivious/front.svg",
  26312. extra: 1 / 0.893,
  26313. bottom: 3.5 / 573.7
  26314. }
  26315. },
  26316. },
  26317. [
  26318. {
  26319. name: "Human Scale",
  26320. height: math.unit(2.1, "meters")
  26321. },
  26322. {
  26323. name: "Wolxi Scale",
  26324. height: math.unit(46.2, "m"),
  26325. default: true
  26326. },
  26327. {
  26328. name: "Boinker of Buildings",
  26329. height: math.unit(10, "km")
  26330. },
  26331. {
  26332. name: "Shagger of Skyscrapers",
  26333. height: math.unit(40, "km")
  26334. },
  26335. {
  26336. name: "Banger of Boroughs",
  26337. height: math.unit(4000, "km")
  26338. },
  26339. {
  26340. name: "Screwer of States",
  26341. height: math.unit(100000, "km")
  26342. },
  26343. {
  26344. name: "Pounder of Planets",
  26345. height: math.unit(2000000, "km")
  26346. },
  26347. ]
  26348. ))
  26349. characterMakers.push(() => makeCharacter(
  26350. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26351. {
  26352. front: {
  26353. height: math.unit(6, "feet"),
  26354. weight: math.unit(150, "lb"),
  26355. name: "Front",
  26356. image: {
  26357. source: "./media/characters/aj/front.svg",
  26358. extra: 2039 / 1562,
  26359. bottom: 40 / 2079
  26360. }
  26361. },
  26362. },
  26363. [
  26364. {
  26365. name: "Normal",
  26366. height: math.unit(11 + 6 / 12, "feet"),
  26367. default: true
  26368. },
  26369. {
  26370. name: "Megamacro",
  26371. height: math.unit(60, "megameters")
  26372. },
  26373. ]
  26374. ))
  26375. characterMakers.push(() => makeCharacter(
  26376. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26377. {
  26378. side: {
  26379. height: math.unit(31 + 8 / 12, "feet"),
  26380. weight: math.unit(75000, "kg"),
  26381. name: "Side",
  26382. image: {
  26383. source: "./media/characters/koros/side.svg",
  26384. extra: 1442 / 1297,
  26385. bottom: 122.7 / 1562
  26386. }
  26387. },
  26388. dicksKingsCrown: {
  26389. height: math.unit(6, "feet"),
  26390. name: "Dicks (King's Crown)",
  26391. image: {
  26392. source: "./media/characters/koros/dicks-kings-crown.svg"
  26393. }
  26394. },
  26395. dicksTailSet: {
  26396. height: math.unit(3, "feet"),
  26397. name: "Dicks (Tail Set)",
  26398. image: {
  26399. source: "./media/characters/koros/dicks-tail-set.svg"
  26400. }
  26401. },
  26402. dickCumming: {
  26403. height: math.unit(7.98, "feet"),
  26404. name: "Dick (Cumming)",
  26405. image: {
  26406. source: "./media/characters/koros/dick-cumming.svg"
  26407. }
  26408. },
  26409. dicksBack: {
  26410. height: math.unit(5.9, "feet"),
  26411. name: "Dicks (Back)",
  26412. image: {
  26413. source: "./media/characters/koros/dicks-back.svg"
  26414. }
  26415. },
  26416. dicksFront: {
  26417. height: math.unit(3.72, "feet"),
  26418. name: "Dicks (Front)",
  26419. image: {
  26420. source: "./media/characters/koros/dicks-front.svg"
  26421. }
  26422. },
  26423. dicksPeeking: {
  26424. height: math.unit(3.0, "feet"),
  26425. name: "Dicks (Peeking)",
  26426. image: {
  26427. source: "./media/characters/koros/dicks-peeking.svg"
  26428. }
  26429. },
  26430. eye: {
  26431. height: math.unit(1.7, "feet"),
  26432. name: "Eye",
  26433. image: {
  26434. source: "./media/characters/koros/eye.svg"
  26435. }
  26436. },
  26437. headFront: {
  26438. height: math.unit(11.69, "feet"),
  26439. name: "Head (Front)",
  26440. image: {
  26441. source: "./media/characters/koros/head-front.svg"
  26442. }
  26443. },
  26444. headSide: {
  26445. height: math.unit(14, "feet"),
  26446. name: "Head (Side)",
  26447. image: {
  26448. source: "./media/characters/koros/head-side.svg"
  26449. }
  26450. },
  26451. leg: {
  26452. height: math.unit(17, "feet"),
  26453. name: "Leg",
  26454. image: {
  26455. source: "./media/characters/koros/leg.svg"
  26456. }
  26457. },
  26458. mawSide: {
  26459. height: math.unit(12.8, "feet"),
  26460. name: "Maw (Side)",
  26461. image: {
  26462. source: "./media/characters/koros/maw-side.svg"
  26463. }
  26464. },
  26465. mawSpitting: {
  26466. height: math.unit(17, "feet"),
  26467. name: "Maw (Spitting)",
  26468. image: {
  26469. source: "./media/characters/koros/maw-spitting.svg"
  26470. }
  26471. },
  26472. slit: {
  26473. height: math.unit(2.8, "feet"),
  26474. name: "Slit",
  26475. image: {
  26476. source: "./media/characters/koros/slit.svg"
  26477. }
  26478. },
  26479. stomach: {
  26480. height: math.unit(6.8, "feet"),
  26481. capacity: math.unit(20, "people"),
  26482. name: "Stomach",
  26483. image: {
  26484. source: "./media/characters/koros/stomach.svg"
  26485. }
  26486. },
  26487. wingspanBottom: {
  26488. height: math.unit(114, "feet"),
  26489. name: "Wingspan (Bottom)",
  26490. image: {
  26491. source: "./media/characters/koros/wingspan-bottom.svg"
  26492. }
  26493. },
  26494. wingspanTop: {
  26495. height: math.unit(104, "feet"),
  26496. name: "Wingspan (Top)",
  26497. image: {
  26498. source: "./media/characters/koros/wingspan-top.svg"
  26499. }
  26500. },
  26501. },
  26502. [
  26503. {
  26504. name: "Normal",
  26505. height: math.unit(31 + 8 / 12, "feet"),
  26506. default: true
  26507. },
  26508. ]
  26509. ))
  26510. characterMakers.push(() => makeCharacter(
  26511. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26512. {
  26513. front: {
  26514. height: math.unit(18 + 5 / 12, "feet"),
  26515. weight: math.unit(3750, "kg"),
  26516. name: "Front",
  26517. image: {
  26518. source: "./media/characters/vexx/front.svg",
  26519. extra: 426 / 396,
  26520. bottom: 31.5 / 458
  26521. }
  26522. },
  26523. maw: {
  26524. height: math.unit(6, "feet"),
  26525. name: "Maw",
  26526. image: {
  26527. source: "./media/characters/vexx/maw.svg"
  26528. }
  26529. },
  26530. },
  26531. [
  26532. {
  26533. name: "Normal",
  26534. height: math.unit(18 + 5 / 12, "feet"),
  26535. default: true
  26536. },
  26537. ]
  26538. ))
  26539. characterMakers.push(() => makeCharacter(
  26540. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26541. {
  26542. front: {
  26543. height: math.unit(17 + 6 / 12, "feet"),
  26544. weight: math.unit(150, "lb"),
  26545. name: "Front",
  26546. image: {
  26547. source: "./media/characters/baadra/front.svg",
  26548. extra: 1694/1553,
  26549. bottom: 179/1873
  26550. }
  26551. },
  26552. frontAlt: {
  26553. height: math.unit(17 + 6 / 12, "feet"),
  26554. weight: math.unit(150, "lb"),
  26555. name: "Front (Alt)",
  26556. image: {
  26557. source: "./media/characters/baadra/front-alt.svg",
  26558. extra: 3137 / 2890,
  26559. bottom: 168.4 / 3305
  26560. }
  26561. },
  26562. back: {
  26563. height: math.unit(17 + 6 / 12, "feet"),
  26564. weight: math.unit(150, "lb"),
  26565. name: "Back",
  26566. image: {
  26567. source: "./media/characters/baadra/back.svg",
  26568. extra: 3142 / 2890,
  26569. bottom: 220 / 3371
  26570. }
  26571. },
  26572. head: {
  26573. height: math.unit(5.45, "feet"),
  26574. name: "Head",
  26575. image: {
  26576. source: "./media/characters/baadra/head.svg"
  26577. }
  26578. },
  26579. headAngry: {
  26580. height: math.unit(4.95, "feet"),
  26581. name: "Head (Angry)",
  26582. image: {
  26583. source: "./media/characters/baadra/head-angry.svg"
  26584. }
  26585. },
  26586. headOpen: {
  26587. height: math.unit(6, "feet"),
  26588. name: "Head (Open)",
  26589. image: {
  26590. source: "./media/characters/baadra/head-open.svg"
  26591. }
  26592. },
  26593. },
  26594. [
  26595. {
  26596. name: "Normal",
  26597. height: math.unit(17 + 6 / 12, "feet"),
  26598. default: true
  26599. },
  26600. ]
  26601. ))
  26602. characterMakers.push(() => makeCharacter(
  26603. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26604. {
  26605. front: {
  26606. height: math.unit(7 + 3 / 12, "feet"),
  26607. weight: math.unit(180, "lb"),
  26608. name: "Front",
  26609. image: {
  26610. source: "./media/characters/juri/front.svg",
  26611. extra: 1401 / 1237,
  26612. bottom: 18.5 / 1418
  26613. }
  26614. },
  26615. side: {
  26616. height: math.unit(7 + 3 / 12, "feet"),
  26617. weight: math.unit(180, "lb"),
  26618. name: "Side",
  26619. image: {
  26620. source: "./media/characters/juri/side.svg",
  26621. extra: 1424 / 1242,
  26622. bottom: 18.5 / 1447
  26623. }
  26624. },
  26625. sitting: {
  26626. height: math.unit(6, "feet"),
  26627. weight: math.unit(180, "lb"),
  26628. name: "Sitting",
  26629. image: {
  26630. source: "./media/characters/juri/sitting.svg",
  26631. extra: 1270 / 1143,
  26632. bottom: 100 / 1343
  26633. }
  26634. },
  26635. back: {
  26636. height: math.unit(7 + 3 / 12, "feet"),
  26637. weight: math.unit(180, "lb"),
  26638. name: "Back",
  26639. image: {
  26640. source: "./media/characters/juri/back.svg",
  26641. extra: 1377 / 1240,
  26642. bottom: 23.7 / 1405
  26643. }
  26644. },
  26645. maw: {
  26646. height: math.unit(2.8, "feet"),
  26647. name: "Maw",
  26648. image: {
  26649. source: "./media/characters/juri/maw.svg"
  26650. }
  26651. },
  26652. stomach: {
  26653. height: math.unit(0.89, "feet"),
  26654. capacity: math.unit(4, "liters"),
  26655. name: "Stomach",
  26656. image: {
  26657. source: "./media/characters/juri/stomach.svg"
  26658. }
  26659. },
  26660. },
  26661. [
  26662. {
  26663. name: "Normal",
  26664. height: math.unit(7 + 3 / 12, "feet"),
  26665. default: true
  26666. },
  26667. ]
  26668. ))
  26669. characterMakers.push(() => makeCharacter(
  26670. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26671. {
  26672. fox: {
  26673. height: math.unit(5 + 6 / 12, "feet"),
  26674. weight: math.unit(140, "lb"),
  26675. name: "Fox",
  26676. image: {
  26677. source: "./media/characters/maxene-sita/fox.svg",
  26678. extra: 146 / 138,
  26679. bottom: 2.1 / 148.19
  26680. }
  26681. },
  26682. foxLaying: {
  26683. height: math.unit(1.70, "feet"),
  26684. weight: math.unit(140, "lb"),
  26685. name: "Fox (Laying)",
  26686. image: {
  26687. source: "./media/characters/maxene-sita/fox-laying.svg",
  26688. extra: 910 / 572,
  26689. bottom: 71 / 981
  26690. }
  26691. },
  26692. kitsune: {
  26693. height: math.unit(10, "feet"),
  26694. weight: math.unit(800, "lb"),
  26695. name: "Kitsune",
  26696. image: {
  26697. source: "./media/characters/maxene-sita/kitsune.svg",
  26698. extra: 185 / 176,
  26699. bottom: 4.7 / 189.9
  26700. }
  26701. },
  26702. hellhound: {
  26703. height: math.unit(10, "feet"),
  26704. weight: math.unit(700, "lb"),
  26705. name: "Hellhound",
  26706. image: {
  26707. source: "./media/characters/maxene-sita/hellhound.svg",
  26708. extra: 1600 / 1545,
  26709. bottom: 81 / 1681
  26710. }
  26711. },
  26712. },
  26713. [
  26714. {
  26715. name: "Normal",
  26716. height: math.unit(5 + 6 / 12, "feet"),
  26717. default: true
  26718. },
  26719. ]
  26720. ))
  26721. characterMakers.push(() => makeCharacter(
  26722. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26723. {
  26724. front: {
  26725. height: math.unit(3 + 4 / 12, "feet"),
  26726. weight: math.unit(70, "lb"),
  26727. name: "Front",
  26728. image: {
  26729. source: "./media/characters/maia/front.svg",
  26730. extra: 227 / 219.5,
  26731. bottom: 40 / 267
  26732. }
  26733. },
  26734. back: {
  26735. height: math.unit(3 + 4 / 12, "feet"),
  26736. weight: math.unit(70, "lb"),
  26737. name: "Back",
  26738. image: {
  26739. source: "./media/characters/maia/back.svg",
  26740. extra: 237 / 225
  26741. }
  26742. },
  26743. },
  26744. [
  26745. {
  26746. name: "Normal",
  26747. height: math.unit(3 + 4 / 12, "feet"),
  26748. default: true
  26749. },
  26750. ]
  26751. ))
  26752. characterMakers.push(() => makeCharacter(
  26753. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26754. {
  26755. front: {
  26756. height: math.unit(5 + 10 / 12, "feet"),
  26757. weight: math.unit(197, "lb"),
  26758. name: "Front",
  26759. image: {
  26760. source: "./media/characters/jabaro/front.svg",
  26761. extra: 225 / 216,
  26762. bottom: 5.06 / 230
  26763. }
  26764. },
  26765. back: {
  26766. height: math.unit(5 + 10 / 12, "feet"),
  26767. weight: math.unit(197, "lb"),
  26768. name: "Back",
  26769. image: {
  26770. source: "./media/characters/jabaro/back.svg",
  26771. extra: 225 / 219,
  26772. bottom: 1.9 / 227
  26773. }
  26774. },
  26775. },
  26776. [
  26777. {
  26778. name: "Normal",
  26779. height: math.unit(5 + 10 / 12, "feet"),
  26780. default: true
  26781. },
  26782. ]
  26783. ))
  26784. characterMakers.push(() => makeCharacter(
  26785. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26786. {
  26787. front: {
  26788. height: math.unit(5 + 8 / 12, "feet"),
  26789. weight: math.unit(139, "lb"),
  26790. name: "Front",
  26791. image: {
  26792. source: "./media/characters/risa/front.svg",
  26793. extra: 270 / 260,
  26794. bottom: 11.2 / 282
  26795. }
  26796. },
  26797. back: {
  26798. height: math.unit(5 + 8 / 12, "feet"),
  26799. weight: math.unit(139, "lb"),
  26800. name: "Back",
  26801. image: {
  26802. source: "./media/characters/risa/back.svg",
  26803. extra: 264 / 255,
  26804. bottom: 4 / 268
  26805. }
  26806. },
  26807. },
  26808. [
  26809. {
  26810. name: "Normal",
  26811. height: math.unit(5 + 8 / 12, "feet"),
  26812. default: true
  26813. },
  26814. ]
  26815. ))
  26816. characterMakers.push(() => makeCharacter(
  26817. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26818. {
  26819. front: {
  26820. height: math.unit(2 + 11 / 12, "feet"),
  26821. weight: math.unit(30, "lb"),
  26822. name: "Front",
  26823. image: {
  26824. source: "./media/characters/weatley/front.svg",
  26825. bottom: 10.7 / 414,
  26826. extra: 403.5 / 362
  26827. }
  26828. },
  26829. back: {
  26830. height: math.unit(2 + 11 / 12, "feet"),
  26831. weight: math.unit(30, "lb"),
  26832. name: "Back",
  26833. image: {
  26834. source: "./media/characters/weatley/back.svg",
  26835. bottom: 10.7 / 414,
  26836. extra: 403.5 / 362
  26837. }
  26838. },
  26839. },
  26840. [
  26841. {
  26842. name: "Normal",
  26843. height: math.unit(2 + 11 / 12, "feet"),
  26844. default: true
  26845. },
  26846. ]
  26847. ))
  26848. characterMakers.push(() => makeCharacter(
  26849. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26850. {
  26851. front: {
  26852. height: math.unit(5 + 2 / 12, "feet"),
  26853. weight: math.unit(50, "kg"),
  26854. name: "Front",
  26855. image: {
  26856. source: "./media/characters/mercury-crescent/front.svg",
  26857. extra: 1088 / 1033,
  26858. bottom: 18.9 / 1109
  26859. }
  26860. },
  26861. },
  26862. [
  26863. {
  26864. name: "Normal",
  26865. height: math.unit(5 + 2 / 12, "feet"),
  26866. default: true
  26867. },
  26868. ]
  26869. ))
  26870. characterMakers.push(() => makeCharacter(
  26871. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26872. {
  26873. front: {
  26874. height: math.unit(2, "feet"),
  26875. weight: math.unit(15, "kg"),
  26876. name: "Front",
  26877. image: {
  26878. source: "./media/characters/diamond-jones/front.svg",
  26879. extra: 727/723,
  26880. bottom: 46/773
  26881. }
  26882. },
  26883. },
  26884. [
  26885. {
  26886. name: "Normal",
  26887. height: math.unit(2, "feet"),
  26888. default: true
  26889. },
  26890. ]
  26891. ))
  26892. characterMakers.push(() => makeCharacter(
  26893. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26894. {
  26895. front: {
  26896. height: math.unit(3, "feet"),
  26897. weight: math.unit(30, "kg"),
  26898. name: "Front",
  26899. image: {
  26900. source: "./media/characters/sweet-bit/front.svg",
  26901. extra: 675 / 567,
  26902. bottom: 27.7 / 703
  26903. }
  26904. },
  26905. },
  26906. [
  26907. {
  26908. name: "Normal",
  26909. height: math.unit(3, "feet"),
  26910. default: true
  26911. },
  26912. ]
  26913. ))
  26914. characterMakers.push(() => makeCharacter(
  26915. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26916. {
  26917. side: {
  26918. height: math.unit(9.178, "feet"),
  26919. weight: math.unit(500, "lb"),
  26920. name: "Side",
  26921. image: {
  26922. source: "./media/characters/umbrazen/side.svg",
  26923. extra: 1730 / 1473,
  26924. bottom: 34.6 / 1765
  26925. }
  26926. },
  26927. },
  26928. [
  26929. {
  26930. name: "Normal",
  26931. height: math.unit(9.178, "feet"),
  26932. default: true
  26933. },
  26934. ]
  26935. ))
  26936. characterMakers.push(() => makeCharacter(
  26937. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26938. {
  26939. front: {
  26940. height: math.unit(10, "feet"),
  26941. weight: math.unit(750, "lb"),
  26942. name: "Front",
  26943. image: {
  26944. source: "./media/characters/arlist/front.svg",
  26945. extra: 961 / 778,
  26946. bottom: 6.2 / 986
  26947. }
  26948. },
  26949. },
  26950. [
  26951. {
  26952. name: "Normal",
  26953. height: math.unit(10, "feet"),
  26954. default: true
  26955. },
  26956. ]
  26957. ))
  26958. characterMakers.push(() => makeCharacter(
  26959. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26960. {
  26961. front: {
  26962. height: math.unit(5 + 1 / 12, "feet"),
  26963. weight: math.unit(110, "lb"),
  26964. name: "Front",
  26965. image: {
  26966. source: "./media/characters/aradel/front.svg",
  26967. extra: 324 / 303,
  26968. bottom: 3.6 / 329.4
  26969. }
  26970. },
  26971. },
  26972. [
  26973. {
  26974. name: "Normal",
  26975. height: math.unit(5 + 1 / 12, "feet"),
  26976. default: true
  26977. },
  26978. ]
  26979. ))
  26980. characterMakers.push(() => makeCharacter(
  26981. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26982. {
  26983. dressed: {
  26984. height: math.unit(3 + 8 / 12, "feet"),
  26985. weight: math.unit(50, "lb"),
  26986. name: "Dressed",
  26987. image: {
  26988. source: "./media/characters/serryn/dressed.svg",
  26989. extra: 1792 / 1656,
  26990. bottom: 43.5 / 1840
  26991. }
  26992. },
  26993. nude: {
  26994. height: math.unit(3 + 8 / 12, "feet"),
  26995. weight: math.unit(50, "lb"),
  26996. name: "Nude",
  26997. image: {
  26998. source: "./media/characters/serryn/nude.svg",
  26999. extra: 1792 / 1656,
  27000. bottom: 43.5 / 1840
  27001. }
  27002. },
  27003. },
  27004. [
  27005. {
  27006. name: "Normal",
  27007. height: math.unit(3 + 8 / 12, "feet"),
  27008. default: true
  27009. },
  27010. ]
  27011. ))
  27012. characterMakers.push(() => makeCharacter(
  27013. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27014. {
  27015. front: {
  27016. height: math.unit(7 + 10 / 12, "feet"),
  27017. weight: math.unit(255, "lb"),
  27018. name: "Front",
  27019. image: {
  27020. source: "./media/characters/xavier-thyme/front.svg",
  27021. extra: 3733 / 3642,
  27022. bottom: 131 / 3869
  27023. }
  27024. },
  27025. frontRaven: {
  27026. height: math.unit(7 + 10 / 12, "feet"),
  27027. weight: math.unit(255, "lb"),
  27028. name: "Front (Raven)",
  27029. image: {
  27030. source: "./media/characters/xavier-thyme/front-raven.svg",
  27031. extra: 4385 / 3642,
  27032. bottom: 131 / 4517
  27033. }
  27034. },
  27035. },
  27036. [
  27037. {
  27038. name: "Normal",
  27039. height: math.unit(7 + 10 / 12, "feet"),
  27040. default: true
  27041. },
  27042. ]
  27043. ))
  27044. characterMakers.push(() => makeCharacter(
  27045. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27046. {
  27047. front: {
  27048. height: math.unit(1.6, "m"),
  27049. weight: math.unit(50, "kg"),
  27050. name: "Front",
  27051. image: {
  27052. source: "./media/characters/kiki/front.svg",
  27053. extra: 4682 / 3610,
  27054. bottom: 115 / 4777
  27055. }
  27056. },
  27057. },
  27058. [
  27059. {
  27060. name: "Normal",
  27061. height: math.unit(1.6, "meters"),
  27062. default: true
  27063. },
  27064. ]
  27065. ))
  27066. characterMakers.push(() => makeCharacter(
  27067. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27068. {
  27069. front: {
  27070. height: math.unit(50, "m"),
  27071. weight: math.unit(500, "tonnes"),
  27072. name: "Front",
  27073. image: {
  27074. source: "./media/characters/ryoko/front.svg",
  27075. extra: 4632 / 3926,
  27076. bottom: 193 / 4823
  27077. }
  27078. },
  27079. },
  27080. [
  27081. {
  27082. name: "Normal",
  27083. height: math.unit(50, "meters"),
  27084. default: true
  27085. },
  27086. ]
  27087. ))
  27088. characterMakers.push(() => makeCharacter(
  27089. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27090. {
  27091. front: {
  27092. height: math.unit(30, "m"),
  27093. weight: math.unit(22, "tonnes"),
  27094. name: "Front",
  27095. image: {
  27096. source: "./media/characters/elio/front.svg",
  27097. extra: 4582 / 3720,
  27098. bottom: 236 / 4828
  27099. }
  27100. },
  27101. },
  27102. [
  27103. {
  27104. name: "Normal",
  27105. height: math.unit(30, "meters"),
  27106. default: true
  27107. },
  27108. ]
  27109. ))
  27110. characterMakers.push(() => makeCharacter(
  27111. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27112. {
  27113. front: {
  27114. height: math.unit(6 + 3 / 12, "feet"),
  27115. weight: math.unit(120, "lb"),
  27116. name: "Front",
  27117. image: {
  27118. source: "./media/characters/azura/front.svg",
  27119. extra: 1149 / 1135,
  27120. bottom: 45 / 1194
  27121. }
  27122. },
  27123. frontClothed: {
  27124. height: math.unit(6 + 3 / 12, "feet"),
  27125. weight: math.unit(120, "lb"),
  27126. name: "Front (Clothed)",
  27127. image: {
  27128. source: "./media/characters/azura/front-clothed.svg",
  27129. extra: 1149 / 1135,
  27130. bottom: 45 / 1194
  27131. }
  27132. },
  27133. },
  27134. [
  27135. {
  27136. name: "Normal",
  27137. height: math.unit(6 + 3 / 12, "feet"),
  27138. default: true
  27139. },
  27140. {
  27141. name: "Macro",
  27142. height: math.unit(20 + 6 / 12, "feet")
  27143. },
  27144. {
  27145. name: "Megamacro",
  27146. height: math.unit(12, "miles")
  27147. },
  27148. {
  27149. name: "Gigamacro",
  27150. height: math.unit(10000, "miles")
  27151. },
  27152. {
  27153. name: "Teramacro",
  27154. height: math.unit(900000, "miles")
  27155. },
  27156. ]
  27157. ))
  27158. characterMakers.push(() => makeCharacter(
  27159. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27160. {
  27161. front: {
  27162. height: math.unit(12, "feet"),
  27163. weight: math.unit(1, "ton"),
  27164. capacity: math.unit(660000, "gallons"),
  27165. name: "Front",
  27166. image: {
  27167. source: "./media/characters/zeus/front.svg",
  27168. extra: 5005 / 4717,
  27169. bottom: 363 / 5388
  27170. }
  27171. },
  27172. },
  27173. [
  27174. {
  27175. name: "Normal",
  27176. height: math.unit(12, "feet")
  27177. },
  27178. {
  27179. name: "Preferred Size",
  27180. height: math.unit(0.5, "miles"),
  27181. default: true
  27182. },
  27183. {
  27184. name: "Giga Horse",
  27185. height: math.unit(300, "miles")
  27186. },
  27187. {
  27188. name: "Riding Planets",
  27189. height: math.unit(30, "megameters")
  27190. },
  27191. {
  27192. name: "Cosmic Giant",
  27193. height: math.unit(3, "zettameters")
  27194. },
  27195. {
  27196. name: "Breeding God",
  27197. height: math.unit(9.92e22, "yottameters")
  27198. },
  27199. ]
  27200. ))
  27201. characterMakers.push(() => makeCharacter(
  27202. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27203. {
  27204. side: {
  27205. height: math.unit(9, "feet"),
  27206. weight: math.unit(1500, "kg"),
  27207. name: "Side",
  27208. image: {
  27209. source: "./media/characters/fang/side.svg",
  27210. extra: 924 / 866,
  27211. bottom: 47.5 / 972.3
  27212. }
  27213. },
  27214. },
  27215. [
  27216. {
  27217. name: "Normal",
  27218. height: math.unit(9, "feet"),
  27219. default: true
  27220. },
  27221. {
  27222. name: "Macro",
  27223. height: math.unit(75 + 6 / 12, "feet")
  27224. },
  27225. {
  27226. name: "Teramacro",
  27227. height: math.unit(50000, "miles")
  27228. },
  27229. ]
  27230. ))
  27231. characterMakers.push(() => makeCharacter(
  27232. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27233. {
  27234. front: {
  27235. height: math.unit(10, "feet"),
  27236. weight: math.unit(2, "tons"),
  27237. name: "Front",
  27238. image: {
  27239. source: "./media/characters/rekhit/front.svg",
  27240. extra: 2796 / 2590,
  27241. bottom: 225 / 3022
  27242. }
  27243. },
  27244. },
  27245. [
  27246. {
  27247. name: "Normal",
  27248. height: math.unit(10, "feet"),
  27249. default: true
  27250. },
  27251. {
  27252. name: "Macro",
  27253. height: math.unit(500, "feet")
  27254. },
  27255. ]
  27256. ))
  27257. characterMakers.push(() => makeCharacter(
  27258. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27259. {
  27260. front: {
  27261. height: math.unit(7 + 6.451 / 12, "feet"),
  27262. weight: math.unit(310, "lb"),
  27263. name: "Front",
  27264. image: {
  27265. source: "./media/characters/dahlia-verrick/front.svg",
  27266. extra: 1488 / 1365,
  27267. bottom: 6.2 / 1495
  27268. }
  27269. },
  27270. back: {
  27271. height: math.unit(7 + 6.451 / 12, "feet"),
  27272. weight: math.unit(310, "lb"),
  27273. name: "Back",
  27274. image: {
  27275. source: "./media/characters/dahlia-verrick/back.svg",
  27276. extra: 1472 / 1351,
  27277. bottom: 5.28 / 1477
  27278. }
  27279. },
  27280. frontBusiness: {
  27281. height: math.unit(7 + 6.451 / 12, "feet"),
  27282. weight: math.unit(200, "lb"),
  27283. name: "Front (Business)",
  27284. image: {
  27285. source: "./media/characters/dahlia-verrick/front-business.svg",
  27286. extra: 1478 / 1381,
  27287. bottom: 5.5 / 1484
  27288. }
  27289. },
  27290. frontCasual: {
  27291. height: math.unit(7 + 6.451 / 12, "feet"),
  27292. weight: math.unit(200, "lb"),
  27293. name: "Front (Casual)",
  27294. image: {
  27295. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27296. extra: 1478 / 1381,
  27297. bottom: 5.5 / 1484
  27298. }
  27299. },
  27300. },
  27301. [
  27302. {
  27303. name: "Travel-Sized",
  27304. height: math.unit(7.45, "inches")
  27305. },
  27306. {
  27307. name: "Normal",
  27308. height: math.unit(7 + 6.451 / 12, "feet"),
  27309. default: true
  27310. },
  27311. {
  27312. name: "Hitting the Town",
  27313. height: math.unit(37 + 8 / 12, "feet")
  27314. },
  27315. {
  27316. name: "Stomp in the Suburbs",
  27317. height: math.unit(964 + 9.728 / 12, "feet")
  27318. },
  27319. {
  27320. name: "Sit on the City",
  27321. height: math.unit(61747 + 10.592 / 12, "feet")
  27322. },
  27323. {
  27324. name: "Glomp the Globe",
  27325. height: math.unit(252919327 + 4.832 / 12, "feet")
  27326. },
  27327. ]
  27328. ))
  27329. characterMakers.push(() => makeCharacter(
  27330. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27331. {
  27332. front: {
  27333. height: math.unit(6 + 4 / 12, "feet"),
  27334. weight: math.unit(320, "lb"),
  27335. name: "Front",
  27336. image: {
  27337. source: "./media/characters/balina-mahigan/front.svg",
  27338. extra: 447 / 428,
  27339. bottom: 18 / 466
  27340. }
  27341. },
  27342. back: {
  27343. height: math.unit(6 + 4 / 12, "feet"),
  27344. weight: math.unit(320, "lb"),
  27345. name: "Back",
  27346. image: {
  27347. source: "./media/characters/balina-mahigan/back.svg",
  27348. extra: 445 / 428,
  27349. bottom: 4.07 / 448
  27350. }
  27351. },
  27352. arm: {
  27353. height: math.unit(1.88, "feet"),
  27354. name: "Arm",
  27355. image: {
  27356. source: "./media/characters/balina-mahigan/arm.svg"
  27357. }
  27358. },
  27359. backPort: {
  27360. height: math.unit(0.685, "feet"),
  27361. name: "Back Port",
  27362. image: {
  27363. source: "./media/characters/balina-mahigan/back-port.svg"
  27364. }
  27365. },
  27366. hoofpaw: {
  27367. height: math.unit(1.41, "feet"),
  27368. name: "Hoofpaw",
  27369. image: {
  27370. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27371. }
  27372. },
  27373. leftHandBack: {
  27374. height: math.unit(0.938, "feet"),
  27375. name: "Left Hand (Back)",
  27376. image: {
  27377. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27378. }
  27379. },
  27380. leftHandFront: {
  27381. height: math.unit(0.938, "feet"),
  27382. name: "Left Hand (Front)",
  27383. image: {
  27384. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27385. }
  27386. },
  27387. rightHandBack: {
  27388. height: math.unit(0.95, "feet"),
  27389. name: "Right Hand (Back)",
  27390. image: {
  27391. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27392. }
  27393. },
  27394. rightHandFront: {
  27395. height: math.unit(0.95, "feet"),
  27396. name: "Right Hand (Front)",
  27397. image: {
  27398. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27399. }
  27400. },
  27401. },
  27402. [
  27403. {
  27404. name: "Normal",
  27405. height: math.unit(6 + 4 / 12, "feet"),
  27406. default: true
  27407. },
  27408. ]
  27409. ))
  27410. characterMakers.push(() => makeCharacter(
  27411. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27412. {
  27413. front: {
  27414. height: math.unit(6, "feet"),
  27415. weight: math.unit(320, "lb"),
  27416. name: "Front",
  27417. image: {
  27418. source: "./media/characters/balina-mejeri/front.svg",
  27419. extra: 517 / 488,
  27420. bottom: 44.2 / 561
  27421. }
  27422. },
  27423. },
  27424. [
  27425. {
  27426. name: "Normal",
  27427. height: math.unit(6 + 4 / 12, "feet")
  27428. },
  27429. {
  27430. name: "Business",
  27431. height: math.unit(155, "feet"),
  27432. default: true
  27433. },
  27434. ]
  27435. ))
  27436. characterMakers.push(() => makeCharacter(
  27437. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27438. {
  27439. kneeling: {
  27440. height: math.unit(6 + 4 / 12, "feet"),
  27441. weight: math.unit(300 * 20, "lb"),
  27442. name: "Kneeling",
  27443. image: {
  27444. source: "./media/characters/balbarian/kneeling.svg",
  27445. extra: 922 / 862,
  27446. bottom: 42.4 / 965
  27447. }
  27448. },
  27449. },
  27450. [
  27451. {
  27452. name: "Normal",
  27453. height: math.unit(6 + 4 / 12, "feet")
  27454. },
  27455. {
  27456. name: "Treasured",
  27457. height: math.unit(18 + 9 / 12, "feet"),
  27458. default: true
  27459. },
  27460. {
  27461. name: "Macro",
  27462. height: math.unit(900, "feet")
  27463. },
  27464. ]
  27465. ))
  27466. characterMakers.push(() => makeCharacter(
  27467. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27468. {
  27469. front: {
  27470. height: math.unit(6 + 4 / 12, "feet"),
  27471. weight: math.unit(325, "lb"),
  27472. name: "Front",
  27473. image: {
  27474. source: "./media/characters/balina-amarini/front.svg",
  27475. extra: 415 / 403,
  27476. bottom: 19 / 433.4
  27477. }
  27478. },
  27479. back: {
  27480. height: math.unit(6 + 4 / 12, "feet"),
  27481. weight: math.unit(325, "lb"),
  27482. name: "Back",
  27483. image: {
  27484. source: "./media/characters/balina-amarini/back.svg",
  27485. extra: 415 / 403,
  27486. bottom: 13.5 / 432
  27487. }
  27488. },
  27489. overdrive: {
  27490. height: math.unit(6 + 4 / 12, "feet"),
  27491. weight: math.unit(400, "lb"),
  27492. name: "Overdrive",
  27493. image: {
  27494. source: "./media/characters/balina-amarini/overdrive.svg",
  27495. extra: 269 / 259,
  27496. bottom: 12 / 282
  27497. }
  27498. },
  27499. },
  27500. [
  27501. {
  27502. name: "Boom",
  27503. height: math.unit(9 + 10 / 12, "feet"),
  27504. default: true
  27505. },
  27506. {
  27507. name: "Macro",
  27508. height: math.unit(280, "feet")
  27509. },
  27510. ]
  27511. ))
  27512. characterMakers.push(() => makeCharacter(
  27513. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27514. {
  27515. goddess: {
  27516. height: math.unit(600, "feet"),
  27517. weight: math.unit(2000000, "tons"),
  27518. name: "Goddess",
  27519. image: {
  27520. source: "./media/characters/lady-kubwa/goddess.svg",
  27521. extra: 1240.5 / 1223,
  27522. bottom: 22 / 1263
  27523. }
  27524. },
  27525. goddesser: {
  27526. height: math.unit(900, "feet"),
  27527. weight: math.unit(20000000, "lb"),
  27528. name: "Goddess-er",
  27529. image: {
  27530. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27531. extra: 899 / 888,
  27532. bottom: 12.6 / 912
  27533. }
  27534. },
  27535. },
  27536. [
  27537. {
  27538. name: "Macro",
  27539. height: math.unit(600, "feet"),
  27540. default: true
  27541. },
  27542. {
  27543. name: "Megamacro",
  27544. height: math.unit(250, "miles")
  27545. },
  27546. ]
  27547. ))
  27548. characterMakers.push(() => makeCharacter(
  27549. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27550. {
  27551. front: {
  27552. height: math.unit(7 + 7 / 12, "feet"),
  27553. weight: math.unit(250, "lb"),
  27554. name: "Front",
  27555. image: {
  27556. source: "./media/characters/tala-grovehorn/front.svg",
  27557. extra: 2636 / 2525,
  27558. bottom: 147 / 2781
  27559. }
  27560. },
  27561. back: {
  27562. height: math.unit(7 + 7 / 12, "feet"),
  27563. weight: math.unit(250, "lb"),
  27564. name: "Back",
  27565. image: {
  27566. source: "./media/characters/tala-grovehorn/back.svg",
  27567. extra: 2635 / 2539,
  27568. bottom: 100 / 2732.8
  27569. }
  27570. },
  27571. mouth: {
  27572. height: math.unit(1.15, "feet"),
  27573. name: "Mouth",
  27574. image: {
  27575. source: "./media/characters/tala-grovehorn/mouth.svg"
  27576. }
  27577. },
  27578. dick: {
  27579. height: math.unit(2.36, "feet"),
  27580. name: "Dick",
  27581. image: {
  27582. source: "./media/characters/tala-grovehorn/dick.svg"
  27583. }
  27584. },
  27585. slit: {
  27586. height: math.unit(0.61, "feet"),
  27587. name: "Slit",
  27588. image: {
  27589. source: "./media/characters/tala-grovehorn/slit.svg"
  27590. }
  27591. },
  27592. },
  27593. [
  27594. ]
  27595. ))
  27596. characterMakers.push(() => makeCharacter(
  27597. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27598. {
  27599. front: {
  27600. height: math.unit(7 + 7 / 12, "feet"),
  27601. weight: math.unit(225, "lb"),
  27602. name: "Front",
  27603. image: {
  27604. source: "./media/characters/epona/front.svg",
  27605. extra: 2445 / 2290,
  27606. bottom: 251 / 2696
  27607. }
  27608. },
  27609. back: {
  27610. height: math.unit(7 + 7 / 12, "feet"),
  27611. weight: math.unit(225, "lb"),
  27612. name: "Back",
  27613. image: {
  27614. source: "./media/characters/epona/back.svg",
  27615. extra: 2546 / 2408,
  27616. bottom: 44 / 2589
  27617. }
  27618. },
  27619. genitals: {
  27620. height: math.unit(1.5, "feet"),
  27621. name: "Genitals",
  27622. image: {
  27623. source: "./media/characters/epona/genitals.svg"
  27624. }
  27625. },
  27626. },
  27627. [
  27628. {
  27629. name: "Normal",
  27630. height: math.unit(7 + 7 / 12, "feet"),
  27631. default: true
  27632. },
  27633. ]
  27634. ))
  27635. characterMakers.push(() => makeCharacter(
  27636. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27637. {
  27638. front: {
  27639. height: math.unit(7, "feet"),
  27640. weight: math.unit(518, "lb"),
  27641. name: "Front",
  27642. image: {
  27643. source: "./media/characters/avia-bloodbourn/front.svg",
  27644. extra: 1466 / 1350,
  27645. bottom: 65 / 1527
  27646. }
  27647. },
  27648. },
  27649. [
  27650. ]
  27651. ))
  27652. characterMakers.push(() => makeCharacter(
  27653. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27654. {
  27655. front: {
  27656. height: math.unit(9.35, "feet"),
  27657. weight: math.unit(600, "lb"),
  27658. name: "Front",
  27659. image: {
  27660. source: "./media/characters/amera/front.svg",
  27661. extra: 891 / 818,
  27662. bottom: 30 / 922.7
  27663. }
  27664. },
  27665. back: {
  27666. height: math.unit(9.35, "feet"),
  27667. weight: math.unit(600, "lb"),
  27668. name: "Back",
  27669. image: {
  27670. source: "./media/characters/amera/back.svg",
  27671. extra: 876 / 824,
  27672. bottom: 6.8 / 884
  27673. }
  27674. },
  27675. dick: {
  27676. height: math.unit(2.14, "feet"),
  27677. name: "Dick",
  27678. image: {
  27679. source: "./media/characters/amera/dick.svg"
  27680. }
  27681. },
  27682. },
  27683. [
  27684. {
  27685. name: "Normal",
  27686. height: math.unit(9.35, "feet"),
  27687. default: true
  27688. },
  27689. ]
  27690. ))
  27691. characterMakers.push(() => makeCharacter(
  27692. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27693. {
  27694. kneeling: {
  27695. height: math.unit(3 + 4 / 12, "feet"),
  27696. weight: math.unit(90, "lb"),
  27697. name: "Kneeling",
  27698. image: {
  27699. source: "./media/characters/rosewen/kneeling.svg",
  27700. extra: 1835 / 1571,
  27701. bottom: 27.7 / 1862
  27702. }
  27703. },
  27704. },
  27705. [
  27706. {
  27707. name: "Normal",
  27708. height: math.unit(3 + 4 / 12, "feet"),
  27709. default: true
  27710. },
  27711. ]
  27712. ))
  27713. characterMakers.push(() => makeCharacter(
  27714. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27715. {
  27716. front: {
  27717. height: math.unit(5 + 10 / 12, "feet"),
  27718. weight: math.unit(200, "lb"),
  27719. name: "Front",
  27720. image: {
  27721. source: "./media/characters/sabah/front.svg",
  27722. extra: 849 / 763,
  27723. bottom: 33.9 / 881
  27724. }
  27725. },
  27726. },
  27727. [
  27728. {
  27729. name: "Normal",
  27730. height: math.unit(5 + 10 / 12, "feet"),
  27731. default: true
  27732. },
  27733. ]
  27734. ))
  27735. characterMakers.push(() => makeCharacter(
  27736. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27737. {
  27738. front: {
  27739. height: math.unit(3 + 5 / 12, "feet"),
  27740. weight: math.unit(40, "kg"),
  27741. name: "Front",
  27742. image: {
  27743. source: "./media/characters/purple-flame/front.svg",
  27744. extra: 1577 / 1412,
  27745. bottom: 97 / 1694
  27746. }
  27747. },
  27748. frontDressed: {
  27749. height: math.unit(3 + 5 / 12, "feet"),
  27750. weight: math.unit(40, "kg"),
  27751. name: "Front (Dressed)",
  27752. image: {
  27753. source: "./media/characters/purple-flame/front-dressed.svg",
  27754. extra: 1577 / 1412,
  27755. bottom: 97 / 1694
  27756. }
  27757. },
  27758. headphones: {
  27759. height: math.unit(0.85, "feet"),
  27760. name: "Headphones",
  27761. image: {
  27762. source: "./media/characters/purple-flame/headphones.svg"
  27763. }
  27764. },
  27765. },
  27766. [
  27767. {
  27768. name: "Really Small",
  27769. height: math.unit(5, "cm")
  27770. },
  27771. {
  27772. name: "Micro",
  27773. height: math.unit(1 + 5 / 12, "feet")
  27774. },
  27775. {
  27776. name: "Normal",
  27777. height: math.unit(3 + 5 / 12, "feet"),
  27778. default: true
  27779. },
  27780. {
  27781. name: "Minimacro",
  27782. height: math.unit(125, "feet")
  27783. },
  27784. {
  27785. name: "Macro",
  27786. height: math.unit(0.5, "miles")
  27787. },
  27788. {
  27789. name: "Megamacro",
  27790. height: math.unit(50, "miles")
  27791. },
  27792. {
  27793. name: "Gigantic",
  27794. height: math.unit(750, "miles")
  27795. },
  27796. {
  27797. name: "Planetary",
  27798. height: math.unit(15000, "miles")
  27799. },
  27800. ]
  27801. ))
  27802. characterMakers.push(() => makeCharacter(
  27803. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27804. {
  27805. front: {
  27806. height: math.unit(14, "feet"),
  27807. weight: math.unit(959, "lb"),
  27808. name: "Front",
  27809. image: {
  27810. source: "./media/characters/arsenal/front.svg",
  27811. extra: 2357 / 2157,
  27812. bottom: 93 / 2458
  27813. }
  27814. },
  27815. },
  27816. [
  27817. {
  27818. name: "Normal",
  27819. height: math.unit(14, "feet"),
  27820. default: true
  27821. },
  27822. ]
  27823. ))
  27824. characterMakers.push(() => makeCharacter(
  27825. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27826. {
  27827. front: {
  27828. height: math.unit(6, "feet"),
  27829. weight: math.unit(150, "lb"),
  27830. name: "Front",
  27831. image: {
  27832. source: "./media/characters/adira/front.svg",
  27833. extra: 1078 / 1029,
  27834. bottom: 87 / 1166
  27835. }
  27836. },
  27837. },
  27838. [
  27839. {
  27840. name: "Micro",
  27841. height: math.unit(4, "inches"),
  27842. default: true
  27843. },
  27844. {
  27845. name: "Macro",
  27846. height: math.unit(50, "feet")
  27847. },
  27848. ]
  27849. ))
  27850. characterMakers.push(() => makeCharacter(
  27851. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27852. {
  27853. front: {
  27854. height: math.unit(16, "feet"),
  27855. weight: math.unit(1000, "lb"),
  27856. name: "Front",
  27857. image: {
  27858. source: "./media/characters/grim/front.svg",
  27859. extra: 622 / 614,
  27860. bottom: 18.1 / 642
  27861. }
  27862. },
  27863. back: {
  27864. height: math.unit(16, "feet"),
  27865. weight: math.unit(1000, "lb"),
  27866. name: "Back",
  27867. image: {
  27868. source: "./media/characters/grim/back.svg",
  27869. extra: 610.6 / 602,
  27870. bottom: 40.8 / 652
  27871. }
  27872. },
  27873. hunched: {
  27874. height: math.unit(9.75, "feet"),
  27875. weight: math.unit(1000, "lb"),
  27876. name: "Hunched",
  27877. image: {
  27878. source: "./media/characters/grim/hunched.svg",
  27879. extra: 304 / 297,
  27880. bottom: 35.4 / 394
  27881. }
  27882. },
  27883. },
  27884. [
  27885. {
  27886. name: "Normal",
  27887. height: math.unit(16, "feet"),
  27888. default: true
  27889. },
  27890. ]
  27891. ))
  27892. characterMakers.push(() => makeCharacter(
  27893. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27894. {
  27895. front: {
  27896. height: math.unit(2.3, "meters"),
  27897. weight: math.unit(300, "lb"),
  27898. name: "Front",
  27899. image: {
  27900. source: "./media/characters/sinja/front-sfw.svg",
  27901. extra: 1393 / 1294,
  27902. bottom: 70 / 1463
  27903. }
  27904. },
  27905. frontNsfw: {
  27906. height: math.unit(2.3, "meters"),
  27907. weight: math.unit(300, "lb"),
  27908. name: "Front (NSFW)",
  27909. image: {
  27910. source: "./media/characters/sinja/front-nsfw.svg",
  27911. extra: 1393 / 1294,
  27912. bottom: 70 / 1463
  27913. }
  27914. },
  27915. back: {
  27916. height: math.unit(2.3, "meters"),
  27917. weight: math.unit(300, "lb"),
  27918. name: "Back",
  27919. image: {
  27920. source: "./media/characters/sinja/back.svg",
  27921. extra: 1393 / 1294,
  27922. bottom: 70 / 1463
  27923. }
  27924. },
  27925. head: {
  27926. height: math.unit(1.771, "feet"),
  27927. name: "Head",
  27928. image: {
  27929. source: "./media/characters/sinja/head.svg"
  27930. }
  27931. },
  27932. slit: {
  27933. height: math.unit(0.8, "feet"),
  27934. name: "Slit",
  27935. image: {
  27936. source: "./media/characters/sinja/slit.svg"
  27937. }
  27938. },
  27939. },
  27940. [
  27941. {
  27942. name: "Normal",
  27943. height: math.unit(2.3, "meters")
  27944. },
  27945. {
  27946. name: "Macro",
  27947. height: math.unit(91, "meters"),
  27948. default: true
  27949. },
  27950. {
  27951. name: "Megamacro",
  27952. height: math.unit(91440, "meters")
  27953. },
  27954. {
  27955. name: "Gigamacro",
  27956. height: math.unit(60960000, "meters")
  27957. },
  27958. {
  27959. name: "Teramacro",
  27960. height: math.unit(9144000000, "meters")
  27961. },
  27962. ]
  27963. ))
  27964. characterMakers.push(() => makeCharacter(
  27965. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27966. {
  27967. front: {
  27968. height: math.unit(1.7, "meters"),
  27969. weight: math.unit(130, "lb"),
  27970. name: "Front",
  27971. image: {
  27972. source: "./media/characters/kyu/front.svg",
  27973. extra: 415 / 395,
  27974. bottom: 5 / 420
  27975. }
  27976. },
  27977. head: {
  27978. height: math.unit(1.75, "feet"),
  27979. name: "Head",
  27980. image: {
  27981. source: "./media/characters/kyu/head.svg"
  27982. }
  27983. },
  27984. foot: {
  27985. height: math.unit(0.81, "feet"),
  27986. name: "Foot",
  27987. image: {
  27988. source: "./media/characters/kyu/foot.svg"
  27989. }
  27990. },
  27991. },
  27992. [
  27993. {
  27994. name: "Normal",
  27995. height: math.unit(1.7, "meters")
  27996. },
  27997. {
  27998. name: "Macro",
  27999. height: math.unit(131, "feet"),
  28000. default: true
  28001. },
  28002. {
  28003. name: "Megamacro",
  28004. height: math.unit(91440, "meters")
  28005. },
  28006. {
  28007. name: "Gigamacro",
  28008. height: math.unit(60960000, "meters")
  28009. },
  28010. {
  28011. name: "Teramacro",
  28012. height: math.unit(9144000000, "meters")
  28013. },
  28014. ]
  28015. ))
  28016. characterMakers.push(() => makeCharacter(
  28017. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28018. {
  28019. front: {
  28020. height: math.unit(7 + 1 / 12, "feet"),
  28021. weight: math.unit(250, "lb"),
  28022. name: "Front",
  28023. image: {
  28024. source: "./media/characters/joey/front.svg",
  28025. extra: 1791 / 1537,
  28026. bottom: 28 / 1816
  28027. }
  28028. },
  28029. },
  28030. [
  28031. {
  28032. name: "Micro",
  28033. height: math.unit(3, "inches")
  28034. },
  28035. {
  28036. name: "Normal",
  28037. height: math.unit(7 + 1 / 12, "feet"),
  28038. default: true
  28039. },
  28040. ]
  28041. ))
  28042. characterMakers.push(() => makeCharacter(
  28043. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28044. {
  28045. front: {
  28046. height: math.unit(165, "cm"),
  28047. weight: math.unit(140, "lb"),
  28048. name: "Front",
  28049. image: {
  28050. source: "./media/characters/sam-evans/front.svg",
  28051. extra: 3417 / 3230,
  28052. bottom: 41.3 / 3417
  28053. }
  28054. },
  28055. frontSixTails: {
  28056. height: math.unit(165, "cm"),
  28057. weight: math.unit(140, "lb"),
  28058. name: "Front-six-tails",
  28059. image: {
  28060. source: "./media/characters/sam-evans/front-six-tails.svg",
  28061. extra: 3417 / 3230,
  28062. bottom: 41.3 / 3417
  28063. }
  28064. },
  28065. back: {
  28066. height: math.unit(165, "cm"),
  28067. weight: math.unit(140, "lb"),
  28068. name: "Back",
  28069. image: {
  28070. source: "./media/characters/sam-evans/back.svg",
  28071. extra: 3227 / 3032,
  28072. bottom: 6.8 / 3234
  28073. }
  28074. },
  28075. face: {
  28076. height: math.unit(0.68, "feet"),
  28077. name: "Face",
  28078. image: {
  28079. source: "./media/characters/sam-evans/face.svg"
  28080. }
  28081. },
  28082. },
  28083. [
  28084. {
  28085. name: "Normal",
  28086. height: math.unit(165, "cm"),
  28087. default: true
  28088. },
  28089. {
  28090. name: "Macro",
  28091. height: math.unit(100, "meters")
  28092. },
  28093. {
  28094. name: "Macro+",
  28095. height: math.unit(800, "meters")
  28096. },
  28097. {
  28098. name: "Macro++",
  28099. height: math.unit(3, "km")
  28100. },
  28101. {
  28102. name: "Macro+++",
  28103. height: math.unit(30, "km")
  28104. },
  28105. ]
  28106. ))
  28107. characterMakers.push(() => makeCharacter(
  28108. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28109. {
  28110. front: {
  28111. height: math.unit(10, "feet"),
  28112. weight: math.unit(750, "lb"),
  28113. name: "Front",
  28114. image: {
  28115. source: "./media/characters/juliet-a/front.svg",
  28116. extra: 1766 / 1720,
  28117. bottom: 43 / 1809
  28118. }
  28119. },
  28120. back: {
  28121. height: math.unit(10, "feet"),
  28122. weight: math.unit(750, "lb"),
  28123. name: "Back",
  28124. image: {
  28125. source: "./media/characters/juliet-a/back.svg",
  28126. extra: 1781 / 1734,
  28127. bottom: 35 / 1810,
  28128. }
  28129. },
  28130. },
  28131. [
  28132. {
  28133. name: "Normal",
  28134. height: math.unit(10, "feet"),
  28135. default: true
  28136. },
  28137. {
  28138. name: "Dragon Form",
  28139. height: math.unit(250, "feet")
  28140. },
  28141. {
  28142. name: "Macro",
  28143. height: math.unit(1000, "feet")
  28144. },
  28145. {
  28146. name: "Megamacro",
  28147. height: math.unit(10000, "feet")
  28148. }
  28149. ]
  28150. ))
  28151. characterMakers.push(() => makeCharacter(
  28152. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28153. {
  28154. regular: {
  28155. height: math.unit(7 + 3 / 12, "feet"),
  28156. weight: math.unit(260, "lb"),
  28157. name: "Regular",
  28158. image: {
  28159. source: "./media/characters/wild/regular.svg",
  28160. extra: 97.45 / 92,
  28161. bottom: 6.8 / 104.3
  28162. }
  28163. },
  28164. biggums: {
  28165. height: math.unit(8 + 6 / 12, "feet"),
  28166. weight: math.unit(425, "lb"),
  28167. name: "Biggums",
  28168. image: {
  28169. source: "./media/characters/wild/biggums.svg",
  28170. extra: 97.45 / 92,
  28171. bottom: 7.5 / 132.34
  28172. }
  28173. },
  28174. mawRegular: {
  28175. height: math.unit(1.24, "feet"),
  28176. name: "Maw (Regular)",
  28177. image: {
  28178. source: "./media/characters/wild/maw.svg"
  28179. }
  28180. },
  28181. mawBiggums: {
  28182. height: math.unit(1.47, "feet"),
  28183. name: "Maw (Biggums)",
  28184. image: {
  28185. source: "./media/characters/wild/maw.svg"
  28186. }
  28187. },
  28188. },
  28189. [
  28190. {
  28191. name: "Normal",
  28192. height: math.unit(7 + 3 / 12, "feet"),
  28193. default: true
  28194. },
  28195. ]
  28196. ))
  28197. characterMakers.push(() => makeCharacter(
  28198. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28199. {
  28200. front: {
  28201. height: math.unit(2.5, "meters"),
  28202. weight: math.unit(200, "kg"),
  28203. name: "Front",
  28204. image: {
  28205. source: "./media/characters/vidar/front.svg",
  28206. extra: 2994 / 2795,
  28207. bottom: 56 / 3061
  28208. }
  28209. },
  28210. back: {
  28211. height: math.unit(2.5, "meters"),
  28212. weight: math.unit(200, "kg"),
  28213. name: "Back",
  28214. image: {
  28215. source: "./media/characters/vidar/back.svg",
  28216. extra: 3131 / 2928,
  28217. bottom: 13.5 / 3141.5
  28218. }
  28219. },
  28220. feral: {
  28221. height: math.unit(2.5, "meters"),
  28222. weight: math.unit(2000, "kg"),
  28223. name: "Feral",
  28224. image: {
  28225. source: "./media/characters/vidar/feral.svg",
  28226. extra: 2790 / 1765,
  28227. bottom: 6 / 2796
  28228. }
  28229. },
  28230. },
  28231. [
  28232. {
  28233. name: "Normal",
  28234. height: math.unit(2.5, "meters"),
  28235. default: true
  28236. },
  28237. {
  28238. name: "Macro",
  28239. height: math.unit(100, "meters")
  28240. },
  28241. ]
  28242. ))
  28243. characterMakers.push(() => makeCharacter(
  28244. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28245. {
  28246. front: {
  28247. height: math.unit(5 + 9 / 12, "feet"),
  28248. weight: math.unit(120, "lb"),
  28249. name: "Front",
  28250. image: {
  28251. source: "./media/characters/ash/front.svg",
  28252. extra: 2189 / 1961,
  28253. bottom: 5.2 / 2194
  28254. }
  28255. },
  28256. },
  28257. [
  28258. {
  28259. name: "Normal",
  28260. height: math.unit(5 + 9 / 12, "feet"),
  28261. default: true
  28262. },
  28263. ]
  28264. ))
  28265. characterMakers.push(() => makeCharacter(
  28266. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28267. {
  28268. front: {
  28269. height: math.unit(9, "feet"),
  28270. weight: math.unit(10000, "lb"),
  28271. name: "Front",
  28272. image: {
  28273. source: "./media/characters/gygabite/front.svg",
  28274. bottom: 31.7 / 537.8,
  28275. extra: 505 / 370
  28276. }
  28277. },
  28278. },
  28279. [
  28280. {
  28281. name: "Normal",
  28282. height: math.unit(9, "feet"),
  28283. default: true
  28284. },
  28285. ]
  28286. ))
  28287. characterMakers.push(() => makeCharacter(
  28288. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28289. {
  28290. front: {
  28291. height: math.unit(12, "feet"),
  28292. weight: math.unit(35000, "lb"),
  28293. name: "Front",
  28294. image: {
  28295. source: "./media/characters/p0tat0/front.svg",
  28296. extra: 1065 / 921,
  28297. bottom: 55.7 / 1121.25
  28298. }
  28299. },
  28300. },
  28301. [
  28302. {
  28303. name: "Normal",
  28304. height: math.unit(12, "feet"),
  28305. default: true
  28306. },
  28307. ]
  28308. ))
  28309. characterMakers.push(() => makeCharacter(
  28310. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28311. {
  28312. side: {
  28313. height: math.unit(6.5, "feet"),
  28314. weight: math.unit(800, "lb"),
  28315. name: "Side",
  28316. image: {
  28317. source: "./media/characters/dusk/side.svg",
  28318. extra: 615 / 373,
  28319. bottom: 53 / 664
  28320. }
  28321. },
  28322. sitting: {
  28323. height: math.unit(7, "feet"),
  28324. weight: math.unit(800, "lb"),
  28325. name: "Sitting",
  28326. image: {
  28327. source: "./media/characters/dusk/sitting.svg",
  28328. extra: 753 / 425,
  28329. bottom: 33 / 774
  28330. }
  28331. },
  28332. head: {
  28333. height: math.unit(6.1, "feet"),
  28334. name: "Head",
  28335. image: {
  28336. source: "./media/characters/dusk/head.svg"
  28337. }
  28338. },
  28339. },
  28340. [
  28341. {
  28342. name: "Normal",
  28343. height: math.unit(7, "feet"),
  28344. default: true
  28345. },
  28346. ]
  28347. ))
  28348. characterMakers.push(() => makeCharacter(
  28349. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28350. {
  28351. front: {
  28352. height: math.unit(15, "feet"),
  28353. weight: math.unit(7000, "lb"),
  28354. name: "Front",
  28355. image: {
  28356. source: "./media/characters/jay-direwolf/front.svg",
  28357. extra: 1810 / 1732,
  28358. bottom: 66 / 1892
  28359. }
  28360. },
  28361. },
  28362. [
  28363. {
  28364. name: "Normal",
  28365. height: math.unit(15, "feet"),
  28366. default: true
  28367. },
  28368. ]
  28369. ))
  28370. characterMakers.push(() => makeCharacter(
  28371. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28372. {
  28373. front: {
  28374. height: math.unit(4 + 9 / 12, "feet"),
  28375. weight: math.unit(130, "lb"),
  28376. name: "Front",
  28377. image: {
  28378. source: "./media/characters/anchovie/front.svg",
  28379. extra: 382 / 350,
  28380. bottom: 25 / 409
  28381. }
  28382. },
  28383. back: {
  28384. height: math.unit(4 + 9 / 12, "feet"),
  28385. weight: math.unit(130, "lb"),
  28386. name: "Back",
  28387. image: {
  28388. source: "./media/characters/anchovie/back.svg",
  28389. extra: 385 / 352,
  28390. bottom: 16.6 / 402
  28391. }
  28392. },
  28393. frontDressed: {
  28394. height: math.unit(4 + 9 / 12, "feet"),
  28395. weight: math.unit(130, "lb"),
  28396. name: "Front (Dressed)",
  28397. image: {
  28398. source: "./media/characters/anchovie/front-dressed.svg",
  28399. extra: 382 / 350,
  28400. bottom: 25 / 409
  28401. }
  28402. },
  28403. backDressed: {
  28404. height: math.unit(4 + 9 / 12, "feet"),
  28405. weight: math.unit(130, "lb"),
  28406. name: "Back (Dressed)",
  28407. image: {
  28408. source: "./media/characters/anchovie/back-dressed.svg",
  28409. extra: 385 / 352,
  28410. bottom: 16.6 / 402
  28411. }
  28412. },
  28413. },
  28414. [
  28415. {
  28416. name: "Micro",
  28417. height: math.unit(6.4, "inches")
  28418. },
  28419. {
  28420. name: "Normal",
  28421. height: math.unit(4 + 9 / 12, "feet"),
  28422. default: true
  28423. },
  28424. ]
  28425. ))
  28426. characterMakers.push(() => makeCharacter(
  28427. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28428. {
  28429. front: {
  28430. height: math.unit(2, "meters"),
  28431. weight: math.unit(180, "lb"),
  28432. name: "Front",
  28433. image: {
  28434. source: "./media/characters/acidrenamon/front.svg",
  28435. extra: 987 / 890,
  28436. bottom: 22.8 / 1009
  28437. }
  28438. },
  28439. back: {
  28440. height: math.unit(2, "meters"),
  28441. weight: math.unit(180, "lb"),
  28442. name: "Back",
  28443. image: {
  28444. source: "./media/characters/acidrenamon/back.svg",
  28445. extra: 983 / 891,
  28446. bottom: 8.4 / 992
  28447. }
  28448. },
  28449. head: {
  28450. height: math.unit(1.92, "feet"),
  28451. name: "Head",
  28452. image: {
  28453. source: "./media/characters/acidrenamon/head.svg"
  28454. }
  28455. },
  28456. rump: {
  28457. height: math.unit(1.72, "feet"),
  28458. name: "Rump",
  28459. image: {
  28460. source: "./media/characters/acidrenamon/rump.svg"
  28461. }
  28462. },
  28463. tail: {
  28464. height: math.unit(4.2, "feet"),
  28465. name: "Tail",
  28466. image: {
  28467. source: "./media/characters/acidrenamon/tail.svg"
  28468. }
  28469. },
  28470. },
  28471. [
  28472. {
  28473. name: "Normal",
  28474. height: math.unit(2, "meters"),
  28475. default: true
  28476. },
  28477. {
  28478. name: "Minimacro",
  28479. height: math.unit(7, "meters")
  28480. },
  28481. {
  28482. name: "Macro",
  28483. height: math.unit(200, "meters")
  28484. },
  28485. {
  28486. name: "Gigamacro",
  28487. height: math.unit(0.2, "earths")
  28488. },
  28489. ]
  28490. ))
  28491. characterMakers.push(() => makeCharacter(
  28492. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28493. {
  28494. front: {
  28495. height: math.unit(152, "feet"),
  28496. name: "Front",
  28497. image: {
  28498. source: "./media/characters/kenzie-lee/front.svg",
  28499. extra: 1869/1774,
  28500. bottom: 128/1997
  28501. }
  28502. },
  28503. side: {
  28504. height: math.unit(86, "feet"),
  28505. name: "Side",
  28506. image: {
  28507. source: "./media/characters/kenzie-lee/side.svg",
  28508. extra: 930/815,
  28509. bottom: 177/1107
  28510. }
  28511. },
  28512. paw: {
  28513. height: math.unit(15, "feet"),
  28514. name: "Paw",
  28515. image: {
  28516. source: "./media/characters/kenzie-lee/paw.svg"
  28517. }
  28518. },
  28519. },
  28520. [
  28521. {
  28522. name: "Micro",
  28523. height: math.unit(1.5, "inches")
  28524. },
  28525. {
  28526. name: "Normal",
  28527. height: math.unit(152, "feet"),
  28528. default: true
  28529. },
  28530. {
  28531. name: "Megamacro",
  28532. height: math.unit(7, "miles")
  28533. },
  28534. {
  28535. name: "Gigamacro",
  28536. height: math.unit(8000, "miles")
  28537. },
  28538. ]
  28539. ))
  28540. characterMakers.push(() => makeCharacter(
  28541. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28542. {
  28543. front: {
  28544. height: math.unit(6, "feet"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/withers/front.svg",
  28548. extra: 1935/1760,
  28549. bottom: 72/2007
  28550. }
  28551. },
  28552. back: {
  28553. height: math.unit(6, "feet"),
  28554. name: "Back",
  28555. image: {
  28556. source: "./media/characters/withers/back.svg",
  28557. extra: 1944/1792,
  28558. bottom: 12/1956
  28559. }
  28560. },
  28561. dressed: {
  28562. height: math.unit(6, "feet"),
  28563. name: "Dressed",
  28564. image: {
  28565. source: "./media/characters/withers/dressed.svg",
  28566. extra: 1937/1765,
  28567. bottom: 73/2010
  28568. }
  28569. },
  28570. phase1: {
  28571. height: math.unit(1.1, "feet"),
  28572. name: "Phase 1",
  28573. image: {
  28574. source: "./media/characters/withers/phase-1.svg",
  28575. extra: 1885/1232,
  28576. bottom: 0/1885
  28577. }
  28578. },
  28579. phase2: {
  28580. height: math.unit(1.05, "feet"),
  28581. name: "Phase 2",
  28582. image: {
  28583. source: "./media/characters/withers/phase-2.svg",
  28584. extra: 1792/1090,
  28585. bottom: 0/1792
  28586. }
  28587. },
  28588. partyWipe: {
  28589. height: math.unit(1.1, "feet"),
  28590. name: "Party Wipe",
  28591. image: {
  28592. source: "./media/characters/withers/party-wipe.svg",
  28593. extra: 1864/1207,
  28594. bottom: 0/1864
  28595. }
  28596. },
  28597. },
  28598. [
  28599. {
  28600. name: "Macro",
  28601. height: math.unit(167, "feet"),
  28602. default: true
  28603. },
  28604. {
  28605. name: "Megamacro",
  28606. height: math.unit(15, "miles")
  28607. }
  28608. ]
  28609. ))
  28610. characterMakers.push(() => makeCharacter(
  28611. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28612. {
  28613. front: {
  28614. height: math.unit(6 + 7 / 12, "feet"),
  28615. weight: math.unit(250, "lb"),
  28616. name: "Front",
  28617. image: {
  28618. source: "./media/characters/nemoskii/front.svg",
  28619. extra: 2270 / 1734,
  28620. bottom: 86 / 2354
  28621. }
  28622. },
  28623. back: {
  28624. height: math.unit(6 + 7 / 12, "feet"),
  28625. weight: math.unit(250, "lb"),
  28626. name: "Back",
  28627. image: {
  28628. source: "./media/characters/nemoskii/back.svg",
  28629. extra: 1845 / 1788,
  28630. bottom: 10.5 / 1852
  28631. }
  28632. },
  28633. head: {
  28634. height: math.unit(1.31, "feet"),
  28635. name: "Head",
  28636. image: {
  28637. source: "./media/characters/nemoskii/head.svg"
  28638. }
  28639. },
  28640. },
  28641. [
  28642. {
  28643. name: "Micro",
  28644. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28645. },
  28646. {
  28647. name: "Normal",
  28648. height: math.unit(6 + 7 / 12, "feet"),
  28649. default: true
  28650. },
  28651. {
  28652. name: "Macro",
  28653. height: math.unit((6 + 7 / 12) * 150, "feet")
  28654. },
  28655. {
  28656. name: "Macro+",
  28657. height: math.unit((6 + 7 / 12) * 500, "feet")
  28658. },
  28659. {
  28660. name: "Megamacro",
  28661. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28662. },
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28667. {
  28668. front: {
  28669. height: math.unit(1, "mile"),
  28670. weight: math.unit(265261.9, "lb"),
  28671. name: "Front",
  28672. image: {
  28673. source: "./media/characters/shui/front.svg",
  28674. extra: 1633 / 1564,
  28675. bottom: 91.5 / 1726
  28676. }
  28677. },
  28678. },
  28679. [
  28680. {
  28681. name: "Macro",
  28682. height: math.unit(1, "mile"),
  28683. default: true
  28684. },
  28685. ]
  28686. ))
  28687. characterMakers.push(() => makeCharacter(
  28688. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28689. {
  28690. front: {
  28691. height: math.unit(12 + 6 / 12, "feet"),
  28692. weight: math.unit(1342, "lb"),
  28693. name: "Front",
  28694. image: {
  28695. source: "./media/characters/arokh-takakura/front.svg",
  28696. extra: 1089 / 1043,
  28697. bottom: 77.4 / 1176.7
  28698. }
  28699. },
  28700. back: {
  28701. height: math.unit(12 + 6 / 12, "feet"),
  28702. weight: math.unit(1342, "lb"),
  28703. name: "Back",
  28704. image: {
  28705. source: "./media/characters/arokh-takakura/back.svg",
  28706. extra: 1046 / 1019,
  28707. bottom: 102 / 1150
  28708. }
  28709. },
  28710. },
  28711. [
  28712. {
  28713. name: "Big",
  28714. height: math.unit(12 + 6 / 12, "feet"),
  28715. default: true
  28716. },
  28717. ]
  28718. ))
  28719. characterMakers.push(() => makeCharacter(
  28720. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28721. {
  28722. front: {
  28723. height: math.unit(5 + 6 / 12, "feet"),
  28724. weight: math.unit(150, "lb"),
  28725. name: "Front",
  28726. image: {
  28727. source: "./media/characters/theo/front.svg",
  28728. extra: 1184 / 1131,
  28729. bottom: 7.4 / 1191
  28730. }
  28731. },
  28732. },
  28733. [
  28734. {
  28735. name: "Micro",
  28736. height: math.unit(5, "inches")
  28737. },
  28738. {
  28739. name: "Normal",
  28740. height: math.unit(5 + 6 / 12, "feet"),
  28741. default: true
  28742. },
  28743. ]
  28744. ))
  28745. characterMakers.push(() => makeCharacter(
  28746. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28747. {
  28748. front: {
  28749. height: math.unit(5 + 9 / 12, "feet"),
  28750. weight: math.unit(130, "lb"),
  28751. name: "Front",
  28752. image: {
  28753. source: "./media/characters/cecelia-swift/front.svg",
  28754. extra: 502 / 484,
  28755. bottom: 23 / 523
  28756. }
  28757. },
  28758. back: {
  28759. height: math.unit(5 + 9 / 12, "feet"),
  28760. weight: math.unit(130, "lb"),
  28761. name: "Back",
  28762. image: {
  28763. source: "./media/characters/cecelia-swift/back.svg",
  28764. extra: 499 / 485,
  28765. bottom: 12 / 511
  28766. }
  28767. },
  28768. head: {
  28769. height: math.unit(0.90, "feet"),
  28770. name: "Head",
  28771. image: {
  28772. source: "./media/characters/cecelia-swift/head.svg"
  28773. }
  28774. },
  28775. rump: {
  28776. height: math.unit(1.75, "feet"),
  28777. name: "Rump",
  28778. image: {
  28779. source: "./media/characters/cecelia-swift/rump.svg"
  28780. }
  28781. },
  28782. },
  28783. [
  28784. {
  28785. name: "Normal",
  28786. height: math.unit(5 + 9 / 12, "feet"),
  28787. default: true
  28788. },
  28789. {
  28790. name: "Big",
  28791. height: math.unit(50, "feet")
  28792. },
  28793. {
  28794. name: "Macro",
  28795. height: math.unit(100, "feet")
  28796. },
  28797. {
  28798. name: "Macro+",
  28799. height: math.unit(500, "feet")
  28800. },
  28801. {
  28802. name: "Macro++",
  28803. height: math.unit(1000, "feet")
  28804. },
  28805. ]
  28806. ))
  28807. characterMakers.push(() => makeCharacter(
  28808. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28809. {
  28810. front: {
  28811. height: math.unit(6, "feet"),
  28812. weight: math.unit(150, "lb"),
  28813. name: "Front",
  28814. image: {
  28815. source: "./media/characters/kaunan/front.svg",
  28816. extra: 2890 / 2523,
  28817. bottom: 49 / 2939
  28818. }
  28819. },
  28820. },
  28821. [
  28822. {
  28823. name: "Macro",
  28824. height: math.unit(150, "feet"),
  28825. default: true
  28826. },
  28827. ]
  28828. ))
  28829. characterMakers.push(() => makeCharacter(
  28830. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28831. {
  28832. front: {
  28833. height: math.unit(175, "cm"),
  28834. weight: math.unit(60, "kg"),
  28835. name: "Front",
  28836. image: {
  28837. source: "./media/characters/fei/front.svg",
  28838. extra: 1873/1723,
  28839. bottom: 53/1926
  28840. }
  28841. },
  28842. },
  28843. [
  28844. {
  28845. name: "Mortal",
  28846. height: math.unit(175, "cm")
  28847. },
  28848. {
  28849. name: "Normal",
  28850. height: math.unit(3500, "m"),
  28851. default: true
  28852. },
  28853. {
  28854. name: "Stroll",
  28855. height: math.unit(17.5, "km")
  28856. },
  28857. {
  28858. name: "Showoff",
  28859. height: math.unit(175, "km")
  28860. },
  28861. ]
  28862. ))
  28863. characterMakers.push(() => makeCharacter(
  28864. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28865. {
  28866. front: {
  28867. height: math.unit(7, "feet"),
  28868. weight: math.unit(1000, "kg"),
  28869. name: "Front",
  28870. image: {
  28871. source: "./media/characters/edrax/front.svg",
  28872. extra: 2838 / 2550,
  28873. bottom: 130 / 2968
  28874. }
  28875. },
  28876. },
  28877. [
  28878. {
  28879. name: "Small",
  28880. height: math.unit(7, "feet")
  28881. },
  28882. {
  28883. name: "Normal",
  28884. height: math.unit(1500, "meters")
  28885. },
  28886. {
  28887. name: "Mega",
  28888. height: math.unit(12000000, "km"),
  28889. default: true
  28890. },
  28891. {
  28892. name: "Megamacro",
  28893. height: math.unit(10600000, "lightyears")
  28894. },
  28895. {
  28896. name: "Hypermacro",
  28897. height: math.unit(256, "yottameters")
  28898. },
  28899. ]
  28900. ))
  28901. characterMakers.push(() => makeCharacter(
  28902. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28903. {
  28904. front: {
  28905. height: math.unit(10, "feet"),
  28906. weight: math.unit(750, "lb"),
  28907. name: "Front",
  28908. image: {
  28909. source: "./media/characters/clove/front.svg",
  28910. extra: 1918/1751,
  28911. bottom: 52/1970
  28912. }
  28913. },
  28914. back: {
  28915. height: math.unit(10, "feet"),
  28916. weight: math.unit(750, "lb"),
  28917. name: "Back",
  28918. image: {
  28919. source: "./media/characters/clove/back.svg",
  28920. extra: 1912/1747,
  28921. bottom: 50/1962
  28922. }
  28923. },
  28924. },
  28925. [
  28926. {
  28927. name: "Normal",
  28928. height: math.unit(10, "feet"),
  28929. default: true
  28930. },
  28931. ]
  28932. ))
  28933. characterMakers.push(() => makeCharacter(
  28934. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28935. {
  28936. front: {
  28937. height: math.unit(4, "feet"),
  28938. weight: math.unit(50, "lb"),
  28939. name: "Front",
  28940. image: {
  28941. source: "./media/characters/alex-rabbit/front.svg",
  28942. extra: 507 / 458,
  28943. bottom: 18.5 / 527
  28944. }
  28945. },
  28946. back: {
  28947. height: math.unit(4, "feet"),
  28948. weight: math.unit(50, "lb"),
  28949. name: "Back",
  28950. image: {
  28951. source: "./media/characters/alex-rabbit/back.svg",
  28952. extra: 502 / 460,
  28953. bottom: 18.9 / 521
  28954. }
  28955. },
  28956. },
  28957. [
  28958. {
  28959. name: "Normal",
  28960. height: math.unit(4, "feet"),
  28961. default: true
  28962. },
  28963. ]
  28964. ))
  28965. characterMakers.push(() => makeCharacter(
  28966. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28967. {
  28968. front: {
  28969. height: math.unit(1 + 3 / 12, "feet"),
  28970. weight: math.unit(80, "lb"),
  28971. name: "Front",
  28972. image: {
  28973. source: "./media/characters/zander-rose/front.svg",
  28974. extra: 916 / 797,
  28975. bottom: 17 / 933
  28976. }
  28977. },
  28978. back: {
  28979. height: math.unit(1 + 3 / 12, "feet"),
  28980. weight: math.unit(80, "lb"),
  28981. name: "Back",
  28982. image: {
  28983. source: "./media/characters/zander-rose/back.svg",
  28984. extra: 903 / 779,
  28985. bottom: 31 / 934
  28986. }
  28987. },
  28988. },
  28989. [
  28990. {
  28991. name: "Normal",
  28992. height: math.unit(1 + 3 / 12, "feet"),
  28993. default: true
  28994. },
  28995. ]
  28996. ))
  28997. characterMakers.push(() => makeCharacter(
  28998. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28999. {
  29000. anthro: {
  29001. height: math.unit(6, "feet"),
  29002. weight: math.unit(150, "lb"),
  29003. name: "Anthro",
  29004. image: {
  29005. source: "./media/characters/razz/anthro.svg",
  29006. extra: 1437 / 1343,
  29007. bottom: 48 / 1485
  29008. }
  29009. },
  29010. feral: {
  29011. height: math.unit(6, "feet"),
  29012. weight: math.unit(150, "lb"),
  29013. name: "Feral",
  29014. image: {
  29015. source: "./media/characters/razz/feral.svg",
  29016. extra: 2569 / 1385,
  29017. bottom: 95 / 2664
  29018. }
  29019. },
  29020. },
  29021. [
  29022. {
  29023. name: "Normal",
  29024. height: math.unit(6, "feet"),
  29025. default: true
  29026. },
  29027. ]
  29028. ))
  29029. characterMakers.push(() => makeCharacter(
  29030. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29031. {
  29032. front: {
  29033. height: math.unit(9 + 4 / 12, "feet"),
  29034. weight: math.unit(500, "lb"),
  29035. name: "Front",
  29036. image: {
  29037. source: "./media/characters/morrigan/front.svg",
  29038. extra: 2707 / 2579,
  29039. bottom: 156 / 2863
  29040. }
  29041. },
  29042. },
  29043. [
  29044. {
  29045. name: "Normal",
  29046. height: math.unit(9 + 4 / 12, "feet"),
  29047. default: true
  29048. },
  29049. ]
  29050. ))
  29051. characterMakers.push(() => makeCharacter(
  29052. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29053. {
  29054. front: {
  29055. height: math.unit(5, "stories"),
  29056. weight: math.unit(4000, "lb"),
  29057. name: "Front",
  29058. image: {
  29059. source: "./media/characters/jenene/front.svg",
  29060. extra: 1780 / 1710,
  29061. bottom: 57 / 1837
  29062. }
  29063. },
  29064. },
  29065. [
  29066. {
  29067. name: "Normal",
  29068. height: math.unit(5, "stories"),
  29069. default: true
  29070. },
  29071. ]
  29072. ))
  29073. characterMakers.push(() => makeCharacter(
  29074. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29075. {
  29076. taurSfw: {
  29077. height: math.unit(10, "meters"),
  29078. weight: math.unit(17500, "kg"),
  29079. name: "Taur",
  29080. image: {
  29081. source: "./media/characters/faey/taur-sfw.svg",
  29082. extra: 1200 / 968,
  29083. bottom: 41 / 1241
  29084. }
  29085. },
  29086. chestmaw: {
  29087. height: math.unit(2.01, "meters"),
  29088. name: "Chestmaw",
  29089. image: {
  29090. source: "./media/characters/faey/chestmaw.svg"
  29091. }
  29092. },
  29093. foot: {
  29094. height: math.unit(2.43, "meters"),
  29095. name: "Foot",
  29096. image: {
  29097. source: "./media/characters/faey/foot.svg"
  29098. }
  29099. },
  29100. jaws: {
  29101. height: math.unit(1.66, "meters"),
  29102. name: "Jaws",
  29103. image: {
  29104. source: "./media/characters/faey/jaws.svg"
  29105. }
  29106. },
  29107. tongues: {
  29108. height: math.unit(2.01, "meters"),
  29109. name: "Tongues",
  29110. image: {
  29111. source: "./media/characters/faey/tongues.svg"
  29112. }
  29113. },
  29114. },
  29115. [
  29116. {
  29117. name: "Small",
  29118. height: math.unit(10, "meters"),
  29119. default: true
  29120. },
  29121. {
  29122. name: "Big",
  29123. height: math.unit(500000, "km")
  29124. },
  29125. ]
  29126. ))
  29127. characterMakers.push(() => makeCharacter(
  29128. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29129. {
  29130. front: {
  29131. height: math.unit(7, "feet"),
  29132. weight: math.unit(275, "lb"),
  29133. name: "Front",
  29134. image: {
  29135. source: "./media/characters/roku/front.svg",
  29136. extra: 903 / 878,
  29137. bottom: 37 / 940
  29138. }
  29139. },
  29140. },
  29141. [
  29142. {
  29143. name: "Normal",
  29144. height: math.unit(7, "feet"),
  29145. default: true
  29146. },
  29147. {
  29148. name: "Macro",
  29149. height: math.unit(500, "feet")
  29150. },
  29151. {
  29152. name: "Megamacro",
  29153. height: math.unit(200, "miles")
  29154. },
  29155. ]
  29156. ))
  29157. characterMakers.push(() => makeCharacter(
  29158. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29159. {
  29160. front: {
  29161. height: math.unit(6 + 2 / 12, "feet"),
  29162. weight: math.unit(150, "lb"),
  29163. name: "Front",
  29164. image: {
  29165. source: "./media/characters/lira/front.svg",
  29166. extra: 1727 / 1605,
  29167. bottom: 26 / 1753
  29168. }
  29169. },
  29170. back: {
  29171. height: math.unit(6 + 2 / 12, "feet"),
  29172. weight: math.unit(150, "lb"),
  29173. name: "Back",
  29174. image: {
  29175. source: "./media/characters/lira/back.svg",
  29176. extra: 1713/1621,
  29177. bottom: 20/1733
  29178. }
  29179. },
  29180. hand: {
  29181. height: math.unit(0.75, "feet"),
  29182. name: "Hand",
  29183. image: {
  29184. source: "./media/characters/lira/hand.svg"
  29185. }
  29186. },
  29187. maw: {
  29188. height: math.unit(0.65, "feet"),
  29189. name: "Maw",
  29190. image: {
  29191. source: "./media/characters/lira/maw.svg"
  29192. }
  29193. },
  29194. pawDigi: {
  29195. height: math.unit(1.6, "feet"),
  29196. name: "Paw Digi",
  29197. image: {
  29198. source: "./media/characters/lira/paw-digi.svg"
  29199. }
  29200. },
  29201. pawPlanti: {
  29202. height: math.unit(1.4, "feet"),
  29203. name: "Paw Planti",
  29204. image: {
  29205. source: "./media/characters/lira/paw-planti.svg"
  29206. }
  29207. },
  29208. },
  29209. [
  29210. {
  29211. name: "Normal",
  29212. height: math.unit(6 + 2 / 12, "feet"),
  29213. default: true
  29214. },
  29215. {
  29216. name: "Macro",
  29217. height: math.unit(100, "feet")
  29218. },
  29219. {
  29220. name: "Macro²",
  29221. height: math.unit(1600, "feet")
  29222. },
  29223. {
  29224. name: "Planetary",
  29225. height: math.unit(20, "earths")
  29226. },
  29227. ]
  29228. ))
  29229. characterMakers.push(() => makeCharacter(
  29230. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29231. {
  29232. front: {
  29233. height: math.unit(6, "feet"),
  29234. weight: math.unit(150, "lb"),
  29235. name: "Front",
  29236. image: {
  29237. source: "./media/characters/hadjet/front.svg",
  29238. extra: 1480 / 1346,
  29239. bottom: 26 / 1506
  29240. }
  29241. },
  29242. frontNsfw: {
  29243. height: math.unit(6, "feet"),
  29244. weight: math.unit(150, "lb"),
  29245. name: "Front (NSFW)",
  29246. image: {
  29247. source: "./media/characters/hadjet/front-nsfw.svg",
  29248. extra: 1440 / 1358,
  29249. bottom: 52 / 1492
  29250. }
  29251. },
  29252. },
  29253. [
  29254. {
  29255. name: "Macro",
  29256. height: math.unit(10, "stories"),
  29257. default: true
  29258. },
  29259. {
  29260. name: "Megamacro",
  29261. height: math.unit(1.5, "miles")
  29262. },
  29263. {
  29264. name: "Megamacro+",
  29265. height: math.unit(5, "miles")
  29266. },
  29267. ]
  29268. ))
  29269. characterMakers.push(() => makeCharacter(
  29270. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29271. {
  29272. side: {
  29273. height: math.unit(106, "feet"),
  29274. weight: math.unit(500, "tonnes"),
  29275. name: "Side",
  29276. image: {
  29277. source: "./media/characters/kodran/side.svg",
  29278. extra: 553 / 480,
  29279. bottom: 33 / 586
  29280. }
  29281. },
  29282. front: {
  29283. height: math.unit(132, "feet"),
  29284. weight: math.unit(500, "tonnes"),
  29285. name: "Front",
  29286. image: {
  29287. source: "./media/characters/kodran/front.svg",
  29288. extra: 667 / 643,
  29289. bottom: 42 / 709
  29290. }
  29291. },
  29292. flying: {
  29293. height: math.unit(350, "feet"),
  29294. weight: math.unit(500, "tonnes"),
  29295. name: "Flying",
  29296. image: {
  29297. source: "./media/characters/kodran/flying.svg"
  29298. }
  29299. },
  29300. foot: {
  29301. height: math.unit(33, "feet"),
  29302. name: "Foot",
  29303. image: {
  29304. source: "./media/characters/kodran/foot.svg"
  29305. }
  29306. },
  29307. footFront: {
  29308. height: math.unit(19, "feet"),
  29309. name: "Foot (Front)",
  29310. image: {
  29311. source: "./media/characters/kodran/foot-front.svg",
  29312. extra: 261 / 261,
  29313. bottom: 91 / 352
  29314. }
  29315. },
  29316. headFront: {
  29317. height: math.unit(53, "feet"),
  29318. name: "Head (Front)",
  29319. image: {
  29320. source: "./media/characters/kodran/head-front.svg"
  29321. }
  29322. },
  29323. headSide: {
  29324. height: math.unit(65, "feet"),
  29325. name: "Head (Side)",
  29326. image: {
  29327. source: "./media/characters/kodran/head-side.svg"
  29328. }
  29329. },
  29330. throat: {
  29331. height: math.unit(79, "feet"),
  29332. name: "Throat",
  29333. image: {
  29334. source: "./media/characters/kodran/throat.svg"
  29335. }
  29336. },
  29337. },
  29338. [
  29339. {
  29340. name: "Large",
  29341. height: math.unit(106, "feet"),
  29342. default: true
  29343. },
  29344. ]
  29345. ))
  29346. characterMakers.push(() => makeCharacter(
  29347. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29348. {
  29349. side: {
  29350. height: math.unit(11, "feet"),
  29351. weight: math.unit(150, "lb"),
  29352. name: "Side",
  29353. image: {
  29354. source: "./media/characters/pyxaron/side.svg",
  29355. extra: 305 / 195,
  29356. bottom: 17 / 322
  29357. }
  29358. },
  29359. },
  29360. [
  29361. {
  29362. name: "Normal",
  29363. height: math.unit(11, "feet"),
  29364. default: true
  29365. },
  29366. ]
  29367. ))
  29368. characterMakers.push(() => makeCharacter(
  29369. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29370. {
  29371. front: {
  29372. height: math.unit(6, "feet"),
  29373. weight: math.unit(150, "lb"),
  29374. name: "Front",
  29375. image: {
  29376. source: "./media/characters/meep/front.svg",
  29377. extra: 88 / 80,
  29378. bottom: 6 / 94
  29379. }
  29380. },
  29381. },
  29382. [
  29383. {
  29384. name: "Fun Sized",
  29385. height: math.unit(2, "inches"),
  29386. default: true
  29387. },
  29388. {
  29389. name: "Friend Sized",
  29390. height: math.unit(8, "inches")
  29391. },
  29392. ]
  29393. ))
  29394. characterMakers.push(() => makeCharacter(
  29395. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29396. {
  29397. front: {
  29398. height: math.unit(15, "feet"),
  29399. weight: math.unit(2500, "lb"),
  29400. name: "Front",
  29401. image: {
  29402. source: "./media/characters/holly-rabbit/front.svg",
  29403. extra: 1433 / 1233,
  29404. bottom: 125 / 1558
  29405. }
  29406. },
  29407. dick: {
  29408. height: math.unit(4.6, "feet"),
  29409. name: "Dick",
  29410. image: {
  29411. source: "./media/characters/holly-rabbit/dick.svg"
  29412. }
  29413. },
  29414. },
  29415. [
  29416. {
  29417. name: "Normal",
  29418. height: math.unit(15, "feet"),
  29419. default: true
  29420. },
  29421. {
  29422. name: "Macro",
  29423. height: math.unit(250, "feet")
  29424. },
  29425. {
  29426. name: "Macro+",
  29427. height: math.unit(2500, "feet")
  29428. },
  29429. ]
  29430. ))
  29431. characterMakers.push(() => makeCharacter(
  29432. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29433. {
  29434. front: {
  29435. height: math.unit(3.02, "meters"),
  29436. weight: math.unit(500, "kg"),
  29437. name: "Front",
  29438. image: {
  29439. source: "./media/characters/drena/front.svg",
  29440. extra: 282 / 243,
  29441. bottom: 8 / 290
  29442. }
  29443. },
  29444. side: {
  29445. height: math.unit(3.02, "meters"),
  29446. weight: math.unit(500, "kg"),
  29447. name: "Side",
  29448. image: {
  29449. source: "./media/characters/drena/side.svg",
  29450. extra: 280 / 245,
  29451. bottom: 10 / 290
  29452. }
  29453. },
  29454. back: {
  29455. height: math.unit(3.02, "meters"),
  29456. weight: math.unit(500, "kg"),
  29457. name: "Back",
  29458. image: {
  29459. source: "./media/characters/drena/back.svg",
  29460. extra: 278 / 243,
  29461. bottom: 2 / 280
  29462. }
  29463. },
  29464. foot: {
  29465. height: math.unit(0.75, "meters"),
  29466. name: "Foot",
  29467. image: {
  29468. source: "./media/characters/drena/foot.svg"
  29469. }
  29470. },
  29471. maw: {
  29472. height: math.unit(0.82, "meters"),
  29473. name: "Maw",
  29474. image: {
  29475. source: "./media/characters/drena/maw.svg"
  29476. }
  29477. },
  29478. eating: {
  29479. height: math.unit(0.75, "meters"),
  29480. name: "Eating",
  29481. image: {
  29482. source: "./media/characters/drena/eating.svg"
  29483. }
  29484. },
  29485. rump: {
  29486. height: math.unit(0.93, "meters"),
  29487. name: "Rump",
  29488. image: {
  29489. source: "./media/characters/drena/rump.svg"
  29490. }
  29491. },
  29492. },
  29493. [
  29494. {
  29495. name: "Normal",
  29496. height: math.unit(3.02, "meters"),
  29497. default: true
  29498. },
  29499. ]
  29500. ))
  29501. characterMakers.push(() => makeCharacter(
  29502. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29503. {
  29504. front: {
  29505. height: math.unit(6 + 4 / 12, "feet"),
  29506. weight: math.unit(250, "lb"),
  29507. name: "Front",
  29508. image: {
  29509. source: "./media/characters/remmyzilla/front.svg",
  29510. extra: 4033 / 3588,
  29511. bottom: 123 / 4156
  29512. }
  29513. },
  29514. back: {
  29515. height: math.unit(6 + 4 / 12, "feet"),
  29516. weight: math.unit(250, "lb"),
  29517. name: "Back",
  29518. image: {
  29519. source: "./media/characters/remmyzilla/back.svg",
  29520. extra: 2687 / 2555,
  29521. bottom: 48 / 2735
  29522. }
  29523. },
  29524. paw: {
  29525. height: math.unit(1.73, "feet"),
  29526. name: "Paw",
  29527. image: {
  29528. source: "./media/characters/remmyzilla/paw.svg"
  29529. }
  29530. },
  29531. maw: {
  29532. height: math.unit(1.73, "feet"),
  29533. name: "Maw",
  29534. image: {
  29535. source: "./media/characters/remmyzilla/maw.svg"
  29536. }
  29537. },
  29538. },
  29539. [
  29540. {
  29541. name: "Normal",
  29542. height: math.unit(6 + 4 / 12, "feet")
  29543. },
  29544. {
  29545. name: "Minimacro",
  29546. height: math.unit(12 + 8 / 12, "feet")
  29547. },
  29548. {
  29549. name: "Normal",
  29550. height: math.unit(640, "feet"),
  29551. default: true
  29552. },
  29553. {
  29554. name: "Megamacro",
  29555. height: math.unit(6400, "feet")
  29556. },
  29557. {
  29558. name: "Gigamacro",
  29559. height: math.unit(64000, "miles")
  29560. },
  29561. ]
  29562. ))
  29563. characterMakers.push(() => makeCharacter(
  29564. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29565. {
  29566. front: {
  29567. height: math.unit(2.5, "meters"),
  29568. weight: math.unit(300, "lb"),
  29569. name: "Front",
  29570. image: {
  29571. source: "./media/characters/lawrence/front.svg",
  29572. extra: 357 / 335,
  29573. bottom: 30 / 387
  29574. }
  29575. },
  29576. back: {
  29577. height: math.unit(2.5, "meters"),
  29578. weight: math.unit(300, "lb"),
  29579. name: "Back",
  29580. image: {
  29581. source: "./media/characters/lawrence/back.svg",
  29582. extra: 357 / 338,
  29583. bottom: 16 / 373
  29584. }
  29585. },
  29586. head: {
  29587. height: math.unit(0.9, "meter"),
  29588. name: "Head",
  29589. image: {
  29590. source: "./media/characters/lawrence/head.svg"
  29591. }
  29592. },
  29593. maw: {
  29594. height: math.unit(0.7, "meter"),
  29595. name: "Maw",
  29596. image: {
  29597. source: "./media/characters/lawrence/maw.svg"
  29598. }
  29599. },
  29600. footBottom: {
  29601. height: math.unit(0.5, "meter"),
  29602. name: "Foot (Bottom)",
  29603. image: {
  29604. source: "./media/characters/lawrence/foot-bottom.svg"
  29605. }
  29606. },
  29607. footTop: {
  29608. height: math.unit(0.5, "meter"),
  29609. name: "Foot (Top)",
  29610. image: {
  29611. source: "./media/characters/lawrence/foot-top.svg"
  29612. }
  29613. },
  29614. },
  29615. [
  29616. {
  29617. name: "Normal",
  29618. height: math.unit(2.5, "meters"),
  29619. default: true
  29620. },
  29621. {
  29622. name: "Macro",
  29623. height: math.unit(95, "meters")
  29624. },
  29625. {
  29626. name: "Megamacro",
  29627. height: math.unit(150, "km")
  29628. },
  29629. ]
  29630. ))
  29631. characterMakers.push(() => makeCharacter(
  29632. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29633. {
  29634. front: {
  29635. height: math.unit(4.2, "meters"),
  29636. name: "Front",
  29637. image: {
  29638. source: "./media/characters/sydney/front.svg",
  29639. extra: 1323 / 1277,
  29640. bottom: 111 / 1434
  29641. }
  29642. },
  29643. },
  29644. [
  29645. {
  29646. name: "Normal",
  29647. height: math.unit(4.2, "meters"),
  29648. default: true
  29649. },
  29650. ]
  29651. ))
  29652. characterMakers.push(() => makeCharacter(
  29653. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29654. {
  29655. back: {
  29656. height: math.unit(201, "feet"),
  29657. name: "Back",
  29658. image: {
  29659. source: "./media/characters/jessica/back.svg",
  29660. extra: 273 / 259,
  29661. bottom: 7 / 280
  29662. }
  29663. },
  29664. },
  29665. [
  29666. {
  29667. name: "Normal",
  29668. height: math.unit(201, "feet"),
  29669. default: true
  29670. },
  29671. {
  29672. name: "Megamacro",
  29673. height: math.unit(8, "miles")
  29674. },
  29675. ]
  29676. ))
  29677. characterMakers.push(() => makeCharacter(
  29678. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29679. {
  29680. side: {
  29681. height: math.unit(5.6, "m"),
  29682. weight: math.unit(8000, "kg"),
  29683. name: "Side",
  29684. image: {
  29685. source: "./media/characters/victoria/side.svg",
  29686. extra: 1542/1229,
  29687. bottom: 124/1666
  29688. }
  29689. },
  29690. maw: {
  29691. height: math.unit(7.14, "feet"),
  29692. name: "Maw",
  29693. image: {
  29694. source: "./media/characters/victoria/maw.svg"
  29695. }
  29696. },
  29697. },
  29698. [
  29699. {
  29700. name: "Normal",
  29701. height: math.unit(5.6, "m"),
  29702. default: true
  29703. },
  29704. ]
  29705. ))
  29706. characterMakers.push(() => makeCharacter(
  29707. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29708. {
  29709. front: {
  29710. height: math.unit(5 + 6 / 12, "feet"),
  29711. name: "Front",
  29712. image: {
  29713. source: "./media/characters/cat/front.svg",
  29714. extra: 1449/1295,
  29715. bottom: 34/1483
  29716. },
  29717. form: "cat",
  29718. default: true
  29719. },
  29720. back: {
  29721. height: math.unit(5 + 6 / 12, "feet"),
  29722. name: "Back",
  29723. image: {
  29724. source: "./media/characters/cat/back.svg",
  29725. extra: 1466/1301,
  29726. bottom: 19/1485
  29727. },
  29728. form: "cat"
  29729. },
  29730. taur: {
  29731. height: math.unit(7, "feet"),
  29732. name: "Taur",
  29733. image: {
  29734. source: "./media/characters/cat/taur.svg",
  29735. extra: 1389/1233,
  29736. bottom: 83/1472
  29737. },
  29738. form: "taur",
  29739. default: true
  29740. },
  29741. lucarioFront: {
  29742. height: math.unit(4, "feet"),
  29743. name: "Lucario (Front)",
  29744. image: {
  29745. source: "./media/characters/cat/lucario-front.svg",
  29746. extra: 1149/1019,
  29747. bottom: 84/1233
  29748. },
  29749. form: "lucario",
  29750. default: true
  29751. },
  29752. lucarioBack: {
  29753. height: math.unit(4, "feet"),
  29754. name: "Lucario (Back)",
  29755. image: {
  29756. source: "./media/characters/cat/lucario-back.svg",
  29757. extra: 1190/1059,
  29758. bottom: 33/1223
  29759. },
  29760. form: "lucario"
  29761. },
  29762. megaLucario: {
  29763. height: math.unit(4, "feet"),
  29764. name: "Mega Lucario",
  29765. image: {
  29766. source: "./media/characters/cat/mega-lucario.svg",
  29767. extra: 1515 / 1319,
  29768. bottom: 63 / 1578
  29769. },
  29770. form: "lucario"
  29771. },
  29772. nickit: {
  29773. height: math.unit(2, "feet"),
  29774. name: "Nickit",
  29775. image: {
  29776. source: "./media/characters/cat/nickit.svg",
  29777. extra: 1980 / 1585,
  29778. bottom: 102 / 2082
  29779. },
  29780. form: "nickit",
  29781. default: true
  29782. },
  29783. lopunnyFront: {
  29784. height: math.unit(5, "feet"),
  29785. name: "Lopunny (Front)",
  29786. image: {
  29787. source: "./media/characters/cat/lopunny-front.svg",
  29788. extra: 1782 / 1469,
  29789. bottom: 38 / 1820
  29790. },
  29791. form: "lopunny",
  29792. default: true
  29793. },
  29794. lopunnyBack: {
  29795. height: math.unit(5, "feet"),
  29796. name: "Lopunny (Back)",
  29797. image: {
  29798. source: "./media/characters/cat/lopunny-back.svg",
  29799. extra: 1660 / 1490,
  29800. bottom: 25 / 1685
  29801. },
  29802. form: "lopunny"
  29803. },
  29804. },
  29805. [
  29806. {
  29807. name: "Really small",
  29808. height: math.unit(1, "nm")
  29809. },
  29810. {
  29811. name: "Micro",
  29812. height: math.unit(5, "inches")
  29813. },
  29814. {
  29815. name: "Normal",
  29816. height: math.unit(5 + 6 / 12, "feet"),
  29817. default: true
  29818. },
  29819. {
  29820. name: "Macro",
  29821. height: math.unit(50, "feet")
  29822. },
  29823. {
  29824. name: "Macro+",
  29825. height: math.unit(150, "feet")
  29826. },
  29827. {
  29828. name: "Megamacro",
  29829. height: math.unit(100, "miles")
  29830. },
  29831. ]
  29832. ))
  29833. characterMakers.push(() => makeCharacter(
  29834. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29835. {
  29836. front: {
  29837. height: math.unit(63.4, "meters"),
  29838. weight: math.unit(3.28349e+6, "kilograms"),
  29839. name: "Front",
  29840. image: {
  29841. source: "./media/characters/kirina-violet/front.svg",
  29842. extra: 2812 / 2725,
  29843. bottom: 0 / 2812
  29844. }
  29845. },
  29846. back: {
  29847. height: math.unit(63.4, "meters"),
  29848. weight: math.unit(3.28349e+6, "kilograms"),
  29849. name: "Back",
  29850. image: {
  29851. source: "./media/characters/kirina-violet/back.svg",
  29852. extra: 2812 / 2725,
  29853. bottom: 0 / 2812
  29854. }
  29855. },
  29856. mouth: {
  29857. height: math.unit(4.35, "meters"),
  29858. name: "Mouth",
  29859. image: {
  29860. source: "./media/characters/kirina-violet/mouth.svg"
  29861. }
  29862. },
  29863. paw: {
  29864. height: math.unit(5.6, "meters"),
  29865. name: "Paw",
  29866. image: {
  29867. source: "./media/characters/kirina-violet/paw.svg"
  29868. }
  29869. },
  29870. tail: {
  29871. height: math.unit(18, "meters"),
  29872. name: "Tail",
  29873. image: {
  29874. source: "./media/characters/kirina-violet/tail.svg"
  29875. }
  29876. },
  29877. },
  29878. [
  29879. {
  29880. name: "Macro",
  29881. height: math.unit(63.4, "meters"),
  29882. default: true
  29883. },
  29884. ]
  29885. ))
  29886. characterMakers.push(() => makeCharacter(
  29887. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29888. {
  29889. front: {
  29890. height: math.unit(75, "feet"),
  29891. name: "Front",
  29892. image: {
  29893. source: "./media/characters/cat-gigachu/front.svg",
  29894. extra: 1239/1027,
  29895. bottom: 32/1271
  29896. }
  29897. },
  29898. back: {
  29899. height: math.unit(75, "feet"),
  29900. name: "Back",
  29901. image: {
  29902. source: "./media/characters/cat-gigachu/back.svg",
  29903. extra: 1229/1030,
  29904. bottom: 9/1238
  29905. }
  29906. },
  29907. },
  29908. [
  29909. {
  29910. name: "Dynamax",
  29911. height: math.unit(75, "feet"),
  29912. default: true
  29913. },
  29914. ]
  29915. ))
  29916. characterMakers.push(() => makeCharacter(
  29917. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29918. {
  29919. front: {
  29920. height: math.unit(6, "feet"),
  29921. weight: math.unit(150, "lb"),
  29922. name: "Front",
  29923. image: {
  29924. source: "./media/characters/sfaiyan/front.svg",
  29925. extra: 999 / 978,
  29926. bottom: 5 / 1004
  29927. }
  29928. },
  29929. },
  29930. [
  29931. {
  29932. name: "Normal",
  29933. height: math.unit(1.82, "meters")
  29934. },
  29935. {
  29936. name: "Giant",
  29937. height: math.unit(2.27, "km"),
  29938. default: true
  29939. },
  29940. ]
  29941. ))
  29942. characterMakers.push(() => makeCharacter(
  29943. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29944. {
  29945. front: {
  29946. height: math.unit(179, "cm"),
  29947. weight: math.unit(100, "kg"),
  29948. name: "Front",
  29949. image: {
  29950. source: "./media/characters/raunehkeli/front.svg",
  29951. extra: 1934 / 1926,
  29952. bottom: 0 / 1934
  29953. }
  29954. },
  29955. },
  29956. [
  29957. {
  29958. name: "Normal",
  29959. height: math.unit(179, "cm")
  29960. },
  29961. {
  29962. name: "Maximum",
  29963. height: math.unit(575, "meters"),
  29964. default: true
  29965. },
  29966. ]
  29967. ))
  29968. characterMakers.push(() => makeCharacter(
  29969. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29970. {
  29971. front: {
  29972. height: math.unit(6, "feet"),
  29973. weight: math.unit(150, "lb"),
  29974. name: "Front",
  29975. image: {
  29976. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29977. extra: 2625 / 2518,
  29978. bottom: 60 / 2685
  29979. }
  29980. },
  29981. },
  29982. [
  29983. {
  29984. name: "Normal",
  29985. height: math.unit(6 + 2 / 12, "feet")
  29986. },
  29987. {
  29988. name: "Macro",
  29989. height: math.unit(1180, "feet"),
  29990. default: true
  29991. },
  29992. ]
  29993. ))
  29994. characterMakers.push(() => makeCharacter(
  29995. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29996. {
  29997. front: {
  29998. height: math.unit(5 + 6 / 12, "feet"),
  29999. weight: math.unit(108, "lb"),
  30000. name: "Front",
  30001. image: {
  30002. source: "./media/characters/lilith-zott/front.svg",
  30003. extra: 2510 / 2238,
  30004. bottom: 100 / 2610
  30005. }
  30006. },
  30007. frontDressed: {
  30008. height: math.unit(5 + 6 / 12, "feet"),
  30009. weight: math.unit(108, "lb"),
  30010. name: "Front (Dressed)",
  30011. image: {
  30012. source: "./media/characters/lilith-zott/front-dressed.svg",
  30013. extra: 2510 / 2238,
  30014. bottom: 100 / 2610
  30015. }
  30016. },
  30017. },
  30018. [
  30019. {
  30020. name: "Normal",
  30021. height: math.unit(5 + 6 / 12, "feet")
  30022. },
  30023. {
  30024. name: "Macro",
  30025. height: math.unit(1030, "feet"),
  30026. default: true
  30027. },
  30028. ]
  30029. ))
  30030. characterMakers.push(() => makeCharacter(
  30031. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30032. {
  30033. front: {
  30034. height: math.unit(6, "feet"),
  30035. weight: math.unit(150, "lb"),
  30036. name: "Front",
  30037. image: {
  30038. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30039. extra: 2567 / 2435,
  30040. bottom: 39 / 2606
  30041. }
  30042. },
  30043. frontSuper: {
  30044. height: math.unit(6, "feet"),
  30045. name: "Front (Super)",
  30046. image: {
  30047. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30048. extra: 2567 / 2435,
  30049. bottom: 39 / 2606
  30050. }
  30051. },
  30052. },
  30053. [
  30054. {
  30055. name: "Normal",
  30056. height: math.unit(5 + 10 / 12, "feet")
  30057. },
  30058. {
  30059. name: "Macro",
  30060. height: math.unit(1100, "feet"),
  30061. default: true
  30062. },
  30063. ]
  30064. ))
  30065. characterMakers.push(() => makeCharacter(
  30066. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30067. {
  30068. front: {
  30069. height: math.unit(100, "miles"),
  30070. name: "Front",
  30071. image: {
  30072. source: "./media/characters/sona/front.svg",
  30073. extra: 2433 / 2201,
  30074. bottom: 53 / 2486
  30075. }
  30076. },
  30077. foot: {
  30078. height: math.unit(16.1, "miles"),
  30079. name: "Foot",
  30080. image: {
  30081. source: "./media/characters/sona/foot.svg"
  30082. }
  30083. },
  30084. },
  30085. [
  30086. {
  30087. name: "Macro",
  30088. height: math.unit(100, "miles"),
  30089. default: true
  30090. },
  30091. ]
  30092. ))
  30093. characterMakers.push(() => makeCharacter(
  30094. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30095. {
  30096. front: {
  30097. height: math.unit(6, "feet"),
  30098. weight: math.unit(150, "lb"),
  30099. name: "Front",
  30100. image: {
  30101. source: "./media/characters/bailey/front.svg",
  30102. extra: 1778 / 1724,
  30103. bottom: 30 / 1808
  30104. }
  30105. },
  30106. },
  30107. [
  30108. {
  30109. name: "Micro",
  30110. height: math.unit(4, "inches")
  30111. },
  30112. {
  30113. name: "Normal",
  30114. height: math.unit(5 + 5 / 12, "feet"),
  30115. default: true
  30116. },
  30117. {
  30118. name: "Macro",
  30119. height: math.unit(250, "feet")
  30120. },
  30121. {
  30122. name: "Megamacro",
  30123. height: math.unit(100, "miles")
  30124. },
  30125. ]
  30126. ))
  30127. characterMakers.push(() => makeCharacter(
  30128. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30129. {
  30130. front: {
  30131. height: math.unit(5 + 2 / 12, "feet"),
  30132. weight: math.unit(120, "lb"),
  30133. name: "Front",
  30134. image: {
  30135. source: "./media/characters/snaps/front.svg",
  30136. extra: 2370 / 2177,
  30137. bottom: 48 / 2418
  30138. }
  30139. },
  30140. back: {
  30141. height: math.unit(5 + 2 / 12, "feet"),
  30142. weight: math.unit(120, "lb"),
  30143. name: "Back",
  30144. image: {
  30145. source: "./media/characters/snaps/back.svg",
  30146. extra: 2408 / 2258,
  30147. bottom: 15 / 2423
  30148. }
  30149. },
  30150. },
  30151. [
  30152. {
  30153. name: "Micro",
  30154. height: math.unit(9, "inches")
  30155. },
  30156. {
  30157. name: "Normal",
  30158. height: math.unit(5 + 2 / 12, "feet"),
  30159. default: true
  30160. },
  30161. {
  30162. name: "Mini Macro",
  30163. height: math.unit(10, "feet")
  30164. },
  30165. ]
  30166. ))
  30167. characterMakers.push(() => makeCharacter(
  30168. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30169. {
  30170. front: {
  30171. height: math.unit(1.8, "meters"),
  30172. weight: math.unit(85, "kg"),
  30173. name: "Front",
  30174. image: {
  30175. source: "./media/characters/azteck/front.svg",
  30176. extra: 2815 / 2625,
  30177. bottom: 89 / 2904
  30178. }
  30179. },
  30180. back: {
  30181. height: math.unit(1.8, "meters"),
  30182. weight: math.unit(85, "kg"),
  30183. name: "Back",
  30184. image: {
  30185. source: "./media/characters/azteck/back.svg",
  30186. extra: 2856 / 2648,
  30187. bottom: 85 / 2941
  30188. }
  30189. },
  30190. frontDressed: {
  30191. height: math.unit(1.8, "meters"),
  30192. weight: math.unit(85, "kg"),
  30193. name: "Front (Dressed)",
  30194. image: {
  30195. source: "./media/characters/azteck/front-dressed.svg",
  30196. extra: 2147 / 2003,
  30197. bottom: 68 / 2215
  30198. }
  30199. },
  30200. head: {
  30201. height: math.unit(0.47, "meters"),
  30202. weight: math.unit(85, "kg"),
  30203. name: "Head",
  30204. image: {
  30205. source: "./media/characters/azteck/head.svg"
  30206. }
  30207. },
  30208. },
  30209. [
  30210. {
  30211. name: "Bite sized",
  30212. height: math.unit(16, "cm")
  30213. },
  30214. {
  30215. name: "Normal",
  30216. height: math.unit(1.8, "meters"),
  30217. default: true
  30218. },
  30219. ]
  30220. ))
  30221. characterMakers.push(() => makeCharacter(
  30222. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30223. {
  30224. front: {
  30225. height: math.unit(6, "feet"),
  30226. weight: math.unit(150, "lb"),
  30227. name: "Front",
  30228. image: {
  30229. source: "./media/characters/pidge/front.svg",
  30230. extra: 1936/1820,
  30231. bottom: 0/1936
  30232. }
  30233. },
  30234. back: {
  30235. height: math.unit(6, "feet"),
  30236. weight: math.unit(150, "lb"),
  30237. name: "Back",
  30238. image: {
  30239. source: "./media/characters/pidge/back.svg",
  30240. extra: 1938/1843,
  30241. bottom: 0/1938
  30242. }
  30243. },
  30244. casual: {
  30245. height: math.unit(6, "feet"),
  30246. weight: math.unit(150, "lb"),
  30247. name: "Casual",
  30248. image: {
  30249. source: "./media/characters/pidge/casual.svg",
  30250. extra: 1936/1820,
  30251. bottom: 0/1936
  30252. }
  30253. },
  30254. tech: {
  30255. height: math.unit(6, "feet"),
  30256. weight: math.unit(150, "lb"),
  30257. name: "Tech",
  30258. image: {
  30259. source: "./media/characters/pidge/tech.svg",
  30260. extra: 1802/1682,
  30261. bottom: 0/1802
  30262. }
  30263. },
  30264. head: {
  30265. height: math.unit(1.61, "feet"),
  30266. name: "Head",
  30267. image: {
  30268. source: "./media/characters/pidge/head.svg"
  30269. }
  30270. },
  30271. collar: {
  30272. height: math.unit(0.82, "feet"),
  30273. name: "Collar",
  30274. image: {
  30275. source: "./media/characters/pidge/collar.svg"
  30276. }
  30277. },
  30278. },
  30279. [
  30280. {
  30281. name: "Macro",
  30282. height: math.unit(2, "mile"),
  30283. default: true
  30284. },
  30285. {
  30286. name: "PUPPY",
  30287. height: math.unit(20, "miles")
  30288. },
  30289. ]
  30290. ))
  30291. characterMakers.push(() => makeCharacter(
  30292. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30293. {
  30294. front: {
  30295. height: math.unit(6, "feet"),
  30296. weight: math.unit(150, "lb"),
  30297. name: "Front",
  30298. image: {
  30299. source: "./media/characters/en/front.svg",
  30300. extra: 1697 / 1563,
  30301. bottom: 103 / 1800
  30302. }
  30303. },
  30304. back: {
  30305. height: math.unit(6, "feet"),
  30306. weight: math.unit(150, "lb"),
  30307. name: "Back",
  30308. image: {
  30309. source: "./media/characters/en/back.svg",
  30310. extra: 1700 / 1570,
  30311. bottom: 51 / 1751
  30312. }
  30313. },
  30314. frontDressed: {
  30315. height: math.unit(6, "feet"),
  30316. weight: math.unit(150, "lb"),
  30317. name: "Front (Dressed)",
  30318. image: {
  30319. source: "./media/characters/en/front-dressed.svg",
  30320. extra: 1697 / 1563,
  30321. bottom: 103 / 1800
  30322. }
  30323. },
  30324. backDressed: {
  30325. height: math.unit(6, "feet"),
  30326. weight: math.unit(150, "lb"),
  30327. name: "Back (Dressed)",
  30328. image: {
  30329. source: "./media/characters/en/back-dressed.svg",
  30330. extra: 1700 / 1570,
  30331. bottom: 51 / 1751
  30332. }
  30333. },
  30334. },
  30335. [
  30336. {
  30337. name: "Macro",
  30338. height: math.unit(210, "feet"),
  30339. default: true
  30340. },
  30341. ]
  30342. ))
  30343. characterMakers.push(() => makeCharacter(
  30344. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30345. {
  30346. front: {
  30347. height: math.unit(6, "feet"),
  30348. weight: math.unit(150, "lb"),
  30349. name: "Front",
  30350. image: {
  30351. source: "./media/characters/haze-orris/front.svg",
  30352. extra: 3975 / 3525,
  30353. bottom: 137 / 4112
  30354. }
  30355. },
  30356. },
  30357. [
  30358. {
  30359. name: "Micro",
  30360. height: math.unit(150, "mm"),
  30361. default: true
  30362. },
  30363. ]
  30364. ))
  30365. characterMakers.push(() => makeCharacter(
  30366. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30367. {
  30368. front: {
  30369. height: math.unit(6, "feet"),
  30370. weight: math.unit(150, "lb"),
  30371. name: "Front",
  30372. image: {
  30373. source: "./media/characters/casselene-yaro/front.svg",
  30374. extra: 4721 / 4541,
  30375. bottom: 82 / 4803
  30376. }
  30377. },
  30378. back: {
  30379. height: math.unit(6, "feet"),
  30380. weight: math.unit(150, "lb"),
  30381. name: "Back",
  30382. image: {
  30383. source: "./media/characters/casselene-yaro/back.svg",
  30384. extra: 4569 / 4377,
  30385. bottom: 69 / 4638
  30386. }
  30387. },
  30388. dressed: {
  30389. height: math.unit(6, "feet"),
  30390. weight: math.unit(150, "lb"),
  30391. name: "Dressed",
  30392. image: {
  30393. source: "./media/characters/casselene-yaro/dressed.svg",
  30394. extra: 4721 / 4541,
  30395. bottom: 82 / 4803
  30396. }
  30397. },
  30398. maw: {
  30399. height: math.unit(1, "feet"),
  30400. name: "Maw",
  30401. image: {
  30402. source: "./media/characters/casselene-yaro/maw.svg"
  30403. }
  30404. },
  30405. },
  30406. [
  30407. {
  30408. name: "Macro",
  30409. height: math.unit(190, "feet"),
  30410. default: true
  30411. },
  30412. ]
  30413. ))
  30414. characterMakers.push(() => makeCharacter(
  30415. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30416. {
  30417. front: {
  30418. height: math.unit(10, "feet"),
  30419. weight: math.unit(15015, "lb"),
  30420. name: "Front",
  30421. image: {
  30422. source: "./media/characters/fem!plat/front.svg",
  30423. extra: 2799 / 2604,
  30424. bottom: 149 / 2948
  30425. }
  30426. },
  30427. },
  30428. [
  30429. {
  30430. name: "Normal",
  30431. height: math.unit(10, "feet"),
  30432. default: true
  30433. },
  30434. {
  30435. name: "Macro",
  30436. height: math.unit(100, "feet")
  30437. },
  30438. {
  30439. name: "Megamacro",
  30440. height: math.unit(1000, "feet")
  30441. },
  30442. ]
  30443. ))
  30444. characterMakers.push(() => makeCharacter(
  30445. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30446. {
  30447. front: {
  30448. height: math.unit(15 + 5 / 12, "feet"),
  30449. weight: math.unit(4600, "lb"),
  30450. name: "Front",
  30451. image: {
  30452. source: "./media/characters/neapolitan-ananassa/front.svg",
  30453. extra: 2903 / 2736,
  30454. bottom: 0 / 2903
  30455. }
  30456. },
  30457. side: {
  30458. height: math.unit(15 + 5 / 12, "feet"),
  30459. weight: math.unit(4600, "lb"),
  30460. name: "Side",
  30461. image: {
  30462. source: "./media/characters/neapolitan-ananassa/side.svg",
  30463. extra: 2925 / 2719,
  30464. bottom: 0 / 2925
  30465. }
  30466. },
  30467. back: {
  30468. height: math.unit(15 + 5 / 12, "feet"),
  30469. weight: math.unit(4600, "lb"),
  30470. name: "Back",
  30471. image: {
  30472. source: "./media/characters/neapolitan-ananassa/back.svg",
  30473. extra: 2903 / 2736,
  30474. bottom: 0 / 2903
  30475. }
  30476. },
  30477. },
  30478. [
  30479. {
  30480. name: "Normal",
  30481. height: math.unit(15 + 5 / 12, "feet"),
  30482. default: true
  30483. },
  30484. {
  30485. name: "Post-Millenium",
  30486. height: math.unit(35 + 5 / 12, "feet")
  30487. },
  30488. {
  30489. name: "Post-Era",
  30490. height: math.unit(450 + 5 / 12, "feet")
  30491. },
  30492. ]
  30493. ))
  30494. characterMakers.push(() => makeCharacter(
  30495. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30496. {
  30497. front: {
  30498. height: math.unit(300, "meters"),
  30499. weight: math.unit(125000, "tonnes"),
  30500. name: "Front",
  30501. image: {
  30502. source: "./media/characters/pazuzu/front.svg",
  30503. extra: 877 / 794,
  30504. bottom: 47 / 924
  30505. }
  30506. },
  30507. },
  30508. [
  30509. {
  30510. name: "Macro",
  30511. height: math.unit(300, "meters"),
  30512. default: true
  30513. },
  30514. ]
  30515. ))
  30516. characterMakers.push(() => makeCharacter(
  30517. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30518. {
  30519. side: {
  30520. height: math.unit(10 + 7 / 12, "feet"),
  30521. weight: math.unit(2.5, "tons"),
  30522. name: "Side",
  30523. image: {
  30524. source: "./media/characters/aasha/side.svg",
  30525. extra: 1345 / 1245,
  30526. bottom: 111 / 1456
  30527. }
  30528. },
  30529. back: {
  30530. height: math.unit(10 + 7 / 12, "feet"),
  30531. weight: math.unit(2.5, "tons"),
  30532. name: "Back",
  30533. image: {
  30534. source: "./media/characters/aasha/back.svg",
  30535. extra: 1133 / 1057,
  30536. bottom: 257 / 1390
  30537. }
  30538. },
  30539. },
  30540. [
  30541. {
  30542. name: "Normal",
  30543. height: math.unit(10 + 7 / 12, "feet"),
  30544. default: true
  30545. },
  30546. ]
  30547. ))
  30548. characterMakers.push(() => makeCharacter(
  30549. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30550. {
  30551. front: {
  30552. height: math.unit(6 + 3 / 12, "feet"),
  30553. name: "Front",
  30554. image: {
  30555. source: "./media/characters/nevan/front.svg",
  30556. extra: 704 / 704,
  30557. bottom: 28 / 732
  30558. }
  30559. },
  30560. back: {
  30561. height: math.unit(6 + 3 / 12, "feet"),
  30562. name: "Back",
  30563. image: {
  30564. source: "./media/characters/nevan/back.svg",
  30565. extra: 714 / 714,
  30566. bottom: 21 / 735
  30567. }
  30568. },
  30569. frontFlaccid: {
  30570. height: math.unit(6 + 3 / 12, "feet"),
  30571. name: "Front (Flaccid)",
  30572. image: {
  30573. source: "./media/characters/nevan/front-flaccid.svg",
  30574. extra: 704 / 704,
  30575. bottom: 28 / 732
  30576. }
  30577. },
  30578. frontErect: {
  30579. height: math.unit(6 + 3 / 12, "feet"),
  30580. name: "Front (Erect)",
  30581. image: {
  30582. source: "./media/characters/nevan/front-erect.svg",
  30583. extra: 704 / 704,
  30584. bottom: 28 / 732
  30585. }
  30586. },
  30587. backFlaccid: {
  30588. height: math.unit(6 + 3 / 12, "feet"),
  30589. name: "Back (Flaccid)",
  30590. image: {
  30591. source: "./media/characters/nevan/back-flaccid.svg",
  30592. extra: 714 / 714,
  30593. bottom: 21 / 735
  30594. }
  30595. },
  30596. },
  30597. [
  30598. {
  30599. name: "Normal",
  30600. height: math.unit(6 + 3 / 12, "feet"),
  30601. default: true
  30602. },
  30603. ]
  30604. ))
  30605. characterMakers.push(() => makeCharacter(
  30606. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30607. {
  30608. front: {
  30609. height: math.unit(4, "feet"),
  30610. name: "Front",
  30611. image: {
  30612. source: "./media/characters/arhan/front.svg",
  30613. extra: 3368 / 3133,
  30614. bottom: 0 / 3368
  30615. }
  30616. },
  30617. side: {
  30618. height: math.unit(4, "feet"),
  30619. name: "Side",
  30620. image: {
  30621. source: "./media/characters/arhan/side.svg",
  30622. extra: 3347 / 3105,
  30623. bottom: 0 / 3347
  30624. }
  30625. },
  30626. tongue: {
  30627. height: math.unit(1.42, "feet"),
  30628. name: "Tongue",
  30629. image: {
  30630. source: "./media/characters/arhan/tongue.svg"
  30631. }
  30632. },
  30633. head: {
  30634. height: math.unit(0.85, "feet"),
  30635. name: "Head",
  30636. image: {
  30637. source: "./media/characters/arhan/head.svg"
  30638. }
  30639. },
  30640. },
  30641. [
  30642. {
  30643. name: "Normal",
  30644. height: math.unit(4, "feet"),
  30645. default: true
  30646. },
  30647. ]
  30648. ))
  30649. characterMakers.push(() => makeCharacter(
  30650. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30651. {
  30652. front: {
  30653. height: math.unit(5 + 7.5 / 12, "feet"),
  30654. weight: math.unit(120, "lb"),
  30655. name: "Front",
  30656. image: {
  30657. source: "./media/characters/digi-duncan/front.svg",
  30658. extra: 330 / 326,
  30659. bottom: 16 / 346
  30660. }
  30661. },
  30662. side: {
  30663. height: math.unit(5 + 7.5 / 12, "feet"),
  30664. weight: math.unit(120, "lb"),
  30665. name: "Side",
  30666. image: {
  30667. source: "./media/characters/digi-duncan/side.svg",
  30668. extra: 341 / 337,
  30669. bottom: 1 / 342
  30670. }
  30671. },
  30672. back: {
  30673. height: math.unit(5 + 7.5 / 12, "feet"),
  30674. weight: math.unit(120, "lb"),
  30675. name: "Back",
  30676. image: {
  30677. source: "./media/characters/digi-duncan/back.svg",
  30678. extra: 330 / 326,
  30679. bottom: 12 / 342
  30680. }
  30681. },
  30682. },
  30683. [
  30684. {
  30685. name: "Speck",
  30686. height: math.unit(0.25, "mm")
  30687. },
  30688. {
  30689. name: "Micro",
  30690. height: math.unit(5, "mm")
  30691. },
  30692. {
  30693. name: "Tiny",
  30694. height: math.unit(0.5, "inches"),
  30695. default: true
  30696. },
  30697. {
  30698. name: "Human",
  30699. height: math.unit(5 + 7.5 / 12, "feet")
  30700. },
  30701. {
  30702. name: "Minigiant",
  30703. height: math.unit(8 + 5.25, "feet")
  30704. },
  30705. {
  30706. name: "Giant",
  30707. height: math.unit(2000, "feet")
  30708. },
  30709. {
  30710. name: "Mega",
  30711. height: math.unit(371.1, "miles")
  30712. },
  30713. ]
  30714. ))
  30715. characterMakers.push(() => makeCharacter(
  30716. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30717. {
  30718. front: {
  30719. height: math.unit(2, "meters"),
  30720. weight: math.unit(350, "kg"),
  30721. name: "Front",
  30722. image: {
  30723. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30724. extra: 898 / 838,
  30725. bottom: 9 / 907
  30726. }
  30727. },
  30728. },
  30729. [
  30730. {
  30731. name: "Micro",
  30732. height: math.unit(8, "meters")
  30733. },
  30734. {
  30735. name: "Normal",
  30736. height: math.unit(50, "meters"),
  30737. default: true
  30738. },
  30739. {
  30740. name: "Macro",
  30741. height: math.unit(500, "meters")
  30742. },
  30743. ]
  30744. ))
  30745. characterMakers.push(() => makeCharacter(
  30746. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30747. {
  30748. front: {
  30749. height: math.unit(6 + 6 / 12, "feet"),
  30750. name: "Front",
  30751. image: {
  30752. source: "./media/characters/khardesh/front.svg",
  30753. extra: 1788/1596,
  30754. bottom: 66/1854
  30755. }
  30756. },
  30757. back: {
  30758. height: math.unit(6 + 6 / 12, "feet"),
  30759. name: "Back",
  30760. image: {
  30761. source: "./media/characters/khardesh/back.svg",
  30762. extra: 1781/1584,
  30763. bottom: 68/1849
  30764. }
  30765. },
  30766. },
  30767. [
  30768. {
  30769. name: "Normal",
  30770. height: math.unit(6 + 6 / 12, "feet"),
  30771. default: true
  30772. },
  30773. {
  30774. name: "Normal+",
  30775. height: math.unit(4, "meters")
  30776. },
  30777. {
  30778. name: "Macro",
  30779. height: math.unit(50, "meters")
  30780. },
  30781. {
  30782. name: "Macro+",
  30783. height: math.unit(100, "meters")
  30784. },
  30785. {
  30786. name: "Megamacro",
  30787. height: math.unit(20, "km")
  30788. },
  30789. ]
  30790. ))
  30791. characterMakers.push(() => makeCharacter(
  30792. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30793. {
  30794. front: {
  30795. height: math.unit(6, "feet"),
  30796. weight: math.unit(150, "lb"),
  30797. name: "Front",
  30798. image: {
  30799. source: "./media/characters/kosho/front.svg",
  30800. extra: 1847 / 1847,
  30801. bottom: 86 / 1933
  30802. }
  30803. },
  30804. },
  30805. [
  30806. {
  30807. name: "Second-stage micro",
  30808. height: math.unit(0.5, "inches")
  30809. },
  30810. {
  30811. name: "First-stage micro",
  30812. height: math.unit(6, "inches")
  30813. },
  30814. {
  30815. name: "Normal",
  30816. height: math.unit(6, "feet"),
  30817. default: true
  30818. },
  30819. {
  30820. name: "First-stage macro",
  30821. height: math.unit(72, "feet")
  30822. },
  30823. {
  30824. name: "Second-stage macro",
  30825. height: math.unit(864, "feet")
  30826. },
  30827. ]
  30828. ))
  30829. characterMakers.push(() => makeCharacter(
  30830. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30831. {
  30832. normal: {
  30833. height: math.unit(4 + 6 / 12, "feet"),
  30834. name: "Normal",
  30835. image: {
  30836. source: "./media/characters/hydra/normal.svg",
  30837. extra: 2833 / 2634,
  30838. bottom: 68 / 2901
  30839. }
  30840. },
  30841. smol: {
  30842. height: math.unit(0.705, "inches"),
  30843. name: "Smol",
  30844. image: {
  30845. source: "./media/characters/hydra/smol.svg",
  30846. extra: 2715 / 2540,
  30847. bottom: 0 / 2715
  30848. }
  30849. },
  30850. },
  30851. [
  30852. {
  30853. name: "Normal",
  30854. height: math.unit(4 + 6 / 12, "feet"),
  30855. default: true
  30856. }
  30857. ]
  30858. ))
  30859. characterMakers.push(() => makeCharacter(
  30860. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30861. {
  30862. front: {
  30863. height: math.unit(0.6, "cm"),
  30864. name: "Front",
  30865. image: {
  30866. source: "./media/characters/daz/front.svg",
  30867. extra: 1682 / 1164,
  30868. bottom: 42 / 1724
  30869. }
  30870. },
  30871. },
  30872. [
  30873. {
  30874. name: "Normal",
  30875. height: math.unit(0.6, "cm"),
  30876. default: true
  30877. },
  30878. ]
  30879. ))
  30880. characterMakers.push(() => makeCharacter(
  30881. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30882. {
  30883. front: {
  30884. height: math.unit(6, "feet"),
  30885. weight: math.unit(235, "lb"),
  30886. name: "Front",
  30887. image: {
  30888. source: "./media/characters/theo-pangolin/front.svg",
  30889. extra: 1996 / 1969,
  30890. bottom: 115 / 2111
  30891. }
  30892. },
  30893. back: {
  30894. height: math.unit(6, "feet"),
  30895. weight: math.unit(235, "lb"),
  30896. name: "Back",
  30897. image: {
  30898. source: "./media/characters/theo-pangolin/back.svg",
  30899. extra: 1979 / 1979,
  30900. bottom: 40 / 2019
  30901. }
  30902. },
  30903. feral: {
  30904. height: math.unit(2, "feet"),
  30905. weight: math.unit(30, "lb"),
  30906. name: "Feral",
  30907. image: {
  30908. source: "./media/characters/theo-pangolin/feral.svg",
  30909. extra: 803 / 791,
  30910. bottom: 181 / 984
  30911. }
  30912. },
  30913. footFive: {
  30914. height: math.unit(1.43, "feet"),
  30915. name: "Foot (Five Toes)",
  30916. image: {
  30917. source: "./media/characters/theo-pangolin/foot-five.svg"
  30918. }
  30919. },
  30920. footFour: {
  30921. height: math.unit(1.43, "feet"),
  30922. name: "Foot (Four Toes)",
  30923. image: {
  30924. source: "./media/characters/theo-pangolin/foot-four.svg"
  30925. }
  30926. },
  30927. handFour: {
  30928. height: math.unit(0.81, "feet"),
  30929. name: "Hand (Four Fingers)",
  30930. image: {
  30931. source: "./media/characters/theo-pangolin/hand-four.svg"
  30932. }
  30933. },
  30934. handThree: {
  30935. height: math.unit(0.81, "feet"),
  30936. name: "Hand (Three Fingers)",
  30937. image: {
  30938. source: "./media/characters/theo-pangolin/hand-three.svg"
  30939. }
  30940. },
  30941. headFront: {
  30942. height: math.unit(1.37, "feet"),
  30943. name: "Head (Front)",
  30944. image: {
  30945. source: "./media/characters/theo-pangolin/head-front.svg"
  30946. }
  30947. },
  30948. headSide: {
  30949. height: math.unit(1.43, "feet"),
  30950. name: "Head (Side)",
  30951. image: {
  30952. source: "./media/characters/theo-pangolin/head-side.svg"
  30953. }
  30954. },
  30955. tongue: {
  30956. height: math.unit(2.29, "feet"),
  30957. name: "Tongue",
  30958. image: {
  30959. source: "./media/characters/theo-pangolin/tongue.svg"
  30960. }
  30961. },
  30962. },
  30963. [
  30964. {
  30965. name: "Normal",
  30966. height: math.unit(6, "feet")
  30967. },
  30968. {
  30969. name: "Macro",
  30970. height: math.unit(400, "feet"),
  30971. default: true
  30972. },
  30973. ]
  30974. ))
  30975. characterMakers.push(() => makeCharacter(
  30976. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30977. {
  30978. front: {
  30979. height: math.unit(6, "inches"),
  30980. weight: math.unit(0.036, "kg"),
  30981. name: "Front",
  30982. image: {
  30983. source: "./media/characters/renée/front.svg",
  30984. extra: 900 / 886,
  30985. bottom: 8 / 908
  30986. }
  30987. },
  30988. },
  30989. [
  30990. {
  30991. name: "Nano",
  30992. height: math.unit(1, "nm")
  30993. },
  30994. {
  30995. name: "Micro",
  30996. height: math.unit(1, "mm")
  30997. },
  30998. {
  30999. name: "Normal",
  31000. height: math.unit(6, "inches")
  31001. },
  31002. {
  31003. name: "Macro",
  31004. height: math.unit(2000, "feet"),
  31005. default: true
  31006. },
  31007. {
  31008. name: "Megamacro",
  31009. height: math.unit(2, "km")
  31010. },
  31011. {
  31012. name: "Gigamacro",
  31013. height: math.unit(2000, "km")
  31014. },
  31015. {
  31016. name: "Teramacro",
  31017. height: math.unit(250000, "km")
  31018. },
  31019. ]
  31020. ))
  31021. characterMakers.push(() => makeCharacter(
  31022. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31023. {
  31024. front: {
  31025. height: math.unit(4, "meters"),
  31026. weight: math.unit(150, "kg"),
  31027. name: "Front",
  31028. image: {
  31029. source: "./media/characters/caledvwlch/front.svg",
  31030. extra: 1760 / 1551,
  31031. bottom: 28 / 1788
  31032. }
  31033. },
  31034. side: {
  31035. height: math.unit(4, "meters"),
  31036. weight: math.unit(150, "kg"),
  31037. name: "Side",
  31038. image: {
  31039. source: "./media/characters/caledvwlch/side.svg",
  31040. extra: 1605 / 1536,
  31041. bottom: 31 / 1636
  31042. }
  31043. },
  31044. back: {
  31045. height: math.unit(4, "meters"),
  31046. weight: math.unit(150, "kg"),
  31047. name: "Back",
  31048. image: {
  31049. source: "./media/characters/caledvwlch/back.svg",
  31050. extra: 1635 / 1565,
  31051. bottom: 27 / 1662
  31052. }
  31053. },
  31054. },
  31055. [
  31056. {
  31057. name: "\"Incognito\"",
  31058. height: math.unit(4, "meters")
  31059. },
  31060. {
  31061. name: "Small rampage",
  31062. height: math.unit(600, "meters")
  31063. },
  31064. {
  31065. name: "Mega",
  31066. height: math.unit(30, "km")
  31067. },
  31068. {
  31069. name: "Home-size",
  31070. height: math.unit(50, "km"),
  31071. default: true
  31072. },
  31073. {
  31074. name: "Giga",
  31075. height: math.unit(300, "km")
  31076. },
  31077. {
  31078. name: "Lounging",
  31079. height: math.unit(11000, "km")
  31080. },
  31081. {
  31082. name: "Planet snacking",
  31083. height: math.unit(2000000, "km")
  31084. },
  31085. ]
  31086. ))
  31087. characterMakers.push(() => makeCharacter(
  31088. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31089. {
  31090. front: {
  31091. height: math.unit(6, "feet"),
  31092. weight: math.unit(215, "lb"),
  31093. name: "Front",
  31094. image: {
  31095. source: "./media/characters/sapphire-svell/front.svg",
  31096. extra: 495 / 455,
  31097. bottom: 20 / 515
  31098. }
  31099. },
  31100. back: {
  31101. height: math.unit(6, "feet"),
  31102. weight: math.unit(216, "lb"),
  31103. name: "Back",
  31104. image: {
  31105. source: "./media/characters/sapphire-svell/back.svg",
  31106. extra: 497 / 477,
  31107. bottom: 7 / 504
  31108. }
  31109. },
  31110. maw: {
  31111. height: math.unit(1.57, "feet"),
  31112. name: "Maw",
  31113. image: {
  31114. source: "./media/characters/sapphire-svell/maw.svg"
  31115. }
  31116. },
  31117. foot: {
  31118. height: math.unit(1.07, "feet"),
  31119. name: "Foot",
  31120. image: {
  31121. source: "./media/characters/sapphire-svell/foot.svg"
  31122. }
  31123. },
  31124. toering: {
  31125. height: math.unit(1.7, "inch"),
  31126. name: "Toering",
  31127. image: {
  31128. source: "./media/characters/sapphire-svell/toering.svg"
  31129. }
  31130. },
  31131. },
  31132. [
  31133. {
  31134. name: "Normal",
  31135. height: math.unit(300, "feet"),
  31136. default: true
  31137. },
  31138. {
  31139. name: "Augmented",
  31140. height: math.unit(1250, "feet")
  31141. },
  31142. {
  31143. name: "Unleashed",
  31144. height: math.unit(3000, "feet")
  31145. },
  31146. ]
  31147. ))
  31148. characterMakers.push(() => makeCharacter(
  31149. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31150. {
  31151. side: {
  31152. height: math.unit(2 + 3 / 12, "feet"),
  31153. weight: math.unit(110, "lb"),
  31154. name: "Side",
  31155. image: {
  31156. source: "./media/characters/glitch-flux/side.svg",
  31157. extra: 997 / 805,
  31158. bottom: 20 / 1017
  31159. }
  31160. },
  31161. },
  31162. [
  31163. {
  31164. name: "Normal",
  31165. height: math.unit(2 + 3 / 12, "feet"),
  31166. default: true
  31167. },
  31168. ]
  31169. ))
  31170. characterMakers.push(() => makeCharacter(
  31171. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31172. {
  31173. front: {
  31174. height: math.unit(4, "meters"),
  31175. name: "Front",
  31176. image: {
  31177. source: "./media/characters/mid/front.svg",
  31178. extra: 507 / 476,
  31179. bottom: 17 / 524
  31180. }
  31181. },
  31182. back: {
  31183. height: math.unit(4, "meters"),
  31184. name: "Back",
  31185. image: {
  31186. source: "./media/characters/mid/back.svg",
  31187. extra: 519 / 487,
  31188. bottom: 7 / 526
  31189. }
  31190. },
  31191. stuck: {
  31192. height: math.unit(2.2, "meters"),
  31193. name: "Stuck",
  31194. image: {
  31195. source: "./media/characters/mid/stuck.svg",
  31196. extra: 1951 / 1869,
  31197. bottom: 88 / 2039
  31198. }
  31199. }
  31200. },
  31201. [
  31202. {
  31203. name: "Normal",
  31204. height: math.unit(4, "meters"),
  31205. default: true
  31206. },
  31207. {
  31208. name: "Big",
  31209. height: math.unit(10, "meters")
  31210. },
  31211. {
  31212. name: "Macro",
  31213. height: math.unit(800, "meters")
  31214. },
  31215. {
  31216. name: "Megamacro",
  31217. height: math.unit(100, "km")
  31218. },
  31219. {
  31220. name: "Overgrown",
  31221. height: math.unit(1, "parsec")
  31222. },
  31223. ]
  31224. ))
  31225. characterMakers.push(() => makeCharacter(
  31226. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31227. {
  31228. front: {
  31229. height: math.unit(2.5, "meters"),
  31230. weight: math.unit(225, "kg"),
  31231. name: "Front",
  31232. image: {
  31233. source: "./media/characters/iris/front.svg",
  31234. extra: 3348 / 3251,
  31235. bottom: 205 / 3553
  31236. }
  31237. },
  31238. maw: {
  31239. height: math.unit(0.56, "meter"),
  31240. name: "Maw",
  31241. image: {
  31242. source: "./media/characters/iris/maw.svg"
  31243. }
  31244. },
  31245. },
  31246. [
  31247. {
  31248. name: "Mewter cat",
  31249. height: math.unit(1.2, "meters")
  31250. },
  31251. {
  31252. name: "Minimacro",
  31253. height: math.unit(2.5, "meters"),
  31254. default: true
  31255. },
  31256. {
  31257. name: "Macro",
  31258. height: math.unit(180, "meters")
  31259. },
  31260. {
  31261. name: "Megamacro",
  31262. height: math.unit(2746, "meters")
  31263. },
  31264. ]
  31265. ))
  31266. characterMakers.push(() => makeCharacter(
  31267. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31268. {
  31269. front: {
  31270. height: math.unit(6, "feet"),
  31271. weight: math.unit(135, "lb"),
  31272. name: "Front",
  31273. image: {
  31274. source: "./media/characters/axel/front.svg",
  31275. extra: 908 / 908,
  31276. bottom: 58 / 966
  31277. }
  31278. },
  31279. side: {
  31280. height: math.unit(6, "feet"),
  31281. weight: math.unit(135, "lb"),
  31282. name: "Side",
  31283. image: {
  31284. source: "./media/characters/axel/side.svg",
  31285. extra: 958 / 958,
  31286. bottom: 11 / 969
  31287. }
  31288. },
  31289. back: {
  31290. height: math.unit(6, "feet"),
  31291. weight: math.unit(135, "lb"),
  31292. name: "Back",
  31293. image: {
  31294. source: "./media/characters/axel/back.svg",
  31295. extra: 887 / 887,
  31296. bottom: 34 / 921
  31297. }
  31298. },
  31299. head: {
  31300. height: math.unit(1.07, "feet"),
  31301. name: "Head",
  31302. image: {
  31303. source: "./media/characters/axel/head.svg"
  31304. }
  31305. },
  31306. beak: {
  31307. height: math.unit(1.4, "feet"),
  31308. name: "Beak",
  31309. image: {
  31310. source: "./media/characters/axel/beak.svg"
  31311. }
  31312. },
  31313. beakSide: {
  31314. height: math.unit(1.4, "feet"),
  31315. name: "Beak Side",
  31316. image: {
  31317. source: "./media/characters/axel/beak-side.svg"
  31318. }
  31319. },
  31320. sheath: {
  31321. height: math.unit(0.5, "feet"),
  31322. name: "Sheath",
  31323. image: {
  31324. source: "./media/characters/axel/sheath.svg"
  31325. }
  31326. },
  31327. dick: {
  31328. height: math.unit(0.98, "feet"),
  31329. name: "Dick",
  31330. image: {
  31331. source: "./media/characters/axel/dick.svg"
  31332. }
  31333. },
  31334. },
  31335. [
  31336. {
  31337. name: "Macro",
  31338. height: math.unit(68, "meters"),
  31339. default: true
  31340. },
  31341. ]
  31342. ))
  31343. characterMakers.push(() => makeCharacter(
  31344. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31345. {
  31346. front: {
  31347. height: math.unit(3.5, "meters"),
  31348. weight: math.unit(1200, "kg"),
  31349. name: "Front",
  31350. image: {
  31351. source: "./media/characters/joanna/front.svg",
  31352. extra: 1596 / 1488,
  31353. bottom: 29 / 1625
  31354. }
  31355. },
  31356. back: {
  31357. height: math.unit(3.5, "meters"),
  31358. weight: math.unit(1200, "kg"),
  31359. name: "Back",
  31360. image: {
  31361. source: "./media/characters/joanna/back.svg",
  31362. extra: 1594 / 1495,
  31363. bottom: 26 / 1620
  31364. }
  31365. },
  31366. frontShorts: {
  31367. height: math.unit(3.5, "meters"),
  31368. weight: math.unit(1200, "kg"),
  31369. name: "Front (Shorts)",
  31370. image: {
  31371. source: "./media/characters/joanna/front-shorts.svg",
  31372. extra: 1596 / 1488,
  31373. bottom: 29 / 1625
  31374. }
  31375. },
  31376. frontBiker: {
  31377. height: math.unit(3.5, "meters"),
  31378. weight: math.unit(1200, "kg"),
  31379. name: "Front (Biker)",
  31380. image: {
  31381. source: "./media/characters/joanna/front-biker.svg",
  31382. extra: 1596 / 1488,
  31383. bottom: 29 / 1625
  31384. }
  31385. },
  31386. backBiker: {
  31387. height: math.unit(3.5, "meters"),
  31388. weight: math.unit(1200, "kg"),
  31389. name: "Back (Biker)",
  31390. image: {
  31391. source: "./media/characters/joanna/back-biker.svg",
  31392. extra: 1594 / 1495,
  31393. bottom: 88 / 1682
  31394. }
  31395. },
  31396. bikeLeft: {
  31397. height: math.unit(2.4, "meters"),
  31398. weight: math.unit(1600, "kg"),
  31399. name: "Bike (Left)",
  31400. image: {
  31401. source: "./media/characters/joanna/bike-left.svg",
  31402. extra: 720 / 720,
  31403. bottom: 8 / 728
  31404. }
  31405. },
  31406. bikeRight: {
  31407. height: math.unit(2.4, "meters"),
  31408. weight: math.unit(1600, "kg"),
  31409. name: "Bike (Right)",
  31410. image: {
  31411. source: "./media/characters/joanna/bike-right.svg",
  31412. extra: 720 / 720,
  31413. bottom: 8 / 728
  31414. }
  31415. },
  31416. },
  31417. [
  31418. {
  31419. name: "Incognito",
  31420. height: math.unit(3.5, "meters")
  31421. },
  31422. {
  31423. name: "Casual Big",
  31424. height: math.unit(200, "meters")
  31425. },
  31426. {
  31427. name: "Macro",
  31428. height: math.unit(600, "meters")
  31429. },
  31430. {
  31431. name: "Original",
  31432. height: math.unit(20, "km"),
  31433. default: true
  31434. },
  31435. {
  31436. name: "Giga",
  31437. height: math.unit(400, "km")
  31438. },
  31439. {
  31440. name: "Lounging",
  31441. height: math.unit(1500, "km")
  31442. },
  31443. {
  31444. name: "Planetary",
  31445. height: math.unit(200000, "km")
  31446. },
  31447. ]
  31448. ))
  31449. characterMakers.push(() => makeCharacter(
  31450. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31451. {
  31452. front: {
  31453. height: math.unit(6, "feet"),
  31454. weight: math.unit(150, "lb"),
  31455. name: "Front",
  31456. image: {
  31457. source: "./media/characters/hugo-sigil/front.svg",
  31458. extra: 522 / 500,
  31459. bottom: 2 / 524
  31460. }
  31461. },
  31462. back: {
  31463. height: math.unit(6, "feet"),
  31464. weight: math.unit(150, "lb"),
  31465. name: "Back",
  31466. image: {
  31467. source: "./media/characters/hugo-sigil/back.svg",
  31468. extra: 519 / 495,
  31469. bottom: 5 / 524
  31470. }
  31471. },
  31472. maw: {
  31473. height: math.unit(1.4, "feet"),
  31474. weight: math.unit(150, "lb"),
  31475. name: "Maw",
  31476. image: {
  31477. source: "./media/characters/hugo-sigil/maw.svg"
  31478. }
  31479. },
  31480. feet: {
  31481. height: math.unit(1.56, "feet"),
  31482. weight: math.unit(150, "lb"),
  31483. name: "Feet",
  31484. image: {
  31485. source: "./media/characters/hugo-sigil/feet.svg",
  31486. extra: 177 / 177,
  31487. bottom: 12 / 189
  31488. }
  31489. },
  31490. },
  31491. [
  31492. {
  31493. name: "Normal",
  31494. height: math.unit(6, "feet")
  31495. },
  31496. {
  31497. name: "Macro",
  31498. height: math.unit(200, "feet"),
  31499. default: true
  31500. },
  31501. ]
  31502. ))
  31503. characterMakers.push(() => makeCharacter(
  31504. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31505. {
  31506. front: {
  31507. height: math.unit(6, "feet"),
  31508. weight: math.unit(150, "lb"),
  31509. name: "Front",
  31510. image: {
  31511. source: "./media/characters/peri/front.svg",
  31512. extra: 2354 / 2233,
  31513. bottom: 49 / 2403
  31514. }
  31515. },
  31516. },
  31517. [
  31518. {
  31519. name: "Really Small",
  31520. height: math.unit(1, "nm")
  31521. },
  31522. {
  31523. name: "Micro",
  31524. height: math.unit(4, "inches")
  31525. },
  31526. {
  31527. name: "Normal",
  31528. height: math.unit(7, "inches"),
  31529. default: true
  31530. },
  31531. {
  31532. name: "Macro",
  31533. height: math.unit(400, "feet")
  31534. },
  31535. {
  31536. name: "Megamacro",
  31537. height: math.unit(100, "miles")
  31538. },
  31539. ]
  31540. ))
  31541. characterMakers.push(() => makeCharacter(
  31542. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31543. {
  31544. frontSlim: {
  31545. height: math.unit(7, "feet"),
  31546. name: "Front (Slim)",
  31547. image: {
  31548. source: "./media/characters/issilora/front-slim.svg",
  31549. extra: 529 / 449,
  31550. bottom: 53 / 582
  31551. }
  31552. },
  31553. sideSlim: {
  31554. height: math.unit(7, "feet"),
  31555. name: "Side (Slim)",
  31556. image: {
  31557. source: "./media/characters/issilora/side-slim.svg",
  31558. extra: 570 / 480,
  31559. bottom: 30 / 600
  31560. }
  31561. },
  31562. backSlim: {
  31563. height: math.unit(7, "feet"),
  31564. name: "Back (Slim)",
  31565. image: {
  31566. source: "./media/characters/issilora/back-slim.svg",
  31567. extra: 537 / 455,
  31568. bottom: 46 / 583
  31569. }
  31570. },
  31571. frontBuff: {
  31572. height: math.unit(7, "feet"),
  31573. name: "Front (Buff)",
  31574. image: {
  31575. source: "./media/characters/issilora/front-buff.svg",
  31576. extra: 2310 / 2035,
  31577. bottom: 335 / 2645
  31578. }
  31579. },
  31580. head: {
  31581. height: math.unit(1.94, "feet"),
  31582. name: "Head",
  31583. image: {
  31584. source: "./media/characters/issilora/head.svg"
  31585. }
  31586. },
  31587. },
  31588. [
  31589. {
  31590. name: "Minimum",
  31591. height: math.unit(7, "feet")
  31592. },
  31593. {
  31594. name: "Comfortable",
  31595. height: math.unit(17, "feet")
  31596. },
  31597. {
  31598. name: "Fun Size",
  31599. height: math.unit(47, "feet")
  31600. },
  31601. {
  31602. name: "Natural Macro",
  31603. height: math.unit(137, "feet"),
  31604. default: true
  31605. },
  31606. {
  31607. name: "Maximum Kaiju",
  31608. height: math.unit(397, "feet")
  31609. },
  31610. ]
  31611. ))
  31612. characterMakers.push(() => makeCharacter(
  31613. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31614. {
  31615. front: {
  31616. height: math.unit(50 + 9/12, "feet"),
  31617. weight: math.unit(32.8, "tons"),
  31618. name: "Front",
  31619. image: {
  31620. source: "./media/characters/irb'iiritaahn/front.svg",
  31621. extra: 1878/1826,
  31622. bottom: 326/2204
  31623. }
  31624. },
  31625. back: {
  31626. height: math.unit(50 + 9/12, "feet"),
  31627. weight: math.unit(32.8, "tons"),
  31628. name: "Back",
  31629. image: {
  31630. source: "./media/characters/irb'iiritaahn/back.svg",
  31631. extra: 2052/2018,
  31632. bottom: 152/2204
  31633. }
  31634. },
  31635. head: {
  31636. height: math.unit(12.86, "feet"),
  31637. name: "Head",
  31638. image: {
  31639. source: "./media/characters/irb'iiritaahn/head.svg"
  31640. }
  31641. },
  31642. maw: {
  31643. height: math.unit(9.66, "feet"),
  31644. name: "Maw",
  31645. image: {
  31646. source: "./media/characters/irb'iiritaahn/maw.svg"
  31647. }
  31648. },
  31649. frontDick: {
  31650. height: math.unit(8.78461, "feet"),
  31651. name: "Front Dick",
  31652. image: {
  31653. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31654. }
  31655. },
  31656. rearDick: {
  31657. height: math.unit(8.78461, "feet"),
  31658. name: "Rear Dick",
  31659. image: {
  31660. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31661. }
  31662. },
  31663. rearDickUnfolded: {
  31664. height: math.unit(8.78, "feet"),
  31665. name: "Rear Dick (Unfolded)",
  31666. image: {
  31667. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31668. }
  31669. },
  31670. wings: {
  31671. height: math.unit(43, "feet"),
  31672. name: "Wings",
  31673. image: {
  31674. source: "./media/characters/irb'iiritaahn/wings.svg"
  31675. }
  31676. },
  31677. },
  31678. [
  31679. {
  31680. name: "Macro",
  31681. height: math.unit(50 + 9/12, "feet"),
  31682. default: true
  31683. },
  31684. ]
  31685. ))
  31686. characterMakers.push(() => makeCharacter(
  31687. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31688. {
  31689. front: {
  31690. height: math.unit(205, "cm"),
  31691. weight: math.unit(102, "kg"),
  31692. name: "Front",
  31693. image: {
  31694. source: "./media/characters/irbisgreif/front.svg",
  31695. extra: 785/706,
  31696. bottom: 13/798
  31697. }
  31698. },
  31699. back: {
  31700. height: math.unit(205, "cm"),
  31701. weight: math.unit(102, "kg"),
  31702. name: "Back",
  31703. image: {
  31704. source: "./media/characters/irbisgreif/back.svg",
  31705. extra: 713/701,
  31706. bottom: 26/739
  31707. }
  31708. },
  31709. frontDressed: {
  31710. height: math.unit(216, "cm"),
  31711. weight: math.unit(102, "kg"),
  31712. name: "Front-dressed",
  31713. image: {
  31714. source: "./media/characters/irbisgreif/front-dressed.svg",
  31715. extra: 902/776,
  31716. bottom: 14/916
  31717. }
  31718. },
  31719. sideDressed: {
  31720. height: math.unit(195, "cm"),
  31721. weight: math.unit(102, "kg"),
  31722. name: "Side-dressed",
  31723. image: {
  31724. source: "./media/characters/irbisgreif/side-dressed.svg",
  31725. extra: 788/688,
  31726. bottom: 21/809
  31727. }
  31728. },
  31729. backDressed: {
  31730. height: math.unit(216, "cm"),
  31731. weight: math.unit(102, "kg"),
  31732. name: "Back-dressed",
  31733. image: {
  31734. source: "./media/characters/irbisgreif/back-dressed.svg",
  31735. extra: 901/783,
  31736. bottom: 10/911
  31737. }
  31738. },
  31739. dick: {
  31740. height: math.unit(0.49, "feet"),
  31741. name: "Dick",
  31742. image: {
  31743. source: "./media/characters/irbisgreif/dick.svg"
  31744. }
  31745. },
  31746. wingTop: {
  31747. height: math.unit(1.93 , "feet"),
  31748. name: "Wing-top",
  31749. image: {
  31750. source: "./media/characters/irbisgreif/wing-top.svg"
  31751. }
  31752. },
  31753. wingBottom: {
  31754. height: math.unit(1.93 , "feet"),
  31755. name: "Wing-bottom",
  31756. image: {
  31757. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31758. }
  31759. },
  31760. },
  31761. [
  31762. {
  31763. name: "Normal",
  31764. height: math.unit(216, "cm"),
  31765. default: true
  31766. },
  31767. ]
  31768. ))
  31769. characterMakers.push(() => makeCharacter(
  31770. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31771. {
  31772. front: {
  31773. height: math.unit(6, "feet"),
  31774. weight: math.unit(150, "lb"),
  31775. name: "Front",
  31776. image: {
  31777. source: "./media/characters/pride/front.svg",
  31778. extra: 1299/1230,
  31779. bottom: 18/1317
  31780. }
  31781. },
  31782. },
  31783. [
  31784. {
  31785. name: "Normal",
  31786. height: math.unit(7, "feet")
  31787. },
  31788. {
  31789. name: "Mini-macro",
  31790. height: math.unit(11, "feet")
  31791. },
  31792. {
  31793. name: "Macro",
  31794. height: math.unit(15, "meters"),
  31795. default: true
  31796. },
  31797. {
  31798. name: "Macro+",
  31799. height: math.unit(40, "meters")
  31800. },
  31801. ]
  31802. ))
  31803. characterMakers.push(() => makeCharacter(
  31804. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31805. {
  31806. front: {
  31807. height: math.unit(4 + 2 / 12, "feet"),
  31808. weight: math.unit(95, "lb"),
  31809. name: "Front",
  31810. image: {
  31811. source: "./media/characters/vaelophis-nyx/front.svg",
  31812. extra: 2532/2330,
  31813. bottom: 0/2532
  31814. }
  31815. },
  31816. back: {
  31817. height: math.unit(4 + 2 / 12, "feet"),
  31818. weight: math.unit(95, "lb"),
  31819. name: "Back",
  31820. image: {
  31821. source: "./media/characters/vaelophis-nyx/back.svg",
  31822. extra: 2484/2361,
  31823. bottom: 0/2484
  31824. }
  31825. },
  31826. feralSide: {
  31827. height: math.unit(2 + 1/12, "feet"),
  31828. weight: math.unit(20, "lb"),
  31829. name: "Feral (Side)",
  31830. image: {
  31831. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31832. extra: 1721/1581,
  31833. bottom: 70/1791
  31834. }
  31835. },
  31836. feralLazing: {
  31837. height: math.unit(1.08, "feet"),
  31838. weight: math.unit(20, "lb"),
  31839. name: "Feral (Lazing)",
  31840. image: {
  31841. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31842. extra: 822/822,
  31843. bottom: 248/1070
  31844. }
  31845. },
  31846. ear: {
  31847. height: math.unit(0.416, "feet"),
  31848. name: "Ear",
  31849. image: {
  31850. source: "./media/characters/vaelophis-nyx/ear.svg"
  31851. }
  31852. },
  31853. eye: {
  31854. height: math.unit(0.0748, "feet"),
  31855. name: "Eye",
  31856. image: {
  31857. source: "./media/characters/vaelophis-nyx/eye.svg"
  31858. }
  31859. },
  31860. mouth: {
  31861. height: math.unit(0.378, "feet"),
  31862. name: "Mouth",
  31863. image: {
  31864. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31865. }
  31866. },
  31867. spade: {
  31868. height: math.unit(0.55, "feet"),
  31869. name: "Spade",
  31870. image: {
  31871. source: "./media/characters/vaelophis-nyx/spade.svg"
  31872. }
  31873. },
  31874. },
  31875. [
  31876. {
  31877. name: "Normal",
  31878. height: math.unit(4 + 2/12, "feet"),
  31879. default: true
  31880. },
  31881. ]
  31882. ))
  31883. characterMakers.push(() => makeCharacter(
  31884. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31885. {
  31886. front: {
  31887. height: math.unit(7, "feet"),
  31888. weight: math.unit(231, "lb"),
  31889. name: "Front",
  31890. image: {
  31891. source: "./media/characters/flux/front.svg",
  31892. extra: 919/871,
  31893. bottom: 0/919
  31894. }
  31895. },
  31896. back: {
  31897. height: math.unit(7, "feet"),
  31898. weight: math.unit(231, "lb"),
  31899. name: "Back",
  31900. image: {
  31901. source: "./media/characters/flux/back.svg",
  31902. extra: 1040/992,
  31903. bottom: 0/1040
  31904. }
  31905. },
  31906. frontDressed: {
  31907. height: math.unit(7, "feet"),
  31908. weight: math.unit(231, "lb"),
  31909. name: "Front (Dressed)",
  31910. image: {
  31911. source: "./media/characters/flux/front-dressed.svg",
  31912. extra: 919/871,
  31913. bottom: 0/919
  31914. }
  31915. },
  31916. feralSide: {
  31917. height: math.unit(5, "feet"),
  31918. weight: math.unit(150, "lb"),
  31919. name: "Feral (Side)",
  31920. image: {
  31921. source: "./media/characters/flux/feral-side.svg",
  31922. extra: 598/528,
  31923. bottom: 28/626
  31924. }
  31925. },
  31926. head: {
  31927. height: math.unit(1.585, "feet"),
  31928. name: "Head",
  31929. image: {
  31930. source: "./media/characters/flux/head.svg"
  31931. }
  31932. },
  31933. headSide: {
  31934. height: math.unit(1.74, "feet"),
  31935. name: "Head (Side)",
  31936. image: {
  31937. source: "./media/characters/flux/head-side.svg"
  31938. }
  31939. },
  31940. headSideFire: {
  31941. height: math.unit(1.76, "feet"),
  31942. name: "Head (Side, Fire)",
  31943. image: {
  31944. source: "./media/characters/flux/head-side-fire.svg"
  31945. }
  31946. },
  31947. },
  31948. [
  31949. {
  31950. name: "Normal",
  31951. height: math.unit(7, "feet"),
  31952. default: true
  31953. },
  31954. ]
  31955. ))
  31956. characterMakers.push(() => makeCharacter(
  31957. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31958. {
  31959. front: {
  31960. height: math.unit(9, "feet"),
  31961. weight: math.unit(1012, "lb"),
  31962. name: "Front",
  31963. image: {
  31964. source: "./media/characters/ulfra-lupae/front.svg",
  31965. extra: 1083/1011,
  31966. bottom: 67/1150
  31967. }
  31968. },
  31969. },
  31970. [
  31971. {
  31972. name: "Micro",
  31973. height: math.unit(6, "inches")
  31974. },
  31975. {
  31976. name: "Socializing",
  31977. height: math.unit(6 + 5/12, "feet")
  31978. },
  31979. {
  31980. name: "Normal",
  31981. height: math.unit(9, "feet"),
  31982. default: true
  31983. },
  31984. {
  31985. name: "Macro",
  31986. height: math.unit(150, "feet")
  31987. },
  31988. ]
  31989. ))
  31990. characterMakers.push(() => makeCharacter(
  31991. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31992. {
  31993. front: {
  31994. height: math.unit(5 + 2/12, "feet"),
  31995. weight: math.unit(120, "lb"),
  31996. name: "Front",
  31997. image: {
  31998. source: "./media/characters/timber/front.svg",
  31999. extra: 2814/2705,
  32000. bottom: 181/2995
  32001. }
  32002. },
  32003. },
  32004. [
  32005. {
  32006. name: "Normal",
  32007. height: math.unit(5 + 2/12, "feet"),
  32008. default: true
  32009. },
  32010. ]
  32011. ))
  32012. characterMakers.push(() => makeCharacter(
  32013. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32014. {
  32015. front: {
  32016. height: math.unit(9, "feet"),
  32017. name: "Front",
  32018. image: {
  32019. source: "./media/characters/nicki/front.svg",
  32020. extra: 1240/990,
  32021. bottom: 45/1285
  32022. },
  32023. form: "anthro",
  32024. default: true
  32025. },
  32026. side: {
  32027. height: math.unit(9, "feet"),
  32028. name: "Side",
  32029. image: {
  32030. source: "./media/characters/nicki/side.svg",
  32031. extra: 1047/973,
  32032. bottom: 61/1108
  32033. },
  32034. form: "anthro"
  32035. },
  32036. back: {
  32037. height: math.unit(9, "feet"),
  32038. name: "Back",
  32039. image: {
  32040. source: "./media/characters/nicki/back.svg",
  32041. extra: 1006/965,
  32042. bottom: 39/1045
  32043. },
  32044. form: "anthro"
  32045. },
  32046. taur: {
  32047. height: math.unit(15, "feet"),
  32048. name: "Taur",
  32049. image: {
  32050. source: "./media/characters/nicki/taur.svg",
  32051. extra: 1592/1347,
  32052. bottom: 0/1592
  32053. },
  32054. form: "taur",
  32055. default: true
  32056. },
  32057. },
  32058. [
  32059. {
  32060. name: "Normal",
  32061. height: math.unit(9, "feet"),
  32062. form: "anthro",
  32063. default: true
  32064. },
  32065. {
  32066. name: "Normal",
  32067. height: math.unit(15, "feet"),
  32068. form: "taur",
  32069. default: true
  32070. }
  32071. ],
  32072. {
  32073. "anthro": {
  32074. name: "Anthro",
  32075. default: true
  32076. },
  32077. "taur": {
  32078. name: "Taur"
  32079. }
  32080. }
  32081. ))
  32082. characterMakers.push(() => makeCharacter(
  32083. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32084. {
  32085. front: {
  32086. height: math.unit(7 + 10/12, "feet"),
  32087. weight: math.unit(3.5, "tons"),
  32088. name: "Front",
  32089. image: {
  32090. source: "./media/characters/lee/front.svg",
  32091. extra: 1773/1615,
  32092. bottom: 86/1859
  32093. }
  32094. },
  32095. hand: {
  32096. height: math.unit(1.78, "feet"),
  32097. name: "Hand",
  32098. image: {
  32099. source: "./media/characters/lee/hand.svg"
  32100. }
  32101. },
  32102. maw: {
  32103. height: math.unit(1.18, "feet"),
  32104. name: "Maw",
  32105. image: {
  32106. source: "./media/characters/lee/maw.svg"
  32107. }
  32108. },
  32109. },
  32110. [
  32111. {
  32112. name: "Normal",
  32113. height: math.unit(7 + 10/12, "feet"),
  32114. default: true
  32115. },
  32116. ]
  32117. ))
  32118. characterMakers.push(() => makeCharacter(
  32119. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32120. {
  32121. front: {
  32122. height: math.unit(9, "feet"),
  32123. name: "Front",
  32124. image: {
  32125. source: "./media/characters/guti/front.svg",
  32126. extra: 4551/4355,
  32127. bottom: 123/4674
  32128. }
  32129. },
  32130. tongue: {
  32131. height: math.unit(1, "feet"),
  32132. name: "Tongue",
  32133. image: {
  32134. source: "./media/characters/guti/tongue.svg"
  32135. }
  32136. },
  32137. paw: {
  32138. height: math.unit(1.18, "feet"),
  32139. name: "Paw",
  32140. image: {
  32141. source: "./media/characters/guti/paw.svg"
  32142. }
  32143. },
  32144. },
  32145. [
  32146. {
  32147. name: "Normal",
  32148. height: math.unit(9, "feet"),
  32149. default: true
  32150. },
  32151. ]
  32152. ))
  32153. characterMakers.push(() => makeCharacter(
  32154. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32155. {
  32156. side: {
  32157. height: math.unit(5, "meters"),
  32158. name: "Side",
  32159. image: {
  32160. source: "./media/characters/vesper/side.svg",
  32161. extra: 1605/1518,
  32162. bottom: 0/1605
  32163. }
  32164. },
  32165. },
  32166. [
  32167. {
  32168. name: "Small",
  32169. height: math.unit(5, "meters")
  32170. },
  32171. {
  32172. name: "Sage",
  32173. height: math.unit(100, "meters"),
  32174. default: true
  32175. },
  32176. {
  32177. name: "Fun Size",
  32178. height: math.unit(600, "meters")
  32179. },
  32180. {
  32181. name: "Goddess",
  32182. height: math.unit(20000, "km")
  32183. },
  32184. {
  32185. name: "Maximum",
  32186. height: math.unit(5, "galaxies")
  32187. },
  32188. ]
  32189. ))
  32190. characterMakers.push(() => makeCharacter(
  32191. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32192. {
  32193. front: {
  32194. height: math.unit(6 + 3/12, "feet"),
  32195. weight: math.unit(190, "lb"),
  32196. name: "Front",
  32197. image: {
  32198. source: "./media/characters/gawain/front.svg",
  32199. extra: 2222/2139,
  32200. bottom: 90/2312
  32201. }
  32202. },
  32203. back: {
  32204. height: math.unit(6 + 3/12, "feet"),
  32205. weight: math.unit(190, "lb"),
  32206. name: "Back",
  32207. image: {
  32208. source: "./media/characters/gawain/back.svg",
  32209. extra: 2199/2111,
  32210. bottom: 73/2272
  32211. }
  32212. },
  32213. },
  32214. [
  32215. {
  32216. name: "Normal",
  32217. height: math.unit(6 + 3/12, "feet"),
  32218. default: true
  32219. },
  32220. ]
  32221. ))
  32222. characterMakers.push(() => makeCharacter(
  32223. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32224. {
  32225. side: {
  32226. height: math.unit(3.5, "meters"),
  32227. weight: math.unit(16000, "lb"),
  32228. name: "Side",
  32229. image: {
  32230. source: "./media/characters/dascalti/side.svg",
  32231. extra: 392/273,
  32232. bottom: 47/439
  32233. }
  32234. },
  32235. breath: {
  32236. height: math.unit(7.4, "feet"),
  32237. name: "Breath",
  32238. image: {
  32239. source: "./media/characters/dascalti/breath.svg"
  32240. }
  32241. },
  32242. fed: {
  32243. height: math.unit(3.6, "meters"),
  32244. weight: math.unit(16000, "lb"),
  32245. name: "Fed",
  32246. image: {
  32247. source: "./media/characters/dascalti/fed.svg",
  32248. extra: 1419/820,
  32249. bottom: 95/1514
  32250. }
  32251. },
  32252. },
  32253. [
  32254. {
  32255. name: "Normal",
  32256. height: math.unit(3.5, "meters"),
  32257. default: true
  32258. },
  32259. ]
  32260. ))
  32261. characterMakers.push(() => makeCharacter(
  32262. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32263. {
  32264. front: {
  32265. height: math.unit(3 + 5/12, "feet"),
  32266. name: "Front",
  32267. image: {
  32268. source: "./media/characters/mauve/front.svg",
  32269. extra: 1126/1033,
  32270. bottom: 65/1191
  32271. }
  32272. },
  32273. side: {
  32274. height: math.unit(3 + 5/12, "feet"),
  32275. name: "Side",
  32276. image: {
  32277. source: "./media/characters/mauve/side.svg",
  32278. extra: 1089/1001,
  32279. bottom: 29/1118
  32280. }
  32281. },
  32282. back: {
  32283. height: math.unit(3 + 5/12, "feet"),
  32284. name: "Back",
  32285. image: {
  32286. source: "./media/characters/mauve/back.svg",
  32287. extra: 1173/1053,
  32288. bottom: 109/1282
  32289. }
  32290. },
  32291. },
  32292. [
  32293. {
  32294. name: "Normal",
  32295. height: math.unit(3 + 5/12, "feet"),
  32296. default: true
  32297. },
  32298. ]
  32299. ))
  32300. characterMakers.push(() => makeCharacter(
  32301. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32302. {
  32303. front: {
  32304. height: math.unit(6 + 3/12, "feet"),
  32305. weight: math.unit(430, "lb"),
  32306. name: "Front",
  32307. image: {
  32308. source: "./media/characters/carlos/front.svg",
  32309. extra: 1964/1913,
  32310. bottom: 70/2034
  32311. }
  32312. },
  32313. },
  32314. [
  32315. {
  32316. name: "Normal",
  32317. height: math.unit(6 + 3/12, "feet"),
  32318. default: true
  32319. },
  32320. ]
  32321. ))
  32322. characterMakers.push(() => makeCharacter(
  32323. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32324. {
  32325. back: {
  32326. height: math.unit(5 + 10/12, "feet"),
  32327. weight: math.unit(200, "lb"),
  32328. name: "Back",
  32329. image: {
  32330. source: "./media/characters/jax/back.svg",
  32331. extra: 764/739,
  32332. bottom: 25/789
  32333. }
  32334. },
  32335. },
  32336. [
  32337. {
  32338. name: "Normal",
  32339. height: math.unit(5 + 10/12, "feet"),
  32340. default: true
  32341. },
  32342. ]
  32343. ))
  32344. characterMakers.push(() => makeCharacter(
  32345. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32346. {
  32347. front: {
  32348. height: math.unit(8, "feet"),
  32349. weight: math.unit(250, "lb"),
  32350. name: "Front",
  32351. image: {
  32352. source: "./media/characters/eikthynir/front.svg",
  32353. extra: 1332/1166,
  32354. bottom: 82/1414
  32355. }
  32356. },
  32357. back: {
  32358. height: math.unit(8, "feet"),
  32359. weight: math.unit(250, "lb"),
  32360. name: "Back",
  32361. image: {
  32362. source: "./media/characters/eikthynir/back.svg",
  32363. extra: 1342/1190,
  32364. bottom: 19/1361
  32365. }
  32366. },
  32367. dick: {
  32368. height: math.unit(2.35, "feet"),
  32369. name: "Dick",
  32370. image: {
  32371. source: "./media/characters/eikthynir/dick.svg"
  32372. }
  32373. },
  32374. },
  32375. [
  32376. {
  32377. name: "Normal",
  32378. height: math.unit(8, "feet"),
  32379. default: true
  32380. },
  32381. ]
  32382. ))
  32383. characterMakers.push(() => makeCharacter(
  32384. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32385. {
  32386. front: {
  32387. height: math.unit(99, "meters"),
  32388. weight: math.unit(13000, "tons"),
  32389. name: "Front",
  32390. image: {
  32391. source: "./media/characters/zlmos/front.svg",
  32392. extra: 2202/1992,
  32393. bottom: 315/2517
  32394. }
  32395. },
  32396. },
  32397. [
  32398. {
  32399. name: "Macro",
  32400. height: math.unit(99, "meters"),
  32401. default: true
  32402. },
  32403. ]
  32404. ))
  32405. characterMakers.push(() => makeCharacter(
  32406. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32407. {
  32408. front: {
  32409. height: math.unit(6 + 5/12, "feet"),
  32410. name: "Front",
  32411. image: {
  32412. source: "./media/characters/purri/front.svg",
  32413. extra: 1698/1610,
  32414. bottom: 32/1730
  32415. }
  32416. },
  32417. frontAlt: {
  32418. height: math.unit(6 + 5/12, "feet"),
  32419. name: "Front (Alt)",
  32420. image: {
  32421. source: "./media/characters/purri/front-alt.svg",
  32422. extra: 450/420,
  32423. bottom: 26/476
  32424. }
  32425. },
  32426. boots: {
  32427. height: math.unit(5.5, "feet"),
  32428. name: "Boots",
  32429. image: {
  32430. source: "./media/characters/purri/boots.svg",
  32431. extra: 905/853,
  32432. bottom: 18/923
  32433. }
  32434. },
  32435. lying: {
  32436. height: math.unit(2, "feet"),
  32437. name: "Lying",
  32438. image: {
  32439. source: "./media/characters/purri/lying.svg",
  32440. extra: 940/843,
  32441. bottom: 146/1086
  32442. }
  32443. },
  32444. devious: {
  32445. height: math.unit(1.77, "feet"),
  32446. name: "Devious",
  32447. image: {
  32448. source: "./media/characters/purri/devious.svg",
  32449. extra: 1440/1155,
  32450. bottom: 147/1587
  32451. }
  32452. },
  32453. bean: {
  32454. height: math.unit(1.94, "feet"),
  32455. name: "Bean",
  32456. image: {
  32457. source: "./media/characters/purri/bean.svg"
  32458. }
  32459. },
  32460. },
  32461. [
  32462. {
  32463. name: "Micro",
  32464. height: math.unit(1, "mm")
  32465. },
  32466. {
  32467. name: "Normal",
  32468. height: math.unit(6 + 5/12, "feet"),
  32469. default: true
  32470. },
  32471. {
  32472. name: "Macro :3c",
  32473. height: math.unit(2, "miles")
  32474. },
  32475. ]
  32476. ))
  32477. characterMakers.push(() => makeCharacter(
  32478. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32479. {
  32480. front: {
  32481. height: math.unit(6 + 2/12, "feet"),
  32482. weight: math.unit(250, "lb"),
  32483. name: "Front",
  32484. image: {
  32485. source: "./media/characters/moonlight/front.svg",
  32486. extra: 1044/908,
  32487. bottom: 56/1100
  32488. }
  32489. },
  32490. feral: {
  32491. height: math.unit(3 + 1/12, "feet"),
  32492. weight: math.unit(50, "kg"),
  32493. name: "Feral",
  32494. image: {
  32495. source: "./media/characters/moonlight/feral.svg",
  32496. extra: 3705/2791,
  32497. bottom: 145/3850
  32498. }
  32499. },
  32500. paw: {
  32501. height: math.unit(1, "feet"),
  32502. name: "Paw",
  32503. image: {
  32504. source: "./media/characters/moonlight/paw.svg"
  32505. }
  32506. },
  32507. paws: {
  32508. height: math.unit(0.98, "feet"),
  32509. name: "Paws",
  32510. image: {
  32511. source: "./media/characters/moonlight/paws.svg",
  32512. extra: 939/939,
  32513. bottom: 50/989
  32514. }
  32515. },
  32516. mouth: {
  32517. height: math.unit(0.48, "feet"),
  32518. name: "Mouth",
  32519. image: {
  32520. source: "./media/characters/moonlight/mouth.svg"
  32521. }
  32522. },
  32523. dick: {
  32524. height: math.unit(1.46, "feet"),
  32525. name: "Dick",
  32526. image: {
  32527. source: "./media/characters/moonlight/dick.svg"
  32528. }
  32529. },
  32530. },
  32531. [
  32532. {
  32533. name: "Normal",
  32534. height: math.unit(6 + 2/12, "feet"),
  32535. default: true
  32536. },
  32537. {
  32538. name: "Macro",
  32539. height: math.unit(300, "feet")
  32540. },
  32541. {
  32542. name: "Macro+",
  32543. height: math.unit(1, "mile")
  32544. },
  32545. {
  32546. name: "Mt. Moon",
  32547. height: math.unit(5, "miles")
  32548. },
  32549. {
  32550. name: "Megamacro",
  32551. height: math.unit(15, "miles")
  32552. },
  32553. ]
  32554. ))
  32555. characterMakers.push(() => makeCharacter(
  32556. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32557. {
  32558. back: {
  32559. height: math.unit(6, "feet"),
  32560. weight: math.unit(150, "lb"),
  32561. name: "Back",
  32562. image: {
  32563. source: "./media/characters/sylen/back.svg",
  32564. extra: 1335/1273,
  32565. bottom: 107/1442
  32566. }
  32567. },
  32568. },
  32569. [
  32570. {
  32571. name: "Normal",
  32572. height: math.unit(5 + 5/12, "feet")
  32573. },
  32574. {
  32575. name: "Megamacro",
  32576. height: math.unit(3, "miles"),
  32577. default: true
  32578. },
  32579. ]
  32580. ))
  32581. characterMakers.push(() => makeCharacter(
  32582. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32583. {
  32584. front: {
  32585. height: math.unit(6, "feet"),
  32586. weight: math.unit(190, "lb"),
  32587. name: "Front",
  32588. image: {
  32589. source: "./media/characters/huttser/front.svg",
  32590. extra: 1152/1058,
  32591. bottom: 23/1175
  32592. }
  32593. },
  32594. side: {
  32595. height: math.unit(6, "feet"),
  32596. weight: math.unit(190, "lb"),
  32597. name: "Side",
  32598. image: {
  32599. source: "./media/characters/huttser/side.svg",
  32600. extra: 1174/1065,
  32601. bottom: 18/1192
  32602. }
  32603. },
  32604. back: {
  32605. height: math.unit(6, "feet"),
  32606. weight: math.unit(190, "lb"),
  32607. name: "Back",
  32608. image: {
  32609. source: "./media/characters/huttser/back.svg",
  32610. extra: 1158/1056,
  32611. bottom: 12/1170
  32612. }
  32613. },
  32614. },
  32615. [
  32616. ]
  32617. ))
  32618. characterMakers.push(() => makeCharacter(
  32619. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32620. {
  32621. side: {
  32622. height: math.unit(12 + 9/12, "feet"),
  32623. weight: math.unit(15000, "lb"),
  32624. name: "Side",
  32625. image: {
  32626. source: "./media/characters/faan/side.svg",
  32627. extra: 2747/2697,
  32628. bottom: 0/2747
  32629. }
  32630. },
  32631. front: {
  32632. height: math.unit(12 + 9/12, "feet"),
  32633. weight: math.unit(15000, "lb"),
  32634. name: "Front",
  32635. image: {
  32636. source: "./media/characters/faan/front.svg",
  32637. extra: 607/571,
  32638. bottom: 24/631
  32639. }
  32640. },
  32641. head: {
  32642. height: math.unit(2.85, "feet"),
  32643. name: "Head",
  32644. image: {
  32645. source: "./media/characters/faan/head.svg"
  32646. }
  32647. },
  32648. headAlt: {
  32649. height: math.unit(3.13, "feet"),
  32650. name: "Head-alt",
  32651. image: {
  32652. source: "./media/characters/faan/head-alt.svg"
  32653. }
  32654. },
  32655. },
  32656. [
  32657. {
  32658. name: "Normal",
  32659. height: math.unit(12 + 9/12, "feet"),
  32660. default: true
  32661. },
  32662. ]
  32663. ))
  32664. characterMakers.push(() => makeCharacter(
  32665. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32666. {
  32667. front: {
  32668. height: math.unit(6, "feet"),
  32669. weight: math.unit(300, "lb"),
  32670. name: "Front",
  32671. image: {
  32672. source: "./media/characters/tanio/front.svg",
  32673. extra: 711/673,
  32674. bottom: 25/736
  32675. }
  32676. },
  32677. },
  32678. [
  32679. {
  32680. name: "Normal",
  32681. height: math.unit(6, "feet"),
  32682. default: true
  32683. },
  32684. ]
  32685. ))
  32686. characterMakers.push(() => makeCharacter(
  32687. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32688. {
  32689. front: {
  32690. height: math.unit(3, "inches"),
  32691. name: "Front",
  32692. image: {
  32693. source: "./media/characters/noboru/front.svg",
  32694. extra: 1039/932,
  32695. bottom: 18/1057
  32696. }
  32697. },
  32698. },
  32699. [
  32700. {
  32701. name: "Micro",
  32702. height: math.unit(3, "inches"),
  32703. default: true
  32704. },
  32705. ]
  32706. ))
  32707. characterMakers.push(() => makeCharacter(
  32708. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32709. {
  32710. front: {
  32711. height: math.unit(1.85, "meters"),
  32712. weight: math.unit(80, "kg"),
  32713. name: "Front",
  32714. image: {
  32715. source: "./media/characters/daniel-barrett/front.svg",
  32716. extra: 355/337,
  32717. bottom: 9/364
  32718. }
  32719. },
  32720. },
  32721. [
  32722. {
  32723. name: "Pico",
  32724. height: math.unit(0.0433, "mm")
  32725. },
  32726. {
  32727. name: "Nano",
  32728. height: math.unit(1.5, "mm")
  32729. },
  32730. {
  32731. name: "Micro",
  32732. height: math.unit(5.3, "cm"),
  32733. default: true
  32734. },
  32735. {
  32736. name: "Normal",
  32737. height: math.unit(1.85, "meters")
  32738. },
  32739. {
  32740. name: "Macro",
  32741. height: math.unit(64.7, "meters")
  32742. },
  32743. {
  32744. name: "Megamacro",
  32745. height: math.unit(2.26, "km")
  32746. },
  32747. {
  32748. name: "Gigamacro",
  32749. height: math.unit(79, "km")
  32750. },
  32751. {
  32752. name: "Teramacro",
  32753. height: math.unit(2765, "km")
  32754. },
  32755. {
  32756. name: "Petamacro",
  32757. height: math.unit(96678, "km")
  32758. },
  32759. ]
  32760. ))
  32761. characterMakers.push(() => makeCharacter(
  32762. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32763. {
  32764. front: {
  32765. height: math.unit(30, "meters"),
  32766. weight: math.unit(400, "tons"),
  32767. name: "Front",
  32768. image: {
  32769. source: "./media/characters/zeel/front.svg",
  32770. extra: 2599/2599,
  32771. bottom: 226/2825
  32772. }
  32773. },
  32774. },
  32775. [
  32776. {
  32777. name: "Macro",
  32778. height: math.unit(30, "meters"),
  32779. default: true
  32780. },
  32781. ]
  32782. ))
  32783. characterMakers.push(() => makeCharacter(
  32784. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32785. {
  32786. front: {
  32787. height: math.unit(6 + 7/12, "feet"),
  32788. weight: math.unit(210, "lb"),
  32789. name: "Front",
  32790. image: {
  32791. source: "./media/characters/tarn/front.svg",
  32792. extra: 3517/3220,
  32793. bottom: 91/3608
  32794. }
  32795. },
  32796. back: {
  32797. height: math.unit(6 + 7/12, "feet"),
  32798. weight: math.unit(210, "lb"),
  32799. name: "Back",
  32800. image: {
  32801. source: "./media/characters/tarn/back.svg",
  32802. extra: 3566/3241,
  32803. bottom: 34/3600
  32804. }
  32805. },
  32806. dick: {
  32807. height: math.unit(1.65, "feet"),
  32808. name: "Dick",
  32809. image: {
  32810. source: "./media/characters/tarn/dick.svg"
  32811. }
  32812. },
  32813. paw: {
  32814. height: math.unit(1.80, "feet"),
  32815. name: "Paw",
  32816. image: {
  32817. source: "./media/characters/tarn/paw.svg"
  32818. }
  32819. },
  32820. tongue: {
  32821. height: math.unit(0.97, "feet"),
  32822. name: "Tongue",
  32823. image: {
  32824. source: "./media/characters/tarn/tongue.svg"
  32825. }
  32826. },
  32827. },
  32828. [
  32829. {
  32830. name: "Micro",
  32831. height: math.unit(4, "inches")
  32832. },
  32833. {
  32834. name: "Normal",
  32835. height: math.unit(6 + 7/12, "feet"),
  32836. default: true
  32837. },
  32838. {
  32839. name: "Macro",
  32840. height: math.unit(300, "feet")
  32841. },
  32842. ]
  32843. ))
  32844. characterMakers.push(() => makeCharacter(
  32845. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32846. {
  32847. front: {
  32848. height: math.unit(5 + 7/12, "feet"),
  32849. weight: math.unit(80, "kg"),
  32850. name: "Front",
  32851. image: {
  32852. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32853. extra: 3023/2865,
  32854. bottom: 33/3056
  32855. }
  32856. },
  32857. back: {
  32858. height: math.unit(5 + 7/12, "feet"),
  32859. weight: math.unit(80, "kg"),
  32860. name: "Back",
  32861. image: {
  32862. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32863. extra: 3020/2886,
  32864. bottom: 30/3050
  32865. }
  32866. },
  32867. dick: {
  32868. height: math.unit(0.98, "feet"),
  32869. name: "Dick",
  32870. image: {
  32871. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32872. }
  32873. },
  32874. anatomy: {
  32875. height: math.unit(2.86, "feet"),
  32876. name: "Anatomy",
  32877. image: {
  32878. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32879. }
  32880. },
  32881. },
  32882. [
  32883. {
  32884. name: "Really Small",
  32885. height: math.unit(2, "inches")
  32886. },
  32887. {
  32888. name: "Micro",
  32889. height: math.unit(5.583, "inches")
  32890. },
  32891. {
  32892. name: "Normal",
  32893. height: math.unit(5 + 7/12, "feet"),
  32894. default: true
  32895. },
  32896. {
  32897. name: "Macro",
  32898. height: math.unit(67, "feet")
  32899. },
  32900. {
  32901. name: "Megamacro",
  32902. height: math.unit(134, "feet")
  32903. },
  32904. ]
  32905. ))
  32906. characterMakers.push(() => makeCharacter(
  32907. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32908. {
  32909. front: {
  32910. height: math.unit(9, "feet"),
  32911. weight: math.unit(120, "lb"),
  32912. name: "Front",
  32913. image: {
  32914. source: "./media/characters/sally/front.svg",
  32915. extra: 1506/1349,
  32916. bottom: 66/1572
  32917. }
  32918. },
  32919. },
  32920. [
  32921. {
  32922. name: "Normal",
  32923. height: math.unit(9, "feet"),
  32924. default: true
  32925. },
  32926. ]
  32927. ))
  32928. characterMakers.push(() => makeCharacter(
  32929. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32930. {
  32931. front: {
  32932. height: math.unit(8, "feet"),
  32933. weight: math.unit(900, "lb"),
  32934. name: "Front",
  32935. image: {
  32936. source: "./media/characters/owen/front.svg",
  32937. extra: 1761/1657,
  32938. bottom: 74/1835
  32939. }
  32940. },
  32941. side: {
  32942. height: math.unit(8, "feet"),
  32943. weight: math.unit(900, "lb"),
  32944. name: "Side",
  32945. image: {
  32946. source: "./media/characters/owen/side.svg",
  32947. extra: 1797/1734,
  32948. bottom: 30/1827
  32949. }
  32950. },
  32951. back: {
  32952. height: math.unit(8, "feet"),
  32953. weight: math.unit(900, "lb"),
  32954. name: "Back",
  32955. image: {
  32956. source: "./media/characters/owen/back.svg",
  32957. extra: 1796/1706,
  32958. bottom: 59/1855
  32959. }
  32960. },
  32961. maw: {
  32962. height: math.unit(1.76, "feet"),
  32963. name: "Maw",
  32964. image: {
  32965. source: "./media/characters/owen/maw.svg"
  32966. }
  32967. },
  32968. },
  32969. [
  32970. {
  32971. name: "Normal",
  32972. height: math.unit(8, "feet"),
  32973. default: true
  32974. },
  32975. ]
  32976. ))
  32977. characterMakers.push(() => makeCharacter(
  32978. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32979. {
  32980. front: {
  32981. height: math.unit(4, "feet"),
  32982. weight: math.unit(400, "lb"),
  32983. name: "Front",
  32984. image: {
  32985. source: "./media/characters/ryth/front.svg",
  32986. extra: 1920/1748,
  32987. bottom: 42/1962
  32988. }
  32989. },
  32990. back: {
  32991. height: math.unit(4, "feet"),
  32992. weight: math.unit(400, "lb"),
  32993. name: "Back",
  32994. image: {
  32995. source: "./media/characters/ryth/back.svg",
  32996. extra: 1897/1690,
  32997. bottom: 89/1986
  32998. }
  32999. },
  33000. mouth: {
  33001. height: math.unit(1.39, "feet"),
  33002. name: "Mouth",
  33003. image: {
  33004. source: "./media/characters/ryth/mouth.svg"
  33005. }
  33006. },
  33007. tailmaw: {
  33008. height: math.unit(1.23, "feet"),
  33009. name: "Tailmaw",
  33010. image: {
  33011. source: "./media/characters/ryth/tailmaw.svg"
  33012. }
  33013. },
  33014. goia: {
  33015. height: math.unit(4, "meters"),
  33016. weight: math.unit(10800, "lb"),
  33017. name: "Goia",
  33018. image: {
  33019. source: "./media/characters/ryth/goia.svg",
  33020. extra: 745/640,
  33021. bottom: 107/852
  33022. }
  33023. },
  33024. goiaFront: {
  33025. height: math.unit(4, "meters"),
  33026. weight: math.unit(10800, "lb"),
  33027. name: "Goia (Front)",
  33028. image: {
  33029. source: "./media/characters/ryth/goia-front.svg",
  33030. extra: 750/586,
  33031. bottom: 114/864
  33032. }
  33033. },
  33034. goiaMaw: {
  33035. height: math.unit(5.55, "feet"),
  33036. name: "Goia Maw",
  33037. image: {
  33038. source: "./media/characters/ryth/goia-maw.svg"
  33039. }
  33040. },
  33041. goiaForepaw: {
  33042. height: math.unit(3.5, "feet"),
  33043. name: "Goia Forepaw",
  33044. image: {
  33045. source: "./media/characters/ryth/goia-forepaw.svg"
  33046. }
  33047. },
  33048. goiaHindpaw: {
  33049. height: math.unit(5.55, "feet"),
  33050. name: "Goia Hindpaw",
  33051. image: {
  33052. source: "./media/characters/ryth/goia-hindpaw.svg"
  33053. }
  33054. },
  33055. },
  33056. [
  33057. {
  33058. name: "Normal",
  33059. height: math.unit(4, "feet"),
  33060. default: true
  33061. },
  33062. ]
  33063. ))
  33064. characterMakers.push(() => makeCharacter(
  33065. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33066. {
  33067. front: {
  33068. height: math.unit(7, "feet"),
  33069. weight: math.unit(180, "lb"),
  33070. name: "Front",
  33071. image: {
  33072. source: "./media/characters/necrolance/front.svg",
  33073. extra: 1062/947,
  33074. bottom: 41/1103
  33075. }
  33076. },
  33077. back: {
  33078. height: math.unit(7, "feet"),
  33079. weight: math.unit(180, "lb"),
  33080. name: "Back",
  33081. image: {
  33082. source: "./media/characters/necrolance/back.svg",
  33083. extra: 1045/984,
  33084. bottom: 14/1059
  33085. }
  33086. },
  33087. wing: {
  33088. height: math.unit(2.67, "feet"),
  33089. name: "Wing",
  33090. image: {
  33091. source: "./media/characters/necrolance/wing.svg"
  33092. }
  33093. },
  33094. },
  33095. [
  33096. {
  33097. name: "Normal",
  33098. height: math.unit(7, "feet"),
  33099. default: true
  33100. },
  33101. ]
  33102. ))
  33103. characterMakers.push(() => makeCharacter(
  33104. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33105. {
  33106. front: {
  33107. height: math.unit(76, "meters"),
  33108. weight: math.unit(30000, "tons"),
  33109. name: "Front",
  33110. image: {
  33111. source: "./media/characters/tyler/front.svg",
  33112. extra: 1640/1640,
  33113. bottom: 114/1754
  33114. }
  33115. },
  33116. },
  33117. [
  33118. {
  33119. name: "Macro",
  33120. height: math.unit(76, "meters"),
  33121. default: true
  33122. },
  33123. ]
  33124. ))
  33125. characterMakers.push(() => makeCharacter(
  33126. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33127. {
  33128. front: {
  33129. height: math.unit(4 + 11/12, "feet"),
  33130. weight: math.unit(132, "lb"),
  33131. name: "Front",
  33132. image: {
  33133. source: "./media/characters/icey/front.svg",
  33134. extra: 2750/2550,
  33135. bottom: 33/2783
  33136. }
  33137. },
  33138. back: {
  33139. height: math.unit(4 + 11/12, "feet"),
  33140. weight: math.unit(132, "lb"),
  33141. name: "Back",
  33142. image: {
  33143. source: "./media/characters/icey/back.svg",
  33144. extra: 2624/2481,
  33145. bottom: 35/2659
  33146. }
  33147. },
  33148. },
  33149. [
  33150. {
  33151. name: "Normal",
  33152. height: math.unit(4 + 11/12, "feet"),
  33153. default: true
  33154. },
  33155. ]
  33156. ))
  33157. characterMakers.push(() => makeCharacter(
  33158. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33159. {
  33160. front: {
  33161. height: math.unit(100, "feet"),
  33162. weight: math.unit(0, "lb"),
  33163. name: "Front",
  33164. image: {
  33165. source: "./media/characters/smile/front.svg",
  33166. extra: 2983/2912,
  33167. bottom: 162/3145
  33168. }
  33169. },
  33170. back: {
  33171. height: math.unit(100, "feet"),
  33172. weight: math.unit(0, "lb"),
  33173. name: "Back",
  33174. image: {
  33175. source: "./media/characters/smile/back.svg",
  33176. extra: 3143/3031,
  33177. bottom: 91/3234
  33178. }
  33179. },
  33180. head: {
  33181. height: math.unit(26.3, "feet"),
  33182. weight: math.unit(0, "lb"),
  33183. name: "Head",
  33184. image: {
  33185. source: "./media/characters/smile/head.svg"
  33186. }
  33187. },
  33188. collar: {
  33189. height: math.unit(5.3, "feet"),
  33190. weight: math.unit(0, "lb"),
  33191. name: "Collar",
  33192. image: {
  33193. source: "./media/characters/smile/collar.svg"
  33194. }
  33195. },
  33196. },
  33197. [
  33198. {
  33199. name: "Macro",
  33200. height: math.unit(100, "feet"),
  33201. default: true
  33202. },
  33203. ]
  33204. ))
  33205. characterMakers.push(() => makeCharacter(
  33206. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33207. {
  33208. dragon: {
  33209. height: math.unit(26, "feet"),
  33210. weight: math.unit(36, "tons"),
  33211. name: "Dragon",
  33212. image: {
  33213. source: "./media/characters/arimphae/dragon.svg",
  33214. extra: 1574/983,
  33215. bottom: 357/1931
  33216. }
  33217. },
  33218. drake: {
  33219. height: math.unit(9, "feet"),
  33220. weight: math.unit(1.5, "tons"),
  33221. name: "Drake",
  33222. image: {
  33223. source: "./media/characters/arimphae/drake.svg",
  33224. extra: 1120/925,
  33225. bottom: 435/1555
  33226. }
  33227. },
  33228. },
  33229. [
  33230. {
  33231. name: "Small",
  33232. height: math.unit(26*5/9, "feet")
  33233. },
  33234. {
  33235. name: "Normal",
  33236. height: math.unit(26, "feet"),
  33237. default: true
  33238. },
  33239. ]
  33240. ))
  33241. characterMakers.push(() => makeCharacter(
  33242. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33243. {
  33244. front: {
  33245. height: math.unit(8 + 9/12, "feet"),
  33246. name: "Front",
  33247. image: {
  33248. source: "./media/characters/xander/front.svg",
  33249. extra: 1237/974,
  33250. bottom: 94/1331
  33251. }
  33252. },
  33253. },
  33254. [
  33255. {
  33256. name: "Normal",
  33257. height: math.unit(8 + 9/12, "feet"),
  33258. default: true
  33259. },
  33260. {
  33261. name: "Gaze Grabber",
  33262. height: math.unit(13 + 8/12, "feet")
  33263. },
  33264. {
  33265. name: "Jaw Dropper",
  33266. height: math.unit(27, "feet")
  33267. },
  33268. {
  33269. name: "Show Stopper",
  33270. height: math.unit(136, "feet")
  33271. },
  33272. {
  33273. name: "Superstar",
  33274. height: math.unit(1.9e6, "miles")
  33275. },
  33276. ]
  33277. ))
  33278. characterMakers.push(() => makeCharacter(
  33279. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33280. {
  33281. side: {
  33282. height: math.unit(2100, "feet"),
  33283. name: "Side",
  33284. image: {
  33285. source: "./media/characters/osiris/side.svg",
  33286. extra: 1105/939,
  33287. bottom: 167/1272
  33288. }
  33289. },
  33290. },
  33291. [
  33292. {
  33293. name: "Macro",
  33294. height: math.unit(2100, "feet"),
  33295. default: true
  33296. },
  33297. ]
  33298. ))
  33299. characterMakers.push(() => makeCharacter(
  33300. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33301. {
  33302. front: {
  33303. height: math.unit(6 + 8/12, "feet"),
  33304. weight: math.unit(225, "lb"),
  33305. name: "Front",
  33306. image: {
  33307. source: "./media/characters/rhys-londe/front.svg",
  33308. extra: 2258/2141,
  33309. bottom: 188/2446
  33310. }
  33311. },
  33312. back: {
  33313. height: math.unit(6 + 8/12, "feet"),
  33314. weight: math.unit(225, "lb"),
  33315. name: "Back",
  33316. image: {
  33317. source: "./media/characters/rhys-londe/back.svg",
  33318. extra: 2237/2137,
  33319. bottom: 63/2300
  33320. }
  33321. },
  33322. frontNsfw: {
  33323. height: math.unit(6 + 8/12, "feet"),
  33324. weight: math.unit(225, "lb"),
  33325. name: "Front (NSFW)",
  33326. image: {
  33327. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33328. extra: 2258/2141,
  33329. bottom: 188/2446
  33330. }
  33331. },
  33332. backNsfw: {
  33333. height: math.unit(6 + 8/12, "feet"),
  33334. weight: math.unit(225, "lb"),
  33335. name: "Back (NSFW)",
  33336. image: {
  33337. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33338. extra: 2237/2137,
  33339. bottom: 63/2300
  33340. }
  33341. },
  33342. dick: {
  33343. height: math.unit(30, "inches"),
  33344. name: "Dick",
  33345. image: {
  33346. source: "./media/characters/rhys-londe/dick.svg"
  33347. }
  33348. },
  33349. maw: {
  33350. height: math.unit(1.6, "feet"),
  33351. name: "Maw",
  33352. image: {
  33353. source: "./media/characters/rhys-londe/maw.svg"
  33354. }
  33355. },
  33356. },
  33357. [
  33358. {
  33359. name: "Normal",
  33360. height: math.unit(6 + 8/12, "feet"),
  33361. default: true
  33362. },
  33363. ]
  33364. ))
  33365. characterMakers.push(() => makeCharacter(
  33366. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33367. {
  33368. front: {
  33369. height: math.unit(3 + 10/12, "feet"),
  33370. weight: math.unit(90, "lb"),
  33371. name: "Front",
  33372. image: {
  33373. source: "./media/characters/taivas-ensim/front.svg",
  33374. extra: 1327/1216,
  33375. bottom: 96/1423
  33376. }
  33377. },
  33378. back: {
  33379. height: math.unit(3 + 10/12, "feet"),
  33380. weight: math.unit(90, "lb"),
  33381. name: "Back",
  33382. image: {
  33383. source: "./media/characters/taivas-ensim/back.svg",
  33384. extra: 1355/1247,
  33385. bottom: 11/1366
  33386. }
  33387. },
  33388. frontNsfw: {
  33389. height: math.unit(3 + 10/12, "feet"),
  33390. weight: math.unit(90, "lb"),
  33391. name: "Front (NSFW)",
  33392. image: {
  33393. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33394. extra: 1327/1216,
  33395. bottom: 96/1423
  33396. }
  33397. },
  33398. backNsfw: {
  33399. height: math.unit(3 + 10/12, "feet"),
  33400. weight: math.unit(90, "lb"),
  33401. name: "Back (NSFW)",
  33402. image: {
  33403. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33404. extra: 1355/1247,
  33405. bottom: 11/1366
  33406. }
  33407. },
  33408. },
  33409. [
  33410. {
  33411. name: "Normal",
  33412. height: math.unit(3 + 10/12, "feet"),
  33413. default: true
  33414. },
  33415. ]
  33416. ))
  33417. characterMakers.push(() => makeCharacter(
  33418. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33419. {
  33420. front: {
  33421. height: math.unit(9 + 6/12, "feet"),
  33422. weight: math.unit(940, "lb"),
  33423. name: "Front",
  33424. image: {
  33425. source: "./media/characters/byliss/front.svg",
  33426. extra: 1327/1290,
  33427. bottom: 82/1409
  33428. }
  33429. },
  33430. back: {
  33431. height: math.unit(9 + 6/12, "feet"),
  33432. weight: math.unit(940, "lb"),
  33433. name: "Back",
  33434. image: {
  33435. source: "./media/characters/byliss/back.svg",
  33436. extra: 1376/1349,
  33437. bottom: 9/1385
  33438. }
  33439. },
  33440. frontNsfw: {
  33441. height: math.unit(9 + 6/12, "feet"),
  33442. weight: math.unit(940, "lb"),
  33443. name: "Front (NSFW)",
  33444. image: {
  33445. source: "./media/characters/byliss/front-nsfw.svg",
  33446. extra: 1327/1290,
  33447. bottom: 82/1409
  33448. }
  33449. },
  33450. backNsfw: {
  33451. height: math.unit(9 + 6/12, "feet"),
  33452. weight: math.unit(940, "lb"),
  33453. name: "Back (NSFW)",
  33454. image: {
  33455. source: "./media/characters/byliss/back-nsfw.svg",
  33456. extra: 1376/1349,
  33457. bottom: 9/1385
  33458. }
  33459. },
  33460. },
  33461. [
  33462. {
  33463. name: "Normal",
  33464. height: math.unit(9 + 6/12, "feet"),
  33465. default: true
  33466. },
  33467. ]
  33468. ))
  33469. characterMakers.push(() => makeCharacter(
  33470. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33471. {
  33472. front: {
  33473. height: math.unit(5 + 2/12, "feet"),
  33474. weight: math.unit(200, "lb"),
  33475. name: "Front",
  33476. image: {
  33477. source: "./media/characters/noraly/front.svg",
  33478. extra: 4985/4773,
  33479. bottom: 150/5135
  33480. }
  33481. },
  33482. full: {
  33483. height: math.unit(5 + 2/12, "feet"),
  33484. weight: math.unit(164, "lb"),
  33485. name: "Full",
  33486. image: {
  33487. source: "./media/characters/noraly/full.svg",
  33488. extra: 1114/1059,
  33489. bottom: 35/1149
  33490. }
  33491. },
  33492. fuller: {
  33493. height: math.unit(5 + 2/12, "feet"),
  33494. weight: math.unit(230, "lb"),
  33495. name: "Fuller",
  33496. image: {
  33497. source: "./media/characters/noraly/fuller.svg",
  33498. extra: 1114/1059,
  33499. bottom: 35/1149
  33500. }
  33501. },
  33502. fullest: {
  33503. height: math.unit(5 + 2/12, "feet"),
  33504. weight: math.unit(300, "lb"),
  33505. name: "Fullest",
  33506. image: {
  33507. source: "./media/characters/noraly/fullest.svg",
  33508. extra: 1114/1059,
  33509. bottom: 35/1149
  33510. }
  33511. },
  33512. },
  33513. [
  33514. {
  33515. name: "Normal",
  33516. height: math.unit(5 + 2/12, "feet"),
  33517. default: true
  33518. },
  33519. ]
  33520. ))
  33521. characterMakers.push(() => makeCharacter(
  33522. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33523. {
  33524. front: {
  33525. height: math.unit(5 + 2/12, "feet"),
  33526. weight: math.unit(210, "lb"),
  33527. name: "Front",
  33528. image: {
  33529. source: "./media/characters/pera/front.svg",
  33530. extra: 1560/1531,
  33531. bottom: 165/1725
  33532. }
  33533. },
  33534. back: {
  33535. height: math.unit(5 + 2/12, "feet"),
  33536. weight: math.unit(210, "lb"),
  33537. name: "Back",
  33538. image: {
  33539. source: "./media/characters/pera/back.svg",
  33540. extra: 1523/1493,
  33541. bottom: 152/1675
  33542. }
  33543. },
  33544. dick: {
  33545. height: math.unit(2.4, "feet"),
  33546. name: "Dick",
  33547. image: {
  33548. source: "./media/characters/pera/dick.svg"
  33549. }
  33550. },
  33551. },
  33552. [
  33553. {
  33554. name: "Normal",
  33555. height: math.unit(5 + 2/12, "feet"),
  33556. default: true
  33557. },
  33558. ]
  33559. ))
  33560. characterMakers.push(() => makeCharacter(
  33561. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33562. {
  33563. front: {
  33564. height: math.unit(12, "feet"),
  33565. weight: math.unit(3200, "lb"),
  33566. name: "Front",
  33567. image: {
  33568. source: "./media/characters/julian/front.svg",
  33569. extra: 2962/2701,
  33570. bottom: 184/3146
  33571. }
  33572. },
  33573. maw: {
  33574. height: math.unit(5.35, "feet"),
  33575. name: "Maw",
  33576. image: {
  33577. source: "./media/characters/julian/maw.svg"
  33578. }
  33579. },
  33580. paw: {
  33581. height: math.unit(3.07, "feet"),
  33582. name: "Paw",
  33583. image: {
  33584. source: "./media/characters/julian/paw.svg"
  33585. }
  33586. },
  33587. },
  33588. [
  33589. {
  33590. name: "Default",
  33591. height: math.unit(12, "feet"),
  33592. default: true
  33593. },
  33594. {
  33595. name: "Big",
  33596. height: math.unit(50, "feet")
  33597. },
  33598. {
  33599. name: "Really Big",
  33600. height: math.unit(1, "mile")
  33601. },
  33602. {
  33603. name: "Extremely Big",
  33604. height: math.unit(100, "miles")
  33605. },
  33606. {
  33607. name: "Planet Hugger",
  33608. height: math.unit(200, "megameters")
  33609. },
  33610. {
  33611. name: "Unreasonably Big",
  33612. height: math.unit(1e300, "meters")
  33613. },
  33614. ]
  33615. ))
  33616. characterMakers.push(() => makeCharacter(
  33617. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33618. {
  33619. solgooleo: {
  33620. height: math.unit(4, "meters"),
  33621. weight: math.unit(6000*1.5, "kg"),
  33622. volume: math.unit(6000, "liters"),
  33623. name: "Solgooleo",
  33624. image: {
  33625. source: "./media/characters/pi/solgooleo.svg",
  33626. extra: 388/331,
  33627. bottom: 29/417
  33628. }
  33629. },
  33630. },
  33631. [
  33632. {
  33633. name: "Normal",
  33634. height: math.unit(4, "meters"),
  33635. default: true
  33636. },
  33637. ]
  33638. ))
  33639. characterMakers.push(() => makeCharacter(
  33640. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33641. {
  33642. front: {
  33643. height: math.unit(8, "feet"),
  33644. weight: math.unit(4, "tons"),
  33645. name: "Front",
  33646. image: {
  33647. source: "./media/characters/shaun/front.svg",
  33648. extra: 503/495,
  33649. bottom: 20/523
  33650. }
  33651. },
  33652. back: {
  33653. height: math.unit(8, "feet"),
  33654. weight: math.unit(4, "tons"),
  33655. name: "Back",
  33656. image: {
  33657. source: "./media/characters/shaun/back.svg",
  33658. extra: 487/480,
  33659. bottom: 20/507
  33660. }
  33661. },
  33662. },
  33663. [
  33664. {
  33665. name: "Lorg",
  33666. height: math.unit(8, "feet"),
  33667. default: true
  33668. },
  33669. ]
  33670. ))
  33671. characterMakers.push(() => makeCharacter(
  33672. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33673. {
  33674. frontAnthro: {
  33675. height: math.unit(7, "feet"),
  33676. name: "Front",
  33677. image: {
  33678. source: "./media/characters/sini/front-anthro.svg",
  33679. extra: 726/678,
  33680. bottom: 35/761
  33681. },
  33682. form: "anthro",
  33683. default: true
  33684. },
  33685. backAnthro: {
  33686. height: math.unit(7, "feet"),
  33687. name: "Back",
  33688. image: {
  33689. source: "./media/characters/sini/back-anthro.svg",
  33690. extra: 743/701,
  33691. bottom: 12/755
  33692. },
  33693. form: "anthro",
  33694. },
  33695. frontAnthroNsfw: {
  33696. height: math.unit(7, "feet"),
  33697. name: "Front (NSFW)",
  33698. image: {
  33699. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33700. extra: 726/678,
  33701. bottom: 35/761
  33702. },
  33703. form: "anthro"
  33704. },
  33705. backAnthroNsfw: {
  33706. height: math.unit(7, "feet"),
  33707. name: "Back (NSFW)",
  33708. image: {
  33709. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33710. extra: 743/701,
  33711. bottom: 12/755
  33712. },
  33713. form: "anthro",
  33714. },
  33715. mawAnthro: {
  33716. height: math.unit(2.14, "feet"),
  33717. name: "Maw",
  33718. image: {
  33719. source: "./media/characters/sini/maw-anthro.svg"
  33720. },
  33721. form: "anthro"
  33722. },
  33723. dick: {
  33724. height: math.unit(1.45, "feet"),
  33725. name: "Dick",
  33726. image: {
  33727. source: "./media/characters/sini/dick-anthro.svg"
  33728. },
  33729. form: "anthro"
  33730. },
  33731. feral: {
  33732. height: math.unit(16, "feet"),
  33733. name: "Feral",
  33734. image: {
  33735. source: "./media/characters/sini/feral.svg",
  33736. extra: 814/605,
  33737. bottom: 11/825
  33738. },
  33739. form: "feral",
  33740. default: true
  33741. },
  33742. feralNsfw: {
  33743. height: math.unit(16, "feet"),
  33744. name: "Feral (NSFW)",
  33745. image: {
  33746. source: "./media/characters/sini/feral-nsfw.svg",
  33747. extra: 814/605,
  33748. bottom: 11/825
  33749. },
  33750. form: "feral"
  33751. },
  33752. mawFeral: {
  33753. height: math.unit(5.66, "feet"),
  33754. name: "Maw",
  33755. image: {
  33756. source: "./media/characters/sini/maw-feral.svg"
  33757. },
  33758. form: "feral",
  33759. },
  33760. pawFeral: {
  33761. height: math.unit(5.17, "feet"),
  33762. name: "Paw",
  33763. image: {
  33764. source: "./media/characters/sini/paw-feral.svg"
  33765. },
  33766. form: "feral",
  33767. },
  33768. rumpFeral: {
  33769. height: math.unit(13.11, "feet"),
  33770. name: "Rump",
  33771. image: {
  33772. source: "./media/characters/sini/rump-feral.svg"
  33773. },
  33774. form: "feral",
  33775. },
  33776. dickFeral: {
  33777. height: math.unit(1, "feet"),
  33778. name: "Dick",
  33779. image: {
  33780. source: "./media/characters/sini/dick-feral.svg"
  33781. },
  33782. form: "feral",
  33783. },
  33784. eyeFeral: {
  33785. height: math.unit(1.23, "feet"),
  33786. name: "Eye",
  33787. image: {
  33788. source: "./media/characters/sini/eye-feral.svg"
  33789. },
  33790. form: "feral",
  33791. },
  33792. },
  33793. [
  33794. {
  33795. name: "Normal",
  33796. height: math.unit(7, "feet"),
  33797. default: true,
  33798. form: "anthro"
  33799. },
  33800. {
  33801. name: "Normal",
  33802. height: math.unit(16, "feet"),
  33803. default: true,
  33804. form: "feral"
  33805. },
  33806. ],
  33807. {
  33808. "anthro": {
  33809. name: "Anthro",
  33810. default: true
  33811. },
  33812. "feral": {
  33813. name: "Feral",
  33814. }
  33815. }
  33816. ))
  33817. characterMakers.push(() => makeCharacter(
  33818. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33819. {
  33820. side: {
  33821. height: math.unit(13, "meters"),
  33822. weight: math.unit(9072, "kg"),
  33823. name: "Side",
  33824. image: {
  33825. source: "./media/characters/raylldo/side.svg",
  33826. extra: 403/344,
  33827. bottom: 42/445
  33828. }
  33829. },
  33830. leaping: {
  33831. height: math.unit(12.3, "meters"),
  33832. weight: math.unit(9072, "kg"),
  33833. name: "Leaping",
  33834. image: {
  33835. source: "./media/characters/raylldo/leaping.svg",
  33836. extra: 470/249,
  33837. bottom: 13/483
  33838. }
  33839. },
  33840. flying: {
  33841. height: math.unit(18, "meters"),
  33842. weight: math.unit(9072, "kg"),
  33843. name: "Flying",
  33844. image: {
  33845. source: "./media/characters/raylldo/flying.svg"
  33846. }
  33847. },
  33848. head: {
  33849. height: math.unit(5.85, "meters"),
  33850. name: "Head",
  33851. image: {
  33852. source: "./media/characters/raylldo/head.svg"
  33853. }
  33854. },
  33855. maw: {
  33856. height: math.unit(5.32, "meters"),
  33857. name: "Maw",
  33858. image: {
  33859. source: "./media/characters/raylldo/maw.svg"
  33860. }
  33861. },
  33862. eye: {
  33863. height: math.unit(0.54, "meters"),
  33864. name: "Eye",
  33865. image: {
  33866. source: "./media/characters/raylldo/eye.svg"
  33867. }
  33868. },
  33869. },
  33870. [
  33871. {
  33872. name: "Normal",
  33873. height: math.unit(13, "meters"),
  33874. default: true
  33875. },
  33876. ]
  33877. ))
  33878. characterMakers.push(() => makeCharacter(
  33879. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33880. {
  33881. anthroFront: {
  33882. height: math.unit(9, "feet"),
  33883. weight: math.unit(600, "lb"),
  33884. name: "Anthro (Front)",
  33885. image: {
  33886. source: "./media/characters/glint/anthro-front.svg",
  33887. extra: 1097/1018,
  33888. bottom: 28/1125
  33889. }
  33890. },
  33891. anthroBack: {
  33892. height: math.unit(9, "feet"),
  33893. weight: math.unit(600, "lb"),
  33894. name: "Anthro (Back)",
  33895. image: {
  33896. source: "./media/characters/glint/anthro-back.svg",
  33897. extra: 1154/997,
  33898. bottom: 36/1190
  33899. }
  33900. },
  33901. feral: {
  33902. height: math.unit(11, "feet"),
  33903. weight: math.unit(50000, "lb"),
  33904. name: "Feral",
  33905. image: {
  33906. source: "./media/characters/glint/feral.svg",
  33907. extra: 3035/1585,
  33908. bottom: 1169/4204
  33909. }
  33910. },
  33911. dickAnthro: {
  33912. height: math.unit(0.7, "meters"),
  33913. name: "Dick (Anthro)",
  33914. image: {
  33915. source: "./media/characters/glint/dick-anthro.svg"
  33916. }
  33917. },
  33918. dickFeral: {
  33919. height: math.unit(2.65, "meters"),
  33920. name: "Dick (Feral)",
  33921. image: {
  33922. source: "./media/characters/glint/dick-feral.svg"
  33923. }
  33924. },
  33925. slitHidden: {
  33926. height: math.unit(5.85, "meters"),
  33927. name: "Slit (Hidden)",
  33928. image: {
  33929. source: "./media/characters/glint/slit-hidden.svg"
  33930. }
  33931. },
  33932. slitErect: {
  33933. height: math.unit(5.85, "meters"),
  33934. name: "Slit (Erect)",
  33935. image: {
  33936. source: "./media/characters/glint/slit-erect.svg"
  33937. }
  33938. },
  33939. mawAnthro: {
  33940. height: math.unit(0.63, "meters"),
  33941. name: "Maw (Anthro)",
  33942. image: {
  33943. source: "./media/characters/glint/maw.svg"
  33944. }
  33945. },
  33946. mawFeral: {
  33947. height: math.unit(2.89, "meters"),
  33948. name: "Maw (Feral)",
  33949. image: {
  33950. source: "./media/characters/glint/maw.svg"
  33951. }
  33952. },
  33953. },
  33954. [
  33955. {
  33956. name: "Normal",
  33957. height: math.unit(9, "feet"),
  33958. default: true
  33959. },
  33960. ]
  33961. ))
  33962. characterMakers.push(() => makeCharacter(
  33963. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33964. {
  33965. side: {
  33966. height: math.unit(15, "feet"),
  33967. weight: math.unit(5000, "kg"),
  33968. name: "Side",
  33969. image: {
  33970. source: "./media/characters/kairne/side.svg",
  33971. extra: 979/811,
  33972. bottom: 13/992
  33973. }
  33974. },
  33975. front: {
  33976. height: math.unit(15, "feet"),
  33977. weight: math.unit(5000, "kg"),
  33978. name: "Front",
  33979. image: {
  33980. source: "./media/characters/kairne/front.svg",
  33981. extra: 908/814,
  33982. bottom: 26/934
  33983. }
  33984. },
  33985. sideNsfw: {
  33986. height: math.unit(15, "feet"),
  33987. weight: math.unit(5000, "kg"),
  33988. name: "Side (NSFW)",
  33989. image: {
  33990. source: "./media/characters/kairne/side-nsfw.svg",
  33991. extra: 979/811,
  33992. bottom: 13/992
  33993. }
  33994. },
  33995. frontNsfw: {
  33996. height: math.unit(15, "feet"),
  33997. weight: math.unit(5000, "kg"),
  33998. name: "Front (NSFW)",
  33999. image: {
  34000. source: "./media/characters/kairne/front-nsfw.svg",
  34001. extra: 908/814,
  34002. bottom: 26/934
  34003. }
  34004. },
  34005. dickCaged: {
  34006. height: math.unit(0.65, "meters"),
  34007. name: "Dick-caged",
  34008. image: {
  34009. source: "./media/characters/kairne/dick-caged.svg"
  34010. }
  34011. },
  34012. dick: {
  34013. height: math.unit(0.79, "meters"),
  34014. name: "Dick",
  34015. image: {
  34016. source: "./media/characters/kairne/dick.svg"
  34017. }
  34018. },
  34019. genitals: {
  34020. height: math.unit(1.29, "meters"),
  34021. name: "Genitals",
  34022. image: {
  34023. source: "./media/characters/kairne/genitals.svg"
  34024. }
  34025. },
  34026. maw: {
  34027. height: math.unit(1.73, "meters"),
  34028. name: "Maw",
  34029. image: {
  34030. source: "./media/characters/kairne/maw.svg"
  34031. }
  34032. },
  34033. },
  34034. [
  34035. {
  34036. name: "Normal",
  34037. height: math.unit(15, "feet"),
  34038. default: true
  34039. },
  34040. ]
  34041. ))
  34042. characterMakers.push(() => makeCharacter(
  34043. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34044. {
  34045. front: {
  34046. height: math.unit(5 + 8/12, "feet"),
  34047. weight: math.unit(139, "lb"),
  34048. name: "Front",
  34049. image: {
  34050. source: "./media/characters/biscuit-jackal/front.svg",
  34051. extra: 2106/1961,
  34052. bottom: 58/2164
  34053. }
  34054. },
  34055. back: {
  34056. height: math.unit(5 + 8/12, "feet"),
  34057. weight: math.unit(139, "lb"),
  34058. name: "Back",
  34059. image: {
  34060. source: "./media/characters/biscuit-jackal/back.svg",
  34061. extra: 2132/1976,
  34062. bottom: 57/2189
  34063. }
  34064. },
  34065. werejackal: {
  34066. height: math.unit(6 + 3/12, "feet"),
  34067. weight: math.unit(188, "lb"),
  34068. name: "Werejackal",
  34069. image: {
  34070. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34071. extra: 2373/2178,
  34072. bottom: 53/2426
  34073. }
  34074. },
  34075. },
  34076. [
  34077. {
  34078. name: "Normal",
  34079. height: math.unit(5 + 8/12, "feet"),
  34080. default: true
  34081. },
  34082. ]
  34083. ))
  34084. characterMakers.push(() => makeCharacter(
  34085. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34086. {
  34087. front: {
  34088. height: math.unit(140, "cm"),
  34089. weight: math.unit(45, "kg"),
  34090. name: "Front",
  34091. image: {
  34092. source: "./media/characters/tayra-white/front.svg",
  34093. extra: 2229/2192,
  34094. bottom: 75/2304
  34095. }
  34096. },
  34097. },
  34098. [
  34099. {
  34100. name: "Normal",
  34101. height: math.unit(140, "cm"),
  34102. default: true
  34103. },
  34104. ]
  34105. ))
  34106. characterMakers.push(() => makeCharacter(
  34107. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34108. {
  34109. front: {
  34110. height: math.unit(4 + 5/12, "feet"),
  34111. name: "Front",
  34112. image: {
  34113. source: "./media/characters/scoop/front.svg",
  34114. extra: 1257/1136,
  34115. bottom: 69/1326
  34116. }
  34117. },
  34118. back: {
  34119. height: math.unit(4 + 5/12, "feet"),
  34120. name: "Back",
  34121. image: {
  34122. source: "./media/characters/scoop/back.svg",
  34123. extra: 1321/1152,
  34124. bottom: 32/1353
  34125. }
  34126. },
  34127. maw: {
  34128. height: math.unit(0.68, "feet"),
  34129. name: "Maw",
  34130. image: {
  34131. source: "./media/characters/scoop/maw.svg"
  34132. }
  34133. },
  34134. },
  34135. [
  34136. {
  34137. name: "Really Small",
  34138. height: math.unit(1, "mm")
  34139. },
  34140. {
  34141. name: "Micro",
  34142. height: math.unit(1, "inch")
  34143. },
  34144. {
  34145. name: "Normal",
  34146. height: math.unit(4 + 5/12, "feet"),
  34147. default: true
  34148. },
  34149. {
  34150. name: "Macro",
  34151. height: math.unit(200, "feet")
  34152. },
  34153. {
  34154. name: "Megamacro",
  34155. height: math.unit(3240, "feet")
  34156. },
  34157. {
  34158. name: "Teramacro",
  34159. height: math.unit(2500, "miles")
  34160. },
  34161. ]
  34162. ))
  34163. characterMakers.push(() => makeCharacter(
  34164. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34165. {
  34166. front: {
  34167. height: math.unit(15 + 7/12, "feet"),
  34168. weight: math.unit(1150, "tons"),
  34169. name: "Front",
  34170. image: {
  34171. source: "./media/characters/saphinara/front.svg",
  34172. extra: 1837/1643,
  34173. bottom: 84/1921
  34174. },
  34175. form: "normal",
  34176. default: true
  34177. },
  34178. side: {
  34179. height: math.unit(15 + 7/12, "feet"),
  34180. weight: math.unit(1150, "tons"),
  34181. name: "Side",
  34182. image: {
  34183. source: "./media/characters/saphinara/side.svg",
  34184. extra: 605/547,
  34185. bottom: 6/611
  34186. },
  34187. form: "normal"
  34188. },
  34189. back: {
  34190. height: math.unit(15 + 7/12, "feet"),
  34191. weight: math.unit(1150, "tons"),
  34192. name: "Back",
  34193. image: {
  34194. source: "./media/characters/saphinara/back.svg",
  34195. extra: 591/531,
  34196. bottom: 13/604
  34197. },
  34198. form: "normal"
  34199. },
  34200. frontTail: {
  34201. height: math.unit(15 + 7/12, "feet"),
  34202. weight: math.unit(1150, "tons"),
  34203. name: "Front (Full Tail)",
  34204. image: {
  34205. source: "./media/characters/saphinara/front-tail.svg",
  34206. extra: 2256/1630,
  34207. bottom: 261/2517
  34208. },
  34209. form: "normal"
  34210. },
  34211. insides: {
  34212. height: math.unit(11.92, "feet"),
  34213. name: "Insides",
  34214. image: {
  34215. source: "./media/characters/saphinara/insides.svg"
  34216. },
  34217. form: "normal"
  34218. },
  34219. head: {
  34220. height: math.unit(4.17, "feet"),
  34221. name: "Head",
  34222. image: {
  34223. source: "./media/characters/saphinara/head.svg"
  34224. },
  34225. form: "normal"
  34226. },
  34227. tongue: {
  34228. height: math.unit(4.60, "feet"),
  34229. name: "Tongue",
  34230. image: {
  34231. source: "./media/characters/saphinara/tongue.svg"
  34232. },
  34233. form: "normal"
  34234. },
  34235. headEnraged: {
  34236. height: math.unit(5.55, "feet"),
  34237. name: "Head (Enraged)",
  34238. image: {
  34239. source: "./media/characters/saphinara/head-enraged.svg"
  34240. },
  34241. form: "normal"
  34242. },
  34243. wings: {
  34244. height: math.unit(11.95, "feet"),
  34245. name: "Wings",
  34246. image: {
  34247. source: "./media/characters/saphinara/wings.svg"
  34248. },
  34249. form: "normal"
  34250. },
  34251. feathers: {
  34252. height: math.unit(8.92, "feet"),
  34253. name: "Feathers",
  34254. image: {
  34255. source: "./media/characters/saphinara/feathers.svg"
  34256. },
  34257. form: "normal"
  34258. },
  34259. shackles: {
  34260. height: math.unit(2, "feet"),
  34261. name: "Shackles",
  34262. image: {
  34263. source: "./media/characters/saphinara/shackles.svg"
  34264. },
  34265. form: "normal"
  34266. },
  34267. eyes: {
  34268. height: math.unit(1.331, "feet"),
  34269. name: "Eyes",
  34270. image: {
  34271. source: "./media/characters/saphinara/eyes.svg"
  34272. },
  34273. form: "normal"
  34274. },
  34275. eyesEnraged: {
  34276. height: math.unit(1.331, "feet"),
  34277. name: "Eyes (Enraged)",
  34278. image: {
  34279. source: "./media/characters/saphinara/eyes-enraged.svg"
  34280. },
  34281. form: "normal"
  34282. },
  34283. trueFormSide: {
  34284. height: math.unit(200, "feet"),
  34285. weight: math.unit(1e7, "tons"),
  34286. name: "Side",
  34287. image: {
  34288. source: "./media/characters/saphinara/true-form-side.svg",
  34289. extra: 1399/770,
  34290. bottom: 97/1496
  34291. },
  34292. form: "true-form",
  34293. default: true
  34294. },
  34295. trueFormMaw: {
  34296. height: math.unit(71.5, "feet"),
  34297. name: "Maw",
  34298. image: {
  34299. source: "./media/characters/saphinara/true-form-maw.svg",
  34300. extra: 2302/1453,
  34301. bottom: 0/2302
  34302. },
  34303. form: "true-form"
  34304. },
  34305. },
  34306. [
  34307. {
  34308. name: "Normal",
  34309. height: math.unit(15 + 7/12, "feet"),
  34310. default: true,
  34311. form: "normal"
  34312. },
  34313. {
  34314. name: "Angry",
  34315. height: math.unit(30 + 6/12, "feet"),
  34316. form: "normal"
  34317. },
  34318. {
  34319. name: "Enraged",
  34320. height: math.unit(102 + 1/12, "feet"),
  34321. form: "normal"
  34322. },
  34323. {
  34324. name: "True",
  34325. height: math.unit(200, "feet"),
  34326. default: true,
  34327. form: "true-form"
  34328. }
  34329. ],
  34330. {
  34331. "normal": {
  34332. name: "Normal",
  34333. default: true
  34334. },
  34335. "true-form": {
  34336. name: "True Form"
  34337. }
  34338. }
  34339. ))
  34340. characterMakers.push(() => makeCharacter(
  34341. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34342. {
  34343. front: {
  34344. height: math.unit(6 + 8/12, "feet"),
  34345. weight: math.unit(300, "lb"),
  34346. name: "Front",
  34347. image: {
  34348. source: "./media/characters/jrain/front.svg",
  34349. extra: 3039/2865,
  34350. bottom: 399/3438
  34351. }
  34352. },
  34353. back: {
  34354. height: math.unit(6 + 8/12, "feet"),
  34355. weight: math.unit(300, "lb"),
  34356. name: "Back",
  34357. image: {
  34358. source: "./media/characters/jrain/back.svg",
  34359. extra: 3089/2938,
  34360. bottom: 172/3261
  34361. }
  34362. },
  34363. head: {
  34364. height: math.unit(2.14, "feet"),
  34365. name: "Head",
  34366. image: {
  34367. source: "./media/characters/jrain/head.svg"
  34368. }
  34369. },
  34370. maw: {
  34371. height: math.unit(1.77, "feet"),
  34372. name: "Maw",
  34373. image: {
  34374. source: "./media/characters/jrain/maw.svg"
  34375. }
  34376. },
  34377. leftHand: {
  34378. height: math.unit(1.1, "feet"),
  34379. name: "Left Hand",
  34380. image: {
  34381. source: "./media/characters/jrain/left-hand.svg"
  34382. }
  34383. },
  34384. rightHand: {
  34385. height: math.unit(1.1, "feet"),
  34386. name: "Right Hand",
  34387. image: {
  34388. source: "./media/characters/jrain/right-hand.svg"
  34389. }
  34390. },
  34391. eye: {
  34392. height: math.unit(0.35, "feet"),
  34393. name: "Eye",
  34394. image: {
  34395. source: "./media/characters/jrain/eye.svg"
  34396. }
  34397. },
  34398. },
  34399. [
  34400. {
  34401. name: "Normal",
  34402. height: math.unit(6 + 8/12, "feet"),
  34403. default: true
  34404. },
  34405. {
  34406. name: "Casually Large",
  34407. height: math.unit(25, "feet")
  34408. },
  34409. {
  34410. name: "Giant",
  34411. height: math.unit(100, "feet")
  34412. },
  34413. {
  34414. name: "Kaiju",
  34415. height: math.unit(300, "feet")
  34416. },
  34417. ]
  34418. ))
  34419. characterMakers.push(() => makeCharacter(
  34420. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34421. {
  34422. dragon: {
  34423. height: math.unit(5, "meters"),
  34424. name: "Dragon",
  34425. image: {
  34426. source: "./media/characters/sabrina/dragon.svg",
  34427. extra: 3670 / 2365,
  34428. bottom: 333 / 4003
  34429. }
  34430. },
  34431. gryphon: {
  34432. height: math.unit(3, "meters"),
  34433. name: "Gryphon",
  34434. image: {
  34435. source: "./media/characters/sabrina/gryphon.svg",
  34436. extra: 1576 / 945,
  34437. bottom: 71 / 1647
  34438. }
  34439. },
  34440. snake: {
  34441. height: math.unit(12, "meters"),
  34442. name: "Snake",
  34443. image: {
  34444. source: "./media/characters/sabrina/snake.svg",
  34445. extra: 1758 / 1320,
  34446. bottom: 186 / 1944
  34447. }
  34448. },
  34449. collar: {
  34450. height: math.unit(1.86, "meters"),
  34451. name: "Collar",
  34452. image: {
  34453. source: "./media/characters/sabrina/collar.svg"
  34454. }
  34455. },
  34456. eye: {
  34457. height: math.unit(0.53, "meters"),
  34458. name: "Eye",
  34459. image: {
  34460. source: "./media/characters/sabrina/eye.svg"
  34461. }
  34462. },
  34463. foot: {
  34464. height: math.unit(1.86, "meters"),
  34465. name: "Foot",
  34466. image: {
  34467. source: "./media/characters/sabrina/foot.svg"
  34468. }
  34469. },
  34470. hand: {
  34471. height: math.unit(1.32, "meters"),
  34472. name: "Hand",
  34473. image: {
  34474. source: "./media/characters/sabrina/hand.svg"
  34475. }
  34476. },
  34477. head: {
  34478. height: math.unit(2.44, "meters"),
  34479. name: "Head",
  34480. image: {
  34481. source: "./media/characters/sabrina/head.svg"
  34482. }
  34483. },
  34484. headAngry: {
  34485. height: math.unit(2.44, "meters"),
  34486. name: "Head (Angry))",
  34487. image: {
  34488. source: "./media/characters/sabrina/head-angry.svg"
  34489. }
  34490. },
  34491. maw: {
  34492. height: math.unit(1.65, "meters"),
  34493. name: "Maw",
  34494. image: {
  34495. source: "./media/characters/sabrina/maw.svg"
  34496. }
  34497. },
  34498. spikes: {
  34499. height: math.unit(1.69, "meters"),
  34500. name: "Spikes",
  34501. image: {
  34502. source: "./media/characters/sabrina/spikes.svg"
  34503. }
  34504. },
  34505. stomach: {
  34506. height: math.unit(1.15, "meters"),
  34507. name: "Stomach",
  34508. image: {
  34509. source: "./media/characters/sabrina/stomach.svg"
  34510. }
  34511. },
  34512. tongue: {
  34513. height: math.unit(1.27, "meters"),
  34514. name: "Tongue",
  34515. image: {
  34516. source: "./media/characters/sabrina/tongue.svg"
  34517. }
  34518. },
  34519. wingDorsal: {
  34520. height: math.unit(4.85, "meters"),
  34521. name: "Wing (Dorsal)",
  34522. image: {
  34523. source: "./media/characters/sabrina/wing-dorsal.svg"
  34524. }
  34525. },
  34526. wingVentral: {
  34527. height: math.unit(4.85, "meters"),
  34528. name: "Wing (Ventral)",
  34529. image: {
  34530. source: "./media/characters/sabrina/wing-ventral.svg"
  34531. }
  34532. },
  34533. },
  34534. [
  34535. {
  34536. name: "Normal",
  34537. height: math.unit(5, "meters"),
  34538. default: true
  34539. },
  34540. ]
  34541. ))
  34542. characterMakers.push(() => makeCharacter(
  34543. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34544. {
  34545. frontMaid: {
  34546. height: math.unit(5 + 5/12, "feet"),
  34547. weight: math.unit(130, "lb"),
  34548. name: "Front (Maid)",
  34549. image: {
  34550. source: "./media/characters/midnight-tales/front-maid.svg",
  34551. extra: 489/454,
  34552. bottom: 61/550
  34553. }
  34554. },
  34555. frontFormal: {
  34556. height: math.unit(5 + 5/12, "feet"),
  34557. weight: math.unit(130, "lb"),
  34558. name: "Front (Formal)",
  34559. image: {
  34560. source: "./media/characters/midnight-tales/front-formal.svg",
  34561. extra: 489/454,
  34562. bottom: 61/550
  34563. }
  34564. },
  34565. back: {
  34566. height: math.unit(5 + 5/12, "feet"),
  34567. weight: math.unit(130, "lb"),
  34568. name: "Back",
  34569. image: {
  34570. source: "./media/characters/midnight-tales/back.svg",
  34571. extra: 498/456,
  34572. bottom: 33/531
  34573. }
  34574. },
  34575. frontBeast: {
  34576. height: math.unit(40, "feet"),
  34577. weight: math.unit(64000, "lb"),
  34578. name: "Front (Beast)",
  34579. image: {
  34580. source: "./media/characters/midnight-tales/front-beast.svg",
  34581. extra: 927/860,
  34582. bottom: 53/980
  34583. }
  34584. },
  34585. backBeast: {
  34586. height: math.unit(40, "feet"),
  34587. weight: math.unit(64000, "lb"),
  34588. name: "Back (Beast)",
  34589. image: {
  34590. source: "./media/characters/midnight-tales/back-beast.svg",
  34591. extra: 929/855,
  34592. bottom: 16/945
  34593. }
  34594. },
  34595. footBeast: {
  34596. height: math.unit(6.7, "feet"),
  34597. name: "Foot (Beast)",
  34598. image: {
  34599. source: "./media/characters/midnight-tales/foot-beast.svg"
  34600. }
  34601. },
  34602. headBeast: {
  34603. height: math.unit(8, "feet"),
  34604. name: "Head (Beast)",
  34605. image: {
  34606. source: "./media/characters/midnight-tales/head-beast.svg"
  34607. }
  34608. },
  34609. },
  34610. [
  34611. {
  34612. name: "Normal",
  34613. height: math.unit(5 + 5 / 12, "feet"),
  34614. default: true
  34615. },
  34616. {
  34617. name: "Macro",
  34618. height: math.unit(25, "feet")
  34619. },
  34620. ]
  34621. ))
  34622. characterMakers.push(() => makeCharacter(
  34623. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34624. {
  34625. front: {
  34626. height: math.unit(5 + 10/12, "feet"),
  34627. name: "Front",
  34628. image: {
  34629. source: "./media/characters/argon/front.svg",
  34630. extra: 2009/1935,
  34631. bottom: 118/2127
  34632. }
  34633. },
  34634. back: {
  34635. height: math.unit(5 + 10/12, "feet"),
  34636. name: "Back",
  34637. image: {
  34638. source: "./media/characters/argon/back.svg",
  34639. extra: 2047/1992,
  34640. bottom: 20/2067
  34641. }
  34642. },
  34643. frontDressed: {
  34644. height: math.unit(5 + 10/12, "feet"),
  34645. name: "Front (Dressed)",
  34646. image: {
  34647. source: "./media/characters/argon/front-dressed.svg",
  34648. extra: 2009/1935,
  34649. bottom: 118/2127
  34650. }
  34651. },
  34652. },
  34653. [
  34654. {
  34655. name: "Normal",
  34656. height: math.unit(5 + 10/12, "feet"),
  34657. default: true
  34658. },
  34659. ]
  34660. ))
  34661. characterMakers.push(() => makeCharacter(
  34662. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34663. {
  34664. front: {
  34665. height: math.unit(8 + 6/12, "feet"),
  34666. weight: math.unit(1150, "lb"),
  34667. name: "Front",
  34668. image: {
  34669. source: "./media/characters/kichi/front.svg",
  34670. extra: 1267/1164,
  34671. bottom: 61/1328
  34672. }
  34673. },
  34674. back: {
  34675. height: math.unit(8 + 6/12, "feet"),
  34676. weight: math.unit(1150, "lb"),
  34677. name: "Back",
  34678. image: {
  34679. source: "./media/characters/kichi/back.svg",
  34680. extra: 1273/1166,
  34681. bottom: 33/1306
  34682. }
  34683. },
  34684. },
  34685. [
  34686. {
  34687. name: "Normal",
  34688. height: math.unit(8 + 6/12, "feet"),
  34689. default: true
  34690. },
  34691. ]
  34692. ))
  34693. characterMakers.push(() => makeCharacter(
  34694. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34695. {
  34696. front: {
  34697. height: math.unit(6, "feet"),
  34698. weight: math.unit(210, "lb"),
  34699. name: "Front",
  34700. image: {
  34701. source: "./media/characters/manetel-greyscale/front.svg",
  34702. extra: 350/312,
  34703. bottom: 8/358
  34704. }
  34705. },
  34706. },
  34707. [
  34708. {
  34709. name: "Micro",
  34710. height: math.unit(2, "inches")
  34711. },
  34712. {
  34713. name: "Normal",
  34714. height: math.unit(6, "feet"),
  34715. default: true
  34716. },
  34717. {
  34718. name: "Minimacro",
  34719. height: math.unit(17, "feet")
  34720. },
  34721. {
  34722. name: "Macro",
  34723. height: math.unit(117, "feet")
  34724. },
  34725. ]
  34726. ))
  34727. characterMakers.push(() => makeCharacter(
  34728. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34729. {
  34730. side: {
  34731. height: math.unit(5 + 1/12, "feet"),
  34732. weight: math.unit(418, "lb"),
  34733. name: "Side",
  34734. image: {
  34735. source: "./media/characters/softpurr/side.svg",
  34736. extra: 1993/1945,
  34737. bottom: 134/2127
  34738. }
  34739. },
  34740. front: {
  34741. height: math.unit(5 + 1/12, "feet"),
  34742. weight: math.unit(418, "lb"),
  34743. name: "Front",
  34744. image: {
  34745. source: "./media/characters/softpurr/front.svg",
  34746. extra: 1950/1856,
  34747. bottom: 174/2124
  34748. }
  34749. },
  34750. paw: {
  34751. height: math.unit(1, "feet"),
  34752. name: "Paw",
  34753. image: {
  34754. source: "./media/characters/softpurr/paw.svg"
  34755. }
  34756. },
  34757. },
  34758. [
  34759. {
  34760. name: "Normal",
  34761. height: math.unit(5 + 1/12, "feet"),
  34762. default: true
  34763. },
  34764. ]
  34765. ))
  34766. characterMakers.push(() => makeCharacter(
  34767. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34768. {
  34769. front: {
  34770. height: math.unit(260, "meters"),
  34771. name: "Front",
  34772. image: {
  34773. source: "./media/characters/anahita/front.svg",
  34774. extra: 665/635,
  34775. bottom: 89/754
  34776. }
  34777. },
  34778. },
  34779. [
  34780. {
  34781. name: "Macro",
  34782. height: math.unit(260, "meters"),
  34783. default: true
  34784. },
  34785. ]
  34786. ))
  34787. characterMakers.push(() => makeCharacter(
  34788. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34789. {
  34790. front: {
  34791. height: math.unit(4 + 10/12, "feet"),
  34792. weight: math.unit(160, "lb"),
  34793. name: "Front",
  34794. image: {
  34795. source: "./media/characters/chip-mouse/front.svg",
  34796. extra: 3528/3408,
  34797. bottom: 0/3528
  34798. }
  34799. },
  34800. frontNsfw: {
  34801. height: math.unit(4 + 10/12, "feet"),
  34802. weight: math.unit(160, "lb"),
  34803. name: "Front (NSFW)",
  34804. image: {
  34805. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34806. extra: 3528/3408,
  34807. bottom: 0/3528
  34808. }
  34809. },
  34810. },
  34811. [
  34812. {
  34813. name: "Normal",
  34814. height: math.unit(4 + 10/12, "feet"),
  34815. default: true
  34816. },
  34817. ]
  34818. ))
  34819. characterMakers.push(() => makeCharacter(
  34820. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34821. {
  34822. side: {
  34823. height: math.unit(10, "feet"),
  34824. weight: math.unit(14000, "lb"),
  34825. name: "Side",
  34826. image: {
  34827. source: "./media/characters/kremm/side.svg",
  34828. extra: 1390/1053,
  34829. bottom: 90/1480
  34830. }
  34831. },
  34832. gut: {
  34833. height: math.unit(5.8, "feet"),
  34834. name: "Gut",
  34835. image: {
  34836. source: "./media/characters/kremm/gut.svg"
  34837. }
  34838. },
  34839. ass: {
  34840. height: math.unit(6.1, "feet"),
  34841. name: "Ass",
  34842. image: {
  34843. source: "./media/characters/kremm/ass.svg"
  34844. }
  34845. },
  34846. jaws: {
  34847. height: math.unit(2.2, "feet"),
  34848. name: "Jaws",
  34849. image: {
  34850. source: "./media/characters/kremm/jaws.svg"
  34851. }
  34852. },
  34853. dick: {
  34854. height: math.unit(4.26, "feet"),
  34855. name: "Dick",
  34856. image: {
  34857. source: "./media/characters/kremm/dick.svg"
  34858. }
  34859. },
  34860. },
  34861. [
  34862. {
  34863. name: "Normal",
  34864. height: math.unit(10, "feet"),
  34865. default: true
  34866. },
  34867. ]
  34868. ))
  34869. characterMakers.push(() => makeCharacter(
  34870. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34871. {
  34872. front: {
  34873. height: math.unit(30, "stories"),
  34874. name: "Front",
  34875. image: {
  34876. source: "./media/characters/kai/front.svg",
  34877. extra: 1892/1718,
  34878. bottom: 162/2054
  34879. }
  34880. },
  34881. },
  34882. [
  34883. {
  34884. name: "Macro",
  34885. height: math.unit(30, "stories"),
  34886. default: true
  34887. },
  34888. ]
  34889. ))
  34890. characterMakers.push(() => makeCharacter(
  34891. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34892. {
  34893. front: {
  34894. height: math.unit(6 + 4/12, "feet"),
  34895. weight: math.unit(145, "lb"),
  34896. name: "Front",
  34897. image: {
  34898. source: "./media/characters/sykes/front.svg",
  34899. extra: 1321 / 1187,
  34900. bottom: 66 / 1387
  34901. }
  34902. },
  34903. back: {
  34904. height: math.unit(6 + 4/12, "feet"),
  34905. weight: math.unit(145, "lb"),
  34906. name: "Back",
  34907. image: {
  34908. source: "./media/characters/sykes/back.svg",
  34909. extra: 1326/1181,
  34910. bottom: 31/1357
  34911. }
  34912. },
  34913. traditionalOutfit: {
  34914. height: math.unit(6 + 4/12, "feet"),
  34915. weight: math.unit(145, "lb"),
  34916. name: "Traditional Outfit",
  34917. image: {
  34918. source: "./media/characters/sykes/traditional-outfit.svg",
  34919. extra: 1321 / 1187,
  34920. bottom: 66 / 1387
  34921. }
  34922. },
  34923. adventureOutfit: {
  34924. height: math.unit(6 + 4/12, "feet"),
  34925. weight: math.unit(145, "lb"),
  34926. name: "Adventure Outfit",
  34927. image: {
  34928. source: "./media/characters/sykes/adventure-outfit.svg",
  34929. extra: 1321 / 1187,
  34930. bottom: 66 / 1387
  34931. }
  34932. },
  34933. handLeft: {
  34934. height: math.unit(0.9, "feet"),
  34935. name: "Hand (Left)",
  34936. image: {
  34937. source: "./media/characters/sykes/hand-left.svg"
  34938. }
  34939. },
  34940. handRight: {
  34941. height: math.unit(0.839, "feet"),
  34942. name: "Hand (Right)",
  34943. image: {
  34944. source: "./media/characters/sykes/hand-right.svg"
  34945. }
  34946. },
  34947. leftFoot: {
  34948. height: math.unit(1.2, "feet"),
  34949. name: "Foot (Left)",
  34950. image: {
  34951. source: "./media/characters/sykes/foot-left.svg"
  34952. }
  34953. },
  34954. rightFoot: {
  34955. height: math.unit(1.2, "feet"),
  34956. name: "Foot (Right)",
  34957. image: {
  34958. source: "./media/characters/sykes/foot-right.svg"
  34959. }
  34960. },
  34961. maw: {
  34962. height: math.unit(1.93, "feet"),
  34963. name: "Maw",
  34964. image: {
  34965. source: "./media/characters/sykes/maw.svg"
  34966. }
  34967. },
  34968. teeth: {
  34969. height: math.unit(0.51, "feet"),
  34970. name: "Teeth",
  34971. image: {
  34972. source: "./media/characters/sykes/teeth.svg"
  34973. }
  34974. },
  34975. tongue: {
  34976. height: math.unit(2.13, "feet"),
  34977. name: "Tongue",
  34978. image: {
  34979. source: "./media/characters/sykes/tongue.svg"
  34980. }
  34981. },
  34982. uvula: {
  34983. height: math.unit(0.16, "feet"),
  34984. name: "Uvula",
  34985. image: {
  34986. source: "./media/characters/sykes/uvula.svg"
  34987. }
  34988. },
  34989. collar: {
  34990. height: math.unit(0.287, "feet"),
  34991. name: "Collar",
  34992. image: {
  34993. source: "./media/characters/sykes/collar.svg"
  34994. }
  34995. },
  34996. tail: {
  34997. height: math.unit(3.8, "feet"),
  34998. name: "Tail",
  34999. image: {
  35000. source: "./media/characters/sykes/tail.svg"
  35001. }
  35002. },
  35003. },
  35004. [
  35005. {
  35006. name: "Shrunken",
  35007. height: math.unit(5, "inches")
  35008. },
  35009. {
  35010. name: "Normal",
  35011. height: math.unit(6 + 4 / 12, "feet"),
  35012. default: true
  35013. },
  35014. {
  35015. name: "Big",
  35016. height: math.unit(15, "feet")
  35017. },
  35018. ]
  35019. ))
  35020. characterMakers.push(() => makeCharacter(
  35021. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35022. {
  35023. front: {
  35024. height: math.unit(5 + 8/12, "feet"),
  35025. weight: math.unit(190, "lb"),
  35026. name: "Front",
  35027. image: {
  35028. source: "./media/characters/oven-otter/front.svg",
  35029. extra: 1809/1740,
  35030. bottom: 181/1990
  35031. }
  35032. },
  35033. back: {
  35034. height: math.unit(5 + 8/12, "feet"),
  35035. weight: math.unit(190, "lb"),
  35036. name: "Back",
  35037. image: {
  35038. source: "./media/characters/oven-otter/back.svg",
  35039. extra: 1709/1635,
  35040. bottom: 118/1827
  35041. }
  35042. },
  35043. hand: {
  35044. height: math.unit(1.07, "feet"),
  35045. name: "Hand",
  35046. image: {
  35047. source: "./media/characters/oven-otter/hand.svg"
  35048. }
  35049. },
  35050. beans: {
  35051. height: math.unit(1.74, "feet"),
  35052. name: "Beans",
  35053. image: {
  35054. source: "./media/characters/oven-otter/beans.svg"
  35055. }
  35056. },
  35057. },
  35058. [
  35059. {
  35060. name: "Micro",
  35061. height: math.unit(0.5, "inches")
  35062. },
  35063. {
  35064. name: "Normal",
  35065. height: math.unit(5 + 8/12, "feet"),
  35066. default: true
  35067. },
  35068. {
  35069. name: "Macro",
  35070. height: math.unit(250, "feet")
  35071. },
  35072. {
  35073. name: "Really High",
  35074. height: math.unit(420, "feet")
  35075. },
  35076. ]
  35077. ))
  35078. characterMakers.push(() => makeCharacter(
  35079. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35080. {
  35081. front: {
  35082. height: math.unit(5, "meters"),
  35083. weight: math.unit(292000000000000, "kg"),
  35084. name: "Front",
  35085. image: {
  35086. source: "./media/characters/devourer/front.svg",
  35087. extra: 1800/1733,
  35088. bottom: 211/2011
  35089. }
  35090. },
  35091. maw: {
  35092. height: math.unit(1.1, "meter"),
  35093. name: "Maw",
  35094. image: {
  35095. source: "./media/characters/devourer/maw.svg"
  35096. }
  35097. },
  35098. },
  35099. [
  35100. {
  35101. name: "Small",
  35102. height: math.unit(3, "meters")
  35103. },
  35104. {
  35105. name: "Large",
  35106. height: math.unit(5, "meters"),
  35107. default: true
  35108. },
  35109. ]
  35110. ))
  35111. characterMakers.push(() => makeCharacter(
  35112. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35113. {
  35114. front: {
  35115. height: math.unit(6, "feet"),
  35116. weight: math.unit(400, "lb"),
  35117. name: "Front",
  35118. image: {
  35119. source: "./media/characters/ellarby/front.svg",
  35120. extra: 1909/1763,
  35121. bottom: 80/1989
  35122. }
  35123. },
  35124. back: {
  35125. height: math.unit(6, "feet"),
  35126. weight: math.unit(400, "lb"),
  35127. name: "Back",
  35128. image: {
  35129. source: "./media/characters/ellarby/back.svg",
  35130. extra: 1914/1784,
  35131. bottom: 172/2086
  35132. }
  35133. },
  35134. },
  35135. [
  35136. {
  35137. name: "Mischief",
  35138. height: math.unit(18, "inches")
  35139. },
  35140. {
  35141. name: "Trouble",
  35142. height: math.unit(12, "feet")
  35143. },
  35144. {
  35145. name: "Havoc",
  35146. height: math.unit(200, "feet"),
  35147. default: true
  35148. },
  35149. {
  35150. name: "Pandemonium",
  35151. height: math.unit(1, "mile")
  35152. },
  35153. {
  35154. name: "Catastrophe",
  35155. height: math.unit(100, "miles")
  35156. },
  35157. ]
  35158. ))
  35159. characterMakers.push(() => makeCharacter(
  35160. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35161. {
  35162. front: {
  35163. height: math.unit(4.7, "meters"),
  35164. weight: math.unit(6500, "kg"),
  35165. name: "Front",
  35166. image: {
  35167. source: "./media/characters/vex/front.svg",
  35168. extra: 1288/1140,
  35169. bottom: 100/1388
  35170. }
  35171. },
  35172. },
  35173. [
  35174. {
  35175. name: "Normal",
  35176. height: math.unit(4.7, "meters"),
  35177. default: true
  35178. },
  35179. ]
  35180. ))
  35181. characterMakers.push(() => makeCharacter(
  35182. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35183. {
  35184. normal: {
  35185. height: math.unit(6, "feet"),
  35186. weight: math.unit(350, "lb"),
  35187. name: "Normal",
  35188. image: {
  35189. source: "./media/characters/teshy/normal.svg",
  35190. extra: 1795/1735,
  35191. bottom: 16/1811
  35192. }
  35193. },
  35194. monsterFront: {
  35195. height: math.unit(12, "feet"),
  35196. weight: math.unit(4700, "lb"),
  35197. name: "Monster (Front)",
  35198. image: {
  35199. source: "./media/characters/teshy/monster-front.svg",
  35200. extra: 2042/2034,
  35201. bottom: 128/2170
  35202. }
  35203. },
  35204. monsterSide: {
  35205. height: math.unit(12, "feet"),
  35206. weight: math.unit(4700, "lb"),
  35207. name: "Monster (Side)",
  35208. image: {
  35209. source: "./media/characters/teshy/monster-side.svg",
  35210. extra: 2067/2056,
  35211. bottom: 70/2137
  35212. }
  35213. },
  35214. monsterBack: {
  35215. height: math.unit(12, "feet"),
  35216. weight: math.unit(4700, "lb"),
  35217. name: "Monster (Back)",
  35218. image: {
  35219. source: "./media/characters/teshy/monster-back.svg",
  35220. extra: 1921/1914,
  35221. bottom: 171/2092
  35222. }
  35223. },
  35224. },
  35225. [
  35226. {
  35227. name: "Normal",
  35228. height: math.unit(6, "feet"),
  35229. default: true
  35230. },
  35231. ]
  35232. ))
  35233. characterMakers.push(() => makeCharacter(
  35234. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35235. {
  35236. front: {
  35237. height: math.unit(6, "feet"),
  35238. name: "Front",
  35239. image: {
  35240. source: "./media/characters/ramey/front.svg",
  35241. extra: 790/787,
  35242. bottom: 27/817
  35243. }
  35244. },
  35245. },
  35246. [
  35247. {
  35248. name: "Normal",
  35249. height: math.unit(6, "feet"),
  35250. default: true
  35251. },
  35252. ]
  35253. ))
  35254. characterMakers.push(() => makeCharacter(
  35255. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35256. {
  35257. front: {
  35258. height: math.unit(5 + 5/12, "feet"),
  35259. weight: math.unit(120, "lb"),
  35260. name: "Front",
  35261. image: {
  35262. source: "./media/characters/phirae/front.svg",
  35263. extra: 2491/2436,
  35264. bottom: 38/2529
  35265. }
  35266. },
  35267. },
  35268. [
  35269. {
  35270. name: "Normal",
  35271. height: math.unit(5 + 5/12, "feet"),
  35272. default: true
  35273. },
  35274. ]
  35275. ))
  35276. characterMakers.push(() => makeCharacter(
  35277. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35278. {
  35279. front: {
  35280. height: math.unit(5 + 3/12, "feet"),
  35281. name: "Front",
  35282. image: {
  35283. source: "./media/characters/stagglas/front.svg",
  35284. extra: 962/882,
  35285. bottom: 53/1015
  35286. }
  35287. },
  35288. feral: {
  35289. height: math.unit(335, "cm"),
  35290. name: "Feral",
  35291. image: {
  35292. source: "./media/characters/stagglas/feral.svg",
  35293. extra: 1732/1090,
  35294. bottom: 48/1780
  35295. }
  35296. },
  35297. },
  35298. [
  35299. {
  35300. name: "Normal",
  35301. height: math.unit(5 + 3/12, "feet"),
  35302. default: true
  35303. },
  35304. ]
  35305. ))
  35306. characterMakers.push(() => makeCharacter(
  35307. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35308. {
  35309. front: {
  35310. height: math.unit(5 + 4/12, "feet"),
  35311. weight: math.unit(145, "lb"),
  35312. name: "Front",
  35313. image: {
  35314. source: "./media/characters/starra/front.svg",
  35315. extra: 1790/1691,
  35316. bottom: 91/1881
  35317. }
  35318. },
  35319. },
  35320. [
  35321. {
  35322. name: "Normal",
  35323. height: math.unit(5 + 4/12, "feet"),
  35324. default: true
  35325. },
  35326. ]
  35327. ))
  35328. characterMakers.push(() => makeCharacter(
  35329. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35330. {
  35331. front: {
  35332. height: math.unit(2.2, "meters"),
  35333. name: "Front",
  35334. image: {
  35335. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35336. extra: 1194/1005,
  35337. bottom: 25/1219
  35338. }
  35339. },
  35340. },
  35341. [
  35342. {
  35343. name: "Normal",
  35344. height: math.unit(2.2, "meters"),
  35345. default: true
  35346. },
  35347. ]
  35348. ))
  35349. characterMakers.push(() => makeCharacter(
  35350. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35351. {
  35352. side: {
  35353. height: math.unit(8 + 2/12, "feet"),
  35354. weight: math.unit(1240, "lb"),
  35355. name: "Side",
  35356. image: {
  35357. source: "./media/characters/mika-valentine/side.svg",
  35358. extra: 2670/2501,
  35359. bottom: 250/2920
  35360. }
  35361. },
  35362. },
  35363. [
  35364. {
  35365. name: "Normal",
  35366. height: math.unit(8 + 2/12, "feet"),
  35367. default: true
  35368. },
  35369. ]
  35370. ))
  35371. characterMakers.push(() => makeCharacter(
  35372. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35373. {
  35374. front: {
  35375. height: math.unit(7 + 2/12, "feet"),
  35376. name: "Front",
  35377. image: {
  35378. source: "./media/characters/xoltol/front.svg",
  35379. extra: 2212/2124,
  35380. bottom: 84/2296
  35381. }
  35382. },
  35383. side: {
  35384. height: math.unit(7 + 2/12, "feet"),
  35385. name: "Side",
  35386. image: {
  35387. source: "./media/characters/xoltol/side.svg",
  35388. extra: 2273/2197,
  35389. bottom: 26/2299
  35390. }
  35391. },
  35392. hand: {
  35393. height: math.unit(2.5, "feet"),
  35394. name: "Hand",
  35395. image: {
  35396. source: "./media/characters/xoltol/hand.svg"
  35397. }
  35398. },
  35399. },
  35400. [
  35401. {
  35402. name: "Small-ish",
  35403. height: math.unit(5 + 11/12, "feet")
  35404. },
  35405. {
  35406. name: "Normal",
  35407. height: math.unit(7 + 2/12, "feet")
  35408. },
  35409. {
  35410. name: "\"Macro\"",
  35411. height: math.unit(14 + 9/12, "feet"),
  35412. default: true
  35413. },
  35414. {
  35415. name: "Alternate Height",
  35416. height: math.unit(20, "feet")
  35417. },
  35418. {
  35419. name: "Actually Macro",
  35420. height: math.unit(100, "feet")
  35421. },
  35422. ]
  35423. ))
  35424. characterMakers.push(() => makeCharacter(
  35425. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35426. {
  35427. front: {
  35428. height: math.unit(5 + 2/12, "feet"),
  35429. name: "Front",
  35430. image: {
  35431. source: "./media/characters/kotetsu-redwood/front.svg",
  35432. extra: 1053/942,
  35433. bottom: 60/1113
  35434. }
  35435. },
  35436. },
  35437. [
  35438. {
  35439. name: "Normal",
  35440. height: math.unit(5 + 2/12, "feet"),
  35441. default: true
  35442. },
  35443. ]
  35444. ))
  35445. characterMakers.push(() => makeCharacter(
  35446. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35447. {
  35448. front: {
  35449. height: math.unit(2.4, "meters"),
  35450. weight: math.unit(125, "kg"),
  35451. name: "Front",
  35452. image: {
  35453. source: "./media/characters/lilith/front.svg",
  35454. extra: 1590/1513,
  35455. bottom: 203/1793
  35456. }
  35457. },
  35458. },
  35459. [
  35460. {
  35461. name: "Humanoid",
  35462. height: math.unit(2.4, "meters")
  35463. },
  35464. {
  35465. name: "Normal",
  35466. height: math.unit(6, "meters"),
  35467. default: true
  35468. },
  35469. {
  35470. name: "Largest",
  35471. height: math.unit(55, "meters")
  35472. },
  35473. ]
  35474. ))
  35475. characterMakers.push(() => makeCharacter(
  35476. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35477. {
  35478. front: {
  35479. height: math.unit(8 + 4/12, "feet"),
  35480. weight: math.unit(535, "lb"),
  35481. name: "Front",
  35482. image: {
  35483. source: "./media/characters/beh'kah-bolger/front.svg",
  35484. extra: 1660/1603,
  35485. bottom: 37/1697
  35486. }
  35487. },
  35488. },
  35489. [
  35490. {
  35491. name: "Normal",
  35492. height: math.unit(8 + 4/12, "feet"),
  35493. default: true
  35494. },
  35495. {
  35496. name: "Kaiju",
  35497. height: math.unit(250, "feet")
  35498. },
  35499. {
  35500. name: "Still Growing",
  35501. height: math.unit(10, "miles")
  35502. },
  35503. {
  35504. name: "Continental",
  35505. height: math.unit(5000, "miles")
  35506. },
  35507. {
  35508. name: "Final Form",
  35509. height: math.unit(2500000, "miles")
  35510. },
  35511. ]
  35512. ))
  35513. characterMakers.push(() => makeCharacter(
  35514. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35515. {
  35516. front: {
  35517. height: math.unit(7 + 2/12, "feet"),
  35518. weight: math.unit(230, "kg"),
  35519. name: "Front",
  35520. image: {
  35521. source: "./media/characters/tatyana-milewska/front.svg",
  35522. extra: 1199/1150,
  35523. bottom: 86/1285
  35524. }
  35525. },
  35526. },
  35527. [
  35528. {
  35529. name: "Normal",
  35530. height: math.unit(7 + 2/12, "feet"),
  35531. default: true
  35532. },
  35533. {
  35534. name: "Big",
  35535. height: math.unit(12, "feet")
  35536. },
  35537. {
  35538. name: "Minimacro",
  35539. height: math.unit(20, "feet")
  35540. },
  35541. {
  35542. name: "Macro",
  35543. height: math.unit(120, "feet")
  35544. },
  35545. ]
  35546. ))
  35547. characterMakers.push(() => makeCharacter(
  35548. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35549. {
  35550. front: {
  35551. height: math.unit(7 + 8/12, "feet"),
  35552. weight: math.unit(152, "kg"),
  35553. name: "Front",
  35554. image: {
  35555. source: "./media/characters/helen-arri/front.svg",
  35556. extra: 440/423,
  35557. bottom: 14/454
  35558. }
  35559. },
  35560. back: {
  35561. height: math.unit(7 + 8/12, "feet"),
  35562. weight: math.unit(152, "kg"),
  35563. name: "Back",
  35564. image: {
  35565. source: "./media/characters/helen-arri/back.svg",
  35566. extra: 443/426,
  35567. bottom: 8/451
  35568. }
  35569. },
  35570. },
  35571. [
  35572. {
  35573. name: "Normal",
  35574. height: math.unit(7 + 8/12, "feet"),
  35575. default: true
  35576. },
  35577. {
  35578. name: "Big",
  35579. height: math.unit(14, "feet")
  35580. },
  35581. {
  35582. name: "Minimacro",
  35583. height: math.unit(24, "feet")
  35584. },
  35585. {
  35586. name: "Macro",
  35587. height: math.unit(140, "feet")
  35588. },
  35589. ]
  35590. ))
  35591. characterMakers.push(() => makeCharacter(
  35592. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35593. {
  35594. front: {
  35595. height: math.unit(6, "meters"),
  35596. name: "Front",
  35597. image: {
  35598. source: "./media/characters/ehanu-rehu/front.svg",
  35599. extra: 1800/1800,
  35600. bottom: 59/1859
  35601. }
  35602. },
  35603. },
  35604. [
  35605. {
  35606. name: "Normal",
  35607. height: math.unit(6, "meters"),
  35608. default: true
  35609. },
  35610. ]
  35611. ))
  35612. characterMakers.push(() => makeCharacter(
  35613. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35614. {
  35615. front: {
  35616. height: math.unit(7 + 3/12, "feet"),
  35617. name: "Front",
  35618. image: {
  35619. source: "./media/characters/renholder/front.svg",
  35620. extra: 3096/2960,
  35621. bottom: 250/3346
  35622. }
  35623. },
  35624. },
  35625. [
  35626. {
  35627. name: "Normal Bat",
  35628. height: math.unit(7 + 3/12, "feet"),
  35629. default: true
  35630. },
  35631. {
  35632. name: "Slightly Tall Bat",
  35633. height: math.unit(100, "feet")
  35634. },
  35635. {
  35636. name: "Big Bat",
  35637. height: math.unit(1000, "feet")
  35638. },
  35639. {
  35640. name: "City-Sized Bat",
  35641. height: math.unit(200000, "feet")
  35642. },
  35643. {
  35644. name: "Bigger Bat",
  35645. height: math.unit(10000, "miles")
  35646. },
  35647. {
  35648. name: "Solar Sized Bat",
  35649. height: math.unit(100, "AU")
  35650. },
  35651. {
  35652. name: "Galactic Bat",
  35653. height: math.unit(200000, "lightyears")
  35654. },
  35655. {
  35656. name: "Universally Known Bat",
  35657. height: math.unit(1, "universe")
  35658. },
  35659. ]
  35660. ))
  35661. characterMakers.push(() => makeCharacter(
  35662. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35663. {
  35664. front: {
  35665. height: math.unit(6 + 11/12, "feet"),
  35666. weight: math.unit(250, "lb"),
  35667. name: "Front",
  35668. image: {
  35669. source: "./media/characters/cookiecat/front.svg",
  35670. extra: 893/827,
  35671. bottom: 14/907
  35672. }
  35673. },
  35674. },
  35675. [
  35676. {
  35677. name: "Micro",
  35678. height: math.unit(3, "inches")
  35679. },
  35680. {
  35681. name: "Normal",
  35682. height: math.unit(6 + 11/12, "feet"),
  35683. default: true
  35684. },
  35685. {
  35686. name: "Macro",
  35687. height: math.unit(100, "feet")
  35688. },
  35689. {
  35690. name: "Macro+",
  35691. height: math.unit(404, "feet")
  35692. },
  35693. {
  35694. name: "Megamacro",
  35695. height: math.unit(165, "miles")
  35696. },
  35697. {
  35698. name: "Planetary",
  35699. height: math.unit(4600, "miles")
  35700. },
  35701. ]
  35702. ))
  35703. characterMakers.push(() => makeCharacter(
  35704. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35705. {
  35706. front: {
  35707. height: math.unit(10 + 3/12, "feet"),
  35708. weight: math.unit(1500, "lb"),
  35709. name: "Front",
  35710. image: {
  35711. source: "./media/characters/tux-kusanagi/front.svg",
  35712. extra: 944/840,
  35713. bottom: 39/983
  35714. }
  35715. },
  35716. back: {
  35717. height: math.unit(10 + 3/12, "feet"),
  35718. weight: math.unit(1500, "lb"),
  35719. name: "Back",
  35720. image: {
  35721. source: "./media/characters/tux-kusanagi/back.svg",
  35722. extra: 941/842,
  35723. bottom: 28/969
  35724. }
  35725. },
  35726. rump: {
  35727. height: math.unit(5.25, "feet"),
  35728. name: "Rump",
  35729. image: {
  35730. source: "./media/characters/tux-kusanagi/rump.svg"
  35731. }
  35732. },
  35733. beak: {
  35734. height: math.unit(1.54, "feet"),
  35735. name: "Beak",
  35736. image: {
  35737. source: "./media/characters/tux-kusanagi/beak.svg"
  35738. }
  35739. },
  35740. },
  35741. [
  35742. {
  35743. name: "Normal",
  35744. height: math.unit(10 + 3/12, "feet"),
  35745. default: true
  35746. },
  35747. ]
  35748. ))
  35749. characterMakers.push(() => makeCharacter(
  35750. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35751. {
  35752. front: {
  35753. height: math.unit(58, "feet"),
  35754. weight: math.unit(200, "tons"),
  35755. name: "Front",
  35756. image: {
  35757. source: "./media/characters/uzarmazari/front.svg",
  35758. extra: 1575/1455,
  35759. bottom: 152/1727
  35760. }
  35761. },
  35762. back: {
  35763. height: math.unit(58, "feet"),
  35764. weight: math.unit(200, "tons"),
  35765. name: "Back",
  35766. image: {
  35767. source: "./media/characters/uzarmazari/back.svg",
  35768. extra: 1585/1510,
  35769. bottom: 157/1742
  35770. }
  35771. },
  35772. head: {
  35773. height: math.unit(26, "feet"),
  35774. name: "Head",
  35775. image: {
  35776. source: "./media/characters/uzarmazari/head.svg"
  35777. }
  35778. },
  35779. },
  35780. [
  35781. {
  35782. name: "Normal",
  35783. height: math.unit(58, "feet"),
  35784. default: true
  35785. },
  35786. ]
  35787. ))
  35788. characterMakers.push(() => makeCharacter(
  35789. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35790. {
  35791. side: {
  35792. height: math.unit(15, "feet"),
  35793. name: "Side",
  35794. image: {
  35795. source: "./media/characters/akitu/side.svg",
  35796. extra: 1421/1321,
  35797. bottom: 157/1578
  35798. }
  35799. },
  35800. front: {
  35801. height: math.unit(15, "feet"),
  35802. name: "Front",
  35803. image: {
  35804. source: "./media/characters/akitu/front.svg",
  35805. extra: 1435/1326,
  35806. bottom: 232/1667
  35807. }
  35808. },
  35809. },
  35810. [
  35811. {
  35812. name: "Normal",
  35813. height: math.unit(15, "feet"),
  35814. default: true
  35815. },
  35816. ]
  35817. ))
  35818. characterMakers.push(() => makeCharacter(
  35819. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35820. {
  35821. front: {
  35822. height: math.unit(10 + 8/12, "feet"),
  35823. name: "Front",
  35824. image: {
  35825. source: "./media/characters/azalie-croixland/front.svg",
  35826. extra: 1972/1856,
  35827. bottom: 31/2003
  35828. }
  35829. },
  35830. },
  35831. [
  35832. {
  35833. name: "Original Height",
  35834. height: math.unit(5 + 4/12, "feet")
  35835. },
  35836. {
  35837. name: "Normal Height",
  35838. height: math.unit(10 + 8/12, "feet"),
  35839. default: true
  35840. },
  35841. ]
  35842. ))
  35843. characterMakers.push(() => makeCharacter(
  35844. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35845. {
  35846. side: {
  35847. height: math.unit(7 + 1/12, "feet"),
  35848. weight: math.unit(245, "lb"),
  35849. name: "Side",
  35850. image: {
  35851. source: "./media/characters/kavus-kazian/side.svg",
  35852. extra: 349/342,
  35853. bottom: 15/364
  35854. }
  35855. },
  35856. },
  35857. [
  35858. {
  35859. name: "Normal",
  35860. height: math.unit(7 + 1/12, "feet"),
  35861. default: true
  35862. },
  35863. ]
  35864. ))
  35865. characterMakers.push(() => makeCharacter(
  35866. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35867. {
  35868. normalFront: {
  35869. height: math.unit(5 + 11/12, "feet"),
  35870. name: "Front",
  35871. image: {
  35872. source: "./media/characters/moonlight-rose/normal-front.svg",
  35873. extra: 1980/1825,
  35874. bottom: 18/1998
  35875. },
  35876. form: "normal",
  35877. default: true
  35878. },
  35879. normalBack: {
  35880. height: math.unit(5 + 11/12, "feet"),
  35881. name: "Back",
  35882. image: {
  35883. source: "./media/characters/moonlight-rose/normal-back.svg",
  35884. extra: 2010/1839,
  35885. bottom: 10/2020
  35886. },
  35887. form: "normal"
  35888. },
  35889. demonFront: {
  35890. height: math.unit(1.5, "earths"),
  35891. name: "Front",
  35892. image: {
  35893. source: "./media/characters/moonlight-rose/demon.svg",
  35894. extra: 1400/1294,
  35895. bottom: 45/1445
  35896. },
  35897. form: "demon",
  35898. default: true
  35899. },
  35900. terraFront: {
  35901. height: math.unit(1.5, "earths"),
  35902. name: "Front",
  35903. image: {
  35904. source: "./media/characters/moonlight-rose/terra.svg"
  35905. },
  35906. form: "terra",
  35907. default: true
  35908. },
  35909. jupiterFront: {
  35910. height: math.unit(69911*2, "km"),
  35911. name: "Front",
  35912. image: {
  35913. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35914. extra: 1367/1286,
  35915. bottom: 55/1422
  35916. },
  35917. form: "jupiter",
  35918. default: true
  35919. },
  35920. neptuneFront: {
  35921. height: math.unit(24622*2, "feet"),
  35922. name: "Front",
  35923. image: {
  35924. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35925. extra: 1851/1712,
  35926. bottom: 0/1851
  35927. },
  35928. form: "neptune",
  35929. default: true
  35930. },
  35931. },
  35932. [
  35933. {
  35934. name: "\"Natural\" Height",
  35935. height: math.unit(5 + 11/12, "feet"),
  35936. form: "normal"
  35937. },
  35938. {
  35939. name: "Smallest comfortable size",
  35940. height: math.unit(40, "meters"),
  35941. form: "normal"
  35942. },
  35943. {
  35944. name: "Common size",
  35945. height: math.unit(50, "km"),
  35946. form: "normal",
  35947. default: true
  35948. },
  35949. {
  35950. name: "Normal",
  35951. height: math.unit(1.5, "earths"),
  35952. form: "demon",
  35953. default: true
  35954. },
  35955. {
  35956. name: "Universal",
  35957. height: math.unit(15, "universes"),
  35958. form: "demon"
  35959. },
  35960. {
  35961. name: "Earth",
  35962. height: math.unit(1.5, "earths"),
  35963. form: "terra",
  35964. default: true
  35965. },
  35966. {
  35967. name: "Super Earth",
  35968. height: math.unit(67.5, "earths"),
  35969. form: "terra"
  35970. },
  35971. {
  35972. name: "Doesn't fit in a solar system...",
  35973. height: math.unit(1, "galaxy"),
  35974. form: "terra"
  35975. },
  35976. {
  35977. name: "Saturn",
  35978. height: math.unit(58232*2, "km"),
  35979. form: "jupiter"
  35980. },
  35981. {
  35982. name: "Jupiter",
  35983. height: math.unit(69911*2, "km"),
  35984. form: "jupiter",
  35985. default: true
  35986. },
  35987. {
  35988. name: "HD 100546 b",
  35989. height: math.unit(482938, "km"),
  35990. form: "jupiter"
  35991. },
  35992. {
  35993. name: "Enceladus",
  35994. height: math.unit(513*2, "km"),
  35995. form: "neptune"
  35996. },
  35997. {
  35998. name: "Europe",
  35999. height: math.unit(1560*2, "km"),
  36000. form: "neptune"
  36001. },
  36002. {
  36003. name: "Neptune",
  36004. height: math.unit(24622*2, "km"),
  36005. form: "neptune",
  36006. default: true
  36007. },
  36008. {
  36009. name: "CoRoT-9b",
  36010. height: math.unit(75067*2, "km"),
  36011. form: "neptune"
  36012. },
  36013. ],
  36014. {
  36015. "normal": {
  36016. name: "Normal",
  36017. default: true
  36018. },
  36019. "demon": {
  36020. name: "Demon"
  36021. },
  36022. "terra": {
  36023. name: "Terra"
  36024. },
  36025. "jupiter": {
  36026. name: "Jupiter"
  36027. },
  36028. "neptune": {
  36029. name: "Neptune"
  36030. }
  36031. }
  36032. ))
  36033. characterMakers.push(() => makeCharacter(
  36034. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36035. {
  36036. front: {
  36037. height: math.unit(16, "feet"),
  36038. weight: math.unit(610, "kg"),
  36039. name: "Front",
  36040. image: {
  36041. source: "./media/characters/huckle/front.svg",
  36042. extra: 1731/1625,
  36043. bottom: 33/1764
  36044. }
  36045. },
  36046. back: {
  36047. height: math.unit(16, "feet"),
  36048. weight: math.unit(610, "kg"),
  36049. name: "Back",
  36050. image: {
  36051. source: "./media/characters/huckle/back.svg",
  36052. extra: 1738/1651,
  36053. bottom: 37/1775
  36054. }
  36055. },
  36056. laughing: {
  36057. height: math.unit(3.75, "feet"),
  36058. name: "Laughing",
  36059. image: {
  36060. source: "./media/characters/huckle/laughing.svg"
  36061. }
  36062. },
  36063. angry: {
  36064. height: math.unit(4.15, "feet"),
  36065. name: "Angry",
  36066. image: {
  36067. source: "./media/characters/huckle/angry.svg"
  36068. }
  36069. },
  36070. },
  36071. [
  36072. {
  36073. name: "Normal",
  36074. height: math.unit(16, "feet"),
  36075. default: true
  36076. },
  36077. {
  36078. name: "Mini Macro",
  36079. height: math.unit(463, "feet")
  36080. },
  36081. {
  36082. name: "Macro",
  36083. height: math.unit(1680, "meters")
  36084. },
  36085. {
  36086. name: "Mega Macro",
  36087. height: math.unit(175, "km")
  36088. },
  36089. {
  36090. name: "Terra Macro",
  36091. height: math.unit(32, "gigameters")
  36092. },
  36093. {
  36094. name: "Multiverse+",
  36095. height: math.unit(2.56e23, "yottameters")
  36096. },
  36097. ]
  36098. ))
  36099. characterMakers.push(() => makeCharacter(
  36100. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36101. {
  36102. front: {
  36103. height: math.unit(6 + 9/12, "feet"),
  36104. weight: math.unit(280, "lb"),
  36105. name: "Front",
  36106. image: {
  36107. source: "./media/characters/candy/front.svg",
  36108. extra: 234/217,
  36109. bottom: 11/245
  36110. }
  36111. },
  36112. },
  36113. [
  36114. {
  36115. name: "Really Small",
  36116. height: math.unit(0.1, "nm")
  36117. },
  36118. {
  36119. name: "Micro",
  36120. height: math.unit(2, "inches")
  36121. },
  36122. {
  36123. name: "Normal",
  36124. height: math.unit(6 + 9/12, "feet"),
  36125. default: true
  36126. },
  36127. {
  36128. name: "Small Macro",
  36129. height: math.unit(69, "feet")
  36130. },
  36131. {
  36132. name: "Macro",
  36133. height: math.unit(160, "feet")
  36134. },
  36135. {
  36136. name: "Megamacro",
  36137. height: math.unit(22000, "miles")
  36138. },
  36139. {
  36140. name: "Gigamacro",
  36141. height: math.unit(50000, "miles")
  36142. },
  36143. ]
  36144. ))
  36145. characterMakers.push(() => makeCharacter(
  36146. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36147. {
  36148. front: {
  36149. height: math.unit(4, "feet"),
  36150. weight: math.unit(90, "lb"),
  36151. name: "Front",
  36152. image: {
  36153. source: "./media/characters/joey-mcdonald/front.svg",
  36154. extra: 1059/852,
  36155. bottom: 33/1092
  36156. }
  36157. },
  36158. back: {
  36159. height: math.unit(4, "feet"),
  36160. weight: math.unit(90, "lb"),
  36161. name: "Back",
  36162. image: {
  36163. source: "./media/characters/joey-mcdonald/back.svg",
  36164. extra: 1077/879,
  36165. bottom: 5/1082
  36166. }
  36167. },
  36168. frontKobold: {
  36169. height: math.unit(4, "feet"),
  36170. weight: math.unit(100, "lb"),
  36171. name: "Front-kobold",
  36172. image: {
  36173. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36174. extra: 1480/1367,
  36175. bottom: 0/1480
  36176. }
  36177. },
  36178. backKobold: {
  36179. height: math.unit(4, "feet"),
  36180. weight: math.unit(100, "lb"),
  36181. name: "Back-kobold",
  36182. image: {
  36183. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36184. extra: 1449/1361,
  36185. bottom: 0/1449
  36186. }
  36187. },
  36188. },
  36189. [
  36190. {
  36191. name: "Normal",
  36192. height: math.unit(4, "feet"),
  36193. default: true
  36194. },
  36195. ]
  36196. ))
  36197. characterMakers.push(() => makeCharacter(
  36198. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36199. {
  36200. front: {
  36201. height: math.unit(12 + 6/12, "feet"),
  36202. name: "Front",
  36203. image: {
  36204. source: "./media/characters/kass-lockheed/front.svg",
  36205. extra: 354/343,
  36206. bottom: 9/363
  36207. }
  36208. },
  36209. back: {
  36210. height: math.unit(12 + 6/12, "feet"),
  36211. name: "Back",
  36212. image: {
  36213. source: "./media/characters/kass-lockheed/back.svg",
  36214. extra: 364/352,
  36215. bottom: 3/367
  36216. }
  36217. },
  36218. dick: {
  36219. height: math.unit(3.12, "feet"),
  36220. name: "Dick",
  36221. image: {
  36222. source: "./media/characters/kass-lockheed/dick.svg"
  36223. }
  36224. },
  36225. head: {
  36226. height: math.unit(2.6, "feet"),
  36227. name: "Head",
  36228. image: {
  36229. source: "./media/characters/kass-lockheed/head.svg"
  36230. }
  36231. },
  36232. bleh: {
  36233. height: math.unit(2.85, "feet"),
  36234. name: "Bleh",
  36235. image: {
  36236. source: "./media/characters/kass-lockheed/bleh.svg"
  36237. }
  36238. },
  36239. smug: {
  36240. height: math.unit(2.85, "feet"),
  36241. name: "Smug",
  36242. image: {
  36243. source: "./media/characters/kass-lockheed/smug.svg"
  36244. }
  36245. },
  36246. },
  36247. [
  36248. {
  36249. name: "Normal",
  36250. height: math.unit(12 + 6/12, "feet"),
  36251. default: true
  36252. },
  36253. ]
  36254. ))
  36255. characterMakers.push(() => makeCharacter(
  36256. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36257. {
  36258. front: {
  36259. height: math.unit(6 + 2/12, "feet"),
  36260. name: "Front",
  36261. image: {
  36262. source: "./media/characters/taylor/front.svg",
  36263. extra: 639/495,
  36264. bottom: 12/651
  36265. }
  36266. },
  36267. },
  36268. [
  36269. {
  36270. name: "Normal",
  36271. height: math.unit(6 + 2/12, "feet"),
  36272. default: true
  36273. },
  36274. {
  36275. name: "Big",
  36276. height: math.unit(15, "feet")
  36277. },
  36278. {
  36279. name: "Lorg",
  36280. height: math.unit(80, "feet")
  36281. },
  36282. {
  36283. name: "Too Lorg",
  36284. height: math.unit(120, "feet")
  36285. },
  36286. ]
  36287. ))
  36288. characterMakers.push(() => makeCharacter(
  36289. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36290. {
  36291. front: {
  36292. height: math.unit(15, "feet"),
  36293. name: "Front",
  36294. image: {
  36295. source: "./media/characters/kaizer/front.svg",
  36296. extra: 1612/1436,
  36297. bottom: 43/1655
  36298. }
  36299. },
  36300. },
  36301. [
  36302. {
  36303. name: "Normal",
  36304. height: math.unit(15, "feet"),
  36305. default: true
  36306. },
  36307. ]
  36308. ))
  36309. characterMakers.push(() => makeCharacter(
  36310. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36311. {
  36312. front: {
  36313. height: math.unit(2, "feet"),
  36314. weight: math.unit(30, "lb"),
  36315. name: "Front",
  36316. image: {
  36317. source: "./media/characters/sandy/front.svg",
  36318. extra: 1439/1307,
  36319. bottom: 194/1633
  36320. }
  36321. },
  36322. },
  36323. [
  36324. {
  36325. name: "Normal",
  36326. height: math.unit(2, "feet"),
  36327. default: true
  36328. },
  36329. ]
  36330. ))
  36331. characterMakers.push(() => makeCharacter(
  36332. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36333. {
  36334. front: {
  36335. height: math.unit(3, "feet"),
  36336. name: "Front",
  36337. image: {
  36338. source: "./media/characters/mellvi/front.svg",
  36339. extra: 1831/1630,
  36340. bottom: 58/1889
  36341. }
  36342. },
  36343. },
  36344. [
  36345. {
  36346. name: "Normal",
  36347. height: math.unit(3, "feet"),
  36348. default: true
  36349. },
  36350. ]
  36351. ))
  36352. characterMakers.push(() => makeCharacter(
  36353. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36354. {
  36355. front: {
  36356. height: math.unit(5 + 11/12, "feet"),
  36357. weight: math.unit(200, "lb"),
  36358. name: "Front",
  36359. image: {
  36360. source: "./media/characters/shirou/front.svg",
  36361. extra: 2491/2383,
  36362. bottom: 189/2680
  36363. }
  36364. },
  36365. back: {
  36366. height: math.unit(5 + 11/12, "feet"),
  36367. weight: math.unit(200, "lb"),
  36368. name: "Back",
  36369. image: {
  36370. source: "./media/characters/shirou/back.svg",
  36371. extra: 2554/2450,
  36372. bottom: 76/2630
  36373. }
  36374. },
  36375. },
  36376. [
  36377. {
  36378. name: "Normal",
  36379. height: math.unit(5 + 11/12, "feet"),
  36380. default: true
  36381. },
  36382. ]
  36383. ))
  36384. characterMakers.push(() => makeCharacter(
  36385. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36386. {
  36387. front: {
  36388. height: math.unit(6 + 3/12, "feet"),
  36389. weight: math.unit(177, "lb"),
  36390. name: "Front",
  36391. image: {
  36392. source: "./media/characters/noryu/front.svg",
  36393. extra: 973/885,
  36394. bottom: 10/983
  36395. }
  36396. },
  36397. },
  36398. [
  36399. {
  36400. name: "Normal",
  36401. height: math.unit(6 + 3/12, "feet"),
  36402. default: true
  36403. },
  36404. ]
  36405. ))
  36406. characterMakers.push(() => makeCharacter(
  36407. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36408. {
  36409. front: {
  36410. height: math.unit(5 + 6/12, "feet"),
  36411. weight: math.unit(170, "lb"),
  36412. name: "Front",
  36413. image: {
  36414. source: "./media/characters/mevolas-rubenido/front.svg",
  36415. extra: 2109/1901,
  36416. bottom: 96/2205
  36417. }
  36418. },
  36419. },
  36420. [
  36421. {
  36422. name: "Normal",
  36423. height: math.unit(5 + 6/12, "feet"),
  36424. default: true
  36425. },
  36426. ]
  36427. ))
  36428. characterMakers.push(() => makeCharacter(
  36429. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36430. {
  36431. front: {
  36432. height: math.unit(100, "feet"),
  36433. name: "Front",
  36434. image: {
  36435. source: "./media/characters/dee/front.svg",
  36436. extra: 2153/2036,
  36437. bottom: 59/2212
  36438. }
  36439. },
  36440. back: {
  36441. height: math.unit(100, "feet"),
  36442. name: "Back",
  36443. image: {
  36444. source: "./media/characters/dee/back.svg",
  36445. extra: 2183/2058,
  36446. bottom: 75/2258
  36447. }
  36448. },
  36449. foot: {
  36450. height: math.unit(19.43, "feet"),
  36451. name: "Foot",
  36452. image: {
  36453. source: "./media/characters/dee/foot.svg"
  36454. }
  36455. },
  36456. hoof: {
  36457. height: math.unit(20.6, "feet"),
  36458. name: "Hoof",
  36459. image: {
  36460. source: "./media/characters/dee/hoof.svg"
  36461. }
  36462. },
  36463. },
  36464. [
  36465. {
  36466. name: "Macro",
  36467. height: math.unit(100, "feet"),
  36468. default: true
  36469. },
  36470. ]
  36471. ))
  36472. characterMakers.push(() => makeCharacter(
  36473. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36474. {
  36475. front: {
  36476. height: math.unit(5 + 6/12, "feet"),
  36477. name: "Front",
  36478. image: {
  36479. source: "./media/characters/teh/front.svg",
  36480. extra: 1002/847,
  36481. bottom: 62/1064
  36482. }
  36483. },
  36484. },
  36485. [
  36486. {
  36487. name: "Normal",
  36488. height: math.unit(5 + 6/12, "feet"),
  36489. default: true
  36490. },
  36491. ]
  36492. ))
  36493. characterMakers.push(() => makeCharacter(
  36494. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36495. {
  36496. side: {
  36497. height: math.unit(6 + 1/12, "feet"),
  36498. weight: math.unit(204, "lb"),
  36499. name: "Side",
  36500. image: {
  36501. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36502. extra: 974/775,
  36503. bottom: 169/1143
  36504. }
  36505. },
  36506. sitting: {
  36507. height: math.unit(6 + 2/12, "feet"),
  36508. weight: math.unit(204, "lb"),
  36509. name: "Sitting",
  36510. image: {
  36511. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36512. extra: 1175/964,
  36513. bottom: 378/1553
  36514. }
  36515. },
  36516. },
  36517. [
  36518. {
  36519. name: "Normal",
  36520. height: math.unit(6 + 1/12, "feet"),
  36521. default: true
  36522. },
  36523. ]
  36524. ))
  36525. characterMakers.push(() => makeCharacter(
  36526. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36527. {
  36528. front: {
  36529. height: math.unit(6, "inches"),
  36530. name: "Front",
  36531. image: {
  36532. source: "./media/characters/tululi/front.svg",
  36533. extra: 1997/1876,
  36534. bottom: 20/2017
  36535. }
  36536. },
  36537. },
  36538. [
  36539. {
  36540. name: "Normal",
  36541. height: math.unit(6, "inches"),
  36542. default: true
  36543. },
  36544. ]
  36545. ))
  36546. characterMakers.push(() => makeCharacter(
  36547. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36548. {
  36549. front: {
  36550. height: math.unit(4 + 1/12, "feet"),
  36551. name: "Front",
  36552. image: {
  36553. source: "./media/characters/star/front.svg",
  36554. extra: 1493/1189,
  36555. bottom: 48/1541
  36556. }
  36557. },
  36558. },
  36559. [
  36560. {
  36561. name: "Normal",
  36562. height: math.unit(4 + 1/12, "feet"),
  36563. default: true
  36564. },
  36565. ]
  36566. ))
  36567. characterMakers.push(() => makeCharacter(
  36568. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36569. {
  36570. front: {
  36571. height: math.unit(6 + 3/12, "feet"),
  36572. name: "Front",
  36573. image: {
  36574. source: "./media/characters/comet/front.svg",
  36575. extra: 1681/1462,
  36576. bottom: 26/1707
  36577. }
  36578. },
  36579. },
  36580. [
  36581. {
  36582. name: "Normal",
  36583. height: math.unit(6 + 3/12, "feet"),
  36584. default: true
  36585. },
  36586. ]
  36587. ))
  36588. characterMakers.push(() => makeCharacter(
  36589. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36590. {
  36591. front: {
  36592. height: math.unit(950, "feet"),
  36593. name: "Front",
  36594. image: {
  36595. source: "./media/characters/vortex/front.svg",
  36596. extra: 1497/1434,
  36597. bottom: 56/1553
  36598. }
  36599. },
  36600. maw: {
  36601. height: math.unit(285, "feet"),
  36602. name: "Maw",
  36603. image: {
  36604. source: "./media/characters/vortex/maw.svg"
  36605. }
  36606. },
  36607. },
  36608. [
  36609. {
  36610. name: "Macro",
  36611. height: math.unit(950, "feet"),
  36612. default: true
  36613. },
  36614. ]
  36615. ))
  36616. characterMakers.push(() => makeCharacter(
  36617. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36618. {
  36619. front: {
  36620. height: math.unit(600, "feet"),
  36621. weight: math.unit(0.02, "grams"),
  36622. name: "Front",
  36623. image: {
  36624. source: "./media/characters/doodle/front.svg",
  36625. extra: 1578/1413,
  36626. bottom: 37/1615
  36627. }
  36628. },
  36629. },
  36630. [
  36631. {
  36632. name: "Macro",
  36633. height: math.unit(600, "feet"),
  36634. default: true
  36635. },
  36636. ]
  36637. ))
  36638. characterMakers.push(() => makeCharacter(
  36639. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36640. {
  36641. front: {
  36642. height: math.unit(6 + 6/12, "feet"),
  36643. name: "Front",
  36644. image: {
  36645. source: "./media/characters/jai/front.svg",
  36646. extra: 1645/1534,
  36647. bottom: 115/1760
  36648. }
  36649. },
  36650. },
  36651. [
  36652. {
  36653. name: "Normal",
  36654. height: math.unit(6 + 6/12, "feet"),
  36655. default: true
  36656. },
  36657. ]
  36658. ))
  36659. characterMakers.push(() => makeCharacter(
  36660. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36661. {
  36662. front: {
  36663. height: math.unit(6 + 8/12, "feet"),
  36664. name: "Front",
  36665. image: {
  36666. source: "./media/characters/pixel/front.svg",
  36667. extra: 1900/1735,
  36668. bottom: 63/1963
  36669. }
  36670. },
  36671. },
  36672. [
  36673. {
  36674. name: "Normal",
  36675. height: math.unit(6 + 8/12, "feet"),
  36676. default: true
  36677. },
  36678. ]
  36679. ))
  36680. characterMakers.push(() => makeCharacter(
  36681. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36682. {
  36683. back: {
  36684. height: math.unit(4 + 1/12, "feet"),
  36685. weight: math.unit(75, "lb"),
  36686. name: "Back",
  36687. image: {
  36688. source: "./media/characters/rhett/back.svg",
  36689. extra: 930/878,
  36690. bottom: 25/955
  36691. }
  36692. },
  36693. front: {
  36694. height: math.unit(4 + 1/12, "feet"),
  36695. weight: math.unit(75, "lb"),
  36696. name: "Front",
  36697. image: {
  36698. source: "./media/characters/rhett/front.svg",
  36699. extra: 1682/1586,
  36700. bottom: 92/1774
  36701. }
  36702. },
  36703. },
  36704. [
  36705. {
  36706. name: "Micro",
  36707. height: math.unit(8, "inches")
  36708. },
  36709. {
  36710. name: "Tiny",
  36711. height: math.unit(2, "feet")
  36712. },
  36713. {
  36714. name: "Normal",
  36715. height: math.unit(4 + 1/12, "feet"),
  36716. default: true
  36717. },
  36718. ]
  36719. ))
  36720. characterMakers.push(() => makeCharacter(
  36721. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36722. {
  36723. front: {
  36724. height: math.unit(3 + 3/12, "feet"),
  36725. name: "Front",
  36726. image: {
  36727. source: "./media/characters/penny/front.svg",
  36728. extra: 1406/1311,
  36729. bottom: 26/1432
  36730. }
  36731. },
  36732. },
  36733. [
  36734. {
  36735. name: "Normal",
  36736. height: math.unit(3 + 3/12, "feet"),
  36737. default: true
  36738. },
  36739. ]
  36740. ))
  36741. characterMakers.push(() => makeCharacter(
  36742. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36743. {
  36744. front: {
  36745. height: math.unit(4 + 11/12, "feet"),
  36746. name: "Front",
  36747. image: {
  36748. source: "./media/characters/monty/front.svg",
  36749. extra: 1479/1209,
  36750. bottom: 0/1479
  36751. }
  36752. },
  36753. },
  36754. [
  36755. {
  36756. name: "Normal",
  36757. height: math.unit(4 + 11/12, "feet"),
  36758. default: true
  36759. },
  36760. ]
  36761. ))
  36762. characterMakers.push(() => makeCharacter(
  36763. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36764. {
  36765. front: {
  36766. height: math.unit(8 + 4/12, "feet"),
  36767. name: "Front",
  36768. image: {
  36769. source: "./media/characters/sterling/front.svg",
  36770. extra: 1420/1236,
  36771. bottom: 27/1447
  36772. }
  36773. },
  36774. },
  36775. [
  36776. {
  36777. name: "Normal",
  36778. height: math.unit(8 + 4/12, "feet"),
  36779. default: true
  36780. },
  36781. ]
  36782. ))
  36783. characterMakers.push(() => makeCharacter(
  36784. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36785. {
  36786. front: {
  36787. height: math.unit(15, "feet"),
  36788. name: "Front",
  36789. image: {
  36790. source: "./media/characters/marble/front.svg",
  36791. extra: 973/937,
  36792. bottom: 32/1005
  36793. }
  36794. },
  36795. },
  36796. [
  36797. {
  36798. name: "Normal",
  36799. height: math.unit(15, "feet"),
  36800. default: true
  36801. },
  36802. ]
  36803. ))
  36804. characterMakers.push(() => makeCharacter(
  36805. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36806. {
  36807. front: {
  36808. height: math.unit(3, "inches"),
  36809. name: "Front",
  36810. image: {
  36811. source: "./media/characters/powder/front.svg",
  36812. extra: 1504/1334,
  36813. bottom: 518/2022
  36814. }
  36815. },
  36816. },
  36817. [
  36818. {
  36819. name: "Normal",
  36820. height: math.unit(3, "inches"),
  36821. default: true
  36822. },
  36823. ]
  36824. ))
  36825. characterMakers.push(() => makeCharacter(
  36826. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36827. {
  36828. front: {
  36829. height: math.unit(4 + 5/12, "feet"),
  36830. name: "Front",
  36831. image: {
  36832. source: "./media/characters/joey-raccoon/front.svg",
  36833. extra: 1273/1197,
  36834. bottom: 0/1273
  36835. }
  36836. },
  36837. },
  36838. [
  36839. {
  36840. name: "Normal",
  36841. height: math.unit(4 + 5/12, "feet"),
  36842. default: true
  36843. },
  36844. ]
  36845. ))
  36846. characterMakers.push(() => makeCharacter(
  36847. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36848. {
  36849. front: {
  36850. height: math.unit(8 + 4/12, "feet"),
  36851. name: "Front",
  36852. image: {
  36853. source: "./media/characters/vick/front.svg",
  36854. extra: 2187/2118,
  36855. bottom: 47/2234
  36856. }
  36857. },
  36858. },
  36859. [
  36860. {
  36861. name: "Normal",
  36862. height: math.unit(8 + 4/12, "feet"),
  36863. default: true
  36864. },
  36865. ]
  36866. ))
  36867. characterMakers.push(() => makeCharacter(
  36868. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36869. {
  36870. front: {
  36871. height: math.unit(5 + 5/12, "feet"),
  36872. name: "Front",
  36873. image: {
  36874. source: "./media/characters/mitsy/front.svg",
  36875. extra: 1842/1695,
  36876. bottom: 0/1842
  36877. }
  36878. },
  36879. },
  36880. [
  36881. {
  36882. name: "Normal",
  36883. height: math.unit(5 + 5/12, "feet"),
  36884. default: true
  36885. },
  36886. ]
  36887. ))
  36888. characterMakers.push(() => makeCharacter(
  36889. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36890. {
  36891. front: {
  36892. height: math.unit(6 + 3/12, "feet"),
  36893. name: "Front",
  36894. image: {
  36895. source: "./media/characters/silvy/front.svg",
  36896. extra: 1995/1836,
  36897. bottom: 225/2220
  36898. }
  36899. },
  36900. },
  36901. [
  36902. {
  36903. name: "Normal",
  36904. height: math.unit(6 + 3/12, "feet"),
  36905. default: true
  36906. },
  36907. ]
  36908. ))
  36909. characterMakers.push(() => makeCharacter(
  36910. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36911. {
  36912. front: {
  36913. height: math.unit(3 + 8/12, "feet"),
  36914. name: "Front",
  36915. image: {
  36916. source: "./media/characters/rodney/front.svg",
  36917. extra: 1956/1747,
  36918. bottom: 31/1987
  36919. }
  36920. },
  36921. frontDressed: {
  36922. height: math.unit(2.9, "feet"),
  36923. name: "Front (Dressed)",
  36924. image: {
  36925. source: "./media/characters/rodney/front-dressed.svg",
  36926. extra: 1382/1241,
  36927. bottom: 385/1767
  36928. }
  36929. },
  36930. },
  36931. [
  36932. {
  36933. name: "Normal",
  36934. height: math.unit(3 + 8/12, "feet"),
  36935. default: true
  36936. },
  36937. ]
  36938. ))
  36939. characterMakers.push(() => makeCharacter(
  36940. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36941. {
  36942. front: {
  36943. height: math.unit(5 + 9/12, "feet"),
  36944. weight: math.unit(194, "lbs"),
  36945. name: "Front",
  36946. image: {
  36947. source: "./media/characters/zakail-sudekai/front.svg",
  36948. extra: 2696/2533,
  36949. bottom: 248/2944
  36950. }
  36951. },
  36952. maw: {
  36953. height: math.unit(1.35, "feet"),
  36954. name: "Maw",
  36955. image: {
  36956. source: "./media/characters/zakail-sudekai/maw.svg"
  36957. }
  36958. },
  36959. },
  36960. [
  36961. {
  36962. name: "Normal",
  36963. height: math.unit(5 + 9/12, "feet"),
  36964. default: true
  36965. },
  36966. ]
  36967. ))
  36968. characterMakers.push(() => makeCharacter(
  36969. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36970. {
  36971. front: {
  36972. height: math.unit(8 + 4/12, "feet"),
  36973. weight: math.unit(1200, "lb"),
  36974. name: "Front",
  36975. image: {
  36976. source: "./media/characters/eleanor/front.svg",
  36977. extra: 1226/1192,
  36978. bottom: 52/1278
  36979. }
  36980. },
  36981. back: {
  36982. height: math.unit(8 + 4/12, "feet"),
  36983. weight: math.unit(1200, "lb"),
  36984. name: "Back",
  36985. image: {
  36986. source: "./media/characters/eleanor/back.svg",
  36987. extra: 1242/1184,
  36988. bottom: 60/1302
  36989. }
  36990. },
  36991. head: {
  36992. height: math.unit(2.62, "feet"),
  36993. name: "Head",
  36994. image: {
  36995. source: "./media/characters/eleanor/head.svg"
  36996. }
  36997. },
  36998. },
  36999. [
  37000. {
  37001. name: "Normal",
  37002. height: math.unit(8 + 4/12, "feet"),
  37003. default: true
  37004. },
  37005. ]
  37006. ))
  37007. characterMakers.push(() => makeCharacter(
  37008. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37009. {
  37010. front: {
  37011. height: math.unit(8 + 4/12, "feet"),
  37012. weight: math.unit(750, "lb"),
  37013. name: "Front",
  37014. image: {
  37015. source: "./media/characters/tanya/front.svg",
  37016. extra: 1749/1615,
  37017. bottom: 33/1782
  37018. }
  37019. },
  37020. },
  37021. [
  37022. {
  37023. name: "Normal",
  37024. height: math.unit(8 + 4/12, "feet"),
  37025. default: true
  37026. },
  37027. ]
  37028. ))
  37029. characterMakers.push(() => makeCharacter(
  37030. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37031. {
  37032. front: {
  37033. height: math.unit(5, "feet"),
  37034. weight: math.unit(225, "lb"),
  37035. name: "Front",
  37036. image: {
  37037. source: "./media/characters/cindy/front.svg",
  37038. extra: 1320/1250,
  37039. bottom: 42/1362
  37040. }
  37041. },
  37042. frontDressed: {
  37043. height: math.unit(5, "feet"),
  37044. weight: math.unit(225, "lb"),
  37045. name: "Front (Dressed)",
  37046. image: {
  37047. source: "./media/characters/cindy/front-dressed.svg",
  37048. extra: 1320/1250,
  37049. bottom: 42/1362
  37050. }
  37051. },
  37052. back: {
  37053. height: math.unit(5, "feet"),
  37054. weight: math.unit(225, "lb"),
  37055. name: "Back",
  37056. image: {
  37057. source: "./media/characters/cindy/back.svg",
  37058. extra: 1384/1346,
  37059. bottom: 14/1398
  37060. }
  37061. },
  37062. },
  37063. [
  37064. {
  37065. name: "Normal",
  37066. height: math.unit(5, "feet"),
  37067. default: true
  37068. },
  37069. ]
  37070. ))
  37071. characterMakers.push(() => makeCharacter(
  37072. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37073. {
  37074. front: {
  37075. height: math.unit(6 + 9/12, "feet"),
  37076. weight: math.unit(440, "lb"),
  37077. name: "Front",
  37078. image: {
  37079. source: "./media/characters/wilbur-owen/front.svg",
  37080. extra: 1575/1448,
  37081. bottom: 72/1647
  37082. }
  37083. },
  37084. back: {
  37085. height: math.unit(6 + 9/12, "feet"),
  37086. weight: math.unit(440, "lb"),
  37087. name: "Back",
  37088. image: {
  37089. source: "./media/characters/wilbur-owen/back.svg",
  37090. extra: 1578/1445,
  37091. bottom: 36/1614
  37092. }
  37093. },
  37094. },
  37095. [
  37096. {
  37097. name: "Normal",
  37098. height: math.unit(6 + 9/12, "feet"),
  37099. default: true
  37100. },
  37101. ]
  37102. ))
  37103. characterMakers.push(() => makeCharacter(
  37104. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37105. {
  37106. front: {
  37107. height: math.unit(6 + 5/12, "feet"),
  37108. weight: math.unit(650, "lb"),
  37109. name: "Front",
  37110. image: {
  37111. source: "./media/characters/keegan/front.svg",
  37112. extra: 2387/2198,
  37113. bottom: 33/2420
  37114. }
  37115. },
  37116. side: {
  37117. height: math.unit(6 + 5/12, "feet"),
  37118. weight: math.unit(650, "lb"),
  37119. name: "Side",
  37120. image: {
  37121. source: "./media/characters/keegan/side.svg",
  37122. extra: 2390/2202,
  37123. bottom: 47/2437
  37124. }
  37125. },
  37126. back: {
  37127. height: math.unit(6 + 5/12, "feet"),
  37128. weight: math.unit(650, "lb"),
  37129. name: "Back",
  37130. image: {
  37131. source: "./media/characters/keegan/back.svg",
  37132. extra: 2418/2268,
  37133. bottom: 15/2433
  37134. }
  37135. },
  37136. frontSfw: {
  37137. height: math.unit(6 + 5/12, "feet"),
  37138. weight: math.unit(650, "lb"),
  37139. name: "Front (SFW)",
  37140. image: {
  37141. source: "./media/characters/keegan/front-sfw.svg",
  37142. extra: 2387/2198,
  37143. bottom: 33/2420
  37144. }
  37145. },
  37146. beans: {
  37147. height: math.unit(1.85, "feet"),
  37148. name: "Beans",
  37149. image: {
  37150. source: "./media/characters/keegan/beans.svg"
  37151. }
  37152. },
  37153. },
  37154. [
  37155. {
  37156. name: "Normal",
  37157. height: math.unit(6 + 5/12, "feet"),
  37158. default: true
  37159. },
  37160. ]
  37161. ))
  37162. characterMakers.push(() => makeCharacter(
  37163. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37164. {
  37165. front: {
  37166. height: math.unit(9, "feet"),
  37167. name: "Front",
  37168. image: {
  37169. source: "./media/characters/colton/front.svg",
  37170. extra: 1589/1326,
  37171. bottom: 139/1728
  37172. }
  37173. },
  37174. },
  37175. [
  37176. {
  37177. name: "Normal",
  37178. height: math.unit(9, "feet"),
  37179. default: true
  37180. },
  37181. ]
  37182. ))
  37183. characterMakers.push(() => makeCharacter(
  37184. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37185. {
  37186. front: {
  37187. height: math.unit(2 + 9/12, "feet"),
  37188. name: "Front",
  37189. image: {
  37190. source: "./media/characters/bora/front.svg",
  37191. extra: 1265/1250,
  37192. bottom: 24/1289
  37193. }
  37194. },
  37195. },
  37196. [
  37197. {
  37198. name: "Normal",
  37199. height: math.unit(2 + 9/12, "feet"),
  37200. default: true
  37201. },
  37202. ]
  37203. ))
  37204. characterMakers.push(() => makeCharacter(
  37205. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37206. {
  37207. front: {
  37208. height: math.unit(8, "feet"),
  37209. name: "Front",
  37210. image: {
  37211. source: "./media/characters/myu-myu/front.svg",
  37212. extra: 1949/1857,
  37213. bottom: 90/2039
  37214. }
  37215. },
  37216. },
  37217. [
  37218. {
  37219. name: "Normal",
  37220. height: math.unit(8, "feet"),
  37221. default: true
  37222. },
  37223. {
  37224. name: "Big",
  37225. height: math.unit(15, "feet")
  37226. },
  37227. {
  37228. name: "BIG",
  37229. height: math.unit(25, "feet")
  37230. },
  37231. ]
  37232. ))
  37233. characterMakers.push(() => makeCharacter(
  37234. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37235. {
  37236. side: {
  37237. height: math.unit(7 + 5/12, "feet"),
  37238. weight: math.unit(2800, "lb"),
  37239. name: "Side",
  37240. image: {
  37241. source: "./media/characters/haloren/side.svg",
  37242. extra: 1793/409,
  37243. bottom: 59/1852
  37244. }
  37245. },
  37246. frontPaw: {
  37247. height: math.unit(2.36, "feet"),
  37248. name: "Front paw",
  37249. image: {
  37250. source: "./media/characters/haloren/front-paw.svg"
  37251. }
  37252. },
  37253. hindPaw: {
  37254. height: math.unit(3.18, "feet"),
  37255. name: "Hind paw",
  37256. image: {
  37257. source: "./media/characters/haloren/hind-paw.svg"
  37258. }
  37259. },
  37260. maw: {
  37261. height: math.unit(5.05, "feet"),
  37262. name: "Maw",
  37263. image: {
  37264. source: "./media/characters/haloren/maw.svg"
  37265. }
  37266. },
  37267. dick: {
  37268. height: math.unit(2.90, "feet"),
  37269. name: "Dick",
  37270. image: {
  37271. source: "./media/characters/haloren/dick.svg"
  37272. }
  37273. },
  37274. },
  37275. [
  37276. {
  37277. name: "Normal",
  37278. height: math.unit(7 + 5/12, "feet"),
  37279. default: true
  37280. },
  37281. {
  37282. name: "Enhanced",
  37283. height: math.unit(14 + 3/12, "feet")
  37284. },
  37285. ]
  37286. ))
  37287. characterMakers.push(() => makeCharacter(
  37288. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37289. {
  37290. front: {
  37291. height: math.unit(171, "cm"),
  37292. name: "Front",
  37293. image: {
  37294. source: "./media/characters/kimmy/front.svg",
  37295. extra: 1491/1435,
  37296. bottom: 53/1544
  37297. }
  37298. },
  37299. },
  37300. [
  37301. {
  37302. name: "Small",
  37303. height: math.unit(9, "cm")
  37304. },
  37305. {
  37306. name: "Normal",
  37307. height: math.unit(171, "cm"),
  37308. default: true
  37309. },
  37310. ]
  37311. ))
  37312. characterMakers.push(() => makeCharacter(
  37313. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37314. {
  37315. front: {
  37316. height: math.unit(8, "feet"),
  37317. weight: math.unit(300, "lb"),
  37318. name: "Front",
  37319. image: {
  37320. source: "./media/characters/galeboomer/front.svg",
  37321. extra: 4651/4415,
  37322. bottom: 162/4813
  37323. }
  37324. },
  37325. back: {
  37326. height: math.unit(8, "feet"),
  37327. weight: math.unit(300, "lb"),
  37328. name: "Back",
  37329. image: {
  37330. source: "./media/characters/galeboomer/back.svg",
  37331. extra: 4544/4314,
  37332. bottom: 16/4560
  37333. }
  37334. },
  37335. frontAlt: {
  37336. height: math.unit(8, "feet"),
  37337. weight: math.unit(300, "lb"),
  37338. name: "Front (Alt)",
  37339. image: {
  37340. source: "./media/characters/galeboomer/front-alt.svg",
  37341. extra: 4458/4228,
  37342. bottom: 68/4526
  37343. }
  37344. },
  37345. maw: {
  37346. height: math.unit(1.2, "feet"),
  37347. name: "Maw",
  37348. image: {
  37349. source: "./media/characters/galeboomer/maw.svg"
  37350. }
  37351. },
  37352. },
  37353. [
  37354. {
  37355. name: "Normal",
  37356. height: math.unit(8, "feet"),
  37357. default: true
  37358. },
  37359. ]
  37360. ))
  37361. characterMakers.push(() => makeCharacter(
  37362. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37363. {
  37364. front: {
  37365. height: math.unit(5 + 9/12, "feet"),
  37366. weight: math.unit(120, "lb"),
  37367. name: "Front",
  37368. image: {
  37369. source: "./media/characters/chyr/front.svg",
  37370. extra: 1323/1254,
  37371. bottom: 63/1386
  37372. }
  37373. },
  37374. back: {
  37375. height: math.unit(5 + 9/12, "feet"),
  37376. weight: math.unit(120, "lb"),
  37377. name: "Back",
  37378. image: {
  37379. source: "./media/characters/chyr/back.svg",
  37380. extra: 1323/1252,
  37381. bottom: 48/1371
  37382. }
  37383. },
  37384. },
  37385. [
  37386. {
  37387. name: "Normal",
  37388. height: math.unit(5 + 9/12, "feet"),
  37389. default: true
  37390. },
  37391. ]
  37392. ))
  37393. characterMakers.push(() => makeCharacter(
  37394. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37395. {
  37396. front: {
  37397. height: math.unit(7, "feet"),
  37398. weight: math.unit(310, "lb"),
  37399. name: "Front",
  37400. image: {
  37401. source: "./media/characters/solarus/front.svg",
  37402. extra: 2415/2021,
  37403. bottom: 103/2518
  37404. }
  37405. },
  37406. back: {
  37407. height: math.unit(7, "feet"),
  37408. weight: math.unit(310, "lb"),
  37409. name: "Back",
  37410. image: {
  37411. source: "./media/characters/solarus/back.svg",
  37412. extra: 2463/2089,
  37413. bottom: 79/2542
  37414. }
  37415. },
  37416. },
  37417. [
  37418. {
  37419. name: "Normal",
  37420. height: math.unit(7, "feet"),
  37421. default: true
  37422. },
  37423. ]
  37424. ))
  37425. characterMakers.push(() => makeCharacter(
  37426. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37427. {
  37428. front: {
  37429. height: math.unit(16, "feet"),
  37430. name: "Front",
  37431. image: {
  37432. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37433. extra: 1844/1780,
  37434. bottom: 58/1902
  37435. }
  37436. },
  37437. winterCoat: {
  37438. height: math.unit(16, "feet"),
  37439. name: "Winter Coat",
  37440. image: {
  37441. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37442. extra: 1807/1775,
  37443. bottom: 69/1876
  37444. }
  37445. },
  37446. },
  37447. [
  37448. {
  37449. name: "Normal",
  37450. height: math.unit(16, "feet"),
  37451. default: true
  37452. },
  37453. {
  37454. name: "Chicago Size",
  37455. height: math.unit(560, "feet")
  37456. },
  37457. ]
  37458. ))
  37459. characterMakers.push(() => makeCharacter(
  37460. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37461. {
  37462. front: {
  37463. height: math.unit(11 + 6/12, "feet"),
  37464. weight: math.unit(1366, "lb"),
  37465. name: "Front",
  37466. image: {
  37467. source: "./media/characters/lexor/front.svg",
  37468. extra: 1560/1481,
  37469. bottom: 211/1771
  37470. }
  37471. },
  37472. back: {
  37473. height: math.unit(11 + 6/12, "feet"),
  37474. weight: math.unit(1366, "lb"),
  37475. name: "Back",
  37476. image: {
  37477. source: "./media/characters/lexor/back.svg",
  37478. extra: 1614/1533,
  37479. bottom: 76/1690
  37480. }
  37481. },
  37482. maw: {
  37483. height: math.unit(3, "feet"),
  37484. name: "Maw",
  37485. image: {
  37486. source: "./media/characters/lexor/maw.svg"
  37487. }
  37488. },
  37489. dick: {
  37490. height: math.unit(2.59, "feet"),
  37491. name: "Dick",
  37492. image: {
  37493. source: "./media/characters/lexor/dick.svg"
  37494. }
  37495. },
  37496. },
  37497. [
  37498. {
  37499. name: "Normal",
  37500. height: math.unit(11 + 6/12, "feet"),
  37501. default: true
  37502. },
  37503. ]
  37504. ))
  37505. characterMakers.push(() => makeCharacter(
  37506. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37507. {
  37508. front: {
  37509. height: math.unit(5 + 8/12, "feet"),
  37510. name: "Front",
  37511. image: {
  37512. source: "./media/characters/magnum/front.svg",
  37513. extra: 942/855,
  37514. bottom: 26/968
  37515. }
  37516. },
  37517. },
  37518. [
  37519. {
  37520. name: "Normal",
  37521. height: math.unit(5 + 8/12, "feet"),
  37522. default: true
  37523. },
  37524. ]
  37525. ))
  37526. characterMakers.push(() => makeCharacter(
  37527. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37528. {
  37529. front: {
  37530. height: math.unit(18 + 4/12, "feet"),
  37531. weight: math.unit(1500, "kg"),
  37532. name: "Front",
  37533. image: {
  37534. source: "./media/characters/solas-sharpsman/front.svg",
  37535. extra: 1698/1589,
  37536. bottom: 0/1698
  37537. }
  37538. },
  37539. },
  37540. [
  37541. {
  37542. name: "Normal",
  37543. height: math.unit(18 + 4/12, "feet"),
  37544. default: true
  37545. },
  37546. ]
  37547. ))
  37548. characterMakers.push(() => makeCharacter(
  37549. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37550. {
  37551. front: {
  37552. height: math.unit(5 + 5/12, "feet"),
  37553. weight: math.unit(180, "lb"),
  37554. name: "Front",
  37555. image: {
  37556. source: "./media/characters/october/front.svg",
  37557. extra: 1800/1650,
  37558. bottom: 0/1800
  37559. }
  37560. },
  37561. frontNsfw: {
  37562. height: math.unit(5 + 5/12, "feet"),
  37563. weight: math.unit(180, "lb"),
  37564. name: "Front (NSFW)",
  37565. image: {
  37566. source: "./media/characters/october/front-nsfw.svg",
  37567. extra: 1392/1307,
  37568. bottom: 42/1434
  37569. }
  37570. },
  37571. },
  37572. [
  37573. {
  37574. name: "Normal",
  37575. height: math.unit(5 + 5/12, "feet"),
  37576. default: true
  37577. },
  37578. ]
  37579. ))
  37580. characterMakers.push(() => makeCharacter(
  37581. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37582. {
  37583. front: {
  37584. height: math.unit(8 + 6/12, "feet"),
  37585. name: "Front",
  37586. image: {
  37587. source: "./media/characters/essynkardi/front.svg",
  37588. extra: 1914/1846,
  37589. bottom: 22/1936
  37590. }
  37591. },
  37592. },
  37593. [
  37594. {
  37595. name: "Normal",
  37596. height: math.unit(8 + 6/12, "feet"),
  37597. default: true
  37598. },
  37599. ]
  37600. ))
  37601. characterMakers.push(() => makeCharacter(
  37602. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37603. {
  37604. front: {
  37605. height: math.unit(6 + 6/12, "feet"),
  37606. weight: math.unit(7, "lb"),
  37607. name: "Front",
  37608. image: {
  37609. source: "./media/characters/icky/front.svg",
  37610. extra: 813/782,
  37611. bottom: 66/879
  37612. }
  37613. },
  37614. back: {
  37615. height: math.unit(6 + 6/12, "feet"),
  37616. weight: math.unit(7, "lb"),
  37617. name: "Back",
  37618. image: {
  37619. source: "./media/characters/icky/back.svg",
  37620. extra: 754/735,
  37621. bottom: 56/810
  37622. }
  37623. },
  37624. },
  37625. [
  37626. {
  37627. name: "Normal",
  37628. height: math.unit(6 + 6/12, "feet"),
  37629. default: true
  37630. },
  37631. ]
  37632. ))
  37633. characterMakers.push(() => makeCharacter(
  37634. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37635. {
  37636. front: {
  37637. height: math.unit(15, "feet"),
  37638. name: "Front",
  37639. image: {
  37640. source: "./media/characters/rojas/front.svg",
  37641. extra: 1462/1408,
  37642. bottom: 95/1557
  37643. }
  37644. },
  37645. back: {
  37646. height: math.unit(15, "feet"),
  37647. name: "Back",
  37648. image: {
  37649. source: "./media/characters/rojas/back.svg",
  37650. extra: 1023/954,
  37651. bottom: 28/1051
  37652. }
  37653. },
  37654. },
  37655. [
  37656. {
  37657. name: "Normal",
  37658. height: math.unit(15, "feet"),
  37659. default: true
  37660. },
  37661. ]
  37662. ))
  37663. characterMakers.push(() => makeCharacter(
  37664. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37665. {
  37666. frontHuman: {
  37667. height: math.unit(5 + 7/12, "feet"),
  37668. name: "Front (Human)",
  37669. image: {
  37670. source: "./media/characters/alek-dryagan/front-human.svg",
  37671. extra: 1687/1667,
  37672. bottom: 69/1756
  37673. }
  37674. },
  37675. backHuman: {
  37676. height: math.unit(5 + 7/12, "feet"),
  37677. name: "Back (Human)",
  37678. image: {
  37679. source: "./media/characters/alek-dryagan/back-human.svg",
  37680. extra: 1670/1649,
  37681. bottom: 65/1735
  37682. }
  37683. },
  37684. frontDemi: {
  37685. height: math.unit(65, "feet"),
  37686. name: "Front (Demi)",
  37687. image: {
  37688. source: "./media/characters/alek-dryagan/front-demi.svg",
  37689. extra: 1669/1642,
  37690. bottom: 49/1718
  37691. }
  37692. },
  37693. backDemi: {
  37694. height: math.unit(65, "feet"),
  37695. name: "Back (Demi)",
  37696. image: {
  37697. source: "./media/characters/alek-dryagan/back-demi.svg",
  37698. extra: 1658/1637,
  37699. bottom: 40/1698
  37700. }
  37701. },
  37702. mawHuman: {
  37703. height: math.unit(0.3, "feet"),
  37704. name: "Maw (Human)",
  37705. image: {
  37706. source: "./media/characters/alek-dryagan/maw-human.svg"
  37707. }
  37708. },
  37709. mawDemi: {
  37710. height: math.unit(3.8, "feet"),
  37711. name: "Maw (Demi)",
  37712. image: {
  37713. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37714. }
  37715. },
  37716. },
  37717. [
  37718. {
  37719. name: "Normal",
  37720. height: math.unit(5 + 7/12, "feet"),
  37721. default: true
  37722. },
  37723. ]
  37724. ))
  37725. characterMakers.push(() => makeCharacter(
  37726. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37727. {
  37728. frontHuman: {
  37729. height: math.unit(5 + 2/12, "feet"),
  37730. name: "Front (Human)",
  37731. image: {
  37732. source: "./media/characters/gen/front-human.svg",
  37733. extra: 1627/1538,
  37734. bottom: 71/1698
  37735. }
  37736. },
  37737. backHuman: {
  37738. height: math.unit(5 + 2/12, "feet"),
  37739. name: "Back (Human)",
  37740. image: {
  37741. source: "./media/characters/gen/back-human.svg",
  37742. extra: 1638/1548,
  37743. bottom: 69/1707
  37744. }
  37745. },
  37746. frontDemi: {
  37747. height: math.unit(5 + 2/12, "feet"),
  37748. name: "Front (Demi)",
  37749. image: {
  37750. source: "./media/characters/gen/front-demi.svg",
  37751. extra: 1627/1538,
  37752. bottom: 71/1698
  37753. }
  37754. },
  37755. backDemi: {
  37756. height: math.unit(5 + 2/12, "feet"),
  37757. name: "Back (Demi)",
  37758. image: {
  37759. source: "./media/characters/gen/back-demi.svg",
  37760. extra: 1638/1548,
  37761. bottom: 69/1707
  37762. }
  37763. },
  37764. },
  37765. [
  37766. {
  37767. name: "Normal",
  37768. height: math.unit(5 + 2/12, "feet"),
  37769. default: true
  37770. },
  37771. ]
  37772. ))
  37773. characterMakers.push(() => makeCharacter(
  37774. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37775. {
  37776. frontImp: {
  37777. height: math.unit(1 + 11/12, "feet"),
  37778. name: "Front (Imp)",
  37779. image: {
  37780. source: "./media/characters/max-kobold/front-imp.svg",
  37781. extra: 1238/1134,
  37782. bottom: 81/1319
  37783. }
  37784. },
  37785. backImp: {
  37786. height: math.unit(1 + 11/12, "feet"),
  37787. name: "Back (Imp)",
  37788. image: {
  37789. source: "./media/characters/max-kobold/back-imp.svg",
  37790. extra: 1334/1175,
  37791. bottom: 34/1368
  37792. }
  37793. },
  37794. frontDemi: {
  37795. height: math.unit(5 + 9/12, "feet"),
  37796. name: "Front (Demi)",
  37797. image: {
  37798. source: "./media/characters/max-kobold/front-demi.svg",
  37799. extra: 1715/1685,
  37800. bottom: 54/1769
  37801. }
  37802. },
  37803. backDemi: {
  37804. height: math.unit(5 + 9/12, "feet"),
  37805. name: "Back (Demi)",
  37806. image: {
  37807. source: "./media/characters/max-kobold/back-demi.svg",
  37808. extra: 1752/1729,
  37809. bottom: 41/1793
  37810. }
  37811. },
  37812. handImp: {
  37813. height: math.unit(0.45, "feet"),
  37814. name: "Hand (Imp)",
  37815. image: {
  37816. source: "./media/characters/max-kobold/hand.svg"
  37817. }
  37818. },
  37819. pawImp: {
  37820. height: math.unit(0.46, "feet"),
  37821. name: "Paw (Imp)",
  37822. image: {
  37823. source: "./media/characters/max-kobold/paw.svg"
  37824. }
  37825. },
  37826. handDemi: {
  37827. height: math.unit(0.80, "feet"),
  37828. name: "Hand (Demi)",
  37829. image: {
  37830. source: "./media/characters/max-kobold/hand.svg"
  37831. }
  37832. },
  37833. pawDemi: {
  37834. height: math.unit(1.1, "feet"),
  37835. name: "Paw (Demi)",
  37836. image: {
  37837. source: "./media/characters/max-kobold/paw.svg"
  37838. }
  37839. },
  37840. headImp: {
  37841. height: math.unit(1.33, "feet"),
  37842. name: "Head (Imp)",
  37843. image: {
  37844. source: "./media/characters/max-kobold/head-imp.svg"
  37845. }
  37846. },
  37847. mawImp: {
  37848. height: math.unit(0.75, "feet"),
  37849. name: "Maw (Imp)",
  37850. image: {
  37851. source: "./media/characters/max-kobold/maw-imp.svg"
  37852. }
  37853. },
  37854. mawDemi: {
  37855. height: math.unit(0.42, "feet"),
  37856. name: "Maw (Demi)",
  37857. image: {
  37858. source: "./media/characters/max-kobold/maw-demi.svg"
  37859. }
  37860. },
  37861. },
  37862. [
  37863. {
  37864. name: "Normal",
  37865. height: math.unit(1 + 11/12, "feet"),
  37866. default: true
  37867. },
  37868. ]
  37869. ))
  37870. characterMakers.push(() => makeCharacter(
  37871. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37872. {
  37873. front: {
  37874. height: math.unit(7 + 5/12, "feet"),
  37875. name: "Front",
  37876. image: {
  37877. source: "./media/characters/carbon/front.svg",
  37878. extra: 1754/1689,
  37879. bottom: 65/1819
  37880. }
  37881. },
  37882. back: {
  37883. height: math.unit(7 + 5/12, "feet"),
  37884. name: "Back",
  37885. image: {
  37886. source: "./media/characters/carbon/back.svg",
  37887. extra: 1762/1695,
  37888. bottom: 24/1786
  37889. }
  37890. },
  37891. frontGigantamax: {
  37892. height: math.unit(150, "feet"),
  37893. name: "Front (Gigantamax)",
  37894. image: {
  37895. source: "./media/characters/carbon/front-gigantamax.svg",
  37896. extra: 1826/1669,
  37897. bottom: 59/1885
  37898. }
  37899. },
  37900. backGigantamax: {
  37901. height: math.unit(150, "feet"),
  37902. name: "Back (Gigantamax)",
  37903. image: {
  37904. source: "./media/characters/carbon/back-gigantamax.svg",
  37905. extra: 1796/1653,
  37906. bottom: 53/1849
  37907. }
  37908. },
  37909. maw: {
  37910. height: math.unit(0.48, "feet"),
  37911. name: "Maw",
  37912. image: {
  37913. source: "./media/characters/carbon/maw.svg"
  37914. }
  37915. },
  37916. mawGigantamax: {
  37917. height: math.unit(7.5, "feet"),
  37918. name: "Maw (Gigantamax)",
  37919. image: {
  37920. source: "./media/characters/carbon/maw-gigantamax.svg"
  37921. }
  37922. },
  37923. },
  37924. [
  37925. {
  37926. name: "Normal",
  37927. height: math.unit(7 + 5/12, "feet"),
  37928. default: true
  37929. },
  37930. ]
  37931. ))
  37932. characterMakers.push(() => makeCharacter(
  37933. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37934. {
  37935. front: {
  37936. height: math.unit(6, "feet"),
  37937. name: "Front",
  37938. image: {
  37939. source: "./media/characters/maverick/front.svg",
  37940. extra: 1672/1661,
  37941. bottom: 85/1757
  37942. }
  37943. },
  37944. back: {
  37945. height: math.unit(6, "feet"),
  37946. name: "Back",
  37947. image: {
  37948. source: "./media/characters/maverick/back.svg",
  37949. extra: 1642/1631,
  37950. bottom: 38/1680
  37951. }
  37952. },
  37953. },
  37954. [
  37955. {
  37956. name: "Normal",
  37957. height: math.unit(6, "feet"),
  37958. default: true
  37959. },
  37960. ]
  37961. ))
  37962. characterMakers.push(() => makeCharacter(
  37963. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37964. {
  37965. front: {
  37966. height: math.unit(15, "feet"),
  37967. weight: math.unit(615, "lb"),
  37968. name: "Front",
  37969. image: {
  37970. source: "./media/characters/grockle/front.svg",
  37971. extra: 1535/1427,
  37972. bottom: 56/1591
  37973. }
  37974. },
  37975. },
  37976. [
  37977. {
  37978. name: "Normal",
  37979. height: math.unit(15, "feet"),
  37980. default: true
  37981. },
  37982. {
  37983. name: "Large",
  37984. height: math.unit(150, "feet")
  37985. },
  37986. {
  37987. name: "Macro",
  37988. height: math.unit(1876, "feet")
  37989. },
  37990. {
  37991. name: "Mega Macro",
  37992. height: math.unit(121940, "feet")
  37993. },
  37994. {
  37995. name: "Giga Macro",
  37996. height: math.unit(750, "km")
  37997. },
  37998. {
  37999. name: "Tera Macro",
  38000. height: math.unit(750000, "km")
  38001. },
  38002. {
  38003. name: "Galactic",
  38004. height: math.unit(1.4e5, "km")
  38005. },
  38006. {
  38007. name: "Godlike",
  38008. height: math.unit(9.8e280, "galaxies")
  38009. },
  38010. ]
  38011. ))
  38012. characterMakers.push(() => makeCharacter(
  38013. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38014. {
  38015. front: {
  38016. height: math.unit(11, "meters"),
  38017. weight: math.unit(20, "tonnes"),
  38018. name: "Front",
  38019. image: {
  38020. source: "./media/characters/alistair/front.svg",
  38021. extra: 1265/1009,
  38022. bottom: 93/1358
  38023. }
  38024. },
  38025. },
  38026. [
  38027. {
  38028. name: "Normal",
  38029. height: math.unit(11, "meters"),
  38030. default: true
  38031. },
  38032. ]
  38033. ))
  38034. characterMakers.push(() => makeCharacter(
  38035. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38036. {
  38037. front: {
  38038. height: math.unit(5 + 8/12, "feet"),
  38039. name: "Front",
  38040. image: {
  38041. source: "./media/characters/haruka/front.svg",
  38042. extra: 2012/1952,
  38043. bottom: 0/2012
  38044. }
  38045. },
  38046. },
  38047. [
  38048. {
  38049. name: "Normal",
  38050. height: math.unit(5 + 8/12, "feet"),
  38051. default: true
  38052. },
  38053. ]
  38054. ))
  38055. characterMakers.push(() => makeCharacter(
  38056. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38057. {
  38058. back: {
  38059. height: math.unit(9, "feet"),
  38060. name: "Back",
  38061. image: {
  38062. source: "./media/characters/vivian-sylveon/back.svg",
  38063. extra: 1853/1714,
  38064. bottom: 0/1853
  38065. }
  38066. },
  38067. },
  38068. [
  38069. {
  38070. name: "Normal",
  38071. height: math.unit(9, "feet"),
  38072. default: true
  38073. },
  38074. {
  38075. name: "Macro",
  38076. height: math.unit(500, "feet")
  38077. },
  38078. {
  38079. name: "Megamacro",
  38080. height: math.unit(600, "miles")
  38081. },
  38082. {
  38083. name: "Gigamacro",
  38084. height: math.unit(30000, "miles")
  38085. },
  38086. ]
  38087. ))
  38088. characterMakers.push(() => makeCharacter(
  38089. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38090. {
  38091. anthro: {
  38092. height: math.unit(5 + 10/12, "feet"),
  38093. weight: math.unit(100, "lb"),
  38094. name: "Anthro",
  38095. image: {
  38096. source: "./media/characters/daiki/anthro.svg",
  38097. extra: 1115/1027,
  38098. bottom: 69/1184
  38099. }
  38100. },
  38101. feral: {
  38102. height: math.unit(200, "feet"),
  38103. name: "Feral",
  38104. image: {
  38105. source: "./media/characters/daiki/feral.svg",
  38106. extra: 1256/313,
  38107. bottom: 39/1295
  38108. }
  38109. },
  38110. feralHead: {
  38111. height: math.unit(171, "feet"),
  38112. name: "Feral Head",
  38113. image: {
  38114. source: "./media/characters/daiki/feral-head.svg"
  38115. }
  38116. },
  38117. manaDragon: {
  38118. height: math.unit(170, "meters"),
  38119. name: "Mana-dragon",
  38120. image: {
  38121. source: "./media/characters/daiki/mana-dragon.svg",
  38122. extra: 763/420,
  38123. bottom: 97/860
  38124. }
  38125. },
  38126. },
  38127. [
  38128. {
  38129. name: "Normal",
  38130. height: math.unit(5 + 10/12, "feet"),
  38131. default: true
  38132. },
  38133. ]
  38134. ))
  38135. characterMakers.push(() => makeCharacter(
  38136. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38137. {
  38138. fullyEquippedFront: {
  38139. height: math.unit(3 + 1/12, "feet"),
  38140. weight: math.unit(24, "lb"),
  38141. name: "Fully Equipped (Front)",
  38142. image: {
  38143. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38144. extra: 687/605,
  38145. bottom: 18/705
  38146. }
  38147. },
  38148. fullyEquippedBack: {
  38149. height: math.unit(3 + 1/12, "feet"),
  38150. weight: math.unit(24, "lb"),
  38151. name: "Fully Equipped (Back)",
  38152. image: {
  38153. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38154. extra: 689/590,
  38155. bottom: 18/707
  38156. }
  38157. },
  38158. dailyWear: {
  38159. height: math.unit(3 + 1/12, "feet"),
  38160. weight: math.unit(24, "lb"),
  38161. name: "Daily Wear",
  38162. image: {
  38163. source: "./media/characters/tea-spot/daily-wear.svg",
  38164. extra: 701/620,
  38165. bottom: 21/722
  38166. }
  38167. },
  38168. maidWork: {
  38169. height: math.unit(3 + 1/12, "feet"),
  38170. weight: math.unit(24, "lb"),
  38171. name: "Maid Work",
  38172. image: {
  38173. source: "./media/characters/tea-spot/maid-work.svg",
  38174. extra: 693/609,
  38175. bottom: 15/708
  38176. }
  38177. },
  38178. },
  38179. [
  38180. {
  38181. name: "Normal",
  38182. height: math.unit(3 + 1/12, "feet"),
  38183. default: true
  38184. },
  38185. ]
  38186. ))
  38187. characterMakers.push(() => makeCharacter(
  38188. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38189. {
  38190. front: {
  38191. height: math.unit(175, "cm"),
  38192. weight: math.unit(75, "kg"),
  38193. name: "Front",
  38194. image: {
  38195. source: "./media/characters/chee/front.svg",
  38196. extra: 1796/1740,
  38197. bottom: 40/1836
  38198. }
  38199. },
  38200. },
  38201. [
  38202. {
  38203. name: "Micro-Micro",
  38204. height: math.unit(1, "nm")
  38205. },
  38206. {
  38207. name: "Micro-erst",
  38208. height: math.unit(1, "micrometer")
  38209. },
  38210. {
  38211. name: "Micro-er",
  38212. height: math.unit(1, "cm")
  38213. },
  38214. {
  38215. name: "Normal",
  38216. height: math.unit(175, "cm"),
  38217. default: true
  38218. },
  38219. {
  38220. name: "Macro",
  38221. height: math.unit(100, "m")
  38222. },
  38223. {
  38224. name: "Macro-er",
  38225. height: math.unit(1, "km")
  38226. },
  38227. {
  38228. name: "Macro-erst",
  38229. height: math.unit(10, "km")
  38230. },
  38231. {
  38232. name: "Macro-Macro",
  38233. height: math.unit(100, "km")
  38234. },
  38235. ]
  38236. ))
  38237. characterMakers.push(() => makeCharacter(
  38238. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38239. {
  38240. front: {
  38241. height: math.unit(11 + 9/12, "feet"),
  38242. weight: math.unit(935, "lb"),
  38243. name: "Front",
  38244. image: {
  38245. source: "./media/characters/kingsley/front.svg",
  38246. extra: 1803/1674,
  38247. bottom: 127/1930
  38248. }
  38249. },
  38250. frontNude: {
  38251. height: math.unit(11 + 9/12, "feet"),
  38252. weight: math.unit(935, "lb"),
  38253. name: "Front (Nude)",
  38254. image: {
  38255. source: "./media/characters/kingsley/front-nude.svg",
  38256. extra: 1803/1674,
  38257. bottom: 127/1930
  38258. }
  38259. },
  38260. },
  38261. [
  38262. {
  38263. name: "Normal",
  38264. height: math.unit(11 + 9/12, "feet"),
  38265. default: true
  38266. },
  38267. ]
  38268. ))
  38269. characterMakers.push(() => makeCharacter(
  38270. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38271. {
  38272. side: {
  38273. height: math.unit(9, "feet"),
  38274. name: "Side",
  38275. image: {
  38276. source: "./media/characters/rymel/side.svg",
  38277. extra: 792/469,
  38278. bottom: 121/913
  38279. }
  38280. },
  38281. maw: {
  38282. height: math.unit(2.4, "meters"),
  38283. name: "Maw",
  38284. image: {
  38285. source: "./media/characters/rymel/maw.svg"
  38286. }
  38287. },
  38288. },
  38289. [
  38290. {
  38291. name: "House Drake",
  38292. height: math.unit(2, "feet")
  38293. },
  38294. {
  38295. name: "Reduced",
  38296. height: math.unit(4.5, "feet")
  38297. },
  38298. {
  38299. name: "Normal",
  38300. height: math.unit(9, "feet"),
  38301. default: true
  38302. },
  38303. ]
  38304. ))
  38305. characterMakers.push(() => makeCharacter(
  38306. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38307. {
  38308. front: {
  38309. height: math.unit(1.74, "meters"),
  38310. weight: math.unit(55, "kg"),
  38311. name: "Front",
  38312. image: {
  38313. source: "./media/characters/rubus/front.svg",
  38314. extra: 1894/1742,
  38315. bottom: 44/1938
  38316. }
  38317. },
  38318. },
  38319. [
  38320. {
  38321. name: "Normal",
  38322. height: math.unit(1.74, "meters"),
  38323. default: true
  38324. },
  38325. ]
  38326. ))
  38327. characterMakers.push(() => makeCharacter(
  38328. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38329. {
  38330. front: {
  38331. height: math.unit(5 + 2/12, "feet"),
  38332. weight: math.unit(112, "lb"),
  38333. name: "Front",
  38334. image: {
  38335. source: "./media/characters/cassie-kingston/front.svg",
  38336. extra: 1438/1390,
  38337. bottom: 47/1485
  38338. }
  38339. },
  38340. },
  38341. [
  38342. {
  38343. name: "Normal",
  38344. height: math.unit(5 + 2/12, "feet"),
  38345. default: true
  38346. },
  38347. {
  38348. name: "Macro",
  38349. height: math.unit(128, "feet")
  38350. },
  38351. {
  38352. name: "Megamacro",
  38353. height: math.unit(2.56, "miles")
  38354. },
  38355. ]
  38356. ))
  38357. characterMakers.push(() => makeCharacter(
  38358. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38359. {
  38360. front: {
  38361. height: math.unit(7, "feet"),
  38362. name: "Front",
  38363. image: {
  38364. source: "./media/characters/fox/front.svg",
  38365. extra: 1798/1703,
  38366. bottom: 55/1853
  38367. }
  38368. },
  38369. back: {
  38370. height: math.unit(7, "feet"),
  38371. name: "Back",
  38372. image: {
  38373. source: "./media/characters/fox/back.svg",
  38374. extra: 1748/1649,
  38375. bottom: 32/1780
  38376. }
  38377. },
  38378. head: {
  38379. height: math.unit(1.95, "feet"),
  38380. name: "Head",
  38381. image: {
  38382. source: "./media/characters/fox/head.svg"
  38383. }
  38384. },
  38385. dick: {
  38386. height: math.unit(1.33, "feet"),
  38387. name: "Dick",
  38388. image: {
  38389. source: "./media/characters/fox/dick.svg"
  38390. }
  38391. },
  38392. foot: {
  38393. height: math.unit(1, "feet"),
  38394. name: "Foot",
  38395. image: {
  38396. source: "./media/characters/fox/foot.svg"
  38397. }
  38398. },
  38399. paw: {
  38400. height: math.unit(0.92, "feet"),
  38401. name: "Paw",
  38402. image: {
  38403. source: "./media/characters/fox/paw.svg"
  38404. }
  38405. },
  38406. },
  38407. [
  38408. {
  38409. name: "Small",
  38410. height: math.unit(3, "inches")
  38411. },
  38412. {
  38413. name: "\"Realistic\"",
  38414. height: math.unit(7, "feet")
  38415. },
  38416. {
  38417. name: "Normal",
  38418. height: math.unit(150, "feet"),
  38419. default: true
  38420. },
  38421. {
  38422. name: "BIG",
  38423. height: math.unit(1200, "feet")
  38424. },
  38425. {
  38426. name: "👀",
  38427. height: math.unit(5, "miles")
  38428. },
  38429. {
  38430. name: "👀👀👀",
  38431. height: math.unit(64, "miles")
  38432. },
  38433. ]
  38434. ))
  38435. characterMakers.push(() => makeCharacter(
  38436. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38437. {
  38438. front: {
  38439. height: math.unit(625, "feet"),
  38440. name: "Front",
  38441. image: {
  38442. source: "./media/characters/asonja-rossa/front.svg",
  38443. extra: 1833/1686,
  38444. bottom: 24/1857
  38445. }
  38446. },
  38447. back: {
  38448. height: math.unit(625, "feet"),
  38449. name: "Back",
  38450. image: {
  38451. source: "./media/characters/asonja-rossa/back.svg",
  38452. extra: 1852/1753,
  38453. bottom: 26/1878
  38454. }
  38455. },
  38456. },
  38457. [
  38458. {
  38459. name: "Macro",
  38460. height: math.unit(625, "feet"),
  38461. default: true
  38462. },
  38463. ]
  38464. ))
  38465. characterMakers.push(() => makeCharacter(
  38466. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38467. {
  38468. side: {
  38469. height: math.unit(8, "feet"),
  38470. name: "Side",
  38471. image: {
  38472. source: "./media/characters/rezukii/side.svg",
  38473. extra: 979/542,
  38474. bottom: 87/1066
  38475. }
  38476. },
  38477. sitting: {
  38478. height: math.unit(14.6, "feet"),
  38479. name: "Sitting",
  38480. image: {
  38481. source: "./media/characters/rezukii/sitting.svg",
  38482. extra: 1023/813,
  38483. bottom: 45/1068
  38484. }
  38485. },
  38486. },
  38487. [
  38488. {
  38489. name: "Tiny",
  38490. height: math.unit(2, "feet")
  38491. },
  38492. {
  38493. name: "Smol",
  38494. height: math.unit(4, "feet")
  38495. },
  38496. {
  38497. name: "Normal",
  38498. height: math.unit(8, "feet"),
  38499. default: true
  38500. },
  38501. {
  38502. name: "Big",
  38503. height: math.unit(12, "feet")
  38504. },
  38505. {
  38506. name: "Macro",
  38507. height: math.unit(30, "feet")
  38508. },
  38509. ]
  38510. ))
  38511. characterMakers.push(() => makeCharacter(
  38512. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38513. {
  38514. front: {
  38515. height: math.unit(14, "feet"),
  38516. weight: math.unit(9.5, "tonnes"),
  38517. name: "Front",
  38518. image: {
  38519. source: "./media/characters/dawnheart/front.svg",
  38520. extra: 2792/2675,
  38521. bottom: 64/2856
  38522. }
  38523. },
  38524. },
  38525. [
  38526. {
  38527. name: "Normal",
  38528. height: math.unit(14, "feet"),
  38529. default: true
  38530. },
  38531. ]
  38532. ))
  38533. characterMakers.push(() => makeCharacter(
  38534. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38535. {
  38536. front: {
  38537. height: math.unit(1.7, "m"),
  38538. name: "Front",
  38539. image: {
  38540. source: "./media/characters/gladi/front.svg",
  38541. extra: 1460/1362,
  38542. bottom: 19/1479
  38543. }
  38544. },
  38545. back: {
  38546. height: math.unit(1.7, "m"),
  38547. name: "Back",
  38548. image: {
  38549. source: "./media/characters/gladi/back.svg",
  38550. extra: 1459/1357,
  38551. bottom: 12/1471
  38552. }
  38553. },
  38554. feral: {
  38555. height: math.unit(2.05, "m"),
  38556. name: "Feral",
  38557. image: {
  38558. source: "./media/characters/gladi/feral.svg",
  38559. extra: 821/557,
  38560. bottom: 91/912
  38561. }
  38562. },
  38563. },
  38564. [
  38565. {
  38566. name: "Shortest",
  38567. height: math.unit(70, "cm")
  38568. },
  38569. {
  38570. name: "Normal",
  38571. height: math.unit(1.7, "m")
  38572. },
  38573. {
  38574. name: "Macro",
  38575. height: math.unit(10, "m"),
  38576. default: true
  38577. },
  38578. {
  38579. name: "Tallest",
  38580. height: math.unit(200, "m")
  38581. },
  38582. ]
  38583. ))
  38584. characterMakers.push(() => makeCharacter(
  38585. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38586. {
  38587. front: {
  38588. height: math.unit(5 + 7/12, "feet"),
  38589. weight: math.unit(2, "tons"),
  38590. name: "Front",
  38591. image: {
  38592. source: "./media/characters/erdno/front.svg",
  38593. extra: 1234/1129,
  38594. bottom: 35/1269
  38595. }
  38596. },
  38597. angled: {
  38598. height: math.unit(5 + 7/12, "feet"),
  38599. weight: math.unit(2, "tons"),
  38600. name: "Angled",
  38601. image: {
  38602. source: "./media/characters/erdno/angled.svg",
  38603. extra: 1185/1139,
  38604. bottom: 36/1221
  38605. }
  38606. },
  38607. side: {
  38608. height: math.unit(5 + 7/12, "feet"),
  38609. weight: math.unit(2, "tons"),
  38610. name: "Side",
  38611. image: {
  38612. source: "./media/characters/erdno/side.svg",
  38613. extra: 1191/1144,
  38614. bottom: 40/1231
  38615. }
  38616. },
  38617. back: {
  38618. height: math.unit(5 + 7/12, "feet"),
  38619. weight: math.unit(2, "tons"),
  38620. name: "Back",
  38621. image: {
  38622. source: "./media/characters/erdno/back.svg",
  38623. extra: 1202/1146,
  38624. bottom: 17/1219
  38625. }
  38626. },
  38627. frontNsfw: {
  38628. height: math.unit(5 + 7/12, "feet"),
  38629. weight: math.unit(2, "tons"),
  38630. name: "Front (NSFW)",
  38631. image: {
  38632. source: "./media/characters/erdno/front-nsfw.svg",
  38633. extra: 1234/1129,
  38634. bottom: 35/1269
  38635. }
  38636. },
  38637. angledNsfw: {
  38638. height: math.unit(5 + 7/12, "feet"),
  38639. weight: math.unit(2, "tons"),
  38640. name: "Angled (NSFW)",
  38641. image: {
  38642. source: "./media/characters/erdno/angled-nsfw.svg",
  38643. extra: 1185/1139,
  38644. bottom: 36/1221
  38645. }
  38646. },
  38647. sideNsfw: {
  38648. height: math.unit(5 + 7/12, "feet"),
  38649. weight: math.unit(2, "tons"),
  38650. name: "Side (NSFW)",
  38651. image: {
  38652. source: "./media/characters/erdno/side-nsfw.svg",
  38653. extra: 1191/1144,
  38654. bottom: 40/1231
  38655. }
  38656. },
  38657. backNsfw: {
  38658. height: math.unit(5 + 7/12, "feet"),
  38659. weight: math.unit(2, "tons"),
  38660. name: "Back (NSFW)",
  38661. image: {
  38662. source: "./media/characters/erdno/back-nsfw.svg",
  38663. extra: 1202/1146,
  38664. bottom: 17/1219
  38665. }
  38666. },
  38667. frontHyper: {
  38668. height: math.unit(5 + 7/12, "feet"),
  38669. weight: math.unit(2, "tons"),
  38670. name: "Front (Hyper)",
  38671. image: {
  38672. source: "./media/characters/erdno/front-hyper.svg",
  38673. extra: 1298/1136,
  38674. bottom: 35/1333
  38675. }
  38676. },
  38677. },
  38678. [
  38679. {
  38680. name: "Normal",
  38681. height: math.unit(5 + 7/12, "feet"),
  38682. default: true
  38683. },
  38684. {
  38685. name: "Big",
  38686. height: math.unit(5.7, "meters")
  38687. },
  38688. {
  38689. name: "Macro",
  38690. height: math.unit(5.7, "kilometers")
  38691. },
  38692. {
  38693. name: "Megamacro",
  38694. height: math.unit(5.7, "earths")
  38695. },
  38696. ]
  38697. ))
  38698. characterMakers.push(() => makeCharacter(
  38699. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38700. {
  38701. front: {
  38702. height: math.unit(5 + 10/12, "feet"),
  38703. weight: math.unit(150, "lb"),
  38704. name: "Front",
  38705. image: {
  38706. source: "./media/characters/jamie/front.svg",
  38707. extra: 1908/1768,
  38708. bottom: 19/1927
  38709. }
  38710. },
  38711. },
  38712. [
  38713. {
  38714. name: "Minimum",
  38715. height: math.unit(2, "cm")
  38716. },
  38717. {
  38718. name: "Micro",
  38719. height: math.unit(3, "inches")
  38720. },
  38721. {
  38722. name: "Normal",
  38723. height: math.unit(5 + 10/12, "feet"),
  38724. default: true
  38725. },
  38726. {
  38727. name: "Macro",
  38728. height: math.unit(150, "feet")
  38729. },
  38730. {
  38731. name: "Megamacro",
  38732. height: math.unit(10000, "m")
  38733. },
  38734. ]
  38735. ))
  38736. characterMakers.push(() => makeCharacter(
  38737. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38738. {
  38739. front: {
  38740. height: math.unit(2, "meters"),
  38741. weight: math.unit(100, "kg"),
  38742. name: "Front",
  38743. image: {
  38744. source: "./media/characters/shiron/front.svg",
  38745. extra: 2103/1985,
  38746. bottom: 98/2201
  38747. }
  38748. },
  38749. back: {
  38750. height: math.unit(2, "meters"),
  38751. weight: math.unit(100, "kg"),
  38752. name: "Back",
  38753. image: {
  38754. source: "./media/characters/shiron/back.svg",
  38755. extra: 2110/2015,
  38756. bottom: 89/2199
  38757. }
  38758. },
  38759. hand: {
  38760. height: math.unit(0.96, "feet"),
  38761. name: "Hand",
  38762. image: {
  38763. source: "./media/characters/shiron/hand.svg"
  38764. }
  38765. },
  38766. foot: {
  38767. height: math.unit(1.464, "feet"),
  38768. name: "Foot",
  38769. image: {
  38770. source: "./media/characters/shiron/foot.svg"
  38771. }
  38772. },
  38773. },
  38774. [
  38775. {
  38776. name: "Normal",
  38777. height: math.unit(2, "meters")
  38778. },
  38779. {
  38780. name: "Macro",
  38781. height: math.unit(500, "meters"),
  38782. default: true
  38783. },
  38784. {
  38785. name: "Megamacro",
  38786. height: math.unit(20, "km")
  38787. },
  38788. ]
  38789. ))
  38790. characterMakers.push(() => makeCharacter(
  38791. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38792. {
  38793. front: {
  38794. height: math.unit(6, "feet"),
  38795. name: "Front",
  38796. image: {
  38797. source: "./media/characters/sam/front.svg",
  38798. extra: 849/826,
  38799. bottom: 19/868
  38800. }
  38801. },
  38802. },
  38803. [
  38804. {
  38805. name: "Normal",
  38806. height: math.unit(6, "feet"),
  38807. default: true
  38808. },
  38809. ]
  38810. ))
  38811. characterMakers.push(() => makeCharacter(
  38812. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38813. {
  38814. front: {
  38815. height: math.unit(8 + 4/12, "feet"),
  38816. weight: math.unit(122, "kg"),
  38817. name: "Front",
  38818. image: {
  38819. source: "./media/characters/namori-kurogawa/front.svg",
  38820. extra: 1894/1576,
  38821. bottom: 34/1928
  38822. }
  38823. },
  38824. },
  38825. [
  38826. {
  38827. name: "Normal",
  38828. height: math.unit(8 + 4/12, "feet"),
  38829. default: true
  38830. },
  38831. ]
  38832. ))
  38833. characterMakers.push(() => makeCharacter(
  38834. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38835. {
  38836. front: {
  38837. height: math.unit(9, "feet"),
  38838. weight: math.unit(621, "lb"),
  38839. name: "Front",
  38840. image: {
  38841. source: "./media/characters/unmru/front.svg",
  38842. extra: 1853/1747,
  38843. bottom: 73/1926
  38844. }
  38845. },
  38846. side: {
  38847. height: math.unit(9, "feet"),
  38848. weight: math.unit(621, "lb"),
  38849. name: "Side",
  38850. image: {
  38851. source: "./media/characters/unmru/side.svg",
  38852. extra: 1781/1671,
  38853. bottom: 127/1908
  38854. }
  38855. },
  38856. back: {
  38857. height: math.unit(9, "feet"),
  38858. weight: math.unit(621, "lb"),
  38859. name: "Back",
  38860. image: {
  38861. source: "./media/characters/unmru/back.svg",
  38862. extra: 1894/1765,
  38863. bottom: 75/1969
  38864. }
  38865. },
  38866. dick: {
  38867. height: math.unit(3, "feet"),
  38868. weight: math.unit(35, "lb"),
  38869. name: "Dick",
  38870. image: {
  38871. source: "./media/characters/unmru/dick.svg"
  38872. }
  38873. },
  38874. },
  38875. [
  38876. {
  38877. name: "Normal",
  38878. height: math.unit(9, "feet")
  38879. },
  38880. {
  38881. name: "Natural",
  38882. height: math.unit(27, "feet"),
  38883. default: true
  38884. },
  38885. {
  38886. name: "Giant",
  38887. height: math.unit(90, "feet")
  38888. },
  38889. {
  38890. name: "Kaiju",
  38891. height: math.unit(270, "feet")
  38892. },
  38893. {
  38894. name: "Macro",
  38895. height: math.unit(900, "feet")
  38896. },
  38897. {
  38898. name: "Macro+",
  38899. height: math.unit(2700, "feet")
  38900. },
  38901. {
  38902. name: "Megamacro",
  38903. height: math.unit(9000, "feet")
  38904. },
  38905. {
  38906. name: "City-Crushing",
  38907. height: math.unit(27000, "feet")
  38908. },
  38909. {
  38910. name: "Mountain-Mashing",
  38911. height: math.unit(90000, "feet")
  38912. },
  38913. {
  38914. name: "Earth-Eclipsing",
  38915. height: math.unit(2.7e8, "feet")
  38916. },
  38917. {
  38918. name: "Sol-Swallowing",
  38919. height: math.unit(9e10, "feet")
  38920. },
  38921. {
  38922. name: "Majoris-Munching",
  38923. height: math.unit(2.7e13, "feet")
  38924. },
  38925. ]
  38926. ))
  38927. characterMakers.push(() => makeCharacter(
  38928. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38929. {
  38930. front: {
  38931. height: math.unit(1, "inch"),
  38932. name: "Front",
  38933. image: {
  38934. source: "./media/characters/squeaks-mouse/front.svg",
  38935. extra: 352/308,
  38936. bottom: 25/377
  38937. }
  38938. },
  38939. },
  38940. [
  38941. {
  38942. name: "Micro",
  38943. height: math.unit(1, "inch"),
  38944. default: true
  38945. },
  38946. ]
  38947. ))
  38948. characterMakers.push(() => makeCharacter(
  38949. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38950. {
  38951. side: {
  38952. height: math.unit(35, "feet"),
  38953. name: "Side",
  38954. image: {
  38955. source: "./media/characters/sayko/side.svg",
  38956. extra: 1697/1021,
  38957. bottom: 82/1779
  38958. }
  38959. },
  38960. head: {
  38961. height: math.unit(16, "feet"),
  38962. name: "Head",
  38963. image: {
  38964. source: "./media/characters/sayko/head.svg"
  38965. }
  38966. },
  38967. forepaw: {
  38968. height: math.unit(7.85, "feet"),
  38969. name: "Forepaw",
  38970. image: {
  38971. source: "./media/characters/sayko/forepaw.svg"
  38972. }
  38973. },
  38974. hindpaw: {
  38975. height: math.unit(8.8, "feet"),
  38976. name: "Hindpaw",
  38977. image: {
  38978. source: "./media/characters/sayko/hindpaw.svg"
  38979. }
  38980. },
  38981. },
  38982. [
  38983. {
  38984. name: "Normal",
  38985. height: math.unit(35, "feet"),
  38986. default: true
  38987. },
  38988. {
  38989. name: "Colossus",
  38990. height: math.unit(100, "meters")
  38991. },
  38992. {
  38993. name: "\"Small\" Deity",
  38994. height: math.unit(1, "km")
  38995. },
  38996. {
  38997. name: "\"Large\" Deity",
  38998. height: math.unit(15, "km")
  38999. },
  39000. ]
  39001. ))
  39002. characterMakers.push(() => makeCharacter(
  39003. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39004. {
  39005. front: {
  39006. height: math.unit(6, "feet"),
  39007. weight: math.unit(250, "lb"),
  39008. name: "Front",
  39009. image: {
  39010. source: "./media/characters/mukiro/front.svg",
  39011. extra: 1368/1310,
  39012. bottom: 34/1402
  39013. }
  39014. },
  39015. },
  39016. [
  39017. {
  39018. name: "Normal",
  39019. height: math.unit(6, "feet"),
  39020. default: true
  39021. },
  39022. ]
  39023. ))
  39024. characterMakers.push(() => makeCharacter(
  39025. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39026. {
  39027. front: {
  39028. height: math.unit(12 + 4/12, "feet"),
  39029. name: "Front",
  39030. image: {
  39031. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39032. extra: 1346/1311,
  39033. bottom: 65/1411
  39034. }
  39035. },
  39036. },
  39037. [
  39038. {
  39039. name: "Base",
  39040. height: math.unit(12 + 4/12, "feet"),
  39041. default: true
  39042. },
  39043. {
  39044. name: "Macro",
  39045. height: math.unit(150, "feet")
  39046. },
  39047. {
  39048. name: "Mega",
  39049. height: math.unit(2, "miles")
  39050. },
  39051. {
  39052. name: "Demi God",
  39053. height: math.unit(4, "AU")
  39054. },
  39055. {
  39056. name: "God Size",
  39057. height: math.unit(1, "universe")
  39058. },
  39059. ]
  39060. ))
  39061. characterMakers.push(() => makeCharacter(
  39062. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39063. {
  39064. front: {
  39065. height: math.unit(3 + 3/12, "feet"),
  39066. weight: math.unit(88, "lb"),
  39067. name: "Front",
  39068. image: {
  39069. source: "./media/characters/trey/front.svg",
  39070. extra: 1815/1509,
  39071. bottom: 60/1875
  39072. }
  39073. },
  39074. },
  39075. [
  39076. {
  39077. name: "Normal",
  39078. height: math.unit(3 + 3/12, "feet"),
  39079. default: true
  39080. },
  39081. ]
  39082. ))
  39083. characterMakers.push(() => makeCharacter(
  39084. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39085. {
  39086. front: {
  39087. height: math.unit(4, "meters"),
  39088. name: "Front",
  39089. image: {
  39090. source: "./media/characters/adelonda/front.svg",
  39091. extra: 1077/982,
  39092. bottom: 39/1116
  39093. }
  39094. },
  39095. back: {
  39096. height: math.unit(4, "meters"),
  39097. name: "Back",
  39098. image: {
  39099. source: "./media/characters/adelonda/back.svg",
  39100. extra: 1105/1003,
  39101. bottom: 25/1130
  39102. }
  39103. },
  39104. feral: {
  39105. height: math.unit(40/1.5, "meters"),
  39106. name: "Feral",
  39107. image: {
  39108. source: "./media/characters/adelonda/feral.svg",
  39109. extra: 597/271,
  39110. bottom: 387/984
  39111. }
  39112. },
  39113. },
  39114. [
  39115. {
  39116. name: "Normal",
  39117. height: math.unit(4, "meters"),
  39118. default: true
  39119. },
  39120. ]
  39121. ))
  39122. characterMakers.push(() => makeCharacter(
  39123. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39124. {
  39125. front: {
  39126. height: math.unit(8 + 4/12, "feet"),
  39127. weight: math.unit(670, "lb"),
  39128. name: "Front",
  39129. image: {
  39130. source: "./media/characters/acadiel/front.svg",
  39131. extra: 1901/1595,
  39132. bottom: 142/2043
  39133. }
  39134. },
  39135. },
  39136. [
  39137. {
  39138. name: "Normal",
  39139. height: math.unit(8 + 4/12, "feet"),
  39140. default: true
  39141. },
  39142. {
  39143. name: "Macro",
  39144. height: math.unit(200, "feet")
  39145. },
  39146. ]
  39147. ))
  39148. characterMakers.push(() => makeCharacter(
  39149. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39150. {
  39151. front: {
  39152. height: math.unit(6 + 2/12, "feet"),
  39153. weight: math.unit(185, "lb"),
  39154. name: "Front",
  39155. image: {
  39156. source: "./media/characters/kayne-ein/front.svg",
  39157. extra: 1780/1560,
  39158. bottom: 81/1861
  39159. }
  39160. },
  39161. },
  39162. [
  39163. {
  39164. name: "Normal",
  39165. height: math.unit(6 + 2/12, "feet"),
  39166. default: true
  39167. },
  39168. {
  39169. name: "Transformation Stage",
  39170. height: math.unit(15, "feet")
  39171. },
  39172. {
  39173. name: "Macro",
  39174. height: math.unit(150, "feet")
  39175. },
  39176. {
  39177. name: "Earth's Shadow",
  39178. height: math.unit(6200, "miles")
  39179. },
  39180. {
  39181. name: "Universal Demon",
  39182. height: math.unit(28e9, "parsecs")
  39183. },
  39184. {
  39185. name: "Multiverse God",
  39186. height: math.unit(3, "multiverses")
  39187. },
  39188. ]
  39189. ))
  39190. characterMakers.push(() => makeCharacter(
  39191. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39192. {
  39193. front: {
  39194. height: math.unit(5 + 5/12, "feet"),
  39195. name: "Front",
  39196. image: {
  39197. source: "./media/characters/fawn/front.svg",
  39198. extra: 1873/1731,
  39199. bottom: 95/1968
  39200. }
  39201. },
  39202. back: {
  39203. height: math.unit(5 + 5/12, "feet"),
  39204. name: "Back",
  39205. image: {
  39206. source: "./media/characters/fawn/back.svg",
  39207. extra: 1813/1700,
  39208. bottom: 14/1827
  39209. }
  39210. },
  39211. hoof: {
  39212. height: math.unit(1.45, "feet"),
  39213. name: "Hoof",
  39214. image: {
  39215. source: "./media/characters/fawn/hoof.svg"
  39216. }
  39217. },
  39218. },
  39219. [
  39220. {
  39221. name: "Normal",
  39222. height: math.unit(5 + 5/12, "feet"),
  39223. default: true
  39224. },
  39225. ]
  39226. ))
  39227. characterMakers.push(() => makeCharacter(
  39228. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39229. {
  39230. front: {
  39231. height: math.unit(2 + 5/12, "feet"),
  39232. name: "Front",
  39233. image: {
  39234. source: "./media/characters/orion/front.svg",
  39235. extra: 1366/1304,
  39236. bottom: 43/1409
  39237. }
  39238. },
  39239. paw: {
  39240. height: math.unit(0.52, "feet"),
  39241. name: "Paw",
  39242. image: {
  39243. source: "./media/characters/orion/paw.svg"
  39244. }
  39245. },
  39246. },
  39247. [
  39248. {
  39249. name: "Normal",
  39250. height: math.unit(2 + 5/12, "feet"),
  39251. default: true
  39252. },
  39253. ]
  39254. ))
  39255. characterMakers.push(() => makeCharacter(
  39256. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39257. {
  39258. front: {
  39259. height: math.unit(5 + 10/12, "feet"),
  39260. name: "Front",
  39261. image: {
  39262. source: "./media/characters/vera/front.svg",
  39263. extra: 1680/1575,
  39264. bottom: 49/1729
  39265. }
  39266. },
  39267. back: {
  39268. height: math.unit(5 + 10/12, "feet"),
  39269. name: "Back",
  39270. image: {
  39271. source: "./media/characters/vera/back.svg",
  39272. extra: 1700/1588,
  39273. bottom: 18/1718
  39274. }
  39275. },
  39276. arcanine: {
  39277. height: math.unit(6 + 8/12, "feet"),
  39278. name: "Arcanine",
  39279. image: {
  39280. source: "./media/characters/vera/arcanine.svg",
  39281. extra: 1590/1511,
  39282. bottom: 71/1661
  39283. }
  39284. },
  39285. maw: {
  39286. height: math.unit(0.82, "feet"),
  39287. name: "Maw",
  39288. image: {
  39289. source: "./media/characters/vera/maw.svg"
  39290. }
  39291. },
  39292. mawArcanine: {
  39293. height: math.unit(0.97, "feet"),
  39294. name: "Maw (Arcanine)",
  39295. image: {
  39296. source: "./media/characters/vera/maw-arcanine.svg"
  39297. }
  39298. },
  39299. paw: {
  39300. height: math.unit(0.75, "feet"),
  39301. name: "Paw",
  39302. image: {
  39303. source: "./media/characters/vera/paw.svg"
  39304. }
  39305. },
  39306. pawprint: {
  39307. height: math.unit(0.52, "feet"),
  39308. name: "Pawprint",
  39309. image: {
  39310. source: "./media/characters/vera/pawprint.svg"
  39311. }
  39312. },
  39313. },
  39314. [
  39315. {
  39316. name: "Normal",
  39317. height: math.unit(5 + 10/12, "feet"),
  39318. default: true
  39319. },
  39320. {
  39321. name: "Macro",
  39322. height: math.unit(75, "feet")
  39323. },
  39324. ]
  39325. ))
  39326. characterMakers.push(() => makeCharacter(
  39327. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39328. {
  39329. front: {
  39330. height: math.unit(4, "feet"),
  39331. weight: math.unit(40, "lb"),
  39332. name: "Front",
  39333. image: {
  39334. source: "./media/characters/orvan-rabbit/front.svg",
  39335. extra: 1896/1642,
  39336. bottom: 29/1925
  39337. }
  39338. },
  39339. },
  39340. [
  39341. {
  39342. name: "Normal",
  39343. height: math.unit(4, "feet"),
  39344. default: true
  39345. },
  39346. ]
  39347. ))
  39348. characterMakers.push(() => makeCharacter(
  39349. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39350. {
  39351. front: {
  39352. height: math.unit(6, "feet"),
  39353. weight: math.unit(168, "lb"),
  39354. name: "Front",
  39355. image: {
  39356. source: "./media/characters/lisa/front.svg",
  39357. extra: 2065/1867,
  39358. bottom: 46/2111
  39359. }
  39360. },
  39361. back: {
  39362. height: math.unit(6, "feet"),
  39363. weight: math.unit(168, "lb"),
  39364. name: "Back",
  39365. image: {
  39366. source: "./media/characters/lisa/back.svg",
  39367. extra: 1982/1838,
  39368. bottom: 29/2011
  39369. }
  39370. },
  39371. maw: {
  39372. height: math.unit(0.81, "feet"),
  39373. name: "Maw",
  39374. image: {
  39375. source: "./media/characters/lisa/maw.svg"
  39376. }
  39377. },
  39378. paw: {
  39379. height: math.unit(0.9, "feet"),
  39380. name: "Paw",
  39381. image: {
  39382. source: "./media/characters/lisa/paw.svg"
  39383. }
  39384. },
  39385. caribousune: {
  39386. height: math.unit(7 + 2/12, "feet"),
  39387. weight: math.unit(268, "lb"),
  39388. name: "Caribousune",
  39389. image: {
  39390. source: "./media/characters/lisa/caribousune.svg",
  39391. extra: 1843/1633,
  39392. bottom: 29/1872
  39393. }
  39394. },
  39395. frontCaribousune: {
  39396. height: math.unit(7 + 2/12, "feet"),
  39397. weight: math.unit(268, "lb"),
  39398. name: "Front (Caribousune)",
  39399. image: {
  39400. source: "./media/characters/lisa/front-caribousune.svg",
  39401. extra: 1818/1638,
  39402. bottom: 52/1870
  39403. }
  39404. },
  39405. sideCaribousune: {
  39406. height: math.unit(7 + 2/12, "feet"),
  39407. weight: math.unit(268, "lb"),
  39408. name: "Side (Caribousune)",
  39409. image: {
  39410. source: "./media/characters/lisa/side-caribousune.svg",
  39411. extra: 1851/1635,
  39412. bottom: 16/1867
  39413. }
  39414. },
  39415. backCaribousune: {
  39416. height: math.unit(7 + 2/12, "feet"),
  39417. weight: math.unit(268, "lb"),
  39418. name: "Back (Caribousune)",
  39419. image: {
  39420. source: "./media/characters/lisa/back-caribousune.svg",
  39421. extra: 1801/1604,
  39422. bottom: 44/1845
  39423. }
  39424. },
  39425. caribou: {
  39426. height: math.unit(7 + 2/12, "feet"),
  39427. weight: math.unit(268, "lb"),
  39428. name: "Caribou",
  39429. image: {
  39430. source: "./media/characters/lisa/caribou.svg",
  39431. extra: 1843/1633,
  39432. bottom: 29/1872
  39433. }
  39434. },
  39435. frontCaribou: {
  39436. height: math.unit(7 + 2/12, "feet"),
  39437. weight: math.unit(268, "lb"),
  39438. name: "Front (Caribou)",
  39439. image: {
  39440. source: "./media/characters/lisa/front-caribou.svg",
  39441. extra: 1818/1638,
  39442. bottom: 52/1870
  39443. }
  39444. },
  39445. sideCaribou: {
  39446. height: math.unit(7 + 2/12, "feet"),
  39447. weight: math.unit(268, "lb"),
  39448. name: "Side (Caribou)",
  39449. image: {
  39450. source: "./media/characters/lisa/side-caribou.svg",
  39451. extra: 1851/1635,
  39452. bottom: 16/1867
  39453. }
  39454. },
  39455. backCaribou: {
  39456. height: math.unit(7 + 2/12, "feet"),
  39457. weight: math.unit(268, "lb"),
  39458. name: "Back (Caribou)",
  39459. image: {
  39460. source: "./media/characters/lisa/back-caribou.svg",
  39461. extra: 1801/1604,
  39462. bottom: 44/1845
  39463. }
  39464. },
  39465. mawCaribou: {
  39466. height: math.unit(1.45, "feet"),
  39467. name: "Maw (Caribou)",
  39468. image: {
  39469. source: "./media/characters/lisa/maw-caribou.svg"
  39470. }
  39471. },
  39472. mawCaribousune: {
  39473. height: math.unit(1.45, "feet"),
  39474. name: "Maw (Caribousune)",
  39475. image: {
  39476. source: "./media/characters/lisa/maw-caribousune.svg"
  39477. }
  39478. },
  39479. pawCaribousune: {
  39480. height: math.unit(1.61, "feet"),
  39481. name: "Paw (Caribou)",
  39482. image: {
  39483. source: "./media/characters/lisa/paw-caribousune.svg"
  39484. }
  39485. },
  39486. },
  39487. [
  39488. {
  39489. name: "Normal",
  39490. height: math.unit(6, "feet")
  39491. },
  39492. {
  39493. name: "God Size",
  39494. height: math.unit(72, "feet"),
  39495. default: true
  39496. },
  39497. {
  39498. name: "Towering",
  39499. height: math.unit(288, "feet")
  39500. },
  39501. {
  39502. name: "City Size",
  39503. height: math.unit(48384, "feet")
  39504. },
  39505. {
  39506. name: "Continental",
  39507. height: math.unit(4200, "miles")
  39508. },
  39509. {
  39510. name: "Planet Eater",
  39511. height: math.unit(42, "earths")
  39512. },
  39513. {
  39514. name: "Star Swallower",
  39515. height: math.unit(42, "solarradii")
  39516. },
  39517. {
  39518. name: "System Swallower",
  39519. height: math.unit(84000, "AU")
  39520. },
  39521. {
  39522. name: "Galaxy Gobbler",
  39523. height: math.unit(42, "galaxies")
  39524. },
  39525. {
  39526. name: "Universe Devourer",
  39527. height: math.unit(42, "universes")
  39528. },
  39529. {
  39530. name: "Multiverse Muncher",
  39531. height: math.unit(42, "multiverses")
  39532. },
  39533. ]
  39534. ))
  39535. characterMakers.push(() => makeCharacter(
  39536. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39537. {
  39538. front: {
  39539. height: math.unit(36, "feet"),
  39540. name: "Front",
  39541. image: {
  39542. source: "./media/characters/shadow-rat/front.svg",
  39543. extra: 1845/1758,
  39544. bottom: 83/1928
  39545. }
  39546. },
  39547. },
  39548. [
  39549. {
  39550. name: "Macro",
  39551. height: math.unit(36, "feet"),
  39552. default: true
  39553. },
  39554. ]
  39555. ))
  39556. characterMakers.push(() => makeCharacter(
  39557. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39558. {
  39559. side: {
  39560. height: math.unit(8, "feet"),
  39561. weight: math.unit(2630, "lb"),
  39562. name: "Side",
  39563. image: {
  39564. source: "./media/characters/torallia/side.svg",
  39565. extra: 2164/2021,
  39566. bottom: 371/2535
  39567. }
  39568. },
  39569. },
  39570. [
  39571. {
  39572. name: "Mortal Interaction",
  39573. height: math.unit(8, "feet")
  39574. },
  39575. {
  39576. name: "Natural",
  39577. height: math.unit(24, "feet"),
  39578. default: true
  39579. },
  39580. {
  39581. name: "Giant",
  39582. height: math.unit(80, "feet")
  39583. },
  39584. {
  39585. name: "Kaiju",
  39586. height: math.unit(240, "feet")
  39587. },
  39588. {
  39589. name: "Macro",
  39590. height: math.unit(800, "feet")
  39591. },
  39592. {
  39593. name: "Macro+",
  39594. height: math.unit(2400, "feet")
  39595. },
  39596. {
  39597. name: "Macro++",
  39598. height: math.unit(8000, "feet")
  39599. },
  39600. {
  39601. name: "City-Crushing",
  39602. height: math.unit(24000, "feet")
  39603. },
  39604. {
  39605. name: "Mountain-Mashing",
  39606. height: math.unit(80000, "feet")
  39607. },
  39608. {
  39609. name: "District Demolisher",
  39610. height: math.unit(240000, "feet")
  39611. },
  39612. {
  39613. name: "Tri-County Terror",
  39614. height: math.unit(800000, "feet")
  39615. },
  39616. {
  39617. name: "State Smasher",
  39618. height: math.unit(2.4e6, "feet")
  39619. },
  39620. {
  39621. name: "Nation Nemesis",
  39622. height: math.unit(8e6, "feet")
  39623. },
  39624. {
  39625. name: "Continent Cracker",
  39626. height: math.unit(2.4e7, "feet")
  39627. },
  39628. {
  39629. name: "Planet-Pillaging",
  39630. height: math.unit(8e7, "feet")
  39631. },
  39632. {
  39633. name: "Earth-Eclipsing",
  39634. height: math.unit(2.4e8, "feet")
  39635. },
  39636. {
  39637. name: "Jovian-Jostling",
  39638. height: math.unit(8e8, "feet")
  39639. },
  39640. {
  39641. name: "Gas Giant Gulper",
  39642. height: math.unit(2.4e9, "feet")
  39643. },
  39644. {
  39645. name: "Astral Annihilator",
  39646. height: math.unit(8e9, "feet")
  39647. },
  39648. {
  39649. name: "Celestial Conqueror",
  39650. height: math.unit(2.4e10, "feet")
  39651. },
  39652. {
  39653. name: "Sol-Swallowing",
  39654. height: math.unit(8e10, "feet")
  39655. },
  39656. {
  39657. name: "Hunter of the Heavens",
  39658. height: math.unit(2.4e13, "feet")
  39659. },
  39660. ]
  39661. ))
  39662. characterMakers.push(() => makeCharacter(
  39663. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39664. {
  39665. front: {
  39666. height: math.unit(6 + 8/12, "feet"),
  39667. name: "Front",
  39668. image: {
  39669. source: "./media/characters/rebecca-pawlson/front.svg",
  39670. extra: 1737/1596,
  39671. bottom: 107/1844
  39672. }
  39673. },
  39674. back: {
  39675. height: math.unit(6 + 8/12, "feet"),
  39676. name: "Back",
  39677. image: {
  39678. source: "./media/characters/rebecca-pawlson/back.svg",
  39679. extra: 1702/1523,
  39680. bottom: 86/1788
  39681. }
  39682. },
  39683. },
  39684. [
  39685. {
  39686. name: "Normal",
  39687. height: math.unit(6 + 8/12, "feet")
  39688. },
  39689. {
  39690. name: "Mini Macro",
  39691. height: math.unit(10, "feet"),
  39692. default: true
  39693. },
  39694. {
  39695. name: "Macro",
  39696. height: math.unit(100, "feet")
  39697. },
  39698. {
  39699. name: "Mega Macro",
  39700. height: math.unit(2500, "feet")
  39701. },
  39702. {
  39703. name: "Giga Macro",
  39704. height: math.unit(50, "miles")
  39705. },
  39706. ]
  39707. ))
  39708. characterMakers.push(() => makeCharacter(
  39709. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39710. {
  39711. front: {
  39712. height: math.unit(7 + 6/12, "feet"),
  39713. weight: math.unit(600, "lb"),
  39714. name: "Front",
  39715. image: {
  39716. source: "./media/characters/moxie-nova/front.svg",
  39717. extra: 1734/1652,
  39718. bottom: 41/1775
  39719. }
  39720. },
  39721. },
  39722. [
  39723. {
  39724. name: "Normal",
  39725. height: math.unit(7 + 6/12, "feet"),
  39726. default: true
  39727. },
  39728. ]
  39729. ))
  39730. characterMakers.push(() => makeCharacter(
  39731. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39732. {
  39733. goat: {
  39734. height: math.unit(4, "feet"),
  39735. weight: math.unit(180, "lb"),
  39736. name: "Goat",
  39737. image: {
  39738. source: "./media/characters/tiffany/goat.svg",
  39739. extra: 1845/1595,
  39740. bottom: 106/1951
  39741. }
  39742. },
  39743. front: {
  39744. height: math.unit(5, "feet"),
  39745. weight: math.unit(150, "lb"),
  39746. name: "Foxcoon",
  39747. image: {
  39748. source: "./media/characters/tiffany/foxcoon.svg",
  39749. extra: 1941/1845,
  39750. bottom: 58/1999
  39751. }
  39752. },
  39753. },
  39754. [
  39755. {
  39756. name: "Normal",
  39757. height: math.unit(5, "feet"),
  39758. default: true
  39759. },
  39760. ]
  39761. ))
  39762. characterMakers.push(() => makeCharacter(
  39763. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39764. {
  39765. front: {
  39766. height: math.unit(8, "feet"),
  39767. weight: math.unit(300, "lb"),
  39768. name: "Front",
  39769. image: {
  39770. source: "./media/characters/raxinath/front.svg",
  39771. extra: 1407/1309,
  39772. bottom: 39/1446
  39773. }
  39774. },
  39775. back: {
  39776. height: math.unit(8, "feet"),
  39777. weight: math.unit(300, "lb"),
  39778. name: "Back",
  39779. image: {
  39780. source: "./media/characters/raxinath/back.svg",
  39781. extra: 1405/1315,
  39782. bottom: 9/1414
  39783. }
  39784. },
  39785. },
  39786. [
  39787. {
  39788. name: "Speck",
  39789. height: math.unit(0.5, "nm")
  39790. },
  39791. {
  39792. name: "Micro",
  39793. height: math.unit(3, "inches")
  39794. },
  39795. {
  39796. name: "Kobold",
  39797. height: math.unit(3, "feet")
  39798. },
  39799. {
  39800. name: "Normal",
  39801. height: math.unit(8, "feet"),
  39802. default: true
  39803. },
  39804. {
  39805. name: "Giant",
  39806. height: math.unit(50, "feet")
  39807. },
  39808. {
  39809. name: "Macro",
  39810. height: math.unit(1000, "feet")
  39811. },
  39812. {
  39813. name: "Megamacro",
  39814. height: math.unit(1, "mile")
  39815. },
  39816. ]
  39817. ))
  39818. characterMakers.push(() => makeCharacter(
  39819. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39820. {
  39821. front: {
  39822. height: math.unit(10, "feet"),
  39823. weight: math.unit(1442, "lb"),
  39824. name: "Front",
  39825. image: {
  39826. source: "./media/characters/mal-dragon/front.svg",
  39827. extra: 1515/1444,
  39828. bottom: 113/1628
  39829. }
  39830. },
  39831. back: {
  39832. height: math.unit(10, "feet"),
  39833. weight: math.unit(1442, "lb"),
  39834. name: "Back",
  39835. image: {
  39836. source: "./media/characters/mal-dragon/back.svg",
  39837. extra: 1527/1434,
  39838. bottom: 25/1552
  39839. }
  39840. },
  39841. },
  39842. [
  39843. {
  39844. name: "Mortal Interaction",
  39845. height: math.unit(10, "feet"),
  39846. default: true
  39847. },
  39848. {
  39849. name: "Large",
  39850. height: math.unit(30, "feet")
  39851. },
  39852. {
  39853. name: "Kaiju",
  39854. height: math.unit(300, "feet")
  39855. },
  39856. {
  39857. name: "Megamacro",
  39858. height: math.unit(10000, "feet")
  39859. },
  39860. {
  39861. name: "Continent Cracker",
  39862. height: math.unit(30000000, "feet")
  39863. },
  39864. {
  39865. name: "Sol-Swallowing",
  39866. height: math.unit(1e11, "feet")
  39867. },
  39868. {
  39869. name: "Light Universal",
  39870. height: math.unit(5, "universes")
  39871. },
  39872. {
  39873. name: "Universe Atoms",
  39874. height: math.unit(1.829e9, "universes")
  39875. },
  39876. {
  39877. name: "Light Multiversal",
  39878. height: math.unit(5, "multiverses")
  39879. },
  39880. {
  39881. name: "Multiverse Atoms",
  39882. height: math.unit(1.829e9, "multiverses")
  39883. },
  39884. {
  39885. name: "Fabric of Time",
  39886. height: math.unit(1e262, "multiverses")
  39887. },
  39888. ]
  39889. ))
  39890. characterMakers.push(() => makeCharacter(
  39891. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39892. {
  39893. front: {
  39894. height: math.unit(9, "feet"),
  39895. weight: math.unit(1050, "lb"),
  39896. name: "Front",
  39897. image: {
  39898. source: "./media/characters/tabitha/front.svg",
  39899. extra: 2083/1994,
  39900. bottom: 68/2151
  39901. }
  39902. },
  39903. },
  39904. [
  39905. {
  39906. name: "Baseline",
  39907. height: math.unit(9, "feet"),
  39908. default: true
  39909. },
  39910. {
  39911. name: "Giant",
  39912. height: math.unit(90, "feet")
  39913. },
  39914. {
  39915. name: "Macro",
  39916. height: math.unit(900, "feet")
  39917. },
  39918. {
  39919. name: "Megamacro",
  39920. height: math.unit(9000, "feet")
  39921. },
  39922. {
  39923. name: "City-Crushing",
  39924. height: math.unit(27000, "feet")
  39925. },
  39926. {
  39927. name: "Mountain-Mashing",
  39928. height: math.unit(90000, "feet")
  39929. },
  39930. {
  39931. name: "Nation Nemesis",
  39932. height: math.unit(9e6, "feet")
  39933. },
  39934. {
  39935. name: "Continent Cracker",
  39936. height: math.unit(27e6, "feet")
  39937. },
  39938. {
  39939. name: "Earth-Eclipsing",
  39940. height: math.unit(2.7e8, "feet")
  39941. },
  39942. {
  39943. name: "Gas Giant Gulper",
  39944. height: math.unit(2.7e9, "feet")
  39945. },
  39946. {
  39947. name: "Sol-Swallowing",
  39948. height: math.unit(9e10, "feet")
  39949. },
  39950. {
  39951. name: "Galaxy Gulper",
  39952. height: math.unit(9, "galaxies")
  39953. },
  39954. {
  39955. name: "Cosmos Churner",
  39956. height: math.unit(9, "universes")
  39957. },
  39958. ]
  39959. ))
  39960. characterMakers.push(() => makeCharacter(
  39961. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39962. {
  39963. front: {
  39964. height: math.unit(160, "cm"),
  39965. weight: math.unit(55, "kg"),
  39966. name: "Front",
  39967. image: {
  39968. source: "./media/characters/tow/front.svg",
  39969. extra: 1751/1722,
  39970. bottom: 74/1825
  39971. }
  39972. },
  39973. },
  39974. [
  39975. {
  39976. name: "Norm",
  39977. height: math.unit(160, "cm")
  39978. },
  39979. {
  39980. name: "Casual",
  39981. height: math.unit(3200, "m"),
  39982. default: true
  39983. },
  39984. {
  39985. name: "Show-Off",
  39986. height: math.unit(160, "km")
  39987. },
  39988. ]
  39989. ))
  39990. characterMakers.push(() => makeCharacter(
  39991. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39992. {
  39993. front: {
  39994. height: math.unit(7 + 11/12, "feet"),
  39995. weight: math.unit(342.8, "lb"),
  39996. name: "Front",
  39997. image: {
  39998. source: "./media/characters/vivian-orca-dragon/front.svg",
  39999. extra: 1890/1865,
  40000. bottom: 28/1918
  40001. }
  40002. },
  40003. },
  40004. [
  40005. {
  40006. name: "Micro",
  40007. height: math.unit(5, "inches")
  40008. },
  40009. {
  40010. name: "Normal",
  40011. height: math.unit(7 + 11/12, "feet"),
  40012. default: true
  40013. },
  40014. {
  40015. name: "Macro",
  40016. height: math.unit(395 + 7/12, "feet")
  40017. },
  40018. ]
  40019. ))
  40020. characterMakers.push(() => makeCharacter(
  40021. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40022. {
  40023. side: {
  40024. height: math.unit(10, "feet"),
  40025. weight: math.unit(1442, "lb"),
  40026. name: "Side",
  40027. image: {
  40028. source: "./media/characters/lotherakon/side.svg",
  40029. extra: 1604/1497,
  40030. bottom: 89/1693
  40031. }
  40032. },
  40033. },
  40034. [
  40035. {
  40036. name: "Mortal Interaction",
  40037. height: math.unit(10, "feet")
  40038. },
  40039. {
  40040. name: "Large",
  40041. height: math.unit(30, "feet"),
  40042. default: true
  40043. },
  40044. {
  40045. name: "Giant",
  40046. height: math.unit(100, "feet")
  40047. },
  40048. {
  40049. name: "Kaiju",
  40050. height: math.unit(300, "feet")
  40051. },
  40052. {
  40053. name: "Macro",
  40054. height: math.unit(1000, "feet")
  40055. },
  40056. {
  40057. name: "Macro+",
  40058. height: math.unit(3000, "feet")
  40059. },
  40060. {
  40061. name: "Megamacro",
  40062. height: math.unit(10000, "feet")
  40063. },
  40064. {
  40065. name: "City-Crushing",
  40066. height: math.unit(30000, "feet")
  40067. },
  40068. {
  40069. name: "Continent Cracker",
  40070. height: math.unit(30e6, "feet")
  40071. },
  40072. {
  40073. name: "Earth Eclipsing",
  40074. height: math.unit(3e8, "feet")
  40075. },
  40076. {
  40077. name: "Gas Giant Gulper",
  40078. height: math.unit(3e9, "feet")
  40079. },
  40080. {
  40081. name: "Sol-Swallowing",
  40082. height: math.unit(1e11, "feet")
  40083. },
  40084. {
  40085. name: "System Swallower",
  40086. height: math.unit(3e14, "feet")
  40087. },
  40088. {
  40089. name: "Galaxy Gulper",
  40090. height: math.unit(10, "galaxies")
  40091. },
  40092. {
  40093. name: "Light Universal",
  40094. height: math.unit(5, "universes")
  40095. },
  40096. {
  40097. name: "Universe Palm",
  40098. height: math.unit(20, "universes")
  40099. },
  40100. {
  40101. name: "Light Multiversal",
  40102. height: math.unit(5, "multiverses")
  40103. },
  40104. {
  40105. name: "Multiverse Palm",
  40106. height: math.unit(20, "multiverses")
  40107. },
  40108. {
  40109. name: "Inferno Incarnate",
  40110. height: math.unit(1e7, "multiverses")
  40111. },
  40112. ]
  40113. ))
  40114. characterMakers.push(() => makeCharacter(
  40115. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40116. {
  40117. front: {
  40118. height: math.unit(8, "feet"),
  40119. weight: math.unit(1200, "lb"),
  40120. name: "Front",
  40121. image: {
  40122. source: "./media/characters/malithee/front.svg",
  40123. extra: 1675/1640,
  40124. bottom: 162/1837
  40125. }
  40126. },
  40127. },
  40128. [
  40129. {
  40130. name: "Mortal Interaction",
  40131. height: math.unit(8, "feet"),
  40132. default: true
  40133. },
  40134. {
  40135. name: "Large",
  40136. height: math.unit(24, "feet")
  40137. },
  40138. {
  40139. name: "Kaiju",
  40140. height: math.unit(240, "feet")
  40141. },
  40142. {
  40143. name: "Megamacro",
  40144. height: math.unit(8000, "feet")
  40145. },
  40146. {
  40147. name: "Continent Cracker",
  40148. height: math.unit(24e6, "feet")
  40149. },
  40150. {
  40151. name: "Earth-Eclipsing",
  40152. height: math.unit(2.4e8, "feet")
  40153. },
  40154. {
  40155. name: "Sol-Swallowing",
  40156. height: math.unit(8e10, "feet")
  40157. },
  40158. {
  40159. name: "Galaxy Gulper",
  40160. height: math.unit(8, "galaxies")
  40161. },
  40162. {
  40163. name: "Light Universal",
  40164. height: math.unit(4, "universes")
  40165. },
  40166. {
  40167. name: "Universe Atoms",
  40168. height: math.unit(1.829e9, "universes")
  40169. },
  40170. {
  40171. name: "Light Multiversal",
  40172. height: math.unit(4, "multiverses")
  40173. },
  40174. {
  40175. name: "Multiverse Atoms",
  40176. height: math.unit(1.829e9, "multiverses")
  40177. },
  40178. {
  40179. name: "Nigh-Omnipresence",
  40180. height: math.unit(8e261, "multiverses")
  40181. },
  40182. ]
  40183. ))
  40184. characterMakers.push(() => makeCharacter(
  40185. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40186. {
  40187. front: {
  40188. height: math.unit(10, "feet"),
  40189. weight: math.unit(1500, "lb"),
  40190. name: "Front",
  40191. image: {
  40192. source: "./media/characters/miles-thestia/front.svg",
  40193. extra: 1812/1727,
  40194. bottom: 86/1898
  40195. }
  40196. },
  40197. back: {
  40198. height: math.unit(10, "feet"),
  40199. weight: math.unit(1500, "lb"),
  40200. name: "Back",
  40201. image: {
  40202. source: "./media/characters/miles-thestia/back.svg",
  40203. extra: 1799/1690,
  40204. bottom: 47/1846
  40205. }
  40206. },
  40207. frontNsfw: {
  40208. height: math.unit(10, "feet"),
  40209. weight: math.unit(1500, "lb"),
  40210. name: "Front (NSFW)",
  40211. image: {
  40212. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40213. extra: 1812/1727,
  40214. bottom: 86/1898
  40215. }
  40216. },
  40217. },
  40218. [
  40219. {
  40220. name: "Mini-Macro",
  40221. height: math.unit(10, "feet"),
  40222. default: true
  40223. },
  40224. ]
  40225. ))
  40226. characterMakers.push(() => makeCharacter(
  40227. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40228. {
  40229. front: {
  40230. height: math.unit(25, "feet"),
  40231. name: "Front",
  40232. image: {
  40233. source: "./media/characters/titan-s-wulf/front.svg",
  40234. extra: 1560/1484,
  40235. bottom: 76/1636
  40236. }
  40237. },
  40238. },
  40239. [
  40240. {
  40241. name: "Smallest",
  40242. height: math.unit(25, "feet"),
  40243. default: true
  40244. },
  40245. {
  40246. name: "Normal",
  40247. height: math.unit(200, "feet")
  40248. },
  40249. {
  40250. name: "Macro",
  40251. height: math.unit(200000, "feet")
  40252. },
  40253. {
  40254. name: "Multiversal Original",
  40255. height: math.unit(10000, "multiverses")
  40256. },
  40257. ]
  40258. ))
  40259. characterMakers.push(() => makeCharacter(
  40260. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40261. {
  40262. front: {
  40263. height: math.unit(8, "feet"),
  40264. weight: math.unit(553, "lb"),
  40265. name: "Front",
  40266. image: {
  40267. source: "./media/characters/tawendeh/front.svg",
  40268. extra: 2365/2268,
  40269. bottom: 83/2448
  40270. }
  40271. },
  40272. frontClothed: {
  40273. height: math.unit(8, "feet"),
  40274. weight: math.unit(553, "lb"),
  40275. name: "Front (Clothed)",
  40276. image: {
  40277. source: "./media/characters/tawendeh/front-clothed.svg",
  40278. extra: 2365/2268,
  40279. bottom: 83/2448
  40280. }
  40281. },
  40282. back: {
  40283. height: math.unit(8, "feet"),
  40284. weight: math.unit(553, "lb"),
  40285. name: "Back",
  40286. image: {
  40287. source: "./media/characters/tawendeh/back.svg",
  40288. extra: 2397/2294,
  40289. bottom: 42/2439
  40290. }
  40291. },
  40292. },
  40293. [
  40294. {
  40295. name: "Mortal Interaction",
  40296. height: math.unit(8, "feet"),
  40297. default: true
  40298. },
  40299. {
  40300. name: "Giant",
  40301. height: math.unit(80, "feet")
  40302. },
  40303. {
  40304. name: "Macro",
  40305. height: math.unit(800, "feet")
  40306. },
  40307. {
  40308. name: "Megamacro",
  40309. height: math.unit(8000, "feet")
  40310. },
  40311. {
  40312. name: "City-Crushing",
  40313. height: math.unit(24000, "feet")
  40314. },
  40315. {
  40316. name: "Mountain-Mashing",
  40317. height: math.unit(80000, "feet")
  40318. },
  40319. {
  40320. name: "Nation Nemesis",
  40321. height: math.unit(8e6, "feet")
  40322. },
  40323. {
  40324. name: "Continent Cracker",
  40325. height: math.unit(24e6, "feet")
  40326. },
  40327. {
  40328. name: "Earth-Eclipsing",
  40329. height: math.unit(2.4e8, "feet")
  40330. },
  40331. {
  40332. name: "Gas Giant Gulper",
  40333. height: math.unit(2.4e9, "feet")
  40334. },
  40335. {
  40336. name: "Sol-Swallowing",
  40337. height: math.unit(8e10, "feet")
  40338. },
  40339. {
  40340. name: "Galaxy Gulper",
  40341. height: math.unit(8, "galaxies")
  40342. },
  40343. {
  40344. name: "Cosmos Churner",
  40345. height: math.unit(8, "universes")
  40346. },
  40347. {
  40348. name: "Omnipotent Otter",
  40349. height: math.unit(80, "universes")
  40350. },
  40351. ]
  40352. ))
  40353. characterMakers.push(() => makeCharacter(
  40354. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40355. {
  40356. front: {
  40357. height: math.unit(2.6, "meters"),
  40358. weight: math.unit(900, "kg"),
  40359. name: "Front",
  40360. image: {
  40361. source: "./media/characters/neesha/front.svg",
  40362. extra: 1803/1653,
  40363. bottom: 128/1931
  40364. }
  40365. },
  40366. },
  40367. [
  40368. {
  40369. name: "Normal",
  40370. height: math.unit(2.6, "meters"),
  40371. default: true
  40372. },
  40373. {
  40374. name: "Macro",
  40375. height: math.unit(50, "meters")
  40376. },
  40377. ]
  40378. ))
  40379. characterMakers.push(() => makeCharacter(
  40380. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40381. {
  40382. front: {
  40383. height: math.unit(5, "feet"),
  40384. weight: math.unit(185, "lb"),
  40385. name: "Front",
  40386. image: {
  40387. source: "./media/characters/kyera/front.svg",
  40388. extra: 1875/1790,
  40389. bottom: 96/1971
  40390. }
  40391. },
  40392. },
  40393. [
  40394. {
  40395. name: "Normal",
  40396. height: math.unit(5, "feet"),
  40397. default: true
  40398. },
  40399. ]
  40400. ))
  40401. characterMakers.push(() => makeCharacter(
  40402. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40403. {
  40404. front: {
  40405. height: math.unit(7 + 6/12, "feet"),
  40406. weight: math.unit(540, "lb"),
  40407. name: "Front",
  40408. image: {
  40409. source: "./media/characters/yuko/front.svg",
  40410. extra: 1282/1222,
  40411. bottom: 101/1383
  40412. }
  40413. },
  40414. frontClothed: {
  40415. height: math.unit(7 + 6/12, "feet"),
  40416. weight: math.unit(540, "lb"),
  40417. name: "Front (Clothed)",
  40418. image: {
  40419. source: "./media/characters/yuko/front-clothed.svg",
  40420. extra: 1282/1222,
  40421. bottom: 101/1383
  40422. }
  40423. },
  40424. },
  40425. [
  40426. {
  40427. name: "Normal",
  40428. height: math.unit(7 + 6/12, "feet"),
  40429. default: true
  40430. },
  40431. {
  40432. name: "Macro",
  40433. height: math.unit(26 + 9/12, "feet")
  40434. },
  40435. {
  40436. name: "Megamacro",
  40437. height: math.unit(300, "feet")
  40438. },
  40439. {
  40440. name: "Gigamacro",
  40441. height: math.unit(5000, "feet")
  40442. },
  40443. {
  40444. name: "Planetary",
  40445. height: math.unit(10000, "miles")
  40446. },
  40447. ]
  40448. ))
  40449. characterMakers.push(() => makeCharacter(
  40450. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40451. {
  40452. front: {
  40453. height: math.unit(8 + 2/12, "feet"),
  40454. weight: math.unit(600, "lb"),
  40455. name: "Front",
  40456. image: {
  40457. source: "./media/characters/deam-nitrel/front.svg",
  40458. extra: 1308/1234,
  40459. bottom: 125/1433
  40460. }
  40461. },
  40462. },
  40463. [
  40464. {
  40465. name: "Normal",
  40466. height: math.unit(8 + 2/12, "feet"),
  40467. default: true
  40468. },
  40469. ]
  40470. ))
  40471. characterMakers.push(() => makeCharacter(
  40472. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40473. {
  40474. front: {
  40475. height: math.unit(6.1, "feet"),
  40476. weight: math.unit(180, "lb"),
  40477. name: "Front",
  40478. image: {
  40479. source: "./media/characters/skyress/front.svg",
  40480. extra: 1045/915,
  40481. bottom: 28/1073
  40482. }
  40483. },
  40484. maw: {
  40485. height: math.unit(1, "feet"),
  40486. name: "Maw",
  40487. image: {
  40488. source: "./media/characters/skyress/maw.svg"
  40489. }
  40490. },
  40491. },
  40492. [
  40493. {
  40494. name: "Normal",
  40495. height: math.unit(6.1, "feet"),
  40496. default: true
  40497. },
  40498. {
  40499. name: "Macro",
  40500. height: math.unit(200, "feet")
  40501. },
  40502. ]
  40503. ))
  40504. characterMakers.push(() => makeCharacter(
  40505. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40506. {
  40507. front: {
  40508. height: math.unit(4 + 2/12, "feet"),
  40509. weight: math.unit(40, "kg"),
  40510. name: "Front",
  40511. image: {
  40512. source: "./media/characters/amethyst-jones/front.svg",
  40513. extra: 1220/1150,
  40514. bottom: 101/1321
  40515. }
  40516. },
  40517. },
  40518. [
  40519. {
  40520. name: "Normal",
  40521. height: math.unit(4 + 2/12, "feet"),
  40522. default: true
  40523. },
  40524. ]
  40525. ))
  40526. characterMakers.push(() => makeCharacter(
  40527. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40528. {
  40529. front: {
  40530. height: math.unit(1.7, "m"),
  40531. weight: math.unit(135, "lb"),
  40532. name: "Front",
  40533. image: {
  40534. source: "./media/characters/jade/front.svg",
  40535. extra: 1818/1767,
  40536. bottom: 32/1850
  40537. }
  40538. },
  40539. back: {
  40540. height: math.unit(1.7, "m"),
  40541. weight: math.unit(135, "lb"),
  40542. name: "Back",
  40543. image: {
  40544. source: "./media/characters/jade/back.svg",
  40545. extra: 1869/1809,
  40546. bottom: 35/1904
  40547. }
  40548. },
  40549. hand: {
  40550. height: math.unit(0.24, "m"),
  40551. name: "Hand",
  40552. image: {
  40553. source: "./media/characters/jade/hand.svg"
  40554. }
  40555. },
  40556. foot: {
  40557. height: math.unit(0.263, "m"),
  40558. name: "Foot",
  40559. image: {
  40560. source: "./media/characters/jade/foot.svg"
  40561. }
  40562. },
  40563. dick: {
  40564. height: math.unit(0.47, "m"),
  40565. name: "Dick",
  40566. image: {
  40567. source: "./media/characters/jade/dick.svg"
  40568. }
  40569. },
  40570. },
  40571. [
  40572. {
  40573. name: "Micro",
  40574. height: math.unit(22, "cm")
  40575. },
  40576. {
  40577. name: "Normal",
  40578. height: math.unit(1.7, "m"),
  40579. default: true
  40580. },
  40581. {
  40582. name: "Macro",
  40583. height: math.unit(152, "m")
  40584. },
  40585. ]
  40586. ))
  40587. characterMakers.push(() => makeCharacter(
  40588. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40589. {
  40590. front: {
  40591. height: math.unit(100, "miles"),
  40592. weight: math.unit(20000, "tons"),
  40593. name: "Front",
  40594. image: {
  40595. source: "./media/characters/cookie/front.svg",
  40596. extra: 1125/1070,
  40597. bottom: 30/1155
  40598. }
  40599. },
  40600. },
  40601. [
  40602. {
  40603. name: "Big",
  40604. height: math.unit(50, "feet")
  40605. },
  40606. {
  40607. name: "Macro",
  40608. height: math.unit(100, "miles"),
  40609. default: true
  40610. },
  40611. {
  40612. name: "Megamacro",
  40613. height: math.unit(90000, "miles")
  40614. },
  40615. ]
  40616. ))
  40617. characterMakers.push(() => makeCharacter(
  40618. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40619. {
  40620. front: {
  40621. height: math.unit(6, "feet"),
  40622. weight: math.unit(145, "lb"),
  40623. name: "Front",
  40624. image: {
  40625. source: "./media/characters/farzian/front.svg",
  40626. extra: 1902/1693,
  40627. bottom: 108/2010
  40628. }
  40629. },
  40630. },
  40631. [
  40632. {
  40633. name: "Macro",
  40634. height: math.unit(500, "feet"),
  40635. default: true
  40636. },
  40637. ]
  40638. ))
  40639. characterMakers.push(() => makeCharacter(
  40640. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40641. {
  40642. front: {
  40643. height: math.unit(3 + 6/12, "feet"),
  40644. weight: math.unit(50, "lb"),
  40645. name: "Front",
  40646. image: {
  40647. source: "./media/characters/kimberly-tilson/front.svg",
  40648. extra: 1400/1322,
  40649. bottom: 36/1436
  40650. }
  40651. },
  40652. back: {
  40653. height: math.unit(3 + 6/12, "feet"),
  40654. weight: math.unit(50, "lb"),
  40655. name: "Back",
  40656. image: {
  40657. source: "./media/characters/kimberly-tilson/back.svg",
  40658. extra: 1370/1307,
  40659. bottom: 20/1390
  40660. }
  40661. },
  40662. },
  40663. [
  40664. {
  40665. name: "Normal",
  40666. height: math.unit(3 + 6/12, "feet"),
  40667. default: true
  40668. },
  40669. ]
  40670. ))
  40671. characterMakers.push(() => makeCharacter(
  40672. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40673. {
  40674. front: {
  40675. height: math.unit(1148, "feet"),
  40676. weight: math.unit(34057, "lb"),
  40677. name: "Front",
  40678. image: {
  40679. source: "./media/characters/harthos/front.svg",
  40680. extra: 1391/1339,
  40681. bottom: 13/1404
  40682. }
  40683. },
  40684. },
  40685. [
  40686. {
  40687. name: "Macro",
  40688. height: math.unit(1148, "feet"),
  40689. default: true
  40690. },
  40691. ]
  40692. ))
  40693. characterMakers.push(() => makeCharacter(
  40694. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40695. {
  40696. front: {
  40697. height: math.unit(15, "feet"),
  40698. name: "Front",
  40699. image: {
  40700. source: "./media/characters/hypatia/front.svg",
  40701. extra: 1653/1591,
  40702. bottom: 79/1732
  40703. }
  40704. },
  40705. },
  40706. [
  40707. {
  40708. name: "Normal",
  40709. height: math.unit(15, "feet")
  40710. },
  40711. {
  40712. name: "Small",
  40713. height: math.unit(300, "feet")
  40714. },
  40715. {
  40716. name: "Macro",
  40717. height: math.unit(2500, "feet"),
  40718. default: true
  40719. },
  40720. {
  40721. name: "Mega Macro",
  40722. height: math.unit(1500, "miles")
  40723. },
  40724. {
  40725. name: "Giga Macro",
  40726. height: math.unit(1.5e6, "miles")
  40727. },
  40728. ]
  40729. ))
  40730. characterMakers.push(() => makeCharacter(
  40731. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40732. {
  40733. front: {
  40734. height: math.unit(6, "feet"),
  40735. weight: math.unit(200, "lb"),
  40736. name: "Front",
  40737. image: {
  40738. source: "./media/characters/wulver/front.svg",
  40739. extra: 1724/1632,
  40740. bottom: 130/1854
  40741. }
  40742. },
  40743. frontNsfw: {
  40744. height: math.unit(6, "feet"),
  40745. weight: math.unit(200, "lb"),
  40746. name: "Front (NSFW)",
  40747. image: {
  40748. source: "./media/characters/wulver/front-nsfw.svg",
  40749. extra: 1724/1632,
  40750. bottom: 130/1854
  40751. }
  40752. },
  40753. },
  40754. [
  40755. {
  40756. name: "Human-Sized",
  40757. height: math.unit(6, "feet")
  40758. },
  40759. {
  40760. name: "Normal",
  40761. height: math.unit(4, "meters"),
  40762. default: true
  40763. },
  40764. {
  40765. name: "Large",
  40766. height: math.unit(6, "m")
  40767. },
  40768. ]
  40769. ))
  40770. characterMakers.push(() => makeCharacter(
  40771. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40772. {
  40773. front: {
  40774. height: math.unit(7, "feet"),
  40775. name: "Front",
  40776. image: {
  40777. source: "./media/characters/maru/front.svg",
  40778. extra: 1595/1570,
  40779. bottom: 0/1595
  40780. }
  40781. },
  40782. },
  40783. [
  40784. {
  40785. name: "Normal",
  40786. height: math.unit(7, "feet"),
  40787. default: true
  40788. },
  40789. {
  40790. name: "Macro",
  40791. height: math.unit(700, "feet")
  40792. },
  40793. {
  40794. name: "Mega Macro",
  40795. height: math.unit(25, "miles")
  40796. },
  40797. ]
  40798. ))
  40799. characterMakers.push(() => makeCharacter(
  40800. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40801. {
  40802. front: {
  40803. height: math.unit(6, "feet"),
  40804. weight: math.unit(170, "lb"),
  40805. name: "Front",
  40806. image: {
  40807. source: "./media/characters/xenon/front.svg",
  40808. extra: 1376/1305,
  40809. bottom: 56/1432
  40810. }
  40811. },
  40812. back: {
  40813. height: math.unit(6, "feet"),
  40814. weight: math.unit(170, "lb"),
  40815. name: "Back",
  40816. image: {
  40817. source: "./media/characters/xenon/back.svg",
  40818. extra: 1328/1259,
  40819. bottom: 95/1423
  40820. }
  40821. },
  40822. maw: {
  40823. height: math.unit(0.52, "feet"),
  40824. name: "Maw",
  40825. image: {
  40826. source: "./media/characters/xenon/maw.svg"
  40827. }
  40828. },
  40829. hand: {
  40830. height: math.unit(0.82, "feet"),
  40831. name: "Hand",
  40832. image: {
  40833. source: "./media/characters/xenon/hand.svg"
  40834. }
  40835. },
  40836. foot: {
  40837. height: math.unit(1.13, "feet"),
  40838. name: "Foot",
  40839. image: {
  40840. source: "./media/characters/xenon/foot.svg"
  40841. }
  40842. },
  40843. },
  40844. [
  40845. {
  40846. name: "Micro",
  40847. height: math.unit(0.8, "inches")
  40848. },
  40849. {
  40850. name: "Normal",
  40851. height: math.unit(6, "feet")
  40852. },
  40853. {
  40854. name: "Macro",
  40855. height: math.unit(50, "feet"),
  40856. default: true
  40857. },
  40858. {
  40859. name: "Macro+",
  40860. height: math.unit(250, "feet")
  40861. },
  40862. {
  40863. name: "Megamacro",
  40864. height: math.unit(1500, "feet")
  40865. },
  40866. ]
  40867. ))
  40868. characterMakers.push(() => makeCharacter(
  40869. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40870. {
  40871. front: {
  40872. height: math.unit(7 + 5/12, "feet"),
  40873. name: "Front",
  40874. image: {
  40875. source: "./media/characters/zane/front.svg",
  40876. extra: 1260/1203,
  40877. bottom: 94/1354
  40878. }
  40879. },
  40880. back: {
  40881. height: math.unit(5.05, "feet"),
  40882. name: "Back",
  40883. image: {
  40884. source: "./media/characters/zane/back.svg",
  40885. extra: 893/829,
  40886. bottom: 30/923
  40887. }
  40888. },
  40889. werewolf: {
  40890. height: math.unit(11, "feet"),
  40891. name: "Werewolf",
  40892. image: {
  40893. source: "./media/characters/zane/werewolf.svg",
  40894. extra: 1383/1323,
  40895. bottom: 89/1472
  40896. }
  40897. },
  40898. foot: {
  40899. height: math.unit(1.46, "feet"),
  40900. name: "Foot",
  40901. image: {
  40902. source: "./media/characters/zane/foot.svg"
  40903. }
  40904. },
  40905. footFront: {
  40906. height: math.unit(0.784, "feet"),
  40907. name: "Foot (Front)",
  40908. image: {
  40909. source: "./media/characters/zane/foot-front.svg"
  40910. }
  40911. },
  40912. dick: {
  40913. height: math.unit(1.95, "feet"),
  40914. name: "Dick",
  40915. image: {
  40916. source: "./media/characters/zane/dick.svg"
  40917. }
  40918. },
  40919. dickWerewolf: {
  40920. height: math.unit(3.77, "feet"),
  40921. name: "Dick (Werewolf)",
  40922. image: {
  40923. source: "./media/characters/zane/dick.svg"
  40924. }
  40925. },
  40926. },
  40927. [
  40928. {
  40929. name: "Normal",
  40930. height: math.unit(7 + 5/12, "feet"),
  40931. default: true
  40932. },
  40933. ]
  40934. ))
  40935. characterMakers.push(() => makeCharacter(
  40936. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40937. {
  40938. front: {
  40939. height: math.unit(6 + 2/12, "feet"),
  40940. weight: math.unit(284, "lb"),
  40941. name: "Front",
  40942. image: {
  40943. source: "./media/characters/benni-desparque/front.svg",
  40944. extra: 1353/1126,
  40945. bottom: 69/1422
  40946. }
  40947. },
  40948. },
  40949. [
  40950. {
  40951. name: "Civilian",
  40952. height: math.unit(6 + 2/12, "feet")
  40953. },
  40954. {
  40955. name: "Normal",
  40956. height: math.unit(98, "feet"),
  40957. default: true
  40958. },
  40959. {
  40960. name: "Kaiju Fighter",
  40961. height: math.unit(268, "feet")
  40962. },
  40963. ]
  40964. ))
  40965. characterMakers.push(() => makeCharacter(
  40966. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40967. {
  40968. front: {
  40969. height: math.unit(5, "feet"),
  40970. weight: math.unit(105, "lb"),
  40971. name: "Front",
  40972. image: {
  40973. source: "./media/characters/maxine/front.svg",
  40974. extra: 1386/1250,
  40975. bottom: 71/1457
  40976. }
  40977. },
  40978. },
  40979. [
  40980. {
  40981. name: "Normal",
  40982. height: math.unit(5, "feet"),
  40983. default: true
  40984. },
  40985. ]
  40986. ))
  40987. characterMakers.push(() => makeCharacter(
  40988. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40989. {
  40990. front: {
  40991. height: math.unit(11 + 7/12, "feet"),
  40992. weight: math.unit(9576, "lb"),
  40993. name: "Front",
  40994. image: {
  40995. source: "./media/characters/scaly/front.svg",
  40996. extra: 888/867,
  40997. bottom: 36/924
  40998. }
  40999. },
  41000. },
  41001. [
  41002. {
  41003. name: "Normal",
  41004. height: math.unit(11 + 7/12, "feet"),
  41005. default: true
  41006. },
  41007. ]
  41008. ))
  41009. characterMakers.push(() => makeCharacter(
  41010. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41011. {
  41012. front: {
  41013. height: math.unit(6 + 3/12, "feet"),
  41014. name: "Front",
  41015. image: {
  41016. source: "./media/characters/saelria/front.svg",
  41017. extra: 1243/1138,
  41018. bottom: 46/1289
  41019. }
  41020. },
  41021. },
  41022. [
  41023. {
  41024. name: "Micro",
  41025. height: math.unit(6, "inches"),
  41026. },
  41027. {
  41028. name: "Normal",
  41029. height: math.unit(6 + 3/12, "feet"),
  41030. default: true
  41031. },
  41032. {
  41033. name: "Macro",
  41034. height: math.unit(25, "feet")
  41035. },
  41036. ]
  41037. ))
  41038. characterMakers.push(() => makeCharacter(
  41039. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41040. {
  41041. front: {
  41042. height: math.unit(80, "meters"),
  41043. weight: math.unit(7000, "tonnes"),
  41044. name: "Front",
  41045. image: {
  41046. source: "./media/characters/tef/front.svg",
  41047. extra: 2036/1991,
  41048. bottom: 54/2090
  41049. }
  41050. },
  41051. back: {
  41052. height: math.unit(80, "meters"),
  41053. weight: math.unit(7000, "tonnes"),
  41054. name: "Back",
  41055. image: {
  41056. source: "./media/characters/tef/back.svg",
  41057. extra: 2036/1991,
  41058. bottom: 54/2090
  41059. }
  41060. },
  41061. },
  41062. [
  41063. {
  41064. name: "Macro",
  41065. height: math.unit(80, "meters"),
  41066. default: true
  41067. },
  41068. ]
  41069. ))
  41070. characterMakers.push(() => makeCharacter(
  41071. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41072. {
  41073. front: {
  41074. height: math.unit(13, "feet"),
  41075. weight: math.unit(6, "tons"),
  41076. name: "Front",
  41077. image: {
  41078. source: "./media/characters/rover/front.svg",
  41079. extra: 1233/1156,
  41080. bottom: 50/1283
  41081. }
  41082. },
  41083. back: {
  41084. height: math.unit(13, "feet"),
  41085. weight: math.unit(6, "tons"),
  41086. name: "Back",
  41087. image: {
  41088. source: "./media/characters/rover/back.svg",
  41089. extra: 1327/1258,
  41090. bottom: 39/1366
  41091. }
  41092. },
  41093. },
  41094. [
  41095. {
  41096. name: "Normal",
  41097. height: math.unit(13, "feet"),
  41098. default: true
  41099. },
  41100. {
  41101. name: "Macro",
  41102. height: math.unit(1300, "feet")
  41103. },
  41104. {
  41105. name: "Megamacro",
  41106. height: math.unit(1300, "miles")
  41107. },
  41108. {
  41109. name: "Gigamacro",
  41110. height: math.unit(1300000, "miles")
  41111. },
  41112. ]
  41113. ))
  41114. characterMakers.push(() => makeCharacter(
  41115. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41116. {
  41117. front: {
  41118. height: math.unit(6, "feet"),
  41119. weight: math.unit(150, "lb"),
  41120. name: "Front",
  41121. image: {
  41122. source: "./media/characters/ariz/front.svg",
  41123. extra: 1401/1346,
  41124. bottom: 5/1406
  41125. }
  41126. },
  41127. },
  41128. [
  41129. {
  41130. name: "Normal",
  41131. height: math.unit(10, "feet"),
  41132. default: true
  41133. },
  41134. ]
  41135. ))
  41136. characterMakers.push(() => makeCharacter(
  41137. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41138. {
  41139. front: {
  41140. height: math.unit(6, "feet"),
  41141. weight: math.unit(140, "lb"),
  41142. name: "Front",
  41143. image: {
  41144. source: "./media/characters/sigrun/front.svg",
  41145. extra: 1418/1359,
  41146. bottom: 27/1445
  41147. }
  41148. },
  41149. },
  41150. [
  41151. {
  41152. name: "Macro",
  41153. height: math.unit(35, "feet"),
  41154. default: true
  41155. },
  41156. ]
  41157. ))
  41158. characterMakers.push(() => makeCharacter(
  41159. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41160. {
  41161. front: {
  41162. height: math.unit(6, "feet"),
  41163. weight: math.unit(150, "lb"),
  41164. name: "Front",
  41165. image: {
  41166. source: "./media/characters/numin/front.svg",
  41167. extra: 1433/1388,
  41168. bottom: 12/1445
  41169. }
  41170. },
  41171. },
  41172. [
  41173. {
  41174. name: "Macro",
  41175. height: math.unit(21.5, "km"),
  41176. default: true
  41177. },
  41178. ]
  41179. ))
  41180. characterMakers.push(() => makeCharacter(
  41181. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41182. {
  41183. front: {
  41184. height: math.unit(6, "feet"),
  41185. weight: math.unit(463, "lb"),
  41186. name: "Front",
  41187. image: {
  41188. source: "./media/characters/melwa/front.svg",
  41189. extra: 1307/1248,
  41190. bottom: 93/1400
  41191. }
  41192. },
  41193. },
  41194. [
  41195. {
  41196. name: "Macro",
  41197. height: math.unit(50, "meters"),
  41198. default: true
  41199. },
  41200. ]
  41201. ))
  41202. characterMakers.push(() => makeCharacter(
  41203. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41204. {
  41205. front: {
  41206. height: math.unit(325, "feet"),
  41207. name: "Front",
  41208. image: {
  41209. source: "./media/characters/zorkaiju/front.svg",
  41210. extra: 1955/1814,
  41211. bottom: 40/1995
  41212. }
  41213. },
  41214. frontExtended: {
  41215. height: math.unit(325, "feet"),
  41216. name: "Front (Extended)",
  41217. image: {
  41218. source: "./media/characters/zorkaiju/front-extended.svg",
  41219. extra: 1955/1814,
  41220. bottom: 40/1995
  41221. }
  41222. },
  41223. side: {
  41224. height: math.unit(325, "feet"),
  41225. name: "Side",
  41226. image: {
  41227. source: "./media/characters/zorkaiju/side.svg",
  41228. extra: 1495/1396,
  41229. bottom: 17/1512
  41230. }
  41231. },
  41232. sideExtended: {
  41233. height: math.unit(325, "feet"),
  41234. name: "Side (Extended)",
  41235. image: {
  41236. source: "./media/characters/zorkaiju/side-extended.svg",
  41237. extra: 1495/1396,
  41238. bottom: 17/1512
  41239. }
  41240. },
  41241. back: {
  41242. height: math.unit(325, "feet"),
  41243. name: "Back",
  41244. image: {
  41245. source: "./media/characters/zorkaiju/back.svg",
  41246. extra: 1959/1821,
  41247. bottom: 31/1990
  41248. }
  41249. },
  41250. backExtended: {
  41251. height: math.unit(325, "feet"),
  41252. name: "Back (Extended)",
  41253. image: {
  41254. source: "./media/characters/zorkaiju/back-extended.svg",
  41255. extra: 1959/1821,
  41256. bottom: 31/1990
  41257. }
  41258. },
  41259. hand: {
  41260. height: math.unit(58.4, "feet"),
  41261. name: "Hand",
  41262. image: {
  41263. source: "./media/characters/zorkaiju/hand.svg"
  41264. }
  41265. },
  41266. handExtended: {
  41267. height: math.unit(61.4, "feet"),
  41268. name: "Hand (Extended)",
  41269. image: {
  41270. source: "./media/characters/zorkaiju/hand-extended.svg"
  41271. }
  41272. },
  41273. foot: {
  41274. height: math.unit(95, "feet"),
  41275. name: "Foot",
  41276. image: {
  41277. source: "./media/characters/zorkaiju/foot.svg"
  41278. }
  41279. },
  41280. leftArm: {
  41281. height: math.unit(59, "feet"),
  41282. name: "Left Arm",
  41283. image: {
  41284. source: "./media/characters/zorkaiju/left-arm.svg"
  41285. }
  41286. },
  41287. rightArm: {
  41288. height: math.unit(59, "feet"),
  41289. name: "Right Arm",
  41290. image: {
  41291. source: "./media/characters/zorkaiju/right-arm.svg"
  41292. }
  41293. },
  41294. tail: {
  41295. height: math.unit(104, "feet"),
  41296. name: "Tail",
  41297. image: {
  41298. source: "./media/characters/zorkaiju/tail.svg"
  41299. }
  41300. },
  41301. tailExtended: {
  41302. height: math.unit(104, "feet"),
  41303. name: "Tail (Extended)",
  41304. image: {
  41305. source: "./media/characters/zorkaiju/tail-extended.svg"
  41306. }
  41307. },
  41308. tailBottom: {
  41309. height: math.unit(104, "feet"),
  41310. name: "Tail Bottom",
  41311. image: {
  41312. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41313. }
  41314. },
  41315. crystal: {
  41316. height: math.unit(27.54, "feet"),
  41317. name: "Crystal",
  41318. image: {
  41319. source: "./media/characters/zorkaiju/crystal.svg"
  41320. }
  41321. },
  41322. },
  41323. [
  41324. {
  41325. name: "Kaiju",
  41326. height: math.unit(325, "feet"),
  41327. default: true
  41328. },
  41329. ]
  41330. ))
  41331. characterMakers.push(() => makeCharacter(
  41332. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41333. {
  41334. front: {
  41335. height: math.unit(6 + 1/12, "feet"),
  41336. weight: math.unit(115, "lb"),
  41337. name: "Front",
  41338. image: {
  41339. source: "./media/characters/bailey-belfry/front.svg",
  41340. extra: 1240/1121,
  41341. bottom: 101/1341
  41342. }
  41343. },
  41344. },
  41345. [
  41346. {
  41347. name: "Normal",
  41348. height: math.unit(6 + 1/12, "feet"),
  41349. default: true
  41350. },
  41351. ]
  41352. ))
  41353. characterMakers.push(() => makeCharacter(
  41354. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41355. {
  41356. side: {
  41357. height: math.unit(4, "meters"),
  41358. weight: math.unit(250, "kg"),
  41359. name: "Side",
  41360. image: {
  41361. source: "./media/characters/blacky/side.svg",
  41362. extra: 1027/919,
  41363. bottom: 43/1070
  41364. }
  41365. },
  41366. maw: {
  41367. height: math.unit(1, "meters"),
  41368. name: "Maw",
  41369. image: {
  41370. source: "./media/characters/blacky/maw.svg"
  41371. }
  41372. },
  41373. paw: {
  41374. height: math.unit(1, "meters"),
  41375. name: "Paw",
  41376. image: {
  41377. source: "./media/characters/blacky/paw.svg"
  41378. }
  41379. },
  41380. },
  41381. [
  41382. {
  41383. name: "Normal",
  41384. height: math.unit(4, "meters"),
  41385. default: true
  41386. },
  41387. ]
  41388. ))
  41389. characterMakers.push(() => makeCharacter(
  41390. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41391. {
  41392. front: {
  41393. height: math.unit(170, "cm"),
  41394. weight: math.unit(66, "kg"),
  41395. name: "Front",
  41396. image: {
  41397. source: "./media/characters/thux-ei/front.svg",
  41398. extra: 1109/1011,
  41399. bottom: 8/1117
  41400. }
  41401. },
  41402. },
  41403. [
  41404. {
  41405. name: "Normal",
  41406. height: math.unit(170, "cm"),
  41407. default: true
  41408. },
  41409. ]
  41410. ))
  41411. characterMakers.push(() => makeCharacter(
  41412. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41413. {
  41414. front: {
  41415. height: math.unit(5, "feet"),
  41416. weight: math.unit(120, "lb"),
  41417. name: "Front",
  41418. image: {
  41419. source: "./media/characters/roxanne-voltaire/front.svg",
  41420. extra: 1901/1779,
  41421. bottom: 53/1954
  41422. }
  41423. },
  41424. },
  41425. [
  41426. {
  41427. name: "Normal",
  41428. height: math.unit(5, "feet"),
  41429. default: true
  41430. },
  41431. {
  41432. name: "Giant",
  41433. height: math.unit(50, "feet")
  41434. },
  41435. {
  41436. name: "Titan",
  41437. height: math.unit(500, "feet")
  41438. },
  41439. {
  41440. name: "Macro",
  41441. height: math.unit(5000, "feet")
  41442. },
  41443. {
  41444. name: "Megamacro",
  41445. height: math.unit(50000, "feet")
  41446. },
  41447. {
  41448. name: "Gigamacro",
  41449. height: math.unit(500000, "feet")
  41450. },
  41451. {
  41452. name: "Teramacro",
  41453. height: math.unit(5e6, "feet")
  41454. },
  41455. ]
  41456. ))
  41457. characterMakers.push(() => makeCharacter(
  41458. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41459. {
  41460. front: {
  41461. height: math.unit(6 + 2/12, "feet"),
  41462. name: "Front",
  41463. image: {
  41464. source: "./media/characters/squeaks/front.svg",
  41465. extra: 1823/1768,
  41466. bottom: 138/1961
  41467. }
  41468. },
  41469. },
  41470. [
  41471. {
  41472. name: "Micro",
  41473. height: math.unit(0.5, "inches")
  41474. },
  41475. {
  41476. name: "Normal",
  41477. height: math.unit(6 + 2/12, "feet"),
  41478. default: true
  41479. },
  41480. {
  41481. name: "Macro",
  41482. height: math.unit(600, "feet")
  41483. },
  41484. ]
  41485. ))
  41486. characterMakers.push(() => makeCharacter(
  41487. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41488. {
  41489. front: {
  41490. height: math.unit(1.72, "meters"),
  41491. name: "Front",
  41492. image: {
  41493. source: "./media/characters/archinger/front.svg",
  41494. extra: 1861/1675,
  41495. bottom: 125/1986
  41496. }
  41497. },
  41498. back: {
  41499. height: math.unit(1.72, "meters"),
  41500. name: "Back",
  41501. image: {
  41502. source: "./media/characters/archinger/back.svg",
  41503. extra: 1844/1701,
  41504. bottom: 104/1948
  41505. }
  41506. },
  41507. cock: {
  41508. height: math.unit(0.59, "feet"),
  41509. name: "Cock",
  41510. image: {
  41511. source: "./media/characters/archinger/cock.svg"
  41512. }
  41513. },
  41514. },
  41515. [
  41516. {
  41517. name: "Normal",
  41518. height: math.unit(1.72, "meters"),
  41519. default: true
  41520. },
  41521. {
  41522. name: "Macro",
  41523. height: math.unit(84, "meters")
  41524. },
  41525. {
  41526. name: "Macro+",
  41527. height: math.unit(112, "meters")
  41528. },
  41529. {
  41530. name: "Macro++",
  41531. height: math.unit(960, "meters")
  41532. },
  41533. {
  41534. name: "Macro+++",
  41535. height: math.unit(4, "km")
  41536. },
  41537. {
  41538. name: "Macro++++",
  41539. height: math.unit(48, "km")
  41540. },
  41541. {
  41542. name: "Macro+++++",
  41543. height: math.unit(4500, "km")
  41544. },
  41545. ]
  41546. ))
  41547. characterMakers.push(() => makeCharacter(
  41548. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41549. {
  41550. front: {
  41551. height: math.unit(5 + 5/12, "feet"),
  41552. name: "Front",
  41553. image: {
  41554. source: "./media/characters/alsnapz/front.svg",
  41555. extra: 1157/1065,
  41556. bottom: 42/1199
  41557. }
  41558. },
  41559. },
  41560. [
  41561. {
  41562. name: "Normal",
  41563. height: math.unit(5 + 5/12, "feet"),
  41564. default: true
  41565. },
  41566. ]
  41567. ))
  41568. characterMakers.push(() => makeCharacter(
  41569. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41570. {
  41571. side: {
  41572. height: math.unit(3.2, "earths"),
  41573. name: "Side",
  41574. image: {
  41575. source: "./media/characters/mag/side.svg",
  41576. extra: 1331/1008,
  41577. bottom: 52/1383
  41578. }
  41579. },
  41580. wing: {
  41581. height: math.unit(1.94, "earths"),
  41582. name: "Wing",
  41583. image: {
  41584. source: "./media/characters/mag/wing.svg"
  41585. }
  41586. },
  41587. dick: {
  41588. height: math.unit(1.8, "earths"),
  41589. name: "Dick",
  41590. image: {
  41591. source: "./media/characters/mag/dick.svg"
  41592. }
  41593. },
  41594. ass: {
  41595. height: math.unit(1.33, "earths"),
  41596. name: "Ass",
  41597. image: {
  41598. source: "./media/characters/mag/ass.svg"
  41599. }
  41600. },
  41601. head: {
  41602. height: math.unit(1.1, "earths"),
  41603. name: "Head",
  41604. image: {
  41605. source: "./media/characters/mag/head.svg"
  41606. }
  41607. },
  41608. maw: {
  41609. height: math.unit(1.62, "earths"),
  41610. name: "Maw",
  41611. image: {
  41612. source: "./media/characters/mag/maw.svg"
  41613. }
  41614. },
  41615. },
  41616. [
  41617. {
  41618. name: "Small",
  41619. height: math.unit(162, "feet")
  41620. },
  41621. {
  41622. name: "Normal",
  41623. height: math.unit(3.2, "earths"),
  41624. default: true
  41625. },
  41626. ]
  41627. ))
  41628. characterMakers.push(() => makeCharacter(
  41629. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41630. {
  41631. front: {
  41632. height: math.unit(512, "feet"),
  41633. weight: math.unit(63509, "tonnes"),
  41634. name: "Front",
  41635. image: {
  41636. source: "./media/characters/vorrel-harroc/front.svg",
  41637. extra: 1075/1063,
  41638. bottom: 62/1137
  41639. }
  41640. },
  41641. },
  41642. [
  41643. {
  41644. name: "Normal",
  41645. height: math.unit(10, "feet")
  41646. },
  41647. {
  41648. name: "Macro",
  41649. height: math.unit(512, "feet"),
  41650. default: true
  41651. },
  41652. {
  41653. name: "Megamacro",
  41654. height: math.unit(256, "miles")
  41655. },
  41656. {
  41657. name: "Gigamacro",
  41658. height: math.unit(4096, "miles")
  41659. },
  41660. ]
  41661. ))
  41662. characterMakers.push(() => makeCharacter(
  41663. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41664. {
  41665. side: {
  41666. height: math.unit(50, "feet"),
  41667. name: "Side",
  41668. image: {
  41669. source: "./media/characters/froimar/side.svg",
  41670. extra: 855/638,
  41671. bottom: 99/954
  41672. }
  41673. },
  41674. },
  41675. [
  41676. {
  41677. name: "Macro",
  41678. height: math.unit(50, "feet"),
  41679. default: true
  41680. },
  41681. ]
  41682. ))
  41683. characterMakers.push(() => makeCharacter(
  41684. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41685. {
  41686. front: {
  41687. height: math.unit(210, "miles"),
  41688. name: "Front",
  41689. image: {
  41690. source: "./media/characters/timothy/front.svg",
  41691. extra: 1007/943,
  41692. bottom: 62/1069
  41693. }
  41694. },
  41695. frontSkirt: {
  41696. height: math.unit(210, "miles"),
  41697. name: "Front (Skirt)",
  41698. image: {
  41699. source: "./media/characters/timothy/front-skirt.svg",
  41700. extra: 1007/943,
  41701. bottom: 62/1069
  41702. }
  41703. },
  41704. frontCoat: {
  41705. height: math.unit(210, "miles"),
  41706. name: "Front (Coat)",
  41707. image: {
  41708. source: "./media/characters/timothy/front-coat.svg",
  41709. extra: 1007/943,
  41710. bottom: 62/1069
  41711. }
  41712. },
  41713. },
  41714. [
  41715. {
  41716. name: "Macro",
  41717. height: math.unit(210, "miles"),
  41718. default: true
  41719. },
  41720. {
  41721. name: "Megamacro",
  41722. height: math.unit(210000, "miles")
  41723. },
  41724. ]
  41725. ))
  41726. characterMakers.push(() => makeCharacter(
  41727. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41728. {
  41729. front: {
  41730. height: math.unit(188, "feet"),
  41731. name: "Front",
  41732. image: {
  41733. source: "./media/characters/pyotr/front.svg",
  41734. extra: 1912/1826,
  41735. bottom: 18/1930
  41736. }
  41737. },
  41738. },
  41739. [
  41740. {
  41741. name: "Macro",
  41742. height: math.unit(188, "feet"),
  41743. default: true
  41744. },
  41745. {
  41746. name: "Megamacro",
  41747. height: math.unit(8, "miles")
  41748. },
  41749. ]
  41750. ))
  41751. characterMakers.push(() => makeCharacter(
  41752. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41753. {
  41754. side: {
  41755. height: math.unit(10, "feet"),
  41756. weight: math.unit(4500, "lb"),
  41757. name: "Side",
  41758. image: {
  41759. source: "./media/characters/ackart/side.svg",
  41760. extra: 1776/1668,
  41761. bottom: 116/1892
  41762. }
  41763. },
  41764. },
  41765. [
  41766. {
  41767. name: "Normal",
  41768. height: math.unit(10, "feet"),
  41769. default: true
  41770. },
  41771. ]
  41772. ))
  41773. characterMakers.push(() => makeCharacter(
  41774. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41775. {
  41776. side: {
  41777. height: math.unit(21, "feet"),
  41778. name: "Side",
  41779. image: {
  41780. source: "./media/characters/nolow/side.svg",
  41781. extra: 1484/1434,
  41782. bottom: 85/1569
  41783. }
  41784. },
  41785. sideErect: {
  41786. height: math.unit(21, "feet"),
  41787. name: "Side-erect",
  41788. image: {
  41789. source: "./media/characters/nolow/side-erect.svg",
  41790. extra: 1484/1434,
  41791. bottom: 85/1569
  41792. }
  41793. },
  41794. },
  41795. [
  41796. {
  41797. name: "Regular",
  41798. height: math.unit(12, "feet")
  41799. },
  41800. {
  41801. name: "Big Chee",
  41802. height: math.unit(21, "feet"),
  41803. default: true
  41804. },
  41805. ]
  41806. ))
  41807. characterMakers.push(() => makeCharacter(
  41808. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41809. {
  41810. front: {
  41811. height: math.unit(7, "feet"),
  41812. weight: math.unit(250, "lb"),
  41813. name: "Front",
  41814. image: {
  41815. source: "./media/characters/nines/front.svg",
  41816. extra: 1741/1607,
  41817. bottom: 41/1782
  41818. }
  41819. },
  41820. side: {
  41821. height: math.unit(7, "feet"),
  41822. weight: math.unit(250, "lb"),
  41823. name: "Side",
  41824. image: {
  41825. source: "./media/characters/nines/side.svg",
  41826. extra: 1854/1735,
  41827. bottom: 93/1947
  41828. }
  41829. },
  41830. back: {
  41831. height: math.unit(7, "feet"),
  41832. weight: math.unit(250, "lb"),
  41833. name: "Back",
  41834. image: {
  41835. source: "./media/characters/nines/back.svg",
  41836. extra: 1748/1615,
  41837. bottom: 20/1768
  41838. }
  41839. },
  41840. },
  41841. [
  41842. {
  41843. name: "Megamacro",
  41844. height: math.unit(99, "km"),
  41845. default: true
  41846. },
  41847. ]
  41848. ))
  41849. characterMakers.push(() => makeCharacter(
  41850. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41851. {
  41852. front: {
  41853. height: math.unit(5 + 10/12, "feet"),
  41854. weight: math.unit(210, "lb"),
  41855. name: "Front",
  41856. image: {
  41857. source: "./media/characters/zenith/front.svg",
  41858. extra: 1531/1452,
  41859. bottom: 198/1729
  41860. }
  41861. },
  41862. back: {
  41863. height: math.unit(5 + 10/12, "feet"),
  41864. weight: math.unit(210, "lb"),
  41865. name: "Back",
  41866. image: {
  41867. source: "./media/characters/zenith/back.svg",
  41868. extra: 1571/1487,
  41869. bottom: 75/1646
  41870. }
  41871. },
  41872. },
  41873. [
  41874. {
  41875. name: "Normal",
  41876. height: math.unit(5 + 10/12, "feet"),
  41877. default: true
  41878. }
  41879. ]
  41880. ))
  41881. characterMakers.push(() => makeCharacter(
  41882. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41883. {
  41884. front: {
  41885. height: math.unit(4, "feet"),
  41886. weight: math.unit(60, "lb"),
  41887. name: "Front",
  41888. image: {
  41889. source: "./media/characters/jasper/front.svg",
  41890. extra: 1450/1379,
  41891. bottom: 19/1469
  41892. }
  41893. },
  41894. },
  41895. [
  41896. {
  41897. name: "Normal",
  41898. height: math.unit(4, "feet"),
  41899. default: true
  41900. },
  41901. ]
  41902. ))
  41903. characterMakers.push(() => makeCharacter(
  41904. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41905. {
  41906. front: {
  41907. height: math.unit(6 + 5/12, "feet"),
  41908. weight: math.unit(290, "lb"),
  41909. name: "Front",
  41910. image: {
  41911. source: "./media/characters/tiberius-thyben/front.svg",
  41912. extra: 757/739,
  41913. bottom: 39/796
  41914. }
  41915. },
  41916. },
  41917. [
  41918. {
  41919. name: "Micro",
  41920. height: math.unit(1.5, "inches")
  41921. },
  41922. {
  41923. name: "Normal",
  41924. height: math.unit(6 + 5/12, "feet"),
  41925. default: true
  41926. },
  41927. {
  41928. name: "Macro",
  41929. height: math.unit(300, "feet")
  41930. },
  41931. ]
  41932. ))
  41933. characterMakers.push(() => makeCharacter(
  41934. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41935. {
  41936. front: {
  41937. height: math.unit(5 + 6/12, "feet"),
  41938. weight: math.unit(60, "kg"),
  41939. name: "Front",
  41940. image: {
  41941. source: "./media/characters/sabre/front.svg",
  41942. extra: 738/671,
  41943. bottom: 27/765
  41944. }
  41945. },
  41946. },
  41947. [
  41948. {
  41949. name: "Teeny",
  41950. height: math.unit(2, "inches")
  41951. },
  41952. {
  41953. name: "Smol",
  41954. height: math.unit(8, "inches")
  41955. },
  41956. {
  41957. name: "Normal",
  41958. height: math.unit(5 + 6/12, "feet"),
  41959. default: true
  41960. },
  41961. {
  41962. name: "Mini-Macro",
  41963. height: math.unit(15, "feet")
  41964. },
  41965. {
  41966. name: "Macro",
  41967. height: math.unit(50, "feet")
  41968. },
  41969. ]
  41970. ))
  41971. characterMakers.push(() => makeCharacter(
  41972. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41973. {
  41974. front: {
  41975. height: math.unit(6 + 4/12, "feet"),
  41976. weight: math.unit(170, "lb"),
  41977. name: "Front",
  41978. image: {
  41979. source: "./media/characters/charlie/front.svg",
  41980. extra: 1348/1228,
  41981. bottom: 15/1363
  41982. }
  41983. },
  41984. },
  41985. [
  41986. {
  41987. name: "Macro",
  41988. height: math.unit(1700, "meters"),
  41989. default: true
  41990. },
  41991. {
  41992. name: "MegaMacro",
  41993. height: math.unit(20400, "meters")
  41994. },
  41995. ]
  41996. ))
  41997. characterMakers.push(() => makeCharacter(
  41998. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41999. {
  42000. front: {
  42001. height: math.unit(6 + 3/12, "feet"),
  42002. weight: math.unit(185, "lb"),
  42003. name: "Front",
  42004. image: {
  42005. source: "./media/characters/susan-grant/front.svg",
  42006. extra: 1351/1327,
  42007. bottom: 26/1377
  42008. }
  42009. },
  42010. },
  42011. [
  42012. {
  42013. name: "Normal",
  42014. height: math.unit(6 + 3/12, "feet"),
  42015. default: true
  42016. },
  42017. {
  42018. name: "Macro",
  42019. height: math.unit(225, "feet")
  42020. },
  42021. {
  42022. name: "Macro+",
  42023. height: math.unit(900, "feet")
  42024. },
  42025. {
  42026. name: "MegaMacro",
  42027. height: math.unit(14400, "feet")
  42028. },
  42029. ]
  42030. ))
  42031. characterMakers.push(() => makeCharacter(
  42032. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42033. {
  42034. front: {
  42035. height: math.unit(5 + 4/12, "feet"),
  42036. weight: math.unit(110, "lb"),
  42037. name: "Front",
  42038. image: {
  42039. source: "./media/characters/axel-isanov/front.svg",
  42040. extra: 1096/1065,
  42041. bottom: 13/1109
  42042. }
  42043. },
  42044. },
  42045. [
  42046. {
  42047. name: "Normal",
  42048. height: math.unit(5 + 4/12, "feet"),
  42049. default: true
  42050. },
  42051. ]
  42052. ))
  42053. characterMakers.push(() => makeCharacter(
  42054. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42055. {
  42056. front: {
  42057. height: math.unit(9, "feet"),
  42058. weight: math.unit(467, "lb"),
  42059. name: "Front",
  42060. image: {
  42061. source: "./media/characters/necahual/front.svg",
  42062. extra: 920/873,
  42063. bottom: 26/946
  42064. }
  42065. },
  42066. back: {
  42067. height: math.unit(9, "feet"),
  42068. weight: math.unit(467, "lb"),
  42069. name: "Back",
  42070. image: {
  42071. source: "./media/characters/necahual/back.svg",
  42072. extra: 930/884,
  42073. bottom: 16/946
  42074. }
  42075. },
  42076. frontUnderwear: {
  42077. height: math.unit(9, "feet"),
  42078. weight: math.unit(467, "lb"),
  42079. name: "Front (Underwear)",
  42080. image: {
  42081. source: "./media/characters/necahual/front-underwear.svg",
  42082. extra: 920/873,
  42083. bottom: 26/946
  42084. }
  42085. },
  42086. frontDressed: {
  42087. height: math.unit(9, "feet"),
  42088. weight: math.unit(467, "lb"),
  42089. name: "Front (Dressed)",
  42090. image: {
  42091. source: "./media/characters/necahual/front-dressed.svg",
  42092. extra: 920/873,
  42093. bottom: 26/946
  42094. }
  42095. },
  42096. },
  42097. [
  42098. {
  42099. name: "Comprsesed",
  42100. height: math.unit(9, "feet")
  42101. },
  42102. {
  42103. name: "Natural",
  42104. height: math.unit(15, "feet"),
  42105. default: true
  42106. },
  42107. {
  42108. name: "Boosted",
  42109. height: math.unit(50, "feet")
  42110. },
  42111. {
  42112. name: "Boosted+",
  42113. height: math.unit(150, "feet")
  42114. },
  42115. {
  42116. name: "Max",
  42117. height: math.unit(500, "feet")
  42118. },
  42119. ]
  42120. ))
  42121. characterMakers.push(() => makeCharacter(
  42122. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42123. {
  42124. front: {
  42125. height: math.unit(22 + 1/12, "feet"),
  42126. weight: math.unit(3200, "lb"),
  42127. name: "Front",
  42128. image: {
  42129. source: "./media/characters/theo-acacia/front.svg",
  42130. extra: 1796/1741,
  42131. bottom: 83/1879
  42132. }
  42133. },
  42134. frontUnderwear: {
  42135. height: math.unit(22 + 1/12, "feet"),
  42136. weight: math.unit(3200, "lb"),
  42137. name: "Front (Underwear)",
  42138. image: {
  42139. source: "./media/characters/theo-acacia/front-underwear.svg",
  42140. extra: 1796/1741,
  42141. bottom: 83/1879
  42142. }
  42143. },
  42144. frontNude: {
  42145. height: math.unit(22 + 1/12, "feet"),
  42146. weight: math.unit(3200, "lb"),
  42147. name: "Front (Nude)",
  42148. image: {
  42149. source: "./media/characters/theo-acacia/front-nude.svg",
  42150. extra: 1796/1741,
  42151. bottom: 83/1879
  42152. }
  42153. },
  42154. },
  42155. [
  42156. {
  42157. name: "Normal",
  42158. height: math.unit(22 + 1/12, "feet"),
  42159. default: true
  42160. },
  42161. ]
  42162. ))
  42163. characterMakers.push(() => makeCharacter(
  42164. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42165. {
  42166. front: {
  42167. height: math.unit(20, "feet"),
  42168. name: "Front",
  42169. image: {
  42170. source: "./media/characters/astra/front.svg",
  42171. extra: 1850/1714,
  42172. bottom: 106/1956
  42173. }
  42174. },
  42175. frontUndressed: {
  42176. height: math.unit(20, "feet"),
  42177. name: "Front (Undressed)",
  42178. image: {
  42179. source: "./media/characters/astra/front-undressed.svg",
  42180. extra: 1926/1749,
  42181. bottom: 0/1926
  42182. }
  42183. },
  42184. hand: {
  42185. height: math.unit(1.53, "feet"),
  42186. name: "Hand",
  42187. image: {
  42188. source: "./media/characters/astra/hand.svg"
  42189. }
  42190. },
  42191. paw: {
  42192. height: math.unit(1.53, "feet"),
  42193. name: "Paw",
  42194. image: {
  42195. source: "./media/characters/astra/paw.svg"
  42196. }
  42197. },
  42198. },
  42199. [
  42200. {
  42201. name: "Smallest",
  42202. height: math.unit(20, "feet")
  42203. },
  42204. {
  42205. name: "Normal",
  42206. height: math.unit(1e9, "miles"),
  42207. default: true
  42208. },
  42209. {
  42210. name: "Larger",
  42211. height: math.unit(5, "multiverses")
  42212. },
  42213. {
  42214. name: "Largest",
  42215. height: math.unit(1e9, "multiverses")
  42216. },
  42217. ]
  42218. ))
  42219. characterMakers.push(() => makeCharacter(
  42220. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42221. {
  42222. front: {
  42223. height: math.unit(8, "feet"),
  42224. name: "Front",
  42225. image: {
  42226. source: "./media/characters/breanna/front.svg",
  42227. extra: 1912/1632,
  42228. bottom: 33/1945
  42229. }
  42230. },
  42231. },
  42232. [
  42233. {
  42234. name: "Smallest",
  42235. height: math.unit(8, "feet")
  42236. },
  42237. {
  42238. name: "Normal",
  42239. height: math.unit(1, "mile"),
  42240. default: true
  42241. },
  42242. {
  42243. name: "Maximum",
  42244. height: math.unit(1500000000000, "lightyears")
  42245. },
  42246. ]
  42247. ))
  42248. characterMakers.push(() => makeCharacter(
  42249. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42250. {
  42251. front: {
  42252. height: math.unit(5 + 11/12, "feet"),
  42253. weight: math.unit(155, "lb"),
  42254. name: "Front",
  42255. image: {
  42256. source: "./media/characters/cai/front.svg",
  42257. extra: 1823/1702,
  42258. bottom: 32/1855
  42259. }
  42260. },
  42261. back: {
  42262. height: math.unit(5 + 11/12, "feet"),
  42263. weight: math.unit(155, "lb"),
  42264. name: "Back",
  42265. image: {
  42266. source: "./media/characters/cai/back.svg",
  42267. extra: 1809/1708,
  42268. bottom: 31/1840
  42269. }
  42270. },
  42271. },
  42272. [
  42273. {
  42274. name: "Normal",
  42275. height: math.unit(5 + 11/12, "feet"),
  42276. default: true
  42277. },
  42278. {
  42279. name: "Big",
  42280. height: math.unit(15, "feet")
  42281. },
  42282. {
  42283. name: "Macro",
  42284. height: math.unit(200, "feet")
  42285. },
  42286. ]
  42287. ))
  42288. characterMakers.push(() => makeCharacter(
  42289. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42290. {
  42291. front: {
  42292. height: math.unit(5 + 6/12, "feet"),
  42293. weight: math.unit(160, "lb"),
  42294. name: "Front",
  42295. image: {
  42296. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42297. extra: 1227/1174,
  42298. bottom: 37/1264
  42299. }
  42300. },
  42301. },
  42302. [
  42303. {
  42304. name: "Macro",
  42305. height: math.unit(444, "meters"),
  42306. default: true
  42307. },
  42308. ]
  42309. ))
  42310. characterMakers.push(() => makeCharacter(
  42311. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42312. {
  42313. front: {
  42314. height: math.unit(18 + 7/12, "feet"),
  42315. name: "Front",
  42316. image: {
  42317. source: "./media/characters/rex/front.svg",
  42318. extra: 1941/1807,
  42319. bottom: 66/2007
  42320. }
  42321. },
  42322. back: {
  42323. height: math.unit(18 + 7/12, "feet"),
  42324. name: "Back",
  42325. image: {
  42326. source: "./media/characters/rex/back.svg",
  42327. extra: 1937/1822,
  42328. bottom: 42/1979
  42329. }
  42330. },
  42331. boot: {
  42332. height: math.unit(3.45, "feet"),
  42333. name: "Boot",
  42334. image: {
  42335. source: "./media/characters/rex/boot.svg"
  42336. }
  42337. },
  42338. paw: {
  42339. height: math.unit(4.17, "feet"),
  42340. name: "Paw",
  42341. image: {
  42342. source: "./media/characters/rex/paw.svg"
  42343. }
  42344. },
  42345. head: {
  42346. height: math.unit(6.728, "feet"),
  42347. name: "Head",
  42348. image: {
  42349. source: "./media/characters/rex/head.svg"
  42350. }
  42351. },
  42352. },
  42353. [
  42354. {
  42355. name: "Nano",
  42356. height: math.unit(18 + 7/12, "feet")
  42357. },
  42358. {
  42359. name: "Micro",
  42360. height: math.unit(1.5, "megameters")
  42361. },
  42362. {
  42363. name: "Normal",
  42364. height: math.unit(440, "megameters"),
  42365. default: true
  42366. },
  42367. {
  42368. name: "Macro",
  42369. height: math.unit(2.5, "gigameters")
  42370. },
  42371. {
  42372. name: "Gigamacro",
  42373. height: math.unit(2, "galaxies")
  42374. },
  42375. ]
  42376. ))
  42377. characterMakers.push(() => makeCharacter(
  42378. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42379. {
  42380. side: {
  42381. height: math.unit(32, "feet"),
  42382. weight: math.unit(250000, "lb"),
  42383. name: "Side",
  42384. image: {
  42385. source: "./media/characters/silverwing/side.svg",
  42386. extra: 1100/1019,
  42387. bottom: 204/1304
  42388. }
  42389. },
  42390. },
  42391. [
  42392. {
  42393. name: "Normal",
  42394. height: math.unit(32, "feet"),
  42395. default: true
  42396. },
  42397. ]
  42398. ))
  42399. characterMakers.push(() => makeCharacter(
  42400. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42401. {
  42402. front: {
  42403. height: math.unit(6 + 6/12, "feet"),
  42404. weight: math.unit(350, "lb"),
  42405. name: "Front",
  42406. image: {
  42407. source: "./media/characters/tristan-hawthorne/front.svg",
  42408. extra: 1159/1124,
  42409. bottom: 37/1196
  42410. },
  42411. form: "labrador",
  42412. default: true
  42413. },
  42414. skunkFront: {
  42415. height: math.unit(4 + 6/12, "feet"),
  42416. weight: math.unit(120, "lb"),
  42417. name: "Front",
  42418. image: {
  42419. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42420. extra: 1609/1551,
  42421. bottom: 169/1778
  42422. },
  42423. form: "skunk",
  42424. default: true
  42425. },
  42426. },
  42427. [
  42428. {
  42429. name: "Normal",
  42430. height: math.unit(6 + 6/12, "feet"),
  42431. form: "labrador",
  42432. default: true
  42433. },
  42434. {
  42435. name: "Normal",
  42436. height: math.unit(4 + 6/12, "feet"),
  42437. form: "skunk",
  42438. default: true
  42439. },
  42440. ],
  42441. {
  42442. "labrador": {
  42443. name: "Labrador",
  42444. default: true
  42445. },
  42446. "skunk": {
  42447. name: "Skunk"
  42448. }
  42449. }
  42450. ))
  42451. characterMakers.push(() => makeCharacter(
  42452. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42453. {
  42454. front: {
  42455. height: math.unit(5 + 11/12, "feet"),
  42456. weight: math.unit(190, "lb"),
  42457. name: "Front",
  42458. image: {
  42459. source: "./media/characters/mizu/front.svg",
  42460. extra: 1988/1788,
  42461. bottom: 14/2002
  42462. }
  42463. },
  42464. },
  42465. [
  42466. {
  42467. name: "Normal",
  42468. height: math.unit(5 + 11/12, "feet"),
  42469. default: true
  42470. },
  42471. ]
  42472. ))
  42473. characterMakers.push(() => makeCharacter(
  42474. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42475. {
  42476. front: {
  42477. height: math.unit(1.7, "feet"),
  42478. weight: math.unit(50, "lb"),
  42479. name: "Front",
  42480. image: {
  42481. source: "./media/characters/dechroma/front.svg",
  42482. extra: 1095/859,
  42483. bottom: 64/1159
  42484. }
  42485. },
  42486. },
  42487. [
  42488. {
  42489. name: "Normal",
  42490. height: math.unit(1.7, "feet"),
  42491. default: true
  42492. },
  42493. ]
  42494. ))
  42495. characterMakers.push(() => makeCharacter(
  42496. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42497. {
  42498. side: {
  42499. height: math.unit(30, "feet"),
  42500. name: "Side",
  42501. image: {
  42502. source: "./media/characters/veluren-thanazel/side.svg",
  42503. extra: 1611/633,
  42504. bottom: 118/1729
  42505. }
  42506. },
  42507. front: {
  42508. height: math.unit(30, "feet"),
  42509. name: "Front",
  42510. image: {
  42511. source: "./media/characters/veluren-thanazel/front.svg",
  42512. extra: 1486/636,
  42513. bottom: 238/1724
  42514. }
  42515. },
  42516. head: {
  42517. height: math.unit(21.4, "feet"),
  42518. name: "Head",
  42519. image: {
  42520. source: "./media/characters/veluren-thanazel/head.svg"
  42521. }
  42522. },
  42523. genitals: {
  42524. height: math.unit(19.4, "feet"),
  42525. name: "Genitals",
  42526. image: {
  42527. source: "./media/characters/veluren-thanazel/genitals.svg"
  42528. }
  42529. },
  42530. },
  42531. [
  42532. {
  42533. name: "Social",
  42534. height: math.unit(6, "feet")
  42535. },
  42536. {
  42537. name: "Play",
  42538. height: math.unit(12, "feet")
  42539. },
  42540. {
  42541. name: "True",
  42542. height: math.unit(30, "feet"),
  42543. default: true
  42544. },
  42545. ]
  42546. ))
  42547. characterMakers.push(() => makeCharacter(
  42548. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42549. {
  42550. front: {
  42551. height: math.unit(7 + 6/12, "feet"),
  42552. weight: math.unit(500, "kg"),
  42553. name: "Front",
  42554. image: {
  42555. source: "./media/characters/arcturas/front.svg",
  42556. extra: 1700/1500,
  42557. bottom: 145/1845
  42558. }
  42559. },
  42560. },
  42561. [
  42562. {
  42563. name: "Normal",
  42564. height: math.unit(7 + 6/12, "feet"),
  42565. default: true
  42566. },
  42567. ]
  42568. ))
  42569. characterMakers.push(() => makeCharacter(
  42570. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42571. {
  42572. side: {
  42573. height: math.unit(6, "feet"),
  42574. weight: math.unit(2, "tons"),
  42575. name: "Side",
  42576. image: {
  42577. source: "./media/characters/vitaen/side.svg",
  42578. extra: 1157/617,
  42579. bottom: 122/1279
  42580. }
  42581. },
  42582. },
  42583. [
  42584. {
  42585. name: "Normal",
  42586. height: math.unit(6, "feet"),
  42587. default: true
  42588. },
  42589. ]
  42590. ))
  42591. characterMakers.push(() => makeCharacter(
  42592. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42593. {
  42594. front: {
  42595. height: math.unit(19, "feet"),
  42596. name: "Front",
  42597. image: {
  42598. source: "./media/characters/fia-dreamweaver/front.svg",
  42599. extra: 1630/1504,
  42600. bottom: 25/1655
  42601. }
  42602. },
  42603. },
  42604. [
  42605. {
  42606. name: "Normal",
  42607. height: math.unit(19, "feet"),
  42608. default: true
  42609. },
  42610. ]
  42611. ))
  42612. characterMakers.push(() => makeCharacter(
  42613. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42614. {
  42615. front: {
  42616. height: math.unit(5 + 4/12, "feet"),
  42617. name: "Front",
  42618. image: {
  42619. source: "./media/characters/artan/front.svg",
  42620. extra: 1618/1535,
  42621. bottom: 46/1664
  42622. }
  42623. },
  42624. back: {
  42625. height: math.unit(5 + 4/12, "feet"),
  42626. name: "Back",
  42627. image: {
  42628. source: "./media/characters/artan/back.svg",
  42629. extra: 1618/1543,
  42630. bottom: 31/1649
  42631. }
  42632. },
  42633. },
  42634. [
  42635. {
  42636. name: "Normal",
  42637. height: math.unit(5 + 4/12, "feet"),
  42638. default: true
  42639. },
  42640. ]
  42641. ))
  42642. characterMakers.push(() => makeCharacter(
  42643. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42644. {
  42645. side: {
  42646. height: math.unit(182, "cm"),
  42647. weight: math.unit(1000, "lb"),
  42648. name: "Side",
  42649. image: {
  42650. source: "./media/characters/silver-dragon/side.svg",
  42651. extra: 710/287,
  42652. bottom: 88/798
  42653. }
  42654. },
  42655. },
  42656. [
  42657. {
  42658. name: "Normal",
  42659. height: math.unit(182, "cm"),
  42660. default: true
  42661. },
  42662. ]
  42663. ))
  42664. characterMakers.push(() => makeCharacter(
  42665. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42666. {
  42667. side: {
  42668. height: math.unit(6 + 6/12, "feet"),
  42669. weight: math.unit(1.5, "tons"),
  42670. name: "Side",
  42671. image: {
  42672. source: "./media/characters/zephyr/side.svg",
  42673. extra: 1433/586,
  42674. bottom: 109/1542
  42675. }
  42676. },
  42677. },
  42678. [
  42679. {
  42680. name: "Normal",
  42681. height: math.unit(6 + 6/12, "feet"),
  42682. default: true
  42683. },
  42684. ]
  42685. ))
  42686. characterMakers.push(() => makeCharacter(
  42687. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42688. {
  42689. side: {
  42690. height: math.unit(1, "feet"),
  42691. name: "Side",
  42692. image: {
  42693. source: "./media/characters/vixye/side.svg",
  42694. extra: 632/541,
  42695. bottom: 0/632
  42696. }
  42697. },
  42698. },
  42699. [
  42700. {
  42701. name: "Normal",
  42702. height: math.unit(1, "feet"),
  42703. default: true
  42704. },
  42705. {
  42706. name: "True",
  42707. height: math.unit(1e15, "multiverses")
  42708. },
  42709. ]
  42710. ))
  42711. characterMakers.push(() => makeCharacter(
  42712. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42713. {
  42714. front: {
  42715. height: math.unit(8 + 2/12, "feet"),
  42716. weight: math.unit(650, "lb"),
  42717. name: "Front",
  42718. image: {
  42719. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42720. extra: 1174/1137,
  42721. bottom: 82/1256
  42722. }
  42723. },
  42724. back: {
  42725. height: math.unit(8 + 2/12, "feet"),
  42726. weight: math.unit(650, "lb"),
  42727. name: "Back",
  42728. image: {
  42729. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42730. extra: 1204/1157,
  42731. bottom: 46/1250
  42732. }
  42733. },
  42734. },
  42735. [
  42736. {
  42737. name: "Wildform",
  42738. height: math.unit(8 + 2/12, "feet"),
  42739. default: true
  42740. },
  42741. ]
  42742. ))
  42743. characterMakers.push(() => makeCharacter(
  42744. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42745. {
  42746. front: {
  42747. height: math.unit(18, "feet"),
  42748. name: "Front",
  42749. image: {
  42750. source: "./media/characters/cyphin/front.svg",
  42751. extra: 970/886,
  42752. bottom: 42/1012
  42753. }
  42754. },
  42755. back: {
  42756. height: math.unit(18, "feet"),
  42757. name: "Back",
  42758. image: {
  42759. source: "./media/characters/cyphin/back.svg",
  42760. extra: 1009/894,
  42761. bottom: 24/1033
  42762. }
  42763. },
  42764. head: {
  42765. height: math.unit(5.05, "feet"),
  42766. name: "Head",
  42767. image: {
  42768. source: "./media/characters/cyphin/head.svg"
  42769. }
  42770. },
  42771. tailbud: {
  42772. height: math.unit(5, "feet"),
  42773. name: "Tailbud",
  42774. image: {
  42775. source: "./media/characters/cyphin/tailbud.svg"
  42776. }
  42777. },
  42778. },
  42779. [
  42780. ]
  42781. ))
  42782. characterMakers.push(() => makeCharacter(
  42783. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42784. {
  42785. side: {
  42786. height: math.unit(10, "feet"),
  42787. weight: math.unit(6, "tons"),
  42788. name: "Side",
  42789. image: {
  42790. source: "./media/characters/raijin/side.svg",
  42791. extra: 1529/613,
  42792. bottom: 337/1866
  42793. }
  42794. },
  42795. },
  42796. [
  42797. {
  42798. name: "Normal",
  42799. height: math.unit(10, "feet"),
  42800. default: true
  42801. },
  42802. ]
  42803. ))
  42804. characterMakers.push(() => makeCharacter(
  42805. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42806. {
  42807. side: {
  42808. height: math.unit(9, "feet"),
  42809. name: "Side",
  42810. image: {
  42811. source: "./media/characters/nilghais/side.svg",
  42812. extra: 1047/744,
  42813. bottom: 91/1138
  42814. }
  42815. },
  42816. head: {
  42817. height: math.unit(3.14, "feet"),
  42818. name: "Head",
  42819. image: {
  42820. source: "./media/characters/nilghais/head.svg"
  42821. }
  42822. },
  42823. mouth: {
  42824. height: math.unit(4.6, "feet"),
  42825. name: "Mouth",
  42826. image: {
  42827. source: "./media/characters/nilghais/mouth.svg"
  42828. }
  42829. },
  42830. wings: {
  42831. height: math.unit(24, "feet"),
  42832. name: "Wings",
  42833. image: {
  42834. source: "./media/characters/nilghais/wings.svg"
  42835. }
  42836. },
  42837. ass: {
  42838. height: math.unit(6.12, "feet"),
  42839. name: "Ass",
  42840. image: {
  42841. source: "./media/characters/nilghais/ass.svg"
  42842. }
  42843. },
  42844. },
  42845. [
  42846. {
  42847. name: "Normal",
  42848. height: math.unit(9, "feet"),
  42849. default: true
  42850. },
  42851. ]
  42852. ))
  42853. characterMakers.push(() => makeCharacter(
  42854. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42855. {
  42856. regular: {
  42857. height: math.unit(16 + 2/12, "feet"),
  42858. weight: math.unit(2300, "lb"),
  42859. name: "Regular",
  42860. image: {
  42861. source: "./media/characters/zolgar/regular.svg",
  42862. extra: 1246/1004,
  42863. bottom: 124/1370
  42864. }
  42865. },
  42866. boxers: {
  42867. height: math.unit(16 + 2/12, "feet"),
  42868. weight: math.unit(2300, "lb"),
  42869. name: "Boxers",
  42870. image: {
  42871. source: "./media/characters/zolgar/boxers.svg",
  42872. extra: 1246/1004,
  42873. bottom: 124/1370
  42874. }
  42875. },
  42876. armored: {
  42877. height: math.unit(16 + 2/12, "feet"),
  42878. weight: math.unit(2300, "lb"),
  42879. name: "Armored",
  42880. image: {
  42881. source: "./media/characters/zolgar/armored.svg",
  42882. extra: 1246/1004,
  42883. bottom: 124/1370
  42884. }
  42885. },
  42886. goth: {
  42887. height: math.unit(16 + 2/12, "feet"),
  42888. weight: math.unit(2300, "lb"),
  42889. name: "Goth",
  42890. image: {
  42891. source: "./media/characters/zolgar/goth.svg",
  42892. extra: 1246/1004,
  42893. bottom: 124/1370
  42894. }
  42895. },
  42896. },
  42897. [
  42898. {
  42899. name: "Shrunken Down",
  42900. height: math.unit(9 + 2/12, "feet")
  42901. },
  42902. {
  42903. name: "Normal",
  42904. height: math.unit(16 + 2/12, "feet"),
  42905. default: true
  42906. },
  42907. ]
  42908. ))
  42909. characterMakers.push(() => makeCharacter(
  42910. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42911. {
  42912. front: {
  42913. height: math.unit(6, "feet"),
  42914. weight: math.unit(168, "lb"),
  42915. name: "Front",
  42916. image: {
  42917. source: "./media/characters/luca/front.svg",
  42918. extra: 841/667,
  42919. bottom: 102/943
  42920. }
  42921. },
  42922. },
  42923. [
  42924. {
  42925. name: "Normal",
  42926. height: math.unit(6, "feet"),
  42927. default: true
  42928. },
  42929. ]
  42930. ))
  42931. characterMakers.push(() => makeCharacter(
  42932. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42933. {
  42934. side: {
  42935. height: math.unit(7 + 3/12, "feet"),
  42936. weight: math.unit(312, "lb"),
  42937. name: "Side",
  42938. image: {
  42939. source: "./media/characters/zezo/side.svg",
  42940. extra: 1192/1067,
  42941. bottom: 63/1255
  42942. }
  42943. },
  42944. },
  42945. [
  42946. {
  42947. name: "Normal",
  42948. height: math.unit(7 + 3/12, "feet"),
  42949. default: true
  42950. },
  42951. ]
  42952. ))
  42953. characterMakers.push(() => makeCharacter(
  42954. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42955. {
  42956. front: {
  42957. height: math.unit(5 + 5/12, "feet"),
  42958. weight: math.unit(170, "lb"),
  42959. name: "Front",
  42960. image: {
  42961. source: "./media/characters/mayso/front.svg",
  42962. extra: 1215/1108,
  42963. bottom: 16/1231
  42964. }
  42965. },
  42966. },
  42967. [
  42968. {
  42969. name: "Normal",
  42970. height: math.unit(5 + 5/12, "feet"),
  42971. default: true
  42972. },
  42973. ]
  42974. ))
  42975. characterMakers.push(() => makeCharacter(
  42976. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42977. {
  42978. front: {
  42979. height: math.unit(4 + 3/12, "feet"),
  42980. weight: math.unit(80, "lb"),
  42981. name: "Front",
  42982. image: {
  42983. source: "./media/characters/hess/front.svg",
  42984. extra: 1200/1123,
  42985. bottom: 16/1216
  42986. }
  42987. },
  42988. },
  42989. [
  42990. {
  42991. name: "Normal",
  42992. height: math.unit(4 + 3/12, "feet"),
  42993. default: true
  42994. },
  42995. ]
  42996. ))
  42997. characterMakers.push(() => makeCharacter(
  42998. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42999. {
  43000. front: {
  43001. height: math.unit(1.9, "meters"),
  43002. name: "Front",
  43003. image: {
  43004. source: "./media/characters/ashgar/front.svg",
  43005. extra: 1177/1146,
  43006. bottom: 99/1276
  43007. }
  43008. },
  43009. back: {
  43010. height: math.unit(1.9, "meters"),
  43011. name: "Back",
  43012. image: {
  43013. source: "./media/characters/ashgar/back.svg",
  43014. extra: 1201/1183,
  43015. bottom: 53/1254
  43016. }
  43017. },
  43018. feral: {
  43019. height: math.unit(1.4, "meters"),
  43020. name: "Feral",
  43021. image: {
  43022. source: "./media/characters/ashgar/feral.svg",
  43023. extra: 370/345,
  43024. bottom: 45/415
  43025. }
  43026. },
  43027. },
  43028. [
  43029. {
  43030. name: "Normal",
  43031. height: math.unit(1.9, "meters"),
  43032. default: true
  43033. },
  43034. ]
  43035. ))
  43036. characterMakers.push(() => makeCharacter(
  43037. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43038. {
  43039. regular: {
  43040. height: math.unit(6, "feet"),
  43041. weight: math.unit(220, "lb"),
  43042. name: "Regular",
  43043. image: {
  43044. source: "./media/characters/phillip/regular.svg",
  43045. extra: 1373/1277,
  43046. bottom: 75/1448
  43047. }
  43048. },
  43049. dressed: {
  43050. height: math.unit(6, "feet"),
  43051. weight: math.unit(220, "lb"),
  43052. name: "Dressed",
  43053. image: {
  43054. source: "./media/characters/phillip/dressed.svg",
  43055. extra: 1373/1277,
  43056. bottom: 75/1448
  43057. }
  43058. },
  43059. paw: {
  43060. height: math.unit(1.44, "feet"),
  43061. name: "Paw",
  43062. image: {
  43063. source: "./media/characters/phillip/paw.svg"
  43064. }
  43065. },
  43066. },
  43067. [
  43068. {
  43069. name: "Normal",
  43070. height: math.unit(6, "feet"),
  43071. default: true
  43072. },
  43073. ]
  43074. ))
  43075. characterMakers.push(() => makeCharacter(
  43076. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43077. {
  43078. side: {
  43079. height: math.unit(42, "feet"),
  43080. name: "Side",
  43081. image: {
  43082. source: "./media/characters/uvula/side.svg",
  43083. extra: 683/586,
  43084. bottom: 60/743
  43085. }
  43086. },
  43087. front: {
  43088. height: math.unit(42, "feet"),
  43089. name: "Front",
  43090. image: {
  43091. source: "./media/characters/uvula/front.svg",
  43092. extra: 705/613,
  43093. bottom: 54/759
  43094. }
  43095. },
  43096. maw: {
  43097. height: math.unit(23.5, "feet"),
  43098. name: "Maw",
  43099. image: {
  43100. source: "./media/characters/uvula/maw.svg"
  43101. }
  43102. },
  43103. },
  43104. [
  43105. {
  43106. name: "Original Size",
  43107. height: math.unit(14, "inches")
  43108. },
  43109. {
  43110. name: "Human Size",
  43111. height: math.unit(6, "feet")
  43112. },
  43113. {
  43114. name: "Big",
  43115. height: math.unit(42, "feet"),
  43116. default: true
  43117. },
  43118. {
  43119. name: "Bigger",
  43120. height: math.unit(100, "feet")
  43121. },
  43122. ]
  43123. ))
  43124. characterMakers.push(() => makeCharacter(
  43125. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43126. {
  43127. front: {
  43128. height: math.unit(5 + 11/12, "feet"),
  43129. name: "Front",
  43130. image: {
  43131. source: "./media/characters/lannah/front.svg",
  43132. extra: 1208/1113,
  43133. bottom: 97/1305
  43134. }
  43135. },
  43136. },
  43137. [
  43138. {
  43139. name: "Normal",
  43140. height: math.unit(5 + 11/12, "feet"),
  43141. default: true
  43142. },
  43143. ]
  43144. ))
  43145. characterMakers.push(() => makeCharacter(
  43146. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43147. {
  43148. front: {
  43149. height: math.unit(6 + 3/12, "feet"),
  43150. weight: math.unit(3.5, "tons"),
  43151. name: "Front",
  43152. image: {
  43153. source: "./media/characters/emberflame/front.svg",
  43154. extra: 1198/672,
  43155. bottom: 82/1280
  43156. }
  43157. },
  43158. side: {
  43159. height: math.unit(6 + 3/12, "feet"),
  43160. weight: math.unit(3.5, "tons"),
  43161. name: "Side",
  43162. image: {
  43163. source: "./media/characters/emberflame/side.svg",
  43164. extra: 938/527,
  43165. bottom: 56/994
  43166. }
  43167. },
  43168. },
  43169. [
  43170. {
  43171. name: "Normal",
  43172. height: math.unit(6 + 3/12, "feet"),
  43173. default: true
  43174. },
  43175. ]
  43176. ))
  43177. characterMakers.push(() => makeCharacter(
  43178. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43179. {
  43180. side: {
  43181. height: math.unit(17.5, "feet"),
  43182. weight: math.unit(35, "tons"),
  43183. name: "Side",
  43184. image: {
  43185. source: "./media/characters/sophie-ambrose/side.svg",
  43186. extra: 1573/1242,
  43187. bottom: 71/1644
  43188. }
  43189. },
  43190. maw: {
  43191. height: math.unit(7.4, "feet"),
  43192. name: "Maw",
  43193. image: {
  43194. source: "./media/characters/sophie-ambrose/maw.svg"
  43195. }
  43196. },
  43197. },
  43198. [
  43199. {
  43200. name: "Normal",
  43201. height: math.unit(17.5, "feet"),
  43202. default: true
  43203. },
  43204. ]
  43205. ))
  43206. characterMakers.push(() => makeCharacter(
  43207. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43208. {
  43209. front: {
  43210. height: math.unit(280, "feet"),
  43211. weight: math.unit(550, "tons"),
  43212. name: "Front",
  43213. image: {
  43214. source: "./media/characters/king-mugi/front.svg",
  43215. extra: 1102/947,
  43216. bottom: 104/1206
  43217. }
  43218. },
  43219. },
  43220. [
  43221. {
  43222. name: "King Mugi",
  43223. height: math.unit(280, "feet"),
  43224. default: true
  43225. },
  43226. ]
  43227. ))
  43228. characterMakers.push(() => makeCharacter(
  43229. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43230. {
  43231. front: {
  43232. height: math.unit(64, "meters"),
  43233. name: "Front",
  43234. image: {
  43235. source: "./media/characters/nova-fox/front.svg",
  43236. extra: 1310/1246,
  43237. bottom: 65/1375
  43238. }
  43239. },
  43240. },
  43241. [
  43242. {
  43243. name: "Macro",
  43244. height: math.unit(64, "meters"),
  43245. default: true
  43246. },
  43247. ]
  43248. ))
  43249. characterMakers.push(() => makeCharacter(
  43250. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43251. {
  43252. front: {
  43253. height: math.unit(6 + 3/12, "feet"),
  43254. weight: math.unit(170, "lb"),
  43255. name: "Front",
  43256. image: {
  43257. source: "./media/characters/sam-bat/front.svg",
  43258. extra: 1601/1411,
  43259. bottom: 125/1726
  43260. }
  43261. },
  43262. back: {
  43263. height: math.unit(6 + 3/12, "feet"),
  43264. weight: math.unit(170, "lb"),
  43265. name: "Back",
  43266. image: {
  43267. source: "./media/characters/sam-bat/back.svg",
  43268. extra: 1577/1405,
  43269. bottom: 58/1635
  43270. }
  43271. },
  43272. },
  43273. [
  43274. {
  43275. name: "Normal",
  43276. height: math.unit(6 + 3/12, "feet"),
  43277. default: true
  43278. },
  43279. ]
  43280. ))
  43281. characterMakers.push(() => makeCharacter(
  43282. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43283. {
  43284. front: {
  43285. height: math.unit(59, "feet"),
  43286. weight: math.unit(40000, "lb"),
  43287. name: "Front",
  43288. image: {
  43289. source: "./media/characters/inari/front.svg",
  43290. extra: 1884/1350,
  43291. bottom: 95/1979
  43292. }
  43293. },
  43294. },
  43295. [
  43296. {
  43297. name: "Gigantamax",
  43298. height: math.unit(59, "feet"),
  43299. default: true
  43300. },
  43301. ]
  43302. ))
  43303. characterMakers.push(() => makeCharacter(
  43304. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43305. {
  43306. front: {
  43307. height: math.unit(5 + 8/12, "feet"),
  43308. name: "Front",
  43309. image: {
  43310. source: "./media/characters/elizabeth/front.svg",
  43311. extra: 1395/1298,
  43312. bottom: 54/1449
  43313. }
  43314. },
  43315. mouth: {
  43316. height: math.unit(1.97, "feet"),
  43317. name: "Mouth",
  43318. image: {
  43319. source: "./media/characters/elizabeth/mouth.svg"
  43320. }
  43321. },
  43322. foot: {
  43323. height: math.unit(1.17, "feet"),
  43324. name: "Foot",
  43325. image: {
  43326. source: "./media/characters/elizabeth/foot.svg"
  43327. }
  43328. },
  43329. },
  43330. [
  43331. {
  43332. name: "Normal",
  43333. height: math.unit(5 + 8/12, "feet"),
  43334. default: true
  43335. },
  43336. {
  43337. name: "Minimacro",
  43338. height: math.unit(18, "feet")
  43339. },
  43340. {
  43341. name: "Macro",
  43342. height: math.unit(180, "feet")
  43343. },
  43344. ]
  43345. ))
  43346. characterMakers.push(() => makeCharacter(
  43347. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43348. {
  43349. front: {
  43350. height: math.unit(5 + 2/12, "feet"),
  43351. name: "Front",
  43352. image: {
  43353. source: "./media/characters/october-gossamer/front.svg",
  43354. extra: 505/454,
  43355. bottom: 7/512
  43356. }
  43357. },
  43358. back: {
  43359. height: math.unit(5 + 2/12, "feet"),
  43360. name: "Back",
  43361. image: {
  43362. source: "./media/characters/october-gossamer/back.svg",
  43363. extra: 501/454,
  43364. bottom: 11/512
  43365. }
  43366. },
  43367. },
  43368. [
  43369. {
  43370. name: "Normal",
  43371. height: math.unit(5 + 2/12, "feet"),
  43372. default: true
  43373. },
  43374. ]
  43375. ))
  43376. characterMakers.push(() => makeCharacter(
  43377. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43378. {
  43379. front: {
  43380. height: math.unit(5, "feet"),
  43381. name: "Front",
  43382. image: {
  43383. source: "./media/characters/epiglottis/front.svg",
  43384. extra: 923/849,
  43385. bottom: 17/940
  43386. }
  43387. },
  43388. },
  43389. [
  43390. {
  43391. name: "Original Size",
  43392. height: math.unit(10, "inches")
  43393. },
  43394. {
  43395. name: "Human Size",
  43396. height: math.unit(5, "feet"),
  43397. default: true
  43398. },
  43399. {
  43400. name: "Big",
  43401. height: math.unit(25, "feet")
  43402. },
  43403. {
  43404. name: "Bigger",
  43405. height: math.unit(50, "feet")
  43406. },
  43407. {
  43408. name: "oh lawd",
  43409. height: math.unit(75, "feet")
  43410. },
  43411. ]
  43412. ))
  43413. characterMakers.push(() => makeCharacter(
  43414. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43415. {
  43416. front: {
  43417. height: math.unit(2 + 4/12, "feet"),
  43418. weight: math.unit(60, "lb"),
  43419. name: "Front",
  43420. image: {
  43421. source: "./media/characters/lerm/front.svg",
  43422. extra: 796/790,
  43423. bottom: 79/875
  43424. }
  43425. },
  43426. },
  43427. [
  43428. {
  43429. name: "Normal",
  43430. height: math.unit(2 + 4/12, "feet"),
  43431. default: true
  43432. },
  43433. ]
  43434. ))
  43435. characterMakers.push(() => makeCharacter(
  43436. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43437. {
  43438. front: {
  43439. height: math.unit(5.5, "feet"),
  43440. weight: math.unit(130, "lb"),
  43441. name: "Front",
  43442. image: {
  43443. source: "./media/characters/xena-nebadon/front.svg",
  43444. extra: 1828/1730,
  43445. bottom: 79/1907
  43446. }
  43447. },
  43448. },
  43449. [
  43450. {
  43451. name: "Tiny Puppy",
  43452. height: math.unit(3, "inches")
  43453. },
  43454. {
  43455. name: "Normal",
  43456. height: math.unit(5.5, "feet"),
  43457. default: true
  43458. },
  43459. {
  43460. name: "Lotta Lady",
  43461. height: math.unit(12, "feet")
  43462. },
  43463. {
  43464. name: "Pretty Big",
  43465. height: math.unit(100, "feet")
  43466. },
  43467. {
  43468. name: "Big",
  43469. height: math.unit(500, "feet")
  43470. },
  43471. {
  43472. name: "Skyscraper Toys",
  43473. height: math.unit(2500, "feet")
  43474. },
  43475. {
  43476. name: "Plane Catcher",
  43477. height: math.unit(8, "miles")
  43478. },
  43479. {
  43480. name: "Planet Toys",
  43481. height: math.unit(15, "earths")
  43482. },
  43483. {
  43484. name: "Stardust",
  43485. height: math.unit(0.25, "galaxies")
  43486. },
  43487. {
  43488. name: "Snacks",
  43489. height: math.unit(70, "universes")
  43490. },
  43491. ]
  43492. ))
  43493. characterMakers.push(() => makeCharacter(
  43494. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43495. {
  43496. front: {
  43497. height: math.unit(1.6, "meters"),
  43498. weight: math.unit(60, "kg"),
  43499. name: "Front",
  43500. image: {
  43501. source: "./media/characters/bounty/front.svg",
  43502. extra: 1426/1308,
  43503. bottom: 15/1441
  43504. }
  43505. },
  43506. back: {
  43507. height: math.unit(1.6, "meters"),
  43508. weight: math.unit(60, "kg"),
  43509. name: "Back",
  43510. image: {
  43511. source: "./media/characters/bounty/back.svg",
  43512. extra: 1417/1307,
  43513. bottom: 8/1425
  43514. }
  43515. },
  43516. },
  43517. [
  43518. {
  43519. name: "Normal",
  43520. height: math.unit(1.6, "meters"),
  43521. default: true
  43522. },
  43523. {
  43524. name: "Macro",
  43525. height: math.unit(300, "meters")
  43526. },
  43527. ]
  43528. ))
  43529. characterMakers.push(() => makeCharacter(
  43530. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43531. {
  43532. front: {
  43533. height: math.unit(2 + 8/12, "feet"),
  43534. weight: math.unit(15, "lb"),
  43535. name: "Front",
  43536. image: {
  43537. source: "./media/characters/mochi/front.svg",
  43538. extra: 1022/852,
  43539. bottom: 435/1457
  43540. }
  43541. },
  43542. back: {
  43543. height: math.unit(2 + 8/12, "feet"),
  43544. weight: math.unit(15, "lb"),
  43545. name: "Back",
  43546. image: {
  43547. source: "./media/characters/mochi/back.svg",
  43548. extra: 1335/1119,
  43549. bottom: 39/1374
  43550. }
  43551. },
  43552. bird: {
  43553. height: math.unit(2 + 8/12, "feet"),
  43554. weight: math.unit(15, "lb"),
  43555. name: "Bird",
  43556. image: {
  43557. source: "./media/characters/mochi/bird.svg",
  43558. extra: 1251/1113,
  43559. bottom: 178/1429
  43560. }
  43561. },
  43562. kaiju: {
  43563. height: math.unit(154, "feet"),
  43564. weight: math.unit(1e7, "lb"),
  43565. name: "Kaiju",
  43566. image: {
  43567. source: "./media/characters/mochi/kaiju.svg",
  43568. extra: 460/324,
  43569. bottom: 40/500
  43570. }
  43571. },
  43572. head: {
  43573. height: math.unit(1.21, "feet"),
  43574. name: "Head",
  43575. image: {
  43576. source: "./media/characters/mochi/head.svg"
  43577. }
  43578. },
  43579. alternateTail: {
  43580. height: math.unit(2 + 8/12, "feet"),
  43581. weight: math.unit(45, "lb"),
  43582. name: "Alternate Tail",
  43583. image: {
  43584. source: "./media/characters/mochi/alternate-tail.svg",
  43585. extra: 139/76,
  43586. bottom: 45/184
  43587. }
  43588. },
  43589. },
  43590. [
  43591. {
  43592. name: "Micro",
  43593. height: math.unit(2, "inches")
  43594. },
  43595. {
  43596. name: "Normal",
  43597. height: math.unit(2 + 8/12, "feet"),
  43598. default: true
  43599. },
  43600. {
  43601. name: "Macro",
  43602. height: math.unit(106, "feet")
  43603. },
  43604. ]
  43605. ))
  43606. characterMakers.push(() => makeCharacter(
  43607. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43608. {
  43609. front: {
  43610. height: math.unit(5.67, "feet"),
  43611. weight: math.unit(135, "lb"),
  43612. name: "Front",
  43613. image: {
  43614. source: "./media/characters/sarel/front.svg",
  43615. extra: 865/788,
  43616. bottom: 97/962
  43617. }
  43618. },
  43619. back: {
  43620. height: math.unit(5.67, "feet"),
  43621. weight: math.unit(135, "lb"),
  43622. name: "Back",
  43623. image: {
  43624. source: "./media/characters/sarel/back.svg",
  43625. extra: 857/777,
  43626. bottom: 32/889
  43627. }
  43628. },
  43629. chozoan: {
  43630. height: math.unit(5.67, "feet"),
  43631. weight: math.unit(135, "lb"),
  43632. name: "Chozoan",
  43633. image: {
  43634. source: "./media/characters/sarel/chozoan.svg",
  43635. extra: 865/788,
  43636. bottom: 97/962
  43637. }
  43638. },
  43639. current: {
  43640. height: math.unit(5.67, "feet"),
  43641. weight: math.unit(135, "lb"),
  43642. name: "Current",
  43643. image: {
  43644. source: "./media/characters/sarel/current.svg",
  43645. extra: 865/788,
  43646. bottom: 97/962
  43647. }
  43648. },
  43649. head: {
  43650. height: math.unit(1.77, "feet"),
  43651. name: "Head",
  43652. image: {
  43653. source: "./media/characters/sarel/head.svg"
  43654. }
  43655. },
  43656. claws: {
  43657. height: math.unit(1.8, "feet"),
  43658. name: "Claws",
  43659. image: {
  43660. source: "./media/characters/sarel/claws.svg"
  43661. }
  43662. },
  43663. clawsAlt: {
  43664. height: math.unit(1.8, "feet"),
  43665. name: "Claws-alt",
  43666. image: {
  43667. source: "./media/characters/sarel/claws-alt.svg"
  43668. }
  43669. },
  43670. },
  43671. [
  43672. {
  43673. name: "Normal",
  43674. height: math.unit(5.67, "feet"),
  43675. default: true
  43676. },
  43677. ]
  43678. ))
  43679. characterMakers.push(() => makeCharacter(
  43680. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43681. {
  43682. front: {
  43683. height: math.unit(5500, "feet"),
  43684. name: "Front",
  43685. image: {
  43686. source: "./media/characters/alyonia/front.svg",
  43687. extra: 1200/1135,
  43688. bottom: 29/1229
  43689. }
  43690. },
  43691. back: {
  43692. height: math.unit(5500, "feet"),
  43693. name: "Back",
  43694. image: {
  43695. source: "./media/characters/alyonia/back.svg",
  43696. extra: 1205/1138,
  43697. bottom: 10/1215
  43698. }
  43699. },
  43700. },
  43701. [
  43702. {
  43703. name: "Small",
  43704. height: math.unit(10, "feet")
  43705. },
  43706. {
  43707. name: "Macro",
  43708. height: math.unit(500, "feet")
  43709. },
  43710. {
  43711. name: "Mega Macro",
  43712. height: math.unit(5500, "feet"),
  43713. default: true
  43714. },
  43715. {
  43716. name: "Mega Macro+",
  43717. height: math.unit(500000, "feet")
  43718. },
  43719. {
  43720. name: "Giga Macro",
  43721. height: math.unit(3000, "miles")
  43722. },
  43723. {
  43724. name: "Tera Macro",
  43725. height: math.unit(2.8e6, "miles")
  43726. },
  43727. {
  43728. name: "Galactic",
  43729. height: math.unit(120000, "lightyears")
  43730. },
  43731. ]
  43732. ))
  43733. characterMakers.push(() => makeCharacter(
  43734. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43735. {
  43736. werewolf: {
  43737. height: math.unit(8, "feet"),
  43738. weight: math.unit(425, "lb"),
  43739. name: "Werewolf",
  43740. image: {
  43741. source: "./media/characters/autumn/werewolf.svg",
  43742. extra: 2154/2031,
  43743. bottom: 160/2314
  43744. }
  43745. },
  43746. human: {
  43747. height: math.unit(5 + 8/12, "feet"),
  43748. weight: math.unit(150, "lb"),
  43749. name: "Human",
  43750. image: {
  43751. source: "./media/characters/autumn/human.svg",
  43752. extra: 1200/1149,
  43753. bottom: 30/1230
  43754. }
  43755. },
  43756. },
  43757. [
  43758. {
  43759. name: "Normal",
  43760. height: math.unit(8, "feet"),
  43761. default: true
  43762. },
  43763. ]
  43764. ))
  43765. characterMakers.push(() => makeCharacter(
  43766. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43767. {
  43768. front: {
  43769. height: math.unit(8 + 5/12, "feet"),
  43770. weight: math.unit(825, "lb"),
  43771. name: "Front",
  43772. image: {
  43773. source: "./media/characters/cobalt-charizard/front.svg",
  43774. extra: 1268/1155,
  43775. bottom: 122/1390
  43776. }
  43777. },
  43778. side: {
  43779. height: math.unit(8 + 5/12, "feet"),
  43780. weight: math.unit(825, "lb"),
  43781. name: "Side",
  43782. image: {
  43783. source: "./media/characters/cobalt-charizard/side.svg",
  43784. extra: 1348/1257,
  43785. bottom: 58/1406
  43786. }
  43787. },
  43788. gMax: {
  43789. height: math.unit(134 + 11/12, "feet"),
  43790. name: "G-Max",
  43791. image: {
  43792. source: "./media/characters/cobalt-charizard/g-max.svg",
  43793. extra: 1835/1541,
  43794. bottom: 151/1986
  43795. }
  43796. },
  43797. },
  43798. [
  43799. {
  43800. name: "Normal",
  43801. height: math.unit(8 + 5/12, "feet"),
  43802. default: true
  43803. },
  43804. ]
  43805. ))
  43806. characterMakers.push(() => makeCharacter(
  43807. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43808. {
  43809. front: {
  43810. height: math.unit(6 + 3/12, "feet"),
  43811. weight: math.unit(210, "lb"),
  43812. name: "Front",
  43813. image: {
  43814. source: "./media/characters/stella/front.svg",
  43815. extra: 3549/3335,
  43816. bottom: 51/3600
  43817. }
  43818. },
  43819. },
  43820. [
  43821. {
  43822. name: "Normal",
  43823. height: math.unit(6 + 3/12, "feet"),
  43824. default: true
  43825. },
  43826. ]
  43827. ))
  43828. characterMakers.push(() => makeCharacter(
  43829. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43830. {
  43831. front: {
  43832. height: math.unit(5, "feet"),
  43833. weight: math.unit(90, "lb"),
  43834. name: "Front",
  43835. image: {
  43836. source: "./media/characters/riley-bishop/front.svg",
  43837. extra: 1450/1428,
  43838. bottom: 152/1602
  43839. }
  43840. },
  43841. },
  43842. [
  43843. {
  43844. name: "Normal",
  43845. height: math.unit(5, "feet"),
  43846. default: true
  43847. },
  43848. ]
  43849. ))
  43850. characterMakers.push(() => makeCharacter(
  43851. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43852. {
  43853. side: {
  43854. height: math.unit(8 + 2/12, "feet"),
  43855. weight: math.unit(500, "kg"),
  43856. name: "Side",
  43857. image: {
  43858. source: "./media/characters/theo-arcanine/side.svg",
  43859. extra: 1342/1074,
  43860. bottom: 111/1453
  43861. }
  43862. },
  43863. },
  43864. [
  43865. {
  43866. name: "Normal",
  43867. height: math.unit(8 + 2/12, "feet"),
  43868. default: true
  43869. },
  43870. ]
  43871. ))
  43872. characterMakers.push(() => makeCharacter(
  43873. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43874. {
  43875. front: {
  43876. height: math.unit(4, "feet"),
  43877. name: "Front",
  43878. image: {
  43879. source: "./media/characters/kali/front.svg",
  43880. extra: 1921/1357,
  43881. bottom: 70/1991
  43882. }
  43883. },
  43884. },
  43885. [
  43886. {
  43887. name: "Normal",
  43888. height: math.unit(4, "feet"),
  43889. default: true
  43890. },
  43891. {
  43892. name: "Macro",
  43893. height: math.unit(32, "meters")
  43894. },
  43895. {
  43896. name: "Macro+",
  43897. height: math.unit(150, "meters")
  43898. },
  43899. {
  43900. name: "Megamacro",
  43901. height: math.unit(7500, "meters")
  43902. },
  43903. {
  43904. name: "Megamacro+",
  43905. height: math.unit(80, "kilometers")
  43906. },
  43907. ]
  43908. ))
  43909. characterMakers.push(() => makeCharacter(
  43910. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43911. {
  43912. side: {
  43913. height: math.unit(5 + 11/12, "feet"),
  43914. weight: math.unit(236, "lb"),
  43915. name: "Side",
  43916. image: {
  43917. source: "./media/characters/gapp/side.svg",
  43918. extra: 775/340,
  43919. bottom: 58/833
  43920. }
  43921. },
  43922. mouth: {
  43923. height: math.unit(2.98, "feet"),
  43924. name: "Mouth",
  43925. image: {
  43926. source: "./media/characters/gapp/mouth.svg"
  43927. }
  43928. },
  43929. },
  43930. [
  43931. {
  43932. name: "Normal",
  43933. height: math.unit(5 + 1/12, "feet"),
  43934. default: true
  43935. },
  43936. ]
  43937. ))
  43938. characterMakers.push(() => makeCharacter(
  43939. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43940. {
  43941. front: {
  43942. height: math.unit(6, "feet"),
  43943. name: "Front",
  43944. image: {
  43945. source: "./media/characters/persephone/front.svg",
  43946. extra: 1895/1717,
  43947. bottom: 96/1991
  43948. }
  43949. },
  43950. back: {
  43951. height: math.unit(6, "feet"),
  43952. name: "Back",
  43953. image: {
  43954. source: "./media/characters/persephone/back.svg",
  43955. extra: 1868/1679,
  43956. bottom: 26/1894
  43957. }
  43958. },
  43959. casual: {
  43960. height: math.unit(6, "feet"),
  43961. name: "Casual",
  43962. image: {
  43963. source: "./media/characters/persephone/casual.svg",
  43964. extra: 1713/1541,
  43965. bottom: 76/1789
  43966. }
  43967. },
  43968. },
  43969. [
  43970. {
  43971. name: "Human Size",
  43972. height: math.unit(6, "feet")
  43973. },
  43974. {
  43975. name: "Big Steppy",
  43976. height: math.unit(600, "meters"),
  43977. default: true
  43978. },
  43979. {
  43980. name: "Galaxy Brain",
  43981. height: math.unit(1, "zettameter")
  43982. },
  43983. ]
  43984. ))
  43985. characterMakers.push(() => makeCharacter(
  43986. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43987. {
  43988. front: {
  43989. height: math.unit(1.85, "meters"),
  43990. name: "Front",
  43991. image: {
  43992. source: "./media/characters/riley-foxthing/front.svg",
  43993. extra: 1495/1354,
  43994. bottom: 122/1617
  43995. }
  43996. },
  43997. frontAlt: {
  43998. height: math.unit(1.85, "meters"),
  43999. name: "Front (Alt)",
  44000. image: {
  44001. source: "./media/characters/riley-foxthing/front-alt.svg",
  44002. extra: 1572/1389,
  44003. bottom: 116/1688
  44004. }
  44005. },
  44006. },
  44007. [
  44008. {
  44009. name: "Normal Sized",
  44010. height: math.unit(1.85, "meters"),
  44011. default: true
  44012. },
  44013. {
  44014. name: "Quite Sizable",
  44015. height: math.unit(5, "meters")
  44016. },
  44017. {
  44018. name: "Rather Large",
  44019. height: math.unit(20, "meters")
  44020. },
  44021. {
  44022. name: "Macro",
  44023. height: math.unit(450, "meters")
  44024. },
  44025. {
  44026. name: "Giga",
  44027. height: math.unit(5, "km")
  44028. },
  44029. ]
  44030. ))
  44031. characterMakers.push(() => makeCharacter(
  44032. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44033. {
  44034. front: {
  44035. height: math.unit(6, "feet"),
  44036. weight: math.unit(200, "lb"),
  44037. name: "Front",
  44038. image: {
  44039. source: "./media/characters/blizzard/front.svg",
  44040. extra: 1136/990,
  44041. bottom: 136/1272
  44042. }
  44043. },
  44044. back: {
  44045. height: math.unit(6, "feet"),
  44046. weight: math.unit(200, "lb"),
  44047. name: "Back",
  44048. image: {
  44049. source: "./media/characters/blizzard/back.svg",
  44050. extra: 1175/1034,
  44051. bottom: 97/1272
  44052. }
  44053. },
  44054. sitting: {
  44055. height: math.unit(3.725, "feet"),
  44056. weight: math.unit(200, "lb"),
  44057. name: "Sitting",
  44058. image: {
  44059. source: "./media/characters/blizzard/sitting.svg",
  44060. extra: 581/485,
  44061. bottom: 90/671
  44062. }
  44063. },
  44064. frontWizard: {
  44065. height: math.unit(7.9, "feet"),
  44066. weight: math.unit(200, "lb"),
  44067. name: "Front (Wizard)",
  44068. image: {
  44069. source: "./media/characters/blizzard/front-wizard.svg"
  44070. }
  44071. },
  44072. backWizard: {
  44073. height: math.unit(7.9, "feet"),
  44074. weight: math.unit(200, "lb"),
  44075. name: "Back (Wizard)",
  44076. image: {
  44077. source: "./media/characters/blizzard/back-wizard.svg"
  44078. }
  44079. },
  44080. frontNsfw: {
  44081. height: math.unit(6, "feet"),
  44082. weight: math.unit(200, "lb"),
  44083. name: "Front (NSFW)",
  44084. image: {
  44085. source: "./media/characters/blizzard/front-nsfw.svg",
  44086. extra: 1136/990,
  44087. bottom: 136/1272
  44088. }
  44089. },
  44090. backNsfw: {
  44091. height: math.unit(6, "feet"),
  44092. weight: math.unit(200, "lb"),
  44093. name: "Back (NSFW)",
  44094. image: {
  44095. source: "./media/characters/blizzard/back-nsfw.svg",
  44096. extra: 1175/1034,
  44097. bottom: 97/1272
  44098. }
  44099. },
  44100. sittingNsfw: {
  44101. height: math.unit(3.725, "feet"),
  44102. weight: math.unit(200, "lb"),
  44103. name: "Sitting (NSFW)",
  44104. image: {
  44105. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44106. extra: 581/485,
  44107. bottom: 90/671
  44108. }
  44109. },
  44110. wizardFrontNsfw: {
  44111. height: math.unit(7.9, "feet"),
  44112. weight: math.unit(200, "lb"),
  44113. name: "Wizard (Front, NSFW)",
  44114. image: {
  44115. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44116. }
  44117. },
  44118. },
  44119. [
  44120. {
  44121. name: "Normal",
  44122. height: math.unit(6, "feet"),
  44123. default: true
  44124. },
  44125. ]
  44126. ))
  44127. characterMakers.push(() => makeCharacter(
  44128. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44129. {
  44130. front: {
  44131. height: math.unit(5 + 2/12, "feet"),
  44132. name: "Front",
  44133. image: {
  44134. source: "./media/characters/lumi/front.svg",
  44135. extra: 1328/1268,
  44136. bottom: 103/1431
  44137. }
  44138. },
  44139. back: {
  44140. height: math.unit(5 + 2/12, "feet"),
  44141. name: "Back",
  44142. image: {
  44143. source: "./media/characters/lumi/back.svg",
  44144. extra: 1381/1327,
  44145. bottom: 43/1424
  44146. }
  44147. },
  44148. },
  44149. [
  44150. {
  44151. name: "Normal",
  44152. height: math.unit(5 + 2/12, "feet"),
  44153. default: true
  44154. },
  44155. ]
  44156. ))
  44157. characterMakers.push(() => makeCharacter(
  44158. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44159. {
  44160. front: {
  44161. height: math.unit(5 + 9/12, "feet"),
  44162. name: "Front",
  44163. image: {
  44164. source: "./media/characters/aliya-cotton/front.svg",
  44165. extra: 577/564,
  44166. bottom: 29/606
  44167. }
  44168. },
  44169. },
  44170. [
  44171. {
  44172. name: "Normal",
  44173. height: math.unit(5 + 9/12, "feet"),
  44174. default: true
  44175. },
  44176. ]
  44177. ))
  44178. characterMakers.push(() => makeCharacter(
  44179. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44180. {
  44181. front: {
  44182. height: math.unit(2.7, "meters"),
  44183. weight: math.unit(25000, "lb"),
  44184. name: "Front",
  44185. image: {
  44186. source: "./media/characters/noah-luxray/front.svg",
  44187. extra: 1644/825,
  44188. bottom: 339/1983
  44189. }
  44190. },
  44191. side: {
  44192. height: math.unit(2.97, "meters"),
  44193. weight: math.unit(25000, "lb"),
  44194. name: "Side",
  44195. image: {
  44196. source: "./media/characters/noah-luxray/side.svg",
  44197. extra: 1319/650,
  44198. bottom: 163/1482
  44199. }
  44200. },
  44201. dick: {
  44202. height: math.unit(7.4, "feet"),
  44203. weight: math.unit(2500, "lb"),
  44204. name: "Dick",
  44205. image: {
  44206. source: "./media/characters/noah-luxray/dick.svg"
  44207. }
  44208. },
  44209. dickAlt: {
  44210. height: math.unit(10.83, "feet"),
  44211. weight: math.unit(2500, "lb"),
  44212. name: "Dick-alt",
  44213. image: {
  44214. source: "./media/characters/noah-luxray/dick-alt.svg"
  44215. }
  44216. },
  44217. },
  44218. [
  44219. {
  44220. name: "BIG",
  44221. height: math.unit(2.7, "meters"),
  44222. default: true
  44223. },
  44224. ]
  44225. ))
  44226. characterMakers.push(() => makeCharacter(
  44227. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44228. {
  44229. standing: {
  44230. height: math.unit(183, "cm"),
  44231. weight: math.unit(68, "kg"),
  44232. name: "Standing",
  44233. image: {
  44234. source: "./media/characters/arion/standing.svg",
  44235. extra: 1869/1807,
  44236. bottom: 93/1962
  44237. }
  44238. },
  44239. reclining: {
  44240. height: math.unit(70.5, "cm"),
  44241. weight: math.unit(68, "lb"),
  44242. name: "Reclining",
  44243. image: {
  44244. source: "./media/characters/arion/reclining.svg",
  44245. extra: 937/870,
  44246. bottom: 63/1000
  44247. }
  44248. },
  44249. },
  44250. [
  44251. {
  44252. name: "Colossus Size, Low",
  44253. height: math.unit(33, "meters"),
  44254. default: true
  44255. },
  44256. {
  44257. name: "Colossus Size, Mid",
  44258. height: math.unit(52, "meters")
  44259. },
  44260. {
  44261. name: "Colossus Size, High",
  44262. height: math.unit(60, "meters")
  44263. },
  44264. {
  44265. name: "Titan Size, Low",
  44266. height: math.unit(91, "meters"),
  44267. },
  44268. {
  44269. name: "Titan Size, Mid",
  44270. height: math.unit(122, "meters")
  44271. },
  44272. {
  44273. name: "Titan Size, High",
  44274. height: math.unit(162, "meters")
  44275. },
  44276. ]
  44277. ))
  44278. characterMakers.push(() => makeCharacter(
  44279. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44280. {
  44281. front: {
  44282. height: math.unit(53, "meters"),
  44283. name: "Front",
  44284. image: {
  44285. source: "./media/characters/stellar-marbey/front.svg",
  44286. extra: 1913/1805,
  44287. bottom: 92/2005
  44288. }
  44289. },
  44290. back: {
  44291. height: math.unit(53, "meters"),
  44292. name: "Back",
  44293. image: {
  44294. source: "./media/characters/stellar-marbey/back.svg",
  44295. extra: 1960/1851,
  44296. bottom: 28/1988
  44297. }
  44298. },
  44299. mouth: {
  44300. height: math.unit(3.5, "meters"),
  44301. name: "Mouth",
  44302. image: {
  44303. source: "./media/characters/stellar-marbey/mouth.svg"
  44304. }
  44305. },
  44306. },
  44307. [
  44308. {
  44309. name: "Macro",
  44310. height: math.unit(53, "meters"),
  44311. default: true
  44312. },
  44313. ]
  44314. ))
  44315. characterMakers.push(() => makeCharacter(
  44316. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44317. {
  44318. front: {
  44319. height: math.unit(8 + 1/12, "feet"),
  44320. weight: math.unit(233, "lb"),
  44321. name: "Front",
  44322. image: {
  44323. source: "./media/characters/matsu/front.svg",
  44324. extra: 832/772,
  44325. bottom: 40/872
  44326. }
  44327. },
  44328. back: {
  44329. height: math.unit(8 + 1/12, "feet"),
  44330. weight: math.unit(233, "lb"),
  44331. name: "Back",
  44332. image: {
  44333. source: "./media/characters/matsu/back.svg",
  44334. extra: 839/780,
  44335. bottom: 47/886
  44336. }
  44337. },
  44338. },
  44339. [
  44340. {
  44341. name: "Normal",
  44342. height: math.unit(8 + 1/12, "feet"),
  44343. default: true
  44344. },
  44345. ]
  44346. ))
  44347. characterMakers.push(() => makeCharacter(
  44348. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44349. {
  44350. front: {
  44351. height: math.unit(4, "feet"),
  44352. weight: math.unit(148, "lb"),
  44353. name: "Front",
  44354. image: {
  44355. source: "./media/characters/thiz/front.svg",
  44356. extra: 1913/1748,
  44357. bottom: 62/1975
  44358. }
  44359. },
  44360. },
  44361. [
  44362. {
  44363. name: "Normal",
  44364. height: math.unit(4, "feet"),
  44365. default: true
  44366. },
  44367. ]
  44368. ))
  44369. characterMakers.push(() => makeCharacter(
  44370. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44371. {
  44372. front: {
  44373. height: math.unit(7 + 6/12, "feet"),
  44374. weight: math.unit(267, "lb"),
  44375. name: "Front",
  44376. image: {
  44377. source: "./media/characters/marcel/front.svg",
  44378. extra: 1221/1096,
  44379. bottom: 76/1297
  44380. }
  44381. },
  44382. },
  44383. [
  44384. {
  44385. name: "Normal",
  44386. height: math.unit(7 + 6/12, "feet"),
  44387. default: true
  44388. },
  44389. ]
  44390. ))
  44391. characterMakers.push(() => makeCharacter(
  44392. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44393. {
  44394. side: {
  44395. height: math.unit(42, "meters"),
  44396. name: "Side",
  44397. image: {
  44398. source: "./media/characters/flake/side.svg",
  44399. extra: 1525/1306,
  44400. bottom: 209/1734
  44401. }
  44402. },
  44403. },
  44404. [
  44405. {
  44406. name: "Normal",
  44407. height: math.unit(42, "meters"),
  44408. default: true
  44409. },
  44410. ]
  44411. ))
  44412. characterMakers.push(() => makeCharacter(
  44413. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44414. {
  44415. dressed: {
  44416. height: math.unit(6 + 4/12, "feet"),
  44417. weight: math.unit(520, "lb"),
  44418. name: "Dressed",
  44419. image: {
  44420. source: "./media/characters/someonne/dressed.svg",
  44421. extra: 1020/1010,
  44422. bottom: 178/1198
  44423. }
  44424. },
  44425. undressed: {
  44426. height: math.unit(6 + 4/12, "feet"),
  44427. weight: math.unit(520, "lb"),
  44428. name: "Undressed",
  44429. image: {
  44430. source: "./media/characters/someonne/undressed.svg",
  44431. extra: 1019/1014,
  44432. bottom: 169/1188
  44433. }
  44434. },
  44435. },
  44436. [
  44437. {
  44438. name: "Normal",
  44439. height: math.unit(6 + 4/12, "feet"),
  44440. default: true
  44441. },
  44442. ]
  44443. ))
  44444. characterMakers.push(() => makeCharacter(
  44445. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44446. {
  44447. front: {
  44448. height: math.unit(3, "feet"),
  44449. weight: math.unit(30, "lb"),
  44450. name: "Front",
  44451. image: {
  44452. source: "./media/characters/till/front.svg",
  44453. extra: 892/823,
  44454. bottom: 55/947
  44455. }
  44456. },
  44457. },
  44458. [
  44459. {
  44460. name: "Normal",
  44461. height: math.unit(3, "feet"),
  44462. default: true
  44463. },
  44464. ]
  44465. ))
  44466. characterMakers.push(() => makeCharacter(
  44467. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44468. {
  44469. front: {
  44470. height: math.unit(9 + 8/12, "feet"),
  44471. weight: math.unit(800, "lb"),
  44472. name: "Front",
  44473. image: {
  44474. source: "./media/characters/sydney-heki/front.svg",
  44475. extra: 1360/1300,
  44476. bottom: 22/1382
  44477. }
  44478. },
  44479. back: {
  44480. height: math.unit(9 + 8/12, "feet"),
  44481. weight: math.unit(800, "lb"),
  44482. name: "Back",
  44483. image: {
  44484. source: "./media/characters/sydney-heki/back.svg",
  44485. extra: 1356/1293,
  44486. bottom: 12/1368
  44487. }
  44488. },
  44489. frontDressed: {
  44490. height: math.unit(9 + 8/12, "feet"),
  44491. weight: math.unit(800, "lb"),
  44492. name: "Front-dressed",
  44493. image: {
  44494. source: "./media/characters/sydney-heki/front-dressed.svg",
  44495. extra: 1360/1300,
  44496. bottom: 22/1382
  44497. }
  44498. },
  44499. },
  44500. [
  44501. {
  44502. name: "Normal",
  44503. height: math.unit(9 + 8/12, "feet"),
  44504. default: true
  44505. },
  44506. {
  44507. name: "Macro",
  44508. height: math.unit(500, "feet")
  44509. },
  44510. {
  44511. name: "Megamacro",
  44512. height: math.unit(3.6, "miles")
  44513. },
  44514. ]
  44515. ))
  44516. characterMakers.push(() => makeCharacter(
  44517. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44518. {
  44519. front: {
  44520. height: math.unit(200, "cm"),
  44521. weight: math.unit(250, "lb"),
  44522. name: "Front",
  44523. image: {
  44524. source: "./media/characters/fowler-karlsson/front.svg",
  44525. extra: 897/845,
  44526. bottom: 123/1020
  44527. }
  44528. },
  44529. back: {
  44530. height: math.unit(200, "cm"),
  44531. weight: math.unit(250, "lb"),
  44532. name: "Back",
  44533. image: {
  44534. source: "./media/characters/fowler-karlsson/back.svg",
  44535. extra: 999/944,
  44536. bottom: 26/1025
  44537. }
  44538. },
  44539. dick: {
  44540. height: math.unit(1.92, "feet"),
  44541. weight: math.unit(150, "lb"),
  44542. name: "Dick",
  44543. image: {
  44544. source: "./media/characters/fowler-karlsson/dick.svg"
  44545. }
  44546. },
  44547. },
  44548. [
  44549. {
  44550. name: "Normal",
  44551. height: math.unit(200, "cm"),
  44552. default: true
  44553. },
  44554. {
  44555. name: "Smaller Macro",
  44556. height: math.unit(90, "m")
  44557. },
  44558. {
  44559. name: "Macro",
  44560. height: math.unit(150, "m")
  44561. },
  44562. {
  44563. name: "Bigger Macro",
  44564. height: math.unit(300, "m")
  44565. },
  44566. ]
  44567. ))
  44568. characterMakers.push(() => makeCharacter(
  44569. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44570. {
  44571. side: {
  44572. height: math.unit(8 + 2/12, "feet"),
  44573. weight: math.unit(1, "tonne"),
  44574. name: "Side",
  44575. image: {
  44576. source: "./media/characters/rylide/side.svg",
  44577. extra: 1318/1034,
  44578. bottom: 106/1424
  44579. }
  44580. },
  44581. sitting: {
  44582. height: math.unit(303, "cm"),
  44583. weight: math.unit(1, "tonne"),
  44584. name: "Sitting",
  44585. image: {
  44586. source: "./media/characters/rylide/sitting.svg",
  44587. extra: 1303/1103,
  44588. bottom: 36/1339
  44589. }
  44590. },
  44591. },
  44592. [
  44593. {
  44594. name: "Normal",
  44595. height: math.unit(8 + 2/12, "feet"),
  44596. default: true
  44597. },
  44598. ]
  44599. ))
  44600. characterMakers.push(() => makeCharacter(
  44601. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44602. {
  44603. front: {
  44604. height: math.unit(5 + 10/12, "feet"),
  44605. weight: math.unit(160, "lb"),
  44606. name: "Front",
  44607. image: {
  44608. source: "./media/characters/pudask/front.svg",
  44609. extra: 1616/1590,
  44610. bottom: 161/1777
  44611. }
  44612. },
  44613. },
  44614. [
  44615. {
  44616. name: "Ferret Height",
  44617. height: math.unit(2 + 5/12, "feet")
  44618. },
  44619. {
  44620. name: "Canon Height",
  44621. height: math.unit(5 + 10/12, "feet"),
  44622. default: true
  44623. },
  44624. ]
  44625. ))
  44626. characterMakers.push(() => makeCharacter(
  44627. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44628. {
  44629. front: {
  44630. height: math.unit(3 + 6/12, "feet"),
  44631. weight: math.unit(60, "lb"),
  44632. name: "Front",
  44633. image: {
  44634. source: "./media/characters/ramita/front.svg",
  44635. extra: 1402/1232,
  44636. bottom: 62/1464
  44637. }
  44638. },
  44639. dressed: {
  44640. height: math.unit(3 + 6/12, "feet"),
  44641. weight: math.unit(60, "lb"),
  44642. name: "Dressed",
  44643. image: {
  44644. source: "./media/characters/ramita/dressed.svg",
  44645. extra: 1534/1249,
  44646. bottom: 50/1584
  44647. }
  44648. },
  44649. },
  44650. [
  44651. {
  44652. name: "Normal",
  44653. height: math.unit(3 + 6/12, "feet"),
  44654. default: true
  44655. },
  44656. ]
  44657. ))
  44658. characterMakers.push(() => makeCharacter(
  44659. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44660. {
  44661. front: {
  44662. height: math.unit(8, "feet"),
  44663. name: "Front",
  44664. image: {
  44665. source: "./media/characters/ark/front.svg",
  44666. extra: 772/693,
  44667. bottom: 45/817
  44668. }
  44669. },
  44670. },
  44671. [
  44672. {
  44673. name: "Normal",
  44674. height: math.unit(8, "feet"),
  44675. default: true
  44676. },
  44677. ]
  44678. ))
  44679. characterMakers.push(() => makeCharacter(
  44680. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44681. {
  44682. front: {
  44683. height: math.unit(6, "feet"),
  44684. weight: math.unit(250, "lb"),
  44685. volume: math.unit(5/8, "gallons"),
  44686. name: "Front",
  44687. image: {
  44688. source: "./media/characters/ludwig-horn/front.svg",
  44689. extra: 1782/1635,
  44690. bottom: 96/1878
  44691. }
  44692. },
  44693. back: {
  44694. height: math.unit(6, "feet"),
  44695. weight: math.unit(250, "lb"),
  44696. volume: math.unit(5/8, "gallons"),
  44697. name: "Back",
  44698. image: {
  44699. source: "./media/characters/ludwig-horn/back.svg",
  44700. extra: 1874/1729,
  44701. bottom: 27/1901
  44702. }
  44703. },
  44704. dick: {
  44705. height: math.unit(1.05, "feet"),
  44706. weight: math.unit(15, "lb"),
  44707. volume: math.unit(5/8, "gallons"),
  44708. name: "Dick",
  44709. image: {
  44710. source: "./media/characters/ludwig-horn/dick.svg"
  44711. }
  44712. },
  44713. },
  44714. [
  44715. {
  44716. name: "Small",
  44717. height: math.unit(6, "feet")
  44718. },
  44719. {
  44720. name: "Typical",
  44721. height: math.unit(12, "feet"),
  44722. default: true
  44723. },
  44724. {
  44725. name: "Building",
  44726. height: math.unit(80, "feet")
  44727. },
  44728. {
  44729. name: "Town",
  44730. height: math.unit(800, "feet")
  44731. },
  44732. {
  44733. name: "Kingdom",
  44734. height: math.unit(80000, "feet")
  44735. },
  44736. {
  44737. name: "Planet",
  44738. height: math.unit(8000000, "feet")
  44739. },
  44740. {
  44741. name: "Universe",
  44742. height: math.unit(8000000000, "feet")
  44743. },
  44744. {
  44745. name: "Transcended",
  44746. height: math.unit(8e27, "feet")
  44747. },
  44748. ]
  44749. ))
  44750. characterMakers.push(() => makeCharacter(
  44751. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44752. {
  44753. front: {
  44754. height: math.unit(5, "feet"),
  44755. weight: math.unit(50, "kg"),
  44756. name: "Front",
  44757. image: {
  44758. source: "./media/characters/biot-avery/front.svg",
  44759. extra: 1295/1232,
  44760. bottom: 86/1381
  44761. }
  44762. },
  44763. },
  44764. [
  44765. {
  44766. name: "Normal",
  44767. height: math.unit(5, "feet"),
  44768. default: true
  44769. },
  44770. ]
  44771. ))
  44772. characterMakers.push(() => makeCharacter(
  44773. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44774. {
  44775. front: {
  44776. height: math.unit(6, "feet"),
  44777. name: "Front",
  44778. image: {
  44779. source: "./media/characters/kitsune-kiro/front.svg",
  44780. extra: 1270/1158,
  44781. bottom: 42/1312
  44782. }
  44783. },
  44784. frontAlt: {
  44785. height: math.unit(6, "feet"),
  44786. name: "Front-alt",
  44787. image: {
  44788. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44789. extra: 1130/1081,
  44790. bottom: 36/1166
  44791. }
  44792. },
  44793. },
  44794. [
  44795. {
  44796. name: "Smol",
  44797. height: math.unit(3, "feet")
  44798. },
  44799. {
  44800. name: "Normal",
  44801. height: math.unit(6, "feet"),
  44802. default: true
  44803. },
  44804. ]
  44805. ))
  44806. characterMakers.push(() => makeCharacter(
  44807. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44808. {
  44809. front: {
  44810. height: math.unit(6, "feet"),
  44811. weight: math.unit(125, "lb"),
  44812. name: "Front",
  44813. image: {
  44814. source: "./media/characters/jack-thatcher/front.svg",
  44815. extra: 1474/1370,
  44816. bottom: 26/1500
  44817. }
  44818. },
  44819. back: {
  44820. height: math.unit(6, "feet"),
  44821. weight: math.unit(125, "lb"),
  44822. name: "Back",
  44823. image: {
  44824. source: "./media/characters/jack-thatcher/back.svg",
  44825. extra: 1489/1384,
  44826. bottom: 18/1507
  44827. }
  44828. },
  44829. },
  44830. [
  44831. {
  44832. name: "Normal",
  44833. height: math.unit(6, "feet"),
  44834. default: true
  44835. },
  44836. {
  44837. name: "Macro",
  44838. height: math.unit(75, "feet")
  44839. },
  44840. {
  44841. name: "Macro-er",
  44842. height: math.unit(250, "feet")
  44843. },
  44844. ]
  44845. ))
  44846. characterMakers.push(() => makeCharacter(
  44847. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44848. {
  44849. front: {
  44850. height: math.unit(7, "feet"),
  44851. weight: math.unit(110, "kg"),
  44852. name: "Front",
  44853. image: {
  44854. source: "./media/characters/max-hyper/front.svg",
  44855. extra: 1969/1881,
  44856. bottom: 49/2018
  44857. }
  44858. },
  44859. },
  44860. [
  44861. {
  44862. name: "Normal",
  44863. height: math.unit(7, "feet"),
  44864. default: true
  44865. },
  44866. ]
  44867. ))
  44868. characterMakers.push(() => makeCharacter(
  44869. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44870. {
  44871. front: {
  44872. height: math.unit(5 + 5/12, "feet"),
  44873. weight: math.unit(160, "lb"),
  44874. name: "Front",
  44875. image: {
  44876. source: "./media/characters/spook/front.svg",
  44877. extra: 794/791,
  44878. bottom: 54/848
  44879. }
  44880. },
  44881. back: {
  44882. height: math.unit(5 + 5/12, "feet"),
  44883. weight: math.unit(160, "lb"),
  44884. name: "Back",
  44885. image: {
  44886. source: "./media/characters/spook/back.svg",
  44887. extra: 812/798,
  44888. bottom: 32/844
  44889. }
  44890. },
  44891. },
  44892. [
  44893. {
  44894. name: "Normal",
  44895. height: math.unit(5 + 5/12, "feet"),
  44896. default: true
  44897. },
  44898. ]
  44899. ))
  44900. characterMakers.push(() => makeCharacter(
  44901. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44902. {
  44903. front: {
  44904. height: math.unit(18, "feet"),
  44905. name: "Front",
  44906. image: {
  44907. source: "./media/characters/xeaduulix/front.svg",
  44908. extra: 1380/1166,
  44909. bottom: 110/1490
  44910. }
  44911. },
  44912. back: {
  44913. height: math.unit(18, "feet"),
  44914. name: "Back",
  44915. image: {
  44916. source: "./media/characters/xeaduulix/back.svg",
  44917. extra: 1592/1170,
  44918. bottom: 128/1720
  44919. }
  44920. },
  44921. frontNsfw: {
  44922. height: math.unit(18, "feet"),
  44923. name: "Front (NSFW)",
  44924. image: {
  44925. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44926. extra: 1380/1166,
  44927. bottom: 110/1490
  44928. }
  44929. },
  44930. backNsfw: {
  44931. height: math.unit(18, "feet"),
  44932. name: "Back (NSFW)",
  44933. image: {
  44934. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44935. extra: 1592/1170,
  44936. bottom: 128/1720
  44937. }
  44938. },
  44939. },
  44940. [
  44941. {
  44942. name: "Normal",
  44943. height: math.unit(18, "feet"),
  44944. default: true
  44945. },
  44946. ]
  44947. ))
  44948. characterMakers.push(() => makeCharacter(
  44949. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44950. {
  44951. spreadWings: {
  44952. height: math.unit(20, "feet"),
  44953. name: "Spread Wings",
  44954. image: {
  44955. source: "./media/characters/fledge/spread-wings.svg",
  44956. extra: 693/635,
  44957. bottom: 26/719
  44958. }
  44959. },
  44960. front: {
  44961. height: math.unit(20, "feet"),
  44962. name: "Front",
  44963. image: {
  44964. source: "./media/characters/fledge/front.svg",
  44965. extra: 684/637,
  44966. bottom: 18/702
  44967. }
  44968. },
  44969. frontAlt: {
  44970. height: math.unit(20, "feet"),
  44971. name: "Front (Alt)",
  44972. image: {
  44973. source: "./media/characters/fledge/front-alt.svg",
  44974. extra: 708/664,
  44975. bottom: 13/721
  44976. }
  44977. },
  44978. back: {
  44979. height: math.unit(20, "feet"),
  44980. name: "Back",
  44981. image: {
  44982. source: "./media/characters/fledge/back.svg",
  44983. extra: 718/634,
  44984. bottom: 22/740
  44985. }
  44986. },
  44987. head: {
  44988. height: math.unit(5.55, "feet"),
  44989. name: "Head",
  44990. image: {
  44991. source: "./media/characters/fledge/head.svg"
  44992. }
  44993. },
  44994. headAlt: {
  44995. height: math.unit(5.1, "feet"),
  44996. name: "Head (Alt)",
  44997. image: {
  44998. source: "./media/characters/fledge/head-alt.svg"
  44999. }
  45000. },
  45001. },
  45002. [
  45003. {
  45004. name: "Small",
  45005. height: math.unit(6 + 2/12, "feet")
  45006. },
  45007. {
  45008. name: "Big",
  45009. height: math.unit(20, "feet"),
  45010. default: true
  45011. },
  45012. {
  45013. name: "Giant",
  45014. height: math.unit(100, "feet")
  45015. },
  45016. {
  45017. name: "Macro",
  45018. height: math.unit(200, "feet")
  45019. },
  45020. ]
  45021. ))
  45022. characterMakers.push(() => makeCharacter(
  45023. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45024. {
  45025. front: {
  45026. height: math.unit(1, "meter"),
  45027. name: "Front",
  45028. image: {
  45029. source: "./media/characters/atlas-morenai/front.svg",
  45030. extra: 1275/1043,
  45031. bottom: 19/1294
  45032. }
  45033. },
  45034. back: {
  45035. height: math.unit(1, "meter"),
  45036. name: "Back",
  45037. image: {
  45038. source: "./media/characters/atlas-morenai/back.svg",
  45039. extra: 1141/1001,
  45040. bottom: 25/1166
  45041. }
  45042. },
  45043. },
  45044. [
  45045. {
  45046. name: "Normal",
  45047. height: math.unit(1, "meter"),
  45048. default: true
  45049. },
  45050. {
  45051. name: "Magic-Infused",
  45052. height: math.unit(5, "meters")
  45053. },
  45054. ]
  45055. ))
  45056. characterMakers.push(() => makeCharacter(
  45057. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45058. {
  45059. front: {
  45060. height: math.unit(5, "meters"),
  45061. name: "Front",
  45062. image: {
  45063. source: "./media/characters/cintia/front.svg",
  45064. extra: 1312/1228,
  45065. bottom: 38/1350
  45066. }
  45067. },
  45068. back: {
  45069. height: math.unit(5, "meters"),
  45070. name: "Back",
  45071. image: {
  45072. source: "./media/characters/cintia/back.svg",
  45073. extra: 1260/1166,
  45074. bottom: 98/1358
  45075. }
  45076. },
  45077. frontDick: {
  45078. height: math.unit(5, "meters"),
  45079. name: "Front (Dick)",
  45080. image: {
  45081. source: "./media/characters/cintia/front-dick.svg",
  45082. extra: 1312/1228,
  45083. bottom: 38/1350
  45084. }
  45085. },
  45086. backDick: {
  45087. height: math.unit(5, "meters"),
  45088. name: "Back (Dick)",
  45089. image: {
  45090. source: "./media/characters/cintia/back-dick.svg",
  45091. extra: 1260/1166,
  45092. bottom: 98/1358
  45093. }
  45094. },
  45095. bust: {
  45096. height: math.unit(1.97, "meters"),
  45097. name: "Bust",
  45098. image: {
  45099. source: "./media/characters/cintia/bust.svg",
  45100. extra: 617/565,
  45101. bottom: 0/617
  45102. }
  45103. },
  45104. },
  45105. [
  45106. {
  45107. name: "Normal",
  45108. height: math.unit(5, "meters"),
  45109. default: true
  45110. },
  45111. ]
  45112. ))
  45113. characterMakers.push(() => makeCharacter(
  45114. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45115. {
  45116. side: {
  45117. height: math.unit(100, "feet"),
  45118. name: "Side",
  45119. image: {
  45120. source: "./media/characters/denora/side.svg",
  45121. extra: 875/803,
  45122. bottom: 9/884
  45123. }
  45124. },
  45125. },
  45126. [
  45127. {
  45128. name: "Standard",
  45129. height: math.unit(100, "feet"),
  45130. default: true
  45131. },
  45132. {
  45133. name: "Grand",
  45134. height: math.unit(1000, "feet")
  45135. },
  45136. {
  45137. name: "Conquering",
  45138. height: math.unit(10000, "feet")
  45139. },
  45140. ]
  45141. ))
  45142. characterMakers.push(() => makeCharacter(
  45143. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45144. {
  45145. dressed: {
  45146. height: math.unit(8 + 5/12, "feet"),
  45147. weight: math.unit(700, "lb"),
  45148. name: "Dressed",
  45149. image: {
  45150. source: "./media/characters/kiva/dressed.svg",
  45151. extra: 1102/1055,
  45152. bottom: 60/1162
  45153. }
  45154. },
  45155. nude: {
  45156. height: math.unit(8 + 5/12, "feet"),
  45157. weight: math.unit(700, "lb"),
  45158. name: "Nude",
  45159. image: {
  45160. source: "./media/characters/kiva/nude.svg",
  45161. extra: 1102/1055,
  45162. bottom: 60/1162
  45163. }
  45164. },
  45165. },
  45166. [
  45167. {
  45168. name: "Base Height",
  45169. height: math.unit(8 + 5/12, "feet"),
  45170. default: true
  45171. },
  45172. {
  45173. name: "Macro",
  45174. height: math.unit(100, "feet")
  45175. },
  45176. {
  45177. name: "Max",
  45178. height: math.unit(3280, "feet")
  45179. },
  45180. ]
  45181. ))
  45182. characterMakers.push(() => makeCharacter(
  45183. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45184. {
  45185. front: {
  45186. height: math.unit(6 + 8/12, "feet"),
  45187. weight: math.unit(250, "lb"),
  45188. name: "Front",
  45189. image: {
  45190. source: "./media/characters/ztragon/front.svg",
  45191. extra: 1825/1684,
  45192. bottom: 98/1923
  45193. }
  45194. },
  45195. },
  45196. [
  45197. {
  45198. name: "Normal",
  45199. height: math.unit(6 + 8/12, "feet"),
  45200. default: true
  45201. },
  45202. {
  45203. name: "Macro",
  45204. height: math.unit(80, "feet")
  45205. },
  45206. ]
  45207. ))
  45208. characterMakers.push(() => makeCharacter(
  45209. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45210. {
  45211. front: {
  45212. height: math.unit(10.4, "feet"),
  45213. weight: math.unit(2, "tons"),
  45214. name: "Front",
  45215. image: {
  45216. source: "./media/characters/yesenia/front.svg",
  45217. extra: 1479/1474,
  45218. bottom: 233/1712
  45219. }
  45220. },
  45221. },
  45222. [
  45223. {
  45224. name: "Normal",
  45225. height: math.unit(10.4, "feet"),
  45226. default: true
  45227. },
  45228. ]
  45229. ))
  45230. characterMakers.push(() => makeCharacter(
  45231. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45232. {
  45233. normal: {
  45234. height: math.unit(6 + 1/12, "feet"),
  45235. weight: math.unit(180, "lb"),
  45236. name: "Normal",
  45237. image: {
  45238. source: "./media/characters/leanne-lycheborne/normal.svg",
  45239. extra: 1748/1660,
  45240. bottom: 98/1846
  45241. }
  45242. },
  45243. were: {
  45244. height: math.unit(12, "feet"),
  45245. weight: math.unit(1600, "lb"),
  45246. name: "Were",
  45247. image: {
  45248. source: "./media/characters/leanne-lycheborne/were.svg",
  45249. extra: 1485/1432,
  45250. bottom: 66/1551
  45251. }
  45252. },
  45253. },
  45254. [
  45255. {
  45256. name: "Normal",
  45257. height: math.unit(6 + 1/12, "feet"),
  45258. default: true
  45259. },
  45260. ]
  45261. ))
  45262. characterMakers.push(() => makeCharacter(
  45263. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45264. {
  45265. side: {
  45266. height: math.unit(13, "feet"),
  45267. name: "Side",
  45268. image: {
  45269. source: "./media/characters/kira-tyler/side.svg",
  45270. extra: 693/393,
  45271. bottom: 58/751
  45272. }
  45273. },
  45274. },
  45275. [
  45276. {
  45277. name: "Normal",
  45278. height: math.unit(13, "feet"),
  45279. default: true
  45280. },
  45281. ]
  45282. ))
  45283. characterMakers.push(() => makeCharacter(
  45284. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45285. {
  45286. front: {
  45287. height: math.unit(10.3, "feet"),
  45288. weight: math.unit(150, "lb"),
  45289. name: "Front",
  45290. image: {
  45291. source: "./media/characters/blaze/front.svg",
  45292. extra: 1378/1286,
  45293. bottom: 172/1550
  45294. }
  45295. },
  45296. },
  45297. [
  45298. {
  45299. name: "Normal",
  45300. height: math.unit(10.3, "feet"),
  45301. default: true
  45302. },
  45303. ]
  45304. ))
  45305. characterMakers.push(() => makeCharacter(
  45306. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45307. {
  45308. side: {
  45309. height: math.unit(2, "meters"),
  45310. weight: math.unit(400, "kg"),
  45311. name: "Side",
  45312. image: {
  45313. source: "./media/characters/anu/side.svg",
  45314. extra: 506/394,
  45315. bottom: 18/524
  45316. }
  45317. },
  45318. },
  45319. [
  45320. {
  45321. name: "Humanoid",
  45322. height: math.unit(2, "meters")
  45323. },
  45324. {
  45325. name: "Normal",
  45326. height: math.unit(5, "meters"),
  45327. default: true
  45328. },
  45329. ]
  45330. ))
  45331. characterMakers.push(() => makeCharacter(
  45332. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45333. {
  45334. front: {
  45335. height: math.unit(5 + 5/12, "feet"),
  45336. weight: math.unit(170, "lb"),
  45337. name: "Front",
  45338. image: {
  45339. source: "./media/characters/synx-the-lynx/front.svg",
  45340. extra: 1893/1745,
  45341. bottom: 17/1910
  45342. }
  45343. },
  45344. side: {
  45345. height: math.unit(5 + 5/12, "feet"),
  45346. weight: math.unit(170, "lb"),
  45347. name: "Side",
  45348. image: {
  45349. source: "./media/characters/synx-the-lynx/side.svg",
  45350. extra: 1884/1740,
  45351. bottom: 39/1923
  45352. }
  45353. },
  45354. back: {
  45355. height: math.unit(5 + 5/12, "feet"),
  45356. weight: math.unit(170, "lb"),
  45357. name: "Back",
  45358. image: {
  45359. source: "./media/characters/synx-the-lynx/back.svg",
  45360. extra: 1903/1755,
  45361. bottom: 14/1917
  45362. }
  45363. },
  45364. },
  45365. [
  45366. {
  45367. name: "Normal",
  45368. height: math.unit(5 + 5/12, "feet"),
  45369. default: true
  45370. },
  45371. ]
  45372. ))
  45373. characterMakers.push(() => makeCharacter(
  45374. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45375. {
  45376. back: {
  45377. height: math.unit(15, "feet"),
  45378. name: "Back",
  45379. image: {
  45380. source: "./media/characters/nadezda-fex/back.svg",
  45381. extra: 1695/1481,
  45382. bottom: 25/1720
  45383. }
  45384. },
  45385. },
  45386. [
  45387. {
  45388. name: "Normal",
  45389. height: math.unit(15, "feet"),
  45390. default: true
  45391. },
  45392. {
  45393. name: "Macro",
  45394. height: math.unit(2.5, "miles")
  45395. },
  45396. {
  45397. name: "Goddess",
  45398. height: math.unit(2, "multiverses")
  45399. },
  45400. ]
  45401. ))
  45402. characterMakers.push(() => makeCharacter(
  45403. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45404. {
  45405. front: {
  45406. height: math.unit(216, "cm"),
  45407. name: "Front",
  45408. image: {
  45409. source: "./media/characters/lev/front.svg",
  45410. extra: 1728/1670,
  45411. bottom: 82/1810
  45412. }
  45413. },
  45414. back: {
  45415. height: math.unit(216, "cm"),
  45416. name: "Back",
  45417. image: {
  45418. source: "./media/characters/lev/back.svg",
  45419. extra: 1738/1675,
  45420. bottom: 24/1762
  45421. }
  45422. },
  45423. dressed: {
  45424. height: math.unit(216, "cm"),
  45425. name: "Dressed",
  45426. image: {
  45427. source: "./media/characters/lev/dressed.svg",
  45428. extra: 1397/1351,
  45429. bottom: 73/1470
  45430. }
  45431. },
  45432. head: {
  45433. height: math.unit(0.51, "meter"),
  45434. name: "Head",
  45435. image: {
  45436. source: "./media/characters/lev/head.svg"
  45437. }
  45438. },
  45439. },
  45440. [
  45441. {
  45442. name: "Normal",
  45443. height: math.unit(216, "cm"),
  45444. default: true
  45445. },
  45446. {
  45447. name: "Relatively Macro",
  45448. height: math.unit(80, "meters")
  45449. },
  45450. {
  45451. name: "Megamacro",
  45452. height: math.unit(21600, "meters")
  45453. },
  45454. {
  45455. name: "Megamacro+",
  45456. height: math.unit(64800, "meters")
  45457. },
  45458. ]
  45459. ))
  45460. characterMakers.push(() => makeCharacter(
  45461. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45462. {
  45463. front: {
  45464. height: math.unit(2, "meters"),
  45465. weight: math.unit(80, "kg"),
  45466. name: "Front",
  45467. image: {
  45468. source: "./media/characters/moka/front.svg",
  45469. extra: 1337/1255,
  45470. bottom: 58/1395
  45471. }
  45472. },
  45473. },
  45474. [
  45475. {
  45476. name: "Micro",
  45477. height: math.unit(15, "cm")
  45478. },
  45479. {
  45480. name: "Normal",
  45481. height: math.unit(2, "meters"),
  45482. default: true
  45483. },
  45484. {
  45485. name: "Macro",
  45486. height: math.unit(20, "meters"),
  45487. },
  45488. ]
  45489. ))
  45490. characterMakers.push(() => makeCharacter(
  45491. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45492. {
  45493. front: {
  45494. height: math.unit(9, "feet"),
  45495. weight: math.unit(240, "lb"),
  45496. name: "Front",
  45497. image: {
  45498. source: "./media/characters/kuzco/front.svg",
  45499. extra: 1593/1487,
  45500. bottom: 32/1625
  45501. }
  45502. },
  45503. side: {
  45504. height: math.unit(9, "feet"),
  45505. weight: math.unit(240, "lb"),
  45506. name: "Side",
  45507. image: {
  45508. source: "./media/characters/kuzco/side.svg",
  45509. extra: 1575/1485,
  45510. bottom: 30/1605
  45511. }
  45512. },
  45513. back: {
  45514. height: math.unit(9, "feet"),
  45515. weight: math.unit(240, "lb"),
  45516. name: "Back",
  45517. image: {
  45518. source: "./media/characters/kuzco/back.svg",
  45519. extra: 1603/1514,
  45520. bottom: 14/1617
  45521. }
  45522. },
  45523. },
  45524. [
  45525. {
  45526. name: "Normal",
  45527. height: math.unit(9, "feet"),
  45528. default: true
  45529. },
  45530. ]
  45531. ))
  45532. characterMakers.push(() => makeCharacter(
  45533. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45534. {
  45535. side: {
  45536. height: math.unit(2, "meters"),
  45537. weight: math.unit(300, "kg"),
  45538. name: "Side",
  45539. image: {
  45540. source: "./media/characters/ceruleus/side.svg",
  45541. extra: 1068/974,
  45542. bottom: 126/1194
  45543. }
  45544. },
  45545. },
  45546. [
  45547. {
  45548. name: "Normal",
  45549. height: math.unit(16, "meters"),
  45550. default: true
  45551. },
  45552. ]
  45553. ))
  45554. characterMakers.push(() => makeCharacter(
  45555. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45556. {
  45557. front: {
  45558. height: math.unit(9, "feet"),
  45559. weight: math.unit(500, "kg"),
  45560. name: "Front",
  45561. image: {
  45562. source: "./media/characters/acouya/front.svg",
  45563. extra: 1660/1473,
  45564. bottom: 28/1688
  45565. }
  45566. },
  45567. },
  45568. [
  45569. {
  45570. name: "Normal",
  45571. height: math.unit(9, "feet"),
  45572. default: true
  45573. },
  45574. ]
  45575. ))
  45576. characterMakers.push(() => makeCharacter(
  45577. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45578. {
  45579. front: {
  45580. height: math.unit(5 + 6/12, "feet"),
  45581. weight: math.unit(195, "lb"),
  45582. name: "Front",
  45583. image: {
  45584. source: "./media/characters/vant/front.svg",
  45585. extra: 1396/1320,
  45586. bottom: 20/1416
  45587. }
  45588. },
  45589. back: {
  45590. height: math.unit(5 + 6/12, "feet"),
  45591. weight: math.unit(195, "lb"),
  45592. name: "Back",
  45593. image: {
  45594. source: "./media/characters/vant/back.svg",
  45595. extra: 1396/1320,
  45596. bottom: 20/1416
  45597. }
  45598. },
  45599. maw: {
  45600. height: math.unit(0.75, "feet"),
  45601. name: "Maw",
  45602. image: {
  45603. source: "./media/characters/vant/maw.svg"
  45604. }
  45605. },
  45606. paw: {
  45607. height: math.unit(1.07, "feet"),
  45608. name: "Paw",
  45609. image: {
  45610. source: "./media/characters/vant/paw.svg"
  45611. }
  45612. },
  45613. },
  45614. [
  45615. {
  45616. name: "Micro",
  45617. height: math.unit(0.25, "inches")
  45618. },
  45619. {
  45620. name: "Normal",
  45621. height: math.unit(5 + 6/12, "feet"),
  45622. default: true
  45623. },
  45624. {
  45625. name: "Macro",
  45626. height: math.unit(75, "feet")
  45627. },
  45628. ]
  45629. ))
  45630. characterMakers.push(() => makeCharacter(
  45631. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45632. {
  45633. front: {
  45634. height: math.unit(30, "meters"),
  45635. weight: math.unit(363, "tons"),
  45636. name: "Front",
  45637. image: {
  45638. source: "./media/characters/ahra/front.svg",
  45639. extra: 1914/1814,
  45640. bottom: 46/1960
  45641. }
  45642. },
  45643. },
  45644. [
  45645. {
  45646. name: "Macro",
  45647. height: math.unit(30, "meters"),
  45648. default: true
  45649. },
  45650. ]
  45651. ))
  45652. characterMakers.push(() => makeCharacter(
  45653. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45654. {
  45655. undressed: {
  45656. height: math.unit(2, "m"),
  45657. weight: math.unit(250, "kg"),
  45658. name: "Undressed",
  45659. image: {
  45660. source: "./media/characters/coriander/undressed.svg",
  45661. extra: 1757/1606,
  45662. bottom: 107/1864
  45663. }
  45664. },
  45665. dressed: {
  45666. height: math.unit(2, "m"),
  45667. weight: math.unit(250, "kg"),
  45668. name: "Dressed",
  45669. image: {
  45670. source: "./media/characters/coriander/dressed.svg",
  45671. extra: 1757/1606,
  45672. bottom: 107/1864
  45673. }
  45674. },
  45675. },
  45676. [
  45677. {
  45678. name: "Normal",
  45679. height: math.unit(4, "meters"),
  45680. default: true
  45681. },
  45682. {
  45683. name: "XL",
  45684. height: math.unit(6, "meters")
  45685. },
  45686. {
  45687. name: "XXL",
  45688. height: math.unit(8, "meters")
  45689. },
  45690. ]
  45691. ))
  45692. characterMakers.push(() => makeCharacter(
  45693. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45694. {
  45695. front: {
  45696. height: math.unit(6, "feet"),
  45697. name: "Front",
  45698. image: {
  45699. source: "./media/characters/syrinx/front.svg",
  45700. extra: 1557/1259,
  45701. bottom: 171/1728
  45702. }
  45703. },
  45704. },
  45705. [
  45706. {
  45707. name: "Normal",
  45708. height: math.unit(6 + 3/12, "feet"),
  45709. default: true
  45710. },
  45711. ]
  45712. ))
  45713. characterMakers.push(() => makeCharacter(
  45714. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45715. {
  45716. front: {
  45717. height: math.unit(11 + 6/12, "feet"),
  45718. weight: math.unit(1.5, "tons"),
  45719. name: "Front",
  45720. image: {
  45721. source: "./media/characters/bor/front.svg",
  45722. extra: 1189/1109,
  45723. bottom: 170/1359
  45724. }
  45725. },
  45726. },
  45727. [
  45728. {
  45729. name: "Normal",
  45730. height: math.unit(11 + 6/12, "feet"),
  45731. default: true
  45732. },
  45733. {
  45734. name: "Macro",
  45735. height: math.unit(32 + 9/12, "feet")
  45736. },
  45737. ]
  45738. ))
  45739. characterMakers.push(() => makeCharacter(
  45740. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45741. {
  45742. anthro: {
  45743. height: math.unit(9, "feet"),
  45744. weight: math.unit(2076, "lb"),
  45745. name: "Anthro",
  45746. image: {
  45747. source: "./media/characters/abacus/anthro.svg",
  45748. extra: 1540/1494,
  45749. bottom: 233/1773
  45750. }
  45751. },
  45752. pigeon: {
  45753. height: math.unit(1, "feet"),
  45754. name: "Pigeon",
  45755. image: {
  45756. source: "./media/characters/abacus/pigeon.svg",
  45757. extra: 528/525,
  45758. bottom: 46/574
  45759. }
  45760. },
  45761. },
  45762. [
  45763. {
  45764. name: "Normal",
  45765. height: math.unit(9, "feet"),
  45766. default: true
  45767. },
  45768. ]
  45769. ))
  45770. characterMakers.push(() => makeCharacter(
  45771. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45772. {
  45773. side: {
  45774. height: math.unit(6, "feet"),
  45775. name: "Side",
  45776. image: {
  45777. source: "./media/characters/delkhan/side.svg",
  45778. extra: 1884/1786,
  45779. bottom: 308/2192
  45780. }
  45781. },
  45782. head: {
  45783. height: math.unit(3.38, "feet"),
  45784. name: "Head",
  45785. image: {
  45786. source: "./media/characters/delkhan/head.svg"
  45787. }
  45788. },
  45789. },
  45790. [
  45791. {
  45792. name: "Normal",
  45793. height: math.unit(72, "feet"),
  45794. default: true
  45795. },
  45796. {
  45797. name: "Giant",
  45798. height: math.unit(172, "feet")
  45799. },
  45800. ]
  45801. ))
  45802. characterMakers.push(() => makeCharacter(
  45803. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45804. {
  45805. standing: {
  45806. height: math.unit(6, "feet"),
  45807. name: "Standing",
  45808. image: {
  45809. source: "./media/characters/euchidat/standing.svg",
  45810. extra: 1612/1553,
  45811. bottom: 116/1728
  45812. }
  45813. },
  45814. leaning: {
  45815. height: math.unit(6, "feet"),
  45816. name: "Leaning",
  45817. image: {
  45818. source: "./media/characters/euchidat/leaning.svg",
  45819. extra: 1719/1674,
  45820. bottom: 27/1746
  45821. }
  45822. },
  45823. },
  45824. [
  45825. {
  45826. name: "Normal",
  45827. height: math.unit(175, "feet"),
  45828. default: true
  45829. },
  45830. {
  45831. name: "Megamacro",
  45832. height: math.unit(190, "miles")
  45833. },
  45834. {
  45835. name: "Gigamacro",
  45836. height: math.unit(190000, "miles")
  45837. },
  45838. ]
  45839. ))
  45840. characterMakers.push(() => makeCharacter(
  45841. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45842. {
  45843. front: {
  45844. height: math.unit(6, "feet"),
  45845. weight: math.unit(150, "lb"),
  45846. name: "Front",
  45847. image: {
  45848. source: "./media/characters/rebecca-stack/front.svg",
  45849. extra: 1256/1201,
  45850. bottom: 18/1274
  45851. }
  45852. },
  45853. },
  45854. [
  45855. {
  45856. name: "Normal",
  45857. height: math.unit(5 + 8/12, "feet"),
  45858. default: true
  45859. },
  45860. {
  45861. name: "Demolitionist",
  45862. height: math.unit(200, "feet")
  45863. },
  45864. {
  45865. name: "Out of Control",
  45866. height: math.unit(2, "miles")
  45867. },
  45868. {
  45869. name: "Giga",
  45870. height: math.unit(7200, "miles")
  45871. },
  45872. ]
  45873. ))
  45874. characterMakers.push(() => makeCharacter(
  45875. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45876. {
  45877. front: {
  45878. height: math.unit(6, "feet"),
  45879. weight: math.unit(150, "lb"),
  45880. name: "Front",
  45881. image: {
  45882. source: "./media/characters/jenny-cartwright/front.svg",
  45883. extra: 1384/1376,
  45884. bottom: 58/1442
  45885. }
  45886. },
  45887. },
  45888. [
  45889. {
  45890. name: "Normal",
  45891. height: math.unit(6 + 7/12, "feet"),
  45892. default: true
  45893. },
  45894. {
  45895. name: "Librarian",
  45896. height: math.unit(55, "feet")
  45897. },
  45898. {
  45899. name: "Sightseer",
  45900. height: math.unit(50, "miles")
  45901. },
  45902. {
  45903. name: "Giga",
  45904. height: math.unit(30000, "miles")
  45905. },
  45906. ]
  45907. ))
  45908. characterMakers.push(() => makeCharacter(
  45909. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45910. {
  45911. nude: {
  45912. height: math.unit(8, "feet"),
  45913. weight: math.unit(225, "lb"),
  45914. name: "Nude",
  45915. image: {
  45916. source: "./media/characters/marvy/nude.svg",
  45917. extra: 1900/1683,
  45918. bottom: 89/1989
  45919. }
  45920. },
  45921. dressed: {
  45922. height: math.unit(8, "feet"),
  45923. weight: math.unit(225, "lb"),
  45924. name: "Dressed",
  45925. image: {
  45926. source: "./media/characters/marvy/dressed.svg",
  45927. extra: 1900/1683,
  45928. bottom: 89/1989
  45929. }
  45930. },
  45931. head: {
  45932. height: math.unit(2.85, "feet"),
  45933. name: "Head",
  45934. image: {
  45935. source: "./media/characters/marvy/head.svg"
  45936. }
  45937. },
  45938. },
  45939. [
  45940. {
  45941. name: "Normal",
  45942. height: math.unit(8, "feet"),
  45943. default: true
  45944. },
  45945. ]
  45946. ))
  45947. characterMakers.push(() => makeCharacter(
  45948. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45949. {
  45950. front: {
  45951. height: math.unit(8, "feet"),
  45952. weight: math.unit(250, "lb"),
  45953. name: "Front",
  45954. image: {
  45955. source: "./media/characters/leah/front.svg",
  45956. extra: 1257/1149,
  45957. bottom: 109/1366
  45958. }
  45959. },
  45960. },
  45961. [
  45962. {
  45963. name: "Normal",
  45964. height: math.unit(8, "feet"),
  45965. default: true
  45966. },
  45967. {
  45968. name: "Minimacro",
  45969. height: math.unit(40, "feet")
  45970. },
  45971. {
  45972. name: "Macro",
  45973. height: math.unit(124, "feet")
  45974. },
  45975. {
  45976. name: "Megamacro",
  45977. height: math.unit(850, "feet")
  45978. },
  45979. ]
  45980. ))
  45981. characterMakers.push(() => makeCharacter(
  45982. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45983. {
  45984. side: {
  45985. height: math.unit(13 + 6/12, "feet"),
  45986. weight: math.unit(3200, "lb"),
  45987. name: "Side",
  45988. image: {
  45989. source: "./media/characters/alvir/side.svg",
  45990. extra: 896/589,
  45991. bottom: 26/922
  45992. }
  45993. },
  45994. },
  45995. [
  45996. {
  45997. name: "Normal",
  45998. height: math.unit(13 + 6/12, "feet"),
  45999. default: true
  46000. },
  46001. ]
  46002. ))
  46003. characterMakers.push(() => makeCharacter(
  46004. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46005. {
  46006. front: {
  46007. height: math.unit(5 + 4/12, "feet"),
  46008. weight: math.unit(236, "lb"),
  46009. name: "Front",
  46010. image: {
  46011. source: "./media/characters/zaina-khalil/front.svg",
  46012. extra: 1533/1485,
  46013. bottom: 94/1627
  46014. }
  46015. },
  46016. side: {
  46017. height: math.unit(5 + 4/12, "feet"),
  46018. weight: math.unit(236, "lb"),
  46019. name: "Side",
  46020. image: {
  46021. source: "./media/characters/zaina-khalil/side.svg",
  46022. extra: 1537/1498,
  46023. bottom: 66/1603
  46024. }
  46025. },
  46026. back: {
  46027. height: math.unit(5 + 4/12, "feet"),
  46028. weight: math.unit(236, "lb"),
  46029. name: "Back",
  46030. image: {
  46031. source: "./media/characters/zaina-khalil/back.svg",
  46032. extra: 1546/1494,
  46033. bottom: 89/1635
  46034. }
  46035. },
  46036. },
  46037. [
  46038. {
  46039. name: "Normal",
  46040. height: math.unit(5 + 4/12, "feet"),
  46041. default: true
  46042. },
  46043. ]
  46044. ))
  46045. characterMakers.push(() => makeCharacter(
  46046. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46047. {
  46048. side: {
  46049. height: math.unit(12, "feet"),
  46050. weight: math.unit(4000, "lb"),
  46051. name: "Side",
  46052. image: {
  46053. source: "./media/characters/terry/side.svg",
  46054. extra: 1518/1439,
  46055. bottom: 149/1667
  46056. }
  46057. },
  46058. },
  46059. [
  46060. {
  46061. name: "Normal",
  46062. height: math.unit(12, "feet"),
  46063. default: true
  46064. },
  46065. ]
  46066. ))
  46067. characterMakers.push(() => makeCharacter(
  46068. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46069. {
  46070. front: {
  46071. height: math.unit(12, "feet"),
  46072. weight: math.unit(1500, "lb"),
  46073. name: "Front",
  46074. image: {
  46075. source: "./media/characters/kahea/front.svg",
  46076. extra: 1722/1617,
  46077. bottom: 179/1901
  46078. }
  46079. },
  46080. },
  46081. [
  46082. {
  46083. name: "Normal",
  46084. height: math.unit(12, "feet"),
  46085. default: true
  46086. },
  46087. ]
  46088. ))
  46089. characterMakers.push(() => makeCharacter(
  46090. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46091. {
  46092. demonFront: {
  46093. height: math.unit(36, "feet"),
  46094. name: "Front",
  46095. image: {
  46096. source: "./media/characters/alex-xuria/demon-front.svg",
  46097. extra: 1705/1673,
  46098. bottom: 198/1903
  46099. },
  46100. form: "demon",
  46101. default: true
  46102. },
  46103. demonBack: {
  46104. height: math.unit(36, "feet"),
  46105. name: "Back",
  46106. image: {
  46107. source: "./media/characters/alex-xuria/demon-back.svg",
  46108. extra: 1725/1693,
  46109. bottom: 70/1795
  46110. },
  46111. form: "demon"
  46112. },
  46113. demonHead: {
  46114. height: math.unit(2.14, "meters"),
  46115. name: "Head",
  46116. image: {
  46117. source: "./media/characters/alex-xuria/demon-head.svg"
  46118. },
  46119. form: "demon"
  46120. },
  46121. demonHand: {
  46122. height: math.unit(1.61, "meters"),
  46123. name: "Hand",
  46124. image: {
  46125. source: "./media/characters/alex-xuria/demon-hand.svg"
  46126. },
  46127. form: "demon"
  46128. },
  46129. demonPaw: {
  46130. height: math.unit(1.35, "meters"),
  46131. name: "Paw",
  46132. image: {
  46133. source: "./media/characters/alex-xuria/demon-paw.svg"
  46134. },
  46135. form: "demon"
  46136. },
  46137. demonFoot: {
  46138. height: math.unit(2.2, "meters"),
  46139. name: "Foot",
  46140. image: {
  46141. source: "./media/characters/alex-xuria/demon-foot.svg"
  46142. },
  46143. form: "demon"
  46144. },
  46145. demonCock: {
  46146. height: math.unit(1.74, "meters"),
  46147. name: "Cock",
  46148. image: {
  46149. source: "./media/characters/alex-xuria/demon-cock.svg"
  46150. },
  46151. form: "demon"
  46152. },
  46153. demonTailClosed: {
  46154. height: math.unit(1.47, "meters"),
  46155. name: "Tail (Closed)",
  46156. image: {
  46157. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46158. },
  46159. form: "demon"
  46160. },
  46161. demonTailOpen: {
  46162. height: math.unit(2.85, "meters"),
  46163. name: "Tail (Open)",
  46164. image: {
  46165. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46166. },
  46167. form: "demon"
  46168. },
  46169. incubusFront: {
  46170. height: math.unit(12, "feet"),
  46171. name: "Front",
  46172. image: {
  46173. source: "./media/characters/alex-xuria/incubus-front.svg",
  46174. extra: 1754/1677,
  46175. bottom: 125/1879
  46176. },
  46177. form: "incubus",
  46178. default: true
  46179. },
  46180. incubusBack: {
  46181. height: math.unit(12, "feet"),
  46182. name: "Back",
  46183. image: {
  46184. source: "./media/characters/alex-xuria/incubus-back.svg",
  46185. extra: 1702/1647,
  46186. bottom: 30/1732
  46187. },
  46188. form: "incubus"
  46189. },
  46190. incubusHead: {
  46191. height: math.unit(3.45, "feet"),
  46192. name: "Head",
  46193. image: {
  46194. source: "./media/characters/alex-xuria/incubus-head.svg"
  46195. },
  46196. form: "incubus"
  46197. },
  46198. rabbitFront: {
  46199. height: math.unit(6, "feet"),
  46200. name: "Front",
  46201. image: {
  46202. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46203. extra: 1369/1349,
  46204. bottom: 45/1414
  46205. },
  46206. form: "rabbit",
  46207. default: true
  46208. },
  46209. rabbitSide: {
  46210. height: math.unit(6, "feet"),
  46211. name: "Side",
  46212. image: {
  46213. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46214. extra: 1370/1356,
  46215. bottom: 37/1407
  46216. },
  46217. form: "rabbit"
  46218. },
  46219. rabbitBack: {
  46220. height: math.unit(6, "feet"),
  46221. name: "Back",
  46222. image: {
  46223. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46224. extra: 1375/1358,
  46225. bottom: 43/1418
  46226. },
  46227. form: "rabbit"
  46228. },
  46229. },
  46230. [
  46231. {
  46232. name: "Normal",
  46233. height: math.unit(6, "feet"),
  46234. default: true,
  46235. form: "rabbit"
  46236. },
  46237. {
  46238. name: "Incubus",
  46239. height: math.unit(12, "feet"),
  46240. default: true,
  46241. form: "incubus"
  46242. },
  46243. {
  46244. name: "Demon",
  46245. height: math.unit(36, "feet"),
  46246. default: true,
  46247. form: "demon"
  46248. }
  46249. ],
  46250. {
  46251. "demon": {
  46252. name: "Demon",
  46253. default: true
  46254. },
  46255. "incubus": {
  46256. name: "Incubus",
  46257. },
  46258. "rabbit": {
  46259. name: "Rabbit"
  46260. }
  46261. }
  46262. ))
  46263. characterMakers.push(() => makeCharacter(
  46264. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46265. {
  46266. front: {
  46267. height: math.unit(7 + 5/12, "feet"),
  46268. weight: math.unit(510, "lb"),
  46269. name: "Front",
  46270. image: {
  46271. source: "./media/characters/syrup/front.svg",
  46272. extra: 932/916,
  46273. bottom: 26/958
  46274. }
  46275. },
  46276. },
  46277. [
  46278. {
  46279. name: "Normal",
  46280. height: math.unit(7 + 5/12, "feet"),
  46281. default: true
  46282. },
  46283. {
  46284. name: "Big",
  46285. height: math.unit(50, "feet")
  46286. },
  46287. {
  46288. name: "Macro",
  46289. height: math.unit(300, "feet")
  46290. },
  46291. {
  46292. name: "Megamacro",
  46293. height: math.unit(1, "mile")
  46294. },
  46295. ]
  46296. ))
  46297. characterMakers.push(() => makeCharacter(
  46298. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46299. {
  46300. front: {
  46301. height: math.unit(6 + 9/12, "feet"),
  46302. name: "Front",
  46303. image: {
  46304. source: "./media/characters/zeimne/front.svg",
  46305. extra: 1969/1806,
  46306. bottom: 53/2022
  46307. }
  46308. },
  46309. },
  46310. [
  46311. {
  46312. name: "Normal",
  46313. height: math.unit(6 + 9/12, "feet"),
  46314. default: true
  46315. },
  46316. {
  46317. name: "Giant",
  46318. height: math.unit(550, "feet")
  46319. },
  46320. {
  46321. name: "Mega",
  46322. height: math.unit(3, "miles")
  46323. },
  46324. {
  46325. name: "Giga",
  46326. height: math.unit(250, "miles")
  46327. },
  46328. {
  46329. name: "Tera",
  46330. height: math.unit(1, "AU")
  46331. },
  46332. ]
  46333. ))
  46334. characterMakers.push(() => makeCharacter(
  46335. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46336. {
  46337. front: {
  46338. height: math.unit(5 + 2/12, "feet"),
  46339. name: "Front",
  46340. image: {
  46341. source: "./media/characters/grar/front.svg",
  46342. extra: 1331/1119,
  46343. bottom: 60/1391
  46344. }
  46345. },
  46346. back: {
  46347. height: math.unit(5 + 2/12, "feet"),
  46348. name: "Back",
  46349. image: {
  46350. source: "./media/characters/grar/back.svg",
  46351. extra: 1385/1169,
  46352. bottom: 23/1408
  46353. }
  46354. },
  46355. },
  46356. [
  46357. {
  46358. name: "Normal",
  46359. height: math.unit(5 + 2/12, "feet"),
  46360. default: true
  46361. },
  46362. ]
  46363. ))
  46364. characterMakers.push(() => makeCharacter(
  46365. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46366. {
  46367. front: {
  46368. height: math.unit(13 + 7/12, "feet"),
  46369. weight: math.unit(2200, "lb"),
  46370. name: "Front",
  46371. image: {
  46372. source: "./media/characters/endraya/front.svg",
  46373. extra: 1289/1215,
  46374. bottom: 50/1339
  46375. }
  46376. },
  46377. nude: {
  46378. height: math.unit(13 + 7/12, "feet"),
  46379. weight: math.unit(2200, "lb"),
  46380. name: "Nude",
  46381. image: {
  46382. source: "./media/characters/endraya/nude.svg",
  46383. extra: 1247/1171,
  46384. bottom: 40/1287
  46385. }
  46386. },
  46387. head: {
  46388. height: math.unit(2.6, "feet"),
  46389. name: "Head",
  46390. image: {
  46391. source: "./media/characters/endraya/head.svg"
  46392. }
  46393. },
  46394. slit: {
  46395. height: math.unit(3.4, "feet"),
  46396. name: "Slit",
  46397. image: {
  46398. source: "./media/characters/endraya/slit.svg"
  46399. }
  46400. },
  46401. },
  46402. [
  46403. {
  46404. name: "Normal",
  46405. height: math.unit(13 + 7/12, "feet"),
  46406. default: true
  46407. },
  46408. {
  46409. name: "Macro",
  46410. height: math.unit(200, "feet")
  46411. },
  46412. ]
  46413. ))
  46414. characterMakers.push(() => makeCharacter(
  46415. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46416. {
  46417. front: {
  46418. height: math.unit(1.81, "meters"),
  46419. weight: math.unit(69, "kg"),
  46420. name: "Front",
  46421. image: {
  46422. source: "./media/characters/rodryana/front.svg",
  46423. extra: 2002/1921,
  46424. bottom: 53/2055
  46425. }
  46426. },
  46427. back: {
  46428. height: math.unit(1.81, "meters"),
  46429. weight: math.unit(69, "kg"),
  46430. name: "Back",
  46431. image: {
  46432. source: "./media/characters/rodryana/back.svg",
  46433. extra: 1993/1926,
  46434. bottom: 48/2041
  46435. }
  46436. },
  46437. maw: {
  46438. height: math.unit(0.19769417475, "meters"),
  46439. name: "Maw",
  46440. image: {
  46441. source: "./media/characters/rodryana/maw.svg"
  46442. }
  46443. },
  46444. slit: {
  46445. height: math.unit(0.31631067961, "meters"),
  46446. name: "Slit",
  46447. image: {
  46448. source: "./media/characters/rodryana/slit.svg"
  46449. }
  46450. },
  46451. },
  46452. [
  46453. {
  46454. name: "Normal",
  46455. height: math.unit(1.81, "meters")
  46456. },
  46457. {
  46458. name: "Mini Macro",
  46459. height: math.unit(181, "meters")
  46460. },
  46461. {
  46462. name: "Macro",
  46463. height: math.unit(452, "meters"),
  46464. default: true
  46465. },
  46466. {
  46467. name: "Mega Macro",
  46468. height: math.unit(1.375, "km")
  46469. },
  46470. {
  46471. name: "Giga Macro",
  46472. height: math.unit(13.575, "km")
  46473. },
  46474. ]
  46475. ))
  46476. characterMakers.push(() => makeCharacter(
  46477. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46478. {
  46479. front: {
  46480. height: math.unit(6, "feet"),
  46481. weight: math.unit(1000, "lb"),
  46482. name: "Front",
  46483. image: {
  46484. source: "./media/characters/asaya/front.svg",
  46485. extra: 1460/1200,
  46486. bottom: 71/1531
  46487. }
  46488. },
  46489. },
  46490. [
  46491. {
  46492. name: "Normal",
  46493. height: math.unit(8, "km"),
  46494. default: true
  46495. },
  46496. ]
  46497. ))
  46498. characterMakers.push(() => makeCharacter(
  46499. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46500. {
  46501. front: {
  46502. height: math.unit(3.5, "meters"),
  46503. name: "Front",
  46504. image: {
  46505. source: "./media/characters/sarzu-and-israz/front.svg",
  46506. extra: 1570/1558,
  46507. bottom: 150/1720
  46508. },
  46509. },
  46510. back: {
  46511. height: math.unit(3.5, "meters"),
  46512. name: "Back",
  46513. image: {
  46514. source: "./media/characters/sarzu-and-israz/back.svg",
  46515. extra: 1523/1509,
  46516. bottom: 132/1655
  46517. },
  46518. },
  46519. frontFemale: {
  46520. height: math.unit(3.5, "meters"),
  46521. name: "Front (Female)",
  46522. image: {
  46523. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46524. extra: 1570/1558,
  46525. bottom: 150/1720
  46526. },
  46527. },
  46528. frontHerm: {
  46529. height: math.unit(3.5, "meters"),
  46530. name: "Front (Herm)",
  46531. image: {
  46532. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46533. extra: 1570/1558,
  46534. bottom: 150/1720
  46535. },
  46536. },
  46537. },
  46538. [
  46539. {
  46540. name: "Normal",
  46541. height: math.unit(3.5, "meters"),
  46542. default: true,
  46543. },
  46544. {
  46545. name: "Macro",
  46546. height: math.unit(65.5, "meters"),
  46547. },
  46548. ],
  46549. ))
  46550. characterMakers.push(() => makeCharacter(
  46551. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46552. {
  46553. front: {
  46554. height: math.unit(6, "feet"),
  46555. weight: math.unit(250, "lb"),
  46556. name: "Front",
  46557. image: {
  46558. source: "./media/characters/zenimma/front.svg",
  46559. extra: 1346/1320,
  46560. bottom: 58/1404
  46561. }
  46562. },
  46563. back: {
  46564. height: math.unit(6, "feet"),
  46565. weight: math.unit(250, "lb"),
  46566. name: "Back",
  46567. image: {
  46568. source: "./media/characters/zenimma/back.svg",
  46569. extra: 1324/1308,
  46570. bottom: 44/1368
  46571. }
  46572. },
  46573. dick: {
  46574. height: math.unit(1.44, "feet"),
  46575. name: "Dick",
  46576. image: {
  46577. source: "./media/characters/zenimma/dick.svg"
  46578. }
  46579. },
  46580. },
  46581. [
  46582. {
  46583. name: "Canon Height",
  46584. height: math.unit(66, "miles"),
  46585. default: true
  46586. },
  46587. ]
  46588. ))
  46589. characterMakers.push(() => makeCharacter(
  46590. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46591. {
  46592. nude: {
  46593. height: math.unit(6, "feet"),
  46594. weight: math.unit(150, "lb"),
  46595. name: "Nude",
  46596. image: {
  46597. source: "./media/characters/shavon/nude.svg",
  46598. extra: 1242/1096,
  46599. bottom: 98/1340
  46600. }
  46601. },
  46602. dressed: {
  46603. height: math.unit(6, "feet"),
  46604. weight: math.unit(150, "lb"),
  46605. name: "Dressed",
  46606. image: {
  46607. source: "./media/characters/shavon/dressed.svg",
  46608. extra: 1242/1096,
  46609. bottom: 98/1340
  46610. }
  46611. },
  46612. },
  46613. [
  46614. {
  46615. name: "Macro",
  46616. height: math.unit(255, "feet"),
  46617. default: true
  46618. },
  46619. ]
  46620. ))
  46621. characterMakers.push(() => makeCharacter(
  46622. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46623. {
  46624. front: {
  46625. height: math.unit(6, "feet"),
  46626. name: "Front",
  46627. image: {
  46628. source: "./media/characters/steph/front.svg",
  46629. extra: 1430/1330,
  46630. bottom: 54/1484
  46631. }
  46632. },
  46633. },
  46634. [
  46635. {
  46636. name: "Normal",
  46637. height: math.unit(6, "feet"),
  46638. default: true
  46639. },
  46640. ]
  46641. ))
  46642. characterMakers.push(() => makeCharacter(
  46643. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46644. {
  46645. front: {
  46646. height: math.unit(9, "feet"),
  46647. weight: math.unit(400, "lb"),
  46648. name: "Front",
  46649. image: {
  46650. source: "./media/characters/kil'aman/front.svg",
  46651. extra: 1210/1159,
  46652. bottom: 109/1319
  46653. }
  46654. },
  46655. head: {
  46656. height: math.unit(2.14, "feet"),
  46657. name: "Head",
  46658. image: {
  46659. source: "./media/characters/kil'aman/head.svg"
  46660. }
  46661. },
  46662. maw: {
  46663. height: math.unit(1.21, "feet"),
  46664. name: "Maw",
  46665. image: {
  46666. source: "./media/characters/kil'aman/maw.svg"
  46667. }
  46668. },
  46669. foot: {
  46670. height: math.unit(1.7, "feet"),
  46671. name: "Foot",
  46672. image: {
  46673. source: "./media/characters/kil'aman/foot.svg"
  46674. }
  46675. },
  46676. dick: {
  46677. height: math.unit(2.1, "feet"),
  46678. name: "Dick",
  46679. image: {
  46680. source: "./media/characters/kil'aman/dick.svg"
  46681. }
  46682. },
  46683. },
  46684. [
  46685. {
  46686. name: "Normal",
  46687. height: math.unit(9, "feet")
  46688. },
  46689. {
  46690. name: "Canon Height",
  46691. height: math.unit(10, "miles"),
  46692. default: true
  46693. },
  46694. {
  46695. name: "Maximum",
  46696. height: math.unit(6e9, "miles")
  46697. },
  46698. ]
  46699. ))
  46700. characterMakers.push(() => makeCharacter(
  46701. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46702. {
  46703. front: {
  46704. height: math.unit(90, "feet"),
  46705. weight: math.unit(675000, "lb"),
  46706. name: "Front",
  46707. image: {
  46708. source: "./media/characters/qadan/front.svg",
  46709. extra: 1012/1004,
  46710. bottom: 78/1090
  46711. }
  46712. },
  46713. back: {
  46714. height: math.unit(90, "feet"),
  46715. weight: math.unit(675000, "lb"),
  46716. name: "Back",
  46717. image: {
  46718. source: "./media/characters/qadan/back.svg",
  46719. extra: 1042/1031,
  46720. bottom: 55/1097
  46721. }
  46722. },
  46723. armored: {
  46724. height: math.unit(90, "feet"),
  46725. weight: math.unit(675000, "lb"),
  46726. name: "Armored",
  46727. image: {
  46728. source: "./media/characters/qadan/armored.svg",
  46729. extra: 1047/1037,
  46730. bottom: 48/1095
  46731. }
  46732. },
  46733. },
  46734. [
  46735. {
  46736. name: "Normal",
  46737. height: math.unit(90, "feet"),
  46738. default: true
  46739. },
  46740. ]
  46741. ))
  46742. characterMakers.push(() => makeCharacter(
  46743. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46744. {
  46745. front: {
  46746. height: math.unit(6, "feet"),
  46747. weight: math.unit(225, "lb"),
  46748. name: "Front",
  46749. image: {
  46750. source: "./media/characters/brooke/front.svg",
  46751. extra: 1050/1010,
  46752. bottom: 66/1116
  46753. }
  46754. },
  46755. back: {
  46756. height: math.unit(6, "feet"),
  46757. weight: math.unit(225, "lb"),
  46758. name: "Back",
  46759. image: {
  46760. source: "./media/characters/brooke/back.svg",
  46761. extra: 1053/1013,
  46762. bottom: 41/1094
  46763. }
  46764. },
  46765. dressed: {
  46766. height: math.unit(6, "feet"),
  46767. weight: math.unit(225, "lb"),
  46768. name: "Dressed",
  46769. image: {
  46770. source: "./media/characters/brooke/dressed.svg",
  46771. extra: 1050/1010,
  46772. bottom: 66/1116
  46773. }
  46774. },
  46775. },
  46776. [
  46777. {
  46778. name: "Canon Height",
  46779. height: math.unit(500, "miles"),
  46780. default: true
  46781. },
  46782. ]
  46783. ))
  46784. characterMakers.push(() => makeCharacter(
  46785. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46786. {
  46787. front: {
  46788. height: math.unit(6 + 2/12, "feet"),
  46789. weight: math.unit(210, "lb"),
  46790. name: "Front",
  46791. image: {
  46792. source: "./media/characters/wubs/front.svg",
  46793. extra: 1345/1325,
  46794. bottom: 70/1415
  46795. }
  46796. },
  46797. back: {
  46798. height: math.unit(6 + 2/12, "feet"),
  46799. weight: math.unit(210, "lb"),
  46800. name: "Back",
  46801. image: {
  46802. source: "./media/characters/wubs/back.svg",
  46803. extra: 1296/1275,
  46804. bottom: 58/1354
  46805. }
  46806. },
  46807. },
  46808. [
  46809. {
  46810. name: "Normal",
  46811. height: math.unit(6 + 2/12, "feet"),
  46812. default: true
  46813. },
  46814. {
  46815. name: "Macro",
  46816. height: math.unit(1000, "feet")
  46817. },
  46818. {
  46819. name: "Megamacro",
  46820. height: math.unit(1, "mile")
  46821. },
  46822. ]
  46823. ))
  46824. characterMakers.push(() => makeCharacter(
  46825. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46826. {
  46827. front: {
  46828. height: math.unit(4, "feet"),
  46829. weight: math.unit(120, "lb"),
  46830. name: "Front",
  46831. image: {
  46832. source: "./media/characters/blue/front.svg",
  46833. extra: 1636/1525,
  46834. bottom: 43/1679
  46835. }
  46836. },
  46837. back: {
  46838. height: math.unit(4, "feet"),
  46839. weight: math.unit(120, "lb"),
  46840. name: "Back",
  46841. image: {
  46842. source: "./media/characters/blue/back.svg",
  46843. extra: 1660/1560,
  46844. bottom: 57/1717
  46845. }
  46846. },
  46847. paws: {
  46848. height: math.unit(0.826, "feet"),
  46849. name: "Paws",
  46850. image: {
  46851. source: "./media/characters/blue/paws.svg"
  46852. }
  46853. },
  46854. },
  46855. [
  46856. {
  46857. name: "Micro",
  46858. height: math.unit(3, "inches")
  46859. },
  46860. {
  46861. name: "Normal",
  46862. height: math.unit(4, "feet"),
  46863. default: true
  46864. },
  46865. {
  46866. name: "Femenine Form",
  46867. height: math.unit(14, "feet")
  46868. },
  46869. {
  46870. name: "Werebat Form",
  46871. height: math.unit(18, "feet")
  46872. },
  46873. ]
  46874. ))
  46875. characterMakers.push(() => makeCharacter(
  46876. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46877. {
  46878. female: {
  46879. height: math.unit(7 + 4/12, "feet"),
  46880. weight: math.unit(243, "lb"),
  46881. name: "Female",
  46882. image: {
  46883. source: "./media/characters/kaya/female.svg",
  46884. extra: 975/898,
  46885. bottom: 34/1009
  46886. }
  46887. },
  46888. herm: {
  46889. height: math.unit(7 + 4/12, "feet"),
  46890. weight: math.unit(243, "lb"),
  46891. name: "Herm",
  46892. image: {
  46893. source: "./media/characters/kaya/herm.svg",
  46894. extra: 975/898,
  46895. bottom: 34/1009
  46896. }
  46897. },
  46898. },
  46899. [
  46900. {
  46901. name: "Normal",
  46902. height: math.unit(7 + 4/12, "feet"),
  46903. default: true
  46904. },
  46905. ]
  46906. ))
  46907. characterMakers.push(() => makeCharacter(
  46908. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46909. {
  46910. female: {
  46911. height: math.unit(9 + 4/12, "feet"),
  46912. weight: math.unit(398, "lb"),
  46913. name: "Female",
  46914. image: {
  46915. source: "./media/characters/kassandra/female.svg",
  46916. extra: 908/839,
  46917. bottom: 61/969
  46918. }
  46919. },
  46920. intersex: {
  46921. height: math.unit(9 + 4/12, "feet"),
  46922. weight: math.unit(398, "lb"),
  46923. name: "Intersex",
  46924. image: {
  46925. source: "./media/characters/kassandra/intersex.svg",
  46926. extra: 908/839,
  46927. bottom: 61/969
  46928. }
  46929. },
  46930. },
  46931. [
  46932. {
  46933. name: "Normal",
  46934. height: math.unit(9 + 4/12, "feet"),
  46935. default: true
  46936. },
  46937. ]
  46938. ))
  46939. characterMakers.push(() => makeCharacter(
  46940. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46941. {
  46942. front: {
  46943. height: math.unit(3, "meters"),
  46944. name: "Front",
  46945. image: {
  46946. source: "./media/characters/amy/front.svg",
  46947. extra: 1380/1343,
  46948. bottom: 70/1450
  46949. }
  46950. },
  46951. back: {
  46952. height: math.unit(3, "meters"),
  46953. name: "Back",
  46954. image: {
  46955. source: "./media/characters/amy/back.svg",
  46956. extra: 1380/1347,
  46957. bottom: 66/1446
  46958. }
  46959. },
  46960. },
  46961. [
  46962. {
  46963. name: "Normal",
  46964. height: math.unit(3, "meters"),
  46965. default: true
  46966. },
  46967. ]
  46968. ))
  46969. characterMakers.push(() => makeCharacter(
  46970. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46971. {
  46972. side: {
  46973. height: math.unit(47, "cm"),
  46974. weight: math.unit(10.8, "kg"),
  46975. name: "Side",
  46976. image: {
  46977. source: "./media/characters/alphaschakal/side.svg",
  46978. extra: 1058/568,
  46979. bottom: 62/1120
  46980. }
  46981. },
  46982. back: {
  46983. height: math.unit(78, "cm"),
  46984. weight: math.unit(10.8, "kg"),
  46985. name: "Back",
  46986. image: {
  46987. source: "./media/characters/alphaschakal/back.svg",
  46988. extra: 1102/942,
  46989. bottom: 185/1287
  46990. }
  46991. },
  46992. head: {
  46993. height: math.unit(28, "cm"),
  46994. name: "Head",
  46995. image: {
  46996. source: "./media/characters/alphaschakal/head.svg",
  46997. extra: 696/508,
  46998. bottom: 0/696
  46999. }
  47000. },
  47001. paw: {
  47002. height: math.unit(16, "cm"),
  47003. name: "Paw",
  47004. image: {
  47005. source: "./media/characters/alphaschakal/paw.svg"
  47006. }
  47007. },
  47008. },
  47009. [
  47010. {
  47011. name: "Normal",
  47012. height: math.unit(47, "cm"),
  47013. default: true
  47014. },
  47015. {
  47016. name: "Macro",
  47017. height: math.unit(340, "cm")
  47018. },
  47019. ]
  47020. ))
  47021. characterMakers.push(() => makeCharacter(
  47022. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47023. {
  47024. front: {
  47025. height: math.unit(36, "earths"),
  47026. name: "Front",
  47027. image: {
  47028. source: "./media/characters/ecobyss/front.svg",
  47029. extra: 1282/1215,
  47030. bottom: 11/1293
  47031. }
  47032. },
  47033. back: {
  47034. height: math.unit(36, "earths"),
  47035. name: "Back",
  47036. image: {
  47037. source: "./media/characters/ecobyss/back.svg",
  47038. extra: 1291/1222,
  47039. bottom: 8/1299
  47040. }
  47041. },
  47042. },
  47043. [
  47044. {
  47045. name: "Normal",
  47046. height: math.unit(36, "earths"),
  47047. default: true
  47048. },
  47049. ]
  47050. ))
  47051. characterMakers.push(() => makeCharacter(
  47052. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47053. {
  47054. front: {
  47055. height: math.unit(12, "feet"),
  47056. name: "Front",
  47057. image: {
  47058. source: "./media/characters/vasuk/front.svg",
  47059. extra: 1326/1207,
  47060. bottom: 64/1390
  47061. }
  47062. },
  47063. },
  47064. [
  47065. {
  47066. name: "Normal",
  47067. height: math.unit(12, "feet"),
  47068. default: true
  47069. },
  47070. ]
  47071. ))
  47072. characterMakers.push(() => makeCharacter(
  47073. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47074. {
  47075. side: {
  47076. height: math.unit(100, "feet"),
  47077. name: "Side",
  47078. image: {
  47079. source: "./media/characters/linneaus/side.svg",
  47080. extra: 987/807,
  47081. bottom: 47/1034
  47082. }
  47083. },
  47084. },
  47085. [
  47086. {
  47087. name: "Macro",
  47088. height: math.unit(100, "feet"),
  47089. default: true
  47090. },
  47091. ]
  47092. ))
  47093. characterMakers.push(() => makeCharacter(
  47094. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47095. {
  47096. front: {
  47097. height: math.unit(8, "feet"),
  47098. weight: math.unit(1200, "lb"),
  47099. name: "Front",
  47100. image: {
  47101. source: "./media/characters/nyterious-daligdig/front.svg",
  47102. extra: 1284/1094,
  47103. bottom: 84/1368
  47104. }
  47105. },
  47106. back: {
  47107. height: math.unit(8, "feet"),
  47108. weight: math.unit(1200, "lb"),
  47109. name: "Back",
  47110. image: {
  47111. source: "./media/characters/nyterious-daligdig/back.svg",
  47112. extra: 1301/1121,
  47113. bottom: 129/1430
  47114. }
  47115. },
  47116. mouth: {
  47117. height: math.unit(1.464, "feet"),
  47118. name: "Mouth",
  47119. image: {
  47120. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47121. }
  47122. },
  47123. },
  47124. [
  47125. {
  47126. name: "Small",
  47127. height: math.unit(8, "feet"),
  47128. default: true
  47129. },
  47130. {
  47131. name: "Normal",
  47132. height: math.unit(15, "feet")
  47133. },
  47134. {
  47135. name: "Macro",
  47136. height: math.unit(90, "feet")
  47137. },
  47138. ]
  47139. ))
  47140. characterMakers.push(() => makeCharacter(
  47141. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47142. {
  47143. front: {
  47144. height: math.unit(7 + 4/12, "feet"),
  47145. weight: math.unit(252, "lb"),
  47146. name: "Front",
  47147. image: {
  47148. source: "./media/characters/bandel/front.svg",
  47149. extra: 1946/1775,
  47150. bottom: 26/1972
  47151. }
  47152. },
  47153. back: {
  47154. height: math.unit(7 + 4/12, "feet"),
  47155. weight: math.unit(252, "lb"),
  47156. name: "Back",
  47157. image: {
  47158. source: "./media/characters/bandel/back.svg",
  47159. extra: 1940/1770,
  47160. bottom: 25/1965
  47161. }
  47162. },
  47163. maw: {
  47164. height: math.unit(2.15, "feet"),
  47165. name: "Maw",
  47166. image: {
  47167. source: "./media/characters/bandel/maw.svg"
  47168. }
  47169. },
  47170. stomach: {
  47171. height: math.unit(1.95, "feet"),
  47172. name: "Stomach",
  47173. image: {
  47174. source: "./media/characters/bandel/stomach.svg"
  47175. }
  47176. },
  47177. },
  47178. [
  47179. {
  47180. name: "Normal",
  47181. height: math.unit(7 + 4/12, "feet"),
  47182. default: true
  47183. },
  47184. ]
  47185. ))
  47186. characterMakers.push(() => makeCharacter(
  47187. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47188. {
  47189. front: {
  47190. height: math.unit(10 + 5/12, "feet"),
  47191. weight: math.unit(773.5, "kg"),
  47192. name: "Front",
  47193. image: {
  47194. source: "./media/characters/zed/front.svg",
  47195. extra: 987/941,
  47196. bottom: 52/1039
  47197. }
  47198. },
  47199. },
  47200. [
  47201. {
  47202. name: "Short",
  47203. height: math.unit(5 + 4/12, "feet")
  47204. },
  47205. {
  47206. name: "Average",
  47207. height: math.unit(10 + 5/12, "feet"),
  47208. default: true
  47209. },
  47210. {
  47211. name: "Mini-Macro",
  47212. height: math.unit(24 + 9/12, "feet")
  47213. },
  47214. {
  47215. name: "Macro",
  47216. height: math.unit(249, "feet")
  47217. },
  47218. {
  47219. name: "Mega-Macro",
  47220. height: math.unit(12490, "feet")
  47221. },
  47222. {
  47223. name: "Giga-Macro",
  47224. height: math.unit(24.9, "miles")
  47225. },
  47226. {
  47227. name: "Tera-Macro",
  47228. height: math.unit(24900, "miles")
  47229. },
  47230. {
  47231. name: "Cosmic Scale",
  47232. height: math.unit(38.9, "lightyears")
  47233. },
  47234. {
  47235. name: "Universal Scale",
  47236. height: math.unit(138e12, "lightyears")
  47237. },
  47238. ]
  47239. ))
  47240. characterMakers.push(() => makeCharacter(
  47241. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47242. {
  47243. front: {
  47244. height: math.unit(1561, "inches"),
  47245. name: "Front",
  47246. image: {
  47247. source: "./media/characters/ivan/front.svg",
  47248. extra: 1126/1071,
  47249. bottom: 26/1152
  47250. }
  47251. },
  47252. back: {
  47253. height: math.unit(1561, "inches"),
  47254. name: "Back",
  47255. image: {
  47256. source: "./media/characters/ivan/back.svg",
  47257. extra: 1134/1079,
  47258. bottom: 30/1164
  47259. }
  47260. },
  47261. },
  47262. [
  47263. {
  47264. name: "Normal",
  47265. height: math.unit(1561, "inches"),
  47266. default: true
  47267. },
  47268. ]
  47269. ))
  47270. characterMakers.push(() => makeCharacter(
  47271. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47272. {
  47273. front: {
  47274. height: math.unit(5 + 7/12, "feet"),
  47275. weight: math.unit(150, "lb"),
  47276. name: "Front",
  47277. image: {
  47278. source: "./media/characters/robin-arctic-hare/front.svg",
  47279. extra: 1148/974,
  47280. bottom: 20/1168
  47281. }
  47282. },
  47283. },
  47284. [
  47285. {
  47286. name: "Normal",
  47287. height: math.unit(5 + 7/12, "feet"),
  47288. default: true
  47289. },
  47290. ]
  47291. ))
  47292. characterMakers.push(() => makeCharacter(
  47293. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47294. {
  47295. side: {
  47296. height: math.unit(5, "feet"),
  47297. name: "Side",
  47298. image: {
  47299. source: "./media/characters/birch/side.svg",
  47300. extra: 985/796,
  47301. bottom: 111/1096
  47302. }
  47303. },
  47304. },
  47305. [
  47306. {
  47307. name: "Normal",
  47308. height: math.unit(5, "feet"),
  47309. default: true
  47310. },
  47311. ]
  47312. ))
  47313. characterMakers.push(() => makeCharacter(
  47314. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47315. {
  47316. front: {
  47317. height: math.unit(4, "feet"),
  47318. name: "Front",
  47319. image: {
  47320. source: "./media/characters/rasp/front.svg",
  47321. extra: 561/478,
  47322. bottom: 74/635
  47323. }
  47324. },
  47325. },
  47326. [
  47327. {
  47328. name: "Normal",
  47329. height: math.unit(4, "feet"),
  47330. default: true
  47331. },
  47332. ]
  47333. ))
  47334. characterMakers.push(() => makeCharacter(
  47335. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47336. {
  47337. front: {
  47338. height: math.unit(4 + 6/12, "feet"),
  47339. name: "Front",
  47340. image: {
  47341. source: "./media/characters/agatha/front.svg",
  47342. extra: 947/933,
  47343. bottom: 42/989
  47344. }
  47345. },
  47346. back: {
  47347. height: math.unit(4 + 6/12, "feet"),
  47348. name: "Back",
  47349. image: {
  47350. source: "./media/characters/agatha/back.svg",
  47351. extra: 935/922,
  47352. bottom: 48/983
  47353. }
  47354. },
  47355. },
  47356. [
  47357. {
  47358. name: "Normal",
  47359. height: math.unit(4 + 6 /12, "feet"),
  47360. default: true
  47361. },
  47362. {
  47363. name: "Max Size",
  47364. height: math.unit(500, "feet")
  47365. },
  47366. ]
  47367. ))
  47368. characterMakers.push(() => makeCharacter(
  47369. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47370. {
  47371. side: {
  47372. height: math.unit(30, "feet"),
  47373. name: "Side",
  47374. image: {
  47375. source: "./media/characters/roggy/side.svg",
  47376. extra: 909/643,
  47377. bottom: 63/972
  47378. }
  47379. },
  47380. lounging: {
  47381. height: math.unit(20, "feet"),
  47382. name: "Lounging",
  47383. image: {
  47384. source: "./media/characters/roggy/lounging.svg",
  47385. extra: 643/479,
  47386. bottom: 145/788
  47387. }
  47388. },
  47389. handpaw: {
  47390. height: math.unit(13.1, "feet"),
  47391. name: "Handpaw",
  47392. image: {
  47393. source: "./media/characters/roggy/handpaw.svg"
  47394. }
  47395. },
  47396. footpaw: {
  47397. height: math.unit(15.8, "feet"),
  47398. name: "Footpaw",
  47399. image: {
  47400. source: "./media/characters/roggy/footpaw.svg"
  47401. }
  47402. },
  47403. },
  47404. [
  47405. {
  47406. name: "Menacing",
  47407. height: math.unit(30, "feet"),
  47408. default: true
  47409. },
  47410. ]
  47411. ))
  47412. characterMakers.push(() => makeCharacter(
  47413. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47414. {
  47415. front: {
  47416. height: math.unit(5 + 7/12, "feet"),
  47417. weight: math.unit(135, "lb"),
  47418. name: "Front",
  47419. image: {
  47420. source: "./media/characters/naomi/front.svg",
  47421. extra: 1209/1154,
  47422. bottom: 129/1338
  47423. }
  47424. },
  47425. back: {
  47426. height: math.unit(5 + 7/12, "feet"),
  47427. weight: math.unit(135, "lb"),
  47428. name: "Back",
  47429. image: {
  47430. source: "./media/characters/naomi/back.svg",
  47431. extra: 1252/1190,
  47432. bottom: 23/1275
  47433. }
  47434. },
  47435. },
  47436. [
  47437. {
  47438. name: "Normal",
  47439. height: math.unit(5 + 7 /12, "feet"),
  47440. default: true
  47441. },
  47442. ]
  47443. ))
  47444. characterMakers.push(() => makeCharacter(
  47445. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47446. {
  47447. side: {
  47448. height: math.unit(35, "meters"),
  47449. name: "Side",
  47450. image: {
  47451. source: "./media/characters/kimpi/side.svg",
  47452. extra: 419/382,
  47453. bottom: 63/482
  47454. }
  47455. },
  47456. hand: {
  47457. height: math.unit(8.96, "meters"),
  47458. name: "Hand",
  47459. image: {
  47460. source: "./media/characters/kimpi/hand.svg"
  47461. }
  47462. },
  47463. },
  47464. [
  47465. {
  47466. name: "Normal",
  47467. height: math.unit(35, "meters"),
  47468. default: true
  47469. },
  47470. ]
  47471. ))
  47472. characterMakers.push(() => makeCharacter(
  47473. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47474. {
  47475. front: {
  47476. height: math.unit(4 + 4/12, "feet"),
  47477. name: "Front",
  47478. image: {
  47479. source: "./media/characters/pepper-purrloin/front.svg",
  47480. extra: 1141/1024,
  47481. bottom: 21/1162
  47482. }
  47483. },
  47484. },
  47485. [
  47486. {
  47487. name: "Normal",
  47488. height: math.unit(4 + 4/12, "feet"),
  47489. default: true
  47490. },
  47491. ]
  47492. ))
  47493. characterMakers.push(() => makeCharacter(
  47494. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47495. {
  47496. front: {
  47497. height: math.unit(6 + 2/12, "feet"),
  47498. name: "Front",
  47499. image: {
  47500. source: "./media/characters/raphael/front.svg",
  47501. extra: 1101/962,
  47502. bottom: 59/1160
  47503. }
  47504. },
  47505. },
  47506. [
  47507. {
  47508. name: "Normal",
  47509. height: math.unit(6 + 2/12, "feet"),
  47510. default: true
  47511. },
  47512. ]
  47513. ))
  47514. characterMakers.push(() => makeCharacter(
  47515. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47516. {
  47517. front: {
  47518. height: math.unit(6, "feet"),
  47519. weight: math.unit(150, "lb"),
  47520. name: "Front",
  47521. image: {
  47522. source: "./media/characters/victor-williams/front.svg",
  47523. extra: 1894/1825,
  47524. bottom: 67/1961
  47525. }
  47526. },
  47527. },
  47528. [
  47529. {
  47530. name: "Normal",
  47531. height: math.unit(6, "feet"),
  47532. default: true
  47533. },
  47534. ]
  47535. ))
  47536. characterMakers.push(() => makeCharacter(
  47537. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47538. {
  47539. front: {
  47540. height: math.unit(5 + 8/12, "feet"),
  47541. weight: math.unit(150, "lb"),
  47542. name: "Front",
  47543. image: {
  47544. source: "./media/characters/rachel/front.svg",
  47545. extra: 1902/1787,
  47546. bottom: 46/1948
  47547. }
  47548. },
  47549. },
  47550. [
  47551. {
  47552. name: "Base Height",
  47553. height: math.unit(5 + 8/12, "feet"),
  47554. default: true
  47555. },
  47556. {
  47557. name: "Macro",
  47558. height: math.unit(200, "feet")
  47559. },
  47560. {
  47561. name: "Mega Macro",
  47562. height: math.unit(1, "mile")
  47563. },
  47564. {
  47565. name: "Giga Macro",
  47566. height: math.unit(1500, "miles")
  47567. },
  47568. {
  47569. name: "Tera Macro",
  47570. height: math.unit(8000, "miles")
  47571. },
  47572. {
  47573. name: "Tera Macro+",
  47574. height: math.unit(2e5, "miles")
  47575. },
  47576. ]
  47577. ))
  47578. characterMakers.push(() => makeCharacter(
  47579. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47580. {
  47581. front: {
  47582. height: math.unit(6.5, "feet"),
  47583. name: "Front",
  47584. image: {
  47585. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47586. extra: 860/819,
  47587. bottom: 307/1167
  47588. }
  47589. },
  47590. back: {
  47591. height: math.unit(6.5, "feet"),
  47592. name: "Back",
  47593. image: {
  47594. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47595. extra: 880/837,
  47596. bottom: 395/1275
  47597. }
  47598. },
  47599. sleeping: {
  47600. height: math.unit(2.79, "feet"),
  47601. name: "Sleeping",
  47602. image: {
  47603. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47604. extra: 465/383,
  47605. bottom: 263/728
  47606. }
  47607. },
  47608. maw: {
  47609. height: math.unit(2.52, "feet"),
  47610. name: "Maw",
  47611. image: {
  47612. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47613. }
  47614. },
  47615. },
  47616. [
  47617. {
  47618. name: "Normal",
  47619. height: math.unit(6.5, "feet"),
  47620. default: true
  47621. },
  47622. ]
  47623. ))
  47624. characterMakers.push(() => makeCharacter(
  47625. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47626. {
  47627. front: {
  47628. height: math.unit(5, "feet"),
  47629. name: "Front",
  47630. image: {
  47631. source: "./media/characters/nova-nerium/front.svg",
  47632. extra: 1548/1392,
  47633. bottom: 374/1922
  47634. }
  47635. },
  47636. back: {
  47637. height: math.unit(5, "feet"),
  47638. name: "Back",
  47639. image: {
  47640. source: "./media/characters/nova-nerium/back.svg",
  47641. extra: 1658/1468,
  47642. bottom: 257/1915
  47643. }
  47644. },
  47645. },
  47646. [
  47647. {
  47648. name: "Normal",
  47649. height: math.unit(5, "feet"),
  47650. default: true
  47651. },
  47652. ]
  47653. ))
  47654. characterMakers.push(() => makeCharacter(
  47655. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47656. {
  47657. front: {
  47658. height: math.unit(5 + 4/12, "feet"),
  47659. name: "Front",
  47660. image: {
  47661. source: "./media/characters/ashe-pyriph/front.svg",
  47662. extra: 1935/1747,
  47663. bottom: 60/1995
  47664. }
  47665. },
  47666. },
  47667. [
  47668. {
  47669. name: "Normal",
  47670. height: math.unit(5 + 4/12, "feet"),
  47671. default: true
  47672. },
  47673. ]
  47674. ))
  47675. characterMakers.push(() => makeCharacter(
  47676. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47677. {
  47678. front: {
  47679. height: math.unit(8.7, "feet"),
  47680. name: "Front",
  47681. image: {
  47682. source: "./media/characters/flicker-wisp/front.svg",
  47683. extra: 1835/1613,
  47684. bottom: 449/2284
  47685. }
  47686. },
  47687. side: {
  47688. height: math.unit(8.7, "feet"),
  47689. name: "Side",
  47690. image: {
  47691. source: "./media/characters/flicker-wisp/side.svg",
  47692. extra: 1841/1642,
  47693. bottom: 336/2177
  47694. },
  47695. default: true
  47696. },
  47697. maw: {
  47698. height: math.unit(3.35, "feet"),
  47699. name: "Maw",
  47700. image: {
  47701. source: "./media/characters/flicker-wisp/maw.svg",
  47702. extra: 2338/1506,
  47703. bottom: 0/2338
  47704. }
  47705. },
  47706. ovipositor: {
  47707. height: math.unit(4.95, "feet"),
  47708. name: "Ovipositor",
  47709. image: {
  47710. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47711. }
  47712. },
  47713. egg: {
  47714. height: math.unit(0.385, "feet"),
  47715. weight: math.unit(2, "lb"),
  47716. name: "Egg",
  47717. image: {
  47718. source: "./media/characters/flicker-wisp/egg.svg"
  47719. }
  47720. },
  47721. },
  47722. [
  47723. {
  47724. name: "Normal",
  47725. height: math.unit(8.7, "feet"),
  47726. default: true
  47727. },
  47728. ]
  47729. ))
  47730. characterMakers.push(() => makeCharacter(
  47731. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47732. {
  47733. side: {
  47734. height: math.unit(11, "feet"),
  47735. name: "Side",
  47736. image: {
  47737. source: "./media/characters/faefnul/side.svg",
  47738. extra: 1100/1007,
  47739. bottom: 0/1100
  47740. }
  47741. },
  47742. },
  47743. [
  47744. {
  47745. name: "Normal",
  47746. height: math.unit(11, "feet"),
  47747. default: true
  47748. },
  47749. ]
  47750. ))
  47751. characterMakers.push(() => makeCharacter(
  47752. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47753. {
  47754. front: {
  47755. height: math.unit(6 + 2/12, "feet"),
  47756. name: "Front",
  47757. image: {
  47758. source: "./media/characters/shady/front.svg",
  47759. extra: 502/461,
  47760. bottom: 9/511
  47761. }
  47762. },
  47763. kneeling: {
  47764. height: math.unit(4.6, "feet"),
  47765. name: "Kneeling",
  47766. image: {
  47767. source: "./media/characters/shady/kneeling.svg",
  47768. extra: 1328/1219,
  47769. bottom: 117/1445
  47770. }
  47771. },
  47772. maw: {
  47773. height: math.unit(2, "feet"),
  47774. name: "Maw",
  47775. image: {
  47776. source: "./media/characters/shady/maw.svg"
  47777. }
  47778. },
  47779. },
  47780. [
  47781. {
  47782. name: "Nano",
  47783. height: math.unit(1, "mm")
  47784. },
  47785. {
  47786. name: "Micro",
  47787. height: math.unit(12, "mm")
  47788. },
  47789. {
  47790. name: "Tiny",
  47791. height: math.unit(3, "inches")
  47792. },
  47793. {
  47794. name: "Normal",
  47795. height: math.unit(6 + 2/12, "feet"),
  47796. default: true
  47797. },
  47798. {
  47799. name: "Big",
  47800. height: math.unit(15, "feet")
  47801. },
  47802. {
  47803. name: "Macro",
  47804. height: math.unit(150, "feet")
  47805. },
  47806. {
  47807. name: "Titanic",
  47808. height: math.unit(500, "feet")
  47809. },
  47810. ]
  47811. ))
  47812. characterMakers.push(() => makeCharacter(
  47813. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47814. {
  47815. front: {
  47816. height: math.unit(12, "feet"),
  47817. name: "Front",
  47818. image: {
  47819. source: "./media/characters/fenrir/front.svg",
  47820. extra: 968/875,
  47821. bottom: 22/990
  47822. }
  47823. },
  47824. },
  47825. [
  47826. {
  47827. name: "Big",
  47828. height: math.unit(12, "feet"),
  47829. default: true
  47830. },
  47831. ]
  47832. ))
  47833. characterMakers.push(() => makeCharacter(
  47834. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47835. {
  47836. front: {
  47837. height: math.unit(5 + 4/12, "feet"),
  47838. name: "Front",
  47839. image: {
  47840. source: "./media/characters/makar/front.svg",
  47841. extra: 1181/1112,
  47842. bottom: 78/1259
  47843. }
  47844. },
  47845. },
  47846. [
  47847. {
  47848. name: "Normal",
  47849. height: math.unit(5 + 4/12, "feet"),
  47850. default: true
  47851. },
  47852. ]
  47853. ))
  47854. characterMakers.push(() => makeCharacter(
  47855. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47856. {
  47857. front: {
  47858. height: math.unit(5 + 7/12, "feet"),
  47859. name: "Front",
  47860. image: {
  47861. source: "./media/characters/callow/front.svg",
  47862. extra: 1482/1304,
  47863. bottom: 23/1505
  47864. }
  47865. },
  47866. back: {
  47867. height: math.unit(5 + 7/12, "feet"),
  47868. name: "Back",
  47869. image: {
  47870. source: "./media/characters/callow/back.svg",
  47871. extra: 1484/1296,
  47872. bottom: 25/1509
  47873. }
  47874. },
  47875. },
  47876. [
  47877. {
  47878. name: "Micro",
  47879. height: math.unit(3, "inches"),
  47880. default: true
  47881. },
  47882. {
  47883. name: "Normal",
  47884. height: math.unit(5 + 7/12, "feet")
  47885. },
  47886. ]
  47887. ))
  47888. characterMakers.push(() => makeCharacter(
  47889. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47890. {
  47891. front: {
  47892. height: math.unit(6 + 2/12, "feet"),
  47893. name: "Front",
  47894. image: {
  47895. source: "./media/characters/natel/front.svg",
  47896. extra: 1833/1692,
  47897. bottom: 166/1999
  47898. }
  47899. },
  47900. },
  47901. [
  47902. {
  47903. name: "Normal",
  47904. height: math.unit(6 + 2/12, "feet"),
  47905. default: true
  47906. },
  47907. ]
  47908. ))
  47909. characterMakers.push(() => makeCharacter(
  47910. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47911. {
  47912. front: {
  47913. height: math.unit(1.75, "meters"),
  47914. name: "Front",
  47915. image: {
  47916. source: "./media/characters/misu/front.svg",
  47917. extra: 1690/1558,
  47918. bottom: 234/1924
  47919. }
  47920. },
  47921. back: {
  47922. height: math.unit(1.75, "meters"),
  47923. name: "Back",
  47924. image: {
  47925. source: "./media/characters/misu/back.svg",
  47926. extra: 1762/1618,
  47927. bottom: 146/1908
  47928. }
  47929. },
  47930. frontNude: {
  47931. height: math.unit(1.75, "meters"),
  47932. name: "Front (Nude)",
  47933. image: {
  47934. source: "./media/characters/misu/front-nude.svg",
  47935. extra: 1690/1558,
  47936. bottom: 234/1924
  47937. }
  47938. },
  47939. backNude: {
  47940. height: math.unit(1.75, "meters"),
  47941. name: "Back (Nude)",
  47942. image: {
  47943. source: "./media/characters/misu/back-nude.svg",
  47944. extra: 1762/1618,
  47945. bottom: 146/1908
  47946. }
  47947. },
  47948. frontErect: {
  47949. height: math.unit(1.75, "meters"),
  47950. name: "Front (Erect)",
  47951. image: {
  47952. source: "./media/characters/misu/front-erect.svg",
  47953. extra: 1690/1558,
  47954. bottom: 234/1924
  47955. }
  47956. },
  47957. maw: {
  47958. height: math.unit(0.47, "meters"),
  47959. name: "Maw",
  47960. image: {
  47961. source: "./media/characters/misu/maw.svg"
  47962. }
  47963. },
  47964. head: {
  47965. height: math.unit(0.35, "meters"),
  47966. name: "Head",
  47967. image: {
  47968. source: "./media/characters/misu/head.svg"
  47969. }
  47970. },
  47971. rear: {
  47972. height: math.unit(0.47, "meters"),
  47973. name: "Rear",
  47974. image: {
  47975. source: "./media/characters/misu/rear.svg"
  47976. }
  47977. },
  47978. },
  47979. [
  47980. {
  47981. name: "Normal",
  47982. height: math.unit(1.75, "meters")
  47983. },
  47984. {
  47985. name: "Not good for the people",
  47986. height: math.unit(42, "meters")
  47987. },
  47988. {
  47989. name: "Not good for the neighborhood",
  47990. height: math.unit(135, "meters")
  47991. },
  47992. {
  47993. name: "Bit bigger problem",
  47994. height: math.unit(380, "meters"),
  47995. default: true
  47996. },
  47997. {
  47998. name: "Not good for the city",
  47999. height: math.unit(1.5, "km")
  48000. },
  48001. {
  48002. name: "Not good for the county",
  48003. height: math.unit(5.5, "km")
  48004. },
  48005. {
  48006. name: "Not good for the state",
  48007. height: math.unit(25, "km")
  48008. },
  48009. {
  48010. name: "Not good for the country",
  48011. height: math.unit(125, "km")
  48012. },
  48013. {
  48014. name: "Not good for the continent",
  48015. height: math.unit(2100, "km")
  48016. },
  48017. {
  48018. name: "Not good for the planet",
  48019. height: math.unit(35000, "km")
  48020. },
  48021. {
  48022. name: "Just no",
  48023. height: math.unit(8.5e18, "km")
  48024. },
  48025. ]
  48026. ))
  48027. characterMakers.push(() => makeCharacter(
  48028. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48029. {
  48030. front: {
  48031. height: math.unit(6.5, "feet"),
  48032. name: "Front",
  48033. image: {
  48034. source: "./media/characters/poppy/front.svg",
  48035. extra: 1878/1812,
  48036. bottom: 43/1921
  48037. }
  48038. },
  48039. feet: {
  48040. height: math.unit(1.06, "feet"),
  48041. name: "Feet",
  48042. image: {
  48043. source: "./media/characters/poppy/feet.svg",
  48044. extra: 1083/1083,
  48045. bottom: 87/1170
  48046. }
  48047. },
  48048. },
  48049. [
  48050. {
  48051. name: "Human",
  48052. height: math.unit(6.5, "feet")
  48053. },
  48054. {
  48055. name: "Default",
  48056. height: math.unit(300, "feet"),
  48057. default: true
  48058. },
  48059. {
  48060. name: "Huge",
  48061. height: math.unit(850, "feet")
  48062. },
  48063. {
  48064. name: "Mega",
  48065. height: math.unit(8000, "feet")
  48066. },
  48067. {
  48068. name: "Giga",
  48069. height: math.unit(300, "miles")
  48070. },
  48071. ]
  48072. ))
  48073. characterMakers.push(() => makeCharacter(
  48074. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48075. {
  48076. bipedal: {
  48077. height: math.unit(7, "feet"),
  48078. name: "Bipedal",
  48079. image: {
  48080. source: "./media/characters/zener/bipedal.svg",
  48081. extra: 874/805,
  48082. bottom: 109/983
  48083. }
  48084. },
  48085. quadrupedal: {
  48086. height: math.unit(4.64, "feet"),
  48087. name: "Quadrupedal",
  48088. image: {
  48089. source: "./media/characters/zener/quadrupedal.svg",
  48090. extra: 638/507,
  48091. bottom: 190/828
  48092. }
  48093. },
  48094. cock: {
  48095. height: math.unit(18, "inches"),
  48096. name: "Cock",
  48097. image: {
  48098. source: "./media/characters/zener/cock.svg"
  48099. }
  48100. },
  48101. },
  48102. [
  48103. {
  48104. name: "Normal",
  48105. height: math.unit(7, "feet"),
  48106. default: true
  48107. },
  48108. ]
  48109. ))
  48110. characterMakers.push(() => makeCharacter(
  48111. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48112. {
  48113. nude: {
  48114. height: math.unit(5 + 6/12, "feet"),
  48115. name: "Nude",
  48116. image: {
  48117. source: "./media/characters/charlie-dog/nude.svg",
  48118. extra: 768/734,
  48119. bottom: 26/794
  48120. }
  48121. },
  48122. dressed: {
  48123. height: math.unit(5 + 6/12, "feet"),
  48124. name: "Dressed",
  48125. image: {
  48126. source: "./media/characters/charlie-dog/dressed.svg",
  48127. extra: 768/734,
  48128. bottom: 26/794
  48129. }
  48130. },
  48131. },
  48132. [
  48133. {
  48134. name: "Normal",
  48135. height: math.unit(5 + 6/12, "feet"),
  48136. default: true
  48137. },
  48138. ]
  48139. ))
  48140. characterMakers.push(() => makeCharacter(
  48141. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48142. {
  48143. front: {
  48144. height: math.unit(6 + 4/12, "feet"),
  48145. name: "Front",
  48146. image: {
  48147. source: "./media/characters/ir'istrasz/front.svg",
  48148. extra: 1014/977,
  48149. bottom: 65/1079
  48150. }
  48151. },
  48152. back: {
  48153. height: math.unit(6 + 4/12, "feet"),
  48154. name: "Back",
  48155. image: {
  48156. source: "./media/characters/ir'istrasz/back.svg",
  48157. extra: 1024/992,
  48158. bottom: 34/1058
  48159. }
  48160. },
  48161. },
  48162. [
  48163. {
  48164. name: "Normal",
  48165. height: math.unit(6 + 4/12, "feet"),
  48166. default: true
  48167. },
  48168. ]
  48169. ))
  48170. characterMakers.push(() => makeCharacter(
  48171. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48172. {
  48173. front: {
  48174. height: math.unit(5 + 8/12, "feet"),
  48175. name: "Front",
  48176. image: {
  48177. source: "./media/characters/dee-ditto/front.svg",
  48178. extra: 1874/1785,
  48179. bottom: 68/1942
  48180. }
  48181. },
  48182. back: {
  48183. height: math.unit(5 + 8/12, "feet"),
  48184. name: "Back",
  48185. image: {
  48186. source: "./media/characters/dee-ditto/back.svg",
  48187. extra: 1870/1783,
  48188. bottom: 77/1947
  48189. }
  48190. },
  48191. },
  48192. [
  48193. {
  48194. name: "Normal",
  48195. height: math.unit(5 + 8/12, "feet"),
  48196. default: true
  48197. },
  48198. ]
  48199. ))
  48200. characterMakers.push(() => makeCharacter(
  48201. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48202. {
  48203. front: {
  48204. height: math.unit(7 + 6/12, "feet"),
  48205. name: "Front",
  48206. image: {
  48207. source: "./media/characters/fey/front.svg",
  48208. extra: 995/979,
  48209. bottom: 30/1025
  48210. }
  48211. },
  48212. back: {
  48213. height: math.unit(7 + 6/12, "feet"),
  48214. name: "Back",
  48215. image: {
  48216. source: "./media/characters/fey/back.svg",
  48217. extra: 1079/1008,
  48218. bottom: 5/1084
  48219. }
  48220. },
  48221. dressed: {
  48222. height: math.unit(7 + 6/12, "feet"),
  48223. name: "Dressed",
  48224. image: {
  48225. source: "./media/characters/fey/dressed.svg",
  48226. extra: 995/979,
  48227. bottom: 30/1025
  48228. }
  48229. },
  48230. },
  48231. [
  48232. {
  48233. name: "Normal",
  48234. height: math.unit(7 + 6/12, "feet"),
  48235. default: true
  48236. },
  48237. ]
  48238. ))
  48239. characterMakers.push(() => makeCharacter(
  48240. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48241. {
  48242. standing: {
  48243. height: math.unit(17, "feet"),
  48244. name: "Standing",
  48245. image: {
  48246. source: "./media/characters/aster/standing.svg",
  48247. extra: 1798/1598,
  48248. bottom: 117/1915
  48249. }
  48250. },
  48251. },
  48252. [
  48253. {
  48254. name: "Normal",
  48255. height: math.unit(17, "feet"),
  48256. default: true
  48257. },
  48258. {
  48259. name: "Homewrecker",
  48260. height: math.unit(95, "feet")
  48261. },
  48262. {
  48263. name: "Planet Devourer",
  48264. height: math.unit(1008000, "miles")
  48265. },
  48266. ]
  48267. ))
  48268. characterMakers.push(() => makeCharacter(
  48269. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48270. {
  48271. front: {
  48272. height: math.unit(6 + 5/12, "feet"),
  48273. weight: math.unit(265, "lb"),
  48274. name: "Front",
  48275. image: {
  48276. source: "./media/characters/devon-childs/front.svg",
  48277. extra: 1795/1721,
  48278. bottom: 41/1836
  48279. }
  48280. },
  48281. side: {
  48282. height: math.unit(6 + 5/12, "feet"),
  48283. weight: math.unit(265, "lb"),
  48284. name: "Side",
  48285. image: {
  48286. source: "./media/characters/devon-childs/side.svg",
  48287. extra: 1812/1738,
  48288. bottom: 30/1842
  48289. }
  48290. },
  48291. back: {
  48292. height: math.unit(6 + 5/12, "feet"),
  48293. weight: math.unit(265, "lb"),
  48294. name: "Back",
  48295. image: {
  48296. source: "./media/characters/devon-childs/back.svg",
  48297. extra: 1808/1735,
  48298. bottom: 23/1831
  48299. }
  48300. },
  48301. hand: {
  48302. height: math.unit(1.464, "feet"),
  48303. name: "Hand",
  48304. image: {
  48305. source: "./media/characters/devon-childs/hand.svg"
  48306. }
  48307. },
  48308. foot: {
  48309. height: math.unit(1.6, "feet"),
  48310. name: "Foot",
  48311. image: {
  48312. source: "./media/characters/devon-childs/foot.svg"
  48313. }
  48314. },
  48315. },
  48316. [
  48317. {
  48318. name: "Micro",
  48319. height: math.unit(7, "cm")
  48320. },
  48321. {
  48322. name: "Normal",
  48323. height: math.unit(6 + 5/12, "feet"),
  48324. default: true
  48325. },
  48326. {
  48327. name: "Macro",
  48328. height: math.unit(154, "feet")
  48329. },
  48330. ]
  48331. ))
  48332. characterMakers.push(() => makeCharacter(
  48333. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48334. {
  48335. front: {
  48336. height: math.unit(6, "feet"),
  48337. weight: math.unit(180, "lb"),
  48338. name: "Front",
  48339. image: {
  48340. source: "./media/characters/lydemox-vir/front.svg",
  48341. extra: 1632/1435,
  48342. bottom: 58/1690
  48343. }
  48344. },
  48345. frontSFW: {
  48346. height: math.unit(6, "feet"),
  48347. weight: math.unit(180, "lb"),
  48348. name: "Front (SFW)",
  48349. image: {
  48350. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48351. extra: 1632/1435,
  48352. bottom: 58/1690
  48353. }
  48354. },
  48355. back: {
  48356. height: math.unit(6, "feet"),
  48357. weight: math.unit(180, "lb"),
  48358. name: "Back",
  48359. image: {
  48360. source: "./media/characters/lydemox-vir/back.svg",
  48361. extra: 1593/1408,
  48362. bottom: 31/1624
  48363. }
  48364. },
  48365. paw: {
  48366. height: math.unit(1.85, "feet"),
  48367. name: "Paw",
  48368. image: {
  48369. source: "./media/characters/lydemox-vir/paw.svg"
  48370. }
  48371. },
  48372. dick: {
  48373. height: math.unit(1.8, "feet"),
  48374. name: "Dick",
  48375. image: {
  48376. source: "./media/characters/lydemox-vir/dick.svg"
  48377. }
  48378. },
  48379. },
  48380. [
  48381. {
  48382. name: "Macro",
  48383. height: math.unit(100, "feet"),
  48384. default: true
  48385. },
  48386. {
  48387. name: "Teramacro",
  48388. height: math.unit(1, "earth")
  48389. },
  48390. {
  48391. name: "Planetary",
  48392. height: math.unit(20, "earths")
  48393. },
  48394. ]
  48395. ))
  48396. characterMakers.push(() => makeCharacter(
  48397. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48398. {
  48399. front: {
  48400. height: math.unit(15 + 8/12, "feet"),
  48401. weight: math.unit(1237, "kg"),
  48402. name: "Front",
  48403. image: {
  48404. source: "./media/characters/mia/front.svg",
  48405. extra: 1573/1446,
  48406. bottom: 58/1631
  48407. }
  48408. },
  48409. },
  48410. [
  48411. {
  48412. name: "Small",
  48413. height: math.unit(9 + 5/12, "feet")
  48414. },
  48415. {
  48416. name: "Normal",
  48417. height: math.unit(15 + 8/12, "feet"),
  48418. default: true
  48419. },
  48420. ]
  48421. ))
  48422. characterMakers.push(() => makeCharacter(
  48423. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48424. {
  48425. front: {
  48426. height: math.unit(10 + 6/12, "feet"),
  48427. weight: math.unit(1.3, "tons"),
  48428. name: "Front",
  48429. image: {
  48430. source: "./media/characters/mr-graves/front.svg",
  48431. extra: 1779/1695,
  48432. bottom: 198/1977
  48433. }
  48434. },
  48435. },
  48436. [
  48437. {
  48438. name: "Normal",
  48439. height: math.unit(10 + 6 /12, "feet"),
  48440. default: true
  48441. },
  48442. ]
  48443. ))
  48444. characterMakers.push(() => makeCharacter(
  48445. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48446. {
  48447. dressedFront: {
  48448. height: math.unit(5 + 8/12, "feet"),
  48449. weight: math.unit(125, "lb"),
  48450. name: "Dressed (Front)",
  48451. image: {
  48452. source: "./media/characters/jess/dressed-front.svg",
  48453. extra: 1176/1152,
  48454. bottom: 42/1218
  48455. }
  48456. },
  48457. dressedSide: {
  48458. height: math.unit(5 + 8/12, "feet"),
  48459. weight: math.unit(125, "lb"),
  48460. name: "Dressed (Side)",
  48461. image: {
  48462. source: "./media/characters/jess/dressed-side.svg",
  48463. extra: 1204/1190,
  48464. bottom: 6/1210
  48465. }
  48466. },
  48467. nudeFront: {
  48468. height: math.unit(5 + 8/12, "feet"),
  48469. weight: math.unit(125, "lb"),
  48470. name: "Nude (Front)",
  48471. image: {
  48472. source: "./media/characters/jess/nude-front.svg",
  48473. extra: 1176/1152,
  48474. bottom: 42/1218
  48475. }
  48476. },
  48477. nudeSide: {
  48478. height: math.unit(5 + 8/12, "feet"),
  48479. weight: math.unit(125, "lb"),
  48480. name: "Nude (Side)",
  48481. image: {
  48482. source: "./media/characters/jess/nude-side.svg",
  48483. extra: 1204/1190,
  48484. bottom: 6/1210
  48485. }
  48486. },
  48487. organsFront: {
  48488. height: math.unit(2.83799342105, "feet"),
  48489. name: "Organs (Front)",
  48490. image: {
  48491. source: "./media/characters/jess/organs-front.svg"
  48492. }
  48493. },
  48494. organsSide: {
  48495. height: math.unit(2.64225290474, "feet"),
  48496. name: "Organs (Side)",
  48497. image: {
  48498. source: "./media/characters/jess/organs-side.svg"
  48499. }
  48500. },
  48501. digestiveTractFront: {
  48502. height: math.unit(2.8106580871, "feet"),
  48503. name: "Digestive Tract (Front)",
  48504. image: {
  48505. source: "./media/characters/jess/digestive-tract-front.svg"
  48506. }
  48507. },
  48508. digestiveTractSide: {
  48509. height: math.unit(2.54365045014, "feet"),
  48510. name: "Digestive Tract (Side)",
  48511. image: {
  48512. source: "./media/characters/jess/digestive-tract-side.svg"
  48513. }
  48514. },
  48515. respiratorySystemFront: {
  48516. height: math.unit(1.11196233456, "feet"),
  48517. name: "Respiratory System (Front)",
  48518. image: {
  48519. source: "./media/characters/jess/respiratory-system-front.svg"
  48520. }
  48521. },
  48522. respiratorySystemSide: {
  48523. height: math.unit(0.89327966297, "feet"),
  48524. name: "Respiratory System (Side)",
  48525. image: {
  48526. source: "./media/characters/jess/respiratory-system-side.svg"
  48527. }
  48528. },
  48529. urinaryTractFront: {
  48530. height: math.unit(1.16126356186, "feet"),
  48531. name: "Urinary Tract (Front)",
  48532. image: {
  48533. source: "./media/characters/jess/urinary-tract-front.svg"
  48534. }
  48535. },
  48536. urinaryTractSide: {
  48537. height: math.unit(1.20910039627, "feet"),
  48538. name: "Urinary Tract (Side)",
  48539. image: {
  48540. source: "./media/characters/jess/urinary-tract-side.svg"
  48541. }
  48542. },
  48543. reproductiveOrgansFront: {
  48544. height: math.unit(0.48422591566, "feet"),
  48545. name: "Reproductive Organs (Front)",
  48546. image: {
  48547. source: "./media/characters/jess/reproductive-organs-front.svg"
  48548. }
  48549. },
  48550. reproductiveOrgansSide: {
  48551. height: math.unit(0.61553314481, "feet"),
  48552. name: "Reproductive Organs (Side)",
  48553. image: {
  48554. source: "./media/characters/jess/reproductive-organs-side.svg"
  48555. }
  48556. },
  48557. breastsFront: {
  48558. height: math.unit(0.47690395121, "feet"),
  48559. name: "Breasts (Front)",
  48560. image: {
  48561. source: "./media/characters/jess/breasts-front.svg"
  48562. }
  48563. },
  48564. breastsSide: {
  48565. height: math.unit(0.30556998307, "feet"),
  48566. name: "Breasts (Side)",
  48567. image: {
  48568. source: "./media/characters/jess/breasts-side.svg"
  48569. }
  48570. },
  48571. heartFront: {
  48572. height: math.unit(0.53011022622, "feet"),
  48573. name: "Heart (Front)",
  48574. image: {
  48575. source: "./media/characters/jess/heart-front.svg"
  48576. }
  48577. },
  48578. heartSide: {
  48579. height: math.unit(0.51790695213, "feet"),
  48580. name: "Heart (Side)",
  48581. image: {
  48582. source: "./media/characters/jess/heart-side.svg"
  48583. }
  48584. },
  48585. earsAndNoseFront: {
  48586. height: math.unit(0.29385483995, "feet"),
  48587. name: "Ears and Nose (Front)",
  48588. image: {
  48589. source: "./media/characters/jess/ears-and-nose-front.svg"
  48590. }
  48591. },
  48592. earsAndNoseSide: {
  48593. height: math.unit(0.18109658741, "feet"),
  48594. name: "Ears and Nose (Side)",
  48595. image: {
  48596. source: "./media/characters/jess/ears-and-nose-side.svg"
  48597. }
  48598. },
  48599. },
  48600. [
  48601. {
  48602. name: "Normal",
  48603. height: math.unit(5 + 8/12, "feet"),
  48604. default: true
  48605. },
  48606. ]
  48607. ))
  48608. characterMakers.push(() => makeCharacter(
  48609. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48610. {
  48611. front: {
  48612. height: math.unit(6, "feet"),
  48613. weight: math.unit(6.64467e-7, "grams"),
  48614. name: "Front",
  48615. image: {
  48616. source: "./media/characters/wimpering/front.svg",
  48617. extra: 597/587,
  48618. bottom: 34/631
  48619. }
  48620. },
  48621. },
  48622. [
  48623. {
  48624. name: "Micro",
  48625. height: math.unit(0.4, "mm"),
  48626. default: true
  48627. },
  48628. ]
  48629. ))
  48630. characterMakers.push(() => makeCharacter(
  48631. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48632. {
  48633. front: {
  48634. height: math.unit(5 + 2/12, "feet"),
  48635. weight: math.unit(110, "lb"),
  48636. name: "Front",
  48637. image: {
  48638. source: "./media/characters/keltre/front.svg",
  48639. extra: 1099/1057,
  48640. bottom: 22/1121
  48641. }
  48642. },
  48643. back: {
  48644. height: math.unit(5 + 2/12, "feet"),
  48645. weight: math.unit(110, "lb"),
  48646. name: "Back",
  48647. image: {
  48648. source: "./media/characters/keltre/back.svg",
  48649. extra: 1095/1053,
  48650. bottom: 17/1112
  48651. }
  48652. },
  48653. dressed: {
  48654. height: math.unit(5 + 2/12, "feet"),
  48655. weight: math.unit(110, "lb"),
  48656. name: "Dressed",
  48657. image: {
  48658. source: "./media/characters/keltre/dressed.svg",
  48659. extra: 1099/1057,
  48660. bottom: 22/1121
  48661. }
  48662. },
  48663. winter: {
  48664. height: math.unit(5 + 2/12, "feet"),
  48665. weight: math.unit(110, "lb"),
  48666. name: "Winter",
  48667. image: {
  48668. source: "./media/characters/keltre/winter.svg",
  48669. extra: 1099/1057,
  48670. bottom: 22/1121
  48671. }
  48672. },
  48673. head: {
  48674. height: math.unit(1.61 * 0.86, "feet"),
  48675. name: "Head",
  48676. image: {
  48677. source: "./media/characters/keltre/head.svg",
  48678. extra: 534/421,
  48679. bottom: 0/534
  48680. }
  48681. },
  48682. hand: {
  48683. height: math.unit(1.3 * 0.86, "feet"),
  48684. name: "Hand",
  48685. image: {
  48686. source: "./media/characters/keltre/hand.svg"
  48687. }
  48688. },
  48689. foot: {
  48690. height: math.unit(1.8 * 0.86, "feet"),
  48691. name: "Foot",
  48692. image: {
  48693. source: "./media/characters/keltre/foot.svg"
  48694. }
  48695. },
  48696. },
  48697. [
  48698. {
  48699. name: "Fine",
  48700. height: math.unit(1, "inch")
  48701. },
  48702. {
  48703. name: "Dimnutive",
  48704. height: math.unit(4, "inches")
  48705. },
  48706. {
  48707. name: "Tiny",
  48708. height: math.unit(1, "foot")
  48709. },
  48710. {
  48711. name: "Small",
  48712. height: math.unit(3, "feet")
  48713. },
  48714. {
  48715. name: "Normal",
  48716. height: math.unit(5 + 2/12, "feet"),
  48717. default: true
  48718. },
  48719. ]
  48720. ))
  48721. characterMakers.push(() => makeCharacter(
  48722. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48723. {
  48724. front: {
  48725. height: math.unit(6 + 2/12, "feet"),
  48726. name: "Front",
  48727. image: {
  48728. source: "./media/characters/nox/front.svg",
  48729. extra: 1917/1830,
  48730. bottom: 74/1991
  48731. }
  48732. },
  48733. back: {
  48734. height: math.unit(6 + 2/12, "feet"),
  48735. name: "Back",
  48736. image: {
  48737. source: "./media/characters/nox/back.svg",
  48738. extra: 1896/1815,
  48739. bottom: 21/1917
  48740. }
  48741. },
  48742. head: {
  48743. height: math.unit(1.1, "feet"),
  48744. name: "Head",
  48745. image: {
  48746. source: "./media/characters/nox/head.svg",
  48747. extra: 874/704,
  48748. bottom: 0/874
  48749. }
  48750. },
  48751. tattoo: {
  48752. height: math.unit(0.729, "feet"),
  48753. name: "Tattoo",
  48754. image: {
  48755. source: "./media/characters/nox/tattoo.svg"
  48756. }
  48757. },
  48758. },
  48759. [
  48760. {
  48761. name: "Normal",
  48762. height: math.unit(6 + 2/12, "feet")
  48763. },
  48764. {
  48765. name: "Gigamacro",
  48766. height: math.unit(2, "earths"),
  48767. default: true
  48768. },
  48769. {
  48770. name: "Cosmic",
  48771. height: math.unit(867, "yottameters")
  48772. },
  48773. ]
  48774. ))
  48775. characterMakers.push(() => makeCharacter(
  48776. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48777. {
  48778. front: {
  48779. height: math.unit(6, "feet"),
  48780. weight: math.unit(150, "lb"),
  48781. name: "Front",
  48782. image: {
  48783. source: "./media/characters/caspian/front.svg",
  48784. extra: 1443/1359,
  48785. bottom: 0/1443
  48786. }
  48787. },
  48788. back: {
  48789. height: math.unit(6, "feet"),
  48790. weight: math.unit(150, "lb"),
  48791. name: "Back",
  48792. image: {
  48793. source: "./media/characters/caspian/back.svg",
  48794. extra: 1379/1309,
  48795. bottom: 0/1379
  48796. }
  48797. },
  48798. head: {
  48799. height: math.unit(0.9, "feet"),
  48800. name: "Head",
  48801. image: {
  48802. source: "./media/characters/caspian/head.svg",
  48803. extra: 692/492,
  48804. bottom: 0/692
  48805. }
  48806. },
  48807. headAlt: {
  48808. height: math.unit(0.95, "feet"),
  48809. name: "Head (Alt)",
  48810. image: {
  48811. source: "./media/characters/caspian/head-alt.svg",
  48812. extra: 668/508,
  48813. bottom: 0/668
  48814. }
  48815. },
  48816. hand: {
  48817. height: math.unit(0.8, "feet"),
  48818. name: "Hand",
  48819. image: {
  48820. source: "./media/characters/caspian/hand.svg"
  48821. }
  48822. },
  48823. paw: {
  48824. height: math.unit(0.95, "feet"),
  48825. name: "Paw",
  48826. image: {
  48827. source: "./media/characters/caspian/paw.svg"
  48828. }
  48829. },
  48830. },
  48831. [
  48832. {
  48833. name: "Normal",
  48834. height: math.unit(162, "feet"),
  48835. default: true
  48836. },
  48837. ]
  48838. ))
  48839. characterMakers.push(() => makeCharacter(
  48840. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48841. {
  48842. front: {
  48843. height: math.unit(6, "feet"),
  48844. name: "Front",
  48845. image: {
  48846. source: "./media/characters/myra-aisling/front.svg",
  48847. extra: 1268/1166,
  48848. bottom: 73/1341
  48849. }
  48850. },
  48851. back: {
  48852. height: math.unit(6, "feet"),
  48853. name: "Back",
  48854. image: {
  48855. source: "./media/characters/myra-aisling/back.svg",
  48856. extra: 1249/1149,
  48857. bottom: 79/1328
  48858. }
  48859. },
  48860. dressed: {
  48861. height: math.unit(6, "feet"),
  48862. name: "Dressed",
  48863. image: {
  48864. source: "./media/characters/myra-aisling/dressed.svg",
  48865. extra: 1290/1189,
  48866. bottom: 47/1337
  48867. }
  48868. },
  48869. hand: {
  48870. height: math.unit(1.1, "feet"),
  48871. name: "Hand",
  48872. image: {
  48873. source: "./media/characters/myra-aisling/hand.svg"
  48874. }
  48875. },
  48876. paw: {
  48877. height: math.unit(1.23, "feet"),
  48878. name: "Paw",
  48879. image: {
  48880. source: "./media/characters/myra-aisling/paw.svg"
  48881. }
  48882. },
  48883. },
  48884. [
  48885. {
  48886. name: "Normal",
  48887. height: math.unit(160, "feet"),
  48888. default: true
  48889. },
  48890. ]
  48891. ))
  48892. characterMakers.push(() => makeCharacter(
  48893. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  48894. {
  48895. front: {
  48896. height: math.unit(6, "feet"),
  48897. name: "Front",
  48898. image: {
  48899. source: "./media/characters/tenley-sidero/front.svg",
  48900. extra: 1365/1276,
  48901. bottom: 47/1412
  48902. }
  48903. },
  48904. back: {
  48905. height: math.unit(6, "feet"),
  48906. name: "Back",
  48907. image: {
  48908. source: "./media/characters/tenley-sidero/back.svg",
  48909. extra: 1383/1283,
  48910. bottom: 35/1418
  48911. }
  48912. },
  48913. dressed: {
  48914. height: math.unit(6, "feet"),
  48915. name: "Dressed",
  48916. image: {
  48917. source: "./media/characters/tenley-sidero/dressed.svg",
  48918. extra: 1364/1275,
  48919. bottom: 42/1406
  48920. }
  48921. },
  48922. head: {
  48923. height: math.unit(1.47, "feet"),
  48924. name: "Head",
  48925. image: {
  48926. source: "./media/characters/tenley-sidero/head.svg",
  48927. extra: 610/490,
  48928. bottom: 0/610
  48929. }
  48930. },
  48931. },
  48932. [
  48933. {
  48934. name: "Normal",
  48935. height: math.unit(154, "feet"),
  48936. default: true
  48937. },
  48938. ]
  48939. ))
  48940. characterMakers.push(() => makeCharacter(
  48941. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  48942. {
  48943. front: {
  48944. height: math.unit(5, "inches"),
  48945. name: "Front",
  48946. image: {
  48947. source: "./media/characters/mallory/front.svg",
  48948. extra: 1919/1678,
  48949. bottom: 29/1948
  48950. }
  48951. },
  48952. hand: {
  48953. height: math.unit(0.73, "inches"),
  48954. name: "Hand",
  48955. image: {
  48956. source: "./media/characters/mallory/hand.svg"
  48957. }
  48958. },
  48959. paw: {
  48960. height: math.unit(0.68, "inches"),
  48961. name: "Paw",
  48962. image: {
  48963. source: "./media/characters/mallory/paw.svg"
  48964. }
  48965. },
  48966. },
  48967. [
  48968. {
  48969. name: "Small",
  48970. height: math.unit(5, "inches"),
  48971. default: true
  48972. },
  48973. ]
  48974. ))
  48975. characterMakers.push(() => makeCharacter(
  48976. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  48977. {
  48978. naked: {
  48979. height: math.unit(6, "feet"),
  48980. name: "Naked",
  48981. image: {
  48982. source: "./media/characters/mab/naked.svg",
  48983. extra: 1855/1757,
  48984. bottom: 208/2063
  48985. }
  48986. },
  48987. outside: {
  48988. height: math.unit(6, "feet"),
  48989. name: "Outside",
  48990. image: {
  48991. source: "./media/characters/mab/outside.svg",
  48992. extra: 1855/1757,
  48993. bottom: 208/2063
  48994. }
  48995. },
  48996. party: {
  48997. height: math.unit(6, "feet"),
  48998. name: "Party",
  48999. image: {
  49000. source: "./media/characters/mab/party.svg",
  49001. extra: 1855/1757,
  49002. bottom: 208/2063
  49003. }
  49004. },
  49005. },
  49006. [
  49007. {
  49008. name: "Normal",
  49009. height: math.unit(165, "feet"),
  49010. default: true
  49011. },
  49012. ]
  49013. ))
  49014. characterMakers.push(() => makeCharacter(
  49015. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49016. {
  49017. front: {
  49018. height: math.unit(12, "feet"),
  49019. weight: math.unit(4000, "lb"),
  49020. name: "Front",
  49021. image: {
  49022. source: "./media/characters/winter/front.svg",
  49023. extra: 1286/943,
  49024. bottom: 112/1398
  49025. }
  49026. },
  49027. frontNsfw: {
  49028. height: math.unit(12, "feet"),
  49029. weight: math.unit(4000, "lb"),
  49030. name: "Front (NSFW)",
  49031. image: {
  49032. source: "./media/characters/winter/front-nsfw.svg",
  49033. extra: 1286/943,
  49034. bottom: 112/1398
  49035. }
  49036. },
  49037. dick: {
  49038. height: math.unit(3.79, "feet"),
  49039. name: "Dick",
  49040. image: {
  49041. source: "./media/characters/winter/dick.svg"
  49042. }
  49043. },
  49044. },
  49045. [
  49046. {
  49047. name: "Big",
  49048. height: math.unit(12, "feet"),
  49049. default: true
  49050. },
  49051. ]
  49052. ))
  49053. //characters
  49054. function makeCharacters() {
  49055. const results = [];
  49056. characterMakers.forEach(character => {
  49057. results.push(character());
  49058. });
  49059. return results;
  49060. }