less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

45602 строки
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  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. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. }
  1795. //species
  1796. function getSpeciesInfo(speciesList) {
  1797. let result = new Set();
  1798. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1799. result.add(entry)
  1800. });
  1801. return Array.from(result);
  1802. };
  1803. function getSpeciesInfoHelper(species) {
  1804. if (!speciesData[species]) {
  1805. console.warn(species + " doesn't exist");
  1806. return [];
  1807. }
  1808. if (speciesData[species].parents) {
  1809. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1810. } else {
  1811. return [species];
  1812. }
  1813. }
  1814. characterMakers.push(() => makeCharacter(
  1815. {
  1816. name: "Fen",
  1817. species: ["crux"],
  1818. description: {
  1819. title: "Bio",
  1820. text: "Very furry. Sheds on everything."
  1821. },
  1822. tags: [
  1823. "anthro",
  1824. "goo"
  1825. ]
  1826. },
  1827. {
  1828. front: {
  1829. height: math.unit(2.2428, "meter"),
  1830. weight: math.unit(124.738, "kg"),
  1831. name: "Front",
  1832. image: {
  1833. source: "./media/characters/fen/front.svg",
  1834. extra: 1804/1562,
  1835. bottom: 205/2009
  1836. }
  1837. },
  1838. diving: {
  1839. height: math.unit(3.3, "meters"),
  1840. weight: math.unit(124.738, "kg"),
  1841. name: "Diving",
  1842. image: {
  1843. source: "./media/characters/fen/diving.svg"
  1844. }
  1845. },
  1846. maw: {
  1847. height: math.unit(2.83, "feet"),
  1848. name: "Maw",
  1849. image: {
  1850. source: "./media/characters/fen/maw.svg"
  1851. }
  1852. },
  1853. back: {
  1854. height: math.unit(2.2428, "meter"),
  1855. weight: math.unit(124.738, "kg"),
  1856. name: "Back",
  1857. image: {
  1858. source: "./media/characters/fen/back.svg",
  1859. },
  1860. info: {
  1861. description: {
  1862. mode: "append",
  1863. text: "\n\nHe is not currently looking at you."
  1864. }
  1865. }
  1866. },
  1867. full: {
  1868. height: math.unit(0.91, "meter"),
  1869. weight: math.unit(225, "kg"),
  1870. name: "Full",
  1871. image: {
  1872. source: "./media/characters/fen/full.svg",
  1873. extra: 1133/859,
  1874. bottom: 145/1278
  1875. },
  1876. info: {
  1877. description: {
  1878. mode: "append",
  1879. text: "\n\nMunch."
  1880. }
  1881. }
  1882. },
  1883. kneeling: {
  1884. height: math.unit(5.4, "feet"),
  1885. weight: math.unit(124.738, "kg"),
  1886. name: "Kneeling",
  1887. image: {
  1888. source: "./media/characters/fen/kneeling.svg",
  1889. extra: 563 / 507
  1890. }
  1891. },
  1892. goo: {
  1893. height: math.unit(2.8, "feet"),
  1894. weight: math.unit(125, "kg"),
  1895. capacity: math.unit(1, "people"),
  1896. name: "Goo",
  1897. image: {
  1898. source: "./media/characters/fen/goo.svg",
  1899. bottom: 116 / 613
  1900. }
  1901. },
  1902. lounging: {
  1903. height: math.unit(6.5, "feet"),
  1904. weight: math.unit(125, "kg"),
  1905. name: "Lounging",
  1906. image: {
  1907. source: "./media/characters/fen/lounging.svg"
  1908. }
  1909. },
  1910. },
  1911. [
  1912. {
  1913. name: "Small",
  1914. height: math.unit(2.2428, "meter")
  1915. },
  1916. {
  1917. name: "Normal",
  1918. height: math.unit(12, "feet"),
  1919. default: true,
  1920. },
  1921. {
  1922. name: "Big",
  1923. height: math.unit(20, "feet")
  1924. },
  1925. {
  1926. name: "Minimacro",
  1927. height: math.unit(40, "feet"),
  1928. info: {
  1929. description: {
  1930. mode: "append",
  1931. text: "\n\nTOO DAMN BIG"
  1932. }
  1933. }
  1934. },
  1935. {
  1936. name: "Macro",
  1937. height: math.unit(100, "feet"),
  1938. info: {
  1939. description: {
  1940. mode: "append",
  1941. text: "\n\nTOO DAMN BIG"
  1942. }
  1943. }
  1944. },
  1945. {
  1946. name: "Megamacro",
  1947. height: math.unit(2, "miles")
  1948. },
  1949. {
  1950. name: "Gigamacro",
  1951. height: math.unit(10, "earths")
  1952. },
  1953. ]
  1954. ))
  1955. characterMakers.push(() => makeCharacter(
  1956. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1957. {
  1958. front: {
  1959. height: math.unit(183, "cm"),
  1960. weight: math.unit(80, "kg"),
  1961. name: "Front",
  1962. image: {
  1963. source: "./media/characters/sofia-fluttertail/front.svg",
  1964. bottom: 0.01,
  1965. extra: 2154 / 2081
  1966. }
  1967. },
  1968. frontAlt: {
  1969. height: math.unit(183, "cm"),
  1970. weight: math.unit(80, "kg"),
  1971. name: "Front (alt)",
  1972. image: {
  1973. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1974. }
  1975. },
  1976. back: {
  1977. height: math.unit(183, "cm"),
  1978. weight: math.unit(80, "kg"),
  1979. name: "Back",
  1980. image: {
  1981. source: "./media/characters/sofia-fluttertail/back.svg"
  1982. }
  1983. },
  1984. kneeling: {
  1985. height: math.unit(125, "cm"),
  1986. weight: math.unit(80, "kg"),
  1987. name: "Kneeling",
  1988. image: {
  1989. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1990. extra: 1033 / 977,
  1991. bottom: 23.7 / 1057
  1992. }
  1993. },
  1994. maw: {
  1995. height: math.unit(183 / 5, "cm"),
  1996. name: "Maw",
  1997. image: {
  1998. source: "./media/characters/sofia-fluttertail/maw.svg"
  1999. }
  2000. },
  2001. mawcloseup: {
  2002. height: math.unit(183 / 5 * 0.41, "cm"),
  2003. name: "Maw (Closeup)",
  2004. image: {
  2005. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2006. }
  2007. },
  2008. paws: {
  2009. height: math.unit(1.17, "feet"),
  2010. name: "Paws",
  2011. image: {
  2012. source: "./media/characters/sofia-fluttertail/paws.svg",
  2013. extra: 851 / 851,
  2014. bottom: 17 / 868
  2015. }
  2016. },
  2017. },
  2018. [
  2019. {
  2020. name: "Normal",
  2021. height: math.unit(1.83, "meter")
  2022. },
  2023. {
  2024. name: "Size Thief",
  2025. height: math.unit(18, "feet")
  2026. },
  2027. {
  2028. name: "50 Foot Collie",
  2029. height: math.unit(50, "feet")
  2030. },
  2031. {
  2032. name: "Macro",
  2033. height: math.unit(96, "feet"),
  2034. default: true
  2035. },
  2036. {
  2037. name: "Megamerger",
  2038. height: math.unit(650, "feet")
  2039. },
  2040. ]
  2041. ))
  2042. characterMakers.push(() => makeCharacter(
  2043. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2044. {
  2045. front: {
  2046. height: math.unit(7, "feet"),
  2047. weight: math.unit(100, "kg"),
  2048. name: "Front",
  2049. image: {
  2050. source: "./media/characters/march/front.svg",
  2051. extra: 1992/1851,
  2052. bottom: 39/2031
  2053. }
  2054. },
  2055. foot: {
  2056. height: math.unit(0.9, "feet"),
  2057. name: "Foot",
  2058. image: {
  2059. source: "./media/characters/march/foot.svg"
  2060. }
  2061. },
  2062. },
  2063. [
  2064. {
  2065. name: "Normal",
  2066. height: math.unit(7.9, "feet")
  2067. },
  2068. {
  2069. name: "Macro",
  2070. height: math.unit(220, "meters")
  2071. },
  2072. {
  2073. name: "Megamacro",
  2074. height: math.unit(2.98, "km"),
  2075. default: true
  2076. },
  2077. {
  2078. name: "Gigamacro",
  2079. height: math.unit(15963, "km")
  2080. },
  2081. {
  2082. name: "Teramacro",
  2083. height: math.unit(2980000000, "km")
  2084. },
  2085. {
  2086. name: "Examacro",
  2087. height: math.unit(250, "parsecs")
  2088. },
  2089. ]
  2090. ))
  2091. characterMakers.push(() => makeCharacter(
  2092. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2093. {
  2094. front: {
  2095. height: math.unit(6, "feet"),
  2096. weight: math.unit(60, "kg"),
  2097. name: "Front",
  2098. image: {
  2099. source: "./media/characters/noir/front.svg",
  2100. extra: 1,
  2101. bottom: 0.032
  2102. }
  2103. },
  2104. },
  2105. [
  2106. {
  2107. name: "Normal",
  2108. height: math.unit(6.6, "feet")
  2109. },
  2110. {
  2111. name: "Macro",
  2112. height: math.unit(500, "feet")
  2113. },
  2114. {
  2115. name: "Megamacro",
  2116. height: math.unit(2.5, "km"),
  2117. default: true
  2118. },
  2119. {
  2120. name: "Gigamacro",
  2121. height: math.unit(22500, "km")
  2122. },
  2123. {
  2124. name: "Teramacro",
  2125. height: math.unit(2500000000, "km")
  2126. },
  2127. {
  2128. name: "Examacro",
  2129. height: math.unit(200, "parsecs")
  2130. },
  2131. ]
  2132. ))
  2133. characterMakers.push(() => makeCharacter(
  2134. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2135. {
  2136. front: {
  2137. height: math.unit(7, "feet"),
  2138. weight: math.unit(100, "kg"),
  2139. name: "Front",
  2140. image: {
  2141. source: "./media/characters/okuri/front.svg",
  2142. extra: 1,
  2143. bottom: 0.037
  2144. }
  2145. },
  2146. back: {
  2147. height: math.unit(7, "feet"),
  2148. weight: math.unit(100, "kg"),
  2149. name: "Back",
  2150. image: {
  2151. source: "./media/characters/okuri/back.svg",
  2152. extra: 1,
  2153. bottom: 0.007
  2154. }
  2155. },
  2156. },
  2157. [
  2158. {
  2159. name: "Megamacro",
  2160. height: math.unit(100, "miles"),
  2161. default: true
  2162. },
  2163. ]
  2164. ))
  2165. characterMakers.push(() => makeCharacter(
  2166. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2167. {
  2168. front: {
  2169. height: math.unit(7, "feet"),
  2170. weight: math.unit(100, "kg"),
  2171. name: "Front",
  2172. image: {
  2173. source: "./media/characters/manny/front.svg",
  2174. extra: 1,
  2175. bottom: 0.06
  2176. }
  2177. },
  2178. back: {
  2179. height: math.unit(7, "feet"),
  2180. weight: math.unit(100, "kg"),
  2181. name: "Back",
  2182. image: {
  2183. source: "./media/characters/manny/back.svg",
  2184. extra: 1,
  2185. bottom: 0.014
  2186. }
  2187. },
  2188. },
  2189. [
  2190. {
  2191. name: "Normal",
  2192. height: math.unit(7, "feet"),
  2193. },
  2194. {
  2195. name: "Macro",
  2196. height: math.unit(78, "feet"),
  2197. default: true
  2198. },
  2199. {
  2200. name: "Macro+",
  2201. height: math.unit(300, "meters")
  2202. },
  2203. {
  2204. name: "Macro++",
  2205. height: math.unit(2400, "meters")
  2206. },
  2207. {
  2208. name: "Megamacro",
  2209. height: math.unit(5167, "meters")
  2210. },
  2211. {
  2212. name: "Gigamacro",
  2213. height: math.unit(41769, "miles")
  2214. },
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2219. {
  2220. front: {
  2221. height: math.unit(7, "feet"),
  2222. weight: math.unit(100, "kg"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/adake/front-1.svg"
  2226. }
  2227. },
  2228. frontAlt: {
  2229. height: math.unit(7, "feet"),
  2230. weight: math.unit(100, "kg"),
  2231. name: "Front (Alt)",
  2232. image: {
  2233. source: "./media/characters/adake/front-2.svg",
  2234. extra: 1,
  2235. bottom: 0.01
  2236. }
  2237. },
  2238. back: {
  2239. height: math.unit(7, "feet"),
  2240. weight: math.unit(100, "kg"),
  2241. name: "Back",
  2242. image: {
  2243. source: "./media/characters/adake/back.svg",
  2244. }
  2245. },
  2246. kneel: {
  2247. height: math.unit(5.385, "feet"),
  2248. weight: math.unit(100, "kg"),
  2249. name: "Kneeling",
  2250. image: {
  2251. source: "./media/characters/adake/kneel.svg",
  2252. bottom: 0.052
  2253. }
  2254. },
  2255. },
  2256. [
  2257. {
  2258. name: "Normal",
  2259. height: math.unit(7, "feet"),
  2260. },
  2261. {
  2262. name: "Macro",
  2263. height: math.unit(78, "feet"),
  2264. default: true
  2265. },
  2266. {
  2267. name: "Macro+",
  2268. height: math.unit(300, "meters")
  2269. },
  2270. {
  2271. name: "Macro++",
  2272. height: math.unit(2400, "meters")
  2273. },
  2274. {
  2275. name: "Megamacro",
  2276. height: math.unit(5167, "meters")
  2277. },
  2278. {
  2279. name: "Gigamacro",
  2280. height: math.unit(41769, "miles")
  2281. },
  2282. ]
  2283. ))
  2284. characterMakers.push(() => makeCharacter(
  2285. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2286. {
  2287. front: {
  2288. height: math.unit(1.65, "meters"),
  2289. weight: math.unit(50, "kg"),
  2290. name: "Front",
  2291. image: {
  2292. source: "./media/characters/elijah/front.svg",
  2293. extra: 858 / 830,
  2294. bottom: 95.5 / 953.8559
  2295. }
  2296. },
  2297. back: {
  2298. height: math.unit(1.65, "meters"),
  2299. weight: math.unit(50, "kg"),
  2300. name: "Back",
  2301. image: {
  2302. source: "./media/characters/elijah/back.svg",
  2303. extra: 895 / 850,
  2304. bottom: 5.3 / 897.956
  2305. }
  2306. },
  2307. frontNsfw: {
  2308. height: math.unit(1.65, "meters"),
  2309. weight: math.unit(50, "kg"),
  2310. name: "Front (NSFW)",
  2311. image: {
  2312. source: "./media/characters/elijah/front-nsfw.svg",
  2313. extra: 858 / 830,
  2314. bottom: 95.5 / 953.8559
  2315. }
  2316. },
  2317. backNsfw: {
  2318. height: math.unit(1.65, "meters"),
  2319. weight: math.unit(50, "kg"),
  2320. name: "Back (NSFW)",
  2321. image: {
  2322. source: "./media/characters/elijah/back-nsfw.svg",
  2323. extra: 895 / 850,
  2324. bottom: 5.3 / 897.956
  2325. }
  2326. },
  2327. dick: {
  2328. height: math.unit(1, "feet"),
  2329. name: "Dick",
  2330. image: {
  2331. source: "./media/characters/elijah/dick.svg"
  2332. }
  2333. },
  2334. beakOpen: {
  2335. height: math.unit(1.25, "feet"),
  2336. name: "Beak (Open)",
  2337. image: {
  2338. source: "./media/characters/elijah/beak-open.svg"
  2339. }
  2340. },
  2341. beakShut: {
  2342. height: math.unit(1.25, "feet"),
  2343. name: "Beak (Shut)",
  2344. image: {
  2345. source: "./media/characters/elijah/beak-shut.svg"
  2346. }
  2347. },
  2348. footFlexing: {
  2349. height: math.unit(1.61, "feet"),
  2350. name: "Foot (Flexing)",
  2351. image: {
  2352. source: "./media/characters/elijah/foot-flexing.svg"
  2353. }
  2354. },
  2355. footStepping: {
  2356. height: math.unit(1.44, "feet"),
  2357. name: "Foot (Stepping)",
  2358. image: {
  2359. source: "./media/characters/elijah/foot-stepping.svg"
  2360. }
  2361. },
  2362. plantigradeLeg: {
  2363. height: math.unit(2.34, "feet"),
  2364. name: "Plantigrade Leg",
  2365. image: {
  2366. source: "./media/characters/elijah/plantigrade-leg.svg"
  2367. }
  2368. },
  2369. plantigradeFootLeft: {
  2370. height: math.unit(0.9, "feet"),
  2371. name: "Plantigrade Foot (Left)",
  2372. image: {
  2373. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2374. }
  2375. },
  2376. plantigradeFootRight: {
  2377. height: math.unit(0.9, "feet"),
  2378. name: "Plantigrade Foot (Right)",
  2379. image: {
  2380. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2381. }
  2382. },
  2383. },
  2384. [
  2385. {
  2386. name: "Normal",
  2387. height: math.unit(1.65, "meters")
  2388. },
  2389. {
  2390. name: "Macro",
  2391. height: math.unit(55, "meters"),
  2392. default: true
  2393. },
  2394. {
  2395. name: "Macro+",
  2396. height: math.unit(105, "meters")
  2397. },
  2398. ]
  2399. ))
  2400. characterMakers.push(() => makeCharacter(
  2401. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2402. {
  2403. front: {
  2404. height: math.unit(7 + 2/12, "feet"),
  2405. weight: math.unit(320, "kg"),
  2406. name: "Front",
  2407. image: {
  2408. source: "./media/characters/rai/front.svg",
  2409. extra: 1802/1696,
  2410. bottom: 68/1870
  2411. }
  2412. },
  2413. frontDressed: {
  2414. height: math.unit(7 + 2/12, "feet"),
  2415. weight: math.unit(320, "kg"),
  2416. name: "Front (Dressed)",
  2417. image: {
  2418. source: "./media/characters/rai/front-dressed.svg",
  2419. extra: 1802/1696,
  2420. bottom: 68/1870
  2421. }
  2422. },
  2423. side: {
  2424. height: math.unit(7 + 2/12, "feet"),
  2425. weight: math.unit(320, "kg"),
  2426. name: "Side",
  2427. image: {
  2428. source: "./media/characters/rai/side.svg",
  2429. extra: 1789/1710,
  2430. bottom: 115/1904
  2431. }
  2432. },
  2433. back: {
  2434. height: math.unit(7 + 2/12, "feet"),
  2435. weight: math.unit(320, "kg"),
  2436. name: "Back",
  2437. image: {
  2438. source: "./media/characters/rai/back.svg",
  2439. extra: 1770/1707,
  2440. bottom: 28/1798
  2441. }
  2442. },
  2443. feral: {
  2444. height: math.unit(9.5, "feet"),
  2445. weight: math.unit(640, "kg"),
  2446. name: "Feral",
  2447. image: {
  2448. source: "./media/characters/rai/feral.svg",
  2449. extra: 945/553,
  2450. bottom: 176/1121
  2451. }
  2452. },
  2453. dragon: {
  2454. height: math.unit(23, "feet"),
  2455. weight: math.unit(50000, "lb"),
  2456. name: "Dragon",
  2457. image: {
  2458. source: "./media/characters/rai/dragon.svg",
  2459. extra: 2498 / 2030,
  2460. bottom: 85.2 / 2584
  2461. }
  2462. },
  2463. maw: {
  2464. height: math.unit(1.69, "feet"),
  2465. name: "Maw",
  2466. image: {
  2467. source: "./media/characters/rai/maw.svg"
  2468. }
  2469. },
  2470. },
  2471. [
  2472. {
  2473. name: "Normal",
  2474. height: math.unit(7 + 2/12, "feet")
  2475. },
  2476. {
  2477. name: "Big",
  2478. height: math.unit(11, "feet")
  2479. },
  2480. {
  2481. name: "Macro",
  2482. height: math.unit(302, "feet"),
  2483. default: true
  2484. },
  2485. ]
  2486. ))
  2487. characterMakers.push(() => makeCharacter(
  2488. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2489. {
  2490. frontDressed: {
  2491. height: math.unit(216, "feet"),
  2492. weight: math.unit(7000000, "lb"),
  2493. name: "Front (Dressed)",
  2494. image: {
  2495. source: "./media/characters/jazzy/front-dressed.svg",
  2496. extra: 2738 / 2651,
  2497. bottom: 41.8 / 2786
  2498. }
  2499. },
  2500. backDressed: {
  2501. height: math.unit(216, "feet"),
  2502. weight: math.unit(7000000, "lb"),
  2503. name: "Back (Dressed)",
  2504. image: {
  2505. source: "./media/characters/jazzy/back-dressed.svg",
  2506. extra: 2775 / 2673,
  2507. bottom: 36.8 / 2817
  2508. }
  2509. },
  2510. front: {
  2511. height: math.unit(216, "feet"),
  2512. weight: math.unit(7000000, "lb"),
  2513. name: "Front",
  2514. image: {
  2515. source: "./media/characters/jazzy/front.svg",
  2516. extra: 2738 / 2651,
  2517. bottom: 41.8 / 2786
  2518. }
  2519. },
  2520. back: {
  2521. height: math.unit(216, "feet"),
  2522. weight: math.unit(7000000, "lb"),
  2523. name: "Back",
  2524. image: {
  2525. source: "./media/characters/jazzy/back.svg",
  2526. extra: 2775 / 2673,
  2527. bottom: 36.8 / 2817
  2528. }
  2529. },
  2530. maw: {
  2531. height: math.unit(20, "feet"),
  2532. name: "Maw",
  2533. image: {
  2534. source: "./media/characters/jazzy/maw.svg"
  2535. }
  2536. },
  2537. paws: {
  2538. height: math.unit(27.5, "feet"),
  2539. name: "Paws",
  2540. image: {
  2541. source: "./media/characters/jazzy/paws.svg"
  2542. }
  2543. },
  2544. eye: {
  2545. height: math.unit(4.4, "feet"),
  2546. name: "Eye",
  2547. image: {
  2548. source: "./media/characters/jazzy/eye.svg"
  2549. }
  2550. },
  2551. droneOffense: {
  2552. height: math.unit(9.5, "inches"),
  2553. name: "Drone (Offense)",
  2554. image: {
  2555. source: "./media/characters/jazzy/drone-offense.svg"
  2556. }
  2557. },
  2558. droneRecon: {
  2559. height: math.unit(9.5, "inches"),
  2560. name: "Drone (Recon)",
  2561. image: {
  2562. source: "./media/characters/jazzy/drone-recon.svg"
  2563. }
  2564. },
  2565. droneDefense: {
  2566. height: math.unit(9.5, "inches"),
  2567. name: "Drone (Defense)",
  2568. image: {
  2569. source: "./media/characters/jazzy/drone-defense.svg"
  2570. }
  2571. },
  2572. },
  2573. [
  2574. {
  2575. name: "Macro",
  2576. height: math.unit(216, "feet"),
  2577. default: true
  2578. },
  2579. ]
  2580. ))
  2581. characterMakers.push(() => makeCharacter(
  2582. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2583. {
  2584. front: {
  2585. height: math.unit(9 + 6/12, "feet"),
  2586. weight: math.unit(700, "lb"),
  2587. name: "Front",
  2588. image: {
  2589. source: "./media/characters/flamm/front.svg",
  2590. extra: 1751/1632,
  2591. bottom: 46/1797
  2592. }
  2593. },
  2594. buff: {
  2595. height: math.unit(9 + 6/12, "feet"),
  2596. weight: math.unit(950, "lb"),
  2597. name: "Buff",
  2598. image: {
  2599. source: "./media/characters/flamm/buff.svg",
  2600. extra: 3018/2874,
  2601. bottom: 221/3239
  2602. }
  2603. },
  2604. },
  2605. [
  2606. {
  2607. name: "Normal",
  2608. height: math.unit(9.5, "feet")
  2609. },
  2610. {
  2611. name: "Macro",
  2612. height: math.unit(200, "feet"),
  2613. default: true
  2614. },
  2615. ]
  2616. ))
  2617. characterMakers.push(() => makeCharacter(
  2618. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2619. {
  2620. front: {
  2621. height: math.unit(5 + 3/12, "feet"),
  2622. weight: math.unit(60, "kg"),
  2623. name: "Front",
  2624. image: {
  2625. source: "./media/characters/zephiro/front.svg",
  2626. extra: 2309 / 2162,
  2627. bottom: 0.069
  2628. }
  2629. },
  2630. side: {
  2631. height: math.unit(5 + 3/12, "feet"),
  2632. weight: math.unit(60, "kg"),
  2633. name: "Side",
  2634. image: {
  2635. source: "./media/characters/zephiro/side.svg",
  2636. extra: 2403 / 2279,
  2637. bottom: 0.015
  2638. }
  2639. },
  2640. back: {
  2641. height: math.unit(5 + 3/12, "feet"),
  2642. weight: math.unit(60, "kg"),
  2643. name: "Back",
  2644. image: {
  2645. source: "./media/characters/zephiro/back.svg",
  2646. extra: 2373 / 2244,
  2647. bottom: 0.013
  2648. }
  2649. },
  2650. hand: {
  2651. height: math.unit(0.68, "feet"),
  2652. name: "Hand",
  2653. image: {
  2654. source: "./media/characters/zephiro/hand.svg"
  2655. }
  2656. },
  2657. paw: {
  2658. height: math.unit(1, "feet"),
  2659. name: "Paw",
  2660. image: {
  2661. source: "./media/characters/zephiro/paw.svg"
  2662. }
  2663. },
  2664. beans: {
  2665. height: math.unit(0.93, "feet"),
  2666. name: "Beans",
  2667. image: {
  2668. source: "./media/characters/zephiro/beans.svg"
  2669. }
  2670. },
  2671. },
  2672. [
  2673. {
  2674. name: "Micro",
  2675. height: math.unit(3, "inches")
  2676. },
  2677. {
  2678. name: "Normal",
  2679. height: math.unit(5 + 3 / 12, "feet"),
  2680. default: true
  2681. },
  2682. {
  2683. name: "Macro",
  2684. height: math.unit(118, "feet")
  2685. },
  2686. ]
  2687. ))
  2688. characterMakers.push(() => makeCharacter(
  2689. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2690. {
  2691. front: {
  2692. height: math.unit(5, "feet"),
  2693. weight: math.unit(90, "kg"),
  2694. name: "Front",
  2695. image: {
  2696. source: "./media/characters/fory/front.svg",
  2697. extra: 2862 / 2674,
  2698. bottom: 180 / 3043.8
  2699. }
  2700. },
  2701. back: {
  2702. height: math.unit(5, "feet"),
  2703. weight: math.unit(90, "kg"),
  2704. name: "Back",
  2705. image: {
  2706. source: "./media/characters/fory/back.svg",
  2707. extra: 2962 / 2791,
  2708. bottom: 106 / 3071.8
  2709. }
  2710. },
  2711. foot: {
  2712. height: math.unit(2.14, "feet"),
  2713. name: "Foot",
  2714. image: {
  2715. source: "./media/characters/fory/foot.svg"
  2716. }
  2717. },
  2718. },
  2719. [
  2720. {
  2721. name: "Normal",
  2722. height: math.unit(5, "feet")
  2723. },
  2724. {
  2725. name: "Macro",
  2726. height: math.unit(50, "feet"),
  2727. default: true
  2728. },
  2729. {
  2730. name: "Megamacro",
  2731. height: math.unit(10, "miles")
  2732. },
  2733. {
  2734. name: "Gigamacro",
  2735. height: math.unit(5, "earths")
  2736. },
  2737. ]
  2738. ))
  2739. characterMakers.push(() => makeCharacter(
  2740. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2741. {
  2742. front: {
  2743. height: math.unit(7, "feet"),
  2744. weight: math.unit(90, "kg"),
  2745. name: "Front",
  2746. image: {
  2747. source: "./media/characters/kurrikage/front.svg",
  2748. extra: 1845/1733,
  2749. bottom: 119/1964
  2750. }
  2751. },
  2752. back: {
  2753. height: math.unit(7, "feet"),
  2754. weight: math.unit(90, "kg"),
  2755. name: "Back",
  2756. image: {
  2757. source: "./media/characters/kurrikage/back.svg",
  2758. extra: 1790/1677,
  2759. bottom: 61/1851
  2760. }
  2761. },
  2762. dressed: {
  2763. height: math.unit(7, "feet"),
  2764. weight: math.unit(90, "kg"),
  2765. name: "Dressed",
  2766. image: {
  2767. source: "./media/characters/kurrikage/dressed.svg",
  2768. extra: 1845/1733,
  2769. bottom: 119/1964
  2770. }
  2771. },
  2772. foot: {
  2773. height: math.unit(1.5, "feet"),
  2774. name: "Foot",
  2775. image: {
  2776. source: "./media/characters/kurrikage/foot.svg"
  2777. }
  2778. },
  2779. staff: {
  2780. height: math.unit(6.7, "feet"),
  2781. name: "Staff",
  2782. image: {
  2783. source: "./media/characters/kurrikage/staff.svg"
  2784. }
  2785. },
  2786. peek: {
  2787. height: math.unit(1.05, "feet"),
  2788. name: "Peeking",
  2789. image: {
  2790. source: "./media/characters/kurrikage/peek.svg",
  2791. bottom: 0.08
  2792. }
  2793. },
  2794. },
  2795. [
  2796. {
  2797. name: "Normal",
  2798. height: math.unit(12, "feet"),
  2799. default: true
  2800. },
  2801. {
  2802. name: "Big",
  2803. height: math.unit(20, "feet")
  2804. },
  2805. {
  2806. name: "Macro",
  2807. height: math.unit(500, "feet")
  2808. },
  2809. {
  2810. name: "Megamacro",
  2811. height: math.unit(20, "miles")
  2812. },
  2813. ]
  2814. ))
  2815. characterMakers.push(() => makeCharacter(
  2816. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2817. {
  2818. front: {
  2819. height: math.unit(6, "feet"),
  2820. weight: math.unit(75, "kg"),
  2821. name: "Front",
  2822. image: {
  2823. source: "./media/characters/shingo/front.svg",
  2824. extra: 1900/1825,
  2825. bottom: 82/1982
  2826. }
  2827. },
  2828. side: {
  2829. height: math.unit(6, "feet"),
  2830. weight: math.unit(75, "kg"),
  2831. name: "Side",
  2832. image: {
  2833. source: "./media/characters/shingo/side.svg",
  2834. extra: 1930/1865,
  2835. bottom: 16/1946
  2836. }
  2837. },
  2838. back: {
  2839. height: math.unit(6, "feet"),
  2840. weight: math.unit(75, "kg"),
  2841. name: "Back",
  2842. image: {
  2843. source: "./media/characters/shingo/back.svg",
  2844. extra: 1922/1852,
  2845. bottom: 16/1938
  2846. }
  2847. },
  2848. frontDressed: {
  2849. height: math.unit(6, "feet"),
  2850. weight: math.unit(150, "lb"),
  2851. name: "Front-dressed",
  2852. image: {
  2853. source: "./media/characters/shingo/front-dressed.svg",
  2854. extra: 1900/1825,
  2855. bottom: 82/1982
  2856. }
  2857. },
  2858. paw: {
  2859. height: math.unit(1.29, "feet"),
  2860. name: "Paw",
  2861. image: {
  2862. source: "./media/characters/shingo/paw.svg"
  2863. }
  2864. },
  2865. hand: {
  2866. height: math.unit(1.07, "feet"),
  2867. name: "Hand",
  2868. image: {
  2869. source: "./media/characters/shingo/hand.svg"
  2870. }
  2871. },
  2872. frontAlt: {
  2873. height: math.unit(6, "feet"),
  2874. weight: math.unit(75, "kg"),
  2875. name: "Front (Alt)",
  2876. image: {
  2877. source: "./media/characters/shingo/front-alt.svg",
  2878. extra: 3511 / 3338,
  2879. bottom: 0.005
  2880. }
  2881. },
  2882. frontAlt2: {
  2883. height: math.unit(6, "feet"),
  2884. weight: math.unit(75, "kg"),
  2885. name: "Front (Alt 2)",
  2886. image: {
  2887. source: "./media/characters/shingo/front-alt-2.svg",
  2888. extra: 706/681,
  2889. bottom: 11/717
  2890. }
  2891. },
  2892. pawAlt: {
  2893. height: math.unit(1, "feet"),
  2894. name: "Paw (Alt)",
  2895. image: {
  2896. source: "./media/characters/shingo/paw-alt.svg"
  2897. }
  2898. },
  2899. },
  2900. [
  2901. {
  2902. name: "Micro",
  2903. height: math.unit(4, "inches")
  2904. },
  2905. {
  2906. name: "Normal",
  2907. height: math.unit(6, "feet"),
  2908. default: true
  2909. },
  2910. {
  2911. name: "Macro",
  2912. height: math.unit(108, "feet")
  2913. },
  2914. {
  2915. name: "Macro+",
  2916. height: math.unit(1500, "feet")
  2917. },
  2918. ]
  2919. ))
  2920. characterMakers.push(() => makeCharacter(
  2921. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2922. {
  2923. side: {
  2924. height: math.unit(6, "feet"),
  2925. weight: math.unit(75, "kg"),
  2926. name: "Side",
  2927. image: {
  2928. source: "./media/characters/aigey/side.svg"
  2929. }
  2930. },
  2931. },
  2932. [
  2933. {
  2934. name: "Macro",
  2935. height: math.unit(200, "feet"),
  2936. default: true
  2937. },
  2938. {
  2939. name: "Megamacro",
  2940. height: math.unit(100, "miles")
  2941. },
  2942. ]
  2943. )
  2944. )
  2945. characterMakers.push(() => makeCharacter(
  2946. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2947. {
  2948. front: {
  2949. height: math.unit(5 + 5 / 12, "feet"),
  2950. weight: math.unit(75, "kg"),
  2951. name: "Front",
  2952. image: {
  2953. source: "./media/characters/natasha/front.svg",
  2954. extra: 859 / 824,
  2955. bottom: 23 / 879.6
  2956. }
  2957. },
  2958. frontNsfw: {
  2959. height: math.unit(5 + 5 / 12, "feet"),
  2960. weight: math.unit(75, "kg"),
  2961. name: "Front (NSFW)",
  2962. image: {
  2963. source: "./media/characters/natasha/front-nsfw.svg",
  2964. extra: 859 / 824,
  2965. bottom: 23 / 879.6
  2966. }
  2967. },
  2968. frontErect: {
  2969. height: math.unit(5 + 5 / 12, "feet"),
  2970. weight: math.unit(75, "kg"),
  2971. name: "Front (Erect)",
  2972. image: {
  2973. source: "./media/characters/natasha/front-erect.svg",
  2974. extra: 859 / 824,
  2975. bottom: 23 / 879.6
  2976. }
  2977. },
  2978. back: {
  2979. height: math.unit(5 + 5 / 12, "feet"),
  2980. weight: math.unit(75, "kg"),
  2981. name: "Back",
  2982. image: {
  2983. source: "./media/characters/natasha/back.svg",
  2984. extra: 887.9 / 852.6,
  2985. bottom: 9.7 / 896.4
  2986. }
  2987. },
  2988. backAlt: {
  2989. height: math.unit(5 + 5 / 12, "feet"),
  2990. weight: math.unit(75, "kg"),
  2991. name: "Back (Alt)",
  2992. image: {
  2993. source: "./media/characters/natasha/back-alt.svg",
  2994. extra: 1236.7 / 1192,
  2995. bottom: 22.3 / 1258.2
  2996. }
  2997. },
  2998. dick: {
  2999. height: math.unit(1.772, "feet"),
  3000. name: "Dick",
  3001. image: {
  3002. source: "./media/characters/natasha/dick.svg"
  3003. }
  3004. },
  3005. paw: {
  3006. height: math.unit(0.250, "meters"),
  3007. name: "Paw",
  3008. image: {
  3009. source: "./media/characters/natasha/paw.svg"
  3010. }
  3011. },
  3012. },
  3013. [
  3014. {
  3015. name: "Normal",
  3016. height: math.unit(5 + 5 / 12, "feet")
  3017. },
  3018. {
  3019. name: "Large",
  3020. height: math.unit(12, "feet")
  3021. },
  3022. {
  3023. name: "Macro",
  3024. height: math.unit(100, "feet"),
  3025. default: true
  3026. },
  3027. {
  3028. name: "Macro+",
  3029. height: math.unit(260, "feet")
  3030. },
  3031. {
  3032. name: "Macro++",
  3033. height: math.unit(1, "mile")
  3034. },
  3035. ]
  3036. ))
  3037. characterMakers.push(() => makeCharacter(
  3038. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3039. {
  3040. front: {
  3041. height: math.unit(6, "feet"),
  3042. weight: math.unit(75, "kg"),
  3043. name: "Front",
  3044. image: {
  3045. source: "./media/characters/malik/front.svg"
  3046. }
  3047. },
  3048. side: {
  3049. height: math.unit(6, "feet"),
  3050. weight: math.unit(75, "kg"),
  3051. name: "Side",
  3052. image: {
  3053. source: "./media/characters/malik/side.svg",
  3054. extra: 1.1539
  3055. }
  3056. },
  3057. back: {
  3058. height: math.unit(6, "feet"),
  3059. weight: math.unit(75, "kg"),
  3060. name: "Back",
  3061. image: {
  3062. source: "./media/characters/malik/back.svg"
  3063. }
  3064. },
  3065. },
  3066. [
  3067. {
  3068. name: "Macro",
  3069. height: math.unit(156, "feet"),
  3070. default: true
  3071. },
  3072. {
  3073. name: "Macro+",
  3074. height: math.unit(1188, "feet")
  3075. },
  3076. ]
  3077. ))
  3078. characterMakers.push(() => makeCharacter(
  3079. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3080. {
  3081. front: {
  3082. height: math.unit(6, "feet"),
  3083. weight: math.unit(75, "kg"),
  3084. name: "Front",
  3085. image: {
  3086. source: "./media/characters/sefer/front.svg",
  3087. extra: 848 / 659,
  3088. bottom: 28.3 / 876.442
  3089. }
  3090. },
  3091. back: {
  3092. height: math.unit(6, "feet"),
  3093. weight: math.unit(75, "kg"),
  3094. name: "Back",
  3095. image: {
  3096. source: "./media/characters/sefer/back.svg",
  3097. extra: 864 / 695,
  3098. bottom: 10 / 871
  3099. }
  3100. },
  3101. frontDressed: {
  3102. height: math.unit(6, "feet"),
  3103. weight: math.unit(75, "kg"),
  3104. name: "Front (Dressed)",
  3105. image: {
  3106. source: "./media/characters/sefer/front-dressed.svg",
  3107. extra: 839 / 653,
  3108. bottom: 37.6 / 878
  3109. }
  3110. },
  3111. },
  3112. [
  3113. {
  3114. name: "Normal",
  3115. height: math.unit(6, "feet"),
  3116. default: true
  3117. },
  3118. ]
  3119. ))
  3120. characterMakers.push(() => makeCharacter(
  3121. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3122. {
  3123. body: {
  3124. height: math.unit(2.2428, "meter"),
  3125. weight: math.unit(124.738, "kg"),
  3126. name: "Body",
  3127. image: {
  3128. extra: 1225 / 1050,
  3129. source: "./media/characters/north/front.svg"
  3130. }
  3131. }
  3132. },
  3133. [
  3134. {
  3135. name: "Micro",
  3136. height: math.unit(4, "inches")
  3137. },
  3138. {
  3139. name: "Macro",
  3140. height: math.unit(63, "meters")
  3141. },
  3142. {
  3143. name: "Megamacro",
  3144. height: math.unit(101, "miles"),
  3145. default: true
  3146. }
  3147. ]
  3148. ))
  3149. characterMakers.push(() => makeCharacter(
  3150. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3151. {
  3152. angled: {
  3153. height: math.unit(4, "meter"),
  3154. weight: math.unit(150, "kg"),
  3155. name: "Angled",
  3156. image: {
  3157. source: "./media/characters/talan/angled-sfw.svg",
  3158. bottom: 29 / 3734
  3159. }
  3160. },
  3161. angledNsfw: {
  3162. height: math.unit(4, "meter"),
  3163. weight: math.unit(150, "kg"),
  3164. name: "Angled (NSFW)",
  3165. image: {
  3166. source: "./media/characters/talan/angled-nsfw.svg",
  3167. bottom: 29 / 3734
  3168. }
  3169. },
  3170. frontNsfw: {
  3171. height: math.unit(4, "meter"),
  3172. weight: math.unit(150, "kg"),
  3173. name: "Front (NSFW)",
  3174. image: {
  3175. source: "./media/characters/talan/front-nsfw.svg",
  3176. bottom: 29 / 3734
  3177. }
  3178. },
  3179. sideNsfw: {
  3180. height: math.unit(4, "meter"),
  3181. weight: math.unit(150, "kg"),
  3182. name: "Side (NSFW)",
  3183. image: {
  3184. source: "./media/characters/talan/side-nsfw.svg",
  3185. bottom: 29 / 3734
  3186. }
  3187. },
  3188. back: {
  3189. height: math.unit(4, "meter"),
  3190. weight: math.unit(150, "kg"),
  3191. name: "Back",
  3192. image: {
  3193. source: "./media/characters/talan/back.svg"
  3194. }
  3195. },
  3196. dickBottom: {
  3197. height: math.unit(0.621, "meter"),
  3198. name: "Dick (Bottom)",
  3199. image: {
  3200. source: "./media/characters/talan/dick-bottom.svg"
  3201. }
  3202. },
  3203. dickTop: {
  3204. height: math.unit(0.621, "meter"),
  3205. name: "Dick (Top)",
  3206. image: {
  3207. source: "./media/characters/talan/dick-top.svg"
  3208. }
  3209. },
  3210. dickSide: {
  3211. height: math.unit(0.305, "meter"),
  3212. name: "Dick (Side)",
  3213. image: {
  3214. source: "./media/characters/talan/dick-side.svg"
  3215. }
  3216. },
  3217. dickFront: {
  3218. height: math.unit(0.305, "meter"),
  3219. name: "Dick (Front)",
  3220. image: {
  3221. source: "./media/characters/talan/dick-front.svg"
  3222. }
  3223. },
  3224. },
  3225. [
  3226. {
  3227. name: "Normal",
  3228. height: math.unit(4, "meters")
  3229. },
  3230. {
  3231. name: "Macro",
  3232. height: math.unit(100, "meters")
  3233. },
  3234. {
  3235. name: "Megamacro",
  3236. height: math.unit(2, "miles"),
  3237. default: true
  3238. },
  3239. {
  3240. name: "Gigamacro",
  3241. height: math.unit(5000, "miles")
  3242. },
  3243. {
  3244. name: "Teramacro",
  3245. height: math.unit(100, "parsecs")
  3246. }
  3247. ]
  3248. ))
  3249. characterMakers.push(() => makeCharacter(
  3250. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3251. {
  3252. front: {
  3253. height: math.unit(2, "meter"),
  3254. weight: math.unit(90, "kg"),
  3255. name: "Front",
  3256. image: {
  3257. source: "./media/characters/gael'rathus/front.svg"
  3258. }
  3259. },
  3260. frontAlt: {
  3261. height: math.unit(2, "meter"),
  3262. weight: math.unit(90, "kg"),
  3263. name: "Front (alt)",
  3264. image: {
  3265. source: "./media/characters/gael'rathus/front-alt.svg"
  3266. }
  3267. },
  3268. frontAlt2: {
  3269. height: math.unit(2, "meter"),
  3270. weight: math.unit(90, "kg"),
  3271. name: "Front (alt 2)",
  3272. image: {
  3273. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3274. }
  3275. }
  3276. },
  3277. [
  3278. {
  3279. name: "Normal",
  3280. height: math.unit(9, "feet"),
  3281. default: true
  3282. },
  3283. {
  3284. name: "Large",
  3285. height: math.unit(25, "feet")
  3286. },
  3287. {
  3288. name: "Macro",
  3289. height: math.unit(0.25, "miles")
  3290. },
  3291. {
  3292. name: "Megamacro",
  3293. height: math.unit(10, "miles")
  3294. }
  3295. ]
  3296. ))
  3297. characterMakers.push(() => makeCharacter(
  3298. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3299. {
  3300. side: {
  3301. height: math.unit(2, "meter"),
  3302. weight: math.unit(140, "kg"),
  3303. name: "Side",
  3304. image: {
  3305. source: "./media/characters/sosha/side.svg",
  3306. bottom: 0.042
  3307. }
  3308. },
  3309. },
  3310. [
  3311. {
  3312. name: "Normal",
  3313. height: math.unit(12, "feet"),
  3314. default: true
  3315. }
  3316. ]
  3317. ))
  3318. characterMakers.push(() => makeCharacter(
  3319. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3320. {
  3321. side: {
  3322. height: math.unit(5 + 5 / 12, "feet"),
  3323. weight: math.unit(170, "kg"),
  3324. name: "Side",
  3325. image: {
  3326. source: "./media/characters/runnola/side.svg",
  3327. extra: 741 / 448,
  3328. bottom: 0.05
  3329. }
  3330. },
  3331. },
  3332. [
  3333. {
  3334. name: "Small",
  3335. height: math.unit(3, "feet")
  3336. },
  3337. {
  3338. name: "Normal",
  3339. height: math.unit(5 + 5 / 12, "feet"),
  3340. default: true
  3341. },
  3342. {
  3343. name: "Big",
  3344. height: math.unit(10, "feet")
  3345. },
  3346. ]
  3347. ))
  3348. characterMakers.push(() => makeCharacter(
  3349. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3350. {
  3351. front: {
  3352. height: math.unit(2, "meter"),
  3353. weight: math.unit(50, "kg"),
  3354. name: "Front",
  3355. image: {
  3356. source: "./media/characters/kurribird/front.svg",
  3357. bottom: 0.015
  3358. }
  3359. },
  3360. frontAlt: {
  3361. height: math.unit(1.5, "meter"),
  3362. weight: math.unit(50, "kg"),
  3363. name: "Front (Alt)",
  3364. image: {
  3365. source: "./media/characters/kurribird/front-alt.svg",
  3366. extra: 1.45
  3367. }
  3368. },
  3369. },
  3370. [
  3371. {
  3372. name: "Normal",
  3373. height: math.unit(7, "feet")
  3374. },
  3375. {
  3376. name: "Big",
  3377. height: math.unit(12, "feet"),
  3378. default: true
  3379. },
  3380. {
  3381. name: "Macro",
  3382. height: math.unit(1500, "feet")
  3383. },
  3384. {
  3385. name: "Megamacro",
  3386. height: math.unit(2, "miles")
  3387. }
  3388. ]
  3389. ))
  3390. characterMakers.push(() => makeCharacter(
  3391. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3392. {
  3393. front: {
  3394. height: math.unit(2, "meter"),
  3395. weight: math.unit(80, "kg"),
  3396. name: "Front",
  3397. image: {
  3398. source: "./media/characters/elbial/front.svg",
  3399. extra: 1643 / 1556,
  3400. bottom: 60.2 / 1696
  3401. }
  3402. },
  3403. side: {
  3404. height: math.unit(2, "meter"),
  3405. weight: math.unit(80, "kg"),
  3406. name: "Side",
  3407. image: {
  3408. source: "./media/characters/elbial/side.svg",
  3409. extra: 1630 / 1565,
  3410. bottom: 71.5 / 1697
  3411. }
  3412. },
  3413. back: {
  3414. height: math.unit(2, "meter"),
  3415. weight: math.unit(80, "kg"),
  3416. name: "Back",
  3417. image: {
  3418. source: "./media/characters/elbial/back.svg",
  3419. extra: 1668 / 1595,
  3420. bottom: 5.6 / 1672
  3421. }
  3422. },
  3423. frontDressed: {
  3424. height: math.unit(2, "meter"),
  3425. weight: math.unit(80, "kg"),
  3426. name: "Front (Dressed)",
  3427. image: {
  3428. source: "./media/characters/elbial/front-dressed.svg",
  3429. extra: 1653 / 1584,
  3430. bottom: 57 / 1708
  3431. }
  3432. },
  3433. genitals: {
  3434. height: math.unit(2 / 3.367, "meter"),
  3435. name: "Genitals",
  3436. image: {
  3437. source: "./media/characters/elbial/genitals.svg"
  3438. }
  3439. },
  3440. },
  3441. [
  3442. {
  3443. name: "Large",
  3444. height: math.unit(100, "feet")
  3445. },
  3446. {
  3447. name: "Macro",
  3448. height: math.unit(500, "feet"),
  3449. default: true
  3450. },
  3451. {
  3452. name: "Megamacro",
  3453. height: math.unit(10, "miles")
  3454. },
  3455. {
  3456. name: "Gigamacro",
  3457. height: math.unit(25000, "miles")
  3458. },
  3459. {
  3460. name: "Full-Size",
  3461. height: math.unit(8000000, "gigaparsecs")
  3462. }
  3463. ]
  3464. ))
  3465. characterMakers.push(() => makeCharacter(
  3466. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3467. {
  3468. front: {
  3469. height: math.unit(2, "meter"),
  3470. weight: math.unit(60, "kg"),
  3471. name: "Front",
  3472. image: {
  3473. source: "./media/characters/noah/front.svg"
  3474. }
  3475. },
  3476. talons: {
  3477. height: math.unit(0.315, "meter"),
  3478. name: "Talons",
  3479. image: {
  3480. source: "./media/characters/noah/talons.svg"
  3481. }
  3482. }
  3483. },
  3484. [
  3485. {
  3486. name: "Large",
  3487. height: math.unit(50, "feet")
  3488. },
  3489. {
  3490. name: "Macro",
  3491. height: math.unit(750, "feet"),
  3492. default: true
  3493. },
  3494. {
  3495. name: "Megamacro",
  3496. height: math.unit(50, "miles")
  3497. },
  3498. {
  3499. name: "Gigamacro",
  3500. height: math.unit(100000, "miles")
  3501. },
  3502. {
  3503. name: "Full-Size",
  3504. height: math.unit(3000000000, "miles")
  3505. }
  3506. ]
  3507. ))
  3508. characterMakers.push(() => makeCharacter(
  3509. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3510. {
  3511. front: {
  3512. height: math.unit(2, "meter"),
  3513. weight: math.unit(80, "kg"),
  3514. name: "Front",
  3515. image: {
  3516. source: "./media/characters/natalya/front.svg"
  3517. }
  3518. },
  3519. back: {
  3520. height: math.unit(2, "meter"),
  3521. weight: math.unit(80, "kg"),
  3522. name: "Back",
  3523. image: {
  3524. source: "./media/characters/natalya/back.svg"
  3525. }
  3526. }
  3527. },
  3528. [
  3529. {
  3530. name: "Normal",
  3531. height: math.unit(150, "feet"),
  3532. default: true
  3533. },
  3534. {
  3535. name: "Megamacro",
  3536. height: math.unit(5, "miles")
  3537. },
  3538. {
  3539. name: "Full-Size",
  3540. height: math.unit(600, "kiloparsecs")
  3541. }
  3542. ]
  3543. ))
  3544. characterMakers.push(() => makeCharacter(
  3545. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3546. {
  3547. front: {
  3548. height: math.unit(2, "meter"),
  3549. weight: math.unit(50, "kg"),
  3550. name: "Front",
  3551. image: {
  3552. source: "./media/characters/erestrebah/front.svg",
  3553. extra: 1262/1162,
  3554. bottom: 96/1358
  3555. }
  3556. },
  3557. back: {
  3558. height: math.unit(2, "meter"),
  3559. weight: math.unit(50, "kg"),
  3560. name: "Back",
  3561. image: {
  3562. source: "./media/characters/erestrebah/back.svg",
  3563. extra: 1257/1139,
  3564. bottom: 13/1270
  3565. }
  3566. },
  3567. wing: {
  3568. height: math.unit(2, "meter"),
  3569. weight: math.unit(50, "kg"),
  3570. name: "Wing",
  3571. image: {
  3572. source: "./media/characters/erestrebah/wing.svg",
  3573. extra: 1262/1162,
  3574. bottom: 96/1358
  3575. }
  3576. },
  3577. mouth: {
  3578. height: math.unit(0.39, "feet"),
  3579. name: "Mouth",
  3580. image: {
  3581. source: "./media/characters/erestrebah/mouth.svg"
  3582. }
  3583. }
  3584. },
  3585. [
  3586. {
  3587. name: "Normal",
  3588. height: math.unit(10, "feet")
  3589. },
  3590. {
  3591. name: "Large",
  3592. height: math.unit(50, "feet"),
  3593. default: true
  3594. },
  3595. {
  3596. name: "Macro",
  3597. height: math.unit(300, "feet")
  3598. },
  3599. {
  3600. name: "Macro+",
  3601. height: math.unit(750, "feet")
  3602. },
  3603. {
  3604. name: "Megamacro",
  3605. height: math.unit(3, "miles")
  3606. }
  3607. ]
  3608. ))
  3609. characterMakers.push(() => makeCharacter(
  3610. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3611. {
  3612. front: {
  3613. height: math.unit(2, "meter"),
  3614. weight: math.unit(80, "kg"),
  3615. name: "Front",
  3616. image: {
  3617. source: "./media/characters/jennifer/front.svg",
  3618. bottom: 0.11,
  3619. extra: 1.16
  3620. }
  3621. },
  3622. frontAlt: {
  3623. height: math.unit(2, "meter"),
  3624. weight: math.unit(80, "kg"),
  3625. name: "Front (Alt)",
  3626. image: {
  3627. source: "./media/characters/jennifer/front-alt.svg"
  3628. }
  3629. }
  3630. },
  3631. [
  3632. {
  3633. name: "Canon Height",
  3634. height: math.unit(120, "feet"),
  3635. default: true
  3636. },
  3637. {
  3638. name: "Macro+",
  3639. height: math.unit(300, "feet")
  3640. },
  3641. {
  3642. name: "Megamacro",
  3643. height: math.unit(20000, "feet")
  3644. }
  3645. ]
  3646. ))
  3647. characterMakers.push(() => makeCharacter(
  3648. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3649. {
  3650. front: {
  3651. height: math.unit(2, "meter"),
  3652. weight: math.unit(50, "kg"),
  3653. name: "Front",
  3654. image: {
  3655. source: "./media/characters/kalista/front.svg",
  3656. extra: 1947 / 1700,
  3657. bottom: 76.6 / 1412.98
  3658. }
  3659. },
  3660. back: {
  3661. height: math.unit(2, "meter"),
  3662. weight: math.unit(50, "kg"),
  3663. name: "Back",
  3664. image: {
  3665. source: "./media/characters/kalista/back.svg",
  3666. extra: 1366 / 1156,
  3667. bottom: 33.9 / 1362.78
  3668. }
  3669. }
  3670. },
  3671. [
  3672. {
  3673. name: "Uncomfortably Small",
  3674. height: math.unit(10, "feet")
  3675. },
  3676. {
  3677. name: "Small",
  3678. height: math.unit(30, "feet")
  3679. },
  3680. {
  3681. name: "Macro",
  3682. height: math.unit(100, "feet"),
  3683. default: true
  3684. },
  3685. {
  3686. name: "Macro+",
  3687. height: math.unit(2000, "feet")
  3688. },
  3689. {
  3690. name: "True Form",
  3691. height: math.unit(8924, "miles")
  3692. }
  3693. ]
  3694. ))
  3695. characterMakers.push(() => makeCharacter(
  3696. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3697. {
  3698. front: {
  3699. height: math.unit(2, "meter"),
  3700. weight: math.unit(120, "kg"),
  3701. name: "Front",
  3702. image: {
  3703. source: "./media/characters/ggv/front.svg"
  3704. }
  3705. },
  3706. side: {
  3707. height: math.unit(2, "meter"),
  3708. weight: math.unit(120, "kg"),
  3709. name: "Side",
  3710. image: {
  3711. source: "./media/characters/ggv/side.svg"
  3712. }
  3713. }
  3714. },
  3715. [
  3716. {
  3717. name: "Extremely Puny",
  3718. height: math.unit(9 + 5 / 12, "feet")
  3719. },
  3720. {
  3721. name: "Horribly Small",
  3722. height: math.unit(47.7, "miles"),
  3723. default: true
  3724. },
  3725. {
  3726. name: "Reasonably Sized",
  3727. height: math.unit(25000, "parsecs")
  3728. },
  3729. {
  3730. name: "Slightly Uncompressed",
  3731. height: math.unit(7.77e31, "parsecs")
  3732. },
  3733. {
  3734. name: "Omniversal",
  3735. height: math.unit(1e300, "meters")
  3736. },
  3737. ]
  3738. ))
  3739. characterMakers.push(() => makeCharacter(
  3740. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3741. {
  3742. front: {
  3743. height: math.unit(2, "meter"),
  3744. weight: math.unit(75, "lb"),
  3745. name: "Front",
  3746. image: {
  3747. source: "./media/characters/napalm/front.svg"
  3748. }
  3749. },
  3750. back: {
  3751. height: math.unit(2, "meter"),
  3752. weight: math.unit(75, "lb"),
  3753. name: "Back",
  3754. image: {
  3755. source: "./media/characters/napalm/back.svg"
  3756. }
  3757. }
  3758. },
  3759. [
  3760. {
  3761. name: "Standard",
  3762. height: math.unit(55, "feet"),
  3763. default: true
  3764. }
  3765. ]
  3766. ))
  3767. characterMakers.push(() => makeCharacter(
  3768. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3769. {
  3770. front: {
  3771. height: math.unit(7 + 5 / 6, "feet"),
  3772. weight: math.unit(325, "lb"),
  3773. name: "Front",
  3774. image: {
  3775. source: "./media/characters/asana/front.svg",
  3776. extra: 1133 / 1060,
  3777. bottom: 15.2 / 1148.6
  3778. }
  3779. },
  3780. back: {
  3781. height: math.unit(7 + 5 / 6, "feet"),
  3782. weight: math.unit(325, "lb"),
  3783. name: "Back",
  3784. image: {
  3785. source: "./media/characters/asana/back.svg",
  3786. extra: 1114 / 1043,
  3787. bottom: 5 / 1120
  3788. }
  3789. },
  3790. dressedDark: {
  3791. height: math.unit(7 + 5 / 6, "feet"),
  3792. weight: math.unit(325, "lb"),
  3793. name: "Dressed (Dark)",
  3794. image: {
  3795. source: "./media/characters/asana/dressed-dark.svg",
  3796. extra: 1133 / 1060,
  3797. bottom: 15.2 / 1148.6
  3798. }
  3799. },
  3800. dressedLight: {
  3801. height: math.unit(7 + 5 / 6, "feet"),
  3802. weight: math.unit(325, "lb"),
  3803. name: "Dressed (Light)",
  3804. image: {
  3805. source: "./media/characters/asana/dressed-light.svg",
  3806. extra: 1133 / 1060,
  3807. bottom: 15.2 / 1148.6
  3808. }
  3809. },
  3810. },
  3811. [
  3812. {
  3813. name: "Standard",
  3814. height: math.unit(7 + 5 / 6, "feet"),
  3815. default: true
  3816. },
  3817. {
  3818. name: "Large",
  3819. height: math.unit(10, "meters")
  3820. },
  3821. {
  3822. name: "Macro",
  3823. height: math.unit(2500, "meters")
  3824. },
  3825. {
  3826. name: "Megamacro",
  3827. height: math.unit(5e6, "meters")
  3828. },
  3829. {
  3830. name: "Examacro",
  3831. height: math.unit(5e12, "lightyears")
  3832. },
  3833. {
  3834. name: "Max Size",
  3835. height: math.unit(1e31, "lightyears")
  3836. }
  3837. ]
  3838. ))
  3839. characterMakers.push(() => makeCharacter(
  3840. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3841. {
  3842. front: {
  3843. height: math.unit(2, "meter"),
  3844. weight: math.unit(60, "kg"),
  3845. name: "Front",
  3846. image: {
  3847. source: "./media/characters/ebony/front.svg",
  3848. bottom: 0.03,
  3849. extra: 1045 / 810 + 0.03
  3850. }
  3851. },
  3852. side: {
  3853. height: math.unit(2, "meter"),
  3854. weight: math.unit(60, "kg"),
  3855. name: "Side",
  3856. image: {
  3857. source: "./media/characters/ebony/side.svg",
  3858. bottom: 0.03,
  3859. extra: 1045 / 810 + 0.03
  3860. }
  3861. },
  3862. back: {
  3863. height: math.unit(2, "meter"),
  3864. weight: math.unit(60, "kg"),
  3865. name: "Back",
  3866. image: {
  3867. source: "./media/characters/ebony/back.svg",
  3868. bottom: 0.01,
  3869. extra: 1045 / 810 + 0.01
  3870. }
  3871. },
  3872. },
  3873. [
  3874. // TODO check why I did this lol
  3875. {
  3876. name: "Standard",
  3877. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3878. default: true
  3879. },
  3880. {
  3881. name: "Macro",
  3882. height: math.unit(200, "feet")
  3883. },
  3884. {
  3885. name: "Gigamacro",
  3886. height: math.unit(13000, "km")
  3887. }
  3888. ]
  3889. ))
  3890. characterMakers.push(() => makeCharacter(
  3891. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3892. {
  3893. front: {
  3894. height: math.unit(6, "feet"),
  3895. weight: math.unit(175, "lb"),
  3896. name: "Front",
  3897. image: {
  3898. source: "./media/characters/mountain/front.svg",
  3899. extra: 972 / 955,
  3900. bottom: 64 / 1036.6
  3901. }
  3902. },
  3903. back: {
  3904. height: math.unit(6, "feet"),
  3905. weight: math.unit(175, "lb"),
  3906. name: "Back",
  3907. image: {
  3908. source: "./media/characters/mountain/back.svg",
  3909. extra: 970 / 950,
  3910. bottom: 28.25 / 999
  3911. }
  3912. },
  3913. },
  3914. [
  3915. {
  3916. name: "Large",
  3917. height: math.unit(20, "meters")
  3918. },
  3919. {
  3920. name: "Macro",
  3921. height: math.unit(300, "meters")
  3922. },
  3923. {
  3924. name: "Gigamacro",
  3925. height: math.unit(10000, "km"),
  3926. default: true
  3927. },
  3928. {
  3929. name: "Examacro",
  3930. height: math.unit(10e9, "lightyears")
  3931. }
  3932. ]
  3933. ))
  3934. characterMakers.push(() => makeCharacter(
  3935. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3936. {
  3937. front: {
  3938. height: math.unit(8, "feet"),
  3939. weight: math.unit(500, "lb"),
  3940. name: "Front",
  3941. image: {
  3942. source: "./media/characters/rick/front.svg"
  3943. }
  3944. }
  3945. },
  3946. [
  3947. {
  3948. name: "Normal",
  3949. height: math.unit(8, "feet"),
  3950. default: true
  3951. },
  3952. {
  3953. name: "Macro",
  3954. height: math.unit(5, "km")
  3955. }
  3956. ]
  3957. ))
  3958. characterMakers.push(() => makeCharacter(
  3959. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3960. {
  3961. front: {
  3962. height: math.unit(8, "feet"),
  3963. weight: math.unit(120, "lb"),
  3964. name: "Front",
  3965. image: {
  3966. source: "./media/characters/ona/front.svg"
  3967. }
  3968. },
  3969. frontAlt: {
  3970. height: math.unit(8, "feet"),
  3971. weight: math.unit(120, "lb"),
  3972. name: "Front (Alt)",
  3973. image: {
  3974. source: "./media/characters/ona/front-alt.svg"
  3975. }
  3976. },
  3977. back: {
  3978. height: math.unit(8, "feet"),
  3979. weight: math.unit(120, "lb"),
  3980. name: "Back",
  3981. image: {
  3982. source: "./media/characters/ona/back.svg"
  3983. }
  3984. },
  3985. foot: {
  3986. height: math.unit(1.1, "feet"),
  3987. name: "Foot",
  3988. image: {
  3989. source: "./media/characters/ona/foot.svg"
  3990. }
  3991. }
  3992. },
  3993. [
  3994. {
  3995. name: "Megamacro",
  3996. height: math.unit(70, "km"),
  3997. default: true
  3998. },
  3999. {
  4000. name: "Gigamacro",
  4001. height: math.unit(681818, "miles")
  4002. },
  4003. {
  4004. name: "Examacro",
  4005. height: math.unit(3800000, "lightyears")
  4006. },
  4007. ]
  4008. ))
  4009. characterMakers.push(() => makeCharacter(
  4010. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4011. {
  4012. front: {
  4013. height: math.unit(12, "feet"),
  4014. weight: math.unit(3000, "lb"),
  4015. name: "Front",
  4016. image: {
  4017. source: "./media/characters/mech/front.svg",
  4018. extra: 2900 / 2770,
  4019. bottom: 110 / 3010
  4020. }
  4021. },
  4022. back: {
  4023. height: math.unit(12, "feet"),
  4024. weight: math.unit(3000, "lb"),
  4025. name: "Back",
  4026. image: {
  4027. source: "./media/characters/mech/back.svg",
  4028. extra: 3011 / 2890,
  4029. bottom: 94 / 3105
  4030. }
  4031. },
  4032. maw: {
  4033. height: math.unit(3.07, "feet"),
  4034. name: "Maw",
  4035. image: {
  4036. source: "./media/characters/mech/maw.svg"
  4037. }
  4038. },
  4039. head: {
  4040. height: math.unit(2.82, "feet"),
  4041. name: "Head",
  4042. image: {
  4043. source: "./media/characters/mech/head.svg"
  4044. }
  4045. },
  4046. dick: {
  4047. height: math.unit(1.43, "feet"),
  4048. name: "Dick",
  4049. image: {
  4050. source: "./media/characters/mech/dick.svg"
  4051. }
  4052. },
  4053. },
  4054. [
  4055. {
  4056. name: "Normal",
  4057. height: math.unit(12, "feet")
  4058. },
  4059. {
  4060. name: "Macro",
  4061. height: math.unit(300, "feet"),
  4062. default: true
  4063. },
  4064. {
  4065. name: "Macro+",
  4066. height: math.unit(1500, "feet")
  4067. },
  4068. ]
  4069. ))
  4070. characterMakers.push(() => makeCharacter(
  4071. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4072. {
  4073. front: {
  4074. height: math.unit(1.3, "meter"),
  4075. weight: math.unit(30, "kg"),
  4076. name: "Front",
  4077. image: {
  4078. source: "./media/characters/gregory/front.svg",
  4079. }
  4080. }
  4081. },
  4082. [
  4083. {
  4084. name: "Normal",
  4085. height: math.unit(1.3, "meter"),
  4086. default: true
  4087. },
  4088. {
  4089. name: "Macro",
  4090. height: math.unit(20, "meter")
  4091. }
  4092. ]
  4093. ))
  4094. characterMakers.push(() => makeCharacter(
  4095. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4096. {
  4097. front: {
  4098. height: math.unit(2.8, "meter"),
  4099. weight: math.unit(200, "kg"),
  4100. name: "Front",
  4101. image: {
  4102. source: "./media/characters/elory/front.svg",
  4103. }
  4104. }
  4105. },
  4106. [
  4107. {
  4108. name: "Normal",
  4109. height: math.unit(2.8, "meter"),
  4110. default: true
  4111. },
  4112. {
  4113. name: "Macro",
  4114. height: math.unit(38, "meter")
  4115. }
  4116. ]
  4117. ))
  4118. characterMakers.push(() => makeCharacter(
  4119. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4120. {
  4121. front: {
  4122. height: math.unit(470, "feet"),
  4123. weight: math.unit(924, "tons"),
  4124. name: "Front",
  4125. image: {
  4126. source: "./media/characters/angelpatamon/front.svg",
  4127. }
  4128. }
  4129. },
  4130. [
  4131. {
  4132. name: "Normal",
  4133. height: math.unit(470, "feet"),
  4134. default: true
  4135. },
  4136. {
  4137. name: "Deity Size I",
  4138. height: math.unit(28651.2, "km")
  4139. },
  4140. {
  4141. name: "Deity Size II",
  4142. height: math.unit(171907.2, "km")
  4143. }
  4144. ]
  4145. ))
  4146. characterMakers.push(() => makeCharacter(
  4147. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4148. {
  4149. side: {
  4150. height: math.unit(7.2, "meter"),
  4151. weight: math.unit(8.2, "tons"),
  4152. name: "Side",
  4153. image: {
  4154. source: "./media/characters/cryae/side.svg",
  4155. extra: 3500 / 1500
  4156. }
  4157. }
  4158. },
  4159. [
  4160. {
  4161. name: "Normal",
  4162. height: math.unit(7.2, "meter"),
  4163. default: true
  4164. }
  4165. ]
  4166. ))
  4167. characterMakers.push(() => makeCharacter(
  4168. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4169. {
  4170. front: {
  4171. height: math.unit(6, "feet"),
  4172. weight: math.unit(175, "lb"),
  4173. name: "Front",
  4174. image: {
  4175. source: "./media/characters/xera/front.svg",
  4176. extra: 2377 / 1972,
  4177. bottom: 75.5 / 2452
  4178. }
  4179. },
  4180. side: {
  4181. height: math.unit(6, "feet"),
  4182. weight: math.unit(175, "lb"),
  4183. name: "Side",
  4184. image: {
  4185. source: "./media/characters/xera/side.svg",
  4186. extra: 2345 / 2019,
  4187. bottom: 39.7 / 2384
  4188. }
  4189. },
  4190. back: {
  4191. height: math.unit(6, "feet"),
  4192. weight: math.unit(175, "lb"),
  4193. name: "Back",
  4194. image: {
  4195. source: "./media/characters/xera/back.svg",
  4196. extra: 2095 / 1984,
  4197. bottom: 67 / 2166
  4198. }
  4199. },
  4200. },
  4201. [
  4202. {
  4203. name: "Small",
  4204. height: math.unit(10, "feet")
  4205. },
  4206. {
  4207. name: "Macro",
  4208. height: math.unit(500, "meters"),
  4209. default: true
  4210. },
  4211. {
  4212. name: "Macro+",
  4213. height: math.unit(10, "km")
  4214. },
  4215. {
  4216. name: "Gigamacro",
  4217. height: math.unit(25000, "km")
  4218. },
  4219. {
  4220. name: "Teramacro",
  4221. height: math.unit(3e6, "km")
  4222. }
  4223. ]
  4224. ))
  4225. characterMakers.push(() => makeCharacter(
  4226. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4227. {
  4228. front: {
  4229. height: math.unit(6, "feet"),
  4230. weight: math.unit(175, "lb"),
  4231. name: "Front",
  4232. image: {
  4233. source: "./media/characters/nebula/front.svg",
  4234. extra: 2566 / 2362,
  4235. bottom: 81 / 2644
  4236. }
  4237. }
  4238. },
  4239. [
  4240. {
  4241. name: "Small",
  4242. height: math.unit(4.5, "meters")
  4243. },
  4244. {
  4245. name: "Macro",
  4246. height: math.unit(1500, "meters"),
  4247. default: true
  4248. },
  4249. {
  4250. name: "Megamacro",
  4251. height: math.unit(150, "km")
  4252. },
  4253. {
  4254. name: "Gigamacro",
  4255. height: math.unit(27000, "km")
  4256. }
  4257. ]
  4258. ))
  4259. characterMakers.push(() => makeCharacter(
  4260. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4261. {
  4262. front: {
  4263. height: math.unit(6, "feet"),
  4264. weight: math.unit(225, "lb"),
  4265. name: "Front",
  4266. image: {
  4267. source: "./media/characters/abysgar/front.svg"
  4268. }
  4269. }
  4270. },
  4271. [
  4272. {
  4273. name: "Small",
  4274. height: math.unit(4.5, "meters")
  4275. },
  4276. {
  4277. name: "Macro",
  4278. height: math.unit(1250, "meters"),
  4279. default: true
  4280. },
  4281. {
  4282. name: "Megamacro",
  4283. height: math.unit(125, "km")
  4284. },
  4285. {
  4286. name: "Gigamacro",
  4287. height: math.unit(26000, "km")
  4288. }
  4289. ]
  4290. ))
  4291. characterMakers.push(() => makeCharacter(
  4292. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4293. {
  4294. front: {
  4295. height: math.unit(6, "feet"),
  4296. weight: math.unit(180, "lb"),
  4297. name: "Front",
  4298. image: {
  4299. source: "./media/characters/yakuz/front.svg"
  4300. }
  4301. }
  4302. },
  4303. [
  4304. {
  4305. name: "Small",
  4306. height: math.unit(5, "meters")
  4307. },
  4308. {
  4309. name: "Macro",
  4310. height: math.unit(1500, "meters"),
  4311. default: true
  4312. },
  4313. {
  4314. name: "Megamacro",
  4315. height: math.unit(200, "km")
  4316. },
  4317. {
  4318. name: "Gigamacro",
  4319. height: math.unit(100000, "km")
  4320. }
  4321. ]
  4322. ))
  4323. characterMakers.push(() => makeCharacter(
  4324. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4325. {
  4326. front: {
  4327. height: math.unit(6, "feet"),
  4328. weight: math.unit(175, "lb"),
  4329. name: "Front",
  4330. image: {
  4331. source: "./media/characters/mirova/front.svg",
  4332. extra: 3334 / 3071,
  4333. bottom: 42 / 3375.6
  4334. }
  4335. }
  4336. },
  4337. [
  4338. {
  4339. name: "Small",
  4340. height: math.unit(5, "meters")
  4341. },
  4342. {
  4343. name: "Macro",
  4344. height: math.unit(900, "meters"),
  4345. default: true
  4346. },
  4347. {
  4348. name: "Megamacro",
  4349. height: math.unit(135, "km")
  4350. },
  4351. {
  4352. name: "Gigamacro",
  4353. height: math.unit(20000, "km")
  4354. }
  4355. ]
  4356. ))
  4357. characterMakers.push(() => makeCharacter(
  4358. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4359. {
  4360. side: {
  4361. height: math.unit(28.35, "feet"),
  4362. weight: math.unit(99.75, "tons"),
  4363. name: "Side",
  4364. image: {
  4365. source: "./media/characters/asana-mech/side.svg",
  4366. extra: 923 / 699,
  4367. bottom: 50 / 975
  4368. }
  4369. },
  4370. chaingun: {
  4371. height: math.unit(7, "feet"),
  4372. weight: math.unit(2400, "lb"),
  4373. name: "Chaingun",
  4374. image: {
  4375. source: "./media/characters/asana-mech/chaingun.svg"
  4376. }
  4377. },
  4378. laser: {
  4379. height: math.unit(7.12, "feet"),
  4380. weight: math.unit(2000, "lb"),
  4381. name: "Laser",
  4382. image: {
  4383. source: "./media/characters/asana-mech/laser.svg"
  4384. }
  4385. },
  4386. },
  4387. [
  4388. {
  4389. name: "Normal",
  4390. height: math.unit(28.35, "feet"),
  4391. default: true
  4392. },
  4393. {
  4394. name: "Macro",
  4395. height: math.unit(2500, "feet")
  4396. },
  4397. {
  4398. name: "Megamacro",
  4399. height: math.unit(25, "miles")
  4400. },
  4401. {
  4402. name: "Examacro",
  4403. height: math.unit(6e8, "lightyears")
  4404. },
  4405. ]
  4406. ))
  4407. characterMakers.push(() => makeCharacter(
  4408. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4409. {
  4410. front: {
  4411. height: math.unit(5, "meters"),
  4412. weight: math.unit(1000, "kg"),
  4413. name: "Front",
  4414. image: {
  4415. source: "./media/characters/asche/front.svg",
  4416. extra: 1258 / 1190,
  4417. bottom: 47 / 1305
  4418. }
  4419. },
  4420. frontUnderwear: {
  4421. height: math.unit(5, "meters"),
  4422. weight: math.unit(1000, "kg"),
  4423. name: "Front (Underwear)",
  4424. image: {
  4425. source: "./media/characters/asche/front-underwear.svg",
  4426. extra: 1258 / 1190,
  4427. bottom: 47 / 1305
  4428. }
  4429. },
  4430. frontDressed: {
  4431. height: math.unit(5, "meters"),
  4432. weight: math.unit(1000, "kg"),
  4433. name: "Front (Dressed)",
  4434. image: {
  4435. source: "./media/characters/asche/front-dressed.svg",
  4436. extra: 1258 / 1190,
  4437. bottom: 47 / 1305
  4438. }
  4439. },
  4440. frontArmor: {
  4441. height: math.unit(5, "meters"),
  4442. weight: math.unit(1000, "kg"),
  4443. name: "Front (Armored)",
  4444. image: {
  4445. source: "./media/characters/asche/front-armored.svg",
  4446. extra: 1374 / 1308,
  4447. bottom: 23 / 1397
  4448. }
  4449. },
  4450. mp724: {
  4451. height: math.unit(0.96, "meters"),
  4452. weight: math.unit(38, "kg"),
  4453. name: "H&K MP724",
  4454. image: {
  4455. source: "./media/characters/asche/h&k-mp724.svg"
  4456. }
  4457. },
  4458. side: {
  4459. height: math.unit(5, "meters"),
  4460. weight: math.unit(1000, "kg"),
  4461. name: "Side",
  4462. image: {
  4463. source: "./media/characters/asche/side.svg",
  4464. extra: 1717 / 1609,
  4465. bottom: 0.005
  4466. }
  4467. },
  4468. back: {
  4469. height: math.unit(5, "meters"),
  4470. weight: math.unit(1000, "kg"),
  4471. name: "Back",
  4472. image: {
  4473. source: "./media/characters/asche/back.svg",
  4474. extra: 1570 / 1501
  4475. }
  4476. },
  4477. },
  4478. [
  4479. {
  4480. name: "DEFCON 5",
  4481. height: math.unit(5, "meters")
  4482. },
  4483. {
  4484. name: "DEFCON 4",
  4485. height: math.unit(500, "meters"),
  4486. default: true
  4487. },
  4488. {
  4489. name: "DEFCON 3",
  4490. height: math.unit(5, "km")
  4491. },
  4492. {
  4493. name: "DEFCON 2",
  4494. height: math.unit(500, "km")
  4495. },
  4496. {
  4497. name: "DEFCON 1",
  4498. height: math.unit(500000, "km")
  4499. },
  4500. {
  4501. name: "DEFCON 0",
  4502. height: math.unit(3, "gigaparsecs")
  4503. },
  4504. ]
  4505. ))
  4506. characterMakers.push(() => makeCharacter(
  4507. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4508. {
  4509. front: {
  4510. height: math.unit(2, "meters"),
  4511. weight: math.unit(76, "kg"),
  4512. name: "Front",
  4513. image: {
  4514. source: "./media/characters/gale/front.svg"
  4515. }
  4516. },
  4517. frontAlt1: {
  4518. height: math.unit(2, "meters"),
  4519. weight: math.unit(76, "kg"),
  4520. name: "Front (Alt 1)",
  4521. image: {
  4522. source: "./media/characters/gale/front-alt-1.svg"
  4523. }
  4524. },
  4525. frontAlt2: {
  4526. height: math.unit(2, "meters"),
  4527. weight: math.unit(76, "kg"),
  4528. name: "Front (Alt 2)",
  4529. image: {
  4530. source: "./media/characters/gale/front-alt-2.svg"
  4531. }
  4532. },
  4533. },
  4534. [
  4535. {
  4536. name: "Normal",
  4537. height: math.unit(7, "feet")
  4538. },
  4539. {
  4540. name: "Macro",
  4541. height: math.unit(150, "feet"),
  4542. default: true
  4543. },
  4544. {
  4545. name: "Macro+",
  4546. height: math.unit(300, "feet")
  4547. },
  4548. ]
  4549. ))
  4550. characterMakers.push(() => makeCharacter(
  4551. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4552. {
  4553. front: {
  4554. height: math.unit(5 + 10/12, "feet"),
  4555. weight: math.unit(67, "kg"),
  4556. name: "Front",
  4557. image: {
  4558. source: "./media/characters/draylen/front.svg",
  4559. extra: 832/777,
  4560. bottom: 85/917
  4561. }
  4562. }
  4563. },
  4564. [
  4565. {
  4566. name: "Normal",
  4567. height: math.unit(5 + 10/12, "feet")
  4568. },
  4569. {
  4570. name: "Macro",
  4571. height: math.unit(150, "feet"),
  4572. default: true
  4573. }
  4574. ]
  4575. ))
  4576. characterMakers.push(() => makeCharacter(
  4577. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4578. {
  4579. front: {
  4580. height: math.unit(7 + 9 / 12, "feet"),
  4581. weight: math.unit(379, "lbs"),
  4582. name: "Front",
  4583. image: {
  4584. source: "./media/characters/chez/front.svg"
  4585. }
  4586. },
  4587. side: {
  4588. height: math.unit(7 + 9 / 12, "feet"),
  4589. weight: math.unit(379, "lbs"),
  4590. name: "Side",
  4591. image: {
  4592. source: "./media/characters/chez/side.svg"
  4593. }
  4594. }
  4595. },
  4596. [
  4597. {
  4598. name: "Normal",
  4599. height: math.unit(7 + 9 / 12, "feet"),
  4600. default: true
  4601. },
  4602. {
  4603. name: "God King",
  4604. height: math.unit(9750000, "meters")
  4605. }
  4606. ]
  4607. ))
  4608. characterMakers.push(() => makeCharacter(
  4609. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4610. {
  4611. front: {
  4612. height: math.unit(6, "feet"),
  4613. weight: math.unit(275, "lbs"),
  4614. name: "Front",
  4615. image: {
  4616. source: "./media/characters/kaylum/front.svg",
  4617. bottom: 0.01,
  4618. extra: 1166 / 1031
  4619. }
  4620. },
  4621. frontWingless: {
  4622. height: math.unit(6, "feet"),
  4623. weight: math.unit(275, "lbs"),
  4624. name: "Front (Wingless)",
  4625. image: {
  4626. source: "./media/characters/kaylum/front-wingless.svg",
  4627. bottom: 0.01,
  4628. extra: 1117 / 1031
  4629. }
  4630. }
  4631. },
  4632. [
  4633. {
  4634. name: "Normal",
  4635. height: math.unit(3.05, "meters")
  4636. },
  4637. {
  4638. name: "Master",
  4639. height: math.unit(5.5, "meters")
  4640. },
  4641. {
  4642. name: "Rampage",
  4643. height: math.unit(19, "meters")
  4644. },
  4645. {
  4646. name: "Macro Lite",
  4647. height: math.unit(37, "meters")
  4648. },
  4649. {
  4650. name: "Hyper Predator",
  4651. height: math.unit(61, "meters")
  4652. },
  4653. {
  4654. name: "Macro",
  4655. height: math.unit(138, "meters"),
  4656. default: true
  4657. }
  4658. ]
  4659. ))
  4660. characterMakers.push(() => makeCharacter(
  4661. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4662. {
  4663. front: {
  4664. height: math.unit(6, "feet"),
  4665. weight: math.unit(150, "lbs"),
  4666. name: "Front",
  4667. image: {
  4668. source: "./media/characters/geta/front.svg"
  4669. }
  4670. }
  4671. },
  4672. [
  4673. {
  4674. name: "Micro",
  4675. height: math.unit(3, "inches"),
  4676. default: true
  4677. },
  4678. {
  4679. name: "Normal",
  4680. height: math.unit(5 + 5 / 12, "feet")
  4681. }
  4682. ]
  4683. ))
  4684. characterMakers.push(() => makeCharacter(
  4685. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4686. {
  4687. front: {
  4688. height: math.unit(6, "feet"),
  4689. weight: math.unit(300, "lbs"),
  4690. name: "Front",
  4691. image: {
  4692. source: "./media/characters/tyrnn/front.svg"
  4693. }
  4694. }
  4695. },
  4696. [
  4697. {
  4698. name: "Main Height",
  4699. height: math.unit(355, "feet"),
  4700. default: true
  4701. },
  4702. {
  4703. name: "Fave. Height",
  4704. height: math.unit(2400, "feet")
  4705. }
  4706. ]
  4707. ))
  4708. characterMakers.push(() => makeCharacter(
  4709. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4710. {
  4711. front: {
  4712. height: math.unit(6, "feet"),
  4713. weight: math.unit(300, "lbs"),
  4714. name: "Front",
  4715. image: {
  4716. source: "./media/characters/appledectomy/front.svg"
  4717. }
  4718. }
  4719. },
  4720. [
  4721. {
  4722. name: "Macro",
  4723. height: math.unit(2500, "feet")
  4724. },
  4725. {
  4726. name: "Megamacro",
  4727. height: math.unit(50, "miles"),
  4728. default: true
  4729. },
  4730. {
  4731. name: "Gigamacro",
  4732. height: math.unit(5000, "miles")
  4733. },
  4734. {
  4735. name: "Teramacro",
  4736. height: math.unit(250000, "miles")
  4737. },
  4738. ]
  4739. ))
  4740. characterMakers.push(() => makeCharacter(
  4741. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4742. {
  4743. front: {
  4744. height: math.unit(6, "feet"),
  4745. weight: math.unit(200, "lbs"),
  4746. name: "Front",
  4747. image: {
  4748. source: "./media/characters/vulpes/front.svg",
  4749. extra: 573 / 543,
  4750. bottom: 0.033
  4751. }
  4752. },
  4753. side: {
  4754. height: math.unit(6, "feet"),
  4755. weight: math.unit(200, "lbs"),
  4756. name: "Side",
  4757. image: {
  4758. source: "./media/characters/vulpes/side.svg",
  4759. extra: 577 / 549,
  4760. bottom: 11 / 588
  4761. }
  4762. },
  4763. back: {
  4764. height: math.unit(6, "feet"),
  4765. weight: math.unit(200, "lbs"),
  4766. name: "Back",
  4767. image: {
  4768. source: "./media/characters/vulpes/back.svg",
  4769. extra: 573 / 549,
  4770. bottom: 20 / 593
  4771. }
  4772. },
  4773. feet: {
  4774. height: math.unit(1.276, "feet"),
  4775. name: "Feet",
  4776. image: {
  4777. source: "./media/characters/vulpes/feet.svg"
  4778. }
  4779. },
  4780. maw: {
  4781. height: math.unit(1.18, "feet"),
  4782. name: "Maw",
  4783. image: {
  4784. source: "./media/characters/vulpes/maw.svg"
  4785. }
  4786. },
  4787. },
  4788. [
  4789. {
  4790. name: "Micro",
  4791. height: math.unit(2, "inches")
  4792. },
  4793. {
  4794. name: "Normal",
  4795. height: math.unit(6.3, "feet")
  4796. },
  4797. {
  4798. name: "Macro",
  4799. height: math.unit(850, "feet")
  4800. },
  4801. {
  4802. name: "Megamacro",
  4803. height: math.unit(7500, "feet"),
  4804. default: true
  4805. },
  4806. {
  4807. name: "Gigamacro",
  4808. height: math.unit(570000, "miles")
  4809. }
  4810. ]
  4811. ))
  4812. characterMakers.push(() => makeCharacter(
  4813. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4814. {
  4815. front: {
  4816. height: math.unit(6, "feet"),
  4817. weight: math.unit(210, "lbs"),
  4818. name: "Front",
  4819. image: {
  4820. source: "./media/characters/rain-fallen/front.svg"
  4821. }
  4822. },
  4823. side: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(210, "lbs"),
  4826. name: "Side",
  4827. image: {
  4828. source: "./media/characters/rain-fallen/side.svg"
  4829. }
  4830. },
  4831. back: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(210, "lbs"),
  4834. name: "Back",
  4835. image: {
  4836. source: "./media/characters/rain-fallen/back.svg"
  4837. }
  4838. },
  4839. feral: {
  4840. height: math.unit(9, "feet"),
  4841. weight: math.unit(700, "lbs"),
  4842. name: "Feral",
  4843. image: {
  4844. source: "./media/characters/rain-fallen/feral.svg"
  4845. }
  4846. },
  4847. },
  4848. [
  4849. {
  4850. name: "Meddling with Mortals",
  4851. height: math.unit(8 + 8/12, "feet")
  4852. },
  4853. {
  4854. name: "Normal",
  4855. height: math.unit(5, "meter")
  4856. },
  4857. {
  4858. name: "Macro",
  4859. height: math.unit(150, "meter"),
  4860. default: true
  4861. },
  4862. {
  4863. name: "Megamacro",
  4864. height: math.unit(278e6, "meter")
  4865. },
  4866. {
  4867. name: "Gigamacro",
  4868. height: math.unit(2e9, "meter")
  4869. },
  4870. {
  4871. name: "Teramacro",
  4872. height: math.unit(8e12, "meter")
  4873. },
  4874. {
  4875. name: "Devourer",
  4876. height: math.unit(14, "zettameters")
  4877. },
  4878. {
  4879. name: "Scarlet King",
  4880. height: math.unit(18, "yottameters")
  4881. },
  4882. {
  4883. name: "Void",
  4884. height: math.unit(1e88, "yottameters")
  4885. }
  4886. ]
  4887. ))
  4888. characterMakers.push(() => makeCharacter(
  4889. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4890. {
  4891. standing: {
  4892. height: math.unit(6, "feet"),
  4893. weight: math.unit(180, "lbs"),
  4894. name: "Standing",
  4895. image: {
  4896. source: "./media/characters/zaakira/standing.svg",
  4897. extra: 1599/1504,
  4898. bottom: 39/1638
  4899. }
  4900. },
  4901. laying: {
  4902. height: math.unit(3, "feet"),
  4903. weight: math.unit(180, "lbs"),
  4904. name: "Laying",
  4905. image: {
  4906. source: "./media/characters/zaakira/laying.svg"
  4907. }
  4908. },
  4909. },
  4910. [
  4911. {
  4912. name: "Normal",
  4913. height: math.unit(12, "feet")
  4914. },
  4915. {
  4916. name: "Macro",
  4917. height: math.unit(279, "feet"),
  4918. default: true
  4919. }
  4920. ]
  4921. ))
  4922. characterMakers.push(() => makeCharacter(
  4923. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4924. {
  4925. femSfw: {
  4926. height: math.unit(8, "feet"),
  4927. weight: math.unit(350, "lb"),
  4928. name: "Fem",
  4929. image: {
  4930. source: "./media/characters/sigvald/fem-sfw.svg",
  4931. extra: 182 / 164,
  4932. bottom: 8.7 / 190.5
  4933. }
  4934. },
  4935. femNsfw: {
  4936. height: math.unit(8, "feet"),
  4937. weight: math.unit(350, "lb"),
  4938. name: "Fem (NSFW)",
  4939. image: {
  4940. source: "./media/characters/sigvald/fem-nsfw.svg",
  4941. extra: 182 / 164,
  4942. bottom: 8.7 / 190.5
  4943. }
  4944. },
  4945. maleNsfw: {
  4946. height: math.unit(8, "feet"),
  4947. weight: math.unit(350, "lb"),
  4948. name: "Male (NSFW)",
  4949. image: {
  4950. source: "./media/characters/sigvald/male-nsfw.svg",
  4951. extra: 182 / 164,
  4952. bottom: 8.7 / 190.5
  4953. }
  4954. },
  4955. hermNsfw: {
  4956. height: math.unit(8, "feet"),
  4957. weight: math.unit(350, "lb"),
  4958. name: "Herm (NSFW)",
  4959. image: {
  4960. source: "./media/characters/sigvald/herm-nsfw.svg",
  4961. extra: 182 / 164,
  4962. bottom: 8.7 / 190.5
  4963. }
  4964. },
  4965. dick: {
  4966. height: math.unit(2.36, "feet"),
  4967. name: "Dick",
  4968. image: {
  4969. source: "./media/characters/sigvald/dick.svg"
  4970. }
  4971. },
  4972. eye: {
  4973. height: math.unit(0.31, "feet"),
  4974. name: "Eye",
  4975. image: {
  4976. source: "./media/characters/sigvald/eye.svg"
  4977. }
  4978. },
  4979. mouth: {
  4980. height: math.unit(0.92, "feet"),
  4981. name: "Mouth",
  4982. image: {
  4983. source: "./media/characters/sigvald/mouth.svg"
  4984. }
  4985. },
  4986. paws: {
  4987. height: math.unit(2.2, "feet"),
  4988. name: "Paws",
  4989. image: {
  4990. source: "./media/characters/sigvald/paws.svg"
  4991. }
  4992. }
  4993. },
  4994. [
  4995. {
  4996. name: "Normal",
  4997. height: math.unit(8, "feet")
  4998. },
  4999. {
  5000. name: "Large",
  5001. height: math.unit(12, "feet")
  5002. },
  5003. {
  5004. name: "Larger",
  5005. height: math.unit(20, "feet")
  5006. },
  5007. {
  5008. name: "Macro",
  5009. height: math.unit(150, "feet")
  5010. },
  5011. {
  5012. name: "Macro+",
  5013. height: math.unit(200, "feet"),
  5014. default: true
  5015. },
  5016. ]
  5017. ))
  5018. characterMakers.push(() => makeCharacter(
  5019. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5020. {
  5021. side: {
  5022. height: math.unit(12, "feet"),
  5023. weight: math.unit(2000, "kg"),
  5024. name: "Side",
  5025. image: {
  5026. source: "./media/characters/scott/side.svg",
  5027. extra: 754 / 724,
  5028. bottom: 0.069
  5029. }
  5030. },
  5031. upright: {
  5032. height: math.unit(12, "feet"),
  5033. weight: math.unit(2000, "kg"),
  5034. name: "Upright",
  5035. image: {
  5036. source: "./media/characters/scott/upright.svg",
  5037. extra: 3881 / 3722,
  5038. bottom: 0.05
  5039. }
  5040. },
  5041. },
  5042. [
  5043. {
  5044. name: "Normal",
  5045. height: math.unit(12, "feet"),
  5046. default: true
  5047. },
  5048. ]
  5049. ))
  5050. characterMakers.push(() => makeCharacter(
  5051. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5052. {
  5053. side: {
  5054. height: math.unit(8, "meters"),
  5055. weight: math.unit(84755, "lbs"),
  5056. name: "Side",
  5057. image: {
  5058. source: "./media/characters/tobias/side.svg",
  5059. extra: 1474 / 1096,
  5060. bottom: 38.9 / 1513.1235
  5061. }
  5062. },
  5063. },
  5064. [
  5065. {
  5066. name: "Normal",
  5067. height: math.unit(8, "meters"),
  5068. default: true
  5069. },
  5070. ]
  5071. ))
  5072. characterMakers.push(() => makeCharacter(
  5073. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5074. {
  5075. front: {
  5076. height: math.unit(5.5, "feet"),
  5077. weight: math.unit(400, "lbs"),
  5078. name: "Front",
  5079. image: {
  5080. source: "./media/characters/kieran/front.svg",
  5081. extra: 2694 / 2364,
  5082. bottom: 217 / 2908
  5083. }
  5084. },
  5085. side: {
  5086. height: math.unit(5.5, "feet"),
  5087. weight: math.unit(400, "lbs"),
  5088. name: "Side",
  5089. image: {
  5090. source: "./media/characters/kieran/side.svg",
  5091. extra: 875 / 777,
  5092. bottom: 84.6 / 959
  5093. }
  5094. },
  5095. },
  5096. [
  5097. {
  5098. name: "Normal",
  5099. height: math.unit(5.5, "feet"),
  5100. default: true
  5101. },
  5102. ]
  5103. ))
  5104. characterMakers.push(() => makeCharacter(
  5105. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5106. {
  5107. side: {
  5108. height: math.unit(2, "meters"),
  5109. weight: math.unit(70, "kg"),
  5110. name: "Side",
  5111. image: {
  5112. source: "./media/characters/sanya/side.svg",
  5113. bottom: 0.02,
  5114. extra: 1.02
  5115. }
  5116. },
  5117. },
  5118. [
  5119. {
  5120. name: "Small",
  5121. height: math.unit(2, "meters")
  5122. },
  5123. {
  5124. name: "Normal",
  5125. height: math.unit(3, "meters")
  5126. },
  5127. {
  5128. name: "Macro",
  5129. height: math.unit(16, "meters"),
  5130. default: true
  5131. },
  5132. ]
  5133. ))
  5134. characterMakers.push(() => makeCharacter(
  5135. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5136. {
  5137. front: {
  5138. height: math.unit(2, "meters"),
  5139. weight: math.unit(120, "kg"),
  5140. name: "Front",
  5141. image: {
  5142. source: "./media/characters/miranda/front.svg",
  5143. extra: 195 / 185,
  5144. bottom: 10.9 / 206.5
  5145. }
  5146. },
  5147. back: {
  5148. height: math.unit(2, "meters"),
  5149. weight: math.unit(120, "kg"),
  5150. name: "Back",
  5151. image: {
  5152. source: "./media/characters/miranda/back.svg",
  5153. extra: 201 / 193,
  5154. bottom: 2.3 / 203.7
  5155. }
  5156. },
  5157. },
  5158. [
  5159. {
  5160. name: "Normal",
  5161. height: math.unit(10, "feet"),
  5162. default: true
  5163. }
  5164. ]
  5165. ))
  5166. characterMakers.push(() => makeCharacter(
  5167. { name: "James", species: ["deer"], tags: ["anthro"] },
  5168. {
  5169. side: {
  5170. height: math.unit(2, "meters"),
  5171. weight: math.unit(100, "kg"),
  5172. name: "Front",
  5173. image: {
  5174. source: "./media/characters/james/front.svg",
  5175. extra: 10 / 8.5
  5176. }
  5177. },
  5178. },
  5179. [
  5180. {
  5181. name: "Normal",
  5182. height: math.unit(8.5, "feet"),
  5183. default: true
  5184. }
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5189. {
  5190. side: {
  5191. height: math.unit(9.5, "feet"),
  5192. weight: math.unit(2500, "lbs"),
  5193. name: "Side",
  5194. image: {
  5195. source: "./media/characters/heather/side.svg"
  5196. }
  5197. },
  5198. },
  5199. [
  5200. {
  5201. name: "Normal",
  5202. height: math.unit(9.5, "feet"),
  5203. default: true
  5204. }
  5205. ]
  5206. ))
  5207. characterMakers.push(() => makeCharacter(
  5208. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5209. {
  5210. side: {
  5211. height: math.unit(6.5, "feet"),
  5212. weight: math.unit(400, "lbs"),
  5213. name: "Side",
  5214. image: {
  5215. source: "./media/characters/lukas/side.svg",
  5216. extra: 7.25 / 6.5
  5217. }
  5218. },
  5219. },
  5220. [
  5221. {
  5222. name: "Normal",
  5223. height: math.unit(6.5, "feet"),
  5224. default: true
  5225. }
  5226. ]
  5227. ))
  5228. characterMakers.push(() => makeCharacter(
  5229. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5230. {
  5231. side: {
  5232. height: math.unit(5, "feet"),
  5233. weight: math.unit(3000, "lbs"),
  5234. name: "Side",
  5235. image: {
  5236. source: "./media/characters/louise/side.svg"
  5237. }
  5238. },
  5239. },
  5240. [
  5241. {
  5242. name: "Normal",
  5243. height: math.unit(5, "feet"),
  5244. default: true
  5245. }
  5246. ]
  5247. ))
  5248. characterMakers.push(() => makeCharacter(
  5249. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5250. {
  5251. side: {
  5252. height: math.unit(6, "feet"),
  5253. weight: math.unit(150, "lbs"),
  5254. name: "Side",
  5255. image: {
  5256. source: "./media/characters/ramona/side.svg"
  5257. }
  5258. },
  5259. },
  5260. [
  5261. {
  5262. name: "Normal",
  5263. height: math.unit(5.3, "meters"),
  5264. default: true
  5265. },
  5266. {
  5267. name: "Macro",
  5268. height: math.unit(20, "stories")
  5269. },
  5270. {
  5271. name: "Macro+",
  5272. height: math.unit(50, "stories")
  5273. },
  5274. ]
  5275. ))
  5276. characterMakers.push(() => makeCharacter(
  5277. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5278. {
  5279. standing: {
  5280. height: math.unit(5.75, "feet"),
  5281. weight: math.unit(160, "lbs"),
  5282. name: "Standing",
  5283. image: {
  5284. source: "./media/characters/deerpuff/standing.svg",
  5285. extra: 682 / 624
  5286. }
  5287. },
  5288. sitting: {
  5289. height: math.unit(5.75 / 1.79, "feet"),
  5290. weight: math.unit(160, "lbs"),
  5291. name: "Sitting",
  5292. image: {
  5293. source: "./media/characters/deerpuff/sitting.svg",
  5294. bottom: 44 / 400,
  5295. extra: 1
  5296. }
  5297. },
  5298. taurLaying: {
  5299. height: math.unit(6, "feet"),
  5300. weight: math.unit(400, "lbs"),
  5301. name: "Taur (Laying)",
  5302. image: {
  5303. source: "./media/characters/deerpuff/taur-laying.svg"
  5304. }
  5305. },
  5306. },
  5307. [
  5308. {
  5309. name: "Puffball",
  5310. height: math.unit(6, "inches")
  5311. },
  5312. {
  5313. name: "Normalpuff",
  5314. height: math.unit(5.75, "feet")
  5315. },
  5316. {
  5317. name: "Macropuff",
  5318. height: math.unit(1500, "feet"),
  5319. default: true
  5320. },
  5321. {
  5322. name: "Megapuff",
  5323. height: math.unit(500, "miles")
  5324. },
  5325. {
  5326. name: "Gigapuff",
  5327. height: math.unit(250000, "miles")
  5328. },
  5329. {
  5330. name: "Omegapuff",
  5331. height: math.unit(1000, "lightyears")
  5332. },
  5333. ]
  5334. ))
  5335. characterMakers.push(() => makeCharacter(
  5336. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5337. {
  5338. stomping: {
  5339. height: math.unit(6, "feet"),
  5340. weight: math.unit(170, "lbs"),
  5341. name: "Stomping",
  5342. image: {
  5343. source: "./media/characters/vivian/stomping.svg"
  5344. }
  5345. },
  5346. sitting: {
  5347. height: math.unit(6 / 1.75, "feet"),
  5348. weight: math.unit(170, "lbs"),
  5349. name: "Sitting",
  5350. image: {
  5351. source: "./media/characters/vivian/sitting.svg",
  5352. bottom: 1 / 6.4,
  5353. extra: 1,
  5354. }
  5355. },
  5356. },
  5357. [
  5358. {
  5359. name: "Normal",
  5360. height: math.unit(7, "feet"),
  5361. default: true
  5362. },
  5363. {
  5364. name: "Macro",
  5365. height: math.unit(10, "stories")
  5366. },
  5367. {
  5368. name: "Macro+",
  5369. height: math.unit(30, "stories")
  5370. },
  5371. {
  5372. name: "Megamacro",
  5373. height: math.unit(10, "miles")
  5374. },
  5375. {
  5376. name: "Megamacro+",
  5377. height: math.unit(2750000, "meters")
  5378. },
  5379. ]
  5380. ))
  5381. characterMakers.push(() => makeCharacter(
  5382. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5383. {
  5384. front: {
  5385. height: math.unit(6, "feet"),
  5386. weight: math.unit(160, "lbs"),
  5387. name: "Front",
  5388. image: {
  5389. source: "./media/characters/prince/front.svg",
  5390. extra: 3400 / 3000
  5391. }
  5392. },
  5393. jumping: {
  5394. height: math.unit(6, "feet"),
  5395. weight: math.unit(160, "lbs"),
  5396. name: "Jumping",
  5397. image: {
  5398. source: "./media/characters/prince/jump.svg",
  5399. extra: 2555 / 2134
  5400. }
  5401. },
  5402. },
  5403. [
  5404. {
  5405. name: "Normal",
  5406. height: math.unit(7.75, "feet"),
  5407. default: true
  5408. },
  5409. {
  5410. name: "Not cute",
  5411. height: math.unit(17, "feet")
  5412. },
  5413. {
  5414. name: "I said NOT",
  5415. height: math.unit(91, "feet")
  5416. },
  5417. {
  5418. name: "Please stop",
  5419. height: math.unit(560, "feet")
  5420. },
  5421. {
  5422. name: "What have you done",
  5423. height: math.unit(2200, "feet")
  5424. },
  5425. {
  5426. name: "Deer God",
  5427. height: math.unit(3.6, "miles")
  5428. },
  5429. ]
  5430. ))
  5431. characterMakers.push(() => makeCharacter(
  5432. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5433. {
  5434. standing: {
  5435. height: math.unit(6, "feet"),
  5436. weight: math.unit(300, "lbs"),
  5437. name: "Standing",
  5438. image: {
  5439. source: "./media/characters/psymon/standing.svg",
  5440. extra: 1888 / 1810,
  5441. bottom: 0.05
  5442. }
  5443. },
  5444. slithering: {
  5445. height: math.unit(6, "feet"),
  5446. weight: math.unit(300, "lbs"),
  5447. name: "Slithering",
  5448. image: {
  5449. source: "./media/characters/psymon/slithering.svg",
  5450. extra: 1330 / 1224
  5451. }
  5452. },
  5453. slitheringAlt: {
  5454. height: math.unit(6, "feet"),
  5455. weight: math.unit(300, "lbs"),
  5456. name: "Slithering (Alt)",
  5457. image: {
  5458. source: "./media/characters/psymon/slithering-alt.svg",
  5459. extra: 1330 / 1224
  5460. }
  5461. },
  5462. },
  5463. [
  5464. {
  5465. name: "Normal",
  5466. height: math.unit(11.25, "feet"),
  5467. default: true
  5468. },
  5469. {
  5470. name: "Large",
  5471. height: math.unit(27, "feet")
  5472. },
  5473. {
  5474. name: "Giant",
  5475. height: math.unit(87, "feet")
  5476. },
  5477. {
  5478. name: "Macro",
  5479. height: math.unit(365, "feet")
  5480. },
  5481. {
  5482. name: "Megamacro",
  5483. height: math.unit(3, "miles")
  5484. },
  5485. {
  5486. name: "World Serpent",
  5487. height: math.unit(8000, "miles")
  5488. },
  5489. ]
  5490. ))
  5491. characterMakers.push(() => makeCharacter(
  5492. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5493. {
  5494. front: {
  5495. height: math.unit(6, "feet"),
  5496. weight: math.unit(180, "lbs"),
  5497. name: "Front",
  5498. image: {
  5499. source: "./media/characters/daimos/front.svg",
  5500. extra: 4160 / 3897,
  5501. bottom: 0.021
  5502. }
  5503. }
  5504. },
  5505. [
  5506. {
  5507. name: "Normal",
  5508. height: math.unit(8, "feet"),
  5509. default: true
  5510. },
  5511. {
  5512. name: "Big Dog",
  5513. height: math.unit(22, "feet")
  5514. },
  5515. {
  5516. name: "Macro",
  5517. height: math.unit(127, "feet")
  5518. },
  5519. {
  5520. name: "Megamacro",
  5521. height: math.unit(3600, "feet")
  5522. },
  5523. ]
  5524. ))
  5525. characterMakers.push(() => makeCharacter(
  5526. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5527. {
  5528. side: {
  5529. height: math.unit(6, "feet"),
  5530. weight: math.unit(180, "lbs"),
  5531. name: "Side",
  5532. image: {
  5533. source: "./media/characters/blake/side.svg",
  5534. extra: 1212 / 1120,
  5535. bottom: 0.05
  5536. }
  5537. },
  5538. crouched: {
  5539. height: math.unit(6 * 0.57, "feet"),
  5540. weight: math.unit(180, "lbs"),
  5541. name: "Crouched",
  5542. image: {
  5543. source: "./media/characters/blake/crouched.svg",
  5544. extra: 840 / 587,
  5545. bottom: 0.04
  5546. }
  5547. },
  5548. bent: {
  5549. height: math.unit(6 * 0.75, "feet"),
  5550. weight: math.unit(180, "lbs"),
  5551. name: "Bent",
  5552. image: {
  5553. source: "./media/characters/blake/bent.svg",
  5554. extra: 592 / 544,
  5555. bottom: 0.035
  5556. }
  5557. },
  5558. },
  5559. [
  5560. {
  5561. name: "Normal",
  5562. height: math.unit(8 + 1 / 6, "feet"),
  5563. default: true
  5564. },
  5565. {
  5566. name: "Big Backside",
  5567. height: math.unit(37, "feet")
  5568. },
  5569. {
  5570. name: "Subway Shredder",
  5571. height: math.unit(72, "feet")
  5572. },
  5573. {
  5574. name: "City Carver",
  5575. height: math.unit(1675, "feet")
  5576. },
  5577. {
  5578. name: "Tectonic Tweaker",
  5579. height: math.unit(2300, "miles")
  5580. },
  5581. ]
  5582. ))
  5583. characterMakers.push(() => makeCharacter(
  5584. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5585. {
  5586. front: {
  5587. height: math.unit(6, "feet"),
  5588. weight: math.unit(180, "lbs"),
  5589. name: "Front",
  5590. image: {
  5591. source: "./media/characters/guisetto/front.svg",
  5592. extra: 856 / 817,
  5593. bottom: 0.06
  5594. }
  5595. },
  5596. airborne: {
  5597. height: math.unit(6, "feet"),
  5598. weight: math.unit(180, "lbs"),
  5599. name: "Airborne",
  5600. image: {
  5601. source: "./media/characters/guisetto/airborne.svg",
  5602. extra: 584 / 525
  5603. }
  5604. },
  5605. },
  5606. [
  5607. {
  5608. name: "Normal",
  5609. height: math.unit(10 + 11 / 12, "feet"),
  5610. default: true
  5611. },
  5612. {
  5613. name: "Large",
  5614. height: math.unit(35, "feet")
  5615. },
  5616. {
  5617. name: "Macro",
  5618. height: math.unit(475, "feet")
  5619. },
  5620. ]
  5621. ))
  5622. characterMakers.push(() => makeCharacter(
  5623. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5624. {
  5625. front: {
  5626. height: math.unit(6, "feet"),
  5627. weight: math.unit(180, "lbs"),
  5628. name: "Front",
  5629. image: {
  5630. source: "./media/characters/luxor/front.svg",
  5631. extra: 2940 / 2152
  5632. }
  5633. },
  5634. back: {
  5635. height: math.unit(6, "feet"),
  5636. weight: math.unit(180, "lbs"),
  5637. name: "Back",
  5638. image: {
  5639. source: "./media/characters/luxor/back.svg",
  5640. extra: 1083 / 960
  5641. }
  5642. },
  5643. },
  5644. [
  5645. {
  5646. name: "Normal",
  5647. height: math.unit(5 + 5 / 6, "feet"),
  5648. default: true
  5649. },
  5650. {
  5651. name: "Lamp",
  5652. height: math.unit(50, "feet")
  5653. },
  5654. {
  5655. name: "Lämp",
  5656. height: math.unit(300, "feet")
  5657. },
  5658. {
  5659. name: "The sun is a lamp",
  5660. height: math.unit(250000, "miles")
  5661. },
  5662. ]
  5663. ))
  5664. characterMakers.push(() => makeCharacter(
  5665. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5666. {
  5667. front: {
  5668. height: math.unit(6, "feet"),
  5669. weight: math.unit(50, "lbs"),
  5670. name: "Front",
  5671. image: {
  5672. source: "./media/characters/huoyan/front.svg"
  5673. }
  5674. },
  5675. side: {
  5676. height: math.unit(6, "feet"),
  5677. weight: math.unit(180, "lbs"),
  5678. name: "Side",
  5679. image: {
  5680. source: "./media/characters/huoyan/side.svg"
  5681. }
  5682. },
  5683. },
  5684. [
  5685. {
  5686. name: "Chef",
  5687. height: math.unit(9, "feet")
  5688. },
  5689. {
  5690. name: "Normal",
  5691. height: math.unit(65, "feet"),
  5692. default: true
  5693. },
  5694. {
  5695. name: "Macro",
  5696. height: math.unit(780, "feet")
  5697. },
  5698. {
  5699. name: "Flaming Mountain",
  5700. height: math.unit(4.8, "miles")
  5701. },
  5702. {
  5703. name: "Celestial",
  5704. height: math.unit(765000, "miles")
  5705. },
  5706. ]
  5707. ))
  5708. characterMakers.push(() => makeCharacter(
  5709. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5710. {
  5711. front: {
  5712. height: math.unit(5 + 3 / 4, "feet"),
  5713. weight: math.unit(120, "lbs"),
  5714. name: "Front",
  5715. image: {
  5716. source: "./media/characters/tails/front.svg"
  5717. }
  5718. }
  5719. },
  5720. [
  5721. {
  5722. name: "Normal",
  5723. height: math.unit(5 + 3 / 4, "feet"),
  5724. default: true
  5725. }
  5726. ]
  5727. ))
  5728. characterMakers.push(() => makeCharacter(
  5729. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5730. {
  5731. front: {
  5732. height: math.unit(4, "feet"),
  5733. weight: math.unit(50, "lbs"),
  5734. name: "Front",
  5735. image: {
  5736. source: "./media/characters/rainy/front.svg"
  5737. }
  5738. }
  5739. },
  5740. [
  5741. {
  5742. name: "Macro",
  5743. height: math.unit(800, "feet"),
  5744. default: true
  5745. }
  5746. ]
  5747. ))
  5748. characterMakers.push(() => makeCharacter(
  5749. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5750. {
  5751. front: {
  5752. height: math.unit(6, "feet"),
  5753. weight: math.unit(150, "lbs"),
  5754. name: "Front",
  5755. image: {
  5756. source: "./media/characters/rainier/front.svg"
  5757. }
  5758. }
  5759. },
  5760. [
  5761. {
  5762. name: "Micro",
  5763. height: math.unit(2, "mm"),
  5764. default: true
  5765. }
  5766. ]
  5767. ))
  5768. characterMakers.push(() => makeCharacter(
  5769. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5770. {
  5771. front: {
  5772. height: math.unit(8 + 4/12, "feet"),
  5773. name: "Front",
  5774. image: {
  5775. source: "./media/characters/andy-renard/front.svg",
  5776. extra: 1839/1726,
  5777. bottom: 134/1973
  5778. }
  5779. },
  5780. back: {
  5781. height: math.unit(8 + 4/12, "feet"),
  5782. name: "Back",
  5783. image: {
  5784. source: "./media/characters/andy-renard/back.svg",
  5785. extra: 1838/1710,
  5786. bottom: 105/1943
  5787. }
  5788. },
  5789. },
  5790. [
  5791. {
  5792. name: "Tall",
  5793. height: math.unit(8 + 4/12, "feet")
  5794. },
  5795. {
  5796. name: "Mini Macro",
  5797. height: math.unit(15, "feet"),
  5798. default: true
  5799. },
  5800. {
  5801. name: "Macro",
  5802. height: math.unit(100, "feet")
  5803. },
  5804. {
  5805. name: "Mega Macro",
  5806. height: math.unit(1000, "feet")
  5807. },
  5808. {
  5809. name: "Giga Macro",
  5810. height: math.unit(10, "miles")
  5811. },
  5812. {
  5813. name: "God Macro",
  5814. height: math.unit(1, "multiverse")
  5815. },
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5820. {
  5821. front: {
  5822. height: math.unit(6, "feet"),
  5823. weight: math.unit(210, "lbs"),
  5824. name: "Front",
  5825. image: {
  5826. source: "./media/characters/cimmaron/front-sfw.svg",
  5827. extra: 701 / 676,
  5828. bottom: 0.046
  5829. }
  5830. },
  5831. back: {
  5832. height: math.unit(6, "feet"),
  5833. weight: math.unit(210, "lbs"),
  5834. name: "Back",
  5835. image: {
  5836. source: "./media/characters/cimmaron/back-sfw.svg",
  5837. extra: 701 / 676,
  5838. bottom: 0.046
  5839. }
  5840. },
  5841. frontNsfw: {
  5842. height: math.unit(6, "feet"),
  5843. weight: math.unit(210, "lbs"),
  5844. name: "Front (NSFW)",
  5845. image: {
  5846. source: "./media/characters/cimmaron/front-nsfw.svg",
  5847. extra: 701 / 676,
  5848. bottom: 0.046
  5849. }
  5850. },
  5851. backNsfw: {
  5852. height: math.unit(6, "feet"),
  5853. weight: math.unit(210, "lbs"),
  5854. name: "Back (NSFW)",
  5855. image: {
  5856. source: "./media/characters/cimmaron/back-nsfw.svg",
  5857. extra: 701 / 676,
  5858. bottom: 0.046
  5859. }
  5860. },
  5861. dick: {
  5862. height: math.unit(1.714, "feet"),
  5863. name: "Dick",
  5864. image: {
  5865. source: "./media/characters/cimmaron/dick.svg"
  5866. }
  5867. },
  5868. },
  5869. [
  5870. {
  5871. name: "Normal",
  5872. height: math.unit(6, "feet"),
  5873. default: true
  5874. },
  5875. {
  5876. name: "Macro Mayor",
  5877. height: math.unit(350, "meters")
  5878. },
  5879. ]
  5880. ))
  5881. characterMakers.push(() => makeCharacter(
  5882. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5883. {
  5884. front: {
  5885. height: math.unit(6, "feet"),
  5886. weight: math.unit(200, "lbs"),
  5887. name: "Front",
  5888. image: {
  5889. source: "./media/characters/akari/front.svg",
  5890. extra: 962 / 901,
  5891. bottom: 0.04
  5892. }
  5893. }
  5894. },
  5895. [
  5896. {
  5897. name: "Micro",
  5898. height: math.unit(5, "inches"),
  5899. default: true
  5900. },
  5901. {
  5902. name: "Normal",
  5903. height: math.unit(7, "feet")
  5904. },
  5905. ]
  5906. ))
  5907. characterMakers.push(() => makeCharacter(
  5908. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5909. {
  5910. front: {
  5911. height: math.unit(6, "feet"),
  5912. weight: math.unit(140, "lbs"),
  5913. name: "Front",
  5914. image: {
  5915. source: "./media/characters/cynosura/front.svg",
  5916. extra: 896 / 847
  5917. }
  5918. },
  5919. back: {
  5920. height: math.unit(6, "feet"),
  5921. weight: math.unit(140, "lbs"),
  5922. name: "Back",
  5923. image: {
  5924. source: "./media/characters/cynosura/back.svg",
  5925. extra: 1365 / 1250
  5926. }
  5927. },
  5928. },
  5929. [
  5930. {
  5931. name: "Micro",
  5932. height: math.unit(4, "inches")
  5933. },
  5934. {
  5935. name: "Normal",
  5936. height: math.unit(5.75, "feet"),
  5937. default: true
  5938. },
  5939. {
  5940. name: "Tall",
  5941. height: math.unit(10, "feet")
  5942. },
  5943. {
  5944. name: "Big",
  5945. height: math.unit(20, "feet")
  5946. },
  5947. {
  5948. name: "Macro",
  5949. height: math.unit(50, "feet")
  5950. },
  5951. ]
  5952. ))
  5953. characterMakers.push(() => makeCharacter(
  5954. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5955. {
  5956. front: {
  5957. height: math.unit(13 + 2/12, "feet"),
  5958. weight: math.unit(800, "kg"),
  5959. name: "Front",
  5960. image: {
  5961. source: "./media/characters/gin/front.svg",
  5962. extra: 1312/1191,
  5963. bottom: 45/1357
  5964. }
  5965. },
  5966. mouth: {
  5967. height: math.unit(2.39 * 1.8, "feet"),
  5968. name: "Mouth",
  5969. image: {
  5970. source: "./media/characters/gin/mouth.svg"
  5971. }
  5972. },
  5973. hand: {
  5974. height: math.unit(1.57 * 2.19, "feet"),
  5975. name: "Hand",
  5976. image: {
  5977. source: "./media/characters/gin/hand.svg"
  5978. }
  5979. },
  5980. foot: {
  5981. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5982. name: "Foot",
  5983. image: {
  5984. source: "./media/characters/gin/foot.svg"
  5985. }
  5986. },
  5987. sole: {
  5988. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5989. name: "Sole",
  5990. image: {
  5991. source: "./media/characters/gin/sole.svg"
  5992. }
  5993. },
  5994. },
  5995. [
  5996. {
  5997. name: "Very Small",
  5998. height: math.unit(13 + 2 / 12, "feet")
  5999. },
  6000. {
  6001. name: "Micro",
  6002. height: math.unit(600, "miles")
  6003. },
  6004. {
  6005. name: "Regular",
  6006. height: math.unit(20, "earths"),
  6007. default: true
  6008. },
  6009. {
  6010. name: "Macro",
  6011. height: math.unit(2.2, "solarradii")
  6012. },
  6013. {
  6014. name: "Teramacro",
  6015. height: math.unit(1.2, "galaxies")
  6016. },
  6017. {
  6018. name: "Omegamacro",
  6019. height: math.unit(200, "universes")
  6020. },
  6021. ]
  6022. ))
  6023. characterMakers.push(() => makeCharacter(
  6024. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6025. {
  6026. front: {
  6027. height: math.unit(6 + 1 / 6, "feet"),
  6028. weight: math.unit(178, "lbs"),
  6029. name: "Front",
  6030. image: {
  6031. source: "./media/characters/guy/front.svg"
  6032. }
  6033. }
  6034. },
  6035. [
  6036. {
  6037. name: "Normal",
  6038. height: math.unit(6 + 1 / 6, "feet"),
  6039. default: true
  6040. },
  6041. {
  6042. name: "Large",
  6043. height: math.unit(25 + 7 / 12, "feet")
  6044. },
  6045. {
  6046. name: "Macro",
  6047. height: math.unit(60 + 9 / 12, "feet")
  6048. },
  6049. {
  6050. name: "Macro+",
  6051. height: math.unit(246, "feet")
  6052. },
  6053. {
  6054. name: "Macro++",
  6055. height: math.unit(878, "feet")
  6056. }
  6057. ]
  6058. ))
  6059. characterMakers.push(() => makeCharacter(
  6060. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6061. {
  6062. front: {
  6063. height: math.unit(9, "feet"),
  6064. weight: math.unit(800, "lbs"),
  6065. name: "Front",
  6066. image: {
  6067. source: "./media/characters/tiberius/front.svg",
  6068. extra: 2295 / 2071
  6069. }
  6070. },
  6071. back: {
  6072. height: math.unit(9, "feet"),
  6073. weight: math.unit(800, "lbs"),
  6074. name: "Back",
  6075. image: {
  6076. source: "./media/characters/tiberius/back.svg",
  6077. extra: 2373 / 2160
  6078. }
  6079. },
  6080. },
  6081. [
  6082. {
  6083. name: "Normal",
  6084. height: math.unit(9, "feet"),
  6085. default: true
  6086. }
  6087. ]
  6088. ))
  6089. characterMakers.push(() => makeCharacter(
  6090. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6091. {
  6092. front: {
  6093. height: math.unit(6, "feet"),
  6094. weight: math.unit(600, "lbs"),
  6095. name: "Front",
  6096. image: {
  6097. source: "./media/characters/surgo/front.svg",
  6098. extra: 3591 / 2227
  6099. }
  6100. },
  6101. back: {
  6102. height: math.unit(6, "feet"),
  6103. weight: math.unit(600, "lbs"),
  6104. name: "Back",
  6105. image: {
  6106. source: "./media/characters/surgo/back.svg",
  6107. extra: 3557 / 2228
  6108. }
  6109. },
  6110. laying: {
  6111. height: math.unit(6 * 0.85, "feet"),
  6112. weight: math.unit(600, "lbs"),
  6113. name: "Laying",
  6114. image: {
  6115. source: "./media/characters/surgo/laying.svg"
  6116. }
  6117. },
  6118. },
  6119. [
  6120. {
  6121. name: "Normal",
  6122. height: math.unit(6, "feet"),
  6123. default: true
  6124. }
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6129. {
  6130. side: {
  6131. height: math.unit(6, "feet"),
  6132. weight: math.unit(150, "lbs"),
  6133. name: "Side",
  6134. image: {
  6135. source: "./media/characters/cibus/side.svg",
  6136. extra: 800 / 400
  6137. }
  6138. },
  6139. },
  6140. [
  6141. {
  6142. name: "Normal",
  6143. height: math.unit(6, "feet"),
  6144. default: true
  6145. }
  6146. ]
  6147. ))
  6148. characterMakers.push(() => makeCharacter(
  6149. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6150. {
  6151. front: {
  6152. height: math.unit(6, "feet"),
  6153. weight: math.unit(240, "lbs"),
  6154. name: "Front",
  6155. image: {
  6156. source: "./media/characters/nibbles/front.svg"
  6157. }
  6158. },
  6159. side: {
  6160. height: math.unit(6, "feet"),
  6161. weight: math.unit(240, "lbs"),
  6162. name: "Side",
  6163. image: {
  6164. source: "./media/characters/nibbles/side.svg"
  6165. }
  6166. },
  6167. },
  6168. [
  6169. {
  6170. name: "Normal",
  6171. height: math.unit(9, "feet"),
  6172. default: true
  6173. }
  6174. ]
  6175. ))
  6176. characterMakers.push(() => makeCharacter(
  6177. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6178. {
  6179. side: {
  6180. height: math.unit(5 + 1 / 6, "feet"),
  6181. weight: math.unit(130, "lbs"),
  6182. name: "Side",
  6183. image: {
  6184. source: "./media/characters/rikky/side.svg",
  6185. extra: 851 / 801
  6186. }
  6187. },
  6188. },
  6189. [
  6190. {
  6191. name: "Normal",
  6192. height: math.unit(5 + 1 / 6, "feet")
  6193. },
  6194. {
  6195. name: "Macro",
  6196. height: math.unit(152, "feet"),
  6197. default: true
  6198. },
  6199. {
  6200. name: "Megamacro",
  6201. height: math.unit(7, "miles")
  6202. }
  6203. ]
  6204. ))
  6205. characterMakers.push(() => makeCharacter(
  6206. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6207. {
  6208. side: {
  6209. height: math.unit(370, "cm"),
  6210. weight: math.unit(350, "lbs"),
  6211. name: "Side",
  6212. image: {
  6213. source: "./media/characters/malfressa/side.svg"
  6214. }
  6215. },
  6216. walking: {
  6217. height: math.unit(370, "cm"),
  6218. weight: math.unit(350, "lbs"),
  6219. name: "Walking",
  6220. image: {
  6221. source: "./media/characters/malfressa/walking.svg"
  6222. }
  6223. },
  6224. feral: {
  6225. height: math.unit(2500, "cm"),
  6226. weight: math.unit(100000, "lbs"),
  6227. name: "Feral",
  6228. image: {
  6229. source: "./media/characters/malfressa/feral.svg",
  6230. extra: 2108 / 837,
  6231. bottom: 0.02
  6232. }
  6233. },
  6234. },
  6235. [
  6236. {
  6237. name: "Normal",
  6238. height: math.unit(370, "cm")
  6239. },
  6240. {
  6241. name: "Macro",
  6242. height: math.unit(300, "meters"),
  6243. default: true
  6244. }
  6245. ]
  6246. ))
  6247. characterMakers.push(() => makeCharacter(
  6248. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6249. {
  6250. front: {
  6251. height: math.unit(6, "feet"),
  6252. weight: math.unit(60, "kg"),
  6253. name: "Front",
  6254. image: {
  6255. source: "./media/characters/jaro/front.svg"
  6256. }
  6257. },
  6258. back: {
  6259. height: math.unit(6, "feet"),
  6260. weight: math.unit(60, "kg"),
  6261. name: "Back",
  6262. image: {
  6263. source: "./media/characters/jaro/back.svg"
  6264. }
  6265. },
  6266. },
  6267. [
  6268. {
  6269. name: "Micro",
  6270. height: math.unit(7, "inches")
  6271. },
  6272. {
  6273. name: "Normal",
  6274. height: math.unit(5.5, "feet"),
  6275. default: true
  6276. },
  6277. {
  6278. name: "Minimacro",
  6279. height: math.unit(20, "feet")
  6280. },
  6281. {
  6282. name: "Macro",
  6283. height: math.unit(200, "meters")
  6284. }
  6285. ]
  6286. ))
  6287. characterMakers.push(() => makeCharacter(
  6288. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6289. {
  6290. front: {
  6291. height: math.unit(6, "feet"),
  6292. weight: math.unit(195, "lb"),
  6293. name: "Front",
  6294. image: {
  6295. source: "./media/characters/rogue/front.svg"
  6296. }
  6297. },
  6298. },
  6299. [
  6300. {
  6301. name: "Macro",
  6302. height: math.unit(90, "feet"),
  6303. default: true
  6304. },
  6305. ]
  6306. ))
  6307. characterMakers.push(() => makeCharacter(
  6308. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6309. {
  6310. front: {
  6311. height: math.unit(5 + 8 / 12, "feet"),
  6312. weight: math.unit(140, "lb"),
  6313. name: "Front",
  6314. image: {
  6315. source: "./media/characters/piper/front.svg",
  6316. extra: 3948/3655,
  6317. bottom: 0/3948
  6318. }
  6319. },
  6320. },
  6321. [
  6322. {
  6323. name: "Micro",
  6324. height: math.unit(2, "inches")
  6325. },
  6326. {
  6327. name: "Normal",
  6328. height: math.unit(5 + 8 / 12, "feet")
  6329. },
  6330. {
  6331. name: "Macro",
  6332. height: math.unit(250, "feet"),
  6333. default: true
  6334. },
  6335. {
  6336. name: "Megamacro",
  6337. height: math.unit(7, "miles")
  6338. },
  6339. ]
  6340. ))
  6341. characterMakers.push(() => makeCharacter(
  6342. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6343. {
  6344. front: {
  6345. height: math.unit(6, "feet"),
  6346. weight: math.unit(220, "lb"),
  6347. name: "Front",
  6348. image: {
  6349. source: "./media/characters/gemini/front.svg"
  6350. }
  6351. },
  6352. back: {
  6353. height: math.unit(6, "feet"),
  6354. weight: math.unit(220, "lb"),
  6355. name: "Back",
  6356. image: {
  6357. source: "./media/characters/gemini/back.svg"
  6358. }
  6359. },
  6360. kneeling: {
  6361. height: math.unit(6 / 1.5, "feet"),
  6362. weight: math.unit(220, "lb"),
  6363. name: "Kneeling",
  6364. image: {
  6365. source: "./media/characters/gemini/kneeling.svg",
  6366. bottom: 0.02
  6367. }
  6368. },
  6369. },
  6370. [
  6371. {
  6372. name: "Macro",
  6373. height: math.unit(300, "meters"),
  6374. default: true
  6375. },
  6376. {
  6377. name: "Megamacro",
  6378. height: math.unit(6900, "meters")
  6379. },
  6380. ]
  6381. ))
  6382. characterMakers.push(() => makeCharacter(
  6383. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6384. {
  6385. anthro: {
  6386. height: math.unit(2.35, "meters"),
  6387. weight: math.unit(73, "kg"),
  6388. name: "Anthro",
  6389. image: {
  6390. source: "./media/characters/alicia/anthro.svg",
  6391. extra: 2571 / 2385,
  6392. bottom: 75 / 2648
  6393. }
  6394. },
  6395. paw: {
  6396. height: math.unit(1.32, "feet"),
  6397. name: "Paw",
  6398. image: {
  6399. source: "./media/characters/alicia/paw.svg"
  6400. }
  6401. },
  6402. feral: {
  6403. height: math.unit(1.69, "meters"),
  6404. weight: math.unit(73, "kg"),
  6405. name: "Feral",
  6406. image: {
  6407. source: "./media/characters/alicia/feral.svg",
  6408. extra: 2123 / 1715,
  6409. bottom: 222 / 2349
  6410. }
  6411. },
  6412. },
  6413. [
  6414. {
  6415. name: "Normal",
  6416. height: math.unit(2.35, "meters")
  6417. },
  6418. {
  6419. name: "Macro",
  6420. height: math.unit(60, "meters"),
  6421. default: true
  6422. },
  6423. {
  6424. name: "Megamacro",
  6425. height: math.unit(10000, "kilometers")
  6426. },
  6427. ]
  6428. ))
  6429. characterMakers.push(() => makeCharacter(
  6430. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6431. {
  6432. front: {
  6433. height: math.unit(7, "feet"),
  6434. weight: math.unit(250, "lbs"),
  6435. name: "Front",
  6436. image: {
  6437. source: "./media/characters/archy/front.svg"
  6438. }
  6439. }
  6440. },
  6441. [
  6442. {
  6443. name: "Micro",
  6444. height: math.unit(1, "inch")
  6445. },
  6446. {
  6447. name: "Shorty",
  6448. height: math.unit(5, "feet")
  6449. },
  6450. {
  6451. name: "Normal",
  6452. height: math.unit(7, "feet")
  6453. },
  6454. {
  6455. name: "Macro",
  6456. height: math.unit(600, "meters"),
  6457. default: true
  6458. },
  6459. {
  6460. name: "Megamacro",
  6461. height: math.unit(1, "mile")
  6462. },
  6463. ]
  6464. ))
  6465. characterMakers.push(() => makeCharacter(
  6466. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6467. {
  6468. front: {
  6469. height: math.unit(1.65, "meters"),
  6470. weight: math.unit(74, "kg"),
  6471. name: "Front",
  6472. image: {
  6473. source: "./media/characters/berri/front.svg",
  6474. extra: 857 / 837,
  6475. bottom: 18 / 877
  6476. }
  6477. },
  6478. bum: {
  6479. height: math.unit(1.46, "feet"),
  6480. name: "Bum",
  6481. image: {
  6482. source: "./media/characters/berri/bum.svg"
  6483. }
  6484. },
  6485. mouth: {
  6486. height: math.unit(0.44, "feet"),
  6487. name: "Mouth",
  6488. image: {
  6489. source: "./media/characters/berri/mouth.svg"
  6490. }
  6491. },
  6492. paw: {
  6493. height: math.unit(0.826, "feet"),
  6494. name: "Paw",
  6495. image: {
  6496. source: "./media/characters/berri/paw.svg"
  6497. }
  6498. },
  6499. },
  6500. [
  6501. {
  6502. name: "Normal",
  6503. height: math.unit(1.65, "meters")
  6504. },
  6505. {
  6506. name: "Macro",
  6507. height: math.unit(60, "m"),
  6508. default: true
  6509. },
  6510. {
  6511. name: "Megamacro",
  6512. height: math.unit(9.213, "km")
  6513. },
  6514. {
  6515. name: "Planet Eater",
  6516. height: math.unit(489, "megameters")
  6517. },
  6518. {
  6519. name: "Teramacro",
  6520. height: math.unit(2471635000000, "meters")
  6521. },
  6522. {
  6523. name: "Examacro",
  6524. height: math.unit(8.0624e+26, "meters")
  6525. }
  6526. ]
  6527. ))
  6528. characterMakers.push(() => makeCharacter(
  6529. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6530. {
  6531. front: {
  6532. height: math.unit(1.72, "meters"),
  6533. weight: math.unit(68, "kg"),
  6534. name: "Front",
  6535. image: {
  6536. source: "./media/characters/lexi/front.svg"
  6537. }
  6538. }
  6539. },
  6540. [
  6541. {
  6542. name: "Very Smol",
  6543. height: math.unit(10, "mm")
  6544. },
  6545. {
  6546. name: "Micro",
  6547. height: math.unit(6.8, "cm"),
  6548. default: true
  6549. },
  6550. {
  6551. name: "Normal",
  6552. height: math.unit(1.72, "m")
  6553. }
  6554. ]
  6555. ))
  6556. characterMakers.push(() => makeCharacter(
  6557. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6558. {
  6559. front: {
  6560. height: math.unit(1.69, "meters"),
  6561. weight: math.unit(68, "kg"),
  6562. name: "Front",
  6563. image: {
  6564. source: "./media/characters/martin/front.svg",
  6565. extra: 596 / 581
  6566. }
  6567. }
  6568. },
  6569. [
  6570. {
  6571. name: "Micro",
  6572. height: math.unit(6.85, "cm"),
  6573. default: true
  6574. },
  6575. {
  6576. name: "Normal",
  6577. height: math.unit(1.69, "m")
  6578. }
  6579. ]
  6580. ))
  6581. characterMakers.push(() => makeCharacter(
  6582. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6583. {
  6584. front: {
  6585. height: math.unit(1.69, "meters"),
  6586. weight: math.unit(68, "kg"),
  6587. name: "Front",
  6588. image: {
  6589. source: "./media/characters/juno/front.svg"
  6590. }
  6591. }
  6592. },
  6593. [
  6594. {
  6595. name: "Micro",
  6596. height: math.unit(7, "cm")
  6597. },
  6598. {
  6599. name: "Normal",
  6600. height: math.unit(1.89, "m")
  6601. },
  6602. {
  6603. name: "Macro",
  6604. height: math.unit(353, "meters"),
  6605. default: true
  6606. }
  6607. ]
  6608. ))
  6609. characterMakers.push(() => makeCharacter(
  6610. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6611. {
  6612. front: {
  6613. height: math.unit(1.93, "meters"),
  6614. weight: math.unit(83, "kg"),
  6615. name: "Front",
  6616. image: {
  6617. source: "./media/characters/samantha/front.svg"
  6618. }
  6619. },
  6620. frontClothed: {
  6621. height: math.unit(1.93, "meters"),
  6622. weight: math.unit(83, "kg"),
  6623. name: "Front (Clothed)",
  6624. image: {
  6625. source: "./media/characters/samantha/front-clothed.svg"
  6626. }
  6627. },
  6628. back: {
  6629. height: math.unit(1.93, "meters"),
  6630. weight: math.unit(83, "kg"),
  6631. name: "Back",
  6632. image: {
  6633. source: "./media/characters/samantha/back.svg"
  6634. }
  6635. },
  6636. },
  6637. [
  6638. {
  6639. name: "Normal",
  6640. height: math.unit(1.93, "m")
  6641. },
  6642. {
  6643. name: "Macro",
  6644. height: math.unit(74, "meters"),
  6645. default: true
  6646. },
  6647. {
  6648. name: "Macro+",
  6649. height: math.unit(223, "meters"),
  6650. },
  6651. {
  6652. name: "Megamacro",
  6653. height: math.unit(8381, "meters"),
  6654. },
  6655. {
  6656. name: "Megamacro+",
  6657. height: math.unit(12000, "kilometers")
  6658. },
  6659. ]
  6660. ))
  6661. characterMakers.push(() => makeCharacter(
  6662. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6663. {
  6664. front: {
  6665. height: math.unit(1.92, "meters"),
  6666. weight: math.unit(80, "kg"),
  6667. name: "Front",
  6668. image: {
  6669. source: "./media/characters/dr-clay/front.svg"
  6670. }
  6671. },
  6672. frontClothed: {
  6673. height: math.unit(1.92, "meters"),
  6674. weight: math.unit(80, "kg"),
  6675. name: "Front (Clothed)",
  6676. image: {
  6677. source: "./media/characters/dr-clay/front-clothed.svg"
  6678. }
  6679. }
  6680. },
  6681. [
  6682. {
  6683. name: "Normal",
  6684. height: math.unit(1.92, "m")
  6685. },
  6686. {
  6687. name: "Macro",
  6688. height: math.unit(214, "meters"),
  6689. default: true
  6690. },
  6691. {
  6692. name: "Macro+",
  6693. height: math.unit(12.237, "meters"),
  6694. },
  6695. {
  6696. name: "Megamacro",
  6697. height: math.unit(557, "megameters"),
  6698. },
  6699. {
  6700. name: "Unimaginable",
  6701. height: math.unit(120e9, "lightyears")
  6702. },
  6703. ]
  6704. ))
  6705. characterMakers.push(() => makeCharacter(
  6706. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6707. {
  6708. front: {
  6709. height: math.unit(2, "meters"),
  6710. weight: math.unit(80, "kg"),
  6711. name: "Front",
  6712. image: {
  6713. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6714. }
  6715. }
  6716. },
  6717. [
  6718. {
  6719. name: "Teramacro",
  6720. height: math.unit(500000, "lightyears"),
  6721. default: true
  6722. },
  6723. ]
  6724. ))
  6725. characterMakers.push(() => makeCharacter(
  6726. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6727. {
  6728. crux: {
  6729. height: math.unit(2, "meters"),
  6730. weight: math.unit(150, "kg"),
  6731. name: "Crux",
  6732. image: {
  6733. source: "./media/characters/vemus/crux.svg",
  6734. extra: 1074/936,
  6735. bottom: 23/1097
  6736. }
  6737. },
  6738. skunkTanuki: {
  6739. height: math.unit(2, "meters"),
  6740. weight: math.unit(150, "kg"),
  6741. name: "Skunk-Tanuki",
  6742. image: {
  6743. source: "./media/characters/vemus/skunk-tanuki.svg",
  6744. extra: 926/893,
  6745. bottom: 20/946
  6746. }
  6747. },
  6748. },
  6749. [
  6750. {
  6751. name: "Normal",
  6752. height: math.unit(3.75, "meters"),
  6753. default: true
  6754. },
  6755. {
  6756. name: "Big",
  6757. height: math.unit(8, "meters")
  6758. },
  6759. {
  6760. name: "Macro",
  6761. height: math.unit(100, "meters")
  6762. },
  6763. {
  6764. name: "Macro+",
  6765. height: math.unit(1500, "meters")
  6766. },
  6767. {
  6768. name: "Stellar",
  6769. height: math.unit(14e8, "meters")
  6770. },
  6771. ]
  6772. ))
  6773. characterMakers.push(() => makeCharacter(
  6774. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6775. {
  6776. front: {
  6777. height: math.unit(2, "meters"),
  6778. weight: math.unit(70, "kg"),
  6779. name: "Front",
  6780. image: {
  6781. source: "./media/characters/beherit/front.svg",
  6782. extra: 1408 / 1242
  6783. }
  6784. }
  6785. },
  6786. [
  6787. {
  6788. name: "Normal",
  6789. height: math.unit(6, "feet")
  6790. },
  6791. {
  6792. name: "Lorg",
  6793. height: math.unit(25, "feet"),
  6794. default: true
  6795. },
  6796. {
  6797. name: "Lorger",
  6798. height: math.unit(75, "feet")
  6799. },
  6800. {
  6801. name: "Macro",
  6802. height: math.unit(200, "meters")
  6803. },
  6804. ]
  6805. ))
  6806. characterMakers.push(() => makeCharacter(
  6807. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6808. {
  6809. front: {
  6810. height: math.unit(2, "meters"),
  6811. weight: math.unit(150, "kg"),
  6812. name: "Front",
  6813. image: {
  6814. source: "./media/characters/everett/front.svg",
  6815. extra: 2038 / 1737,
  6816. bottom: 0.03
  6817. }
  6818. },
  6819. paw: {
  6820. height: math.unit(2 / 3.6, "meters"),
  6821. name: "Paw",
  6822. image: {
  6823. source: "./media/characters/everett/paw.svg"
  6824. }
  6825. },
  6826. },
  6827. [
  6828. {
  6829. name: "Normal",
  6830. height: math.unit(15, "feet"),
  6831. default: true
  6832. },
  6833. {
  6834. name: "Lorg",
  6835. height: math.unit(70, "feet"),
  6836. default: true
  6837. },
  6838. {
  6839. name: "Lorger",
  6840. height: math.unit(250, "feet")
  6841. },
  6842. {
  6843. name: "Macro",
  6844. height: math.unit(500, "meters")
  6845. },
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(2, "meters"),
  6853. weight: math.unit(86, "kg"),
  6854. name: "Front",
  6855. image: {
  6856. source: "./media/characters/rose/front.svg",
  6857. extra: 1785/1636,
  6858. bottom: 30/1815
  6859. }
  6860. },
  6861. frontSporty: {
  6862. height: math.unit(2, "meters"),
  6863. weight: math.unit(86, "kg"),
  6864. name: "Front (Sporty)",
  6865. image: {
  6866. source: "./media/characters/rose/front-sporty.svg",
  6867. extra: 350/335,
  6868. bottom: 10/360
  6869. }
  6870. },
  6871. frontAlt: {
  6872. height: math.unit(1.6, "meters"),
  6873. weight: math.unit(86, "kg"),
  6874. name: "Front (Alt)",
  6875. image: {
  6876. source: "./media/characters/rose/front-alt.svg",
  6877. extra: 299/283,
  6878. bottom: 3/302
  6879. }
  6880. },
  6881. plush: {
  6882. height: math.unit(2, "meters"),
  6883. weight: math.unit(86/3, "kg"),
  6884. name: "Plush",
  6885. image: {
  6886. source: "./media/characters/rose/plush.svg",
  6887. extra: 361/337,
  6888. bottom: 11/372
  6889. }
  6890. },
  6891. },
  6892. [
  6893. {
  6894. name: "True Micro",
  6895. height: math.unit(9, "cm")
  6896. },
  6897. {
  6898. name: "Micro",
  6899. height: math.unit(16, "cm")
  6900. },
  6901. {
  6902. name: "Normal",
  6903. height: math.unit(1.85, "meters"),
  6904. default: true
  6905. },
  6906. {
  6907. name: "Mini-Macro",
  6908. height: math.unit(5, "meters")
  6909. },
  6910. {
  6911. name: "Macro",
  6912. height: math.unit(15, "meters")
  6913. },
  6914. {
  6915. name: "True Macro",
  6916. height: math.unit(40, "meters")
  6917. },
  6918. {
  6919. name: "City Scale",
  6920. height: math.unit(1, "km")
  6921. },
  6922. ]
  6923. ))
  6924. characterMakers.push(() => makeCharacter(
  6925. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6926. {
  6927. front: {
  6928. height: math.unit(2, "meters"),
  6929. weight: math.unit(350, "lbs"),
  6930. name: "Front",
  6931. image: {
  6932. source: "./media/characters/regal/front.svg"
  6933. }
  6934. },
  6935. back: {
  6936. height: math.unit(2, "meters"),
  6937. weight: math.unit(350, "lbs"),
  6938. name: "Back",
  6939. image: {
  6940. source: "./media/characters/regal/back.svg"
  6941. }
  6942. },
  6943. },
  6944. [
  6945. {
  6946. name: "Macro",
  6947. height: math.unit(350, "feet"),
  6948. default: true
  6949. }
  6950. ]
  6951. ))
  6952. characterMakers.push(() => makeCharacter(
  6953. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6954. {
  6955. front: {
  6956. height: math.unit(4 + 11 / 12, "feet"),
  6957. weight: math.unit(100, "lbs"),
  6958. name: "Front",
  6959. image: {
  6960. source: "./media/characters/opal/front.svg"
  6961. }
  6962. },
  6963. frontAlt: {
  6964. height: math.unit(4 + 11 / 12, "feet"),
  6965. weight: math.unit(100, "lbs"),
  6966. name: "Front (Alt)",
  6967. image: {
  6968. source: "./media/characters/opal/front-alt.svg"
  6969. }
  6970. },
  6971. },
  6972. [
  6973. {
  6974. name: "Small",
  6975. height: math.unit(4 + 11 / 12, "feet")
  6976. },
  6977. {
  6978. name: "Normal",
  6979. height: math.unit(20, "feet"),
  6980. default: true
  6981. },
  6982. {
  6983. name: "Macro",
  6984. height: math.unit(120, "feet")
  6985. },
  6986. {
  6987. name: "Megamacro",
  6988. height: math.unit(80, "miles")
  6989. },
  6990. {
  6991. name: "True Size",
  6992. height: math.unit(100000, "lightyears")
  6993. },
  6994. ]
  6995. ))
  6996. characterMakers.push(() => makeCharacter(
  6997. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6998. {
  6999. front: {
  7000. height: math.unit(6, "feet"),
  7001. weight: math.unit(200, "lbs"),
  7002. name: "Front",
  7003. image: {
  7004. source: "./media/characters/vector-wuff/front.svg"
  7005. }
  7006. }
  7007. },
  7008. [
  7009. {
  7010. name: "Normal",
  7011. height: math.unit(2.8, "meters")
  7012. },
  7013. {
  7014. name: "Macro",
  7015. height: math.unit(450, "meters"),
  7016. default: true
  7017. },
  7018. {
  7019. name: "Megamacro",
  7020. height: math.unit(15, "kilometers")
  7021. }
  7022. ]
  7023. ))
  7024. characterMakers.push(() => makeCharacter(
  7025. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7026. {
  7027. front: {
  7028. height: math.unit(6, "feet"),
  7029. weight: math.unit(256, "lbs"),
  7030. name: "Front",
  7031. image: {
  7032. source: "./media/characters/dannik/front.svg"
  7033. }
  7034. }
  7035. },
  7036. [
  7037. {
  7038. name: "Macro",
  7039. height: math.unit(69.57, "meters"),
  7040. default: true
  7041. },
  7042. ]
  7043. ))
  7044. characterMakers.push(() => makeCharacter(
  7045. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7046. {
  7047. front: {
  7048. height: math.unit(6, "feet"),
  7049. weight: math.unit(120, "lbs"),
  7050. name: "Front",
  7051. image: {
  7052. source: "./media/characters/azura-saharah/front.svg"
  7053. }
  7054. },
  7055. back: {
  7056. height: math.unit(6, "feet"),
  7057. weight: math.unit(120, "lbs"),
  7058. name: "Back",
  7059. image: {
  7060. source: "./media/characters/azura-saharah/back.svg"
  7061. }
  7062. },
  7063. },
  7064. [
  7065. {
  7066. name: "Macro",
  7067. height: math.unit(100, "feet"),
  7068. default: true
  7069. },
  7070. ]
  7071. ))
  7072. characterMakers.push(() => makeCharacter(
  7073. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7074. {
  7075. side: {
  7076. height: math.unit(5 + 4 / 12, "feet"),
  7077. weight: math.unit(163, "lbs"),
  7078. name: "Side",
  7079. image: {
  7080. source: "./media/characters/kennedy/side.svg"
  7081. }
  7082. }
  7083. },
  7084. [
  7085. {
  7086. name: "Standard Doggo",
  7087. height: math.unit(5 + 4 / 12, "feet")
  7088. },
  7089. {
  7090. name: "Big Doggo",
  7091. height: math.unit(25 + 3 / 12, "feet"),
  7092. default: true
  7093. },
  7094. ]
  7095. ))
  7096. characterMakers.push(() => makeCharacter(
  7097. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7098. {
  7099. front: {
  7100. height: math.unit(6, "feet"),
  7101. weight: math.unit(90, "lbs"),
  7102. name: "Front",
  7103. image: {
  7104. source: "./media/characters/odi-lunar/front.svg"
  7105. }
  7106. }
  7107. },
  7108. [
  7109. {
  7110. name: "Micro",
  7111. height: math.unit(3, "inches"),
  7112. default: true
  7113. },
  7114. {
  7115. name: "Normal",
  7116. height: math.unit(5.5, "feet")
  7117. }
  7118. ]
  7119. ))
  7120. characterMakers.push(() => makeCharacter(
  7121. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7122. {
  7123. back: {
  7124. height: math.unit(6, "feet"),
  7125. weight: math.unit(220, "lbs"),
  7126. name: "Back",
  7127. image: {
  7128. source: "./media/characters/mandake/back.svg"
  7129. }
  7130. }
  7131. },
  7132. [
  7133. {
  7134. name: "Normal",
  7135. height: math.unit(7, "feet"),
  7136. default: true
  7137. },
  7138. {
  7139. name: "Macro",
  7140. height: math.unit(78, "feet")
  7141. },
  7142. {
  7143. name: "Macro+",
  7144. height: math.unit(300, "meters")
  7145. },
  7146. {
  7147. name: "Macro++",
  7148. height: math.unit(2400, "feet")
  7149. },
  7150. {
  7151. name: "Megamacro",
  7152. height: math.unit(5167, "meters")
  7153. },
  7154. {
  7155. name: "Gigamacro",
  7156. height: math.unit(41769, "miles")
  7157. },
  7158. ]
  7159. ))
  7160. characterMakers.push(() => makeCharacter(
  7161. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7162. {
  7163. front: {
  7164. height: math.unit(6, "feet"),
  7165. weight: math.unit(120, "lbs"),
  7166. name: "Front",
  7167. image: {
  7168. source: "./media/characters/yozey/front.svg"
  7169. }
  7170. },
  7171. frontAlt: {
  7172. height: math.unit(6, "feet"),
  7173. weight: math.unit(120, "lbs"),
  7174. name: "Front (Alt)",
  7175. image: {
  7176. source: "./media/characters/yozey/front-alt.svg"
  7177. }
  7178. },
  7179. side: {
  7180. height: math.unit(6, "feet"),
  7181. weight: math.unit(120, "lbs"),
  7182. name: "Side",
  7183. image: {
  7184. source: "./media/characters/yozey/side.svg"
  7185. }
  7186. },
  7187. },
  7188. [
  7189. {
  7190. name: "Micro",
  7191. height: math.unit(3, "inches"),
  7192. default: true
  7193. },
  7194. {
  7195. name: "Normal",
  7196. height: math.unit(6, "feet")
  7197. }
  7198. ]
  7199. ))
  7200. characterMakers.push(() => makeCharacter(
  7201. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7202. {
  7203. front: {
  7204. height: math.unit(6, "feet"),
  7205. weight: math.unit(103, "lbs"),
  7206. name: "Front",
  7207. image: {
  7208. source: "./media/characters/valeska-voss/front.svg"
  7209. }
  7210. }
  7211. },
  7212. [
  7213. {
  7214. name: "Mini-Sized Sub",
  7215. height: math.unit(3.1, "inches")
  7216. },
  7217. {
  7218. name: "Mid-Sized Sub",
  7219. height: math.unit(6.2, "inches")
  7220. },
  7221. {
  7222. name: "Full-Sized Sub",
  7223. height: math.unit(9.3, "inches")
  7224. },
  7225. {
  7226. name: "Normal",
  7227. height: math.unit(5 + 2 / 12, "foot"),
  7228. default: true
  7229. },
  7230. ]
  7231. ))
  7232. characterMakers.push(() => makeCharacter(
  7233. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7234. {
  7235. front: {
  7236. height: math.unit(6, "feet"),
  7237. weight: math.unit(160, "lbs"),
  7238. name: "Front",
  7239. image: {
  7240. source: "./media/characters/gene-zeta/front.svg",
  7241. extra: 3006 / 2826,
  7242. bottom: 182 / 3188
  7243. }
  7244. }
  7245. },
  7246. [
  7247. {
  7248. name: "Micro",
  7249. height: math.unit(6, "inches")
  7250. },
  7251. {
  7252. name: "Normal",
  7253. height: math.unit(5 + 11 / 12, "foot"),
  7254. default: true
  7255. },
  7256. {
  7257. name: "Macro",
  7258. height: math.unit(140, "feet")
  7259. },
  7260. {
  7261. name: "Supercharged",
  7262. height: math.unit(2500, "feet")
  7263. },
  7264. ]
  7265. ))
  7266. characterMakers.push(() => makeCharacter(
  7267. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7268. {
  7269. front: {
  7270. height: math.unit(6, "feet"),
  7271. weight: math.unit(350, "lbs"),
  7272. name: "Front",
  7273. image: {
  7274. source: "./media/characters/razinox/front.svg",
  7275. extra: 1686 / 1548,
  7276. bottom: 28.2 / 1868
  7277. }
  7278. },
  7279. back: {
  7280. height: math.unit(6, "feet"),
  7281. weight: math.unit(350, "lbs"),
  7282. name: "Back",
  7283. image: {
  7284. source: "./media/characters/razinox/back.svg",
  7285. extra: 1660 / 1590,
  7286. bottom: 15 / 1665
  7287. }
  7288. },
  7289. },
  7290. [
  7291. {
  7292. name: "Normal",
  7293. height: math.unit(10 + 8 / 12, "foot")
  7294. },
  7295. {
  7296. name: "Minimacro",
  7297. height: math.unit(15, "foot")
  7298. },
  7299. {
  7300. name: "Macro",
  7301. height: math.unit(60, "foot"),
  7302. default: true
  7303. },
  7304. {
  7305. name: "Megamacro",
  7306. height: math.unit(5, "miles")
  7307. },
  7308. {
  7309. name: "Gigamacro",
  7310. height: math.unit(6000, "miles")
  7311. },
  7312. ]
  7313. ))
  7314. characterMakers.push(() => makeCharacter(
  7315. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7316. {
  7317. front: {
  7318. height: math.unit(6, "feet"),
  7319. weight: math.unit(150, "lbs"),
  7320. name: "Front",
  7321. image: {
  7322. source: "./media/characters/cobalt/front.svg"
  7323. }
  7324. }
  7325. },
  7326. [
  7327. {
  7328. name: "Normal",
  7329. height: math.unit(8 + 1 / 12, "foot")
  7330. },
  7331. {
  7332. name: "Macro",
  7333. height: math.unit(111, "foot"),
  7334. default: true
  7335. },
  7336. {
  7337. name: "Supracosmic",
  7338. height: math.unit(1e42, "feet")
  7339. },
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7344. {
  7345. front: {
  7346. height: math.unit(6, "feet"),
  7347. weight: math.unit(140, "lbs"),
  7348. name: "Front",
  7349. image: {
  7350. source: "./media/characters/amanda/front.svg"
  7351. }
  7352. }
  7353. },
  7354. [
  7355. {
  7356. name: "Micro",
  7357. height: math.unit(5, "inches"),
  7358. default: true
  7359. },
  7360. ]
  7361. ))
  7362. characterMakers.push(() => makeCharacter(
  7363. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7364. {
  7365. front: {
  7366. height: math.unit(2.75, "meters"),
  7367. weight: math.unit(1200, "lb"),
  7368. name: "Front",
  7369. image: {
  7370. source: "./media/characters/teal/front.svg",
  7371. extra: 2463 / 2320,
  7372. bottom: 166 / 2629
  7373. }
  7374. },
  7375. back: {
  7376. height: math.unit(2.75, "meters"),
  7377. weight: math.unit(1200, "lb"),
  7378. name: "Back",
  7379. image: {
  7380. source: "./media/characters/teal/back.svg",
  7381. extra: 2580 / 2489,
  7382. bottom: 151 / 2731
  7383. }
  7384. },
  7385. sitting: {
  7386. height: math.unit(1.9, "meters"),
  7387. weight: math.unit(1200, "lb"),
  7388. name: "Sitting",
  7389. image: {
  7390. source: "./media/characters/teal/sitting.svg",
  7391. extra: 623 / 590,
  7392. bottom: 121 / 744
  7393. }
  7394. },
  7395. standing: {
  7396. height: math.unit(2.75, "meters"),
  7397. weight: math.unit(1200, "lb"),
  7398. name: "Standing",
  7399. image: {
  7400. source: "./media/characters/teal/standing.svg",
  7401. extra: 923 / 893,
  7402. bottom: 60 / 983
  7403. }
  7404. },
  7405. stretching: {
  7406. height: math.unit(3.65, "meters"),
  7407. weight: math.unit(1200, "lb"),
  7408. name: "Stretching",
  7409. image: {
  7410. source: "./media/characters/teal/stretching.svg",
  7411. extra: 1276 / 1244,
  7412. bottom: 0 / 1276
  7413. }
  7414. },
  7415. legged: {
  7416. height: math.unit(1.3, "meters"),
  7417. weight: math.unit(100, "lb"),
  7418. name: "Legged",
  7419. image: {
  7420. source: "./media/characters/teal/legged.svg",
  7421. extra: 462 / 437,
  7422. bottom: 24 / 486
  7423. }
  7424. },
  7425. naga: {
  7426. height: math.unit(5.4, "meters"),
  7427. weight: math.unit(4000, "lb"),
  7428. name: "Naga",
  7429. image: {
  7430. source: "./media/characters/teal/naga.svg",
  7431. extra: 1902 / 1858,
  7432. bottom: 0 / 1902
  7433. }
  7434. },
  7435. hand: {
  7436. height: math.unit(0.52, "meters"),
  7437. name: "Hand",
  7438. image: {
  7439. source: "./media/characters/teal/hand.svg"
  7440. }
  7441. },
  7442. maw: {
  7443. height: math.unit(0.43, "meters"),
  7444. name: "Maw",
  7445. image: {
  7446. source: "./media/characters/teal/maw.svg"
  7447. }
  7448. },
  7449. slit: {
  7450. height: math.unit(0.25, "meters"),
  7451. name: "Slit",
  7452. image: {
  7453. source: "./media/characters/teal/slit.svg"
  7454. }
  7455. },
  7456. },
  7457. [
  7458. {
  7459. name: "Normal",
  7460. height: math.unit(2.75, "meters"),
  7461. default: true
  7462. },
  7463. {
  7464. name: "Macro",
  7465. height: math.unit(300, "feet")
  7466. },
  7467. {
  7468. name: "Macro+",
  7469. height: math.unit(2000, "feet")
  7470. },
  7471. ]
  7472. ))
  7473. characterMakers.push(() => makeCharacter(
  7474. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7475. {
  7476. frontCat: {
  7477. height: math.unit(6, "feet"),
  7478. weight: math.unit(180, "lbs"),
  7479. name: "Front (Cat)",
  7480. image: {
  7481. source: "./media/characters/ravin-amulet/front-cat.svg"
  7482. }
  7483. },
  7484. frontCatAlt: {
  7485. height: math.unit(6, "feet"),
  7486. weight: math.unit(180, "lbs"),
  7487. name: "Front (Alt, Cat)",
  7488. image: {
  7489. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7490. }
  7491. },
  7492. frontWerewolf: {
  7493. height: math.unit(6 * 1.2, "feet"),
  7494. weight: math.unit(225, "lbs"),
  7495. name: "Front (Werewolf)",
  7496. image: {
  7497. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7498. }
  7499. },
  7500. backWerewolf: {
  7501. height: math.unit(6 * 1.2, "feet"),
  7502. weight: math.unit(225, "lbs"),
  7503. name: "Back (Werewolf)",
  7504. image: {
  7505. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7506. }
  7507. },
  7508. },
  7509. [
  7510. {
  7511. name: "Nano",
  7512. height: math.unit(1, "micrometer")
  7513. },
  7514. {
  7515. name: "Micro",
  7516. height: math.unit(1, "inch")
  7517. },
  7518. {
  7519. name: "Normal",
  7520. height: math.unit(6, "feet"),
  7521. default: true
  7522. },
  7523. {
  7524. name: "Macro",
  7525. height: math.unit(60, "feet")
  7526. }
  7527. ]
  7528. ))
  7529. characterMakers.push(() => makeCharacter(
  7530. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7531. {
  7532. front: {
  7533. height: math.unit(6, "feet"),
  7534. weight: math.unit(165, "lbs"),
  7535. name: "Front",
  7536. image: {
  7537. source: "./media/characters/fluoresce/front.svg"
  7538. }
  7539. }
  7540. },
  7541. [
  7542. {
  7543. name: "Micro",
  7544. height: math.unit(6, "cm")
  7545. },
  7546. {
  7547. name: "Normal",
  7548. height: math.unit(5 + 7 / 12, "feet"),
  7549. default: true
  7550. },
  7551. {
  7552. name: "Macro",
  7553. height: math.unit(56, "feet")
  7554. },
  7555. {
  7556. name: "Megamacro",
  7557. height: math.unit(1.9, "miles")
  7558. },
  7559. ]
  7560. ))
  7561. characterMakers.push(() => makeCharacter(
  7562. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7563. {
  7564. front: {
  7565. height: math.unit(9 + 6 / 12, "feet"),
  7566. weight: math.unit(523, "lbs"),
  7567. name: "Side",
  7568. image: {
  7569. source: "./media/characters/aurora/side.svg"
  7570. }
  7571. }
  7572. },
  7573. [
  7574. {
  7575. name: "Normal",
  7576. height: math.unit(9 + 6 / 12, "feet")
  7577. },
  7578. {
  7579. name: "Macro",
  7580. height: math.unit(96, "feet"),
  7581. default: true
  7582. },
  7583. {
  7584. name: "Macro+",
  7585. height: math.unit(243, "feet")
  7586. },
  7587. ]
  7588. ))
  7589. characterMakers.push(() => makeCharacter(
  7590. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7591. {
  7592. front: {
  7593. height: math.unit(194, "cm"),
  7594. weight: math.unit(90, "kg"),
  7595. name: "Front",
  7596. image: {
  7597. source: "./media/characters/ranek/front.svg"
  7598. }
  7599. },
  7600. side: {
  7601. height: math.unit(194, "cm"),
  7602. weight: math.unit(90, "kg"),
  7603. name: "Side",
  7604. image: {
  7605. source: "./media/characters/ranek/side.svg"
  7606. }
  7607. },
  7608. back: {
  7609. height: math.unit(194, "cm"),
  7610. weight: math.unit(90, "kg"),
  7611. name: "Back",
  7612. image: {
  7613. source: "./media/characters/ranek/back.svg"
  7614. }
  7615. },
  7616. feral: {
  7617. height: math.unit(30, "cm"),
  7618. weight: math.unit(1.6, "lbs"),
  7619. name: "Feral",
  7620. image: {
  7621. source: "./media/characters/ranek/feral.svg"
  7622. }
  7623. },
  7624. },
  7625. [
  7626. {
  7627. name: "Normal",
  7628. height: math.unit(194, "cm"),
  7629. default: true
  7630. },
  7631. {
  7632. name: "Macro",
  7633. height: math.unit(100, "meters")
  7634. },
  7635. ]
  7636. ))
  7637. characterMakers.push(() => makeCharacter(
  7638. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7639. {
  7640. front: {
  7641. height: math.unit(5 + 6 / 12, "feet"),
  7642. weight: math.unit(153, "lbs"),
  7643. name: "Front",
  7644. image: {
  7645. source: "./media/characters/andrew-cooper/front.svg"
  7646. }
  7647. },
  7648. },
  7649. [
  7650. {
  7651. name: "Nano",
  7652. height: math.unit(1, "mm")
  7653. },
  7654. {
  7655. name: "Micro",
  7656. height: math.unit(2, "inches")
  7657. },
  7658. {
  7659. name: "Normal",
  7660. height: math.unit(5 + 6 / 12, "feet"),
  7661. default: true
  7662. }
  7663. ]
  7664. ))
  7665. characterMakers.push(() => makeCharacter(
  7666. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7667. {
  7668. front: {
  7669. height: math.unit(6, "feet"),
  7670. weight: math.unit(180, "lbs"),
  7671. name: "Front",
  7672. image: {
  7673. source: "./media/characters/akane-sato/front.svg",
  7674. extra: 1219 / 1140
  7675. }
  7676. },
  7677. back: {
  7678. height: math.unit(6, "feet"),
  7679. weight: math.unit(180, "lbs"),
  7680. name: "Back",
  7681. image: {
  7682. source: "./media/characters/akane-sato/back.svg",
  7683. extra: 1219 / 1170
  7684. }
  7685. },
  7686. },
  7687. [
  7688. {
  7689. name: "Normal",
  7690. height: math.unit(2.5, "meters")
  7691. },
  7692. {
  7693. name: "Macro",
  7694. height: math.unit(250, "meters"),
  7695. default: true
  7696. },
  7697. {
  7698. name: "Megamacro",
  7699. height: math.unit(25, "km")
  7700. },
  7701. ]
  7702. ))
  7703. characterMakers.push(() => makeCharacter(
  7704. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7705. {
  7706. front: {
  7707. height: math.unit(6, "feet"),
  7708. weight: math.unit(65, "kg"),
  7709. name: "Front",
  7710. image: {
  7711. source: "./media/characters/rook/front.svg",
  7712. extra: 960 / 950
  7713. }
  7714. }
  7715. },
  7716. [
  7717. {
  7718. name: "Normal",
  7719. height: math.unit(8.8, "feet")
  7720. },
  7721. {
  7722. name: "Macro",
  7723. height: math.unit(88, "feet"),
  7724. default: true
  7725. },
  7726. {
  7727. name: "Megamacro",
  7728. height: math.unit(8, "miles")
  7729. },
  7730. ]
  7731. ))
  7732. characterMakers.push(() => makeCharacter(
  7733. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7734. {
  7735. front: {
  7736. height: math.unit(12 + 2 / 12, "feet"),
  7737. weight: math.unit(808, "lbs"),
  7738. name: "Front",
  7739. image: {
  7740. source: "./media/characters/prodigy/front.svg"
  7741. }
  7742. }
  7743. },
  7744. [
  7745. {
  7746. name: "Normal",
  7747. height: math.unit(12 + 2 / 12, "feet"),
  7748. default: true
  7749. },
  7750. {
  7751. name: "Macro",
  7752. height: math.unit(143, "feet")
  7753. },
  7754. {
  7755. name: "Macro+",
  7756. height: math.unit(400, "feet")
  7757. },
  7758. ]
  7759. ))
  7760. characterMakers.push(() => makeCharacter(
  7761. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7762. {
  7763. front: {
  7764. height: math.unit(6, "feet"),
  7765. weight: math.unit(225, "lbs"),
  7766. name: "Front",
  7767. image: {
  7768. source: "./media/characters/daniel/front.svg"
  7769. }
  7770. },
  7771. leaning: {
  7772. height: math.unit(6, "feet"),
  7773. weight: math.unit(225, "lbs"),
  7774. name: "Leaning",
  7775. image: {
  7776. source: "./media/characters/daniel/leaning.svg"
  7777. }
  7778. },
  7779. },
  7780. [
  7781. {
  7782. name: "Macro",
  7783. height: math.unit(1000, "feet"),
  7784. default: true
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7790. {
  7791. front: {
  7792. height: math.unit(6, "feet"),
  7793. weight: math.unit(88, "lbs"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/chiros/front.svg",
  7797. extra: 306 / 226
  7798. }
  7799. },
  7800. side: {
  7801. height: math.unit(6, "feet"),
  7802. weight: math.unit(88, "lbs"),
  7803. name: "Side",
  7804. image: {
  7805. source: "./media/characters/chiros/side.svg",
  7806. extra: 306 / 226
  7807. }
  7808. },
  7809. },
  7810. [
  7811. {
  7812. name: "Normal",
  7813. height: math.unit(6, "cm"),
  7814. default: true
  7815. },
  7816. ]
  7817. ))
  7818. characterMakers.push(() => makeCharacter(
  7819. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7820. {
  7821. front: {
  7822. height: math.unit(6, "feet"),
  7823. weight: math.unit(100, "lbs"),
  7824. name: "Front",
  7825. image: {
  7826. source: "./media/characters/selka/front.svg",
  7827. extra: 947 / 887
  7828. }
  7829. }
  7830. },
  7831. [
  7832. {
  7833. name: "Normal",
  7834. height: math.unit(5, "cm"),
  7835. default: true
  7836. },
  7837. ]
  7838. ))
  7839. characterMakers.push(() => makeCharacter(
  7840. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7841. {
  7842. front: {
  7843. height: math.unit(8 + 3 / 12, "feet"),
  7844. weight: math.unit(424, "lbs"),
  7845. name: "Front",
  7846. image: {
  7847. source: "./media/characters/verin/front.svg",
  7848. extra: 1845 / 1550
  7849. }
  7850. },
  7851. frontArmored: {
  7852. height: math.unit(8 + 3 / 12, "feet"),
  7853. weight: math.unit(424, "lbs"),
  7854. name: "Front (Armored)",
  7855. image: {
  7856. source: "./media/characters/verin/front-armor.svg",
  7857. extra: 1845 / 1550,
  7858. bottom: 0.01
  7859. }
  7860. },
  7861. back: {
  7862. height: math.unit(8 + 3 / 12, "feet"),
  7863. weight: math.unit(424, "lbs"),
  7864. name: "Back",
  7865. image: {
  7866. source: "./media/characters/verin/back.svg",
  7867. bottom: 0.1,
  7868. extra: 1
  7869. }
  7870. },
  7871. foot: {
  7872. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7873. name: "Foot",
  7874. image: {
  7875. source: "./media/characters/verin/foot.svg"
  7876. }
  7877. },
  7878. },
  7879. [
  7880. {
  7881. name: "Normal",
  7882. height: math.unit(8 + 3 / 12, "feet")
  7883. },
  7884. {
  7885. name: "Minimacro",
  7886. height: math.unit(21, "feet"),
  7887. default: true
  7888. },
  7889. {
  7890. name: "Macro",
  7891. height: math.unit(626, "feet")
  7892. },
  7893. ]
  7894. ))
  7895. characterMakers.push(() => makeCharacter(
  7896. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7897. {
  7898. front: {
  7899. height: math.unit(2.718, "meters"),
  7900. weight: math.unit(150, "lbs"),
  7901. name: "Front",
  7902. image: {
  7903. source: "./media/characters/sovrim-terraquian/front.svg"
  7904. }
  7905. },
  7906. back: {
  7907. height: math.unit(2.718, "meters"),
  7908. weight: math.unit(150, "lbs"),
  7909. name: "Back",
  7910. image: {
  7911. source: "./media/characters/sovrim-terraquian/back.svg"
  7912. }
  7913. }
  7914. },
  7915. [
  7916. {
  7917. name: "Micro",
  7918. height: math.unit(2, "inches")
  7919. },
  7920. {
  7921. name: "Small",
  7922. height: math.unit(1, "meter")
  7923. },
  7924. {
  7925. name: "Normal",
  7926. height: math.unit(Math.E, "meters"),
  7927. default: true
  7928. },
  7929. {
  7930. name: "Macro",
  7931. height: math.unit(20, "meters")
  7932. },
  7933. {
  7934. name: "Macro+",
  7935. height: math.unit(400, "meters")
  7936. },
  7937. ]
  7938. ))
  7939. characterMakers.push(() => makeCharacter(
  7940. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7941. {
  7942. front: {
  7943. height: math.unit(7, "feet"),
  7944. weight: math.unit(489, "lbs"),
  7945. name: "Front",
  7946. image: {
  7947. source: "./media/characters/reece-silvermane/front.svg",
  7948. bottom: 0.02,
  7949. extra: 1
  7950. }
  7951. },
  7952. },
  7953. [
  7954. {
  7955. name: "Macro",
  7956. height: math.unit(1.5, "miles"),
  7957. default: true
  7958. },
  7959. ]
  7960. ))
  7961. characterMakers.push(() => makeCharacter(
  7962. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7963. {
  7964. front: {
  7965. height: math.unit(6, "feet"),
  7966. weight: math.unit(78, "kg"),
  7967. name: "Front",
  7968. image: {
  7969. source: "./media/characters/kane/front.svg",
  7970. extra: 978 / 899
  7971. }
  7972. },
  7973. },
  7974. [
  7975. {
  7976. name: "Normal",
  7977. height: math.unit(2.1, "m"),
  7978. },
  7979. {
  7980. name: "Macro",
  7981. height: math.unit(1, "km"),
  7982. default: true
  7983. },
  7984. ]
  7985. ))
  7986. characterMakers.push(() => makeCharacter(
  7987. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7988. {
  7989. front: {
  7990. height: math.unit(6, "feet"),
  7991. weight: math.unit(200, "kg"),
  7992. name: "Front",
  7993. image: {
  7994. source: "./media/characters/tegon/front.svg",
  7995. bottom: 0.01,
  7996. extra: 1
  7997. }
  7998. },
  7999. },
  8000. [
  8001. {
  8002. name: "Micro",
  8003. height: math.unit(1, "inch")
  8004. },
  8005. {
  8006. name: "Normal",
  8007. height: math.unit(6 + 3 / 12, "feet"),
  8008. default: true
  8009. },
  8010. {
  8011. name: "Macro",
  8012. height: math.unit(300, "feet")
  8013. },
  8014. {
  8015. name: "Megamacro",
  8016. height: math.unit(69, "miles")
  8017. },
  8018. ]
  8019. ))
  8020. characterMakers.push(() => makeCharacter(
  8021. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8022. {
  8023. side: {
  8024. height: math.unit(6, "feet"),
  8025. weight: math.unit(2304, "lbs"),
  8026. name: "Side",
  8027. image: {
  8028. source: "./media/characters/arcturax/side.svg",
  8029. extra: 790 / 376,
  8030. bottom: 0.01
  8031. }
  8032. },
  8033. },
  8034. [
  8035. {
  8036. name: "Micro",
  8037. height: math.unit(2, "inch")
  8038. },
  8039. {
  8040. name: "Normal",
  8041. height: math.unit(6, "feet")
  8042. },
  8043. {
  8044. name: "Macro",
  8045. height: math.unit(39, "feet"),
  8046. default: true
  8047. },
  8048. {
  8049. name: "Megamacro",
  8050. height: math.unit(7, "miles")
  8051. },
  8052. ]
  8053. ))
  8054. characterMakers.push(() => makeCharacter(
  8055. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8056. {
  8057. front: {
  8058. height: math.unit(6, "feet"),
  8059. weight: math.unit(50, "lbs"),
  8060. name: "Front",
  8061. image: {
  8062. source: "./media/characters/sentri/front.svg",
  8063. extra: 1750 / 1570,
  8064. bottom: 0.025
  8065. }
  8066. },
  8067. frontAlt: {
  8068. height: math.unit(6, "feet"),
  8069. weight: math.unit(50, "lbs"),
  8070. name: "Front (Alt)",
  8071. image: {
  8072. source: "./media/characters/sentri/front-alt.svg",
  8073. extra: 1750 / 1570,
  8074. bottom: 0.025
  8075. }
  8076. },
  8077. },
  8078. [
  8079. {
  8080. name: "Normal",
  8081. height: math.unit(15, "feet"),
  8082. default: true
  8083. },
  8084. {
  8085. name: "Macro",
  8086. height: math.unit(2500, "feet")
  8087. }
  8088. ]
  8089. ))
  8090. characterMakers.push(() => makeCharacter(
  8091. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8092. {
  8093. front: {
  8094. height: math.unit(5 + 8 / 12, "feet"),
  8095. weight: math.unit(130, "lbs"),
  8096. name: "Front",
  8097. image: {
  8098. source: "./media/characters/corvin/front.svg",
  8099. extra: 1803 / 1629
  8100. }
  8101. },
  8102. frontShirt: {
  8103. height: math.unit(5 + 8 / 12, "feet"),
  8104. weight: math.unit(130, "lbs"),
  8105. name: "Front (Shirt)",
  8106. image: {
  8107. source: "./media/characters/corvin/front-shirt.svg",
  8108. extra: 1803 / 1629
  8109. }
  8110. },
  8111. frontPoncho: {
  8112. height: math.unit(5 + 8 / 12, "feet"),
  8113. weight: math.unit(130, "lbs"),
  8114. name: "Front (Poncho)",
  8115. image: {
  8116. source: "./media/characters/corvin/front-poncho.svg",
  8117. extra: 1803 / 1629
  8118. }
  8119. },
  8120. side: {
  8121. height: math.unit(5 + 8 / 12, "feet"),
  8122. weight: math.unit(130, "lbs"),
  8123. name: "Side",
  8124. image: {
  8125. source: "./media/characters/corvin/side.svg",
  8126. extra: 1012 / 945
  8127. }
  8128. },
  8129. back: {
  8130. height: math.unit(5 + 8 / 12, "feet"),
  8131. weight: math.unit(130, "lbs"),
  8132. name: "Back",
  8133. image: {
  8134. source: "./media/characters/corvin/back.svg",
  8135. extra: 1803 / 1629
  8136. }
  8137. },
  8138. },
  8139. [
  8140. {
  8141. name: "Micro",
  8142. height: math.unit(3, "inches")
  8143. },
  8144. {
  8145. name: "Normal",
  8146. height: math.unit(5 + 8 / 12, "feet")
  8147. },
  8148. {
  8149. name: "Macro",
  8150. height: math.unit(300, "feet"),
  8151. default: true
  8152. },
  8153. {
  8154. name: "Megamacro",
  8155. height: math.unit(500, "miles")
  8156. }
  8157. ]
  8158. ))
  8159. characterMakers.push(() => makeCharacter(
  8160. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8161. {
  8162. front: {
  8163. height: math.unit(6, "feet"),
  8164. weight: math.unit(135, "lbs"),
  8165. name: "Front",
  8166. image: {
  8167. source: "./media/characters/q/front.svg",
  8168. extra: 854 / 752,
  8169. bottom: 0.005
  8170. }
  8171. },
  8172. back: {
  8173. height: math.unit(6, "feet"),
  8174. weight: math.unit(130, "lbs"),
  8175. name: "Back",
  8176. image: {
  8177. source: "./media/characters/q/back.svg",
  8178. extra: 854 / 752
  8179. }
  8180. },
  8181. },
  8182. [
  8183. {
  8184. name: "Macro",
  8185. height: math.unit(90, "feet"),
  8186. default: true
  8187. },
  8188. {
  8189. name: "Extra Macro",
  8190. height: math.unit(300, "feet"),
  8191. },
  8192. {
  8193. name: "BIG WALF",
  8194. height: math.unit(750, "feet"),
  8195. },
  8196. ]
  8197. ))
  8198. characterMakers.push(() => makeCharacter(
  8199. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8200. {
  8201. front: {
  8202. height: math.unit(6, "feet"),
  8203. weight: math.unit(150, "lbs"),
  8204. name: "Front",
  8205. image: {
  8206. source: "./media/characters/carley/front.svg",
  8207. extra: 3927 / 3540,
  8208. bottom: 29.2 / 735
  8209. }
  8210. }
  8211. },
  8212. [
  8213. {
  8214. name: "Normal",
  8215. height: math.unit(6 + 3 / 12, "feet")
  8216. },
  8217. {
  8218. name: "Macro",
  8219. height: math.unit(185, "feet"),
  8220. default: true
  8221. },
  8222. {
  8223. name: "Megamacro",
  8224. height: math.unit(8, "miles"),
  8225. },
  8226. ]
  8227. ))
  8228. characterMakers.push(() => makeCharacter(
  8229. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8230. {
  8231. front: {
  8232. height: math.unit(3, "feet"),
  8233. weight: math.unit(28, "lbs"),
  8234. name: "Front",
  8235. image: {
  8236. source: "./media/characters/citrine/front.svg"
  8237. }
  8238. }
  8239. },
  8240. [
  8241. {
  8242. name: "Normal",
  8243. height: math.unit(3, "feet"),
  8244. default: true
  8245. }
  8246. ]
  8247. ))
  8248. characterMakers.push(() => makeCharacter(
  8249. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8250. {
  8251. front: {
  8252. height: math.unit(14, "feet"),
  8253. weight: math.unit(1450, "kg"),
  8254. capacity: math.unit(15, "people"),
  8255. name: "Front",
  8256. image: {
  8257. source: "./media/characters/aura-starwind/front.svg",
  8258. extra: 1440/1327,
  8259. bottom: 11/1451
  8260. }
  8261. },
  8262. side: {
  8263. height: math.unit(14, "feet"),
  8264. weight: math.unit(1450, "kg"),
  8265. capacity: math.unit(15, "people"),
  8266. name: "Side",
  8267. image: {
  8268. source: "./media/characters/aura-starwind/side.svg",
  8269. extra: 1654 / 1497
  8270. }
  8271. },
  8272. taur: {
  8273. height: math.unit(18, "feet"),
  8274. weight: math.unit(5500, "kg"),
  8275. capacity: math.unit(50, "people"),
  8276. name: "Taur",
  8277. image: {
  8278. source: "./media/characters/aura-starwind/taur.svg",
  8279. extra: 1760 / 1650
  8280. }
  8281. },
  8282. feral: {
  8283. height: math.unit(46, "feet"),
  8284. weight: math.unit(25000, "kg"),
  8285. capacity: math.unit(120, "people"),
  8286. name: "Feral",
  8287. image: {
  8288. source: "./media/characters/aura-starwind/feral.svg"
  8289. }
  8290. },
  8291. },
  8292. [
  8293. {
  8294. name: "Normal",
  8295. height: math.unit(14, "feet"),
  8296. default: true
  8297. },
  8298. {
  8299. name: "Macro",
  8300. height: math.unit(50, "meters")
  8301. },
  8302. {
  8303. name: "Megamacro",
  8304. height: math.unit(5000, "meters")
  8305. },
  8306. {
  8307. name: "Gigamacro",
  8308. height: math.unit(100000, "kilometers")
  8309. },
  8310. ]
  8311. ))
  8312. characterMakers.push(() => makeCharacter(
  8313. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8314. {
  8315. front: {
  8316. height: math.unit(2 + 7 / 12, "feet"),
  8317. weight: math.unit(32, "lbs"),
  8318. name: "Front",
  8319. image: {
  8320. source: "./media/characters/rivet/front.svg",
  8321. extra: 1716 / 1658,
  8322. bottom: 0.03
  8323. }
  8324. },
  8325. foot: {
  8326. height: math.unit(0.551, "feet"),
  8327. name: "Rivet's Foot",
  8328. image: {
  8329. source: "./media/characters/rivet/foot.svg"
  8330. },
  8331. rename: true
  8332. }
  8333. },
  8334. [
  8335. {
  8336. name: "Micro",
  8337. height: math.unit(1.5, "inches"),
  8338. },
  8339. {
  8340. name: "Normal",
  8341. height: math.unit(2 + 7 / 12, "feet"),
  8342. default: true
  8343. },
  8344. {
  8345. name: "Macro",
  8346. height: math.unit(85, "feet")
  8347. },
  8348. {
  8349. name: "Megamacro",
  8350. height: math.unit(2.2, "km")
  8351. }
  8352. ]
  8353. ))
  8354. characterMakers.push(() => makeCharacter(
  8355. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8356. {
  8357. front: {
  8358. height: math.unit(5 + 9 / 12, "feet"),
  8359. weight: math.unit(150, "lbs"),
  8360. name: "Front",
  8361. image: {
  8362. source: "./media/characters/coffee/front.svg",
  8363. extra: 3666 / 3032,
  8364. bottom: 0.04
  8365. }
  8366. },
  8367. foot: {
  8368. height: math.unit(1.29, "feet"),
  8369. name: "Foot",
  8370. image: {
  8371. source: "./media/characters/coffee/foot.svg"
  8372. }
  8373. },
  8374. },
  8375. [
  8376. {
  8377. name: "Micro",
  8378. height: math.unit(2, "inches"),
  8379. },
  8380. {
  8381. name: "Normal",
  8382. height: math.unit(5 + 9 / 12, "feet"),
  8383. default: true
  8384. },
  8385. {
  8386. name: "Macro",
  8387. height: math.unit(800, "feet")
  8388. },
  8389. {
  8390. name: "Megamacro",
  8391. height: math.unit(25, "miles")
  8392. }
  8393. ]
  8394. ))
  8395. characterMakers.push(() => makeCharacter(
  8396. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8397. {
  8398. front: {
  8399. height: math.unit(6, "feet"),
  8400. weight: math.unit(200, "lbs"),
  8401. name: "Front",
  8402. image: {
  8403. source: "./media/characters/chari-gal/front.svg",
  8404. extra: 1568 / 1385,
  8405. bottom: 0.047
  8406. }
  8407. },
  8408. gigantamax: {
  8409. height: math.unit(6 * 16, "feet"),
  8410. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8411. name: "Gigantamax",
  8412. image: {
  8413. source: "./media/characters/chari-gal/gigantamax.svg",
  8414. extra: 1124 / 888,
  8415. bottom: 0.03
  8416. }
  8417. },
  8418. },
  8419. [
  8420. {
  8421. name: "Normal",
  8422. height: math.unit(5 + 7 / 12, "feet")
  8423. },
  8424. {
  8425. name: "Macro",
  8426. height: math.unit(200, "feet"),
  8427. default: true
  8428. }
  8429. ]
  8430. ))
  8431. characterMakers.push(() => makeCharacter(
  8432. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8433. {
  8434. front: {
  8435. height: math.unit(6, "feet"),
  8436. weight: math.unit(150, "lbs"),
  8437. name: "Front",
  8438. image: {
  8439. source: "./media/characters/nova/front.svg",
  8440. extra: 5000 / 4722,
  8441. bottom: 0.02
  8442. }
  8443. }
  8444. },
  8445. [
  8446. {
  8447. name: "Micro-",
  8448. height: math.unit(0.8, "inches")
  8449. },
  8450. {
  8451. name: "Micro",
  8452. height: math.unit(2, "inches"),
  8453. default: true
  8454. },
  8455. ]
  8456. ))
  8457. characterMakers.push(() => makeCharacter(
  8458. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8459. {
  8460. front: {
  8461. height: math.unit(3 + 1 / 12, "feet"),
  8462. weight: math.unit(21.7, "lbs"),
  8463. name: "Front",
  8464. image: {
  8465. source: "./media/characters/argent/front.svg",
  8466. extra: 1471 / 1331,
  8467. bottom: 100.8 / 1575.5
  8468. }
  8469. }
  8470. },
  8471. [
  8472. {
  8473. name: "Micro",
  8474. height: math.unit(2, "inches")
  8475. },
  8476. {
  8477. name: "Normal",
  8478. height: math.unit(3 + 1 / 12, "feet"),
  8479. default: true
  8480. },
  8481. {
  8482. name: "Macro",
  8483. height: math.unit(120, "feet")
  8484. },
  8485. ]
  8486. ))
  8487. characterMakers.push(() => makeCharacter(
  8488. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8489. {
  8490. lamp: {
  8491. height: math.unit(7 * 1559 / 989, "feet"),
  8492. name: "Magic Lamp",
  8493. image: {
  8494. source: "./media/characters/mira-al-cul/lamp.svg",
  8495. extra: 1617 / 1559
  8496. }
  8497. },
  8498. front: {
  8499. height: math.unit(7, "feet"),
  8500. name: "Front",
  8501. image: {
  8502. source: "./media/characters/mira-al-cul/front.svg",
  8503. extra: 1044 / 990
  8504. }
  8505. },
  8506. },
  8507. [
  8508. {
  8509. name: "Heavily Restricted",
  8510. height: math.unit(7 * 1559 / 989, "feet")
  8511. },
  8512. {
  8513. name: "Freshly Freed",
  8514. height: math.unit(50 * 1559 / 989, "feet")
  8515. },
  8516. {
  8517. name: "World Encompassing",
  8518. height: math.unit(10000 * 1559 / 989, "miles")
  8519. },
  8520. {
  8521. name: "Galactic",
  8522. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8523. },
  8524. {
  8525. name: "Palmed Universe",
  8526. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8527. default: true
  8528. },
  8529. {
  8530. name: "Multiversal Matriarch",
  8531. height: math.unit(8.87e10, "yottameters")
  8532. },
  8533. {
  8534. name: "Void Mother",
  8535. height: math.unit(3.14e110, "yottaparsecs")
  8536. },
  8537. {
  8538. name: "Toying with Transcendence",
  8539. height: math.unit(1e307, "meters")
  8540. },
  8541. ]
  8542. ))
  8543. characterMakers.push(() => makeCharacter(
  8544. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8545. {
  8546. front: {
  8547. height: math.unit(17 + 1 / 12, "feet"),
  8548. weight: math.unit(476.2 * 5, "lbs"),
  8549. name: "Front",
  8550. image: {
  8551. source: "./media/characters/kuro-shi-uchū/front.svg",
  8552. extra: 2329 / 1835,
  8553. bottom: 0.02
  8554. }
  8555. },
  8556. },
  8557. [
  8558. {
  8559. name: "Micro",
  8560. height: math.unit(2, "inches")
  8561. },
  8562. {
  8563. name: "Normal",
  8564. height: math.unit(12, "meters")
  8565. },
  8566. {
  8567. name: "Planetary",
  8568. height: math.unit(0.00929, "AU"),
  8569. default: true
  8570. },
  8571. {
  8572. name: "Universal",
  8573. height: math.unit(20, "gigaparsecs")
  8574. },
  8575. ]
  8576. ))
  8577. characterMakers.push(() => makeCharacter(
  8578. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8579. {
  8580. front: {
  8581. height: math.unit(5 + 2 / 12, "feet"),
  8582. weight: math.unit(120, "lbs"),
  8583. name: "Front",
  8584. image: {
  8585. source: "./media/characters/katherine/front.svg",
  8586. extra: 2075 / 1969
  8587. }
  8588. },
  8589. dress: {
  8590. height: math.unit(5 + 2 / 12, "feet"),
  8591. weight: math.unit(120, "lbs"),
  8592. name: "Dress",
  8593. image: {
  8594. source: "./media/characters/katherine/dress.svg",
  8595. extra: 2258 / 2064
  8596. }
  8597. },
  8598. },
  8599. [
  8600. {
  8601. name: "Micro",
  8602. height: math.unit(1, "inches"),
  8603. default: true
  8604. },
  8605. {
  8606. name: "Normal",
  8607. height: math.unit(5 + 2 / 12, "feet")
  8608. },
  8609. {
  8610. name: "Macro",
  8611. height: math.unit(100, "meters")
  8612. },
  8613. {
  8614. name: "Megamacro",
  8615. height: math.unit(80, "miles")
  8616. },
  8617. ]
  8618. ))
  8619. characterMakers.push(() => makeCharacter(
  8620. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8621. {
  8622. front: {
  8623. height: math.unit(7 + 8 / 12, "feet"),
  8624. weight: math.unit(250, "lbs"),
  8625. name: "Front",
  8626. image: {
  8627. source: "./media/characters/yevis/front.svg",
  8628. extra: 1938 / 1755
  8629. }
  8630. }
  8631. },
  8632. [
  8633. {
  8634. name: "Mortal",
  8635. height: math.unit(7 + 8 / 12, "feet")
  8636. },
  8637. {
  8638. name: "Battle",
  8639. height: math.unit(25 + 11 / 12, "feet")
  8640. },
  8641. {
  8642. name: "Wrath",
  8643. height: math.unit(1654 + 11 / 12, "feet")
  8644. },
  8645. {
  8646. name: "Planet Destroyer",
  8647. height: math.unit(12000, "miles")
  8648. },
  8649. {
  8650. name: "Galaxy Conqueror",
  8651. height: math.unit(1.45, "zettameters"),
  8652. default: true
  8653. },
  8654. {
  8655. name: "Universal War",
  8656. height: math.unit(184, "gigaparsecs")
  8657. },
  8658. {
  8659. name: "Eternity War",
  8660. height: math.unit(1.98e55, "yottaparsecs")
  8661. },
  8662. ]
  8663. ))
  8664. characterMakers.push(() => makeCharacter(
  8665. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8666. {
  8667. front: {
  8668. height: math.unit(5 + 8 / 12, "feet"),
  8669. weight: math.unit(63, "kg"),
  8670. name: "Front",
  8671. image: {
  8672. source: "./media/characters/xavier/front.svg",
  8673. extra: 944 / 883
  8674. }
  8675. },
  8676. frontStretch: {
  8677. height: math.unit(5 + 8 / 12, "feet"),
  8678. weight: math.unit(63, "kg"),
  8679. name: "Stretching",
  8680. image: {
  8681. source: "./media/characters/xavier/front-stretch.svg",
  8682. extra: 962 / 820
  8683. }
  8684. },
  8685. },
  8686. [
  8687. {
  8688. name: "Normal",
  8689. height: math.unit(5 + 8 / 12, "feet")
  8690. },
  8691. {
  8692. name: "Macro",
  8693. height: math.unit(100, "meters"),
  8694. default: true
  8695. },
  8696. {
  8697. name: "McLargeHuge",
  8698. height: math.unit(10, "miles")
  8699. },
  8700. ]
  8701. ))
  8702. characterMakers.push(() => makeCharacter(
  8703. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8704. {
  8705. front: {
  8706. height: math.unit(5 + 5 / 12, "feet"),
  8707. weight: math.unit(150, "lb"),
  8708. name: "Front",
  8709. image: {
  8710. source: "./media/characters/joshii/front.svg",
  8711. extra: 765 / 653,
  8712. bottom: 51 / 816
  8713. }
  8714. },
  8715. foot: {
  8716. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8717. name: "Foot",
  8718. image: {
  8719. source: "./media/characters/joshii/foot.svg"
  8720. }
  8721. },
  8722. },
  8723. [
  8724. {
  8725. name: "Micro",
  8726. height: math.unit(2, "inches"),
  8727. default: true
  8728. },
  8729. {
  8730. name: "Normal",
  8731. height: math.unit(5 + 5 / 12, "feet")
  8732. },
  8733. {
  8734. name: "Macro",
  8735. height: math.unit(785, "feet")
  8736. },
  8737. {
  8738. name: "Megamacro",
  8739. height: math.unit(24.5, "miles")
  8740. },
  8741. ]
  8742. ))
  8743. characterMakers.push(() => makeCharacter(
  8744. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8745. {
  8746. front: {
  8747. height: math.unit(6, "feet"),
  8748. weight: math.unit(150, "lb"),
  8749. name: "Front",
  8750. image: {
  8751. source: "./media/characters/goddess-elizabeth/front.svg",
  8752. extra: 1800 / 1525,
  8753. bottom: 0.005
  8754. }
  8755. },
  8756. foot: {
  8757. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8758. name: "Foot",
  8759. image: {
  8760. source: "./media/characters/goddess-elizabeth/foot.svg"
  8761. }
  8762. },
  8763. mouth: {
  8764. height: math.unit(6, "feet"),
  8765. name: "Mouth",
  8766. image: {
  8767. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8768. }
  8769. },
  8770. },
  8771. [
  8772. {
  8773. name: "Micro",
  8774. height: math.unit(12, "feet")
  8775. },
  8776. {
  8777. name: "Normal",
  8778. height: math.unit(80, "miles"),
  8779. default: true
  8780. },
  8781. {
  8782. name: "Macro",
  8783. height: math.unit(15000, "parsecs")
  8784. },
  8785. ]
  8786. ))
  8787. characterMakers.push(() => makeCharacter(
  8788. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8789. {
  8790. front: {
  8791. height: math.unit(5 + 9 / 12, "feet"),
  8792. weight: math.unit(144, "lb"),
  8793. name: "Front",
  8794. image: {
  8795. source: "./media/characters/kara/front.svg"
  8796. }
  8797. },
  8798. feet: {
  8799. height: math.unit(6 / 6.765, "feet"),
  8800. name: "Kara's Feet",
  8801. rename: true,
  8802. image: {
  8803. source: "./media/characters/kara/feet.svg"
  8804. }
  8805. },
  8806. },
  8807. [
  8808. {
  8809. name: "Normal",
  8810. height: math.unit(5 + 9 / 12, "feet")
  8811. },
  8812. {
  8813. name: "Macro",
  8814. height: math.unit(174, "feet"),
  8815. default: true
  8816. },
  8817. ]
  8818. ))
  8819. characterMakers.push(() => makeCharacter(
  8820. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8821. {
  8822. front: {
  8823. height: math.unit(18, "feet"),
  8824. weight: math.unit(4050, "lb"),
  8825. name: "Front",
  8826. image: {
  8827. source: "./media/characters/tyrone/front.svg",
  8828. extra: 2405 / 2270,
  8829. bottom: 182 / 2587
  8830. }
  8831. },
  8832. },
  8833. [
  8834. {
  8835. name: "Normal",
  8836. height: math.unit(18, "feet"),
  8837. default: true
  8838. },
  8839. {
  8840. name: "Macro",
  8841. height: math.unit(300, "feet")
  8842. },
  8843. {
  8844. name: "Megamacro",
  8845. height: math.unit(15, "km")
  8846. },
  8847. {
  8848. name: "Gigamacro",
  8849. height: math.unit(500, "km")
  8850. },
  8851. {
  8852. name: "Teramacro",
  8853. height: math.unit(0.5, "gigameters")
  8854. },
  8855. {
  8856. name: "Omnimacro",
  8857. height: math.unit(1e252, "yottauniverse")
  8858. },
  8859. ]
  8860. ))
  8861. characterMakers.push(() => makeCharacter(
  8862. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8863. {
  8864. front: {
  8865. height: math.unit(7 + 8 / 12, "feet"),
  8866. weight: math.unit(120, "lb"),
  8867. name: "Front",
  8868. image: {
  8869. source: "./media/characters/danny/front.svg",
  8870. extra: 1490 / 1350
  8871. }
  8872. },
  8873. back: {
  8874. height: math.unit(7 + 8 / 12, "feet"),
  8875. weight: math.unit(120, "lb"),
  8876. name: "Back",
  8877. image: {
  8878. source: "./media/characters/danny/back.svg",
  8879. extra: 1490 / 1350
  8880. }
  8881. },
  8882. },
  8883. [
  8884. {
  8885. name: "Normal",
  8886. height: math.unit(7 + 8 / 12, "feet"),
  8887. default: true
  8888. },
  8889. ]
  8890. ))
  8891. characterMakers.push(() => makeCharacter(
  8892. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8893. {
  8894. front: {
  8895. height: math.unit(3.5, "inches"),
  8896. weight: math.unit(19, "grams"),
  8897. name: "Front",
  8898. image: {
  8899. source: "./media/characters/mallow/front.svg",
  8900. extra: 471 / 431
  8901. }
  8902. },
  8903. back: {
  8904. height: math.unit(3.5, "inches"),
  8905. weight: math.unit(19, "grams"),
  8906. name: "Back",
  8907. image: {
  8908. source: "./media/characters/mallow/back.svg",
  8909. extra: 471 / 431
  8910. }
  8911. },
  8912. },
  8913. [
  8914. {
  8915. name: "Normal",
  8916. height: math.unit(3.5, "inches"),
  8917. default: true
  8918. },
  8919. ]
  8920. ))
  8921. characterMakers.push(() => makeCharacter(
  8922. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8923. {
  8924. front: {
  8925. height: math.unit(9, "feet"),
  8926. weight: math.unit(230, "kg"),
  8927. name: "Front",
  8928. image: {
  8929. source: "./media/characters/starry-aqua/front.svg"
  8930. }
  8931. },
  8932. back: {
  8933. height: math.unit(9, "feet"),
  8934. weight: math.unit(230, "kg"),
  8935. name: "Back",
  8936. image: {
  8937. source: "./media/characters/starry-aqua/back.svg"
  8938. }
  8939. },
  8940. hand: {
  8941. height: math.unit(9 * 0.1168, "feet"),
  8942. name: "Hand",
  8943. image: {
  8944. source: "./media/characters/starry-aqua/hand.svg"
  8945. }
  8946. },
  8947. foot: {
  8948. height: math.unit(9 * 0.18, "feet"),
  8949. name: "Foot",
  8950. image: {
  8951. source: "./media/characters/starry-aqua/foot.svg"
  8952. }
  8953. }
  8954. },
  8955. [
  8956. {
  8957. name: "Micro",
  8958. height: math.unit(3, "inches")
  8959. },
  8960. {
  8961. name: "Normal",
  8962. height: math.unit(9, "feet")
  8963. },
  8964. {
  8965. name: "Macro",
  8966. height: math.unit(300, "feet"),
  8967. default: true
  8968. },
  8969. {
  8970. name: "Megamacro",
  8971. height: math.unit(3200, "feet")
  8972. }
  8973. ]
  8974. ))
  8975. characterMakers.push(() => makeCharacter(
  8976. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  8977. {
  8978. front: {
  8979. height: math.unit(15, "feet"),
  8980. weight: math.unit(5026, "lb"),
  8981. name: "Front",
  8982. image: {
  8983. source: "./media/characters/luka-towers/front.svg",
  8984. extra: 1269/1133,
  8985. bottom: 51/1320
  8986. }
  8987. },
  8988. },
  8989. [
  8990. {
  8991. name: "Normal",
  8992. height: math.unit(15, "feet"),
  8993. default: true
  8994. },
  8995. {
  8996. name: "Minimacro",
  8997. height: math.unit(25, "feet")
  8998. },
  8999. {
  9000. name: "Macro",
  9001. height: math.unit(320, "feet")
  9002. },
  9003. {
  9004. name: "Megamacro",
  9005. height: math.unit(35000, "feet")
  9006. },
  9007. {
  9008. name: "Gigamacro",
  9009. height: math.unit(4000, "miles")
  9010. },
  9011. {
  9012. name: "Teramacro",
  9013. height: math.unit(15000, "miles")
  9014. },
  9015. ]
  9016. ))
  9017. characterMakers.push(() => makeCharacter(
  9018. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9019. {
  9020. front: {
  9021. height: math.unit(6, "feet"),
  9022. weight: math.unit(150, "lb"),
  9023. name: "Front",
  9024. image: {
  9025. source: "./media/characters/natalie-nightring/front.svg",
  9026. extra: 1,
  9027. bottom: 0.06
  9028. }
  9029. },
  9030. },
  9031. [
  9032. {
  9033. name: "Uh Oh",
  9034. height: math.unit(0.1, "mm")
  9035. },
  9036. {
  9037. name: "Small",
  9038. height: math.unit(3, "inches")
  9039. },
  9040. {
  9041. name: "Human Scale",
  9042. height: math.unit(6, "feet")
  9043. },
  9044. {
  9045. name: "Librarian",
  9046. height: math.unit(50, "feet"),
  9047. default: true
  9048. },
  9049. {
  9050. name: "Immense",
  9051. height: math.unit(200, "miles")
  9052. },
  9053. ]
  9054. ))
  9055. characterMakers.push(() => makeCharacter(
  9056. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9057. {
  9058. front: {
  9059. height: math.unit(6, "feet"),
  9060. weight: math.unit(180, "lbs"),
  9061. name: "Front",
  9062. image: {
  9063. source: "./media/characters/danni-rosie/front.svg",
  9064. extra: 1260 / 1128,
  9065. bottom: 0.022
  9066. }
  9067. },
  9068. },
  9069. [
  9070. {
  9071. name: "Micro",
  9072. height: math.unit(2, "inches"),
  9073. default: true
  9074. },
  9075. ]
  9076. ))
  9077. characterMakers.push(() => makeCharacter(
  9078. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9079. {
  9080. front: {
  9081. height: math.unit(5 + 9 / 12, "feet"),
  9082. weight: math.unit(220, "lb"),
  9083. name: "Front",
  9084. image: {
  9085. source: "./media/characters/samantha-kruse/front.svg",
  9086. extra: (985 / 935),
  9087. bottom: 0.03
  9088. }
  9089. },
  9090. frontUndressed: {
  9091. height: math.unit(5 + 9 / 12, "feet"),
  9092. weight: math.unit(220, "lb"),
  9093. name: "Front (Undressed)",
  9094. image: {
  9095. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9096. extra: (973 / 923),
  9097. bottom: 0.025
  9098. }
  9099. },
  9100. fat: {
  9101. height: math.unit(5 + 9 / 12, "feet"),
  9102. weight: math.unit(900, "lb"),
  9103. name: "Front (Fat)",
  9104. image: {
  9105. source: "./media/characters/samantha-kruse/fat.svg",
  9106. extra: 2688 / 2561
  9107. }
  9108. },
  9109. },
  9110. [
  9111. {
  9112. name: "Normal",
  9113. height: math.unit(5 + 9 / 12, "feet"),
  9114. default: true
  9115. }
  9116. ]
  9117. ))
  9118. characterMakers.push(() => makeCharacter(
  9119. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9120. {
  9121. back: {
  9122. height: math.unit(5 + 4 / 12, "feet"),
  9123. weight: math.unit(4963, "lb"),
  9124. name: "Back",
  9125. image: {
  9126. source: "./media/characters/amelia-rosie/back.svg",
  9127. extra: 1113 / 963,
  9128. bottom: 0.01
  9129. }
  9130. },
  9131. },
  9132. [
  9133. {
  9134. name: "Level 0",
  9135. height: math.unit(5 + 4 / 12, "feet")
  9136. },
  9137. {
  9138. name: "Level 1",
  9139. height: math.unit(164597, "feet"),
  9140. default: true
  9141. },
  9142. {
  9143. name: "Level 2",
  9144. height: math.unit(956243, "miles")
  9145. },
  9146. {
  9147. name: "Level 3",
  9148. height: math.unit(29421709423, "miles")
  9149. },
  9150. {
  9151. name: "Level 4",
  9152. height: math.unit(154, "lightyears")
  9153. },
  9154. {
  9155. name: "Level 5",
  9156. height: math.unit(4738272, "lightyears")
  9157. },
  9158. {
  9159. name: "Level 6",
  9160. height: math.unit(145787152896, "lightyears")
  9161. },
  9162. ]
  9163. ))
  9164. characterMakers.push(() => makeCharacter(
  9165. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9166. {
  9167. front: {
  9168. height: math.unit(5 + 11 / 12, "feet"),
  9169. weight: math.unit(65, "kg"),
  9170. name: "Front",
  9171. image: {
  9172. source: "./media/characters/rook-kitara/front.svg",
  9173. extra: 1347 / 1274,
  9174. bottom: 0.005
  9175. }
  9176. },
  9177. },
  9178. [
  9179. {
  9180. name: "Totally Unfair",
  9181. height: math.unit(1.8, "mm")
  9182. },
  9183. {
  9184. name: "Lap Rookie",
  9185. height: math.unit(1.4, "feet")
  9186. },
  9187. {
  9188. name: "Normal",
  9189. height: math.unit(5 + 11 / 12, "feet"),
  9190. default: true
  9191. },
  9192. {
  9193. name: "How Did This Happen",
  9194. height: math.unit(80, "miles")
  9195. }
  9196. ]
  9197. ))
  9198. characterMakers.push(() => makeCharacter(
  9199. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9200. {
  9201. front: {
  9202. height: math.unit(7, "feet"),
  9203. weight: math.unit(300, "lb"),
  9204. name: "Front",
  9205. image: {
  9206. source: "./media/characters/pisces/front.svg",
  9207. extra: 2255 / 2115,
  9208. bottom: 0.03
  9209. }
  9210. },
  9211. back: {
  9212. height: math.unit(7, "feet"),
  9213. weight: math.unit(300, "lb"),
  9214. name: "Back",
  9215. image: {
  9216. source: "./media/characters/pisces/back.svg",
  9217. extra: 2146 / 2055,
  9218. bottom: 0.04
  9219. }
  9220. },
  9221. },
  9222. [
  9223. {
  9224. name: "Normal",
  9225. height: math.unit(7, "feet"),
  9226. default: true
  9227. },
  9228. {
  9229. name: "Swimming Pool",
  9230. height: math.unit(12.2, "meters")
  9231. },
  9232. {
  9233. name: "Olympic Swimming Pool",
  9234. height: math.unit(56.3, "meters")
  9235. },
  9236. {
  9237. name: "Lake Superior",
  9238. height: math.unit(93900, "meters")
  9239. },
  9240. {
  9241. name: "Mediterranean Sea",
  9242. height: math.unit(644457, "meters")
  9243. },
  9244. {
  9245. name: "World's Oceans",
  9246. height: math.unit(4567491, "meters")
  9247. },
  9248. ]
  9249. ))
  9250. characterMakers.push(() => makeCharacter(
  9251. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9252. {
  9253. front: {
  9254. height: math.unit(2.3, "meters"),
  9255. weight: math.unit(120, "kg"),
  9256. name: "Front",
  9257. image: {
  9258. source: "./media/characters/zelas/front.svg"
  9259. }
  9260. },
  9261. side: {
  9262. height: math.unit(2.3, "meters"),
  9263. weight: math.unit(120, "kg"),
  9264. name: "Side",
  9265. image: {
  9266. source: "./media/characters/zelas/side.svg"
  9267. }
  9268. },
  9269. back: {
  9270. height: math.unit(2.3, "meters"),
  9271. weight: math.unit(120, "kg"),
  9272. name: "Back",
  9273. image: {
  9274. source: "./media/characters/zelas/back.svg"
  9275. }
  9276. },
  9277. foot: {
  9278. height: math.unit(1.116, "feet"),
  9279. name: "Foot",
  9280. image: {
  9281. source: "./media/characters/zelas/foot.svg"
  9282. }
  9283. },
  9284. },
  9285. [
  9286. {
  9287. name: "Normal",
  9288. height: math.unit(2.3, "meters")
  9289. },
  9290. {
  9291. name: "Macro",
  9292. height: math.unit(30, "meters"),
  9293. default: true
  9294. },
  9295. ]
  9296. ))
  9297. characterMakers.push(() => makeCharacter(
  9298. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9299. {
  9300. front: {
  9301. height: math.unit(1, "inch"),
  9302. weight: math.unit(0.21, "grams"),
  9303. name: "Front",
  9304. image: {
  9305. source: "./media/characters/talbot/front.svg",
  9306. extra: 594 / 544
  9307. }
  9308. },
  9309. },
  9310. [
  9311. {
  9312. name: "Micro",
  9313. height: math.unit(1, "inch"),
  9314. default: true
  9315. },
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9320. {
  9321. front: {
  9322. height: math.unit(3 + 3 / 12, "feet"),
  9323. weight: math.unit(51.8, "lb"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/fliss/front.svg",
  9327. extra: 840 / 640
  9328. }
  9329. },
  9330. },
  9331. [
  9332. {
  9333. name: "Teeny Tiny",
  9334. height: math.unit(1, "mm")
  9335. },
  9336. {
  9337. name: "Small",
  9338. height: math.unit(1, "inch"),
  9339. default: true
  9340. },
  9341. {
  9342. name: "Standard Sylveon",
  9343. height: math.unit(3 + 3 / 12, "feet")
  9344. },
  9345. {
  9346. name: "Large Nuisance",
  9347. height: math.unit(33, "feet")
  9348. },
  9349. {
  9350. name: "City Filler",
  9351. height: math.unit(3000, "feet")
  9352. },
  9353. {
  9354. name: "New Horizon",
  9355. height: math.unit(6000, "miles")
  9356. },
  9357. ]
  9358. ))
  9359. characterMakers.push(() => makeCharacter(
  9360. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9361. {
  9362. front: {
  9363. height: math.unit(5, "cm"),
  9364. weight: math.unit(1.94, "g"),
  9365. name: "Front",
  9366. image: {
  9367. source: "./media/characters/fleta/front.svg",
  9368. extra: 835 / 803
  9369. }
  9370. },
  9371. back: {
  9372. height: math.unit(5, "cm"),
  9373. weight: math.unit(1.94, "g"),
  9374. name: "Back",
  9375. image: {
  9376. source: "./media/characters/fleta/back.svg",
  9377. extra: 835 / 803
  9378. }
  9379. },
  9380. },
  9381. [
  9382. {
  9383. name: "Micro",
  9384. height: math.unit(5, "cm"),
  9385. default: true
  9386. },
  9387. ]
  9388. ))
  9389. characterMakers.push(() => makeCharacter(
  9390. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9391. {
  9392. front: {
  9393. height: math.unit(6, "feet"),
  9394. weight: math.unit(225, "lb"),
  9395. name: "Front",
  9396. image: {
  9397. source: "./media/characters/dominic/front.svg",
  9398. extra: 1770 / 1620,
  9399. bottom: 0.025
  9400. }
  9401. },
  9402. back: {
  9403. height: math.unit(6, "feet"),
  9404. weight: math.unit(225, "lb"),
  9405. name: "Back",
  9406. image: {
  9407. source: "./media/characters/dominic/back.svg",
  9408. extra: 1745 / 1620,
  9409. bottom: 0.065
  9410. }
  9411. },
  9412. },
  9413. [
  9414. {
  9415. name: "Nano",
  9416. height: math.unit(0.1, "mm")
  9417. },
  9418. {
  9419. name: "Micro-",
  9420. height: math.unit(1, "mm")
  9421. },
  9422. {
  9423. name: "Micro",
  9424. height: math.unit(4, "inches")
  9425. },
  9426. {
  9427. name: "Normal",
  9428. height: math.unit(6 + 4 / 12, "feet"),
  9429. default: true
  9430. },
  9431. {
  9432. name: "Macro",
  9433. height: math.unit(115, "feet")
  9434. },
  9435. {
  9436. name: "Macro+",
  9437. height: math.unit(955, "feet")
  9438. },
  9439. {
  9440. name: "Megamacro",
  9441. height: math.unit(8990, "feet")
  9442. },
  9443. {
  9444. name: "Gigmacro",
  9445. height: math.unit(9310, "miles")
  9446. },
  9447. {
  9448. name: "Teramacro",
  9449. height: math.unit(1567005010, "miles")
  9450. },
  9451. {
  9452. name: "Examacro",
  9453. height: math.unit(1425, "parsecs")
  9454. },
  9455. ]
  9456. ))
  9457. characterMakers.push(() => makeCharacter(
  9458. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9459. {
  9460. front: {
  9461. height: math.unit(400, "feet"),
  9462. weight: math.unit(44444444, "lb"),
  9463. name: "Front",
  9464. image: {
  9465. source: "./media/characters/major-colonel/front.svg"
  9466. }
  9467. },
  9468. back: {
  9469. height: math.unit(400, "feet"),
  9470. weight: math.unit(44444444, "lb"),
  9471. name: "Back",
  9472. image: {
  9473. source: "./media/characters/major-colonel/back.svg"
  9474. }
  9475. },
  9476. },
  9477. [
  9478. {
  9479. name: "Macro",
  9480. height: math.unit(400, "feet"),
  9481. default: true
  9482. },
  9483. ]
  9484. ))
  9485. characterMakers.push(() => makeCharacter(
  9486. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9487. {
  9488. catFront: {
  9489. height: math.unit(6, "feet"),
  9490. weight: math.unit(120, "lb"),
  9491. name: "Front (Cat Side)",
  9492. image: {
  9493. source: "./media/characters/axel-lycan/cat-front.svg",
  9494. extra: 430 / 402,
  9495. bottom: 43 / 472.35
  9496. }
  9497. },
  9498. catBack: {
  9499. height: math.unit(6, "feet"),
  9500. weight: math.unit(120, "lb"),
  9501. name: "Back (Cat Side)",
  9502. image: {
  9503. source: "./media/characters/axel-lycan/cat-back.svg",
  9504. extra: 447 / 419,
  9505. bottom: 23.3 / 469
  9506. }
  9507. },
  9508. wolfFront: {
  9509. height: math.unit(6, "feet"),
  9510. weight: math.unit(120, "lb"),
  9511. name: "Front (Wolf Side)",
  9512. image: {
  9513. source: "./media/characters/axel-lycan/wolf-front.svg",
  9514. extra: 485 / 456,
  9515. bottom: 19 / 504
  9516. }
  9517. },
  9518. wolfBack: {
  9519. height: math.unit(6, "feet"),
  9520. weight: math.unit(120, "lb"),
  9521. name: "Back (Wolf Side)",
  9522. image: {
  9523. source: "./media/characters/axel-lycan/wolf-back.svg",
  9524. extra: 475 / 438,
  9525. bottom: 39.2 / 514
  9526. }
  9527. },
  9528. },
  9529. [
  9530. {
  9531. name: "Macro",
  9532. height: math.unit(1, "km"),
  9533. default: true
  9534. },
  9535. ]
  9536. ))
  9537. characterMakers.push(() => makeCharacter(
  9538. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9539. {
  9540. front: {
  9541. height: math.unit(5 + 9 / 12, "feet"),
  9542. weight: math.unit(175, "lb"),
  9543. name: "Front",
  9544. image: {
  9545. source: "./media/characters/vanrel-hyena/front.svg",
  9546. extra: 1086 / 1010,
  9547. bottom: 0.04
  9548. }
  9549. },
  9550. },
  9551. [
  9552. {
  9553. name: "Normal",
  9554. height: math.unit(5 + 9 / 12, "feet"),
  9555. default: true
  9556. },
  9557. ]
  9558. ))
  9559. characterMakers.push(() => makeCharacter(
  9560. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9561. {
  9562. front: {
  9563. height: math.unit(6, "feet"),
  9564. weight: math.unit(103, "lb"),
  9565. name: "Front",
  9566. image: {
  9567. source: "./media/characters/abbott-absol/front.svg",
  9568. extra: 2010 / 1842
  9569. }
  9570. },
  9571. },
  9572. [
  9573. {
  9574. name: "Megamicro",
  9575. height: math.unit(0.1, "mm")
  9576. },
  9577. {
  9578. name: "Micro",
  9579. height: math.unit(1, "inch")
  9580. },
  9581. {
  9582. name: "Normal",
  9583. height: math.unit(6, "feet"),
  9584. default: true
  9585. },
  9586. ]
  9587. ))
  9588. characterMakers.push(() => makeCharacter(
  9589. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9590. {
  9591. front: {
  9592. height: math.unit(6, "feet"),
  9593. weight: math.unit(264, "lb"),
  9594. name: "Front",
  9595. image: {
  9596. source: "./media/characters/hector/front.svg",
  9597. extra: 2280 / 2130,
  9598. bottom: 0.07
  9599. }
  9600. },
  9601. },
  9602. [
  9603. {
  9604. name: "Normal",
  9605. height: math.unit(12.25, "foot"),
  9606. default: true
  9607. },
  9608. {
  9609. name: "Macro",
  9610. height: math.unit(160, "feet")
  9611. },
  9612. ]
  9613. ))
  9614. characterMakers.push(() => makeCharacter(
  9615. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9616. {
  9617. front: {
  9618. height: math.unit(6, "feet"),
  9619. weight: math.unit(150, "lb"),
  9620. name: "Front",
  9621. image: {
  9622. source: "./media/characters/sal/front.svg",
  9623. extra: 1846 / 1699,
  9624. bottom: 0.04
  9625. }
  9626. },
  9627. },
  9628. [
  9629. {
  9630. name: "Megamacro",
  9631. height: math.unit(10, "miles"),
  9632. default: true
  9633. },
  9634. ]
  9635. ))
  9636. characterMakers.push(() => makeCharacter(
  9637. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9638. {
  9639. front: {
  9640. height: math.unit(3, "meters"),
  9641. weight: math.unit(450, "kg"),
  9642. name: "front",
  9643. image: {
  9644. source: "./media/characters/ranger/front.svg",
  9645. extra: 2401 / 2243,
  9646. bottom: 0.05
  9647. }
  9648. },
  9649. },
  9650. [
  9651. {
  9652. name: "Normal",
  9653. height: math.unit(3, "meters"),
  9654. default: true
  9655. },
  9656. ]
  9657. ))
  9658. characterMakers.push(() => makeCharacter(
  9659. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9660. {
  9661. front: {
  9662. height: math.unit(14, "feet"),
  9663. weight: math.unit(800, "kg"),
  9664. name: "Front",
  9665. image: {
  9666. source: "./media/characters/theresa/front.svg",
  9667. extra: 3575 / 3346,
  9668. bottom: 0.03
  9669. }
  9670. },
  9671. },
  9672. [
  9673. {
  9674. name: "Normal",
  9675. height: math.unit(14, "feet"),
  9676. default: true
  9677. },
  9678. ]
  9679. ))
  9680. characterMakers.push(() => makeCharacter(
  9681. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9682. {
  9683. front: {
  9684. height: math.unit(6, "feet"),
  9685. weight: math.unit(3, "kg"),
  9686. name: "Front",
  9687. image: {
  9688. source: "./media/characters/ine/front.svg",
  9689. extra: 678 / 539,
  9690. bottom: 0.023
  9691. }
  9692. },
  9693. },
  9694. [
  9695. {
  9696. name: "Normal",
  9697. height: math.unit(2.265, "feet"),
  9698. default: true
  9699. },
  9700. ]
  9701. ))
  9702. characterMakers.push(() => makeCharacter(
  9703. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9704. {
  9705. front: {
  9706. height: math.unit(5, "feet"),
  9707. weight: math.unit(30, "kg"),
  9708. name: "Front",
  9709. image: {
  9710. source: "./media/characters/vial/front.svg",
  9711. extra: 1365 / 1277,
  9712. bottom: 0.04
  9713. }
  9714. },
  9715. },
  9716. [
  9717. {
  9718. name: "Normal",
  9719. height: math.unit(5, "feet"),
  9720. default: true
  9721. },
  9722. ]
  9723. ))
  9724. characterMakers.push(() => makeCharacter(
  9725. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9726. {
  9727. side: {
  9728. height: math.unit(3.4, "meters"),
  9729. weight: math.unit(1000, "lb"),
  9730. name: "Side",
  9731. image: {
  9732. source: "./media/characters/rovoska/side.svg",
  9733. extra: 4403 / 1515
  9734. }
  9735. },
  9736. },
  9737. [
  9738. {
  9739. name: "Normal",
  9740. height: math.unit(3.4, "meters"),
  9741. default: true
  9742. },
  9743. ]
  9744. ))
  9745. characterMakers.push(() => makeCharacter(
  9746. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9747. {
  9748. front: {
  9749. height: math.unit(8, "feet"),
  9750. weight: math.unit(315, "lb"),
  9751. name: "Front",
  9752. image: {
  9753. source: "./media/characters/gunner-rotthbauer/front.svg"
  9754. }
  9755. },
  9756. back: {
  9757. height: math.unit(8, "feet"),
  9758. weight: math.unit(315, "lb"),
  9759. name: "Back",
  9760. image: {
  9761. source: "./media/characters/gunner-rotthbauer/back.svg"
  9762. }
  9763. },
  9764. },
  9765. [
  9766. {
  9767. name: "Micro",
  9768. height: math.unit(3.5, "inches")
  9769. },
  9770. {
  9771. name: "Normal",
  9772. height: math.unit(8, "feet"),
  9773. default: true
  9774. },
  9775. {
  9776. name: "Macro",
  9777. height: math.unit(250, "feet")
  9778. },
  9779. {
  9780. name: "Megamacro",
  9781. height: math.unit(1, "AU")
  9782. },
  9783. ]
  9784. ))
  9785. characterMakers.push(() => makeCharacter(
  9786. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9787. {
  9788. front: {
  9789. height: math.unit(5 + 5 / 12, "feet"),
  9790. weight: math.unit(140, "lb"),
  9791. name: "Front",
  9792. image: {
  9793. source: "./media/characters/allatia/front.svg",
  9794. extra: 1227 / 1180,
  9795. bottom: 0.027
  9796. }
  9797. },
  9798. },
  9799. [
  9800. {
  9801. name: "Normal",
  9802. height: math.unit(5 + 5 / 12, "feet")
  9803. },
  9804. {
  9805. name: "Macro",
  9806. height: math.unit(250, "feet"),
  9807. default: true
  9808. },
  9809. {
  9810. name: "Megamacro",
  9811. height: math.unit(8, "miles")
  9812. }
  9813. ]
  9814. ))
  9815. characterMakers.push(() => makeCharacter(
  9816. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9817. {
  9818. front: {
  9819. height: math.unit(6, "feet"),
  9820. weight: math.unit(120, "lb"),
  9821. name: "Front",
  9822. image: {
  9823. source: "./media/characters/tene/front.svg",
  9824. extra: 1728 / 1578,
  9825. bottom: 0.022
  9826. }
  9827. },
  9828. stomping: {
  9829. height: math.unit(2.025, "meters"),
  9830. weight: math.unit(120, "lb"),
  9831. name: "Stomping",
  9832. image: {
  9833. source: "./media/characters/tene/stomping.svg",
  9834. extra: 938 / 873,
  9835. bottom: 0.01
  9836. }
  9837. },
  9838. sitting: {
  9839. height: math.unit(1, "meter"),
  9840. weight: math.unit(120, "lb"),
  9841. name: "Sitting",
  9842. image: {
  9843. source: "./media/characters/tene/sitting.svg",
  9844. extra: 437 / 415,
  9845. bottom: 0.1
  9846. }
  9847. },
  9848. feral: {
  9849. height: math.unit(3.9, "feet"),
  9850. weight: math.unit(250, "lb"),
  9851. name: "Feral",
  9852. image: {
  9853. source: "./media/characters/tene/feral.svg",
  9854. extra: 717 / 458,
  9855. bottom: 0.179
  9856. }
  9857. },
  9858. },
  9859. [
  9860. {
  9861. name: "Normal",
  9862. height: math.unit(6, "feet")
  9863. },
  9864. {
  9865. name: "Macro",
  9866. height: math.unit(300, "feet"),
  9867. default: true
  9868. },
  9869. {
  9870. name: "Megamacro",
  9871. height: math.unit(5, "miles")
  9872. },
  9873. ]
  9874. ))
  9875. characterMakers.push(() => makeCharacter(
  9876. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9877. {
  9878. side: {
  9879. height: math.unit(6, "feet"),
  9880. name: "Side",
  9881. image: {
  9882. source: "./media/characters/evander/side.svg",
  9883. extra: 877 / 477
  9884. }
  9885. },
  9886. },
  9887. [
  9888. {
  9889. name: "Normal",
  9890. height: math.unit(0.83, "meters"),
  9891. default: true
  9892. },
  9893. ]
  9894. ))
  9895. characterMakers.push(() => makeCharacter(
  9896. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9897. {
  9898. front: {
  9899. height: math.unit(12, "feet"),
  9900. weight: math.unit(1000, "lb"),
  9901. name: "Front",
  9902. image: {
  9903. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9904. extra: 1762 / 1611
  9905. }
  9906. },
  9907. back: {
  9908. height: math.unit(12, "feet"),
  9909. weight: math.unit(1000, "lb"),
  9910. name: "Back",
  9911. image: {
  9912. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9913. extra: 1762 / 1611
  9914. }
  9915. },
  9916. },
  9917. [
  9918. {
  9919. name: "Normal",
  9920. height: math.unit(12, "feet"),
  9921. default: true
  9922. },
  9923. {
  9924. name: "Kaiju",
  9925. height: math.unit(150, "feet")
  9926. },
  9927. ]
  9928. ))
  9929. characterMakers.push(() => makeCharacter(
  9930. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9931. {
  9932. front: {
  9933. height: math.unit(6, "feet"),
  9934. weight: math.unit(150, "lb"),
  9935. name: "Front",
  9936. image: {
  9937. source: "./media/characters/zero-alurus/front.svg"
  9938. }
  9939. },
  9940. back: {
  9941. height: math.unit(6, "feet"),
  9942. weight: math.unit(150, "lb"),
  9943. name: "Back",
  9944. image: {
  9945. source: "./media/characters/zero-alurus/back.svg"
  9946. }
  9947. },
  9948. },
  9949. [
  9950. {
  9951. name: "Normal",
  9952. height: math.unit(5 + 10 / 12, "feet")
  9953. },
  9954. {
  9955. name: "Macro",
  9956. height: math.unit(60, "feet"),
  9957. default: true
  9958. },
  9959. {
  9960. name: "Macro+",
  9961. height: math.unit(450, "feet")
  9962. },
  9963. ]
  9964. ))
  9965. characterMakers.push(() => makeCharacter(
  9966. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9967. {
  9968. front: {
  9969. height: math.unit(6, "feet"),
  9970. weight: math.unit(200, "lb"),
  9971. name: "Front",
  9972. image: {
  9973. source: "./media/characters/mega-shi/front.svg",
  9974. extra: 1279 / 1250,
  9975. bottom: 0.02
  9976. }
  9977. },
  9978. back: {
  9979. height: math.unit(6, "feet"),
  9980. weight: math.unit(200, "lb"),
  9981. name: "Back",
  9982. image: {
  9983. source: "./media/characters/mega-shi/back.svg",
  9984. extra: 1279 / 1250,
  9985. bottom: 0.02
  9986. }
  9987. },
  9988. },
  9989. [
  9990. {
  9991. name: "Micro",
  9992. height: math.unit(16 + 6 / 12, "feet")
  9993. },
  9994. {
  9995. name: "Third Dimension",
  9996. height: math.unit(40, "meters")
  9997. },
  9998. {
  9999. name: "Normal",
  10000. height: math.unit(660, "feet"),
  10001. default: true
  10002. },
  10003. {
  10004. name: "Megamacro",
  10005. height: math.unit(10, "miles")
  10006. },
  10007. {
  10008. name: "Planetary Launch",
  10009. height: math.unit(500, "miles")
  10010. },
  10011. {
  10012. name: "Interstellar",
  10013. height: math.unit(1e9, "miles")
  10014. },
  10015. {
  10016. name: "Leaving the Universe",
  10017. height: math.unit(1, "gigaparsec")
  10018. },
  10019. {
  10020. name: "Travelling Universes",
  10021. height: math.unit(30e15, "parsecs")
  10022. },
  10023. ]
  10024. ))
  10025. characterMakers.push(() => makeCharacter(
  10026. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10027. {
  10028. front: {
  10029. height: math.unit(6, "feet"),
  10030. weight: math.unit(150, "lb"),
  10031. name: "Front",
  10032. image: {
  10033. source: "./media/characters/odyssey/front.svg",
  10034. extra: 1782 / 1582,
  10035. bottom: 0.01
  10036. }
  10037. },
  10038. side: {
  10039. height: math.unit(5.7, "feet"),
  10040. weight: math.unit(140, "lb"),
  10041. name: "Side",
  10042. image: {
  10043. source: "./media/characters/odyssey/side.svg",
  10044. extra: 6462 / 5700
  10045. }
  10046. },
  10047. },
  10048. [
  10049. {
  10050. name: "Normal",
  10051. height: math.unit(5 + 4 / 12, "feet")
  10052. },
  10053. {
  10054. name: "Macro",
  10055. height: math.unit(1, "km")
  10056. },
  10057. {
  10058. name: "Megamacro",
  10059. height: math.unit(3000, "km")
  10060. },
  10061. {
  10062. name: "Gigamacro",
  10063. height: math.unit(1, "AU"),
  10064. default: true
  10065. },
  10066. {
  10067. name: "Omniversal",
  10068. height: math.unit(100e14, "lightyears")
  10069. },
  10070. ]
  10071. ))
  10072. characterMakers.push(() => makeCharacter(
  10073. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10074. {
  10075. front: {
  10076. height: math.unit(6, "feet"),
  10077. weight: math.unit(300, "lb"),
  10078. name: "Front",
  10079. image: {
  10080. source: "./media/characters/mekuto/front.svg",
  10081. extra: 921 / 832,
  10082. bottom: 0.03
  10083. }
  10084. },
  10085. hand: {
  10086. height: math.unit(6 / 10.24, "feet"),
  10087. name: "Hand",
  10088. image: {
  10089. source: "./media/characters/mekuto/hand.svg"
  10090. }
  10091. },
  10092. foot: {
  10093. height: math.unit(6 / 5.05, "feet"),
  10094. name: "Foot",
  10095. image: {
  10096. source: "./media/characters/mekuto/foot.svg"
  10097. }
  10098. },
  10099. },
  10100. [
  10101. {
  10102. name: "Minimicro",
  10103. height: math.unit(0.2, "inches")
  10104. },
  10105. {
  10106. name: "Micro",
  10107. height: math.unit(1.5, "inches")
  10108. },
  10109. {
  10110. name: "Normal",
  10111. height: math.unit(5 + 11 / 12, "feet"),
  10112. default: true
  10113. },
  10114. {
  10115. name: "Minimacro",
  10116. height: math.unit(17 + 9 / 12, "feet")
  10117. },
  10118. {
  10119. name: "Macro",
  10120. height: math.unit(177.5, "feet")
  10121. },
  10122. {
  10123. name: "Megamacro",
  10124. height: math.unit(152, "miles")
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(6.5, "inches"),
  10133. weight: math.unit(13, "oz"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/dafydd-tomos/front.svg",
  10137. extra: 2990 / 2603,
  10138. bottom: 0.03
  10139. }
  10140. },
  10141. },
  10142. [
  10143. {
  10144. name: "Micro",
  10145. height: math.unit(6.5, "inches"),
  10146. default: true
  10147. },
  10148. ]
  10149. ))
  10150. characterMakers.push(() => makeCharacter(
  10151. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10152. {
  10153. front: {
  10154. height: math.unit(6, "feet"),
  10155. weight: math.unit(150, "lb"),
  10156. name: "Front",
  10157. image: {
  10158. source: "./media/characters/splinter/front.svg",
  10159. extra: 2990 / 2882,
  10160. bottom: 0.04
  10161. }
  10162. },
  10163. back: {
  10164. height: math.unit(6, "feet"),
  10165. weight: math.unit(150, "lb"),
  10166. name: "Back",
  10167. image: {
  10168. source: "./media/characters/splinter/back.svg",
  10169. extra: 2990 / 2882,
  10170. bottom: 0.04
  10171. }
  10172. },
  10173. },
  10174. [
  10175. {
  10176. name: "Normal",
  10177. height: math.unit(6, "feet")
  10178. },
  10179. {
  10180. name: "Macro",
  10181. height: math.unit(230, "meters"),
  10182. default: true
  10183. },
  10184. ]
  10185. ))
  10186. characterMakers.push(() => makeCharacter(
  10187. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10188. {
  10189. front: {
  10190. height: math.unit(4 + 10 / 12, "feet"),
  10191. weight: math.unit(480, "lb"),
  10192. name: "Front",
  10193. image: {
  10194. source: "./media/characters/snow-gabumon/front.svg",
  10195. extra: 1140 / 963,
  10196. bottom: 0.058
  10197. }
  10198. },
  10199. back: {
  10200. height: math.unit(4 + 10 / 12, "feet"),
  10201. weight: math.unit(480, "lb"),
  10202. name: "Back",
  10203. image: {
  10204. source: "./media/characters/snow-gabumon/back.svg",
  10205. extra: 1115 / 962,
  10206. bottom: 0.041
  10207. }
  10208. },
  10209. frontUndresed: {
  10210. height: math.unit(4 + 10 / 12, "feet"),
  10211. weight: math.unit(480, "lb"),
  10212. name: "Front (Undressed)",
  10213. image: {
  10214. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10215. extra: 1061 / 960,
  10216. bottom: 0.045
  10217. }
  10218. },
  10219. },
  10220. [
  10221. {
  10222. name: "Micro",
  10223. height: math.unit(1, "inch")
  10224. },
  10225. {
  10226. name: "Normal",
  10227. height: math.unit(4 + 10 / 12, "feet"),
  10228. default: true
  10229. },
  10230. {
  10231. name: "Macro",
  10232. height: math.unit(200, "feet")
  10233. },
  10234. {
  10235. name: "Megamacro",
  10236. height: math.unit(120, "miles")
  10237. },
  10238. {
  10239. name: "Gigamacro",
  10240. height: math.unit(9800, "miles")
  10241. },
  10242. ]
  10243. ))
  10244. characterMakers.push(() => makeCharacter(
  10245. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10246. {
  10247. front: {
  10248. height: math.unit(1.7, "meters"),
  10249. weight: math.unit(140, "lb"),
  10250. name: "Front",
  10251. image: {
  10252. source: "./media/characters/moody/front.svg",
  10253. extra: 3226 / 3007,
  10254. bottom: 0.087
  10255. }
  10256. },
  10257. },
  10258. [
  10259. {
  10260. name: "Micro",
  10261. height: math.unit(1, "mm")
  10262. },
  10263. {
  10264. name: "Normal",
  10265. height: math.unit(1.7, "meters"),
  10266. default: true
  10267. },
  10268. {
  10269. name: "Macro",
  10270. height: math.unit(80, "meters")
  10271. },
  10272. {
  10273. name: "Macro+",
  10274. height: math.unit(500, "meters")
  10275. },
  10276. ]
  10277. ))
  10278. characterMakers.push(() => makeCharacter(
  10279. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10280. {
  10281. front: {
  10282. height: math.unit(6, "feet"),
  10283. weight: math.unit(150, "lb"),
  10284. name: "Front",
  10285. image: {
  10286. source: "./media/characters/zyas/front.svg",
  10287. extra: 1180 / 1120,
  10288. bottom: 0.045
  10289. }
  10290. },
  10291. },
  10292. [
  10293. {
  10294. name: "Normal",
  10295. height: math.unit(10, "feet"),
  10296. default: true
  10297. },
  10298. {
  10299. name: "Macro",
  10300. height: math.unit(500, "feet")
  10301. },
  10302. {
  10303. name: "Megamacro",
  10304. height: math.unit(5, "miles")
  10305. },
  10306. {
  10307. name: "Teramacro",
  10308. height: math.unit(150000, "miles")
  10309. },
  10310. ]
  10311. ))
  10312. characterMakers.push(() => makeCharacter(
  10313. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10314. {
  10315. front: {
  10316. height: math.unit(6, "feet"),
  10317. weight: math.unit(150, "lb"),
  10318. name: "Front",
  10319. image: {
  10320. source: "./media/characters/cuon/front.svg",
  10321. extra: 1390 / 1320,
  10322. bottom: 0.008
  10323. }
  10324. },
  10325. },
  10326. [
  10327. {
  10328. name: "Micro",
  10329. height: math.unit(3, "inches")
  10330. },
  10331. {
  10332. name: "Normal",
  10333. height: math.unit(18 + 9 / 12, "feet"),
  10334. default: true
  10335. },
  10336. {
  10337. name: "Macro",
  10338. height: math.unit(360, "feet")
  10339. },
  10340. {
  10341. name: "Megamacro",
  10342. height: math.unit(360, "miles")
  10343. },
  10344. ]
  10345. ))
  10346. characterMakers.push(() => makeCharacter(
  10347. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10348. {
  10349. front: {
  10350. height: math.unit(2.4, "meters"),
  10351. weight: math.unit(70, "kg"),
  10352. name: "Front",
  10353. image: {
  10354. source: "./media/characters/nyanuxk/front.svg",
  10355. extra: 1172 / 1084,
  10356. bottom: 0.065
  10357. }
  10358. },
  10359. side: {
  10360. height: math.unit(2.4, "meters"),
  10361. weight: math.unit(70, "kg"),
  10362. name: "Side",
  10363. image: {
  10364. source: "./media/characters/nyanuxk/side.svg",
  10365. extra: 1190 / 1132,
  10366. bottom: 0.007
  10367. }
  10368. },
  10369. back: {
  10370. height: math.unit(2.4, "meters"),
  10371. weight: math.unit(70, "kg"),
  10372. name: "Back",
  10373. image: {
  10374. source: "./media/characters/nyanuxk/back.svg",
  10375. extra: 1200 / 1141,
  10376. bottom: 0.015
  10377. }
  10378. },
  10379. foot: {
  10380. height: math.unit(0.52, "meters"),
  10381. name: "Foot",
  10382. image: {
  10383. source: "./media/characters/nyanuxk/foot.svg"
  10384. }
  10385. },
  10386. },
  10387. [
  10388. {
  10389. name: "Micro",
  10390. height: math.unit(2, "cm")
  10391. },
  10392. {
  10393. name: "Normal",
  10394. height: math.unit(2.4, "meters"),
  10395. default: true
  10396. },
  10397. {
  10398. name: "Smaller Macro",
  10399. height: math.unit(120, "meters")
  10400. },
  10401. {
  10402. name: "Bigger Macro",
  10403. height: math.unit(1.2, "km")
  10404. },
  10405. {
  10406. name: "Megamacro",
  10407. height: math.unit(15, "kilometers")
  10408. },
  10409. {
  10410. name: "Gigamacro",
  10411. height: math.unit(2000, "km")
  10412. },
  10413. {
  10414. name: "Teramacro",
  10415. height: math.unit(500000, "km")
  10416. },
  10417. ]
  10418. ))
  10419. characterMakers.push(() => makeCharacter(
  10420. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10421. {
  10422. side: {
  10423. height: math.unit(6, "feet"),
  10424. name: "Side",
  10425. image: {
  10426. source: "./media/characters/ailbhe/side.svg",
  10427. extra: 757 / 464,
  10428. bottom: 0.041
  10429. }
  10430. },
  10431. },
  10432. [
  10433. {
  10434. name: "Normal",
  10435. height: math.unit(1.07, "meters"),
  10436. default: true
  10437. },
  10438. ]
  10439. ))
  10440. characterMakers.push(() => makeCharacter(
  10441. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10442. {
  10443. front: {
  10444. height: math.unit(6, "feet"),
  10445. weight: math.unit(120, "kg"),
  10446. name: "Front",
  10447. image: {
  10448. source: "./media/characters/zevulfius/front.svg",
  10449. extra: 965 / 903
  10450. }
  10451. },
  10452. side: {
  10453. height: math.unit(6, "feet"),
  10454. weight: math.unit(120, "kg"),
  10455. name: "Side",
  10456. image: {
  10457. source: "./media/characters/zevulfius/side.svg",
  10458. extra: 939 / 900
  10459. }
  10460. },
  10461. back: {
  10462. height: math.unit(6, "feet"),
  10463. weight: math.unit(120, "kg"),
  10464. name: "Back",
  10465. image: {
  10466. source: "./media/characters/zevulfius/back.svg",
  10467. extra: 918 / 854,
  10468. bottom: 0.005
  10469. }
  10470. },
  10471. foot: {
  10472. height: math.unit(6 / 3.72, "feet"),
  10473. name: "Foot",
  10474. image: {
  10475. source: "./media/characters/zevulfius/foot.svg"
  10476. }
  10477. },
  10478. },
  10479. [
  10480. {
  10481. name: "Macro",
  10482. height: math.unit(750, "meters")
  10483. },
  10484. {
  10485. name: "Megamacro",
  10486. height: math.unit(20, "km"),
  10487. default: true
  10488. },
  10489. {
  10490. name: "Gigamacro",
  10491. height: math.unit(2000, "km")
  10492. },
  10493. {
  10494. name: "Teramacro",
  10495. height: math.unit(250000, "km")
  10496. },
  10497. ]
  10498. ))
  10499. characterMakers.push(() => makeCharacter(
  10500. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10501. {
  10502. front: {
  10503. height: math.unit(100, "feet"),
  10504. weight: math.unit(350, "kg"),
  10505. name: "Front",
  10506. image: {
  10507. source: "./media/characters/rikes/front.svg",
  10508. extra: 1565 / 1483,
  10509. bottom: 0.017
  10510. }
  10511. },
  10512. },
  10513. [
  10514. {
  10515. name: "Macro",
  10516. height: math.unit(100, "feet"),
  10517. default: true
  10518. },
  10519. ]
  10520. ))
  10521. characterMakers.push(() => makeCharacter(
  10522. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10523. {
  10524. front: {
  10525. height: math.unit(8, "feet"),
  10526. weight: math.unit(356, "lb"),
  10527. name: "Front",
  10528. image: {
  10529. source: "./media/characters/adam-silver-mane/front.svg",
  10530. extra: 1036/937,
  10531. bottom: 63/1099
  10532. }
  10533. },
  10534. side: {
  10535. height: math.unit(8, "feet"),
  10536. weight: math.unit(356, "lb"),
  10537. name: "Side",
  10538. image: {
  10539. source: "./media/characters/adam-silver-mane/side.svg",
  10540. extra: 997/901,
  10541. bottom: 59/1056
  10542. }
  10543. },
  10544. frontNsfw: {
  10545. height: math.unit(8, "feet"),
  10546. weight: math.unit(356, "lb"),
  10547. name: "Front (NSFW)",
  10548. image: {
  10549. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10550. extra: 1036/937,
  10551. bottom: 63/1099
  10552. }
  10553. },
  10554. sideNsfw: {
  10555. height: math.unit(8, "feet"),
  10556. weight: math.unit(356, "lb"),
  10557. name: "Side (NSFW)",
  10558. image: {
  10559. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10560. extra: 997/901,
  10561. bottom: 59/1056
  10562. }
  10563. },
  10564. dick: {
  10565. height: math.unit(2.1, "feet"),
  10566. name: "Dick",
  10567. image: {
  10568. source: "./media/characters/adam-silver-mane/dick.svg"
  10569. }
  10570. },
  10571. taur: {
  10572. height: math.unit(16, "feet"),
  10573. weight: math.unit(1500, "kg"),
  10574. name: "Taur",
  10575. image: {
  10576. source: "./media/characters/adam-silver-mane/taur.svg",
  10577. extra: 1713 / 1571,
  10578. bottom: 0.01
  10579. }
  10580. },
  10581. },
  10582. [
  10583. {
  10584. name: "Normal",
  10585. height: math.unit(8, "feet")
  10586. },
  10587. {
  10588. name: "Minimacro",
  10589. height: math.unit(80, "feet")
  10590. },
  10591. {
  10592. name: "MDA",
  10593. height: math.unit(80, "meters")
  10594. },
  10595. {
  10596. name: "Macro",
  10597. height: math.unit(800, "feet"),
  10598. default: true
  10599. },
  10600. {
  10601. name: "Megamacro",
  10602. height: math.unit(8000, "feet")
  10603. },
  10604. {
  10605. name: "Gigamacro",
  10606. height: math.unit(800, "miles")
  10607. },
  10608. {
  10609. name: "Teramacro",
  10610. height: math.unit(80000, "miles")
  10611. },
  10612. {
  10613. name: "Celestial",
  10614. height: math.unit(8e6, "miles")
  10615. },
  10616. {
  10617. name: "Star Dragon",
  10618. height: math.unit(800000, "parsecs")
  10619. },
  10620. {
  10621. name: "Godly",
  10622. height: math.unit(800, "teraparsecs")
  10623. },
  10624. ]
  10625. ))
  10626. characterMakers.push(() => makeCharacter(
  10627. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10628. {
  10629. front: {
  10630. height: math.unit(6, "feet"),
  10631. weight: math.unit(150, "lb"),
  10632. name: "Front",
  10633. image: {
  10634. source: "./media/characters/ky'owin/front.svg",
  10635. extra: 3888 / 3068,
  10636. bottom: 0.015
  10637. }
  10638. },
  10639. },
  10640. [
  10641. {
  10642. name: "Normal",
  10643. height: math.unit(6 + 8 / 12, "feet")
  10644. },
  10645. {
  10646. name: "Large",
  10647. height: math.unit(68, "feet")
  10648. },
  10649. {
  10650. name: "Macro",
  10651. height: math.unit(132, "feet")
  10652. },
  10653. {
  10654. name: "Macro+",
  10655. height: math.unit(340, "feet")
  10656. },
  10657. {
  10658. name: "Macro++",
  10659. height: math.unit(680, "feet"),
  10660. default: true
  10661. },
  10662. {
  10663. name: "Megamacro",
  10664. height: math.unit(1, "mile")
  10665. },
  10666. {
  10667. name: "Megamacro+",
  10668. height: math.unit(10, "miles")
  10669. },
  10670. ]
  10671. ))
  10672. characterMakers.push(() => makeCharacter(
  10673. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10674. {
  10675. front: {
  10676. height: math.unit(4, "feet"),
  10677. weight: math.unit(50, "lb"),
  10678. name: "Front",
  10679. image: {
  10680. source: "./media/characters/mal/front.svg",
  10681. extra: 785 / 724,
  10682. bottom: 0.07
  10683. }
  10684. },
  10685. },
  10686. [
  10687. {
  10688. name: "Micro",
  10689. height: math.unit(4, "inches")
  10690. },
  10691. {
  10692. name: "Normal",
  10693. height: math.unit(4, "feet"),
  10694. default: true
  10695. },
  10696. {
  10697. name: "Macro",
  10698. height: math.unit(200, "feet")
  10699. },
  10700. ]
  10701. ))
  10702. characterMakers.push(() => makeCharacter(
  10703. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10704. {
  10705. front: {
  10706. height: math.unit(6, "feet"),
  10707. weight: math.unit(150, "lb"),
  10708. name: "Front",
  10709. image: {
  10710. source: "./media/characters/jordan-deware/front.svg",
  10711. extra: 1191 / 1012
  10712. }
  10713. },
  10714. },
  10715. [
  10716. {
  10717. name: "Nano",
  10718. height: math.unit(0.01, "mm")
  10719. },
  10720. {
  10721. name: "Minimicro",
  10722. height: math.unit(1, "mm")
  10723. },
  10724. {
  10725. name: "Micro",
  10726. height: math.unit(0.5, "inches")
  10727. },
  10728. {
  10729. name: "Normal",
  10730. height: math.unit(4, "feet"),
  10731. default: true
  10732. },
  10733. {
  10734. name: "Minimacro",
  10735. height: math.unit(40, "meters")
  10736. },
  10737. {
  10738. name: "Small Macro",
  10739. height: math.unit(400, "meters")
  10740. },
  10741. {
  10742. name: "Macro",
  10743. height: math.unit(4, "miles")
  10744. },
  10745. {
  10746. name: "Megamacro",
  10747. height: math.unit(40, "miles")
  10748. },
  10749. {
  10750. name: "Megamacro+",
  10751. height: math.unit(400, "miles")
  10752. },
  10753. {
  10754. name: "Gigamacro",
  10755. height: math.unit(400000, "miles")
  10756. },
  10757. ]
  10758. ))
  10759. characterMakers.push(() => makeCharacter(
  10760. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10761. {
  10762. side: {
  10763. height: math.unit(6, "feet"),
  10764. weight: math.unit(150, "lb"),
  10765. name: "Side",
  10766. image: {
  10767. source: "./media/characters/kimiko/side.svg",
  10768. extra: 600 / 358
  10769. }
  10770. },
  10771. },
  10772. [
  10773. {
  10774. name: "Normal",
  10775. height: math.unit(15, "feet"),
  10776. default: true
  10777. },
  10778. {
  10779. name: "Macro",
  10780. height: math.unit(220, "feet")
  10781. },
  10782. {
  10783. name: "Macro+",
  10784. height: math.unit(1450, "feet")
  10785. },
  10786. {
  10787. name: "Megamacro",
  10788. height: math.unit(11500, "feet")
  10789. },
  10790. {
  10791. name: "Gigamacro",
  10792. height: math.unit(9500, "miles")
  10793. },
  10794. {
  10795. name: "Teramacro",
  10796. height: math.unit(2208005005, "miles")
  10797. },
  10798. {
  10799. name: "Examacro",
  10800. height: math.unit(2750, "parsecs")
  10801. },
  10802. {
  10803. name: "Zettamacro",
  10804. height: math.unit(101500, "parsecs")
  10805. },
  10806. ]
  10807. ))
  10808. characterMakers.push(() => makeCharacter(
  10809. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10810. {
  10811. front: {
  10812. height: math.unit(6, "feet"),
  10813. weight: math.unit(70, "kg"),
  10814. name: "Front",
  10815. image: {
  10816. source: "./media/characters/andrew-sleepy/front.svg"
  10817. }
  10818. },
  10819. side: {
  10820. height: math.unit(6, "feet"),
  10821. weight: math.unit(70, "kg"),
  10822. name: "Side",
  10823. image: {
  10824. source: "./media/characters/andrew-sleepy/side.svg"
  10825. }
  10826. },
  10827. },
  10828. [
  10829. {
  10830. name: "Micro",
  10831. height: math.unit(1, "mm"),
  10832. default: true
  10833. },
  10834. ]
  10835. ))
  10836. characterMakers.push(() => makeCharacter(
  10837. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10838. {
  10839. front: {
  10840. height: math.unit(6, "feet"),
  10841. weight: math.unit(150, "lb"),
  10842. name: "Front",
  10843. image: {
  10844. source: "./media/characters/judio/front.svg",
  10845. extra: 1258 / 1110
  10846. }
  10847. },
  10848. },
  10849. [
  10850. {
  10851. name: "Normal",
  10852. height: math.unit(5 + 6 / 12, "feet")
  10853. },
  10854. {
  10855. name: "Macro",
  10856. height: math.unit(1000, "feet"),
  10857. default: true
  10858. },
  10859. {
  10860. name: "Megamacro",
  10861. height: math.unit(10, "miles")
  10862. },
  10863. ]
  10864. ))
  10865. characterMakers.push(() => makeCharacter(
  10866. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10867. {
  10868. front: {
  10869. height: math.unit(6, "feet"),
  10870. weight: math.unit(68, "kg"),
  10871. name: "Front",
  10872. image: {
  10873. source: "./media/characters/nomaxice/front.svg",
  10874. extra: 1498 / 1073,
  10875. bottom: 0.075
  10876. }
  10877. },
  10878. foot: {
  10879. height: math.unit(1.1, "feet"),
  10880. name: "Foot",
  10881. image: {
  10882. source: "./media/characters/nomaxice/foot.svg"
  10883. }
  10884. },
  10885. },
  10886. [
  10887. {
  10888. name: "Micro",
  10889. height: math.unit(8, "cm")
  10890. },
  10891. {
  10892. name: "Norm",
  10893. height: math.unit(1.82, "m")
  10894. },
  10895. {
  10896. name: "Norm+",
  10897. height: math.unit(8.8, "feet")
  10898. },
  10899. {
  10900. name: "Big",
  10901. height: math.unit(8, "meters"),
  10902. default: true
  10903. },
  10904. {
  10905. name: "Macro",
  10906. height: math.unit(18, "meters")
  10907. },
  10908. {
  10909. name: "Macro+",
  10910. height: math.unit(88, "meters")
  10911. },
  10912. ]
  10913. ))
  10914. characterMakers.push(() => makeCharacter(
  10915. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10916. {
  10917. front: {
  10918. height: math.unit(12, "feet"),
  10919. weight: math.unit(1.5, "tons"),
  10920. name: "Front",
  10921. image: {
  10922. source: "./media/characters/dydros/front.svg",
  10923. extra: 863 / 800,
  10924. bottom: 0.015
  10925. }
  10926. },
  10927. back: {
  10928. height: math.unit(12, "feet"),
  10929. weight: math.unit(1.5, "tons"),
  10930. name: "Back",
  10931. image: {
  10932. source: "./media/characters/dydros/back.svg",
  10933. extra: 900 / 843,
  10934. bottom: 0.005
  10935. }
  10936. },
  10937. },
  10938. [
  10939. {
  10940. name: "Normal",
  10941. height: math.unit(12, "feet"),
  10942. default: true
  10943. },
  10944. ]
  10945. ))
  10946. characterMakers.push(() => makeCharacter(
  10947. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10948. {
  10949. front: {
  10950. height: math.unit(6, "feet"),
  10951. weight: math.unit(100, "kg"),
  10952. name: "Front",
  10953. image: {
  10954. source: "./media/characters/riggi/front.svg",
  10955. extra: 5787 / 5303
  10956. }
  10957. },
  10958. hyper: {
  10959. height: math.unit(6 * 5 / 3, "feet"),
  10960. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10961. name: "Hyper",
  10962. image: {
  10963. source: "./media/characters/riggi/hyper.svg",
  10964. extra: 3595 / 3485
  10965. }
  10966. },
  10967. },
  10968. [
  10969. {
  10970. name: "Small Macro",
  10971. height: math.unit(50, "feet")
  10972. },
  10973. {
  10974. name: "Default",
  10975. height: math.unit(200, "feet"),
  10976. default: true
  10977. },
  10978. {
  10979. name: "Loom",
  10980. height: math.unit(10000, "feet")
  10981. },
  10982. {
  10983. name: "Cruising Altitude",
  10984. height: math.unit(30000, "feet")
  10985. },
  10986. {
  10987. name: "Megamacro",
  10988. height: math.unit(100, "miles")
  10989. },
  10990. {
  10991. name: "Continent Sized",
  10992. height: math.unit(2800, "miles")
  10993. },
  10994. {
  10995. name: "Earth Sized",
  10996. height: math.unit(8000, "miles")
  10997. },
  10998. ]
  10999. ))
  11000. characterMakers.push(() => makeCharacter(
  11001. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11002. {
  11003. front: {
  11004. height: math.unit(6, "feet"),
  11005. weight: math.unit(250, "lb"),
  11006. name: "Front",
  11007. image: {
  11008. source: "./media/characters/alexi/front.svg",
  11009. extra: 3483 / 3291,
  11010. bottom: 0.04
  11011. }
  11012. },
  11013. back: {
  11014. height: math.unit(6, "feet"),
  11015. weight: math.unit(250, "lb"),
  11016. name: "Back",
  11017. image: {
  11018. source: "./media/characters/alexi/back.svg",
  11019. extra: 3533 / 3356,
  11020. bottom: 0.021
  11021. }
  11022. },
  11023. frontTransforming: {
  11024. height: math.unit(8.58, "feet"),
  11025. weight: math.unit(1300, "lb"),
  11026. name: "Transforming",
  11027. image: {
  11028. source: "./media/characters/alexi/front-transforming.svg",
  11029. extra: 437 / 409,
  11030. bottom: 19 / 458.66
  11031. }
  11032. },
  11033. frontTransformed: {
  11034. height: math.unit(12.5, "feet"),
  11035. weight: math.unit(4000, "lb"),
  11036. name: "Transformed",
  11037. image: {
  11038. source: "./media/characters/alexi/front-transformed.svg",
  11039. extra: 639 / 614,
  11040. bottom: 30.55 / 671
  11041. }
  11042. },
  11043. },
  11044. [
  11045. {
  11046. name: "Normal",
  11047. height: math.unit(14, "feet"),
  11048. default: true
  11049. },
  11050. {
  11051. name: "Minimacro",
  11052. height: math.unit(30, "meters")
  11053. },
  11054. {
  11055. name: "Macro",
  11056. height: math.unit(500, "meters")
  11057. },
  11058. {
  11059. name: "Megamacro",
  11060. height: math.unit(9000, "km")
  11061. },
  11062. {
  11063. name: "Teramacro",
  11064. height: math.unit(384000, "km")
  11065. },
  11066. ]
  11067. ))
  11068. characterMakers.push(() => makeCharacter(
  11069. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11070. {
  11071. front: {
  11072. height: math.unit(6, "feet"),
  11073. weight: math.unit(150, "lb"),
  11074. name: "Front",
  11075. image: {
  11076. source: "./media/characters/kayroo/front.svg",
  11077. extra: 1153 / 1038,
  11078. bottom: 0.06
  11079. }
  11080. },
  11081. foot: {
  11082. height: math.unit(6, "feet"),
  11083. weight: math.unit(150, "lb"),
  11084. name: "Foot",
  11085. image: {
  11086. source: "./media/characters/kayroo/foot.svg"
  11087. }
  11088. },
  11089. },
  11090. [
  11091. {
  11092. name: "Normal",
  11093. height: math.unit(8, "feet"),
  11094. default: true
  11095. },
  11096. {
  11097. name: "Minimacro",
  11098. height: math.unit(250, "feet")
  11099. },
  11100. {
  11101. name: "Macro",
  11102. height: math.unit(2800, "feet")
  11103. },
  11104. {
  11105. name: "Megamacro",
  11106. height: math.unit(5200, "feet")
  11107. },
  11108. {
  11109. name: "Gigamacro",
  11110. height: math.unit(27000, "feet")
  11111. },
  11112. {
  11113. name: "Omega",
  11114. height: math.unit(45000, "feet")
  11115. },
  11116. ]
  11117. ))
  11118. characterMakers.push(() => makeCharacter(
  11119. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11120. {
  11121. front: {
  11122. height: math.unit(18, "feet"),
  11123. weight: math.unit(5800, "lb"),
  11124. name: "Front",
  11125. image: {
  11126. source: "./media/characters/rhys/front.svg",
  11127. extra: 3386 / 3090,
  11128. bottom: 0.07
  11129. }
  11130. },
  11131. },
  11132. [
  11133. {
  11134. name: "Normal",
  11135. height: math.unit(18, "feet"),
  11136. default: true
  11137. },
  11138. {
  11139. name: "Working Size",
  11140. height: math.unit(200, "feet")
  11141. },
  11142. {
  11143. name: "Demolition Size",
  11144. height: math.unit(2000, "feet")
  11145. },
  11146. {
  11147. name: "Maximum Licensed Size",
  11148. height: math.unit(5, "miles")
  11149. },
  11150. {
  11151. name: "Maximum Observed Size",
  11152. height: math.unit(10, "yottameters")
  11153. },
  11154. ]
  11155. ))
  11156. characterMakers.push(() => makeCharacter(
  11157. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11158. {
  11159. front: {
  11160. height: math.unit(6, "feet"),
  11161. weight: math.unit(250, "lb"),
  11162. name: "Front",
  11163. image: {
  11164. source: "./media/characters/toto/front.svg",
  11165. extra: 527 / 479,
  11166. bottom: 0.05
  11167. }
  11168. },
  11169. },
  11170. [
  11171. {
  11172. name: "Micro",
  11173. height: math.unit(3, "feet")
  11174. },
  11175. {
  11176. name: "Normal",
  11177. height: math.unit(10, "feet")
  11178. },
  11179. {
  11180. name: "Macro",
  11181. height: math.unit(150, "feet"),
  11182. default: true
  11183. },
  11184. {
  11185. name: "Megamacro",
  11186. height: math.unit(1200, "feet")
  11187. },
  11188. ]
  11189. ))
  11190. characterMakers.push(() => makeCharacter(
  11191. { name: "King", species: ["lion"], tags: ["anthro"] },
  11192. {
  11193. back: {
  11194. height: math.unit(6, "feet"),
  11195. weight: math.unit(150, "lb"),
  11196. name: "Back",
  11197. image: {
  11198. source: "./media/characters/king/back.svg"
  11199. }
  11200. },
  11201. },
  11202. [
  11203. {
  11204. name: "Micro",
  11205. height: math.unit(2, "inches")
  11206. },
  11207. {
  11208. name: "Normal",
  11209. height: math.unit(8, "feet")
  11210. },
  11211. {
  11212. name: "Macro",
  11213. height: math.unit(200, "feet"),
  11214. default: true
  11215. },
  11216. {
  11217. name: "Megamacro",
  11218. height: math.unit(50, "miles")
  11219. },
  11220. ]
  11221. ))
  11222. characterMakers.push(() => makeCharacter(
  11223. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11224. {
  11225. front: {
  11226. height: math.unit(11, "feet"),
  11227. weight: math.unit(1400, "lb"),
  11228. name: "Front",
  11229. image: {
  11230. source: "./media/characters/cordite/front.svg",
  11231. extra: 1919/1827,
  11232. bottom: 40/1959
  11233. }
  11234. },
  11235. side: {
  11236. height: math.unit(11, "feet"),
  11237. weight: math.unit(1400, "lb"),
  11238. name: "Side",
  11239. image: {
  11240. source: "./media/characters/cordite/side.svg",
  11241. extra: 1908/1793,
  11242. bottom: 38/1946
  11243. }
  11244. },
  11245. back: {
  11246. height: math.unit(11, "feet"),
  11247. weight: math.unit(1400, "lb"),
  11248. name: "Back",
  11249. image: {
  11250. source: "./media/characters/cordite/back.svg",
  11251. extra: 1938/1837,
  11252. bottom: 10/1948
  11253. }
  11254. },
  11255. feral: {
  11256. height: math.unit(2, "feet"),
  11257. weight: math.unit(90, "lb"),
  11258. name: "Feral",
  11259. image: {
  11260. source: "./media/characters/cordite/feral.svg",
  11261. extra: 1260 / 755,
  11262. bottom: 0.05
  11263. }
  11264. },
  11265. },
  11266. [
  11267. {
  11268. name: "Normal",
  11269. height: math.unit(11, "feet"),
  11270. default: true
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11276. {
  11277. front: {
  11278. height: math.unit(6, "feet"),
  11279. weight: math.unit(150, "lb"),
  11280. name: "Front",
  11281. image: {
  11282. source: "./media/characters/pianostrong/front.svg",
  11283. extra: 6577 / 6254,
  11284. bottom: 0.02
  11285. }
  11286. },
  11287. side: {
  11288. height: math.unit(6, "feet"),
  11289. weight: math.unit(150, "lb"),
  11290. name: "Side",
  11291. image: {
  11292. source: "./media/characters/pianostrong/side.svg",
  11293. extra: 6106 / 5730
  11294. }
  11295. },
  11296. back: {
  11297. height: math.unit(6, "feet"),
  11298. weight: math.unit(150, "lb"),
  11299. name: "Back",
  11300. image: {
  11301. source: "./media/characters/pianostrong/back.svg",
  11302. extra: 6085 / 5733,
  11303. bottom: 0.01
  11304. }
  11305. },
  11306. },
  11307. [
  11308. {
  11309. name: "Macro",
  11310. height: math.unit(100, "feet")
  11311. },
  11312. {
  11313. name: "Macro+",
  11314. height: math.unit(300, "feet"),
  11315. default: true
  11316. },
  11317. {
  11318. name: "Macro++",
  11319. height: math.unit(1000, "feet")
  11320. },
  11321. ]
  11322. ))
  11323. characterMakers.push(() => makeCharacter(
  11324. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11325. {
  11326. front: {
  11327. height: math.unit(6, "feet"),
  11328. weight: math.unit(150, "lb"),
  11329. name: "Front",
  11330. image: {
  11331. source: "./media/characters/kona/front.svg",
  11332. extra: 2960 / 2629,
  11333. bottom: 0.005
  11334. }
  11335. },
  11336. },
  11337. [
  11338. {
  11339. name: "Normal",
  11340. height: math.unit(11 + 8 / 12, "feet")
  11341. },
  11342. {
  11343. name: "Macro",
  11344. height: math.unit(850, "feet"),
  11345. default: true
  11346. },
  11347. {
  11348. name: "Macro+",
  11349. height: math.unit(1.5, "km"),
  11350. default: true
  11351. },
  11352. {
  11353. name: "Megamacro",
  11354. height: math.unit(80, "miles")
  11355. },
  11356. {
  11357. name: "Gigamacro",
  11358. height: math.unit(3500, "miles")
  11359. },
  11360. ]
  11361. ))
  11362. characterMakers.push(() => makeCharacter(
  11363. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11364. {
  11365. side: {
  11366. height: math.unit(1.9, "meters"),
  11367. weight: math.unit(326, "kg"),
  11368. name: "Side",
  11369. image: {
  11370. source: "./media/characters/levi/side.svg",
  11371. extra: 1704 / 1334,
  11372. bottom: 0.02
  11373. }
  11374. },
  11375. },
  11376. [
  11377. {
  11378. name: "Normal",
  11379. height: math.unit(1.9, "meters"),
  11380. default: true
  11381. },
  11382. {
  11383. name: "Macro",
  11384. height: math.unit(20, "meters")
  11385. },
  11386. {
  11387. name: "Macro+",
  11388. height: math.unit(200, "meters")
  11389. },
  11390. {
  11391. name: "Megamacro",
  11392. height: math.unit(2, "km")
  11393. },
  11394. {
  11395. name: "Megamacro+",
  11396. height: math.unit(20, "km")
  11397. },
  11398. {
  11399. name: "Gigamacro",
  11400. height: math.unit(2500, "km")
  11401. },
  11402. {
  11403. name: "Gigamacro+",
  11404. height: math.unit(120000, "km")
  11405. },
  11406. {
  11407. name: "Teramacro",
  11408. height: math.unit(7.77e6, "km")
  11409. },
  11410. ]
  11411. ))
  11412. characterMakers.push(() => makeCharacter(
  11413. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11414. {
  11415. front: {
  11416. height: math.unit(6 + 4/12, "feet"),
  11417. weight: math.unit(190, "lb"),
  11418. name: "Front",
  11419. image: {
  11420. source: "./media/characters/bmc/front.svg",
  11421. extra: 1626/1472,
  11422. bottom: 79/1705
  11423. }
  11424. },
  11425. back: {
  11426. height: math.unit(6 + 4/12, "feet"),
  11427. weight: math.unit(190, "lb"),
  11428. name: "Back",
  11429. image: {
  11430. source: "./media/characters/bmc/back.svg",
  11431. extra: 1640/1479,
  11432. bottom: 45/1685
  11433. }
  11434. },
  11435. frontArmor: {
  11436. height: math.unit(6 + 4/12, "feet"),
  11437. weight: math.unit(190, "lb"),
  11438. name: "Front-armor",
  11439. image: {
  11440. source: "./media/characters/bmc/front-armor.svg",
  11441. extra: 1538/1468,
  11442. bottom: 79/1617
  11443. }
  11444. },
  11445. },
  11446. [
  11447. {
  11448. name: "Human-sized",
  11449. height: math.unit(6 + 4 / 12, "feet")
  11450. },
  11451. {
  11452. name: "Interactive Size",
  11453. height: math.unit(25, "feet")
  11454. },
  11455. {
  11456. name: "Small",
  11457. height: math.unit(250, "feet")
  11458. },
  11459. {
  11460. name: "Normal",
  11461. height: math.unit(1250, "feet"),
  11462. default: true
  11463. },
  11464. {
  11465. name: "Good Day",
  11466. height: math.unit(88, "miles")
  11467. },
  11468. {
  11469. name: "Largest Measured Size",
  11470. height: math.unit(105.960, "galaxies")
  11471. },
  11472. ]
  11473. ))
  11474. characterMakers.push(() => makeCharacter(
  11475. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11476. {
  11477. front: {
  11478. height: math.unit(20, "feet"),
  11479. weight: math.unit(2016, "kg"),
  11480. name: "Front",
  11481. image: {
  11482. source: "./media/characters/sven-the-kaiju/front.svg",
  11483. extra: 1277/1250,
  11484. bottom: 35/1312
  11485. }
  11486. },
  11487. mouth: {
  11488. height: math.unit(1.85, "feet"),
  11489. name: "Mouth",
  11490. image: {
  11491. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11492. }
  11493. },
  11494. },
  11495. [
  11496. {
  11497. name: "Fairy",
  11498. height: math.unit(6, "inches")
  11499. },
  11500. {
  11501. name: "Normal",
  11502. height: math.unit(20, "feet"),
  11503. default: true
  11504. },
  11505. {
  11506. name: "Rampage",
  11507. height: math.unit(200, "feet")
  11508. },
  11509. {
  11510. name: "Archfey Forest Guardian",
  11511. height: math.unit(1, "mile")
  11512. },
  11513. ]
  11514. ))
  11515. characterMakers.push(() => makeCharacter(
  11516. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11517. {
  11518. front: {
  11519. height: math.unit(4, "meters"),
  11520. weight: math.unit(2, "tons"),
  11521. name: "Front",
  11522. image: {
  11523. source: "./media/characters/marik/front.svg",
  11524. extra: 1057 / 1003,
  11525. bottom: 0.08
  11526. }
  11527. },
  11528. },
  11529. [
  11530. {
  11531. name: "Normal",
  11532. height: math.unit(4, "meters"),
  11533. default: true
  11534. },
  11535. {
  11536. name: "Macro",
  11537. height: math.unit(20, "meters")
  11538. },
  11539. {
  11540. name: "Megamacro",
  11541. height: math.unit(50, "km")
  11542. },
  11543. {
  11544. name: "Gigamacro",
  11545. height: math.unit(100, "km")
  11546. },
  11547. {
  11548. name: "Alpha Macro",
  11549. height: math.unit(7.88e7, "yottameters")
  11550. },
  11551. ]
  11552. ))
  11553. characterMakers.push(() => makeCharacter(
  11554. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11555. {
  11556. front: {
  11557. height: math.unit(6, "feet"),
  11558. weight: math.unit(110, "lb"),
  11559. name: "Front",
  11560. image: {
  11561. source: "./media/characters/mel/front.svg",
  11562. extra: 736 / 617,
  11563. bottom: 0.017
  11564. }
  11565. },
  11566. },
  11567. [
  11568. {
  11569. name: "Pico",
  11570. height: math.unit(3, "pm")
  11571. },
  11572. {
  11573. name: "Nano",
  11574. height: math.unit(3, "nm")
  11575. },
  11576. {
  11577. name: "Micro",
  11578. height: math.unit(0.3, "mm"),
  11579. default: true
  11580. },
  11581. {
  11582. name: "Micro+",
  11583. height: math.unit(3, "mm")
  11584. },
  11585. {
  11586. name: "Normal",
  11587. height: math.unit(5 + 10.5 / 12, "feet")
  11588. },
  11589. ]
  11590. ))
  11591. characterMakers.push(() => makeCharacter(
  11592. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11593. {
  11594. kaiju: {
  11595. height: math.unit(1.75, "meters"),
  11596. weight: math.unit(55, "kg"),
  11597. name: "Kaiju",
  11598. image: {
  11599. source: "./media/characters/lykonous/kaiju.svg",
  11600. extra: 1055 / 946,
  11601. bottom: 0.135
  11602. }
  11603. },
  11604. },
  11605. [
  11606. {
  11607. name: "Normal",
  11608. height: math.unit(2.5, "meters"),
  11609. default: true
  11610. },
  11611. {
  11612. name: "Kaiju Dragon",
  11613. height: math.unit(60, "meters")
  11614. },
  11615. {
  11616. name: "Mega Kaiju",
  11617. height: math.unit(120, "km")
  11618. },
  11619. {
  11620. name: "Giga Kaiju",
  11621. height: math.unit(200, "megameters")
  11622. },
  11623. {
  11624. name: "Terra Kaiju",
  11625. height: math.unit(400, "gigameters")
  11626. },
  11627. {
  11628. name: "Kaiju Dragon God",
  11629. height: math.unit(13000, "exaparsecs")
  11630. },
  11631. ]
  11632. ))
  11633. characterMakers.push(() => makeCharacter(
  11634. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11635. {
  11636. front: {
  11637. height: math.unit(6, "feet"),
  11638. weight: math.unit(150, "lb"),
  11639. name: "Front",
  11640. image: {
  11641. source: "./media/characters/blü/front.svg",
  11642. extra: 1883 / 1564,
  11643. bottom: 0.031
  11644. }
  11645. },
  11646. },
  11647. [
  11648. {
  11649. name: "Normal",
  11650. height: math.unit(13, "feet"),
  11651. default: true
  11652. },
  11653. {
  11654. name: "Big Boi",
  11655. height: math.unit(150, "meters")
  11656. },
  11657. {
  11658. name: "Mini Stomper",
  11659. height: math.unit(300, "meters")
  11660. },
  11661. {
  11662. name: "Macro",
  11663. height: math.unit(1000, "meters")
  11664. },
  11665. {
  11666. name: "Megamacro",
  11667. height: math.unit(11000, "meters")
  11668. },
  11669. {
  11670. name: "Gigamacro",
  11671. height: math.unit(11000, "km")
  11672. },
  11673. {
  11674. name: "Teramacro",
  11675. height: math.unit(420000, "km")
  11676. },
  11677. {
  11678. name: "Examacro",
  11679. height: math.unit(120, "parsecs")
  11680. },
  11681. {
  11682. name: "God Tho",
  11683. height: math.unit(98000000000, "parsecs")
  11684. },
  11685. ]
  11686. ))
  11687. characterMakers.push(() => makeCharacter(
  11688. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11689. {
  11690. taurFront: {
  11691. height: math.unit(6, "feet"),
  11692. weight: math.unit(200, "lb"),
  11693. name: "Taur (Front)",
  11694. image: {
  11695. source: "./media/characters/scales/taur-front.svg",
  11696. extra: 1,
  11697. bottom: 0.05
  11698. }
  11699. },
  11700. taurBack: {
  11701. height: math.unit(6, "feet"),
  11702. weight: math.unit(200, "lb"),
  11703. name: "Taur (Back)",
  11704. image: {
  11705. source: "./media/characters/scales/taur-back.svg",
  11706. extra: 1,
  11707. bottom: 0.08
  11708. }
  11709. },
  11710. anthro: {
  11711. height: math.unit(6 * 7 / 12, "feet"),
  11712. weight: math.unit(100, "lb"),
  11713. name: "Anthro",
  11714. image: {
  11715. source: "./media/characters/scales/anthro.svg",
  11716. extra: 1,
  11717. bottom: 0.06
  11718. }
  11719. },
  11720. },
  11721. [
  11722. {
  11723. name: "Normal",
  11724. height: math.unit(12, "feet"),
  11725. default: true
  11726. },
  11727. ]
  11728. ))
  11729. characterMakers.push(() => makeCharacter(
  11730. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11731. {
  11732. front: {
  11733. height: math.unit(6, "feet"),
  11734. weight: math.unit(150, "lb"),
  11735. name: "Front",
  11736. image: {
  11737. source: "./media/characters/koragos/front.svg",
  11738. extra: 841 / 794,
  11739. bottom: 0.035
  11740. }
  11741. },
  11742. back: {
  11743. height: math.unit(6, "feet"),
  11744. weight: math.unit(150, "lb"),
  11745. name: "Back",
  11746. image: {
  11747. source: "./media/characters/koragos/back.svg",
  11748. extra: 841 / 810,
  11749. bottom: 0.022
  11750. }
  11751. },
  11752. },
  11753. [
  11754. {
  11755. name: "Normal",
  11756. height: math.unit(6 + 11 / 12, "feet"),
  11757. default: true
  11758. },
  11759. {
  11760. name: "Macro",
  11761. height: math.unit(490, "feet")
  11762. },
  11763. {
  11764. name: "Megamacro",
  11765. height: math.unit(10, "miles")
  11766. },
  11767. {
  11768. name: "Gigamacro",
  11769. height: math.unit(50, "miles")
  11770. },
  11771. ]
  11772. ))
  11773. characterMakers.push(() => makeCharacter(
  11774. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11775. {
  11776. front: {
  11777. height: math.unit(6, "feet"),
  11778. weight: math.unit(250, "lb"),
  11779. name: "Front",
  11780. image: {
  11781. source: "./media/characters/xylrem/front.svg",
  11782. extra: 3323 / 3050,
  11783. bottom: 0.065
  11784. }
  11785. },
  11786. },
  11787. [
  11788. {
  11789. name: "Micro",
  11790. height: math.unit(4, "feet")
  11791. },
  11792. {
  11793. name: "Normal",
  11794. height: math.unit(16, "feet"),
  11795. default: true
  11796. },
  11797. {
  11798. name: "Macro",
  11799. height: math.unit(2720, "feet")
  11800. },
  11801. {
  11802. name: "Megamacro",
  11803. height: math.unit(25000, "miles")
  11804. },
  11805. ]
  11806. ))
  11807. characterMakers.push(() => makeCharacter(
  11808. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11809. {
  11810. front: {
  11811. height: math.unit(8, "feet"),
  11812. weight: math.unit(250, "kg"),
  11813. name: "Front",
  11814. image: {
  11815. source: "./media/characters/ikideru/front.svg",
  11816. extra: 930 / 870,
  11817. bottom: 0.087
  11818. }
  11819. },
  11820. back: {
  11821. height: math.unit(8, "feet"),
  11822. weight: math.unit(250, "kg"),
  11823. name: "Back",
  11824. image: {
  11825. source: "./media/characters/ikideru/back.svg",
  11826. extra: 919 / 852,
  11827. bottom: 0.055
  11828. }
  11829. },
  11830. },
  11831. [
  11832. {
  11833. name: "Rare",
  11834. height: math.unit(8, "feet"),
  11835. default: true
  11836. },
  11837. {
  11838. name: "Playful Loom",
  11839. height: math.unit(80, "feet")
  11840. },
  11841. {
  11842. name: "City Leaner",
  11843. height: math.unit(230, "feet")
  11844. },
  11845. {
  11846. name: "Megamacro",
  11847. height: math.unit(2500, "feet")
  11848. },
  11849. {
  11850. name: "Gigamacro",
  11851. height: math.unit(26400, "feet")
  11852. },
  11853. {
  11854. name: "Tectonic Shifter",
  11855. height: math.unit(1.7, "megameters")
  11856. },
  11857. {
  11858. name: "Planet Carer",
  11859. height: math.unit(21, "megameters")
  11860. },
  11861. {
  11862. name: "God",
  11863. height: math.unit(11157.22, "parsecs")
  11864. },
  11865. ]
  11866. ))
  11867. characterMakers.push(() => makeCharacter(
  11868. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11869. {
  11870. front: {
  11871. height: math.unit(6, "feet"),
  11872. weight: math.unit(120, "lb"),
  11873. name: "Front",
  11874. image: {
  11875. source: "./media/characters/neo/front.svg"
  11876. }
  11877. },
  11878. },
  11879. [
  11880. {
  11881. name: "Micro",
  11882. height: math.unit(2, "inches"),
  11883. default: true
  11884. },
  11885. {
  11886. name: "Human Size",
  11887. height: math.unit(5 + 8 / 12, "feet")
  11888. },
  11889. ]
  11890. ))
  11891. characterMakers.push(() => makeCharacter(
  11892. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11893. {
  11894. front: {
  11895. height: math.unit(13 + 10 / 12, "feet"),
  11896. weight: math.unit(5320, "lb"),
  11897. name: "Front",
  11898. image: {
  11899. source: "./media/characters/chauncey-chantz/front.svg",
  11900. extra: 1587 / 1435,
  11901. bottom: 0.02
  11902. }
  11903. },
  11904. },
  11905. [
  11906. {
  11907. name: "Normal",
  11908. height: math.unit(13 + 10 / 12, "feet"),
  11909. default: true
  11910. },
  11911. {
  11912. name: "Macro",
  11913. height: math.unit(45, "feet")
  11914. },
  11915. {
  11916. name: "Megamacro",
  11917. height: math.unit(250, "miles")
  11918. },
  11919. {
  11920. name: "Planetary",
  11921. height: math.unit(10000, "miles")
  11922. },
  11923. {
  11924. name: "Galactic",
  11925. height: math.unit(40000, "parsecs")
  11926. },
  11927. {
  11928. name: "Universal",
  11929. height: math.unit(1, "yottameter")
  11930. },
  11931. ]
  11932. ))
  11933. characterMakers.push(() => makeCharacter(
  11934. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11935. {
  11936. front: {
  11937. height: math.unit(6, "feet"),
  11938. weight: math.unit(150, "lb"),
  11939. name: "Front",
  11940. image: {
  11941. source: "./media/characters/epifox/front.svg",
  11942. extra: 1,
  11943. bottom: 0.075
  11944. }
  11945. },
  11946. },
  11947. [
  11948. {
  11949. name: "Micro",
  11950. height: math.unit(6, "inches")
  11951. },
  11952. {
  11953. name: "Normal",
  11954. height: math.unit(12, "feet"),
  11955. default: true
  11956. },
  11957. {
  11958. name: "Macro",
  11959. height: math.unit(3810, "feet")
  11960. },
  11961. {
  11962. name: "Megamacro",
  11963. height: math.unit(500, "miles")
  11964. },
  11965. ]
  11966. ))
  11967. characterMakers.push(() => makeCharacter(
  11968. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11969. {
  11970. front: {
  11971. height: math.unit(1.8796, "m"),
  11972. weight: math.unit(230, "lb"),
  11973. name: "Front",
  11974. image: {
  11975. source: "./media/characters/colin-t/front.svg",
  11976. extra: 1272 / 1193,
  11977. bottom: 0.07
  11978. }
  11979. },
  11980. },
  11981. [
  11982. {
  11983. name: "Micro",
  11984. height: math.unit(0.571, "meters")
  11985. },
  11986. {
  11987. name: "Normal",
  11988. height: math.unit(1.8796, "meters"),
  11989. default: true
  11990. },
  11991. {
  11992. name: "Tall",
  11993. height: math.unit(4, "meters")
  11994. },
  11995. {
  11996. name: "Macro",
  11997. height: math.unit(67.241, "meters")
  11998. },
  11999. {
  12000. name: "Megamacro",
  12001. height: math.unit(371.856, "meters")
  12002. },
  12003. {
  12004. name: "Planetary",
  12005. height: math.unit(12631.5689, "km")
  12006. },
  12007. ]
  12008. ))
  12009. characterMakers.push(() => makeCharacter(
  12010. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12011. {
  12012. front: {
  12013. height: math.unit(1.85, "meters"),
  12014. weight: math.unit(80, "kg"),
  12015. name: "Front",
  12016. image: {
  12017. source: "./media/characters/matvei/front.svg",
  12018. extra: 614 / 594,
  12019. bottom: 0.01
  12020. }
  12021. },
  12022. },
  12023. [
  12024. {
  12025. name: "Normal",
  12026. height: math.unit(1.85, "meters"),
  12027. default: true
  12028. },
  12029. ]
  12030. ))
  12031. characterMakers.push(() => makeCharacter(
  12032. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12033. {
  12034. front: {
  12035. height: math.unit(5 + 9 / 12, "feet"),
  12036. weight: math.unit(70, "lb"),
  12037. name: "Front",
  12038. image: {
  12039. source: "./media/characters/quincy/front.svg",
  12040. extra: 3041 / 2751
  12041. }
  12042. },
  12043. back: {
  12044. height: math.unit(5 + 9 / 12, "feet"),
  12045. weight: math.unit(70, "lb"),
  12046. name: "Back",
  12047. image: {
  12048. source: "./media/characters/quincy/back.svg",
  12049. extra: 3041 / 2751
  12050. }
  12051. },
  12052. flying: {
  12053. height: math.unit(5 + 4 / 12, "feet"),
  12054. weight: math.unit(70, "lb"),
  12055. name: "Flying",
  12056. image: {
  12057. source: "./media/characters/quincy/flying.svg",
  12058. extra: 1044 / 930
  12059. }
  12060. },
  12061. },
  12062. [
  12063. {
  12064. name: "Micro",
  12065. height: math.unit(3, "cm")
  12066. },
  12067. {
  12068. name: "Normal",
  12069. height: math.unit(5 + 9 / 12, "feet")
  12070. },
  12071. {
  12072. name: "Macro",
  12073. height: math.unit(200, "meters"),
  12074. default: true
  12075. },
  12076. {
  12077. name: "Megamacro",
  12078. height: math.unit(1000, "meters")
  12079. },
  12080. ]
  12081. ))
  12082. characterMakers.push(() => makeCharacter(
  12083. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12084. {
  12085. front: {
  12086. height: math.unit(3 + 11/12, "feet"),
  12087. weight: math.unit(50, "lb"),
  12088. name: "Front",
  12089. image: {
  12090. source: "./media/characters/vanrel/front.svg",
  12091. extra: 1104/949,
  12092. bottom: 52/1156
  12093. }
  12094. },
  12095. back: {
  12096. height: math.unit(3 + 11/12, "feet"),
  12097. weight: math.unit(50, "lb"),
  12098. name: "Back",
  12099. image: {
  12100. source: "./media/characters/vanrel/back.svg",
  12101. extra: 1119/976,
  12102. bottom: 37/1156
  12103. }
  12104. },
  12105. tome: {
  12106. height: math.unit(1.35, "feet"),
  12107. weight: math.unit(10, "lb"),
  12108. name: "Vanrel's Tome",
  12109. rename: true,
  12110. image: {
  12111. source: "./media/characters/vanrel/tome.svg"
  12112. }
  12113. },
  12114. beans: {
  12115. height: math.unit(0.89, "feet"),
  12116. name: "Beans",
  12117. image: {
  12118. source: "./media/characters/vanrel/beans.svg"
  12119. }
  12120. },
  12121. },
  12122. [
  12123. {
  12124. name: "Normal",
  12125. height: math.unit(3 + 11/12, "feet"),
  12126. default: true
  12127. },
  12128. ]
  12129. ))
  12130. characterMakers.push(() => makeCharacter(
  12131. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12132. {
  12133. front: {
  12134. height: math.unit(7 + 5 / 12, "feet"),
  12135. name: "Front",
  12136. image: {
  12137. source: "./media/characters/kuiper-vanrel/front.svg",
  12138. extra: 1219/1169,
  12139. bottom: 69/1288
  12140. }
  12141. },
  12142. back: {
  12143. height: math.unit(7 + 5 / 12, "feet"),
  12144. name: "Back",
  12145. image: {
  12146. source: "./media/characters/kuiper-vanrel/back.svg",
  12147. extra: 1236/1193,
  12148. bottom: 27/1263
  12149. }
  12150. },
  12151. foot: {
  12152. height: math.unit(0.55, "meters"),
  12153. name: "Foot",
  12154. image: {
  12155. source: "./media/characters/kuiper-vanrel/foot.svg",
  12156. }
  12157. },
  12158. battle: {
  12159. height: math.unit(6.824, "feet"),
  12160. name: "Battle",
  12161. image: {
  12162. source: "./media/characters/kuiper-vanrel/battle.svg",
  12163. extra: 1466 / 1327,
  12164. bottom: 29 / 1492.5
  12165. }
  12166. },
  12167. meerkui: {
  12168. height: math.unit(18, "inches"),
  12169. name: "Meerkui",
  12170. image: {
  12171. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12172. extra: 1354/1289,
  12173. bottom: 69/1423
  12174. }
  12175. },
  12176. },
  12177. [
  12178. {
  12179. name: "Normal",
  12180. height: math.unit(7 + 5 / 12, "feet"),
  12181. default: true
  12182. },
  12183. ]
  12184. ))
  12185. characterMakers.push(() => makeCharacter(
  12186. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12187. {
  12188. front: {
  12189. height: math.unit(8 + 5 / 12, "feet"),
  12190. name: "Front",
  12191. image: {
  12192. source: "./media/characters/keset-vanrel/front.svg",
  12193. extra: 1231/1148,
  12194. bottom: 82/1313
  12195. }
  12196. },
  12197. back: {
  12198. height: math.unit(8 + 5 / 12, "feet"),
  12199. name: "Back",
  12200. image: {
  12201. source: "./media/characters/keset-vanrel/back.svg",
  12202. extra: 1240/1174,
  12203. bottom: 33/1273
  12204. }
  12205. },
  12206. hand: {
  12207. height: math.unit(0.6, "meters"),
  12208. name: "Hand",
  12209. image: {
  12210. source: "./media/characters/keset-vanrel/hand.svg"
  12211. }
  12212. },
  12213. foot: {
  12214. height: math.unit(0.94978, "meters"),
  12215. name: "Foot",
  12216. image: {
  12217. source: "./media/characters/keset-vanrel/foot.svg"
  12218. }
  12219. },
  12220. battle: {
  12221. height: math.unit(7.408, "feet"),
  12222. name: "Battle",
  12223. image: {
  12224. source: "./media/characters/keset-vanrel/battle.svg",
  12225. extra: 1890 / 1386,
  12226. bottom: 73.28 / 1970
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Normal",
  12233. height: math.unit(8 + 5 / 12, "feet"),
  12234. default: true
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(6, "feet"),
  12243. weight: math.unit(150, "lb"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/neos/front.svg",
  12247. extra: 1696 / 992,
  12248. bottom: 0.14
  12249. }
  12250. },
  12251. },
  12252. [
  12253. {
  12254. name: "Normal",
  12255. height: math.unit(54, "cm"),
  12256. default: true
  12257. },
  12258. {
  12259. name: "Macro",
  12260. height: math.unit(100, "m")
  12261. },
  12262. {
  12263. name: "Megamacro",
  12264. height: math.unit(10, "km")
  12265. },
  12266. {
  12267. name: "Megamacro+",
  12268. height: math.unit(100, "km")
  12269. },
  12270. {
  12271. name: "Gigamacro",
  12272. height: math.unit(100, "Mm")
  12273. },
  12274. {
  12275. name: "Teramacro",
  12276. height: math.unit(100, "Gm")
  12277. },
  12278. {
  12279. name: "Examacro",
  12280. height: math.unit(100, "Em")
  12281. },
  12282. {
  12283. name: "Godly",
  12284. height: math.unit(10000, "Ym")
  12285. },
  12286. {
  12287. name: "Beyond Godly",
  12288. height: math.unit(25, "multiverses")
  12289. },
  12290. ]
  12291. ))
  12292. characterMakers.push(() => makeCharacter(
  12293. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12294. {
  12295. feminine: {
  12296. height: math.unit(5, "feet"),
  12297. weight: math.unit(100, "lb"),
  12298. name: "Feminine",
  12299. image: {
  12300. source: "./media/characters/sammy-mouse/feminine.svg",
  12301. extra: 2526 / 2425,
  12302. bottom: 0.123
  12303. }
  12304. },
  12305. masculine: {
  12306. height: math.unit(5, "feet"),
  12307. weight: math.unit(100, "lb"),
  12308. name: "Masculine",
  12309. image: {
  12310. source: "./media/characters/sammy-mouse/masculine.svg",
  12311. extra: 2526 / 2425,
  12312. bottom: 0.123
  12313. }
  12314. },
  12315. },
  12316. [
  12317. {
  12318. name: "Micro",
  12319. height: math.unit(5, "inches")
  12320. },
  12321. {
  12322. name: "Normal",
  12323. height: math.unit(5, "feet"),
  12324. default: true
  12325. },
  12326. {
  12327. name: "Macro",
  12328. height: math.unit(60, "feet")
  12329. },
  12330. ]
  12331. ))
  12332. characterMakers.push(() => makeCharacter(
  12333. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12334. {
  12335. front: {
  12336. height: math.unit(4, "feet"),
  12337. weight: math.unit(50, "lb"),
  12338. name: "Front",
  12339. image: {
  12340. source: "./media/characters/kole/front.svg",
  12341. extra: 1423 / 1303,
  12342. bottom: 0.025
  12343. }
  12344. },
  12345. back: {
  12346. height: math.unit(4, "feet"),
  12347. weight: math.unit(50, "lb"),
  12348. name: "Back",
  12349. image: {
  12350. source: "./media/characters/kole/back.svg",
  12351. extra: 1426 / 1280,
  12352. bottom: 0.02
  12353. }
  12354. },
  12355. },
  12356. [
  12357. {
  12358. name: "Normal",
  12359. height: math.unit(4, "feet"),
  12360. default: true
  12361. },
  12362. ]
  12363. ))
  12364. characterMakers.push(() => makeCharacter(
  12365. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12366. {
  12367. front: {
  12368. height: math.unit(2.5, "feet"),
  12369. weight: math.unit(32, "lb"),
  12370. name: "Front",
  12371. image: {
  12372. source: "./media/characters/rufran/front.svg",
  12373. extra: 1313/885,
  12374. bottom: 94/1407
  12375. }
  12376. },
  12377. side: {
  12378. height: math.unit(2.5, "feet"),
  12379. weight: math.unit(32, "lb"),
  12380. name: "Side",
  12381. image: {
  12382. source: "./media/characters/rufran/side.svg",
  12383. extra: 1109/852,
  12384. bottom: 118/1227
  12385. }
  12386. },
  12387. back: {
  12388. height: math.unit(2.5, "feet"),
  12389. weight: math.unit(32, "lb"),
  12390. name: "Back",
  12391. image: {
  12392. source: "./media/characters/rufran/back.svg",
  12393. extra: 1280/878,
  12394. bottom: 131/1411
  12395. }
  12396. },
  12397. mouth: {
  12398. height: math.unit(1.13, "feet"),
  12399. name: "Mouth",
  12400. image: {
  12401. source: "./media/characters/rufran/mouth.svg"
  12402. }
  12403. },
  12404. foot: {
  12405. height: math.unit(1.33, "feet"),
  12406. name: "Foot",
  12407. image: {
  12408. source: "./media/characters/rufran/foot.svg"
  12409. }
  12410. },
  12411. koboldFront: {
  12412. height: math.unit(2 + 6 / 12, "feet"),
  12413. weight: math.unit(20, "lb"),
  12414. name: "Front (Kobold)",
  12415. image: {
  12416. source: "./media/characters/rufran/kobold-front.svg",
  12417. extra: 2041 / 1839,
  12418. bottom: 0.055
  12419. }
  12420. },
  12421. koboldBack: {
  12422. height: math.unit(2 + 6 / 12, "feet"),
  12423. weight: math.unit(20, "lb"),
  12424. name: "Back (Kobold)",
  12425. image: {
  12426. source: "./media/characters/rufran/kobold-back.svg",
  12427. extra: 2054 / 1839,
  12428. bottom: 0.01
  12429. }
  12430. },
  12431. koboldHand: {
  12432. height: math.unit(0.2166, "meters"),
  12433. name: "Hand (Kobold)",
  12434. image: {
  12435. source: "./media/characters/rufran/kobold-hand.svg"
  12436. }
  12437. },
  12438. koboldFoot: {
  12439. height: math.unit(0.185, "meters"),
  12440. name: "Foot (Kobold)",
  12441. image: {
  12442. source: "./media/characters/rufran/kobold-foot.svg"
  12443. }
  12444. },
  12445. },
  12446. [
  12447. {
  12448. name: "Micro",
  12449. height: math.unit(1, "inch")
  12450. },
  12451. {
  12452. name: "Normal",
  12453. height: math.unit(2 + 6 / 12, "feet"),
  12454. default: true
  12455. },
  12456. {
  12457. name: "Big",
  12458. height: math.unit(60, "feet")
  12459. },
  12460. {
  12461. name: "Macro",
  12462. height: math.unit(325, "feet")
  12463. },
  12464. ]
  12465. ))
  12466. characterMakers.push(() => makeCharacter(
  12467. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12468. {
  12469. front: {
  12470. height: math.unit(0.3, "meters"),
  12471. weight: math.unit(3.5, "kg"),
  12472. name: "Front",
  12473. image: {
  12474. source: "./media/characters/chip/front.svg",
  12475. extra: 748 / 674
  12476. }
  12477. },
  12478. },
  12479. [
  12480. {
  12481. name: "Micro",
  12482. height: math.unit(1, "inch"),
  12483. default: true
  12484. },
  12485. ]
  12486. ))
  12487. characterMakers.push(() => makeCharacter(
  12488. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12489. {
  12490. side: {
  12491. height: math.unit(2.3, "meters"),
  12492. weight: math.unit(3500, "lb"),
  12493. name: "Side",
  12494. image: {
  12495. source: "./media/characters/torvid/side.svg",
  12496. extra: 1972 / 722,
  12497. bottom: 0.035
  12498. }
  12499. },
  12500. },
  12501. [
  12502. {
  12503. name: "Normal",
  12504. height: math.unit(2.3, "meters"),
  12505. default: true
  12506. },
  12507. ]
  12508. ))
  12509. characterMakers.push(() => makeCharacter(
  12510. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12511. {
  12512. front: {
  12513. height: math.unit(2, "meters"),
  12514. weight: math.unit(150.5, "kg"),
  12515. name: "Front",
  12516. image: {
  12517. source: "./media/characters/susan/front.svg",
  12518. extra: 693 / 635,
  12519. bottom: 0.05
  12520. }
  12521. },
  12522. },
  12523. [
  12524. {
  12525. name: "Megamacro",
  12526. height: math.unit(505, "miles"),
  12527. default: true
  12528. },
  12529. ]
  12530. ))
  12531. characterMakers.push(() => makeCharacter(
  12532. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12533. {
  12534. front: {
  12535. height: math.unit(6, "feet"),
  12536. weight: math.unit(150, "lb"),
  12537. name: "Front",
  12538. image: {
  12539. source: "./media/characters/raindrops/front.svg",
  12540. extra: 2655 / 2461,
  12541. bottom: 49 / 2705
  12542. }
  12543. },
  12544. back: {
  12545. height: math.unit(6, "feet"),
  12546. weight: math.unit(150, "lb"),
  12547. name: "Back",
  12548. image: {
  12549. source: "./media/characters/raindrops/back.svg",
  12550. extra: 2574 / 2400,
  12551. bottom: 65 / 2634
  12552. }
  12553. },
  12554. },
  12555. [
  12556. {
  12557. name: "Micro",
  12558. height: math.unit(6, "inches")
  12559. },
  12560. {
  12561. name: "Normal",
  12562. height: math.unit(6 + 2 / 12, "feet")
  12563. },
  12564. {
  12565. name: "Macro",
  12566. height: math.unit(131, "feet"),
  12567. default: true
  12568. },
  12569. {
  12570. name: "Megamacro",
  12571. height: math.unit(15, "miles")
  12572. },
  12573. {
  12574. name: "Gigamacro",
  12575. height: math.unit(4000, "miles")
  12576. },
  12577. {
  12578. name: "Teramacro",
  12579. height: math.unit(315000, "miles")
  12580. },
  12581. ]
  12582. ))
  12583. characterMakers.push(() => makeCharacter(
  12584. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12585. {
  12586. front: {
  12587. height: math.unit(2.794, "meters"),
  12588. weight: math.unit(325, "kg"),
  12589. name: "Front",
  12590. image: {
  12591. source: "./media/characters/tezwa/front.svg",
  12592. extra: 2083 / 1906,
  12593. bottom: 0.031
  12594. }
  12595. },
  12596. foot: {
  12597. height: math.unit(0.687, "meters"),
  12598. name: "Foot",
  12599. image: {
  12600. source: "./media/characters/tezwa/foot.svg"
  12601. }
  12602. },
  12603. },
  12604. [
  12605. {
  12606. name: "Normal",
  12607. height: math.unit(9 + 2 / 12, "feet"),
  12608. default: true
  12609. },
  12610. ]
  12611. ))
  12612. characterMakers.push(() => makeCharacter(
  12613. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12614. {
  12615. front: {
  12616. height: math.unit(58, "feet"),
  12617. weight: math.unit(89000, "lb"),
  12618. name: "Front",
  12619. image: {
  12620. source: "./media/characters/typhus/front.svg",
  12621. extra: 816 / 800,
  12622. bottom: 0.065
  12623. }
  12624. },
  12625. },
  12626. [
  12627. {
  12628. name: "Macro",
  12629. height: math.unit(58, "feet"),
  12630. default: true
  12631. },
  12632. ]
  12633. ))
  12634. characterMakers.push(() => makeCharacter(
  12635. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12636. {
  12637. front: {
  12638. height: math.unit(12, "feet"),
  12639. weight: math.unit(6, "tonnes"),
  12640. name: "Front",
  12641. image: {
  12642. source: "./media/characters/lyra-von-wulf/front.svg",
  12643. extra: 1,
  12644. bottom: 0.10
  12645. }
  12646. },
  12647. frontMecha: {
  12648. height: math.unit(12, "feet"),
  12649. weight: math.unit(12, "tonnes"),
  12650. name: "Front (Mecha)",
  12651. image: {
  12652. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12653. extra: 1,
  12654. bottom: 0.042
  12655. }
  12656. },
  12657. maw: {
  12658. height: math.unit(2.2, "feet"),
  12659. name: "Maw",
  12660. image: {
  12661. source: "./media/characters/lyra-von-wulf/maw.svg"
  12662. }
  12663. },
  12664. },
  12665. [
  12666. {
  12667. name: "Normal",
  12668. height: math.unit(12, "feet"),
  12669. default: true
  12670. },
  12671. {
  12672. name: "Classic",
  12673. height: math.unit(50, "feet")
  12674. },
  12675. {
  12676. name: "Macro",
  12677. height: math.unit(500, "feet")
  12678. },
  12679. {
  12680. name: "Megamacro",
  12681. height: math.unit(1, "mile")
  12682. },
  12683. {
  12684. name: "Gigamacro",
  12685. height: math.unit(400, "miles")
  12686. },
  12687. {
  12688. name: "Teramacro",
  12689. height: math.unit(22000, "miles")
  12690. },
  12691. {
  12692. name: "Solarmacro",
  12693. height: math.unit(8600000, "miles")
  12694. },
  12695. {
  12696. name: "Galactic",
  12697. height: math.unit(1057000, "lightyears")
  12698. },
  12699. ]
  12700. ))
  12701. characterMakers.push(() => makeCharacter(
  12702. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12703. {
  12704. front: {
  12705. height: math.unit(6 + 10 / 12, "feet"),
  12706. weight: math.unit(150, "lb"),
  12707. name: "Front",
  12708. image: {
  12709. source: "./media/characters/dixon/front.svg",
  12710. extra: 3361 / 3209,
  12711. bottom: 0.01
  12712. }
  12713. },
  12714. },
  12715. [
  12716. {
  12717. name: "Normal",
  12718. height: math.unit(6 + 10 / 12, "feet"),
  12719. default: true
  12720. },
  12721. {
  12722. name: "Big",
  12723. height: math.unit(12, "meters")
  12724. },
  12725. {
  12726. name: "Macro",
  12727. height: math.unit(500, "meters")
  12728. },
  12729. {
  12730. name: "Megamacro",
  12731. height: math.unit(2, "km")
  12732. },
  12733. ]
  12734. ))
  12735. characterMakers.push(() => makeCharacter(
  12736. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12737. {
  12738. front: {
  12739. height: math.unit(185, "cm"),
  12740. weight: math.unit(68, "kg"),
  12741. name: "Front",
  12742. image: {
  12743. source: "./media/characters/kauko/front.svg",
  12744. extra: 1455 / 1421,
  12745. bottom: 0.03
  12746. }
  12747. },
  12748. back: {
  12749. height: math.unit(185, "cm"),
  12750. weight: math.unit(68, "kg"),
  12751. name: "Back",
  12752. image: {
  12753. source: "./media/characters/kauko/back.svg",
  12754. extra: 1455 / 1421,
  12755. bottom: 0.004
  12756. }
  12757. },
  12758. },
  12759. [
  12760. {
  12761. name: "Normal",
  12762. height: math.unit(185, "cm"),
  12763. default: true
  12764. },
  12765. ]
  12766. ))
  12767. characterMakers.push(() => makeCharacter(
  12768. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12769. {
  12770. front: {
  12771. height: math.unit(6, "feet"),
  12772. weight: math.unit(150, "kg"),
  12773. name: "Front",
  12774. image: {
  12775. source: "./media/characters/varg/front.svg",
  12776. extra: 1108 / 1018,
  12777. bottom: 0.0375
  12778. }
  12779. },
  12780. },
  12781. [
  12782. {
  12783. name: "Normal",
  12784. height: math.unit(5, "meters")
  12785. },
  12786. {
  12787. name: "Macro",
  12788. height: math.unit(200, "meters")
  12789. },
  12790. {
  12791. name: "Megamacro",
  12792. height: math.unit(20, "kilometers")
  12793. },
  12794. {
  12795. name: "True Size",
  12796. height: math.unit(211, "km"),
  12797. default: true
  12798. },
  12799. {
  12800. name: "Gigamacro",
  12801. height: math.unit(1000, "km")
  12802. },
  12803. {
  12804. name: "Gigamacro+",
  12805. height: math.unit(8000, "km")
  12806. },
  12807. {
  12808. name: "Teramacro",
  12809. height: math.unit(1000000, "km")
  12810. },
  12811. ]
  12812. ))
  12813. characterMakers.push(() => makeCharacter(
  12814. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12815. {
  12816. front: {
  12817. height: math.unit(7 + 7 / 12, "feet"),
  12818. weight: math.unit(267, "lb"),
  12819. name: "Front",
  12820. image: {
  12821. source: "./media/characters/dayza/front.svg",
  12822. extra: 1262 / 1200,
  12823. bottom: 0.035
  12824. }
  12825. },
  12826. side: {
  12827. height: math.unit(7 + 7 / 12, "feet"),
  12828. weight: math.unit(267, "lb"),
  12829. name: "Side",
  12830. image: {
  12831. source: "./media/characters/dayza/side.svg",
  12832. extra: 1295 / 1245,
  12833. bottom: 0.05
  12834. }
  12835. },
  12836. back: {
  12837. height: math.unit(7 + 7 / 12, "feet"),
  12838. weight: math.unit(267, "lb"),
  12839. name: "Back",
  12840. image: {
  12841. source: "./media/characters/dayza/back.svg",
  12842. extra: 1241 / 1170
  12843. }
  12844. },
  12845. },
  12846. [
  12847. {
  12848. name: "Normal",
  12849. height: math.unit(7 + 7 / 12, "feet"),
  12850. default: true
  12851. },
  12852. {
  12853. name: "Macro",
  12854. height: math.unit(155, "feet")
  12855. },
  12856. ]
  12857. ))
  12858. characterMakers.push(() => makeCharacter(
  12859. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12860. {
  12861. front: {
  12862. height: math.unit(6 + 5 / 12, "feet"),
  12863. weight: math.unit(160, "lb"),
  12864. name: "Front",
  12865. image: {
  12866. source: "./media/characters/xanthos/front.svg",
  12867. extra: 1,
  12868. bottom: 0.04
  12869. }
  12870. },
  12871. back: {
  12872. height: math.unit(6 + 5 / 12, "feet"),
  12873. weight: math.unit(160, "lb"),
  12874. name: "Back",
  12875. image: {
  12876. source: "./media/characters/xanthos/back.svg",
  12877. extra: 1,
  12878. bottom: 0.03
  12879. }
  12880. },
  12881. hand: {
  12882. height: math.unit(0.928, "feet"),
  12883. name: "Hand",
  12884. image: {
  12885. source: "./media/characters/xanthos/hand.svg"
  12886. }
  12887. },
  12888. foot: {
  12889. height: math.unit(1.286, "feet"),
  12890. name: "Foot",
  12891. image: {
  12892. source: "./media/characters/xanthos/foot.svg"
  12893. }
  12894. },
  12895. },
  12896. [
  12897. {
  12898. name: "Normal",
  12899. height: math.unit(6 + 5 / 12, "feet"),
  12900. default: true
  12901. },
  12902. {
  12903. name: "Normal+",
  12904. height: math.unit(6, "meters")
  12905. },
  12906. {
  12907. name: "Macro",
  12908. height: math.unit(40, "feet")
  12909. },
  12910. {
  12911. name: "Macro+",
  12912. height: math.unit(200, "meters")
  12913. },
  12914. {
  12915. name: "Megamacro",
  12916. height: math.unit(20, "km")
  12917. },
  12918. {
  12919. name: "Megamacro+",
  12920. height: math.unit(100, "km")
  12921. },
  12922. {
  12923. name: "Gigamacro",
  12924. height: math.unit(200, "megameters")
  12925. },
  12926. {
  12927. name: "Gigamacro+",
  12928. height: math.unit(1.5, "gigameters")
  12929. },
  12930. ]
  12931. ))
  12932. characterMakers.push(() => makeCharacter(
  12933. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12934. {
  12935. front: {
  12936. height: math.unit(6 + 3 / 12, "feet"),
  12937. weight: math.unit(215, "lb"),
  12938. name: "Front",
  12939. image: {
  12940. source: "./media/characters/grynn/front.svg",
  12941. extra: 4627 / 4209,
  12942. bottom: 0.047
  12943. }
  12944. },
  12945. },
  12946. [
  12947. {
  12948. name: "Micro",
  12949. height: math.unit(6, "inches")
  12950. },
  12951. {
  12952. name: "Normal",
  12953. height: math.unit(6 + 3 / 12, "feet"),
  12954. default: true
  12955. },
  12956. {
  12957. name: "Big",
  12958. height: math.unit(104, "feet")
  12959. },
  12960. {
  12961. name: "Macro",
  12962. height: math.unit(944, "feet")
  12963. },
  12964. {
  12965. name: "Macro+",
  12966. height: math.unit(9480, "feet")
  12967. },
  12968. {
  12969. name: "Megamacro",
  12970. height: math.unit(78752, "feet")
  12971. },
  12972. {
  12973. name: "Megamacro+",
  12974. height: math.unit(630128, "feet")
  12975. },
  12976. {
  12977. name: "Megamacro++",
  12978. height: math.unit(3150695, "feet")
  12979. },
  12980. ]
  12981. ))
  12982. characterMakers.push(() => makeCharacter(
  12983. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12984. {
  12985. front: {
  12986. height: math.unit(7 + 5 / 12, "feet"),
  12987. weight: math.unit(450, "lb"),
  12988. name: "Front",
  12989. image: {
  12990. source: "./media/characters/mocha-aura/front.svg",
  12991. extra: 1907 / 1817,
  12992. bottom: 0.04
  12993. }
  12994. },
  12995. back: {
  12996. height: math.unit(7 + 5 / 12, "feet"),
  12997. weight: math.unit(450, "lb"),
  12998. name: "Back",
  12999. image: {
  13000. source: "./media/characters/mocha-aura/back.svg",
  13001. extra: 1900 / 1825,
  13002. bottom: 0.045
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Nano",
  13009. height: math.unit(1, "nm")
  13010. },
  13011. {
  13012. name: "Megamicro",
  13013. height: math.unit(1, "mm")
  13014. },
  13015. {
  13016. name: "Micro",
  13017. height: math.unit(3, "inches")
  13018. },
  13019. {
  13020. name: "Normal",
  13021. height: math.unit(7 + 5 / 12, "feet"),
  13022. default: true
  13023. },
  13024. {
  13025. name: "Macro",
  13026. height: math.unit(30, "feet")
  13027. },
  13028. {
  13029. name: "Megamacro",
  13030. height: math.unit(3500, "feet")
  13031. },
  13032. {
  13033. name: "Teramacro",
  13034. height: math.unit(500000, "miles")
  13035. },
  13036. {
  13037. name: "Petamacro",
  13038. height: math.unit(50000000000000000, "parsecs")
  13039. },
  13040. ]
  13041. ))
  13042. characterMakers.push(() => makeCharacter(
  13043. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13044. {
  13045. front: {
  13046. height: math.unit(6, "feet"),
  13047. weight: math.unit(150, "lb"),
  13048. name: "Front",
  13049. image: {
  13050. source: "./media/characters/ilisha-devya/front.svg",
  13051. extra: 1,
  13052. bottom: 0.175
  13053. }
  13054. },
  13055. back: {
  13056. height: math.unit(6, "feet"),
  13057. weight: math.unit(150, "lb"),
  13058. name: "Back",
  13059. image: {
  13060. source: "./media/characters/ilisha-devya/back.svg",
  13061. extra: 1,
  13062. bottom: 0.015
  13063. }
  13064. },
  13065. },
  13066. [
  13067. {
  13068. name: "Macro",
  13069. height: math.unit(500, "feet"),
  13070. default: true
  13071. },
  13072. {
  13073. name: "Megamacro",
  13074. height: math.unit(10, "miles")
  13075. },
  13076. {
  13077. name: "Gigamacro",
  13078. height: math.unit(100000, "miles")
  13079. },
  13080. {
  13081. name: "Examacro",
  13082. height: math.unit(1e9, "lightyears")
  13083. },
  13084. {
  13085. name: "Omniversal",
  13086. height: math.unit(1e33, "lightyears")
  13087. },
  13088. {
  13089. name: "Beyond Infinite",
  13090. height: math.unit(1e100, "lightyears")
  13091. },
  13092. ]
  13093. ))
  13094. characterMakers.push(() => makeCharacter(
  13095. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13096. {
  13097. Side: {
  13098. height: math.unit(6, "feet"),
  13099. weight: math.unit(150, "lb"),
  13100. name: "Side",
  13101. image: {
  13102. source: "./media/characters/mira/side.svg",
  13103. extra: 900 / 799,
  13104. bottom: 0.02
  13105. }
  13106. },
  13107. },
  13108. [
  13109. {
  13110. name: "Human Size",
  13111. height: math.unit(6, "feet")
  13112. },
  13113. {
  13114. name: "Macro",
  13115. height: math.unit(100, "feet"),
  13116. default: true
  13117. },
  13118. {
  13119. name: "Megamacro",
  13120. height: math.unit(10, "miles")
  13121. },
  13122. {
  13123. name: "Gigamacro",
  13124. height: math.unit(25000, "miles")
  13125. },
  13126. {
  13127. name: "Teramacro",
  13128. height: math.unit(300, "AU")
  13129. },
  13130. {
  13131. name: "Full Size",
  13132. height: math.unit(4.5e10, "lightyears")
  13133. },
  13134. ]
  13135. ))
  13136. characterMakers.push(() => makeCharacter(
  13137. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13138. {
  13139. front: {
  13140. height: math.unit(6, "feet"),
  13141. weight: math.unit(150, "lb"),
  13142. name: "Front",
  13143. image: {
  13144. source: "./media/characters/holly/front.svg",
  13145. extra: 639 / 606
  13146. }
  13147. },
  13148. back: {
  13149. height: math.unit(6, "feet"),
  13150. weight: math.unit(150, "lb"),
  13151. name: "Back",
  13152. image: {
  13153. source: "./media/characters/holly/back.svg",
  13154. extra: 623 / 598
  13155. }
  13156. },
  13157. frontWorking: {
  13158. height: math.unit(6, "feet"),
  13159. weight: math.unit(150, "lb"),
  13160. name: "Front (Working)",
  13161. image: {
  13162. source: "./media/characters/holly/front-working.svg",
  13163. extra: 607 / 577,
  13164. bottom: 0.048
  13165. }
  13166. },
  13167. },
  13168. [
  13169. {
  13170. name: "Normal",
  13171. height: math.unit(12 + 3 / 12, "feet"),
  13172. default: true
  13173. },
  13174. ]
  13175. ))
  13176. characterMakers.push(() => makeCharacter(
  13177. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13178. {
  13179. front: {
  13180. height: math.unit(6, "feet"),
  13181. weight: math.unit(150, "lb"),
  13182. name: "Front",
  13183. image: {
  13184. source: "./media/characters/porter/front.svg",
  13185. extra: 1,
  13186. bottom: 0.01
  13187. }
  13188. },
  13189. frontRobes: {
  13190. height: math.unit(6, "feet"),
  13191. weight: math.unit(150, "lb"),
  13192. name: "Front (Robes)",
  13193. image: {
  13194. source: "./media/characters/porter/front-robes.svg",
  13195. extra: 1.01,
  13196. bottom: 0.01
  13197. }
  13198. },
  13199. },
  13200. [
  13201. {
  13202. name: "Normal",
  13203. height: math.unit(11 + 9 / 12, "feet"),
  13204. default: true
  13205. },
  13206. ]
  13207. ))
  13208. characterMakers.push(() => makeCharacter(
  13209. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13210. {
  13211. legendary: {
  13212. height: math.unit(6, "feet"),
  13213. weight: math.unit(150, "lb"),
  13214. name: "Legendary",
  13215. image: {
  13216. source: "./media/characters/lucy/legendary.svg",
  13217. extra: 1355 / 1100,
  13218. bottom: 0.045
  13219. }
  13220. },
  13221. },
  13222. [
  13223. {
  13224. name: "Legendary",
  13225. height: math.unit(86882 * 2, "miles"),
  13226. default: true
  13227. },
  13228. ]
  13229. ))
  13230. characterMakers.push(() => makeCharacter(
  13231. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13232. {
  13233. front: {
  13234. height: math.unit(6, "feet"),
  13235. weight: math.unit(150, "lb"),
  13236. name: "Front",
  13237. image: {
  13238. source: "./media/characters/drusilla/front.svg",
  13239. extra: 678 / 635,
  13240. bottom: 0.03
  13241. }
  13242. },
  13243. back: {
  13244. height: math.unit(6, "feet"),
  13245. weight: math.unit(150, "lb"),
  13246. name: "Back",
  13247. image: {
  13248. source: "./media/characters/drusilla/back.svg",
  13249. extra: 678 / 635,
  13250. bottom: 0.005
  13251. }
  13252. },
  13253. },
  13254. [
  13255. {
  13256. name: "Macro",
  13257. height: math.unit(100, "feet")
  13258. },
  13259. {
  13260. name: "Canon Height",
  13261. height: math.unit(2000, "feet"),
  13262. default: true
  13263. },
  13264. ]
  13265. ))
  13266. characterMakers.push(() => makeCharacter(
  13267. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13268. {
  13269. front: {
  13270. height: math.unit(6, "feet"),
  13271. weight: math.unit(180, "lb"),
  13272. name: "Front",
  13273. image: {
  13274. source: "./media/characters/renard-thatch/front.svg",
  13275. extra: 2411 / 2275,
  13276. bottom: 0.01
  13277. }
  13278. },
  13279. frontPosing: {
  13280. height: math.unit(6, "feet"),
  13281. weight: math.unit(180, "lb"),
  13282. name: "Front (Posing)",
  13283. image: {
  13284. source: "./media/characters/renard-thatch/front-posing.svg",
  13285. extra: 2381 / 2261,
  13286. bottom: 0.01
  13287. }
  13288. },
  13289. back: {
  13290. height: math.unit(6, "feet"),
  13291. weight: math.unit(180, "lb"),
  13292. name: "Back",
  13293. image: {
  13294. source: "./media/characters/renard-thatch/back.svg",
  13295. extra: 2428 / 2288
  13296. }
  13297. },
  13298. },
  13299. [
  13300. {
  13301. name: "Micro",
  13302. height: math.unit(3, "inches")
  13303. },
  13304. {
  13305. name: "Default",
  13306. height: math.unit(6, "feet"),
  13307. default: true
  13308. },
  13309. {
  13310. name: "Macro",
  13311. height: math.unit(75, "feet")
  13312. },
  13313. ]
  13314. ))
  13315. characterMakers.push(() => makeCharacter(
  13316. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13317. {
  13318. front: {
  13319. height: math.unit(1450, "feet"),
  13320. weight: math.unit(1.21e6, "tons"),
  13321. name: "Front",
  13322. image: {
  13323. source: "./media/characters/sekvra/front.svg",
  13324. extra: 1,
  13325. bottom: 0.03
  13326. }
  13327. },
  13328. frontClothed: {
  13329. height: math.unit(1450, "feet"),
  13330. weight: math.unit(1.21e6, "tons"),
  13331. name: "Front (Clothed)",
  13332. image: {
  13333. source: "./media/characters/sekvra/front-clothed.svg",
  13334. extra: 1,
  13335. bottom: 0.03
  13336. }
  13337. },
  13338. side: {
  13339. height: math.unit(1450, "feet"),
  13340. weight: math.unit(1.21e6, "tons"),
  13341. name: "Side",
  13342. image: {
  13343. source: "./media/characters/sekvra/side.svg",
  13344. extra: 1,
  13345. bottom: 0.025
  13346. }
  13347. },
  13348. back: {
  13349. height: math.unit(1450, "feet"),
  13350. weight: math.unit(1.21e6, "tons"),
  13351. name: "Back",
  13352. image: {
  13353. source: "./media/characters/sekvra/back.svg",
  13354. extra: 1,
  13355. bottom: 0.005
  13356. }
  13357. },
  13358. },
  13359. [
  13360. {
  13361. name: "Macro",
  13362. height: math.unit(1450, "feet"),
  13363. default: true
  13364. },
  13365. {
  13366. name: "Megamacro",
  13367. height: math.unit(15000, "feet")
  13368. },
  13369. ]
  13370. ))
  13371. characterMakers.push(() => makeCharacter(
  13372. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13373. {
  13374. front: {
  13375. height: math.unit(6, "feet"),
  13376. weight: math.unit(150, "lb"),
  13377. name: "Front",
  13378. image: {
  13379. source: "./media/characters/carmine/front.svg",
  13380. extra: 1,
  13381. bottom: 0.035
  13382. }
  13383. },
  13384. frontArmor: {
  13385. height: math.unit(6, "feet"),
  13386. weight: math.unit(150, "lb"),
  13387. name: "Front (Armor)",
  13388. image: {
  13389. source: "./media/characters/carmine/front-armor.svg",
  13390. extra: 1,
  13391. bottom: 0.035
  13392. }
  13393. },
  13394. },
  13395. [
  13396. {
  13397. name: "Large",
  13398. height: math.unit(1, "mile")
  13399. },
  13400. {
  13401. name: "Huge",
  13402. height: math.unit(40, "miles"),
  13403. default: true
  13404. },
  13405. {
  13406. name: "Colossal",
  13407. height: math.unit(2500, "miles")
  13408. },
  13409. ]
  13410. ))
  13411. characterMakers.push(() => makeCharacter(
  13412. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13413. {
  13414. front: {
  13415. height: math.unit(6, "feet"),
  13416. weight: math.unit(150, "lb"),
  13417. name: "Front",
  13418. image: {
  13419. source: "./media/characters/elyssia/front.svg",
  13420. extra: 2201 / 2035,
  13421. bottom: 0.05
  13422. }
  13423. },
  13424. frontClothed: {
  13425. height: math.unit(6, "feet"),
  13426. weight: math.unit(150, "lb"),
  13427. name: "Front (Clothed)",
  13428. image: {
  13429. source: "./media/characters/elyssia/front-clothed.svg",
  13430. extra: 2201 / 2035,
  13431. bottom: 0.05
  13432. }
  13433. },
  13434. back: {
  13435. height: math.unit(6, "feet"),
  13436. weight: math.unit(150, "lb"),
  13437. name: "Back",
  13438. image: {
  13439. source: "./media/characters/elyssia/back.svg",
  13440. extra: 2201 / 2035,
  13441. bottom: 0.013
  13442. }
  13443. },
  13444. },
  13445. [
  13446. {
  13447. name: "Smaller",
  13448. height: math.unit(150, "feet")
  13449. },
  13450. {
  13451. name: "Standard",
  13452. height: math.unit(1400, "feet"),
  13453. default: true
  13454. },
  13455. {
  13456. name: "Distracted",
  13457. height: math.unit(15000, "feet")
  13458. },
  13459. ]
  13460. ))
  13461. characterMakers.push(() => makeCharacter(
  13462. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13463. {
  13464. front: {
  13465. height: math.unit(7 + 4 / 12, "feet"),
  13466. weight: math.unit(500, "lb"),
  13467. name: "Front",
  13468. image: {
  13469. source: "./media/characters/geno-maxwell/front.svg",
  13470. extra: 2207 / 2040,
  13471. bottom: 0.015
  13472. }
  13473. },
  13474. },
  13475. [
  13476. {
  13477. name: "Micro",
  13478. height: math.unit(3, "inches")
  13479. },
  13480. {
  13481. name: "Normal",
  13482. height: math.unit(7 + 4 / 12, "feet"),
  13483. default: true
  13484. },
  13485. {
  13486. name: "Macro",
  13487. height: math.unit(220, "feet")
  13488. },
  13489. {
  13490. name: "Megamacro",
  13491. height: math.unit(11, "miles")
  13492. },
  13493. ]
  13494. ))
  13495. characterMakers.push(() => makeCharacter(
  13496. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13497. {
  13498. front: {
  13499. height: math.unit(7 + 4 / 12, "feet"),
  13500. weight: math.unit(500, "lb"),
  13501. name: "Front",
  13502. image: {
  13503. source: "./media/characters/regena-maxwell/front.svg",
  13504. extra: 3115 / 2770,
  13505. bottom: 0.02
  13506. }
  13507. },
  13508. },
  13509. [
  13510. {
  13511. name: "Normal",
  13512. height: math.unit(7 + 4 / 12, "feet"),
  13513. default: true
  13514. },
  13515. {
  13516. name: "Macro",
  13517. height: math.unit(220, "feet")
  13518. },
  13519. {
  13520. name: "Megamacro",
  13521. height: math.unit(11, "miles")
  13522. },
  13523. ]
  13524. ))
  13525. characterMakers.push(() => makeCharacter(
  13526. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13527. {
  13528. front: {
  13529. height: math.unit(6, "feet"),
  13530. weight: math.unit(150, "lb"),
  13531. name: "Front",
  13532. image: {
  13533. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13534. extra: 860 / 690,
  13535. bottom: 0.03
  13536. }
  13537. },
  13538. },
  13539. [
  13540. {
  13541. name: "Normal",
  13542. height: math.unit(1.7, "meters"),
  13543. default: true
  13544. },
  13545. ]
  13546. ))
  13547. characterMakers.push(() => makeCharacter(
  13548. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13549. {
  13550. front: {
  13551. height: math.unit(6, "feet"),
  13552. weight: math.unit(150, "lb"),
  13553. name: "Front",
  13554. image: {
  13555. source: "./media/characters/quilly/front.svg",
  13556. extra: 890 / 776
  13557. }
  13558. },
  13559. },
  13560. [
  13561. {
  13562. name: "Gigamacro",
  13563. height: math.unit(404090, "miles"),
  13564. default: true
  13565. },
  13566. ]
  13567. ))
  13568. characterMakers.push(() => makeCharacter(
  13569. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13570. {
  13571. front: {
  13572. height: math.unit(7 + 8 / 12, "feet"),
  13573. weight: math.unit(350, "lb"),
  13574. name: "Front",
  13575. image: {
  13576. source: "./media/characters/tempest/front.svg",
  13577. extra: 1175 / 1086,
  13578. bottom: 0.02
  13579. }
  13580. },
  13581. },
  13582. [
  13583. {
  13584. name: "Normal",
  13585. height: math.unit(7 + 8 / 12, "feet"),
  13586. default: true
  13587. },
  13588. ]
  13589. ))
  13590. characterMakers.push(() => makeCharacter(
  13591. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13592. {
  13593. side: {
  13594. height: math.unit(4 + 5 / 12, "feet"),
  13595. weight: math.unit(80, "lb"),
  13596. name: "Side",
  13597. image: {
  13598. source: "./media/characters/rodger/side.svg",
  13599. extra: 1235 / 1118
  13600. }
  13601. },
  13602. },
  13603. [
  13604. {
  13605. name: "Micro",
  13606. height: math.unit(1, "inch")
  13607. },
  13608. {
  13609. name: "Normal",
  13610. height: math.unit(4 + 5 / 12, "feet"),
  13611. default: true
  13612. },
  13613. {
  13614. name: "Macro",
  13615. height: math.unit(120, "feet")
  13616. },
  13617. ]
  13618. ))
  13619. characterMakers.push(() => makeCharacter(
  13620. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13621. {
  13622. front: {
  13623. height: math.unit(6, "feet"),
  13624. weight: math.unit(150, "lb"),
  13625. name: "Front",
  13626. image: {
  13627. source: "./media/characters/danyel/front.svg",
  13628. extra: 1185 / 1123,
  13629. bottom: 0.05
  13630. }
  13631. },
  13632. },
  13633. [
  13634. {
  13635. name: "Shrunken",
  13636. height: math.unit(0.5, "mm")
  13637. },
  13638. {
  13639. name: "Micro",
  13640. height: math.unit(1, "mm"),
  13641. default: true
  13642. },
  13643. {
  13644. name: "Upsized",
  13645. height: math.unit(5 + 5 / 12, "feet")
  13646. },
  13647. ]
  13648. ))
  13649. characterMakers.push(() => makeCharacter(
  13650. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13651. {
  13652. front: {
  13653. height: math.unit(5 + 6 / 12, "feet"),
  13654. weight: math.unit(200, "lb"),
  13655. name: "Front",
  13656. image: {
  13657. source: "./media/characters/vivian-bijoux/front.svg",
  13658. extra: 1,
  13659. bottom: 0.072
  13660. }
  13661. },
  13662. },
  13663. [
  13664. {
  13665. name: "Normal",
  13666. height: math.unit(5 + 6 / 12, "feet"),
  13667. default: true
  13668. },
  13669. {
  13670. name: "Bad Dream",
  13671. height: math.unit(500, "feet")
  13672. },
  13673. {
  13674. name: "Nightmare",
  13675. height: math.unit(500, "miles")
  13676. },
  13677. ]
  13678. ))
  13679. characterMakers.push(() => makeCharacter(
  13680. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13681. {
  13682. front: {
  13683. height: math.unit(6 + 1 / 12, "feet"),
  13684. weight: math.unit(260, "lb"),
  13685. name: "Front",
  13686. image: {
  13687. source: "./media/characters/zeta/front.svg",
  13688. extra: 1968 / 1889,
  13689. bottom: 0.06
  13690. }
  13691. },
  13692. back: {
  13693. height: math.unit(6 + 1 / 12, "feet"),
  13694. weight: math.unit(260, "lb"),
  13695. name: "Back",
  13696. image: {
  13697. source: "./media/characters/zeta/back.svg",
  13698. extra: 1944 / 1858,
  13699. bottom: 0.03
  13700. }
  13701. },
  13702. hand: {
  13703. height: math.unit(1.112, "feet"),
  13704. name: "Hand",
  13705. image: {
  13706. source: "./media/characters/zeta/hand.svg"
  13707. }
  13708. },
  13709. foot: {
  13710. height: math.unit(1.48, "feet"),
  13711. name: "Foot",
  13712. image: {
  13713. source: "./media/characters/zeta/foot.svg"
  13714. }
  13715. },
  13716. },
  13717. [
  13718. {
  13719. name: "Micro",
  13720. height: math.unit(6, "inches")
  13721. },
  13722. {
  13723. name: "Normal",
  13724. height: math.unit(6 + 1 / 12, "feet"),
  13725. default: true
  13726. },
  13727. {
  13728. name: "Macro",
  13729. height: math.unit(20, "feet")
  13730. },
  13731. ]
  13732. ))
  13733. characterMakers.push(() => makeCharacter(
  13734. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13735. {
  13736. front: {
  13737. height: math.unit(6, "feet"),
  13738. weight: math.unit(150, "lb"),
  13739. name: "Front",
  13740. image: {
  13741. source: "./media/characters/jamie-larsen/front.svg",
  13742. extra: 962 / 933,
  13743. bottom: 0.02
  13744. }
  13745. },
  13746. back: {
  13747. height: math.unit(6, "feet"),
  13748. weight: math.unit(150, "lb"),
  13749. name: "Back",
  13750. image: {
  13751. source: "./media/characters/jamie-larsen/back.svg",
  13752. extra: 997 / 946
  13753. }
  13754. },
  13755. },
  13756. [
  13757. {
  13758. name: "Macro",
  13759. height: math.unit(28 + 7 / 12, "feet"),
  13760. default: true
  13761. },
  13762. {
  13763. name: "Macro+",
  13764. height: math.unit(180, "feet")
  13765. },
  13766. {
  13767. name: "Megamacro",
  13768. height: math.unit(10, "miles")
  13769. },
  13770. {
  13771. name: "Gigamacro",
  13772. height: math.unit(200000, "miles")
  13773. },
  13774. ]
  13775. ))
  13776. characterMakers.push(() => makeCharacter(
  13777. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13778. {
  13779. front: {
  13780. height: math.unit(6, "feet"),
  13781. weight: math.unit(120, "lb"),
  13782. name: "Front",
  13783. image: {
  13784. source: "./media/characters/vance/front.svg",
  13785. extra: 1980 / 1890,
  13786. bottom: 0.09
  13787. }
  13788. },
  13789. back: {
  13790. height: math.unit(6, "feet"),
  13791. weight: math.unit(120, "lb"),
  13792. name: "Back",
  13793. image: {
  13794. source: "./media/characters/vance/back.svg",
  13795. extra: 2081 / 1994,
  13796. bottom: 0.014
  13797. }
  13798. },
  13799. hand: {
  13800. height: math.unit(0.88, "feet"),
  13801. name: "Hand",
  13802. image: {
  13803. source: "./media/characters/vance/hand.svg"
  13804. }
  13805. },
  13806. foot: {
  13807. height: math.unit(0.64, "feet"),
  13808. name: "Foot",
  13809. image: {
  13810. source: "./media/characters/vance/foot.svg"
  13811. }
  13812. },
  13813. },
  13814. [
  13815. {
  13816. name: "Small",
  13817. height: math.unit(90, "feet"),
  13818. default: true
  13819. },
  13820. {
  13821. name: "Macro",
  13822. height: math.unit(100, "meters")
  13823. },
  13824. {
  13825. name: "Megamacro",
  13826. height: math.unit(15, "miles")
  13827. },
  13828. ]
  13829. ))
  13830. characterMakers.push(() => makeCharacter(
  13831. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13832. {
  13833. front: {
  13834. height: math.unit(6, "feet"),
  13835. weight: math.unit(180, "lb"),
  13836. name: "Front",
  13837. image: {
  13838. source: "./media/characters/xochitl/front.svg",
  13839. extra: 2297 / 2261,
  13840. bottom: 0.065
  13841. }
  13842. },
  13843. back: {
  13844. height: math.unit(6, "feet"),
  13845. weight: math.unit(180, "lb"),
  13846. name: "Back",
  13847. image: {
  13848. source: "./media/characters/xochitl/back.svg",
  13849. extra: 2386 / 2354,
  13850. bottom: 0.01
  13851. }
  13852. },
  13853. foot: {
  13854. height: math.unit(6 / 5 * 1.15, "feet"),
  13855. weight: math.unit(150, "lb"),
  13856. name: "Foot",
  13857. image: {
  13858. source: "./media/characters/xochitl/foot.svg"
  13859. }
  13860. },
  13861. },
  13862. [
  13863. {
  13864. name: "Macro",
  13865. height: math.unit(80, "feet")
  13866. },
  13867. {
  13868. name: "Macro+",
  13869. height: math.unit(400, "feet"),
  13870. default: true
  13871. },
  13872. {
  13873. name: "Gigamacro",
  13874. height: math.unit(80000, "miles")
  13875. },
  13876. {
  13877. name: "Gigamacro+",
  13878. height: math.unit(400000, "miles")
  13879. },
  13880. {
  13881. name: "Teramacro",
  13882. height: math.unit(300, "AU")
  13883. },
  13884. ]
  13885. ))
  13886. characterMakers.push(() => makeCharacter(
  13887. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13888. {
  13889. front: {
  13890. height: math.unit(6, "feet"),
  13891. weight: math.unit(150, "lb"),
  13892. name: "Front",
  13893. image: {
  13894. source: "./media/characters/vincent/front.svg",
  13895. extra: 1130 / 1080,
  13896. bottom: 0.055
  13897. }
  13898. },
  13899. beak: {
  13900. height: math.unit(6 * 0.1, "feet"),
  13901. name: "Beak",
  13902. image: {
  13903. source: "./media/characters/vincent/beak.svg"
  13904. }
  13905. },
  13906. hand: {
  13907. height: math.unit(6 * 0.85, "feet"),
  13908. weight: math.unit(150, "lb"),
  13909. name: "Hand",
  13910. image: {
  13911. source: "./media/characters/vincent/hand.svg"
  13912. }
  13913. },
  13914. foot: {
  13915. height: math.unit(6 * 0.19, "feet"),
  13916. weight: math.unit(150, "lb"),
  13917. name: "Foot",
  13918. image: {
  13919. source: "./media/characters/vincent/foot.svg"
  13920. }
  13921. },
  13922. },
  13923. [
  13924. {
  13925. name: "Base",
  13926. height: math.unit(6 + 5 / 12, "feet"),
  13927. default: true
  13928. },
  13929. {
  13930. name: "Macro",
  13931. height: math.unit(300, "feet")
  13932. },
  13933. {
  13934. name: "Megamacro",
  13935. height: math.unit(2, "miles")
  13936. },
  13937. {
  13938. name: "Gigamacro",
  13939. height: math.unit(1000, "miles")
  13940. },
  13941. ]
  13942. ))
  13943. characterMakers.push(() => makeCharacter(
  13944. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13945. {
  13946. front: {
  13947. height: math.unit(2, "meters"),
  13948. weight: math.unit(500, "kg"),
  13949. name: "Front",
  13950. image: {
  13951. source: "./media/characters/coatl/front.svg",
  13952. extra: 3948 / 3500,
  13953. bottom: 0.082
  13954. }
  13955. },
  13956. },
  13957. [
  13958. {
  13959. name: "Normal",
  13960. height: math.unit(4, "meters")
  13961. },
  13962. {
  13963. name: "Macro",
  13964. height: math.unit(100, "meters"),
  13965. default: true
  13966. },
  13967. {
  13968. name: "Macro+",
  13969. height: math.unit(300, "meters")
  13970. },
  13971. {
  13972. name: "Megamacro",
  13973. height: math.unit(3, "gigameters")
  13974. },
  13975. {
  13976. name: "Megamacro+",
  13977. height: math.unit(300, "terameters")
  13978. },
  13979. {
  13980. name: "Megamacro++",
  13981. height: math.unit(3, "lightyears")
  13982. },
  13983. ]
  13984. ))
  13985. characterMakers.push(() => makeCharacter(
  13986. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13987. {
  13988. front: {
  13989. height: math.unit(6, "feet"),
  13990. weight: math.unit(50, "kg"),
  13991. name: "front",
  13992. image: {
  13993. source: "./media/characters/shiroryu/front.svg",
  13994. extra: 1990 / 1935
  13995. }
  13996. },
  13997. },
  13998. [
  13999. {
  14000. name: "Mortal Mingling",
  14001. height: math.unit(3, "meters")
  14002. },
  14003. {
  14004. name: "Kaiju-ish",
  14005. height: math.unit(250, "meters")
  14006. },
  14007. {
  14008. name: "Somewhat Godly",
  14009. height: math.unit(400, "km"),
  14010. default: true
  14011. },
  14012. {
  14013. name: "Planetary",
  14014. height: math.unit(300, "megameters")
  14015. },
  14016. {
  14017. name: "Galaxy-dwarfing",
  14018. height: math.unit(450, "kiloparsecs")
  14019. },
  14020. {
  14021. name: "Universe Eater",
  14022. height: math.unit(150, "gigaparsecs")
  14023. },
  14024. {
  14025. name: "Almost Immeasurable",
  14026. height: math.unit(1.3e266, "yottaparsecs")
  14027. },
  14028. ]
  14029. ))
  14030. characterMakers.push(() => makeCharacter(
  14031. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14032. {
  14033. front: {
  14034. height: math.unit(6, "feet"),
  14035. weight: math.unit(150, "lb"),
  14036. name: "Front",
  14037. image: {
  14038. source: "./media/characters/umeko/front.svg",
  14039. extra: 1,
  14040. bottom: 0.019
  14041. }
  14042. },
  14043. frontArmored: {
  14044. height: math.unit(6, "feet"),
  14045. weight: math.unit(150, "lb"),
  14046. name: "Front (Armored)",
  14047. image: {
  14048. source: "./media/characters/umeko/front-armored.svg",
  14049. extra: 1,
  14050. bottom: 0.021
  14051. }
  14052. },
  14053. },
  14054. [
  14055. {
  14056. name: "Macro",
  14057. height: math.unit(220, "feet"),
  14058. default: true
  14059. },
  14060. {
  14061. name: "Guardian Dragon",
  14062. height: math.unit(50, "miles")
  14063. },
  14064. {
  14065. name: "Cosmic",
  14066. height: math.unit(800000, "miles")
  14067. },
  14068. ]
  14069. ))
  14070. characterMakers.push(() => makeCharacter(
  14071. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14072. {
  14073. front: {
  14074. height: math.unit(6, "feet"),
  14075. weight: math.unit(150, "lb"),
  14076. name: "Front",
  14077. image: {
  14078. source: "./media/characters/cassidy/front.svg",
  14079. extra: 1,
  14080. bottom: 0.043
  14081. }
  14082. },
  14083. },
  14084. [
  14085. {
  14086. name: "Canon Height",
  14087. height: math.unit(120, "feet"),
  14088. default: true
  14089. },
  14090. {
  14091. name: "Macro+",
  14092. height: math.unit(400, "feet")
  14093. },
  14094. {
  14095. name: "Macro++",
  14096. height: math.unit(4000, "feet")
  14097. },
  14098. {
  14099. name: "Megamacro",
  14100. height: math.unit(3, "miles")
  14101. },
  14102. ]
  14103. ))
  14104. characterMakers.push(() => makeCharacter(
  14105. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14106. {
  14107. front: {
  14108. height: math.unit(6, "feet"),
  14109. weight: math.unit(150, "lb"),
  14110. name: "Front",
  14111. image: {
  14112. source: "./media/characters/isaac/front.svg",
  14113. extra: 896 / 815,
  14114. bottom: 0.11
  14115. }
  14116. },
  14117. },
  14118. [
  14119. {
  14120. name: "Human Size",
  14121. height: math.unit(8, "feet"),
  14122. default: true
  14123. },
  14124. {
  14125. name: "Macro",
  14126. height: math.unit(400, "feet")
  14127. },
  14128. {
  14129. name: "Megamacro",
  14130. height: math.unit(50, "miles")
  14131. },
  14132. {
  14133. name: "Canon Height",
  14134. height: math.unit(200, "AU")
  14135. },
  14136. ]
  14137. ))
  14138. characterMakers.push(() => makeCharacter(
  14139. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14140. {
  14141. front: {
  14142. height: math.unit(6, "feet"),
  14143. weight: math.unit(72, "kg"),
  14144. name: "Front",
  14145. image: {
  14146. source: "./media/characters/sleekit/front.svg",
  14147. extra: 4693 / 4487,
  14148. bottom: 0.012
  14149. }
  14150. },
  14151. },
  14152. [
  14153. {
  14154. name: "Minimum Height",
  14155. height: math.unit(10, "meters")
  14156. },
  14157. {
  14158. name: "Smaller",
  14159. height: math.unit(25, "meters")
  14160. },
  14161. {
  14162. name: "Larger",
  14163. height: math.unit(38, "meters"),
  14164. default: true
  14165. },
  14166. {
  14167. name: "Maximum height",
  14168. height: math.unit(100, "meters")
  14169. },
  14170. ]
  14171. ))
  14172. characterMakers.push(() => makeCharacter(
  14173. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14174. {
  14175. front: {
  14176. height: math.unit(6, "feet"),
  14177. weight: math.unit(150, "lb"),
  14178. name: "Front",
  14179. image: {
  14180. source: "./media/characters/nillia/front.svg",
  14181. extra: 2195 / 2037,
  14182. bottom: 0.005
  14183. }
  14184. },
  14185. back: {
  14186. height: math.unit(6, "feet"),
  14187. weight: math.unit(150, "lb"),
  14188. name: "Back",
  14189. image: {
  14190. source: "./media/characters/nillia/back.svg",
  14191. extra: 2195 / 2037,
  14192. bottom: 0.005
  14193. }
  14194. },
  14195. },
  14196. [
  14197. {
  14198. name: "Canon Height",
  14199. height: math.unit(489, "feet"),
  14200. default: true
  14201. }
  14202. ]
  14203. ))
  14204. characterMakers.push(() => makeCharacter(
  14205. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14206. {
  14207. front: {
  14208. height: math.unit(6, "feet"),
  14209. weight: math.unit(150, "lb"),
  14210. name: "Front",
  14211. image: {
  14212. source: "./media/characters/mesmyriza/front.svg",
  14213. extra: 2067 / 1784,
  14214. bottom: 0.035
  14215. }
  14216. },
  14217. foot: {
  14218. height: math.unit(6 / (250 / 35), "feet"),
  14219. name: "Foot",
  14220. image: {
  14221. source: "./media/characters/mesmyriza/foot.svg"
  14222. }
  14223. },
  14224. },
  14225. [
  14226. {
  14227. name: "Macro",
  14228. height: math.unit(457, "meters"),
  14229. default: true
  14230. },
  14231. {
  14232. name: "Megamacro",
  14233. height: math.unit(8, "megameters")
  14234. },
  14235. ]
  14236. ))
  14237. characterMakers.push(() => makeCharacter(
  14238. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14239. {
  14240. front: {
  14241. height: math.unit(6, "feet"),
  14242. weight: math.unit(250, "lb"),
  14243. name: "Front",
  14244. image: {
  14245. source: "./media/characters/saudade/front.svg",
  14246. extra: 1172 / 1139,
  14247. bottom: 0.035
  14248. }
  14249. },
  14250. },
  14251. [
  14252. {
  14253. name: "Micro",
  14254. height: math.unit(3, "inches")
  14255. },
  14256. {
  14257. name: "Normal",
  14258. height: math.unit(6, "feet"),
  14259. default: true
  14260. },
  14261. {
  14262. name: "Macro",
  14263. height: math.unit(50, "feet")
  14264. },
  14265. {
  14266. name: "Megamacro",
  14267. height: math.unit(2800, "feet")
  14268. },
  14269. ]
  14270. ))
  14271. characterMakers.push(() => makeCharacter(
  14272. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14273. {
  14274. front: {
  14275. height: math.unit(5 + 4 / 12, "feet"),
  14276. weight: math.unit(100, "lb"),
  14277. name: "Front",
  14278. image: {
  14279. source: "./media/characters/keireer/front.svg",
  14280. extra: 716 / 666,
  14281. bottom: 0.05
  14282. }
  14283. },
  14284. },
  14285. [
  14286. {
  14287. name: "Normal",
  14288. height: math.unit(5 + 4 / 12, "feet"),
  14289. default: true
  14290. },
  14291. ]
  14292. ))
  14293. characterMakers.push(() => makeCharacter(
  14294. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14295. {
  14296. front: {
  14297. height: math.unit(6, "feet"),
  14298. weight: math.unit(90, "kg"),
  14299. name: "Front",
  14300. image: {
  14301. source: "./media/characters/mirja/front.svg",
  14302. extra: 1789 / 1683,
  14303. bottom: 0.05
  14304. }
  14305. },
  14306. frontDressed: {
  14307. height: math.unit(6, "feet"),
  14308. weight: math.unit(90, "lb"),
  14309. name: "Front (Dressed)",
  14310. image: {
  14311. source: "./media/characters/mirja/front-dressed.svg",
  14312. extra: 1789 / 1683,
  14313. bottom: 0.05
  14314. }
  14315. },
  14316. back: {
  14317. height: math.unit(6, "feet"),
  14318. weight: math.unit(90, "lb"),
  14319. name: "Back",
  14320. image: {
  14321. source: "./media/characters/mirja/back.svg",
  14322. extra: 953 / 917,
  14323. bottom: 0.017
  14324. }
  14325. },
  14326. },
  14327. [
  14328. {
  14329. name: "\"Incognito\"",
  14330. height: math.unit(3, "meters")
  14331. },
  14332. {
  14333. name: "Strolling Size",
  14334. height: math.unit(15, "km")
  14335. },
  14336. {
  14337. name: "Larger Strolling Size",
  14338. height: math.unit(400, "km")
  14339. },
  14340. {
  14341. name: "Preferred Size",
  14342. height: math.unit(5000, "km")
  14343. },
  14344. {
  14345. name: "True Size",
  14346. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14347. default: true
  14348. },
  14349. ]
  14350. ))
  14351. characterMakers.push(() => makeCharacter(
  14352. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14353. {
  14354. front: {
  14355. height: math.unit(15, "feet"),
  14356. weight: math.unit(880, "kg"),
  14357. name: "Front",
  14358. image: {
  14359. source: "./media/characters/nightraver/front.svg",
  14360. extra: 2444 / 2160,
  14361. bottom: 0.027
  14362. }
  14363. },
  14364. back: {
  14365. height: math.unit(15, "feet"),
  14366. weight: math.unit(880, "kg"),
  14367. name: "Back",
  14368. image: {
  14369. source: "./media/characters/nightraver/back.svg",
  14370. extra: 2309 / 2180,
  14371. bottom: 0.005
  14372. }
  14373. },
  14374. sole: {
  14375. height: math.unit(2.878, "feet"),
  14376. name: "Sole",
  14377. image: {
  14378. source: "./media/characters/nightraver/sole.svg"
  14379. }
  14380. },
  14381. foot: {
  14382. height: math.unit(2.285, "feet"),
  14383. name: "Foot",
  14384. image: {
  14385. source: "./media/characters/nightraver/foot.svg"
  14386. }
  14387. },
  14388. maw: {
  14389. height: math.unit(2.67, "feet"),
  14390. name: "Maw",
  14391. image: {
  14392. source: "./media/characters/nightraver/maw.svg"
  14393. }
  14394. },
  14395. },
  14396. [
  14397. {
  14398. name: "Micro",
  14399. height: math.unit(1, "cm")
  14400. },
  14401. {
  14402. name: "Normal",
  14403. height: math.unit(15, "feet"),
  14404. default: true
  14405. },
  14406. {
  14407. name: "Macro",
  14408. height: math.unit(300, "feet")
  14409. },
  14410. {
  14411. name: "Megamacro",
  14412. height: math.unit(300, "miles")
  14413. },
  14414. {
  14415. name: "Gigamacro",
  14416. height: math.unit(10000, "miles")
  14417. },
  14418. ]
  14419. ))
  14420. characterMakers.push(() => makeCharacter(
  14421. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14422. {
  14423. side: {
  14424. height: math.unit(2, "inches"),
  14425. weight: math.unit(5, "grams"),
  14426. name: "Side",
  14427. image: {
  14428. source: "./media/characters/arc/side.svg"
  14429. }
  14430. },
  14431. },
  14432. [
  14433. {
  14434. name: "Micro",
  14435. height: math.unit(2, "inches"),
  14436. default: true
  14437. },
  14438. ]
  14439. ))
  14440. characterMakers.push(() => makeCharacter(
  14441. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14442. {
  14443. front: {
  14444. height: math.unit(1.1938, "meters"),
  14445. weight: math.unit(54, "kg"),
  14446. name: "Front",
  14447. image: {
  14448. source: "./media/characters/nebula-shahar/front.svg",
  14449. extra: 1642 / 1436,
  14450. bottom: 0.06
  14451. }
  14452. },
  14453. },
  14454. [
  14455. {
  14456. name: "Megamicro",
  14457. height: math.unit(0.3, "mm")
  14458. },
  14459. {
  14460. name: "Micro",
  14461. height: math.unit(3, "cm")
  14462. },
  14463. {
  14464. name: "Normal",
  14465. height: math.unit(138, "cm"),
  14466. default: true
  14467. },
  14468. {
  14469. name: "Macro",
  14470. height: math.unit(30, "m")
  14471. },
  14472. ]
  14473. ))
  14474. characterMakers.push(() => makeCharacter(
  14475. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14476. {
  14477. front: {
  14478. height: math.unit(5.24, "feet"),
  14479. weight: math.unit(150, "lb"),
  14480. name: "Front",
  14481. image: {
  14482. source: "./media/characters/shayla/front.svg",
  14483. extra: 1512 / 1414,
  14484. bottom: 0.01
  14485. }
  14486. },
  14487. back: {
  14488. height: math.unit(5.24, "feet"),
  14489. weight: math.unit(150, "lb"),
  14490. name: "Back",
  14491. image: {
  14492. source: "./media/characters/shayla/back.svg",
  14493. extra: 1512 / 1414
  14494. }
  14495. },
  14496. hand: {
  14497. height: math.unit(0.7781496062992126, "feet"),
  14498. name: "Hand",
  14499. image: {
  14500. source: "./media/characters/shayla/hand.svg"
  14501. }
  14502. },
  14503. foot: {
  14504. height: math.unit(1.4206036745406823, "feet"),
  14505. name: "Foot",
  14506. image: {
  14507. source: "./media/characters/shayla/foot.svg"
  14508. }
  14509. },
  14510. },
  14511. [
  14512. {
  14513. name: "Micro",
  14514. height: math.unit(0.32, "feet")
  14515. },
  14516. {
  14517. name: "Normal",
  14518. height: math.unit(5.24, "feet"),
  14519. default: true
  14520. },
  14521. {
  14522. name: "Macro",
  14523. height: math.unit(492.12, "feet")
  14524. },
  14525. {
  14526. name: "Megamacro",
  14527. height: math.unit(186.41, "miles")
  14528. },
  14529. ]
  14530. ))
  14531. characterMakers.push(() => makeCharacter(
  14532. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14533. {
  14534. front: {
  14535. height: math.unit(2.2, "m"),
  14536. weight: math.unit(120, "kg"),
  14537. name: "Front",
  14538. image: {
  14539. source: "./media/characters/pia-jr/front.svg",
  14540. extra: 1000 / 970,
  14541. bottom: 0.035
  14542. }
  14543. },
  14544. hand: {
  14545. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14546. name: "Hand",
  14547. image: {
  14548. source: "./media/characters/pia-jr/hand.svg"
  14549. }
  14550. },
  14551. paw: {
  14552. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14553. name: "Paw",
  14554. image: {
  14555. source: "./media/characters/pia-jr/paw.svg"
  14556. }
  14557. },
  14558. },
  14559. [
  14560. {
  14561. name: "Micro",
  14562. height: math.unit(1.2, "cm")
  14563. },
  14564. {
  14565. name: "Normal",
  14566. height: math.unit(2.2, "m"),
  14567. default: true
  14568. },
  14569. {
  14570. name: "Macro",
  14571. height: math.unit(180, "m")
  14572. },
  14573. {
  14574. name: "Megamacro",
  14575. height: math.unit(420, "km")
  14576. },
  14577. ]
  14578. ))
  14579. characterMakers.push(() => makeCharacter(
  14580. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14581. {
  14582. front: {
  14583. height: math.unit(2, "m"),
  14584. weight: math.unit(115, "kg"),
  14585. name: "Front",
  14586. image: {
  14587. source: "./media/characters/pia-sr/front.svg",
  14588. extra: 760 / 730,
  14589. bottom: 0.015
  14590. }
  14591. },
  14592. back: {
  14593. height: math.unit(2, "m"),
  14594. weight: math.unit(115, "kg"),
  14595. name: "Back",
  14596. image: {
  14597. source: "./media/characters/pia-sr/back.svg",
  14598. extra: 760 / 730,
  14599. bottom: 0.01
  14600. }
  14601. },
  14602. hand: {
  14603. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14604. name: "Hand",
  14605. image: {
  14606. source: "./media/characters/pia-sr/hand.svg"
  14607. }
  14608. },
  14609. foot: {
  14610. height: math.unit(1.83, "feet"),
  14611. name: "Foot",
  14612. image: {
  14613. source: "./media/characters/pia-sr/foot.svg"
  14614. }
  14615. },
  14616. },
  14617. [
  14618. {
  14619. name: "Micro",
  14620. height: math.unit(88, "mm")
  14621. },
  14622. {
  14623. name: "Normal",
  14624. height: math.unit(2, "m"),
  14625. default: true
  14626. },
  14627. {
  14628. name: "Macro",
  14629. height: math.unit(200, "m")
  14630. },
  14631. {
  14632. name: "Megamacro",
  14633. height: math.unit(420, "km")
  14634. },
  14635. ]
  14636. ))
  14637. characterMakers.push(() => makeCharacter(
  14638. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14639. {
  14640. front: {
  14641. height: math.unit(8 + 2 / 12, "feet"),
  14642. weight: math.unit(300, "lb"),
  14643. name: "Front",
  14644. image: {
  14645. source: "./media/characters/kibibyte/front.svg",
  14646. extra: 2221 / 2098,
  14647. bottom: 0.04
  14648. }
  14649. },
  14650. },
  14651. [
  14652. {
  14653. name: "Normal",
  14654. height: math.unit(8 + 2 / 12, "feet"),
  14655. default: true
  14656. },
  14657. {
  14658. name: "Socialable Macro",
  14659. height: math.unit(50, "feet")
  14660. },
  14661. {
  14662. name: "Macro",
  14663. height: math.unit(300, "feet")
  14664. },
  14665. {
  14666. name: "Megamacro",
  14667. height: math.unit(500, "miles")
  14668. },
  14669. ]
  14670. ))
  14671. characterMakers.push(() => makeCharacter(
  14672. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14673. {
  14674. front: {
  14675. height: math.unit(6, "feet"),
  14676. weight: math.unit(150, "lb"),
  14677. name: "Front",
  14678. image: {
  14679. source: "./media/characters/felix/front.svg",
  14680. extra: 762 / 722,
  14681. bottom: 0.02
  14682. }
  14683. },
  14684. frontClothed: {
  14685. height: math.unit(6, "feet"),
  14686. weight: math.unit(150, "lb"),
  14687. name: "Front (Clothed)",
  14688. image: {
  14689. source: "./media/characters/felix/front-clothed.svg",
  14690. extra: 762 / 722,
  14691. bottom: 0.02
  14692. }
  14693. },
  14694. },
  14695. [
  14696. {
  14697. name: "Normal",
  14698. height: math.unit(6 + 8 / 12, "feet"),
  14699. default: true
  14700. },
  14701. {
  14702. name: "Macro",
  14703. height: math.unit(2600, "feet")
  14704. },
  14705. {
  14706. name: "Megamacro",
  14707. height: math.unit(450, "miles")
  14708. },
  14709. ]
  14710. ))
  14711. characterMakers.push(() => makeCharacter(
  14712. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14713. {
  14714. front: {
  14715. height: math.unit(6 + 1 / 12, "feet"),
  14716. weight: math.unit(250, "lb"),
  14717. name: "Front",
  14718. image: {
  14719. source: "./media/characters/tobo/front.svg",
  14720. extra: 608 / 586,
  14721. bottom: 0.023
  14722. }
  14723. },
  14724. back: {
  14725. height: math.unit(6 + 1 / 12, "feet"),
  14726. weight: math.unit(250, "lb"),
  14727. name: "Back",
  14728. image: {
  14729. source: "./media/characters/tobo/back.svg",
  14730. extra: 608 / 586
  14731. }
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Nano",
  14737. height: math.unit(2, "nm")
  14738. },
  14739. {
  14740. name: "Megamicro",
  14741. height: math.unit(0.1, "mm")
  14742. },
  14743. {
  14744. name: "Micro",
  14745. height: math.unit(1, "inch"),
  14746. default: true
  14747. },
  14748. {
  14749. name: "Human-sized",
  14750. height: math.unit(6 + 1 / 12, "feet")
  14751. },
  14752. {
  14753. name: "Macro",
  14754. height: math.unit(250, "feet")
  14755. },
  14756. {
  14757. name: "Megamacro",
  14758. height: math.unit(75, "miles")
  14759. },
  14760. {
  14761. name: "Texas-sized",
  14762. height: math.unit(750, "miles")
  14763. },
  14764. {
  14765. name: "Teramacro",
  14766. height: math.unit(50000, "miles")
  14767. },
  14768. ]
  14769. ))
  14770. characterMakers.push(() => makeCharacter(
  14771. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14772. {
  14773. front: {
  14774. height: math.unit(6, "feet"),
  14775. weight: math.unit(269, "lb"),
  14776. name: "Front",
  14777. image: {
  14778. source: "./media/characters/danny-kapowsky/front.svg",
  14779. extra: 766 / 736,
  14780. bottom: 0.044
  14781. }
  14782. },
  14783. back: {
  14784. height: math.unit(6, "feet"),
  14785. weight: math.unit(269, "lb"),
  14786. name: "Back",
  14787. image: {
  14788. source: "./media/characters/danny-kapowsky/back.svg",
  14789. extra: 797 / 760,
  14790. bottom: 0.025
  14791. }
  14792. },
  14793. },
  14794. [
  14795. {
  14796. name: "Macro",
  14797. height: math.unit(150, "feet"),
  14798. default: true
  14799. },
  14800. {
  14801. name: "Macro+",
  14802. height: math.unit(200, "feet")
  14803. },
  14804. {
  14805. name: "Macro++",
  14806. height: math.unit(300, "feet")
  14807. },
  14808. {
  14809. name: "Macro+++",
  14810. height: math.unit(400, "feet")
  14811. },
  14812. ]
  14813. ))
  14814. characterMakers.push(() => makeCharacter(
  14815. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14816. {
  14817. side: {
  14818. height: math.unit(6, "feet"),
  14819. weight: math.unit(170, "lb"),
  14820. name: "Side",
  14821. image: {
  14822. source: "./media/characters/finn/side.svg",
  14823. extra: 1953 / 1807,
  14824. bottom: 0.057
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Megamacro",
  14831. height: math.unit(14445, "feet"),
  14832. default: true
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14838. {
  14839. front: {
  14840. height: math.unit(5 + 6 / 12, "feet"),
  14841. weight: math.unit(125, "lb"),
  14842. name: "Front",
  14843. image: {
  14844. source: "./media/characters/roy/front.svg",
  14845. extra: 1,
  14846. bottom: 0.11
  14847. }
  14848. },
  14849. },
  14850. [
  14851. {
  14852. name: "Micro",
  14853. height: math.unit(3, "inches"),
  14854. default: true
  14855. },
  14856. {
  14857. name: "Normal",
  14858. height: math.unit(5 + 6 / 12, "feet")
  14859. },
  14860. {
  14861. name: "Lesser Macro",
  14862. height: math.unit(60, "feet")
  14863. },
  14864. {
  14865. name: "Greater Macro",
  14866. height: math.unit(120, "feet")
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14872. {
  14873. front: {
  14874. height: math.unit(6, "feet"),
  14875. weight: math.unit(100, "lb"),
  14876. name: "Front",
  14877. image: {
  14878. source: "./media/characters/aevsivs/front.svg",
  14879. extra: 1,
  14880. bottom: 0.03
  14881. }
  14882. },
  14883. back: {
  14884. height: math.unit(6, "feet"),
  14885. weight: math.unit(100, "lb"),
  14886. name: "Back",
  14887. image: {
  14888. source: "./media/characters/aevsivs/back.svg"
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Micro",
  14895. height: math.unit(2, "inches"),
  14896. default: true
  14897. },
  14898. {
  14899. name: "Normal",
  14900. height: math.unit(5, "feet")
  14901. },
  14902. ]
  14903. ))
  14904. characterMakers.push(() => makeCharacter(
  14905. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14906. {
  14907. front: {
  14908. height: math.unit(5 + 7 / 12, "feet"),
  14909. weight: math.unit(159, "lb"),
  14910. name: "Front",
  14911. image: {
  14912. source: "./media/characters/hildegard/front.svg",
  14913. extra: 289 / 269,
  14914. bottom: 7.63 / 297.8
  14915. }
  14916. },
  14917. back: {
  14918. height: math.unit(5 + 7 / 12, "feet"),
  14919. weight: math.unit(159, "lb"),
  14920. name: "Back",
  14921. image: {
  14922. source: "./media/characters/hildegard/back.svg",
  14923. extra: 280 / 260,
  14924. bottom: 2.3 / 282
  14925. }
  14926. },
  14927. },
  14928. [
  14929. {
  14930. name: "Normal",
  14931. height: math.unit(5 + 7 / 12, "feet"),
  14932. default: true
  14933. },
  14934. ]
  14935. ))
  14936. characterMakers.push(() => makeCharacter(
  14937. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14938. {
  14939. bernard: {
  14940. height: math.unit(2 + 7 / 12, "feet"),
  14941. weight: math.unit(66, "lb"),
  14942. name: "Bernard",
  14943. rename: true,
  14944. image: {
  14945. source: "./media/characters/bernard-wilder/bernard.svg",
  14946. extra: 192 / 128,
  14947. bottom: 0.05
  14948. }
  14949. },
  14950. wilder: {
  14951. height: math.unit(5 + 8 / 12, "feet"),
  14952. weight: math.unit(143, "lb"),
  14953. name: "Wilder",
  14954. rename: true,
  14955. image: {
  14956. source: "./media/characters/bernard-wilder/wilder.svg",
  14957. extra: 361 / 312,
  14958. bottom: 0.02
  14959. }
  14960. },
  14961. },
  14962. [
  14963. {
  14964. name: "Normal",
  14965. height: math.unit(2 + 7 / 12, "feet"),
  14966. default: true
  14967. },
  14968. ]
  14969. ))
  14970. characterMakers.push(() => makeCharacter(
  14971. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14972. {
  14973. anthro: {
  14974. height: math.unit(6 + 1 / 12, "feet"),
  14975. weight: math.unit(155, "lb"),
  14976. name: "Anthro",
  14977. image: {
  14978. source: "./media/characters/hearth/anthro.svg",
  14979. extra: 260 / 250,
  14980. bottom: 0.02
  14981. }
  14982. },
  14983. feral: {
  14984. height: math.unit(3.78, "feet"),
  14985. weight: math.unit(35, "kg"),
  14986. name: "Feral",
  14987. image: {
  14988. source: "./media/characters/hearth/feral.svg",
  14989. extra: 153 / 135,
  14990. bottom: 0.03
  14991. }
  14992. },
  14993. },
  14994. [
  14995. {
  14996. name: "Normal",
  14997. height: math.unit(6 + 1 / 12, "feet"),
  14998. default: true
  14999. },
  15000. ]
  15001. ))
  15002. characterMakers.push(() => makeCharacter(
  15003. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15004. {
  15005. front: {
  15006. height: math.unit(6, "feet"),
  15007. weight: math.unit(182, "lb"),
  15008. name: "Front",
  15009. image: {
  15010. source: "./media/characters/ingrid/front.svg",
  15011. extra: 294 / 268,
  15012. bottom: 0.027
  15013. }
  15014. },
  15015. },
  15016. [
  15017. {
  15018. name: "Normal",
  15019. height: math.unit(6, "feet"),
  15020. default: true
  15021. },
  15022. ]
  15023. ))
  15024. characterMakers.push(() => makeCharacter(
  15025. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15026. {
  15027. eevee: {
  15028. height: math.unit(2 + 10 / 12, "feet"),
  15029. weight: math.unit(86, "lb"),
  15030. name: "Malgam",
  15031. image: {
  15032. source: "./media/characters/malgam/eevee.svg",
  15033. extra: 218 / 180,
  15034. bottom: 0.2
  15035. }
  15036. },
  15037. sylveon: {
  15038. height: math.unit(4, "feet"),
  15039. weight: math.unit(101, "lb"),
  15040. name: "Future Malgam",
  15041. rename: true,
  15042. image: {
  15043. source: "./media/characters/malgam/sylveon.svg",
  15044. extra: 371 / 325,
  15045. bottom: 0.015
  15046. }
  15047. },
  15048. gigantamax: {
  15049. height: math.unit(50, "feet"),
  15050. name: "Gigantamax Malgam",
  15051. rename: true,
  15052. image: {
  15053. source: "./media/characters/malgam/gigantamax.svg"
  15054. }
  15055. },
  15056. },
  15057. [
  15058. {
  15059. name: "Normal",
  15060. height: math.unit(2 + 10 / 12, "feet"),
  15061. default: true
  15062. },
  15063. ]
  15064. ))
  15065. characterMakers.push(() => makeCharacter(
  15066. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15067. {
  15068. front: {
  15069. height: math.unit(5 + 11 / 12, "feet"),
  15070. weight: math.unit(188, "lb"),
  15071. name: "Front",
  15072. image: {
  15073. source: "./media/characters/fleur/front.svg",
  15074. extra: 309 / 283,
  15075. bottom: 0.007
  15076. }
  15077. },
  15078. },
  15079. [
  15080. {
  15081. name: "Normal",
  15082. height: math.unit(5 + 11 / 12, "feet"),
  15083. default: true
  15084. },
  15085. ]
  15086. ))
  15087. characterMakers.push(() => makeCharacter(
  15088. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15089. {
  15090. front: {
  15091. height: math.unit(5 + 4 / 12, "feet"),
  15092. weight: math.unit(122, "lb"),
  15093. name: "Front",
  15094. image: {
  15095. source: "./media/characters/jude/front.svg",
  15096. extra: 288 / 273,
  15097. bottom: 0.03
  15098. }
  15099. },
  15100. },
  15101. [
  15102. {
  15103. name: "Normal",
  15104. height: math.unit(5 + 4 / 12, "feet"),
  15105. default: true
  15106. },
  15107. ]
  15108. ))
  15109. characterMakers.push(() => makeCharacter(
  15110. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15111. {
  15112. front: {
  15113. height: math.unit(5 + 11 / 12, "feet"),
  15114. weight: math.unit(190, "lb"),
  15115. name: "Front",
  15116. image: {
  15117. source: "./media/characters/seara/front.svg",
  15118. extra: 1,
  15119. bottom: 0.05
  15120. }
  15121. },
  15122. },
  15123. [
  15124. {
  15125. name: "Normal",
  15126. height: math.unit(5 + 11 / 12, "feet"),
  15127. default: true
  15128. },
  15129. ]
  15130. ))
  15131. characterMakers.push(() => makeCharacter(
  15132. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15133. {
  15134. front: {
  15135. height: math.unit(16 + 5 / 12, "feet"),
  15136. weight: math.unit(524, "lb"),
  15137. name: "Front",
  15138. image: {
  15139. source: "./media/characters/caspian/front.svg",
  15140. extra: 1,
  15141. bottom: 0.04
  15142. }
  15143. },
  15144. },
  15145. [
  15146. {
  15147. name: "Normal",
  15148. height: math.unit(16 + 5 / 12, "feet"),
  15149. default: true
  15150. },
  15151. ]
  15152. ))
  15153. characterMakers.push(() => makeCharacter(
  15154. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15155. {
  15156. front: {
  15157. height: math.unit(5 + 7 / 12, "feet"),
  15158. weight: math.unit(170, "lb"),
  15159. name: "Front",
  15160. image: {
  15161. source: "./media/characters/mika/front.svg",
  15162. extra: 1,
  15163. bottom: 0.016
  15164. }
  15165. },
  15166. },
  15167. [
  15168. {
  15169. name: "Normal",
  15170. height: math.unit(5 + 7 / 12, "feet"),
  15171. default: true
  15172. },
  15173. ]
  15174. ))
  15175. characterMakers.push(() => makeCharacter(
  15176. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15177. {
  15178. front: {
  15179. height: math.unit(6 + 2 / 12, "feet"),
  15180. weight: math.unit(268, "lb"),
  15181. name: "Front",
  15182. image: {
  15183. source: "./media/characters/sol/front.svg",
  15184. extra: 247 / 231,
  15185. bottom: 0.05
  15186. }
  15187. },
  15188. },
  15189. [
  15190. {
  15191. name: "Normal",
  15192. height: math.unit(6 + 2 / 12, "feet"),
  15193. default: true
  15194. },
  15195. ]
  15196. ))
  15197. characterMakers.push(() => makeCharacter(
  15198. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15199. {
  15200. buizel: {
  15201. height: math.unit(2 + 5 / 12, "feet"),
  15202. weight: math.unit(87, "lb"),
  15203. name: "Buizel",
  15204. image: {
  15205. source: "./media/characters/umiko/buizel.svg",
  15206. extra: 172 / 157,
  15207. bottom: 0.01
  15208. }
  15209. },
  15210. floatzel: {
  15211. height: math.unit(5 + 9 / 12, "feet"),
  15212. weight: math.unit(250, "lb"),
  15213. name: "Floatzel",
  15214. image: {
  15215. source: "./media/characters/umiko/floatzel.svg",
  15216. extra: 262 / 248
  15217. }
  15218. },
  15219. },
  15220. [
  15221. {
  15222. name: "Normal",
  15223. height: math.unit(2 + 5 / 12, "feet"),
  15224. default: true
  15225. },
  15226. ]
  15227. ))
  15228. characterMakers.push(() => makeCharacter(
  15229. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15230. {
  15231. front: {
  15232. height: math.unit(6 + 2 / 12, "feet"),
  15233. weight: math.unit(146, "lb"),
  15234. name: "Front",
  15235. image: {
  15236. source: "./media/characters/iliac/front.svg",
  15237. extra: 389 / 365,
  15238. bottom: 0.035
  15239. }
  15240. },
  15241. },
  15242. [
  15243. {
  15244. name: "Normal",
  15245. height: math.unit(6 + 2 / 12, "feet"),
  15246. default: true
  15247. },
  15248. ]
  15249. ))
  15250. characterMakers.push(() => makeCharacter(
  15251. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15252. {
  15253. front: {
  15254. height: math.unit(6, "feet"),
  15255. weight: math.unit(170, "lb"),
  15256. name: "Front",
  15257. image: {
  15258. source: "./media/characters/topaz/front.svg",
  15259. extra: 317 / 303,
  15260. bottom: 0.055
  15261. }
  15262. },
  15263. },
  15264. [
  15265. {
  15266. name: "Normal",
  15267. height: math.unit(6, "feet"),
  15268. default: true
  15269. },
  15270. ]
  15271. ))
  15272. characterMakers.push(() => makeCharacter(
  15273. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15274. {
  15275. front: {
  15276. height: math.unit(5 + 11 / 12, "feet"),
  15277. weight: math.unit(144, "lb"),
  15278. name: "Front",
  15279. image: {
  15280. source: "./media/characters/gabriel/front.svg",
  15281. extra: 285 / 262,
  15282. bottom: 0.004
  15283. }
  15284. },
  15285. },
  15286. [
  15287. {
  15288. name: "Normal",
  15289. height: math.unit(5 + 11 / 12, "feet"),
  15290. default: true
  15291. },
  15292. ]
  15293. ))
  15294. characterMakers.push(() => makeCharacter(
  15295. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15296. {
  15297. side: {
  15298. height: math.unit(6 + 5 / 12, "feet"),
  15299. weight: math.unit(300, "lb"),
  15300. name: "Side",
  15301. image: {
  15302. source: "./media/characters/tempest-suicune/side.svg",
  15303. extra: 195 / 154,
  15304. bottom: 0.04
  15305. }
  15306. },
  15307. },
  15308. [
  15309. {
  15310. name: "Normal",
  15311. height: math.unit(6 + 5 / 12, "feet"),
  15312. default: true
  15313. },
  15314. ]
  15315. ))
  15316. characterMakers.push(() => makeCharacter(
  15317. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15318. {
  15319. front: {
  15320. height: math.unit(7 + 2 / 12, "feet"),
  15321. weight: math.unit(322, "lb"),
  15322. name: "Front",
  15323. image: {
  15324. source: "./media/characters/vulcan/front.svg",
  15325. extra: 154 / 147,
  15326. bottom: 0.04
  15327. }
  15328. },
  15329. },
  15330. [
  15331. {
  15332. name: "Normal",
  15333. height: math.unit(7 + 2 / 12, "feet"),
  15334. default: true
  15335. },
  15336. ]
  15337. ))
  15338. characterMakers.push(() => makeCharacter(
  15339. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15340. {
  15341. front: {
  15342. height: math.unit(5 + 10 / 12, "feet"),
  15343. weight: math.unit(264, "lb"),
  15344. name: "Front",
  15345. image: {
  15346. source: "./media/characters/gault/front.svg",
  15347. extra: 161 / 140,
  15348. bottom: 0.028
  15349. }
  15350. },
  15351. },
  15352. [
  15353. {
  15354. name: "Normal",
  15355. height: math.unit(5 + 10 / 12, "feet"),
  15356. default: true
  15357. },
  15358. ]
  15359. ))
  15360. characterMakers.push(() => makeCharacter(
  15361. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15362. {
  15363. front: {
  15364. height: math.unit(6, "feet"),
  15365. weight: math.unit(150, "lb"),
  15366. name: "Front",
  15367. image: {
  15368. source: "./media/characters/shard/front.svg",
  15369. extra: 273 / 238,
  15370. bottom: 0.02
  15371. }
  15372. },
  15373. },
  15374. [
  15375. {
  15376. name: "Normal",
  15377. height: math.unit(3 + 6 / 12, "feet"),
  15378. default: true
  15379. },
  15380. ]
  15381. ))
  15382. characterMakers.push(() => makeCharacter(
  15383. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15384. {
  15385. front: {
  15386. height: math.unit(5 + 11 / 12, "feet"),
  15387. weight: math.unit(146, "lb"),
  15388. name: "Front",
  15389. image: {
  15390. source: "./media/characters/ashe/front.svg",
  15391. extra: 400 / 373,
  15392. bottom: 0.01
  15393. }
  15394. },
  15395. },
  15396. [
  15397. {
  15398. name: "Normal",
  15399. height: math.unit(5 + 11 / 12, "feet"),
  15400. default: true
  15401. },
  15402. ]
  15403. ))
  15404. characterMakers.push(() => makeCharacter(
  15405. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15406. {
  15407. front: {
  15408. height: math.unit(5 + 5 / 12, "feet"),
  15409. weight: math.unit(135, "lb"),
  15410. name: "Front",
  15411. image: {
  15412. source: "./media/characters/beatrix/front.svg",
  15413. extra: 392 / 379,
  15414. bottom: 0.01
  15415. }
  15416. },
  15417. },
  15418. [
  15419. {
  15420. name: "Normal",
  15421. height: math.unit(6, "feet"),
  15422. default: true
  15423. },
  15424. ]
  15425. ))
  15426. characterMakers.push(() => makeCharacter(
  15427. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15428. {
  15429. front: {
  15430. height: math.unit(6, "feet"),
  15431. weight: math.unit(150, "lb"),
  15432. name: "Front",
  15433. image: {
  15434. source: "./media/characters/ignatius/front.svg",
  15435. extra: 245 / 222,
  15436. bottom: 0.01
  15437. }
  15438. },
  15439. },
  15440. [
  15441. {
  15442. name: "Normal",
  15443. height: math.unit(5 + 5 / 12, "feet"),
  15444. default: true
  15445. },
  15446. ]
  15447. ))
  15448. characterMakers.push(() => makeCharacter(
  15449. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15450. {
  15451. front: {
  15452. height: math.unit(6 + 2 / 12, "feet"),
  15453. weight: math.unit(138, "lb"),
  15454. name: "Front",
  15455. image: {
  15456. source: "./media/characters/mei-li/front.svg",
  15457. extra: 237 / 229,
  15458. bottom: 0.03
  15459. }
  15460. },
  15461. },
  15462. [
  15463. {
  15464. name: "Normal",
  15465. height: math.unit(6 + 2 / 12, "feet"),
  15466. default: true
  15467. },
  15468. ]
  15469. ))
  15470. characterMakers.push(() => makeCharacter(
  15471. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15472. {
  15473. front: {
  15474. height: math.unit(2 + 4 / 12, "feet"),
  15475. weight: math.unit(62, "lb"),
  15476. name: "Front",
  15477. image: {
  15478. source: "./media/characters/puru/front.svg",
  15479. extra: 206 / 149,
  15480. bottom: 0.06
  15481. }
  15482. },
  15483. },
  15484. [
  15485. {
  15486. name: "Normal",
  15487. height: math.unit(2 + 4 / 12, "feet"),
  15488. default: true
  15489. },
  15490. ]
  15491. ))
  15492. characterMakers.push(() => makeCharacter(
  15493. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15494. {
  15495. anthro: {
  15496. height: math.unit(5 + 8/12, "feet"),
  15497. weight: math.unit(200, "lb"),
  15498. energyNeed: math.unit(2000, "kcal"),
  15499. name: "Anthro",
  15500. image: {
  15501. source: "./media/characters/kee/anthro.svg",
  15502. extra: 3251/3184,
  15503. bottom: 250/3501
  15504. }
  15505. },
  15506. taur: {
  15507. height: math.unit(11, "feet"),
  15508. weight: math.unit(500, "lb"),
  15509. energyNeed: math.unit(5000, "kcal"),
  15510. name: "Taur",
  15511. image: {
  15512. source: "./media/characters/kee/taur.svg",
  15513. extra: 1362/1320,
  15514. bottom: 83/1445
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Normal",
  15521. height: math.unit(5 + 8/12, "feet"),
  15522. default: true
  15523. },
  15524. {
  15525. name: "Macro",
  15526. height: math.unit(35, "feet")
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15532. {
  15533. anthro: {
  15534. height: math.unit(7, "feet"),
  15535. weight: math.unit(190, "lb"),
  15536. name: "Anthro",
  15537. image: {
  15538. source: "./media/characters/cobalt-dracha/anthro.svg",
  15539. extra: 231 / 225,
  15540. bottom: 0.04
  15541. }
  15542. },
  15543. feral: {
  15544. height: math.unit(9 + 7 / 12, "feet"),
  15545. weight: math.unit(294, "lb"),
  15546. name: "Feral",
  15547. image: {
  15548. source: "./media/characters/cobalt-dracha/feral.svg",
  15549. extra: 692 / 633,
  15550. bottom: 0.05
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Normal",
  15557. height: math.unit(7, "feet"),
  15558. default: true
  15559. },
  15560. ]
  15561. ))
  15562. characterMakers.push(() => makeCharacter(
  15563. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15564. {
  15565. fallen: {
  15566. height: math.unit(11 + 8 / 12, "feet"),
  15567. weight: math.unit(485, "lb"),
  15568. name: "Java (Fallen)",
  15569. rename: true,
  15570. image: {
  15571. source: "./media/characters/java/fallen.svg",
  15572. extra: 226 / 208,
  15573. bottom: 0.005
  15574. }
  15575. },
  15576. godkin: {
  15577. height: math.unit(10 + 6 / 12, "feet"),
  15578. weight: math.unit(328, "lb"),
  15579. name: "Java (Godkin)",
  15580. rename: true,
  15581. image: {
  15582. source: "./media/characters/java/godkin.svg",
  15583. extra: 270 / 262,
  15584. bottom: 0.02
  15585. }
  15586. },
  15587. },
  15588. [
  15589. {
  15590. name: "Normal",
  15591. height: math.unit(11 + 8 / 12, "feet"),
  15592. default: true
  15593. },
  15594. ]
  15595. ))
  15596. characterMakers.push(() => makeCharacter(
  15597. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15598. {
  15599. front: {
  15600. height: math.unit(7 + 8 / 12, "feet"),
  15601. weight: math.unit(320, "lb"),
  15602. name: "Front",
  15603. image: {
  15604. source: "./media/characters/skoll/front.svg",
  15605. extra: 232 / 220,
  15606. bottom: 0.02
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Normal",
  15613. height: math.unit(7 + 8 / 12, "feet"),
  15614. default: true
  15615. },
  15616. ]
  15617. ))
  15618. characterMakers.push(() => makeCharacter(
  15619. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15620. {
  15621. front: {
  15622. height: math.unit(5 + 9 / 12, "feet"),
  15623. weight: math.unit(170, "lb"),
  15624. name: "Front",
  15625. image: {
  15626. source: "./media/characters/purna/front.svg",
  15627. extra: 239 / 229,
  15628. bottom: 0.01
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Normal",
  15635. height: math.unit(5 + 9 / 12, "feet"),
  15636. default: true
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15642. {
  15643. front: {
  15644. height: math.unit(5 + 9 / 12, "feet"),
  15645. weight: math.unit(142, "lb"),
  15646. name: "Front",
  15647. image: {
  15648. source: "./media/characters/kuva/front.svg",
  15649. extra: 281 / 271,
  15650. bottom: 0.006
  15651. }
  15652. },
  15653. },
  15654. [
  15655. {
  15656. name: "Normal",
  15657. height: math.unit(5 + 9 / 12, "feet"),
  15658. default: true
  15659. },
  15660. ]
  15661. ))
  15662. characterMakers.push(() => makeCharacter(
  15663. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15664. {
  15665. anthro: {
  15666. height: math.unit(9 + 2 / 12, "feet"),
  15667. weight: math.unit(270, "lb"),
  15668. name: "Anthro",
  15669. image: {
  15670. source: "./media/characters/embra/anthro.svg",
  15671. extra: 200 / 187,
  15672. bottom: 0.02
  15673. }
  15674. },
  15675. feral: {
  15676. height: math.unit(18 + 8 / 12, "feet"),
  15677. weight: math.unit(576, "lb"),
  15678. name: "Feral",
  15679. image: {
  15680. source: "./media/characters/embra/feral.svg",
  15681. extra: 152 / 137,
  15682. bottom: 0.037
  15683. }
  15684. },
  15685. },
  15686. [
  15687. {
  15688. name: "Normal",
  15689. height: math.unit(9 + 2 / 12, "feet"),
  15690. default: true
  15691. },
  15692. ]
  15693. ))
  15694. characterMakers.push(() => makeCharacter(
  15695. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15696. {
  15697. anthro: {
  15698. height: math.unit(10 + 9 / 12, "feet"),
  15699. weight: math.unit(224, "lb"),
  15700. name: "Anthro",
  15701. image: {
  15702. source: "./media/characters/grottos/anthro.svg",
  15703. extra: 350 / 332,
  15704. bottom: 0.045
  15705. }
  15706. },
  15707. feral: {
  15708. height: math.unit(20 + 7 / 12, "feet"),
  15709. weight: math.unit(629, "lb"),
  15710. name: "Feral",
  15711. image: {
  15712. source: "./media/characters/grottos/feral.svg",
  15713. extra: 207 / 190,
  15714. bottom: 0.05
  15715. }
  15716. },
  15717. },
  15718. [
  15719. {
  15720. name: "Normal",
  15721. height: math.unit(10 + 9 / 12, "feet"),
  15722. default: true
  15723. },
  15724. ]
  15725. ))
  15726. characterMakers.push(() => makeCharacter(
  15727. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15728. {
  15729. anthro: {
  15730. height: math.unit(9 + 6 / 12, "feet"),
  15731. weight: math.unit(298, "lb"),
  15732. name: "Anthro",
  15733. image: {
  15734. source: "./media/characters/frifna/anthro.svg",
  15735. extra: 282 / 269,
  15736. bottom: 0.015
  15737. }
  15738. },
  15739. feral: {
  15740. height: math.unit(16 + 2 / 12, "feet"),
  15741. weight: math.unit(624, "lb"),
  15742. name: "Feral",
  15743. image: {
  15744. source: "./media/characters/frifna/feral.svg"
  15745. }
  15746. },
  15747. },
  15748. [
  15749. {
  15750. name: "Normal",
  15751. height: math.unit(9 + 6 / 12, "feet"),
  15752. default: true
  15753. },
  15754. ]
  15755. ))
  15756. characterMakers.push(() => makeCharacter(
  15757. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15758. {
  15759. front: {
  15760. height: math.unit(6 + 2 / 12, "feet"),
  15761. weight: math.unit(168, "lb"),
  15762. name: "Front",
  15763. image: {
  15764. source: "./media/characters/elise/front.svg",
  15765. extra: 276 / 271
  15766. }
  15767. },
  15768. },
  15769. [
  15770. {
  15771. name: "Normal",
  15772. height: math.unit(6 + 2 / 12, "feet"),
  15773. default: true
  15774. },
  15775. ]
  15776. ))
  15777. characterMakers.push(() => makeCharacter(
  15778. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15779. {
  15780. front: {
  15781. height: math.unit(5 + 10 / 12, "feet"),
  15782. weight: math.unit(210, "lb"),
  15783. name: "Front",
  15784. image: {
  15785. source: "./media/characters/glade/front.svg",
  15786. extra: 258 / 247,
  15787. bottom: 0.008
  15788. }
  15789. },
  15790. },
  15791. [
  15792. {
  15793. name: "Normal",
  15794. height: math.unit(5 + 10 / 12, "feet"),
  15795. default: true
  15796. },
  15797. ]
  15798. ))
  15799. characterMakers.push(() => makeCharacter(
  15800. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15801. {
  15802. front: {
  15803. height: math.unit(5 + 10 / 12, "feet"),
  15804. weight: math.unit(129, "lb"),
  15805. name: "Front",
  15806. image: {
  15807. source: "./media/characters/rina/front.svg",
  15808. extra: 266 / 255,
  15809. bottom: 0.005
  15810. }
  15811. },
  15812. },
  15813. [
  15814. {
  15815. name: "Normal",
  15816. height: math.unit(5 + 10 / 12, "feet"),
  15817. default: true
  15818. },
  15819. ]
  15820. ))
  15821. characterMakers.push(() => makeCharacter(
  15822. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15823. {
  15824. front: {
  15825. height: math.unit(6 + 1 / 12, "feet"),
  15826. weight: math.unit(192, "lb"),
  15827. name: "Front",
  15828. image: {
  15829. source: "./media/characters/veronica/front.svg",
  15830. extra: 319 / 309,
  15831. bottom: 0.005
  15832. }
  15833. },
  15834. },
  15835. [
  15836. {
  15837. name: "Normal",
  15838. height: math.unit(6 + 1 / 12, "feet"),
  15839. default: true
  15840. },
  15841. ]
  15842. ))
  15843. characterMakers.push(() => makeCharacter(
  15844. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15845. {
  15846. front: {
  15847. height: math.unit(9 + 3 / 12, "feet"),
  15848. weight: math.unit(1100, "lb"),
  15849. name: "Front",
  15850. image: {
  15851. source: "./media/characters/braxton/front.svg",
  15852. extra: 1057 / 984,
  15853. bottom: 0.05
  15854. }
  15855. },
  15856. },
  15857. [
  15858. {
  15859. name: "Normal",
  15860. height: math.unit(9 + 3 / 12, "feet")
  15861. },
  15862. {
  15863. name: "Giant",
  15864. height: math.unit(300, "feet"),
  15865. default: true
  15866. },
  15867. {
  15868. name: "Macro",
  15869. height: math.unit(700, "feet")
  15870. },
  15871. {
  15872. name: "Megamacro",
  15873. height: math.unit(6000, "feet")
  15874. },
  15875. ]
  15876. ))
  15877. characterMakers.push(() => makeCharacter(
  15878. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15879. {
  15880. front: {
  15881. height: math.unit(6 + 7 / 12, "feet"),
  15882. weight: math.unit(150, "lb"),
  15883. name: "Front",
  15884. image: {
  15885. source: "./media/characters/blue-feyonics/front.svg",
  15886. extra: 1403 / 1306,
  15887. bottom: 0.047
  15888. }
  15889. },
  15890. },
  15891. [
  15892. {
  15893. name: "Normal",
  15894. height: math.unit(6 + 7 / 12, "feet"),
  15895. default: true
  15896. },
  15897. ]
  15898. ))
  15899. characterMakers.push(() => makeCharacter(
  15900. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15901. {
  15902. front: {
  15903. height: math.unit(1.8, "meters"),
  15904. weight: math.unit(60, "kg"),
  15905. name: "Front",
  15906. image: {
  15907. source: "./media/characters/maxwell/front.svg",
  15908. extra: 2060 / 1873
  15909. }
  15910. },
  15911. },
  15912. [
  15913. {
  15914. name: "Micro",
  15915. height: math.unit(1, "mm")
  15916. },
  15917. {
  15918. name: "Normal",
  15919. height: math.unit(1.8, "meter"),
  15920. default: true
  15921. },
  15922. {
  15923. name: "Macro",
  15924. height: math.unit(30, "meters")
  15925. },
  15926. {
  15927. name: "Megamacro",
  15928. height: math.unit(10, "km")
  15929. },
  15930. ]
  15931. ))
  15932. characterMakers.push(() => makeCharacter(
  15933. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15934. {
  15935. front: {
  15936. height: math.unit(6, "feet"),
  15937. weight: math.unit(150, "lb"),
  15938. name: "Front",
  15939. image: {
  15940. source: "./media/characters/jack/front.svg",
  15941. extra: 1754 / 1640,
  15942. bottom: 0.01
  15943. }
  15944. },
  15945. },
  15946. [
  15947. {
  15948. name: "Normal",
  15949. height: math.unit(80000, "feet"),
  15950. default: true
  15951. },
  15952. {
  15953. name: "Max size",
  15954. height: math.unit(10, "lightyears")
  15955. },
  15956. ]
  15957. ))
  15958. characterMakers.push(() => makeCharacter(
  15959. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15960. {
  15961. urban: {
  15962. height: math.unit(5, "feet"),
  15963. weight: math.unit(240, "lb"),
  15964. name: "Urban",
  15965. image: {
  15966. source: "./media/characters/cafat/urban.svg",
  15967. extra: 1223/1126,
  15968. bottom: 205/1428
  15969. }
  15970. },
  15971. summer: {
  15972. height: math.unit(5, "feet"),
  15973. weight: math.unit(240, "lb"),
  15974. name: "Summer",
  15975. image: {
  15976. source: "./media/characters/cafat/summer.svg",
  15977. extra: 1223/1126,
  15978. bottom: 205/1428
  15979. }
  15980. },
  15981. winter: {
  15982. height: math.unit(5, "feet"),
  15983. weight: math.unit(240, "lb"),
  15984. name: "Winter",
  15985. image: {
  15986. source: "./media/characters/cafat/winter.svg",
  15987. extra: 1223/1126,
  15988. bottom: 205/1428
  15989. }
  15990. },
  15991. lingerie: {
  15992. height: math.unit(5, "feet"),
  15993. weight: math.unit(240, "lb"),
  15994. name: "Lingerie",
  15995. image: {
  15996. source: "./media/characters/cafat/lingerie.svg",
  15997. extra: 1223/1126,
  15998. bottom: 205/1428
  15999. }
  16000. },
  16001. upright: {
  16002. height: math.unit(6.3, "feet"),
  16003. weight: math.unit(240, "lb"),
  16004. name: "Upright",
  16005. image: {
  16006. source: "./media/characters/cafat/upright.svg",
  16007. bottom: 0.01
  16008. }
  16009. },
  16010. uprightFull: {
  16011. height: math.unit(6.3, "feet"),
  16012. weight: math.unit(240, "lb"),
  16013. name: "Upright (Full)",
  16014. image: {
  16015. source: "./media/characters/cafat/upright-full.svg",
  16016. bottom: 0.01
  16017. }
  16018. },
  16019. },
  16020. [
  16021. {
  16022. name: "Small",
  16023. height: math.unit(5, "feet"),
  16024. default: true
  16025. },
  16026. {
  16027. name: "Large",
  16028. height: math.unit(13, "feet")
  16029. },
  16030. ]
  16031. ))
  16032. characterMakers.push(() => makeCharacter(
  16033. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16034. {
  16035. front: {
  16036. height: math.unit(6, "feet"),
  16037. weight: math.unit(150, "lb"),
  16038. name: "Front",
  16039. image: {
  16040. source: "./media/characters/verin-raharra/front.svg",
  16041. extra: 5019 / 4835,
  16042. bottom: 0.023
  16043. }
  16044. },
  16045. },
  16046. [
  16047. {
  16048. name: "Normal",
  16049. height: math.unit(7 + 5 / 12, "feet"),
  16050. default: true
  16051. },
  16052. {
  16053. name: "Upsized",
  16054. height: math.unit(20, "feet")
  16055. },
  16056. ]
  16057. ))
  16058. characterMakers.push(() => makeCharacter(
  16059. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16060. {
  16061. front: {
  16062. height: math.unit(7, "feet"),
  16063. weight: math.unit(230, "lb"),
  16064. name: "Front",
  16065. image: {
  16066. source: "./media/characters/nakata/front.svg",
  16067. extra: 1.005,
  16068. bottom: 0.01
  16069. }
  16070. },
  16071. },
  16072. [
  16073. {
  16074. name: "Normal",
  16075. height: math.unit(7, "feet"),
  16076. default: true
  16077. },
  16078. {
  16079. name: "Big",
  16080. height: math.unit(14, "feet")
  16081. },
  16082. {
  16083. name: "Macro",
  16084. height: math.unit(400, "feet")
  16085. },
  16086. ]
  16087. ))
  16088. characterMakers.push(() => makeCharacter(
  16089. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16090. {
  16091. front: {
  16092. height: math.unit(4.91, "feet"),
  16093. weight: math.unit(100, "lb"),
  16094. name: "Front",
  16095. image: {
  16096. source: "./media/characters/lily/front.svg",
  16097. extra: 1585 / 1415,
  16098. bottom: 0.02
  16099. }
  16100. },
  16101. },
  16102. [
  16103. {
  16104. name: "Normal",
  16105. height: math.unit(4.91, "feet"),
  16106. default: true
  16107. },
  16108. ]
  16109. ))
  16110. characterMakers.push(() => makeCharacter(
  16111. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16112. {
  16113. laying: {
  16114. height: math.unit(4 + 4 / 12, "feet"),
  16115. weight: math.unit(600, "lb"),
  16116. name: "Laying",
  16117. image: {
  16118. source: "./media/characters/sheila/laying.svg",
  16119. extra: 1333 / 1265,
  16120. bottom: 0.16
  16121. }
  16122. },
  16123. },
  16124. [
  16125. {
  16126. name: "Normal",
  16127. height: math.unit(4 + 4 / 12, "feet"),
  16128. default: true
  16129. },
  16130. ]
  16131. ))
  16132. characterMakers.push(() => makeCharacter(
  16133. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16134. {
  16135. front: {
  16136. height: math.unit(6, "feet"),
  16137. weight: math.unit(190, "lb"),
  16138. name: "Front",
  16139. image: {
  16140. source: "./media/characters/sax/front.svg",
  16141. extra: 1187 / 973,
  16142. bottom: 0.042
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "Micro",
  16149. height: math.unit(4, "inches"),
  16150. default: true
  16151. },
  16152. ]
  16153. ))
  16154. characterMakers.push(() => makeCharacter(
  16155. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16156. {
  16157. front: {
  16158. height: math.unit(6, "feet"),
  16159. weight: math.unit(150, "lb"),
  16160. name: "Front",
  16161. image: {
  16162. source: "./media/characters/pandora/front.svg",
  16163. extra: 2720 / 2556,
  16164. bottom: 0.015
  16165. }
  16166. },
  16167. back: {
  16168. height: math.unit(6, "feet"),
  16169. weight: math.unit(150, "lb"),
  16170. name: "Back",
  16171. image: {
  16172. source: "./media/characters/pandora/back.svg",
  16173. extra: 2720 / 2556,
  16174. bottom: 0.01
  16175. }
  16176. },
  16177. beans: {
  16178. height: math.unit(6 / 8, "feet"),
  16179. name: "Beans",
  16180. image: {
  16181. source: "./media/characters/pandora/beans.svg"
  16182. }
  16183. },
  16184. collar: {
  16185. height: math.unit(0.31, "feet"),
  16186. name: "Collar",
  16187. image: {
  16188. source: "./media/characters/pandora/collar.svg"
  16189. }
  16190. },
  16191. skirt: {
  16192. height: math.unit(6, "feet"),
  16193. weight: math.unit(150, "lb"),
  16194. name: "Skirt",
  16195. image: {
  16196. source: "./media/characters/pandora/skirt.svg",
  16197. extra: 1622 / 1525,
  16198. bottom: 0.015
  16199. }
  16200. },
  16201. hoodie: {
  16202. height: math.unit(6, "feet"),
  16203. weight: math.unit(150, "lb"),
  16204. name: "Hoodie",
  16205. image: {
  16206. source: "./media/characters/pandora/hoodie.svg",
  16207. extra: 1622 / 1525,
  16208. bottom: 0.015
  16209. }
  16210. },
  16211. casual: {
  16212. height: math.unit(6, "feet"),
  16213. weight: math.unit(150, "lb"),
  16214. name: "Casual",
  16215. image: {
  16216. source: "./media/characters/pandora/casual.svg",
  16217. extra: 1622 / 1525,
  16218. bottom: 0.015
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Normal",
  16225. height: math.unit(6, "feet")
  16226. },
  16227. {
  16228. name: "Big Steppy",
  16229. height: math.unit(1, "km"),
  16230. default: true
  16231. },
  16232. {
  16233. name: "Galactic Steppy",
  16234. height: math.unit(2, "gigameters")
  16235. },
  16236. ]
  16237. ))
  16238. characterMakers.push(() => makeCharacter(
  16239. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16240. {
  16241. side: {
  16242. height: math.unit(10, "feet"),
  16243. weight: math.unit(800, "kg"),
  16244. name: "Side",
  16245. image: {
  16246. source: "./media/characters/venio-darcony/side.svg",
  16247. extra: 1373 / 1003,
  16248. bottom: 0.037
  16249. }
  16250. },
  16251. front: {
  16252. height: math.unit(19, "feet"),
  16253. weight: math.unit(800, "kg"),
  16254. name: "Front",
  16255. image: {
  16256. source: "./media/characters/venio-darcony/front.svg"
  16257. }
  16258. },
  16259. back: {
  16260. height: math.unit(19, "feet"),
  16261. weight: math.unit(800, "kg"),
  16262. name: "Back",
  16263. image: {
  16264. source: "./media/characters/venio-darcony/back.svg"
  16265. }
  16266. },
  16267. sideNsfw: {
  16268. height: math.unit(10, "feet"),
  16269. weight: math.unit(800, "kg"),
  16270. name: "Side (NSFW)",
  16271. image: {
  16272. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16273. extra: 1373 / 1003,
  16274. bottom: 0.037
  16275. }
  16276. },
  16277. frontNsfw: {
  16278. height: math.unit(19, "feet"),
  16279. weight: math.unit(800, "kg"),
  16280. name: "Front (NSFW)",
  16281. image: {
  16282. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16283. }
  16284. },
  16285. backNsfw: {
  16286. height: math.unit(19, "feet"),
  16287. weight: math.unit(800, "kg"),
  16288. name: "Back (NSFW)",
  16289. image: {
  16290. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16291. }
  16292. },
  16293. sideArmored: {
  16294. height: math.unit(10, "feet"),
  16295. weight: math.unit(800, "kg"),
  16296. name: "Side (Armored)",
  16297. image: {
  16298. source: "./media/characters/venio-darcony/side-armored.svg",
  16299. extra: 1373 / 1003,
  16300. bottom: 0.037
  16301. }
  16302. },
  16303. frontArmored: {
  16304. height: math.unit(19, "feet"),
  16305. weight: math.unit(900, "kg"),
  16306. name: "Front (Armored)",
  16307. image: {
  16308. source: "./media/characters/venio-darcony/front-armored.svg"
  16309. }
  16310. },
  16311. backArmored: {
  16312. height: math.unit(19, "feet"),
  16313. weight: math.unit(900, "kg"),
  16314. name: "Back (Armored)",
  16315. image: {
  16316. source: "./media/characters/venio-darcony/back-armored.svg"
  16317. }
  16318. },
  16319. sword: {
  16320. height: math.unit(10, "feet"),
  16321. weight: math.unit(50, "lb"),
  16322. name: "Sword",
  16323. image: {
  16324. source: "./media/characters/venio-darcony/sword.svg"
  16325. }
  16326. },
  16327. },
  16328. [
  16329. {
  16330. name: "Normal",
  16331. height: math.unit(10, "feet")
  16332. },
  16333. {
  16334. name: "Macro",
  16335. height: math.unit(130, "feet"),
  16336. default: true
  16337. },
  16338. {
  16339. name: "Macro+",
  16340. height: math.unit(240, "feet")
  16341. },
  16342. ]
  16343. ))
  16344. characterMakers.push(() => makeCharacter(
  16345. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16346. {
  16347. front: {
  16348. height: math.unit(6, "feet"),
  16349. weight: math.unit(150, "lb"),
  16350. name: "Front",
  16351. image: {
  16352. source: "./media/characters/veski/front.svg",
  16353. extra: 1299 / 1225,
  16354. bottom: 0.04
  16355. }
  16356. },
  16357. back: {
  16358. height: math.unit(6, "feet"),
  16359. weight: math.unit(150, "lb"),
  16360. name: "Back",
  16361. image: {
  16362. source: "./media/characters/veski/back.svg",
  16363. extra: 1299 / 1225,
  16364. bottom: 0.008
  16365. }
  16366. },
  16367. maw: {
  16368. height: math.unit(1.5 * 1.21, "feet"),
  16369. name: "Maw",
  16370. image: {
  16371. source: "./media/characters/veski/maw.svg"
  16372. }
  16373. },
  16374. },
  16375. [
  16376. {
  16377. name: "Macro",
  16378. height: math.unit(2, "km"),
  16379. default: true
  16380. },
  16381. ]
  16382. ))
  16383. characterMakers.push(() => makeCharacter(
  16384. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16385. {
  16386. front: {
  16387. height: math.unit(5 + 7 / 12, "feet"),
  16388. name: "Front",
  16389. image: {
  16390. source: "./media/characters/isabelle/front.svg",
  16391. extra: 2130 / 1976,
  16392. bottom: 0.05
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Supermicro",
  16399. height: math.unit(10, "micrometers")
  16400. },
  16401. {
  16402. name: "Micro",
  16403. height: math.unit(1, "inch")
  16404. },
  16405. {
  16406. name: "Tiny",
  16407. height: math.unit(5, "inches")
  16408. },
  16409. {
  16410. name: "Standard",
  16411. height: math.unit(5 + 7 / 12, "inches")
  16412. },
  16413. {
  16414. name: "Macro",
  16415. height: math.unit(80, "meters"),
  16416. default: true
  16417. },
  16418. {
  16419. name: "Megamacro",
  16420. height: math.unit(250, "meters")
  16421. },
  16422. {
  16423. name: "Gigamacro",
  16424. height: math.unit(5, "km")
  16425. },
  16426. {
  16427. name: "Cosmic",
  16428. height: math.unit(2.5e6, "miles")
  16429. },
  16430. ]
  16431. ))
  16432. characterMakers.push(() => makeCharacter(
  16433. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16434. {
  16435. front: {
  16436. height: math.unit(6, "feet"),
  16437. weight: math.unit(150, "lb"),
  16438. name: "Front",
  16439. image: {
  16440. source: "./media/characters/hanzo/front.svg",
  16441. extra: 374 / 344,
  16442. bottom: 0.02
  16443. }
  16444. },
  16445. },
  16446. [
  16447. {
  16448. name: "Normal",
  16449. height: math.unit(8, "feet"),
  16450. default: true
  16451. },
  16452. ]
  16453. ))
  16454. characterMakers.push(() => makeCharacter(
  16455. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16456. {
  16457. front: {
  16458. height: math.unit(7, "feet"),
  16459. weight: math.unit(130, "lb"),
  16460. name: "Front",
  16461. image: {
  16462. source: "./media/characters/anna/front.svg",
  16463. extra: 169 / 145,
  16464. bottom: 0.06
  16465. }
  16466. },
  16467. full: {
  16468. height: math.unit(4.96, "feet"),
  16469. weight: math.unit(220, "lb"),
  16470. name: "Full",
  16471. image: {
  16472. source: "./media/characters/anna/full.svg",
  16473. extra: 138 / 114,
  16474. bottom: 0.15
  16475. }
  16476. },
  16477. tongue: {
  16478. height: math.unit(2.53, "feet"),
  16479. name: "Tongue",
  16480. image: {
  16481. source: "./media/characters/anna/tongue.svg"
  16482. }
  16483. },
  16484. },
  16485. [
  16486. {
  16487. name: "Normal",
  16488. height: math.unit(7, "feet"),
  16489. default: true
  16490. },
  16491. ]
  16492. ))
  16493. characterMakers.push(() => makeCharacter(
  16494. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16495. {
  16496. front: {
  16497. height: math.unit(7, "feet"),
  16498. weight: math.unit(150, "lb"),
  16499. name: "Front",
  16500. image: {
  16501. source: "./media/characters/ian-corvid/front.svg",
  16502. extra: 150 / 142,
  16503. bottom: 0.02
  16504. }
  16505. },
  16506. back: {
  16507. height: math.unit(7, "feet"),
  16508. weight: math.unit(150, "lb"),
  16509. name: "Back",
  16510. image: {
  16511. source: "./media/characters/ian-corvid/back.svg",
  16512. extra: 150 / 143,
  16513. bottom: 0.01
  16514. }
  16515. },
  16516. stomping: {
  16517. height: math.unit(7, "feet"),
  16518. weight: math.unit(150, "lb"),
  16519. name: "Stomping",
  16520. image: {
  16521. source: "./media/characters/ian-corvid/stomping.svg",
  16522. extra: 76 / 72
  16523. }
  16524. },
  16525. sitting: {
  16526. height: math.unit(7 / 1.8, "feet"),
  16527. weight: math.unit(150, "lb"),
  16528. name: "Sitting",
  16529. image: {
  16530. source: "./media/characters/ian-corvid/sitting.svg",
  16531. extra: 1400 / 1269,
  16532. bottom: 0.15
  16533. }
  16534. },
  16535. },
  16536. [
  16537. {
  16538. name: "Tiny Microw",
  16539. height: math.unit(1, "inch")
  16540. },
  16541. {
  16542. name: "Microw",
  16543. height: math.unit(6, "inches")
  16544. },
  16545. {
  16546. name: "Crow",
  16547. height: math.unit(7 + 1 / 12, "feet"),
  16548. default: true
  16549. },
  16550. {
  16551. name: "Macrow",
  16552. height: math.unit(176, "feet")
  16553. },
  16554. ]
  16555. ))
  16556. characterMakers.push(() => makeCharacter(
  16557. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16558. {
  16559. front: {
  16560. height: math.unit(5 + 7 / 12, "feet"),
  16561. weight: math.unit(147, "lb"),
  16562. name: "Front",
  16563. image: {
  16564. source: "./media/characters/natalie-kellon/front.svg",
  16565. extra: 1214 / 1141,
  16566. bottom: 0.02
  16567. }
  16568. },
  16569. },
  16570. [
  16571. {
  16572. name: "Micro",
  16573. height: math.unit(1 / 16, "inch")
  16574. },
  16575. {
  16576. name: "Tiny",
  16577. height: math.unit(4, "inches")
  16578. },
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(5 + 7 / 12, "feet"),
  16582. default: true
  16583. },
  16584. {
  16585. name: "Amazon",
  16586. height: math.unit(12, "feet")
  16587. },
  16588. {
  16589. name: "Giantess",
  16590. height: math.unit(160, "meters")
  16591. },
  16592. {
  16593. name: "Titaness",
  16594. height: math.unit(800, "meters")
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16600. {
  16601. front: {
  16602. height: math.unit(6, "feet"),
  16603. weight: math.unit(150, "lb"),
  16604. name: "Front",
  16605. image: {
  16606. source: "./media/characters/alluria/front.svg",
  16607. extra: 806 / 738,
  16608. bottom: 0.01
  16609. }
  16610. },
  16611. side: {
  16612. height: math.unit(6, "feet"),
  16613. weight: math.unit(150, "lb"),
  16614. name: "Side",
  16615. image: {
  16616. source: "./media/characters/alluria/side.svg",
  16617. extra: 800 / 750,
  16618. }
  16619. },
  16620. back: {
  16621. height: math.unit(6, "feet"),
  16622. weight: math.unit(150, "lb"),
  16623. name: "Back",
  16624. image: {
  16625. source: "./media/characters/alluria/back.svg",
  16626. extra: 806 / 738,
  16627. }
  16628. },
  16629. frontMaid: {
  16630. height: math.unit(6, "feet"),
  16631. weight: math.unit(150, "lb"),
  16632. name: "Front (Maid)",
  16633. image: {
  16634. source: "./media/characters/alluria/front-maid.svg",
  16635. extra: 806 / 738,
  16636. bottom: 0.01
  16637. }
  16638. },
  16639. sideMaid: {
  16640. height: math.unit(6, "feet"),
  16641. weight: math.unit(150, "lb"),
  16642. name: "Side (Maid)",
  16643. image: {
  16644. source: "./media/characters/alluria/side-maid.svg",
  16645. extra: 800 / 750,
  16646. bottom: 0.005
  16647. }
  16648. },
  16649. backMaid: {
  16650. height: math.unit(6, "feet"),
  16651. weight: math.unit(150, "lb"),
  16652. name: "Back (Maid)",
  16653. image: {
  16654. source: "./media/characters/alluria/back-maid.svg",
  16655. extra: 806 / 738,
  16656. }
  16657. },
  16658. },
  16659. [
  16660. {
  16661. name: "Micro",
  16662. height: math.unit(6, "inches"),
  16663. default: true
  16664. },
  16665. ]
  16666. ))
  16667. characterMakers.push(() => makeCharacter(
  16668. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16669. {
  16670. front: {
  16671. height: math.unit(6, "feet"),
  16672. weight: math.unit(150, "lb"),
  16673. name: "Front",
  16674. image: {
  16675. source: "./media/characters/kyle/front.svg",
  16676. extra: 1069 / 962,
  16677. bottom: 77.228 / 1727.45
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Macro",
  16684. height: math.unit(150, "feet"),
  16685. default: true
  16686. },
  16687. ]
  16688. ))
  16689. characterMakers.push(() => makeCharacter(
  16690. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16691. {
  16692. front: {
  16693. height: math.unit(6, "feet"),
  16694. weight: math.unit(300, "lb"),
  16695. name: "Front",
  16696. image: {
  16697. source: "./media/characters/duncan/front.svg",
  16698. extra: 1650 / 1482,
  16699. bottom: 0.05
  16700. }
  16701. },
  16702. },
  16703. [
  16704. {
  16705. name: "Macro",
  16706. height: math.unit(100, "feet"),
  16707. default: true
  16708. },
  16709. ]
  16710. ))
  16711. characterMakers.push(() => makeCharacter(
  16712. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16713. {
  16714. front: {
  16715. height: math.unit(5 + 4 / 12, "feet"),
  16716. weight: math.unit(220, "lb"),
  16717. name: "Front",
  16718. image: {
  16719. source: "./media/characters/memory/front.svg",
  16720. extra: 3641 / 3545,
  16721. bottom: 0.03
  16722. }
  16723. },
  16724. back: {
  16725. height: math.unit(5 + 4 / 12, "feet"),
  16726. weight: math.unit(220, "lb"),
  16727. name: "Back",
  16728. image: {
  16729. source: "./media/characters/memory/back.svg",
  16730. extra: 3641 / 3545,
  16731. bottom: 0.025
  16732. }
  16733. },
  16734. frontSkirt: {
  16735. height: math.unit(5 + 4 / 12, "feet"),
  16736. weight: math.unit(220, "lb"),
  16737. name: "Front (Skirt)",
  16738. image: {
  16739. source: "./media/characters/memory/front-skirt.svg",
  16740. extra: 3641 / 3545,
  16741. bottom: 0.03
  16742. }
  16743. },
  16744. frontDress: {
  16745. height: math.unit(5 + 4 / 12, "feet"),
  16746. weight: math.unit(220, "lb"),
  16747. name: "Front (Dress)",
  16748. image: {
  16749. source: "./media/characters/memory/front-dress.svg",
  16750. extra: 3641 / 3545,
  16751. bottom: 0.03
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Micro",
  16758. height: math.unit(6, "inches"),
  16759. default: true
  16760. },
  16761. {
  16762. name: "Normal",
  16763. height: math.unit(5 + 4 / 12, "feet")
  16764. },
  16765. ]
  16766. ))
  16767. characterMakers.push(() => makeCharacter(
  16768. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16769. {
  16770. front: {
  16771. height: math.unit(4 + 11 / 12, "feet"),
  16772. weight: math.unit(100, "lb"),
  16773. name: "Front",
  16774. image: {
  16775. source: "./media/characters/luno/front.svg",
  16776. extra: 1535 / 1487,
  16777. bottom: 0.03
  16778. }
  16779. },
  16780. },
  16781. [
  16782. {
  16783. name: "Micro",
  16784. height: math.unit(3, "inches")
  16785. },
  16786. {
  16787. name: "Normal",
  16788. height: math.unit(4 + 11 / 12, "feet"),
  16789. default: true
  16790. },
  16791. {
  16792. name: "Macro",
  16793. height: math.unit(300, "feet")
  16794. },
  16795. {
  16796. name: "Megamacro",
  16797. height: math.unit(700, "miles")
  16798. },
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16803. {
  16804. front: {
  16805. height: math.unit(6 + 2 / 12, "feet"),
  16806. weight: math.unit(170, "lb"),
  16807. name: "Front",
  16808. image: {
  16809. source: "./media/characters/jamesy/front.svg",
  16810. extra: 440 / 382,
  16811. bottom: 0.005
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Micro",
  16818. height: math.unit(3, "inches")
  16819. },
  16820. {
  16821. name: "Normal",
  16822. height: math.unit(6 + 2 / 12, "feet"),
  16823. default: true
  16824. },
  16825. {
  16826. name: "Macro",
  16827. height: math.unit(300, "feet")
  16828. },
  16829. {
  16830. name: "Megamacro",
  16831. height: math.unit(700, "miles")
  16832. },
  16833. ]
  16834. ))
  16835. characterMakers.push(() => makeCharacter(
  16836. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16837. {
  16838. front: {
  16839. height: math.unit(6, "feet"),
  16840. weight: math.unit(160, "lb"),
  16841. name: "Front",
  16842. image: {
  16843. source: "./media/characters/mark/front.svg",
  16844. extra: 3300 / 3100,
  16845. bottom: 136.42 / 3440.47
  16846. }
  16847. },
  16848. },
  16849. [
  16850. {
  16851. name: "Macro",
  16852. height: math.unit(120, "meters")
  16853. },
  16854. {
  16855. name: "Bigger Macro",
  16856. height: math.unit(350, "meters")
  16857. },
  16858. {
  16859. name: "Megamacro",
  16860. height: math.unit(8, "km"),
  16861. default: true
  16862. },
  16863. {
  16864. name: "Continental",
  16865. height: math.unit(4550, "km")
  16866. },
  16867. {
  16868. name: "Planetary",
  16869. height: math.unit(65000, "km")
  16870. },
  16871. ]
  16872. ))
  16873. characterMakers.push(() => makeCharacter(
  16874. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16875. {
  16876. front: {
  16877. height: math.unit(6, "feet"),
  16878. weight: math.unit(400, "lb"),
  16879. name: "Front",
  16880. image: {
  16881. source: "./media/characters/mac/front.svg",
  16882. extra: 1048 / 987.7,
  16883. bottom: 60 / 1107.6,
  16884. }
  16885. },
  16886. },
  16887. [
  16888. {
  16889. name: "Macro",
  16890. height: math.unit(500, "feet"),
  16891. default: true
  16892. },
  16893. ]
  16894. ))
  16895. characterMakers.push(() => makeCharacter(
  16896. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16897. {
  16898. front: {
  16899. height: math.unit(5 + 2 / 12, "feet"),
  16900. weight: math.unit(190, "lb"),
  16901. name: "Front",
  16902. image: {
  16903. source: "./media/characters/bari/front.svg",
  16904. extra: 3156 / 2880,
  16905. bottom: 0.03
  16906. }
  16907. },
  16908. back: {
  16909. height: math.unit(5 + 2 / 12, "feet"),
  16910. weight: math.unit(190, "lb"),
  16911. name: "Back",
  16912. image: {
  16913. source: "./media/characters/bari/back.svg",
  16914. extra: 3260 / 2834,
  16915. bottom: 0.025
  16916. }
  16917. },
  16918. frontPlush: {
  16919. height: math.unit(5 + 2 / 12, "feet"),
  16920. weight: math.unit(190, "lb"),
  16921. name: "Front (Plush)",
  16922. image: {
  16923. source: "./media/characters/bari/front-plush.svg",
  16924. extra: 1112 / 1061,
  16925. bottom: 0.002
  16926. }
  16927. },
  16928. },
  16929. [
  16930. {
  16931. name: "Micro",
  16932. height: math.unit(3, "inches")
  16933. },
  16934. {
  16935. name: "Normal",
  16936. height: math.unit(5 + 2 / 12, "feet"),
  16937. default: true
  16938. },
  16939. {
  16940. name: "Macro",
  16941. height: math.unit(20, "feet")
  16942. },
  16943. ]
  16944. ))
  16945. characterMakers.push(() => makeCharacter(
  16946. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16947. {
  16948. front: {
  16949. height: math.unit(6 + 1 / 12, "feet"),
  16950. weight: math.unit(275, "lb"),
  16951. name: "Front",
  16952. image: {
  16953. source: "./media/characters/hunter-misha-raven/front.svg"
  16954. }
  16955. },
  16956. },
  16957. [
  16958. {
  16959. name: "Mortal",
  16960. height: math.unit(6 + 1 / 12, "feet")
  16961. },
  16962. {
  16963. name: "Divine",
  16964. height: math.unit(1.12134e34, "parsecs"),
  16965. default: true
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16971. {
  16972. front: {
  16973. height: math.unit(6 + 3 / 12, "feet"),
  16974. weight: math.unit(220, "lb"),
  16975. name: "Front",
  16976. image: {
  16977. source: "./media/characters/max-calore/front.svg",
  16978. extra: 1700 / 1648,
  16979. bottom: 0.01
  16980. }
  16981. },
  16982. back: {
  16983. height: math.unit(6 + 3 / 12, "feet"),
  16984. weight: math.unit(220, "lb"),
  16985. name: "Back",
  16986. image: {
  16987. source: "./media/characters/max-calore/back.svg",
  16988. extra: 1700 / 1648,
  16989. bottom: 0.01
  16990. }
  16991. },
  16992. },
  16993. [
  16994. {
  16995. name: "Normal",
  16996. height: math.unit(6 + 3 / 12, "feet"),
  16997. default: true
  16998. },
  16999. ]
  17000. ))
  17001. characterMakers.push(() => makeCharacter(
  17002. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17003. {
  17004. side: {
  17005. height: math.unit(2 + 8 / 12, "feet"),
  17006. weight: math.unit(99, "lb"),
  17007. name: "Side",
  17008. image: {
  17009. source: "./media/characters/aspen/side.svg",
  17010. extra: 152 / 138,
  17011. bottom: 0.032
  17012. }
  17013. },
  17014. },
  17015. [
  17016. {
  17017. name: "Normal",
  17018. height: math.unit(2 + 8 / 12, "feet"),
  17019. default: true
  17020. },
  17021. ]
  17022. ))
  17023. characterMakers.push(() => makeCharacter(
  17024. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17025. {
  17026. side: {
  17027. height: math.unit(3 + 2 / 12, "feet"),
  17028. weight: math.unit(224, "lb"),
  17029. name: "Side",
  17030. image: {
  17031. source: "./media/characters/sheila-feral-wolf/side.svg",
  17032. extra: 179 / 166,
  17033. bottom: 0.03
  17034. }
  17035. },
  17036. },
  17037. [
  17038. {
  17039. name: "Normal",
  17040. height: math.unit(3 + 2 / 12, "feet"),
  17041. default: true
  17042. },
  17043. ]
  17044. ))
  17045. characterMakers.push(() => makeCharacter(
  17046. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17047. {
  17048. side: {
  17049. height: math.unit(1 + 9 / 12, "feet"),
  17050. weight: math.unit(38, "lb"),
  17051. name: "Side",
  17052. image: {
  17053. source: "./media/characters/michelle/side.svg",
  17054. extra: 147 / 136.7,
  17055. bottom: 0.03
  17056. }
  17057. },
  17058. },
  17059. [
  17060. {
  17061. name: "Normal",
  17062. height: math.unit(1 + 9 / 12, "feet"),
  17063. default: true
  17064. },
  17065. ]
  17066. ))
  17067. characterMakers.push(() => makeCharacter(
  17068. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17069. {
  17070. front: {
  17071. height: math.unit(1 + 1 / 12, "feet"),
  17072. weight: math.unit(18, "lb"),
  17073. name: "Front",
  17074. image: {
  17075. source: "./media/characters/nino/front.svg"
  17076. }
  17077. },
  17078. },
  17079. [
  17080. {
  17081. name: "Normal",
  17082. height: math.unit(1 + 1 / 12, "feet"),
  17083. default: true
  17084. },
  17085. ]
  17086. ))
  17087. characterMakers.push(() => makeCharacter(
  17088. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17089. {
  17090. front: {
  17091. height: math.unit(1, "feet"),
  17092. weight: math.unit(16, "lb"),
  17093. name: "Front",
  17094. image: {
  17095. source: "./media/characters/viola/front.svg"
  17096. }
  17097. },
  17098. },
  17099. [
  17100. {
  17101. name: "Normal",
  17102. height: math.unit(1, "feet"),
  17103. default: true
  17104. },
  17105. ]
  17106. ))
  17107. characterMakers.push(() => makeCharacter(
  17108. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17109. {
  17110. front: {
  17111. height: math.unit(6 + 5 / 12, "feet"),
  17112. weight: math.unit(580, "lb"),
  17113. name: "Front",
  17114. image: {
  17115. source: "./media/characters/atlas/front.svg",
  17116. extra: 298.5 / 290,
  17117. bottom: 0.015
  17118. }
  17119. },
  17120. },
  17121. [
  17122. {
  17123. name: "Normal",
  17124. height: math.unit(6 + 5 / 12, "feet"),
  17125. default: true
  17126. },
  17127. ]
  17128. ))
  17129. characterMakers.push(() => makeCharacter(
  17130. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17131. {
  17132. side: {
  17133. height: math.unit(1 + 10 / 12, "feet"),
  17134. weight: math.unit(25, "lb"),
  17135. name: "Side",
  17136. image: {
  17137. source: "./media/characters/davy/side.svg",
  17138. extra: 200 / 170,
  17139. bottom: 0.01
  17140. }
  17141. },
  17142. },
  17143. [
  17144. {
  17145. name: "Normal",
  17146. height: math.unit(1 + 10 / 12, "feet"),
  17147. default: true
  17148. },
  17149. ]
  17150. ))
  17151. characterMakers.push(() => makeCharacter(
  17152. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17153. {
  17154. side: {
  17155. height: math.unit(4 + 8 / 12, "feet"),
  17156. weight: math.unit(166, "lb"),
  17157. name: "Side",
  17158. image: {
  17159. source: "./media/characters/fiona/side.svg",
  17160. extra: 232 / 220,
  17161. bottom: 0.03
  17162. }
  17163. },
  17164. },
  17165. [
  17166. {
  17167. name: "Normal",
  17168. height: math.unit(4 + 8 / 12, "feet"),
  17169. default: true
  17170. },
  17171. ]
  17172. ))
  17173. characterMakers.push(() => makeCharacter(
  17174. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17175. {
  17176. front: {
  17177. height: math.unit(2, "feet"),
  17178. weight: math.unit(62, "lb"),
  17179. name: "Front",
  17180. image: {
  17181. source: "./media/characters/lyla/front.svg",
  17182. bottom: 0.1
  17183. }
  17184. },
  17185. },
  17186. [
  17187. {
  17188. name: "Normal",
  17189. height: math.unit(2, "feet"),
  17190. default: true
  17191. },
  17192. ]
  17193. ))
  17194. characterMakers.push(() => makeCharacter(
  17195. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17196. {
  17197. side: {
  17198. height: math.unit(1.8, "feet"),
  17199. weight: math.unit(44, "lb"),
  17200. name: "Side",
  17201. image: {
  17202. source: "./media/characters/perseus/side.svg",
  17203. bottom: 0.21
  17204. }
  17205. },
  17206. },
  17207. [
  17208. {
  17209. name: "Normal",
  17210. height: math.unit(1.8, "feet"),
  17211. default: true
  17212. },
  17213. ]
  17214. ))
  17215. characterMakers.push(() => makeCharacter(
  17216. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17217. {
  17218. side: {
  17219. height: math.unit(4 + 2 / 12, "feet"),
  17220. weight: math.unit(20, "lb"),
  17221. name: "Side",
  17222. image: {
  17223. source: "./media/characters/remus/side.svg"
  17224. }
  17225. },
  17226. },
  17227. [
  17228. {
  17229. name: "Normal",
  17230. height: math.unit(4 + 2 / 12, "feet"),
  17231. default: true
  17232. },
  17233. ]
  17234. ))
  17235. characterMakers.push(() => makeCharacter(
  17236. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17237. {
  17238. front: {
  17239. height: math.unit(4 + 11 / 12, "feet"),
  17240. weight: math.unit(114, "lb"),
  17241. name: "Front",
  17242. image: {
  17243. source: "./media/characters/raf/front.svg",
  17244. extra: 1504/1339,
  17245. bottom: 26/1530
  17246. }
  17247. },
  17248. side: {
  17249. height: math.unit(4 + 11 / 12, "feet"),
  17250. weight: math.unit(114, "lb"),
  17251. name: "Side",
  17252. image: {
  17253. source: "./media/characters/raf/side.svg",
  17254. extra: 1466/1316,
  17255. bottom: 29/1495
  17256. }
  17257. },
  17258. },
  17259. [
  17260. {
  17261. name: "Micro",
  17262. height: math.unit(2, "inches")
  17263. },
  17264. {
  17265. name: "Normal",
  17266. height: math.unit(4 + 11 / 12, "feet"),
  17267. default: true
  17268. },
  17269. {
  17270. name: "Macro",
  17271. height: math.unit(70, "feet")
  17272. },
  17273. ]
  17274. ))
  17275. characterMakers.push(() => makeCharacter(
  17276. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17277. {
  17278. front: {
  17279. height: math.unit(1.5, "meters"),
  17280. weight: math.unit(68, "kg"),
  17281. name: "Front",
  17282. image: {
  17283. source: "./media/characters/liam-einarr/front.svg",
  17284. extra: 2822 / 2666
  17285. }
  17286. },
  17287. back: {
  17288. height: math.unit(1.5, "meters"),
  17289. weight: math.unit(68, "kg"),
  17290. name: "Back",
  17291. image: {
  17292. source: "./media/characters/liam-einarr/back.svg",
  17293. extra: 2822 / 2666,
  17294. bottom: 0.015
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Normal",
  17301. height: math.unit(1.5, "meters"),
  17302. default: true
  17303. },
  17304. {
  17305. name: "Macro",
  17306. height: math.unit(150, "meters")
  17307. },
  17308. {
  17309. name: "Megamacro",
  17310. height: math.unit(35, "km")
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17316. {
  17317. front: {
  17318. height: math.unit(6, "feet"),
  17319. weight: math.unit(75, "kg"),
  17320. name: "Front",
  17321. image: {
  17322. source: "./media/characters/linda/front.svg",
  17323. extra: 930 / 874,
  17324. bottom: 0.004
  17325. }
  17326. },
  17327. },
  17328. [
  17329. {
  17330. name: "Normal",
  17331. height: math.unit(6, "feet"),
  17332. default: true
  17333. },
  17334. ]
  17335. ))
  17336. characterMakers.push(() => makeCharacter(
  17337. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17338. {
  17339. front: {
  17340. height: math.unit(6 + 8 / 12, "feet"),
  17341. weight: math.unit(220, "lb"),
  17342. name: "Front",
  17343. image: {
  17344. source: "./media/characters/caylex/front.svg",
  17345. extra: 821 / 772,
  17346. bottom: 0.07
  17347. }
  17348. },
  17349. back: {
  17350. height: math.unit(6 + 8 / 12, "feet"),
  17351. weight: math.unit(220, "lb"),
  17352. name: "Back",
  17353. image: {
  17354. source: "./media/characters/caylex/back.svg",
  17355. extra: 821 / 772,
  17356. bottom: 0.022
  17357. }
  17358. },
  17359. hand: {
  17360. height: math.unit(1.25, "feet"),
  17361. name: "Hand",
  17362. image: {
  17363. source: "./media/characters/caylex/hand.svg"
  17364. }
  17365. },
  17366. foot: {
  17367. height: math.unit(1.6, "feet"),
  17368. name: "Foot",
  17369. image: {
  17370. source: "./media/characters/caylex/foot.svg"
  17371. }
  17372. },
  17373. armored: {
  17374. height: math.unit(6 + 8 / 12, "feet"),
  17375. weight: math.unit(250, "lb"),
  17376. name: "Armored",
  17377. image: {
  17378. source: "./media/characters/caylex/armored.svg",
  17379. extra: 1420 / 1310,
  17380. bottom: 0.045
  17381. }
  17382. },
  17383. },
  17384. [
  17385. {
  17386. name: "Normal",
  17387. height: math.unit(6 + 8 / 12, "feet"),
  17388. default: true
  17389. },
  17390. {
  17391. name: "Normal+",
  17392. height: math.unit(12, "feet")
  17393. },
  17394. ]
  17395. ))
  17396. characterMakers.push(() => makeCharacter(
  17397. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17398. {
  17399. front: {
  17400. height: math.unit(7 + 6 / 12, "feet"),
  17401. weight: math.unit(288, "lb"),
  17402. name: "Front",
  17403. image: {
  17404. source: "./media/characters/alana/front.svg",
  17405. extra: 679 / 653,
  17406. bottom: 22.5 / 701
  17407. }
  17408. },
  17409. },
  17410. [
  17411. {
  17412. name: "Normal",
  17413. height: math.unit(7 + 6 / 12, "feet")
  17414. },
  17415. {
  17416. name: "Large",
  17417. height: math.unit(50, "feet")
  17418. },
  17419. {
  17420. name: "Macro",
  17421. height: math.unit(100, "feet"),
  17422. default: true
  17423. },
  17424. {
  17425. name: "Macro+",
  17426. height: math.unit(200, "feet")
  17427. },
  17428. ]
  17429. ))
  17430. characterMakers.push(() => makeCharacter(
  17431. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17432. {
  17433. front: {
  17434. height: math.unit(6 + 1 / 12, "feet"),
  17435. weight: math.unit(210, "lb"),
  17436. name: "Front",
  17437. image: {
  17438. source: "./media/characters/hasani/front.svg",
  17439. extra: 244 / 232,
  17440. bottom: 0.01
  17441. }
  17442. },
  17443. back: {
  17444. height: math.unit(6 + 1 / 12, "feet"),
  17445. weight: math.unit(210, "lb"),
  17446. name: "Back",
  17447. image: {
  17448. source: "./media/characters/hasani/back.svg",
  17449. extra: 244 / 232,
  17450. bottom: 0.01
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(6 + 1 / 12, "feet")
  17458. },
  17459. {
  17460. name: "Macro",
  17461. height: math.unit(175, "feet"),
  17462. default: true
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17468. {
  17469. front: {
  17470. height: math.unit(1.82, "meters"),
  17471. weight: math.unit(140, "lb"),
  17472. name: "Front",
  17473. image: {
  17474. source: "./media/characters/nita/front.svg",
  17475. extra: 2473 / 2363,
  17476. bottom: 0.01
  17477. }
  17478. },
  17479. },
  17480. [
  17481. {
  17482. name: "Normal",
  17483. height: math.unit(1.82, "m")
  17484. },
  17485. {
  17486. name: "Macro",
  17487. height: math.unit(300, "m")
  17488. },
  17489. {
  17490. name: "Mistake Canon",
  17491. height: math.unit(0.5, "miles"),
  17492. default: true
  17493. },
  17494. {
  17495. name: "Big Mistake",
  17496. height: math.unit(13, "miles")
  17497. },
  17498. {
  17499. name: "Playing God",
  17500. height: math.unit(2450, "miles")
  17501. },
  17502. ]
  17503. ))
  17504. characterMakers.push(() => makeCharacter(
  17505. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17506. {
  17507. front: {
  17508. height: math.unit(4, "feet"),
  17509. weight: math.unit(120, "lb"),
  17510. name: "Front",
  17511. image: {
  17512. source: "./media/characters/shiriko/front.svg",
  17513. extra: 970/934,
  17514. bottom: 5/975
  17515. }
  17516. },
  17517. },
  17518. [
  17519. {
  17520. name: "Normal",
  17521. height: math.unit(4, "feet"),
  17522. default: true
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17528. {
  17529. front: {
  17530. height: math.unit(6, "feet"),
  17531. name: "front",
  17532. image: {
  17533. source: "./media/characters/deja/front.svg",
  17534. extra: 926 / 840,
  17535. bottom: 0.07
  17536. }
  17537. },
  17538. },
  17539. [
  17540. {
  17541. name: "Planck Length",
  17542. height: math.unit(1.6e-35, "meters")
  17543. },
  17544. {
  17545. name: "Normal",
  17546. height: math.unit(30.48, "meters"),
  17547. default: true
  17548. },
  17549. {
  17550. name: "Universal",
  17551. height: math.unit(8.8e26, "meters")
  17552. },
  17553. ]
  17554. ))
  17555. characterMakers.push(() => makeCharacter(
  17556. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17557. {
  17558. side: {
  17559. height: math.unit(8, "feet"),
  17560. weight: math.unit(6300, "lb"),
  17561. name: "Side",
  17562. image: {
  17563. source: "./media/characters/anima/side.svg",
  17564. bottom: 0.035
  17565. }
  17566. },
  17567. },
  17568. [
  17569. {
  17570. name: "Normal",
  17571. height: math.unit(8, "feet"),
  17572. default: true
  17573. },
  17574. ]
  17575. ))
  17576. characterMakers.push(() => makeCharacter(
  17577. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17578. {
  17579. front: {
  17580. height: math.unit(8, "feet"),
  17581. weight: math.unit(350, "lb"),
  17582. name: "Front",
  17583. image: {
  17584. source: "./media/characters/bianca/front.svg",
  17585. extra: 234 / 225,
  17586. bottom: 0.03
  17587. }
  17588. },
  17589. },
  17590. [
  17591. {
  17592. name: "Normal",
  17593. height: math.unit(8, "feet"),
  17594. default: true
  17595. },
  17596. ]
  17597. ))
  17598. characterMakers.push(() => makeCharacter(
  17599. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17600. {
  17601. front: {
  17602. height: math.unit(6, "feet"),
  17603. weight: math.unit(150, "lb"),
  17604. name: "Front",
  17605. image: {
  17606. source: "./media/characters/adinia/front.svg",
  17607. extra: 1845 / 1672,
  17608. bottom: 0.02
  17609. }
  17610. },
  17611. back: {
  17612. height: math.unit(6, "feet"),
  17613. weight: math.unit(150, "lb"),
  17614. name: "Back",
  17615. image: {
  17616. source: "./media/characters/adinia/back.svg",
  17617. extra: 1845 / 1672,
  17618. bottom: 0.002
  17619. }
  17620. },
  17621. },
  17622. [
  17623. {
  17624. name: "Normal",
  17625. height: math.unit(11 + 5 / 12, "feet"),
  17626. default: true
  17627. },
  17628. ]
  17629. ))
  17630. characterMakers.push(() => makeCharacter(
  17631. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17632. {
  17633. front: {
  17634. height: math.unit(3, "meters"),
  17635. weight: math.unit(200, "kg"),
  17636. name: "Front",
  17637. image: {
  17638. source: "./media/characters/lykasa/front.svg",
  17639. extra: 1076 / 976,
  17640. bottom: 0.06
  17641. }
  17642. },
  17643. },
  17644. [
  17645. {
  17646. name: "Normal",
  17647. height: math.unit(3, "meters")
  17648. },
  17649. {
  17650. name: "Kaiju",
  17651. height: math.unit(120, "meters"),
  17652. default: true
  17653. },
  17654. {
  17655. name: "Mega Kaiju",
  17656. height: math.unit(240, "km")
  17657. },
  17658. {
  17659. name: "Giga Kaiju",
  17660. height: math.unit(400, "megameters")
  17661. },
  17662. {
  17663. name: "Tera Kaiju",
  17664. height: math.unit(800, "gigameters")
  17665. },
  17666. {
  17667. name: "Kaiju Dragon Goddess",
  17668. height: math.unit(26, "zettaparsecs")
  17669. },
  17670. ]
  17671. ))
  17672. characterMakers.push(() => makeCharacter(
  17673. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17674. {
  17675. side: {
  17676. height: math.unit(283 / 124 * 6, "feet"),
  17677. weight: math.unit(35000, "lb"),
  17678. name: "Side",
  17679. image: {
  17680. source: "./media/characters/malfaren/side.svg",
  17681. extra: 2500 / 1010,
  17682. bottom: 0.01
  17683. }
  17684. },
  17685. front: {
  17686. height: math.unit(22.36, "feet"),
  17687. weight: math.unit(35000, "lb"),
  17688. name: "Front",
  17689. image: {
  17690. source: "./media/characters/malfaren/front.svg",
  17691. extra: 1631 / 1476,
  17692. bottom: 0.01
  17693. }
  17694. },
  17695. maw: {
  17696. height: math.unit(6.9, "feet"),
  17697. name: "Maw",
  17698. image: {
  17699. source: "./media/characters/malfaren/maw.svg"
  17700. }
  17701. },
  17702. },
  17703. [
  17704. {
  17705. name: "Big",
  17706. height: math.unit(283 / 162 * 6, "feet"),
  17707. },
  17708. {
  17709. name: "Bigger",
  17710. height: math.unit(283 / 124 * 6, "feet")
  17711. },
  17712. {
  17713. name: "Massive",
  17714. height: math.unit(283 / 92 * 6, "feet"),
  17715. default: true
  17716. },
  17717. {
  17718. name: "👀💦",
  17719. height: math.unit(283 / 73 * 6, "feet"),
  17720. },
  17721. ]
  17722. ))
  17723. characterMakers.push(() => makeCharacter(
  17724. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17725. {
  17726. front: {
  17727. height: math.unit(1.7, "m"),
  17728. weight: math.unit(70, "kg"),
  17729. name: "Front",
  17730. image: {
  17731. source: "./media/characters/kernel/front.svg",
  17732. extra: 222 / 210,
  17733. bottom: 0.007
  17734. }
  17735. },
  17736. },
  17737. [
  17738. {
  17739. name: "Nano",
  17740. height: math.unit(17, "micrometers")
  17741. },
  17742. {
  17743. name: "Micro",
  17744. height: math.unit(1.7, "mm")
  17745. },
  17746. {
  17747. name: "Small",
  17748. height: math.unit(1.7, "cm")
  17749. },
  17750. {
  17751. name: "Normal",
  17752. height: math.unit(1.7, "m"),
  17753. default: true
  17754. },
  17755. ]
  17756. ))
  17757. characterMakers.push(() => makeCharacter(
  17758. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17759. {
  17760. front: {
  17761. height: math.unit(1.75, "meters"),
  17762. weight: math.unit(65, "kg"),
  17763. name: "Front",
  17764. image: {
  17765. source: "./media/characters/jayne-folest/front.svg",
  17766. extra: 2115 / 2007,
  17767. bottom: 0.02
  17768. }
  17769. },
  17770. back: {
  17771. height: math.unit(1.75, "meters"),
  17772. weight: math.unit(65, "kg"),
  17773. name: "Back",
  17774. image: {
  17775. source: "./media/characters/jayne-folest/back.svg",
  17776. extra: 2115 / 2007,
  17777. bottom: 0.005
  17778. }
  17779. },
  17780. frontClothed: {
  17781. height: math.unit(1.75, "meters"),
  17782. weight: math.unit(65, "kg"),
  17783. name: "Front (Clothed)",
  17784. image: {
  17785. source: "./media/characters/jayne-folest/front-clothed.svg",
  17786. extra: 2115 / 2007,
  17787. bottom: 0.035
  17788. }
  17789. },
  17790. hand: {
  17791. height: math.unit(1 / 1.260, "feet"),
  17792. name: "Hand",
  17793. image: {
  17794. source: "./media/characters/jayne-folest/hand.svg"
  17795. }
  17796. },
  17797. foot: {
  17798. height: math.unit(1 / 0.918, "feet"),
  17799. name: "Foot",
  17800. image: {
  17801. source: "./media/characters/jayne-folest/foot.svg"
  17802. }
  17803. },
  17804. },
  17805. [
  17806. {
  17807. name: "Micro",
  17808. height: math.unit(4, "cm")
  17809. },
  17810. {
  17811. name: "Normal",
  17812. height: math.unit(1.75, "meters")
  17813. },
  17814. {
  17815. name: "Macro",
  17816. height: math.unit(47.5, "meters"),
  17817. default: true
  17818. },
  17819. ]
  17820. ))
  17821. characterMakers.push(() => makeCharacter(
  17822. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17823. {
  17824. front: {
  17825. height: math.unit(180, "cm"),
  17826. weight: math.unit(70, "kg"),
  17827. name: "Front",
  17828. image: {
  17829. source: "./media/characters/algier/front.svg",
  17830. extra: 596 / 572,
  17831. bottom: 0.04
  17832. }
  17833. },
  17834. back: {
  17835. height: math.unit(180, "cm"),
  17836. weight: math.unit(70, "kg"),
  17837. name: "Back",
  17838. image: {
  17839. source: "./media/characters/algier/back.svg",
  17840. extra: 596 / 572,
  17841. bottom: 0.025
  17842. }
  17843. },
  17844. frontdressed: {
  17845. height: math.unit(180, "cm"),
  17846. weight: math.unit(150, "kg"),
  17847. name: "Front-dressed",
  17848. image: {
  17849. source: "./media/characters/algier/front-dressed.svg",
  17850. extra: 596 / 572,
  17851. bottom: 0.038
  17852. }
  17853. },
  17854. },
  17855. [
  17856. {
  17857. name: "Micro",
  17858. height: math.unit(5, "cm")
  17859. },
  17860. {
  17861. name: "Normal",
  17862. height: math.unit(180, "cm"),
  17863. default: true
  17864. },
  17865. {
  17866. name: "Macro",
  17867. height: math.unit(64, "m")
  17868. },
  17869. ]
  17870. ))
  17871. characterMakers.push(() => makeCharacter(
  17872. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17873. {
  17874. upright: {
  17875. height: math.unit(7, "feet"),
  17876. weight: math.unit(300, "lb"),
  17877. name: "Upright",
  17878. image: {
  17879. source: "./media/characters/pretzel/upright.svg",
  17880. extra: 534 / 522,
  17881. bottom: 0.065
  17882. }
  17883. },
  17884. sprawling: {
  17885. height: math.unit(3.75, "feet"),
  17886. weight: math.unit(300, "lb"),
  17887. name: "Sprawling",
  17888. image: {
  17889. source: "./media/characters/pretzel/sprawling.svg",
  17890. extra: 314 / 281,
  17891. bottom: 0.1
  17892. }
  17893. },
  17894. tongue: {
  17895. height: math.unit(2, "feet"),
  17896. name: "Tongue",
  17897. image: {
  17898. source: "./media/characters/pretzel/tongue.svg"
  17899. }
  17900. },
  17901. },
  17902. [
  17903. {
  17904. name: "Normal",
  17905. height: math.unit(7, "feet"),
  17906. default: true
  17907. },
  17908. {
  17909. name: "Oversized",
  17910. height: math.unit(15, "feet")
  17911. },
  17912. {
  17913. name: "Huge",
  17914. height: math.unit(30, "feet")
  17915. },
  17916. {
  17917. name: "Macro",
  17918. height: math.unit(250, "feet")
  17919. },
  17920. ]
  17921. ))
  17922. characterMakers.push(() => makeCharacter(
  17923. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17924. {
  17925. sideFront: {
  17926. height: math.unit(5 + 2 / 12, "feet"),
  17927. weight: math.unit(120, "lb"),
  17928. name: "Front Side",
  17929. image: {
  17930. source: "./media/characters/roxi/side-front.svg",
  17931. extra: 2924 / 2717,
  17932. bottom: 0.08
  17933. }
  17934. },
  17935. sideBack: {
  17936. height: math.unit(5 + 2 / 12, "feet"),
  17937. weight: math.unit(120, "lb"),
  17938. name: "Back Side",
  17939. image: {
  17940. source: "./media/characters/roxi/side-back.svg",
  17941. extra: 2904 / 2693,
  17942. bottom: 0.06
  17943. }
  17944. },
  17945. front: {
  17946. height: math.unit(5 + 2 / 12, "feet"),
  17947. weight: math.unit(120, "lb"),
  17948. name: "Front",
  17949. image: {
  17950. source: "./media/characters/roxi/front.svg",
  17951. extra: 2028 / 1907,
  17952. bottom: 0.01
  17953. }
  17954. },
  17955. frontAlt: {
  17956. height: math.unit(5 + 2 / 12, "feet"),
  17957. weight: math.unit(120, "lb"),
  17958. name: "Front (Alt)",
  17959. image: {
  17960. source: "./media/characters/roxi/front-alt.svg",
  17961. extra: 1828 / 1798,
  17962. bottom: 0.01
  17963. }
  17964. },
  17965. sitting: {
  17966. height: math.unit(2.8, "feet"),
  17967. weight: math.unit(120, "lb"),
  17968. name: "Sitting",
  17969. image: {
  17970. source: "./media/characters/roxi/sitting.svg",
  17971. extra: 2660 / 2462,
  17972. bottom: 0.1
  17973. }
  17974. },
  17975. },
  17976. [
  17977. {
  17978. name: "Normal",
  17979. height: math.unit(5 + 2 / 12, "feet"),
  17980. default: true
  17981. },
  17982. ]
  17983. ))
  17984. characterMakers.push(() => makeCharacter(
  17985. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17986. {
  17987. side: {
  17988. height: math.unit(55, "feet"),
  17989. weight: math.unit(153, "tons"),
  17990. name: "Side",
  17991. image: {
  17992. source: "./media/characters/shadow/side.svg",
  17993. extra: 701 / 628,
  17994. bottom: 0.02
  17995. }
  17996. },
  17997. flying: {
  17998. height: math.unit(145, "feet"),
  17999. weight: math.unit(153, "tons"),
  18000. name: "Flying",
  18001. image: {
  18002. source: "./media/characters/shadow/flying.svg"
  18003. }
  18004. },
  18005. },
  18006. [
  18007. {
  18008. name: "Normal",
  18009. height: math.unit(55, "feet"),
  18010. default: true
  18011. },
  18012. ]
  18013. ))
  18014. characterMakers.push(() => makeCharacter(
  18015. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18016. {
  18017. front: {
  18018. height: math.unit(6, "feet"),
  18019. weight: math.unit(200, "lb"),
  18020. name: "Front",
  18021. image: {
  18022. source: "./media/characters/marcie/front.svg",
  18023. extra: 960 / 876,
  18024. bottom: 58 / 1017.87
  18025. }
  18026. },
  18027. },
  18028. [
  18029. {
  18030. name: "Macro",
  18031. height: math.unit(1, "mile"),
  18032. default: true
  18033. },
  18034. ]
  18035. ))
  18036. characterMakers.push(() => makeCharacter(
  18037. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18038. {
  18039. front: {
  18040. height: math.unit(7, "feet"),
  18041. weight: math.unit(200, "lb"),
  18042. name: "Front",
  18043. image: {
  18044. source: "./media/characters/kachina/front.svg",
  18045. extra: 1290.68 / 1119,
  18046. bottom: 36.5 / 1327.18
  18047. }
  18048. },
  18049. },
  18050. [
  18051. {
  18052. name: "Normal",
  18053. height: math.unit(7, "feet"),
  18054. default: true
  18055. },
  18056. ]
  18057. ))
  18058. characterMakers.push(() => makeCharacter(
  18059. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18060. {
  18061. looking: {
  18062. height: math.unit(2, "meters"),
  18063. weight: math.unit(300, "kg"),
  18064. name: "Looking",
  18065. image: {
  18066. source: "./media/characters/kash/looking.svg",
  18067. extra: 474 / 344,
  18068. bottom: 0.03
  18069. }
  18070. },
  18071. side: {
  18072. height: math.unit(2, "meters"),
  18073. weight: math.unit(300, "kg"),
  18074. name: "Side",
  18075. image: {
  18076. source: "./media/characters/kash/side.svg",
  18077. extra: 302 / 251,
  18078. bottom: 0.03
  18079. }
  18080. },
  18081. front: {
  18082. height: math.unit(2, "meters"),
  18083. weight: math.unit(300, "kg"),
  18084. name: "Front",
  18085. image: {
  18086. source: "./media/characters/kash/front.svg",
  18087. extra: 495 / 360,
  18088. bottom: 0.015
  18089. }
  18090. },
  18091. },
  18092. [
  18093. {
  18094. name: "Normal",
  18095. height: math.unit(2, "meters"),
  18096. default: true
  18097. },
  18098. {
  18099. name: "Big",
  18100. height: math.unit(3, "meters")
  18101. },
  18102. {
  18103. name: "Large",
  18104. height: math.unit(5, "meters")
  18105. },
  18106. ]
  18107. ))
  18108. characterMakers.push(() => makeCharacter(
  18109. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18110. {
  18111. feeding: {
  18112. height: math.unit(6.7, "feet"),
  18113. weight: math.unit(350, "lb"),
  18114. name: "Feeding",
  18115. image: {
  18116. source: "./media/characters/lalim/feeding.svg",
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(6.7, "feet"),
  18124. default: true
  18125. },
  18126. ]
  18127. ))
  18128. characterMakers.push(() => makeCharacter(
  18129. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18130. {
  18131. front: {
  18132. height: math.unit(9.5, "feet"),
  18133. weight: math.unit(600, "lb"),
  18134. name: "Front",
  18135. image: {
  18136. source: "./media/characters/de'vout/front.svg",
  18137. extra: 1443 / 1328,
  18138. bottom: 0.025
  18139. }
  18140. },
  18141. back: {
  18142. height: math.unit(9.5, "feet"),
  18143. weight: math.unit(600, "lb"),
  18144. name: "Back",
  18145. image: {
  18146. source: "./media/characters/de'vout/back.svg",
  18147. extra: 1443 / 1328
  18148. }
  18149. },
  18150. frontDressed: {
  18151. height: math.unit(9.5, "feet"),
  18152. weight: math.unit(600, "lb"),
  18153. name: "Front (Dressed",
  18154. image: {
  18155. source: "./media/characters/de'vout/front-dressed.svg",
  18156. extra: 1443 / 1328,
  18157. bottom: 0.025
  18158. }
  18159. },
  18160. backDressed: {
  18161. height: math.unit(9.5, "feet"),
  18162. weight: math.unit(600, "lb"),
  18163. name: "Back (Dressed",
  18164. image: {
  18165. source: "./media/characters/de'vout/back-dressed.svg",
  18166. extra: 1443 / 1328
  18167. }
  18168. },
  18169. },
  18170. [
  18171. {
  18172. name: "Normal",
  18173. height: math.unit(9.5, "feet"),
  18174. default: true
  18175. },
  18176. ]
  18177. ))
  18178. characterMakers.push(() => makeCharacter(
  18179. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18180. {
  18181. front: {
  18182. height: math.unit(8, "feet"),
  18183. weight: math.unit(225, "lb"),
  18184. name: "Front",
  18185. image: {
  18186. source: "./media/characters/talana/front.svg",
  18187. extra: 1410 / 1300,
  18188. bottom: 0.015
  18189. }
  18190. },
  18191. frontDressed: {
  18192. height: math.unit(8, "feet"),
  18193. weight: math.unit(225, "lb"),
  18194. name: "Front (Dressed",
  18195. image: {
  18196. source: "./media/characters/talana/front-dressed.svg",
  18197. extra: 1410 / 1300,
  18198. bottom: 0.015
  18199. }
  18200. },
  18201. },
  18202. [
  18203. {
  18204. name: "Normal",
  18205. height: math.unit(8, "feet"),
  18206. default: true
  18207. },
  18208. ]
  18209. ))
  18210. characterMakers.push(() => makeCharacter(
  18211. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18212. {
  18213. side: {
  18214. height: math.unit(7.2, "feet"),
  18215. weight: math.unit(150, "lb"),
  18216. name: "Side",
  18217. image: {
  18218. source: "./media/characters/xeauvok/side.svg",
  18219. extra: 1975 / 1523,
  18220. bottom: 0.07
  18221. }
  18222. },
  18223. },
  18224. [
  18225. {
  18226. name: "Normal",
  18227. height: math.unit(7.2, "feet"),
  18228. default: true
  18229. },
  18230. ]
  18231. ))
  18232. characterMakers.push(() => makeCharacter(
  18233. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18234. {
  18235. side: {
  18236. height: math.unit(10, "feet"),
  18237. weight: math.unit(900, "kg"),
  18238. name: "Side",
  18239. image: {
  18240. source: "./media/characters/zara/side.svg",
  18241. extra: 504 / 498
  18242. }
  18243. },
  18244. },
  18245. [
  18246. {
  18247. name: "Normal",
  18248. height: math.unit(10, "feet"),
  18249. default: true
  18250. },
  18251. ]
  18252. ))
  18253. characterMakers.push(() => makeCharacter(
  18254. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18255. {
  18256. side: {
  18257. height: math.unit(6, "feet"),
  18258. weight: math.unit(150, "lb"),
  18259. name: "Side",
  18260. image: {
  18261. source: "./media/characters/richard-dragon/side.svg",
  18262. extra: 845 / 340,
  18263. bottom: 0.017
  18264. }
  18265. },
  18266. maw: {
  18267. height: math.unit(2.97, "feet"),
  18268. name: "Maw",
  18269. image: {
  18270. source: "./media/characters/richard-dragon/maw.svg"
  18271. }
  18272. },
  18273. },
  18274. [
  18275. ]
  18276. ))
  18277. characterMakers.push(() => makeCharacter(
  18278. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18279. {
  18280. front: {
  18281. height: math.unit(4, "feet"),
  18282. weight: math.unit(100, "lb"),
  18283. name: "Front",
  18284. image: {
  18285. source: "./media/characters/richard-smeargle/front.svg",
  18286. extra: 2952 / 2820,
  18287. bottom: 0.028
  18288. }
  18289. },
  18290. },
  18291. [
  18292. {
  18293. name: "Normal",
  18294. height: math.unit(4, "feet"),
  18295. default: true
  18296. },
  18297. {
  18298. name: "Dynamax",
  18299. height: math.unit(20, "meters")
  18300. },
  18301. ]
  18302. ))
  18303. characterMakers.push(() => makeCharacter(
  18304. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18305. {
  18306. front: {
  18307. height: math.unit(6, "feet"),
  18308. weight: math.unit(110, "lb"),
  18309. name: "Front",
  18310. image: {
  18311. source: "./media/characters/klay/front.svg",
  18312. extra: 962 / 883,
  18313. bottom: 0.04
  18314. }
  18315. },
  18316. back: {
  18317. height: math.unit(6, "feet"),
  18318. weight: math.unit(110, "lb"),
  18319. name: "Back",
  18320. image: {
  18321. source: "./media/characters/klay/back.svg",
  18322. extra: 962 / 883
  18323. }
  18324. },
  18325. beans: {
  18326. height: math.unit(1.15, "feet"),
  18327. name: "Beans",
  18328. image: {
  18329. source: "./media/characters/klay/beans.svg"
  18330. }
  18331. },
  18332. },
  18333. [
  18334. {
  18335. name: "Micro",
  18336. height: math.unit(6, "inches")
  18337. },
  18338. {
  18339. name: "Mini",
  18340. height: math.unit(3, "feet")
  18341. },
  18342. {
  18343. name: "Normal",
  18344. height: math.unit(6, "feet"),
  18345. default: true
  18346. },
  18347. {
  18348. name: "Big",
  18349. height: math.unit(25, "feet")
  18350. },
  18351. {
  18352. name: "Macro",
  18353. height: math.unit(100, "feet")
  18354. },
  18355. {
  18356. name: "Megamacro",
  18357. height: math.unit(400, "feet")
  18358. },
  18359. ]
  18360. ))
  18361. characterMakers.push(() => makeCharacter(
  18362. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18363. {
  18364. front: {
  18365. height: math.unit(6, "feet"),
  18366. weight: math.unit(160, "lb"),
  18367. name: "Front",
  18368. image: {
  18369. source: "./media/characters/marcus/front.svg",
  18370. extra: 734 / 676,
  18371. bottom: 0.03
  18372. }
  18373. },
  18374. },
  18375. [
  18376. {
  18377. name: "Little",
  18378. height: math.unit(6, "feet")
  18379. },
  18380. {
  18381. name: "Normal",
  18382. height: math.unit(110, "feet"),
  18383. default: true
  18384. },
  18385. {
  18386. name: "Macro",
  18387. height: math.unit(250, "feet")
  18388. },
  18389. {
  18390. name: "Megamacro",
  18391. height: math.unit(1000, "feet")
  18392. },
  18393. ]
  18394. ))
  18395. characterMakers.push(() => makeCharacter(
  18396. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18397. {
  18398. front: {
  18399. height: math.unit(7, "feet"),
  18400. weight: math.unit(275, "lb"),
  18401. name: "Front",
  18402. image: {
  18403. source: "./media/characters/claude-delroute/front.svg",
  18404. extra: 230 / 214,
  18405. bottom: 0.007
  18406. }
  18407. },
  18408. side: {
  18409. height: math.unit(7, "feet"),
  18410. weight: math.unit(275, "lb"),
  18411. name: "Side",
  18412. image: {
  18413. source: "./media/characters/claude-delroute/side.svg",
  18414. extra: 222 / 214,
  18415. bottom: 0.01
  18416. }
  18417. },
  18418. back: {
  18419. height: math.unit(7, "feet"),
  18420. weight: math.unit(275, "lb"),
  18421. name: "Back",
  18422. image: {
  18423. source: "./media/characters/claude-delroute/back.svg",
  18424. extra: 230 / 214,
  18425. bottom: 0.015
  18426. }
  18427. },
  18428. maw: {
  18429. height: math.unit(0.6407, "meters"),
  18430. name: "Maw",
  18431. image: {
  18432. source: "./media/characters/claude-delroute/maw.svg"
  18433. }
  18434. },
  18435. },
  18436. [
  18437. {
  18438. name: "Normal",
  18439. height: math.unit(7, "feet"),
  18440. default: true
  18441. },
  18442. {
  18443. name: "Lorge",
  18444. height: math.unit(20, "feet")
  18445. },
  18446. ]
  18447. ))
  18448. characterMakers.push(() => makeCharacter(
  18449. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18450. {
  18451. front: {
  18452. height: math.unit(8 + 4 / 12, "feet"),
  18453. weight: math.unit(600, "lb"),
  18454. name: "Front",
  18455. image: {
  18456. source: "./media/characters/dragonien/front.svg",
  18457. extra: 100 / 94,
  18458. bottom: 3.3 / 103.3445
  18459. }
  18460. },
  18461. back: {
  18462. height: math.unit(8 + 4 / 12, "feet"),
  18463. weight: math.unit(600, "lb"),
  18464. name: "Back",
  18465. image: {
  18466. source: "./media/characters/dragonien/back.svg",
  18467. extra: 776 / 746,
  18468. bottom: 6.4 / 782.0616
  18469. }
  18470. },
  18471. foot: {
  18472. height: math.unit(1.54, "feet"),
  18473. name: "Foot",
  18474. image: {
  18475. source: "./media/characters/dragonien/foot.svg",
  18476. }
  18477. },
  18478. },
  18479. [
  18480. {
  18481. name: "Normal",
  18482. height: math.unit(8 + 4 / 12, "feet"),
  18483. default: true
  18484. },
  18485. {
  18486. name: "Macro",
  18487. height: math.unit(200, "feet")
  18488. },
  18489. {
  18490. name: "Megamacro",
  18491. height: math.unit(1, "mile")
  18492. },
  18493. {
  18494. name: "Gigamacro",
  18495. height: math.unit(1000, "miles")
  18496. },
  18497. ]
  18498. ))
  18499. characterMakers.push(() => makeCharacter(
  18500. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18501. {
  18502. front: {
  18503. height: math.unit(5 + 2 / 12, "feet"),
  18504. weight: math.unit(110, "lb"),
  18505. name: "Front",
  18506. image: {
  18507. source: "./media/characters/desta/front.svg",
  18508. extra: 767 / 726,
  18509. bottom: 11.7 / 779
  18510. }
  18511. },
  18512. back: {
  18513. height: math.unit(5 + 2 / 12, "feet"),
  18514. weight: math.unit(110, "lb"),
  18515. name: "Back",
  18516. image: {
  18517. source: "./media/characters/desta/back.svg",
  18518. extra: 777 / 728,
  18519. bottom: 6 / 784
  18520. }
  18521. },
  18522. frontAlt: {
  18523. height: math.unit(5 + 2 / 12, "feet"),
  18524. weight: math.unit(110, "lb"),
  18525. name: "Front",
  18526. image: {
  18527. source: "./media/characters/desta/front-alt.svg",
  18528. extra: 1482 / 1417
  18529. }
  18530. },
  18531. side: {
  18532. height: math.unit(5 + 2 / 12, "feet"),
  18533. weight: math.unit(110, "lb"),
  18534. name: "Side",
  18535. image: {
  18536. source: "./media/characters/desta/side.svg",
  18537. extra: 2579 / 2491,
  18538. bottom: 0.053
  18539. }
  18540. },
  18541. },
  18542. [
  18543. {
  18544. name: "Micro",
  18545. height: math.unit(6, "inches")
  18546. },
  18547. {
  18548. name: "Normal",
  18549. height: math.unit(5 + 2 / 12, "feet"),
  18550. default: true
  18551. },
  18552. {
  18553. name: "Macro",
  18554. height: math.unit(62, "feet")
  18555. },
  18556. {
  18557. name: "Megamacro",
  18558. height: math.unit(1800, "feet")
  18559. },
  18560. ]
  18561. ))
  18562. characterMakers.push(() => makeCharacter(
  18563. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18564. {
  18565. front: {
  18566. height: math.unit(10, "feet"),
  18567. weight: math.unit(700, "lb"),
  18568. name: "Front",
  18569. image: {
  18570. source: "./media/characters/storm-alystar/front.svg",
  18571. extra: 2112 / 1898,
  18572. bottom: 0.034
  18573. }
  18574. },
  18575. },
  18576. [
  18577. {
  18578. name: "Micro",
  18579. height: math.unit(3.5, "inches")
  18580. },
  18581. {
  18582. name: "Normal",
  18583. height: math.unit(10, "feet"),
  18584. default: true
  18585. },
  18586. {
  18587. name: "Macro",
  18588. height: math.unit(400, "feet")
  18589. },
  18590. {
  18591. name: "Deific",
  18592. height: math.unit(60, "miles")
  18593. },
  18594. ]
  18595. ))
  18596. characterMakers.push(() => makeCharacter(
  18597. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18598. {
  18599. front: {
  18600. height: math.unit(2.35, "meters"),
  18601. weight: math.unit(119, "kg"),
  18602. name: "Front",
  18603. image: {
  18604. source: "./media/characters/ilia/front.svg",
  18605. extra: 1285 / 1255,
  18606. bottom: 0.06
  18607. }
  18608. },
  18609. },
  18610. [
  18611. {
  18612. name: "Normal",
  18613. height: math.unit(2.35, "meters")
  18614. },
  18615. {
  18616. name: "Macro",
  18617. height: math.unit(140, "meters"),
  18618. default: true
  18619. },
  18620. {
  18621. name: "Megamacro",
  18622. height: math.unit(100, "miles")
  18623. },
  18624. ]
  18625. ))
  18626. characterMakers.push(() => makeCharacter(
  18627. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18628. {
  18629. front: {
  18630. height: math.unit(6 + 5 / 12, "feet"),
  18631. weight: math.unit(190, "lb"),
  18632. name: "Front",
  18633. image: {
  18634. source: "./media/characters/kingdead/front.svg",
  18635. extra: 1228 / 1177
  18636. }
  18637. },
  18638. },
  18639. [
  18640. {
  18641. name: "Micro",
  18642. height: math.unit(7, "inches")
  18643. },
  18644. {
  18645. name: "Normal",
  18646. height: math.unit(6 + 5 / 12, "feet")
  18647. },
  18648. {
  18649. name: "Macro",
  18650. height: math.unit(150, "feet"),
  18651. default: true
  18652. },
  18653. {
  18654. name: "Megamacro",
  18655. height: math.unit(200, "miles")
  18656. },
  18657. ]
  18658. ))
  18659. characterMakers.push(() => makeCharacter(
  18660. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18661. {
  18662. front: {
  18663. height: math.unit(8, "feet"),
  18664. weight: math.unit(600, "lb"),
  18665. name: "Front",
  18666. image: {
  18667. source: "./media/characters/kyrehx/front.svg",
  18668. extra: 1195 / 1095,
  18669. bottom: 0.034
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Micro",
  18676. height: math.unit(2, "inches")
  18677. },
  18678. {
  18679. name: "Normal",
  18680. height: math.unit(8, "feet"),
  18681. default: true
  18682. },
  18683. {
  18684. name: "Macro",
  18685. height: math.unit(255, "feet")
  18686. },
  18687. ]
  18688. ))
  18689. characterMakers.push(() => makeCharacter(
  18690. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18691. {
  18692. front: {
  18693. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18694. weight: math.unit(184, "lb"),
  18695. name: "Front",
  18696. image: {
  18697. source: "./media/characters/xang/front.svg",
  18698. extra: 845 / 755
  18699. }
  18700. },
  18701. },
  18702. [
  18703. {
  18704. name: "Normal",
  18705. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18706. default: true
  18707. },
  18708. {
  18709. name: "Macro",
  18710. height: math.unit(0.935 * 146, "feet")
  18711. },
  18712. {
  18713. name: "Megamacro",
  18714. height: math.unit(0.935 * 3, "miles")
  18715. },
  18716. ]
  18717. ))
  18718. characterMakers.push(() => makeCharacter(
  18719. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18720. {
  18721. frontDressed: {
  18722. height: math.unit(5 + 7 / 12, "feet"),
  18723. weight: math.unit(140, "lb"),
  18724. name: "Front (Dressed)",
  18725. image: {
  18726. source: "./media/characters/doc-weardno/front-dressed.svg",
  18727. extra: 263 / 234
  18728. }
  18729. },
  18730. backDressed: {
  18731. height: math.unit(5 + 7 / 12, "feet"),
  18732. weight: math.unit(140, "lb"),
  18733. name: "Back (Dressed)",
  18734. image: {
  18735. source: "./media/characters/doc-weardno/back-dressed.svg",
  18736. extra: 266 / 238
  18737. }
  18738. },
  18739. front: {
  18740. height: math.unit(5 + 7 / 12, "feet"),
  18741. weight: math.unit(140, "lb"),
  18742. name: "Front",
  18743. image: {
  18744. source: "./media/characters/doc-weardno/front.svg",
  18745. extra: 254 / 233
  18746. }
  18747. },
  18748. },
  18749. [
  18750. {
  18751. name: "Micro",
  18752. height: math.unit(3, "inches")
  18753. },
  18754. {
  18755. name: "Normal",
  18756. height: math.unit(5 + 7 / 12, "feet"),
  18757. default: true
  18758. },
  18759. {
  18760. name: "Macro",
  18761. height: math.unit(25, "feet")
  18762. },
  18763. {
  18764. name: "Megamacro",
  18765. height: math.unit(2, "miles")
  18766. },
  18767. ]
  18768. ))
  18769. characterMakers.push(() => makeCharacter(
  18770. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18771. {
  18772. front: {
  18773. height: math.unit(6 + 2 / 12, "feet"),
  18774. weight: math.unit(153, "lb"),
  18775. name: "Front",
  18776. image: {
  18777. source: "./media/characters/seth-whilst/front.svg",
  18778. bottom: 0.07
  18779. }
  18780. },
  18781. },
  18782. [
  18783. {
  18784. name: "Micro",
  18785. height: math.unit(5, "inches")
  18786. },
  18787. {
  18788. name: "Normal",
  18789. height: math.unit(6 + 2 / 12, "feet"),
  18790. default: true
  18791. },
  18792. ]
  18793. ))
  18794. characterMakers.push(() => makeCharacter(
  18795. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18796. {
  18797. front: {
  18798. height: math.unit(3, "inches"),
  18799. weight: math.unit(8, "grams"),
  18800. name: "Front",
  18801. image: {
  18802. source: "./media/characters/pocket-jabari/front.svg",
  18803. extra: 1024 / 974,
  18804. bottom: 0.039
  18805. }
  18806. },
  18807. },
  18808. [
  18809. {
  18810. name: "Minimicro",
  18811. height: math.unit(8, "mm")
  18812. },
  18813. {
  18814. name: "Micro",
  18815. height: math.unit(3, "inches"),
  18816. default: true
  18817. },
  18818. {
  18819. name: "Normal",
  18820. height: math.unit(3, "feet")
  18821. },
  18822. ]
  18823. ))
  18824. characterMakers.push(() => makeCharacter(
  18825. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18826. {
  18827. front: {
  18828. height: math.unit(15, "feet"),
  18829. weight: math.unit(3280, "lb"),
  18830. name: "Front",
  18831. image: {
  18832. source: "./media/characters/sapphy/front.svg",
  18833. extra: 671 / 577,
  18834. bottom: 0.085
  18835. }
  18836. },
  18837. back: {
  18838. height: math.unit(15, "feet"),
  18839. weight: math.unit(3280, "lb"),
  18840. name: "Back",
  18841. image: {
  18842. source: "./media/characters/sapphy/back.svg",
  18843. extra: 631 / 607,
  18844. bottom: 0.045
  18845. }
  18846. },
  18847. },
  18848. [
  18849. {
  18850. name: "Normal",
  18851. height: math.unit(15, "feet")
  18852. },
  18853. {
  18854. name: "Casual Macro",
  18855. height: math.unit(120, "feet")
  18856. },
  18857. {
  18858. name: "Macro",
  18859. height: math.unit(2150, "feet"),
  18860. default: true
  18861. },
  18862. {
  18863. name: "Megamacro",
  18864. height: math.unit(8, "miles")
  18865. },
  18866. {
  18867. name: "Galaxy Mom",
  18868. height: math.unit(6, "megalightyears")
  18869. },
  18870. ]
  18871. ))
  18872. characterMakers.push(() => makeCharacter(
  18873. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18874. {
  18875. front: {
  18876. height: math.unit(6, "feet"),
  18877. weight: math.unit(170, "lb"),
  18878. name: "Front",
  18879. image: {
  18880. source: "./media/characters/kiro/front.svg",
  18881. extra: 1064 / 1012,
  18882. bottom: 0.052
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Micro",
  18889. height: math.unit(6, "inches")
  18890. },
  18891. {
  18892. name: "Normal",
  18893. height: math.unit(6, "feet"),
  18894. default: true
  18895. },
  18896. {
  18897. name: "Macro",
  18898. height: math.unit(72, "feet")
  18899. },
  18900. ]
  18901. ))
  18902. characterMakers.push(() => makeCharacter(
  18903. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18904. {
  18905. front: {
  18906. height: math.unit(5 + 9 / 12, "feet"),
  18907. weight: math.unit(175, "lb"),
  18908. name: "Front",
  18909. image: {
  18910. source: "./media/characters/irishfox/front.svg",
  18911. extra: 1912 / 1680,
  18912. bottom: 0.02
  18913. }
  18914. },
  18915. },
  18916. [
  18917. {
  18918. name: "Nano",
  18919. height: math.unit(1, "mm")
  18920. },
  18921. {
  18922. name: "Micro",
  18923. height: math.unit(2, "inches")
  18924. },
  18925. {
  18926. name: "Normal",
  18927. height: math.unit(5 + 9 / 12, "feet"),
  18928. default: true
  18929. },
  18930. {
  18931. name: "Macro",
  18932. height: math.unit(45, "feet")
  18933. },
  18934. ]
  18935. ))
  18936. characterMakers.push(() => makeCharacter(
  18937. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18938. {
  18939. front: {
  18940. height: math.unit(6 + 1 / 12, "feet"),
  18941. weight: math.unit(75, "lb"),
  18942. name: "Front",
  18943. image: {
  18944. source: "./media/characters/aronai-sieyes/front.svg",
  18945. extra: 1556 / 1480,
  18946. bottom: 0.015
  18947. }
  18948. },
  18949. side: {
  18950. height: math.unit(6 + 1 / 12, "feet"),
  18951. weight: math.unit(75, "lb"),
  18952. name: "Side",
  18953. image: {
  18954. source: "./media/characters/aronai-sieyes/side.svg",
  18955. extra: 1433 / 1390,
  18956. bottom: 0.0393
  18957. }
  18958. },
  18959. back: {
  18960. height: math.unit(6 + 1 / 12, "feet"),
  18961. weight: math.unit(75, "lb"),
  18962. name: "Back",
  18963. image: {
  18964. source: "./media/characters/aronai-sieyes/back.svg",
  18965. extra: 1544 / 1494,
  18966. bottom: 0.02
  18967. }
  18968. },
  18969. frontClothed: {
  18970. height: math.unit(6 + 1 / 12, "feet"),
  18971. weight: math.unit(75, "lb"),
  18972. name: "Front (Clothed)",
  18973. image: {
  18974. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18975. extra: 1582 / 1527
  18976. }
  18977. },
  18978. feral: {
  18979. height: math.unit(18, "feet"),
  18980. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18981. name: "Feral",
  18982. image: {
  18983. source: "./media/characters/aronai-sieyes/feral.svg",
  18984. extra: 1530 / 1240,
  18985. bottom: 0.035
  18986. }
  18987. },
  18988. },
  18989. [
  18990. {
  18991. name: "Micro",
  18992. height: math.unit(2, "inches")
  18993. },
  18994. {
  18995. name: "Normal",
  18996. height: math.unit(6 + 1 / 12, "feet"),
  18997. default: true
  18998. }
  18999. ]
  19000. ))
  19001. characterMakers.push(() => makeCharacter(
  19002. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19003. {
  19004. front: {
  19005. height: math.unit(12, "feet"),
  19006. weight: math.unit(410, "kg"),
  19007. name: "Front",
  19008. image: {
  19009. source: "./media/characters/xuna/front.svg",
  19010. extra: 2184 / 1980
  19011. }
  19012. },
  19013. side: {
  19014. height: math.unit(12, "feet"),
  19015. weight: math.unit(410, "kg"),
  19016. name: "Side",
  19017. image: {
  19018. source: "./media/characters/xuna/side.svg",
  19019. extra: 2184 / 1980
  19020. }
  19021. },
  19022. back: {
  19023. height: math.unit(12, "feet"),
  19024. weight: math.unit(410, "kg"),
  19025. name: "Back",
  19026. image: {
  19027. source: "./media/characters/xuna/back.svg",
  19028. extra: 2184 / 1980
  19029. }
  19030. },
  19031. },
  19032. [
  19033. {
  19034. name: "Nano glow",
  19035. height: math.unit(10, "nm")
  19036. },
  19037. {
  19038. name: "Micro floof",
  19039. height: math.unit(0.3, "m")
  19040. },
  19041. {
  19042. name: "Huggable softy boi",
  19043. height: math.unit(3.6576, "m"),
  19044. default: true
  19045. },
  19046. {
  19047. name: "Admirable floof",
  19048. height: math.unit(80, "meters")
  19049. },
  19050. {
  19051. name: "Gentle macro",
  19052. height: math.unit(300, "meters")
  19053. },
  19054. {
  19055. name: "Very careful floof",
  19056. height: math.unit(3200, "meters")
  19057. },
  19058. {
  19059. name: "The mega floof",
  19060. height: math.unit(36000, "meters")
  19061. },
  19062. {
  19063. name: "Giga-fur-Wicker",
  19064. height: math.unit(4800000, "meters")
  19065. },
  19066. {
  19067. name: "Licky world",
  19068. height: math.unit(20000000, "meters")
  19069. },
  19070. {
  19071. name: "Floofy cyan sun",
  19072. height: math.unit(1500000000, "meters")
  19073. },
  19074. {
  19075. name: "Milky Wicker",
  19076. height: math.unit(1000000000000000000000, "meters")
  19077. },
  19078. {
  19079. name: "The observing Wicker",
  19080. height: math.unit(999999999999999999999999999, "meters")
  19081. },
  19082. ]
  19083. ))
  19084. characterMakers.push(() => makeCharacter(
  19085. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19086. {
  19087. front: {
  19088. height: math.unit(5 + 9 / 12, "feet"),
  19089. weight: math.unit(150, "lb"),
  19090. name: "Front",
  19091. image: {
  19092. source: "./media/characters/arokha-sieyes/front.svg",
  19093. extra: 1425 / 1284,
  19094. bottom: 0.05
  19095. }
  19096. },
  19097. },
  19098. [
  19099. {
  19100. name: "Normal",
  19101. height: math.unit(5 + 9 / 12, "feet")
  19102. },
  19103. {
  19104. name: "Macro",
  19105. height: math.unit(30, "meters"),
  19106. default: true
  19107. },
  19108. ]
  19109. ))
  19110. characterMakers.push(() => makeCharacter(
  19111. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19112. {
  19113. front: {
  19114. height: math.unit(6, "feet"),
  19115. weight: math.unit(180, "lb"),
  19116. name: "Front",
  19117. image: {
  19118. source: "./media/characters/arokh-sieyes/front.svg",
  19119. extra: 1830 / 1769,
  19120. bottom: 0.01
  19121. }
  19122. },
  19123. },
  19124. [
  19125. {
  19126. name: "Normal",
  19127. height: math.unit(6, "feet")
  19128. },
  19129. {
  19130. name: "Macro",
  19131. height: math.unit(30, "meters"),
  19132. default: true
  19133. },
  19134. ]
  19135. ))
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19138. {
  19139. side: {
  19140. height: math.unit(13 + 1 / 12, "feet"),
  19141. weight: math.unit(8.5, "tonnes"),
  19142. name: "Side",
  19143. image: {
  19144. source: "./media/characters/goldeneye/side.svg",
  19145. extra: 1182 / 778,
  19146. bottom: 0.067
  19147. }
  19148. },
  19149. paw: {
  19150. height: math.unit(3.4, "feet"),
  19151. name: "Paw",
  19152. image: {
  19153. source: "./media/characters/goldeneye/paw.svg"
  19154. }
  19155. },
  19156. },
  19157. [
  19158. {
  19159. name: "Normal",
  19160. height: math.unit(13 + 1 / 12, "feet"),
  19161. default: true
  19162. },
  19163. ]
  19164. ))
  19165. characterMakers.push(() => makeCharacter(
  19166. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19167. {
  19168. front: {
  19169. height: math.unit(6 + 1 / 12, "feet"),
  19170. weight: math.unit(210, "lb"),
  19171. name: "Front",
  19172. image: {
  19173. source: "./media/characters/leonardo-lycheborne/front.svg",
  19174. extra: 776/723,
  19175. bottom: 34/810
  19176. }
  19177. },
  19178. side: {
  19179. height: math.unit(6 + 1 / 12, "feet"),
  19180. weight: math.unit(210, "lb"),
  19181. name: "Side",
  19182. image: {
  19183. source: "./media/characters/leonardo-lycheborne/side.svg",
  19184. extra: 780/728,
  19185. bottom: 12/792
  19186. }
  19187. },
  19188. back: {
  19189. height: math.unit(6 + 1 / 12, "feet"),
  19190. weight: math.unit(210, "lb"),
  19191. name: "Back",
  19192. image: {
  19193. source: "./media/characters/leonardo-lycheborne/back.svg",
  19194. extra: 775/721,
  19195. bottom: 17/792
  19196. }
  19197. },
  19198. hand: {
  19199. height: math.unit(1.08, "feet"),
  19200. name: "Hand",
  19201. image: {
  19202. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19203. }
  19204. },
  19205. foot: {
  19206. height: math.unit(1.32, "feet"),
  19207. name: "Foot",
  19208. image: {
  19209. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19210. }
  19211. },
  19212. maw: {
  19213. height: math.unit(1, "feet"),
  19214. name: "Maw",
  19215. image: {
  19216. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19217. }
  19218. },
  19219. were: {
  19220. height: math.unit(20, "feet"),
  19221. weight: math.unit(7800, "lb"),
  19222. name: "Were",
  19223. image: {
  19224. source: "./media/characters/leonardo-lycheborne/were.svg",
  19225. extra: 1224/1165,
  19226. bottom: 72/1296
  19227. }
  19228. },
  19229. feral: {
  19230. height: math.unit(7.5, "feet"),
  19231. weight: math.unit(600, "lb"),
  19232. name: "Feral",
  19233. image: {
  19234. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19235. extra: 797/702,
  19236. bottom: 139/936
  19237. }
  19238. },
  19239. taur: {
  19240. height: math.unit(11, "feet"),
  19241. weight: math.unit(3300, "lb"),
  19242. name: "Taur",
  19243. image: {
  19244. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19245. extra: 1271/1197,
  19246. bottom: 47/1318
  19247. }
  19248. },
  19249. barghest: {
  19250. height: math.unit(11, "feet"),
  19251. weight: math.unit(1300, "lb"),
  19252. name: "Barghest",
  19253. image: {
  19254. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19255. extra: 1291/1204,
  19256. bottom: 37/1328
  19257. }
  19258. },
  19259. dick: {
  19260. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19261. name: "Dick",
  19262. image: {
  19263. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19264. }
  19265. },
  19266. dickWere: {
  19267. height: math.unit((20) / 3.8, "feet"),
  19268. name: "Dick (Were)",
  19269. image: {
  19270. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19271. }
  19272. },
  19273. },
  19274. [
  19275. {
  19276. name: "Normal",
  19277. height: math.unit(6 + 1 / 12, "feet"),
  19278. default: true
  19279. },
  19280. ]
  19281. ))
  19282. characterMakers.push(() => makeCharacter(
  19283. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19284. {
  19285. front: {
  19286. height: math.unit(10, "feet"),
  19287. weight: math.unit(350, "lb"),
  19288. name: "Front",
  19289. image: {
  19290. source: "./media/characters/jet/front.svg",
  19291. extra: 2050 / 1980,
  19292. bottom: 0.013
  19293. }
  19294. },
  19295. back: {
  19296. height: math.unit(10, "feet"),
  19297. weight: math.unit(350, "lb"),
  19298. name: "Back",
  19299. image: {
  19300. source: "./media/characters/jet/back.svg",
  19301. extra: 2050 / 1980,
  19302. bottom: 0.013
  19303. }
  19304. },
  19305. },
  19306. [
  19307. {
  19308. name: "Micro",
  19309. height: math.unit(6, "inches")
  19310. },
  19311. {
  19312. name: "Normal",
  19313. height: math.unit(10, "feet"),
  19314. default: true
  19315. },
  19316. {
  19317. name: "Macro",
  19318. height: math.unit(100, "feet")
  19319. },
  19320. ]
  19321. ))
  19322. characterMakers.push(() => makeCharacter(
  19323. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19324. {
  19325. front: {
  19326. height: math.unit(15, "feet"),
  19327. weight: math.unit(2800, "lb"),
  19328. name: "Front",
  19329. image: {
  19330. source: "./media/characters/tanarath/front.svg",
  19331. extra: 2392 / 2220,
  19332. bottom: 0.03
  19333. }
  19334. },
  19335. back: {
  19336. height: math.unit(15, "feet"),
  19337. weight: math.unit(2800, "lb"),
  19338. name: "Back",
  19339. image: {
  19340. source: "./media/characters/tanarath/back.svg",
  19341. extra: 2392 / 2220,
  19342. bottom: 0.03
  19343. }
  19344. },
  19345. },
  19346. [
  19347. {
  19348. name: "Normal",
  19349. height: math.unit(15, "feet"),
  19350. default: true
  19351. },
  19352. ]
  19353. ))
  19354. characterMakers.push(() => makeCharacter(
  19355. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19356. {
  19357. front: {
  19358. height: math.unit(7 + 1 / 12, "feet"),
  19359. weight: math.unit(175, "lb"),
  19360. name: "Front",
  19361. image: {
  19362. source: "./media/characters/patty-cattybatty/front.svg",
  19363. extra: 908 / 874,
  19364. bottom: 0.025
  19365. }
  19366. },
  19367. },
  19368. [
  19369. {
  19370. name: "Micro",
  19371. height: math.unit(1, "inch")
  19372. },
  19373. {
  19374. name: "Normal",
  19375. height: math.unit(7 + 1 / 12, "feet")
  19376. },
  19377. {
  19378. name: "Mini Macro",
  19379. height: math.unit(155, "feet")
  19380. },
  19381. {
  19382. name: "Macro",
  19383. height: math.unit(1077, "feet")
  19384. },
  19385. {
  19386. name: "Mega Macro",
  19387. height: math.unit(47650, "feet"),
  19388. default: true
  19389. },
  19390. {
  19391. name: "Giga Macro",
  19392. height: math.unit(440, "miles")
  19393. },
  19394. {
  19395. name: "Tera Macro",
  19396. height: math.unit(8700, "miles")
  19397. },
  19398. {
  19399. name: "Planetary Macro",
  19400. height: math.unit(32700, "miles")
  19401. },
  19402. {
  19403. name: "Solar Macro",
  19404. height: math.unit(550000, "miles")
  19405. },
  19406. {
  19407. name: "Celestial Macro",
  19408. height: math.unit(2.5, "AU")
  19409. },
  19410. ]
  19411. ))
  19412. characterMakers.push(() => makeCharacter(
  19413. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19414. {
  19415. front: {
  19416. height: math.unit(4 + 5 / 12, "feet"),
  19417. weight: math.unit(90, "lb"),
  19418. name: "Front",
  19419. image: {
  19420. source: "./media/characters/cappu/front.svg",
  19421. extra: 1247 / 1152,
  19422. bottom: 0.012
  19423. }
  19424. },
  19425. },
  19426. [
  19427. {
  19428. name: "Normal",
  19429. height: math.unit(4 + 5 / 12, "feet"),
  19430. default: true
  19431. },
  19432. ]
  19433. ))
  19434. characterMakers.push(() => makeCharacter(
  19435. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19436. {
  19437. frontDressed: {
  19438. height: math.unit(70, "cm"),
  19439. weight: math.unit(6, "kg"),
  19440. name: "Front (Dressed)",
  19441. image: {
  19442. source: "./media/characters/sebi/front-dressed.svg",
  19443. extra: 713.5 / 686.5,
  19444. bottom: 0.003
  19445. }
  19446. },
  19447. front: {
  19448. height: math.unit(70, "cm"),
  19449. weight: math.unit(5, "kg"),
  19450. name: "Front",
  19451. image: {
  19452. source: "./media/characters/sebi/front.svg",
  19453. extra: 713.5 / 686.5,
  19454. bottom: 0.003
  19455. }
  19456. }
  19457. },
  19458. [
  19459. {
  19460. name: "Normal",
  19461. height: math.unit(70, "cm"),
  19462. default: true
  19463. },
  19464. {
  19465. name: "Macro",
  19466. height: math.unit(8, "meters")
  19467. },
  19468. ]
  19469. ))
  19470. characterMakers.push(() => makeCharacter(
  19471. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19472. {
  19473. front: {
  19474. height: math.unit(6, "feet"),
  19475. weight: math.unit(150, "lb"),
  19476. name: "Front",
  19477. image: {
  19478. source: "./media/characters/typhek/front.svg",
  19479. extra: 1948 / 1929,
  19480. bottom: 0.025
  19481. }
  19482. },
  19483. side: {
  19484. height: math.unit(6, "feet"),
  19485. weight: math.unit(150, "lb"),
  19486. name: "Side",
  19487. image: {
  19488. source: "./media/characters/typhek/side.svg",
  19489. extra: 2034 / 2010,
  19490. bottom: 0.003
  19491. }
  19492. },
  19493. back: {
  19494. height: math.unit(6, "feet"),
  19495. weight: math.unit(150, "lb"),
  19496. name: "Back",
  19497. image: {
  19498. source: "./media/characters/typhek/back.svg",
  19499. extra: 2005 / 1978,
  19500. bottom: 0.004
  19501. }
  19502. },
  19503. palm: {
  19504. height: math.unit(1.2, "feet"),
  19505. name: "Palm",
  19506. image: {
  19507. source: "./media/characters/typhek/palm.svg"
  19508. }
  19509. },
  19510. fist: {
  19511. height: math.unit(1.1, "feet"),
  19512. name: "Fist",
  19513. image: {
  19514. source: "./media/characters/typhek/fist.svg"
  19515. }
  19516. },
  19517. foot: {
  19518. height: math.unit(1.57, "feet"),
  19519. name: "Foot",
  19520. image: {
  19521. source: "./media/characters/typhek/foot.svg"
  19522. }
  19523. },
  19524. sole: {
  19525. height: math.unit(2.05, "feet"),
  19526. name: "Sole",
  19527. image: {
  19528. source: "./media/characters/typhek/sole.svg"
  19529. }
  19530. },
  19531. },
  19532. [
  19533. {
  19534. name: "Macro",
  19535. height: math.unit(40, "stories"),
  19536. default: true
  19537. },
  19538. {
  19539. name: "Megamacro",
  19540. height: math.unit(1, "mile")
  19541. },
  19542. {
  19543. name: "Gigamacro",
  19544. height: math.unit(4000, "solarradii")
  19545. },
  19546. {
  19547. name: "Universal",
  19548. height: math.unit(1.1, "universes")
  19549. }
  19550. ]
  19551. ))
  19552. characterMakers.push(() => makeCharacter(
  19553. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19554. {
  19555. side: {
  19556. height: math.unit(5 + 7 / 12, "feet"),
  19557. weight: math.unit(150, "lb"),
  19558. name: "Side",
  19559. image: {
  19560. source: "./media/characters/kassy/side.svg",
  19561. extra: 1280 / 1225,
  19562. bottom: 0.002
  19563. }
  19564. },
  19565. front: {
  19566. height: math.unit(5 + 7 / 12, "feet"),
  19567. weight: math.unit(150, "lb"),
  19568. name: "Front",
  19569. image: {
  19570. source: "./media/characters/kassy/front.svg",
  19571. extra: 1280 / 1225,
  19572. bottom: 0.025
  19573. }
  19574. },
  19575. back: {
  19576. height: math.unit(5 + 7 / 12, "feet"),
  19577. weight: math.unit(150, "lb"),
  19578. name: "Back",
  19579. image: {
  19580. source: "./media/characters/kassy/back.svg",
  19581. extra: 1280 / 1225,
  19582. bottom: 0.002
  19583. }
  19584. },
  19585. foot: {
  19586. height: math.unit(1.266, "feet"),
  19587. name: "Foot",
  19588. image: {
  19589. source: "./media/characters/kassy/foot.svg"
  19590. }
  19591. },
  19592. },
  19593. [
  19594. {
  19595. name: "Normal",
  19596. height: math.unit(5 + 7 / 12, "feet")
  19597. },
  19598. {
  19599. name: "Macro",
  19600. height: math.unit(137, "feet"),
  19601. default: true
  19602. },
  19603. {
  19604. name: "Megamacro",
  19605. height: math.unit(1, "mile")
  19606. },
  19607. ]
  19608. ))
  19609. characterMakers.push(() => makeCharacter(
  19610. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19611. {
  19612. front: {
  19613. height: math.unit(6 + 1 / 12, "feet"),
  19614. weight: math.unit(200, "lb"),
  19615. name: "Front",
  19616. image: {
  19617. source: "./media/characters/neil/front.svg",
  19618. extra: 1326 / 1250,
  19619. bottom: 0.023
  19620. }
  19621. },
  19622. },
  19623. [
  19624. {
  19625. name: "Normal",
  19626. height: math.unit(6 + 1 / 12, "feet"),
  19627. default: true
  19628. },
  19629. {
  19630. name: "Macro",
  19631. height: math.unit(200, "feet")
  19632. },
  19633. ]
  19634. ))
  19635. characterMakers.push(() => makeCharacter(
  19636. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19637. {
  19638. front: {
  19639. height: math.unit(5 + 9 / 12, "feet"),
  19640. weight: math.unit(190, "lb"),
  19641. name: "Front",
  19642. image: {
  19643. source: "./media/characters/atticus/front.svg",
  19644. extra: 2934 / 2785,
  19645. bottom: 0.025
  19646. }
  19647. },
  19648. },
  19649. [
  19650. {
  19651. name: "Normal",
  19652. height: math.unit(5 + 9 / 12, "feet"),
  19653. default: true
  19654. },
  19655. {
  19656. name: "Macro",
  19657. height: math.unit(180, "feet")
  19658. },
  19659. ]
  19660. ))
  19661. characterMakers.push(() => makeCharacter(
  19662. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19663. {
  19664. side: {
  19665. height: math.unit(9, "feet"),
  19666. weight: math.unit(650, "lb"),
  19667. name: "Side",
  19668. image: {
  19669. source: "./media/characters/milo/side.svg",
  19670. extra: 2644 / 2310,
  19671. bottom: 0.032
  19672. }
  19673. },
  19674. },
  19675. [
  19676. {
  19677. name: "Normal",
  19678. height: math.unit(9, "feet"),
  19679. default: true
  19680. },
  19681. {
  19682. name: "Macro",
  19683. height: math.unit(300, "feet")
  19684. },
  19685. ]
  19686. ))
  19687. characterMakers.push(() => makeCharacter(
  19688. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19689. {
  19690. side: {
  19691. height: math.unit(8, "meters"),
  19692. weight: math.unit(90000, "kg"),
  19693. name: "Side",
  19694. image: {
  19695. source: "./media/characters/ijzer/side.svg",
  19696. extra: 2756 / 1600,
  19697. bottom: 0.01
  19698. }
  19699. },
  19700. },
  19701. [
  19702. {
  19703. name: "Small",
  19704. height: math.unit(3, "meters")
  19705. },
  19706. {
  19707. name: "Normal",
  19708. height: math.unit(8, "meters"),
  19709. default: true
  19710. },
  19711. {
  19712. name: "Normal+",
  19713. height: math.unit(10, "meters")
  19714. },
  19715. {
  19716. name: "Bigger",
  19717. height: math.unit(24, "meters")
  19718. },
  19719. {
  19720. name: "Huge",
  19721. height: math.unit(80, "meters")
  19722. },
  19723. ]
  19724. ))
  19725. characterMakers.push(() => makeCharacter(
  19726. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19727. {
  19728. front: {
  19729. height: math.unit(6 + 2 / 12, "feet"),
  19730. weight: math.unit(153, "lb"),
  19731. name: "Front",
  19732. image: {
  19733. source: "./media/characters/luca-cervicum/front.svg",
  19734. extra: 370 / 327,
  19735. bottom: 0.015
  19736. }
  19737. },
  19738. back: {
  19739. height: math.unit(6 + 2 / 12, "feet"),
  19740. weight: math.unit(153, "lb"),
  19741. name: "Back",
  19742. image: {
  19743. source: "./media/characters/luca-cervicum/back.svg",
  19744. extra: 367 / 333,
  19745. bottom: 0.005
  19746. }
  19747. },
  19748. frontGear: {
  19749. height: math.unit(6 + 2 / 12, "feet"),
  19750. weight: math.unit(173, "lb"),
  19751. name: "Front (Gear)",
  19752. image: {
  19753. source: "./media/characters/luca-cervicum/front-gear.svg",
  19754. extra: 377 / 333,
  19755. bottom: 0.006
  19756. }
  19757. },
  19758. },
  19759. [
  19760. {
  19761. name: "Normal",
  19762. height: math.unit(6 + 2 / 12, "feet"),
  19763. default: true
  19764. },
  19765. ]
  19766. ))
  19767. characterMakers.push(() => makeCharacter(
  19768. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19769. {
  19770. front: {
  19771. height: math.unit(6 + 1 / 12, "feet"),
  19772. weight: math.unit(304, "lb"),
  19773. name: "Front",
  19774. image: {
  19775. source: "./media/characters/oliver/front.svg",
  19776. extra: 157 / 143,
  19777. bottom: 0.08
  19778. }
  19779. },
  19780. },
  19781. [
  19782. {
  19783. name: "Normal",
  19784. height: math.unit(6 + 1 / 12, "feet"),
  19785. default: true
  19786. },
  19787. ]
  19788. ))
  19789. characterMakers.push(() => makeCharacter(
  19790. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19791. {
  19792. front: {
  19793. height: math.unit(5 + 7 / 12, "feet"),
  19794. weight: math.unit(140, "lb"),
  19795. name: "Front",
  19796. image: {
  19797. source: "./media/characters/shane/front.svg",
  19798. extra: 304 / 289,
  19799. bottom: 0.005
  19800. }
  19801. },
  19802. },
  19803. [
  19804. {
  19805. name: "Normal",
  19806. height: math.unit(5 + 7 / 12, "feet"),
  19807. default: true
  19808. },
  19809. ]
  19810. ))
  19811. characterMakers.push(() => makeCharacter(
  19812. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19813. {
  19814. front: {
  19815. height: math.unit(5 + 9 / 12, "feet"),
  19816. weight: math.unit(178, "lb"),
  19817. name: "Front",
  19818. image: {
  19819. source: "./media/characters/shin/front.svg",
  19820. extra: 159 / 151,
  19821. bottom: 0.015
  19822. }
  19823. },
  19824. },
  19825. [
  19826. {
  19827. name: "Normal",
  19828. height: math.unit(5 + 9 / 12, "feet"),
  19829. default: true
  19830. },
  19831. ]
  19832. ))
  19833. characterMakers.push(() => makeCharacter(
  19834. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19835. {
  19836. front: {
  19837. height: math.unit(5 + 10 / 12, "feet"),
  19838. weight: math.unit(168, "lb"),
  19839. name: "Front",
  19840. image: {
  19841. source: "./media/characters/xerxes/front.svg",
  19842. extra: 282 / 260,
  19843. bottom: 0.045
  19844. }
  19845. },
  19846. },
  19847. [
  19848. {
  19849. name: "Normal",
  19850. height: math.unit(5 + 10 / 12, "feet"),
  19851. default: true
  19852. },
  19853. ]
  19854. ))
  19855. characterMakers.push(() => makeCharacter(
  19856. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19857. {
  19858. front: {
  19859. height: math.unit(6 + 7 / 12, "feet"),
  19860. weight: math.unit(208, "lb"),
  19861. name: "Front",
  19862. image: {
  19863. source: "./media/characters/chaska/front.svg",
  19864. extra: 332 / 319,
  19865. bottom: 0.015
  19866. }
  19867. },
  19868. },
  19869. [
  19870. {
  19871. name: "Normal",
  19872. height: math.unit(6 + 7 / 12, "feet"),
  19873. default: true
  19874. },
  19875. ]
  19876. ))
  19877. characterMakers.push(() => makeCharacter(
  19878. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19879. {
  19880. front: {
  19881. height: math.unit(5 + 8 / 12, "feet"),
  19882. weight: math.unit(208, "lb"),
  19883. name: "Front",
  19884. image: {
  19885. source: "./media/characters/enuk/front.svg",
  19886. extra: 437 / 406,
  19887. bottom: 0.02
  19888. }
  19889. },
  19890. },
  19891. [
  19892. {
  19893. name: "Normal",
  19894. height: math.unit(5 + 8 / 12, "feet"),
  19895. default: true
  19896. },
  19897. ]
  19898. ))
  19899. characterMakers.push(() => makeCharacter(
  19900. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19901. {
  19902. front: {
  19903. height: math.unit(5 + 10 / 12, "feet"),
  19904. weight: math.unit(252, "lb"),
  19905. name: "Front",
  19906. image: {
  19907. source: "./media/characters/bruun/front.svg",
  19908. extra: 197 / 187,
  19909. bottom: 0.012
  19910. }
  19911. },
  19912. },
  19913. [
  19914. {
  19915. name: "Normal",
  19916. height: math.unit(5 + 10 / 12, "feet"),
  19917. default: true
  19918. },
  19919. ]
  19920. ))
  19921. characterMakers.push(() => makeCharacter(
  19922. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19923. {
  19924. front: {
  19925. height: math.unit(6 + 10 / 12, "feet"),
  19926. weight: math.unit(255, "lb"),
  19927. name: "Front",
  19928. image: {
  19929. source: "./media/characters/alexeev/front.svg",
  19930. extra: 213 / 200,
  19931. bottom: 0.05
  19932. }
  19933. },
  19934. },
  19935. [
  19936. {
  19937. name: "Normal",
  19938. height: math.unit(6 + 10 / 12, "feet"),
  19939. default: true
  19940. },
  19941. ]
  19942. ))
  19943. characterMakers.push(() => makeCharacter(
  19944. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19945. {
  19946. front: {
  19947. height: math.unit(2 + 8 / 12, "feet"),
  19948. weight: math.unit(22, "lb"),
  19949. name: "Front",
  19950. image: {
  19951. source: "./media/characters/evelyn/front.svg",
  19952. extra: 208 / 180
  19953. }
  19954. },
  19955. },
  19956. [
  19957. {
  19958. name: "Normal",
  19959. height: math.unit(2 + 8 / 12, "feet"),
  19960. default: true
  19961. },
  19962. ]
  19963. ))
  19964. characterMakers.push(() => makeCharacter(
  19965. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19966. {
  19967. front: {
  19968. height: math.unit(5 + 9 / 12, "feet"),
  19969. weight: math.unit(139, "lb"),
  19970. name: "Front",
  19971. image: {
  19972. source: "./media/characters/inca/front.svg",
  19973. extra: 294 / 291,
  19974. bottom: 0.03
  19975. }
  19976. },
  19977. },
  19978. [
  19979. {
  19980. name: "Normal",
  19981. height: math.unit(5 + 9 / 12, "feet"),
  19982. default: true
  19983. },
  19984. ]
  19985. ))
  19986. characterMakers.push(() => makeCharacter(
  19987. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19988. {
  19989. front: {
  19990. height: math.unit(5 + 1 / 12, "feet"),
  19991. weight: math.unit(84, "lb"),
  19992. name: "Front",
  19993. image: {
  19994. source: "./media/characters/magdalene/front.svg",
  19995. extra: 293 / 273
  19996. }
  19997. },
  19998. },
  19999. [
  20000. {
  20001. name: "Normal",
  20002. height: math.unit(5 + 1 / 12, "feet"),
  20003. default: true
  20004. },
  20005. ]
  20006. ))
  20007. characterMakers.push(() => makeCharacter(
  20008. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20009. {
  20010. front: {
  20011. height: math.unit(6 + 3 / 12, "feet"),
  20012. weight: math.unit(185, "lb"),
  20013. name: "Front",
  20014. image: {
  20015. source: "./media/characters/mera/front.svg",
  20016. extra: 291 / 277,
  20017. bottom: 0.03
  20018. }
  20019. },
  20020. },
  20021. [
  20022. {
  20023. name: "Normal",
  20024. height: math.unit(6 + 3 / 12, "feet"),
  20025. default: true
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20031. {
  20032. front: {
  20033. height: math.unit(6 + 7 / 12, "feet"),
  20034. weight: math.unit(160, "lb"),
  20035. name: "Front",
  20036. image: {
  20037. source: "./media/characters/ceres/front.svg",
  20038. extra: 1023 / 950,
  20039. bottom: 0.027
  20040. }
  20041. },
  20042. back: {
  20043. height: math.unit(6 + 7 / 12, "feet"),
  20044. weight: math.unit(160, "lb"),
  20045. name: "Back",
  20046. image: {
  20047. source: "./media/characters/ceres/back.svg",
  20048. extra: 1023 / 950
  20049. }
  20050. },
  20051. },
  20052. [
  20053. {
  20054. name: "Normal",
  20055. height: math.unit(6 + 7 / 12, "feet"),
  20056. default: true
  20057. },
  20058. ]
  20059. ))
  20060. characterMakers.push(() => makeCharacter(
  20061. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20062. {
  20063. front: {
  20064. height: math.unit(5 + 10 / 12, "feet"),
  20065. weight: math.unit(150, "lb"),
  20066. name: "Front",
  20067. image: {
  20068. source: "./media/characters/kris/front.svg",
  20069. extra: 885 / 803,
  20070. bottom: 0.03
  20071. }
  20072. },
  20073. },
  20074. [
  20075. {
  20076. name: "Normal",
  20077. height: math.unit(5 + 10 / 12, "feet"),
  20078. default: true
  20079. },
  20080. ]
  20081. ))
  20082. characterMakers.push(() => makeCharacter(
  20083. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20084. {
  20085. front: {
  20086. height: math.unit(7, "feet"),
  20087. weight: math.unit(120, "kg"),
  20088. name: "Front",
  20089. image: {
  20090. source: "./media/characters/taluthus/front.svg",
  20091. extra: 903 / 833,
  20092. bottom: 0.015
  20093. }
  20094. },
  20095. },
  20096. [
  20097. {
  20098. name: "Normal",
  20099. height: math.unit(7, "feet"),
  20100. default: true
  20101. },
  20102. {
  20103. name: "Macro",
  20104. height: math.unit(300, "feet")
  20105. },
  20106. ]
  20107. ))
  20108. characterMakers.push(() => makeCharacter(
  20109. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20110. {
  20111. front: {
  20112. height: math.unit(5 + 9 / 12, "feet"),
  20113. weight: math.unit(145, "lb"),
  20114. name: "Front",
  20115. image: {
  20116. source: "./media/characters/dawn/front.svg",
  20117. extra: 2094 / 2016,
  20118. bottom: 0.025
  20119. }
  20120. },
  20121. back: {
  20122. height: math.unit(5 + 9 / 12, "feet"),
  20123. weight: math.unit(160, "lb"),
  20124. name: "Back",
  20125. image: {
  20126. source: "./media/characters/dawn/back.svg",
  20127. extra: 2112 / 2080,
  20128. bottom: 0.005
  20129. }
  20130. },
  20131. },
  20132. [
  20133. {
  20134. name: "Normal",
  20135. height: math.unit(6 + 7 / 12, "feet"),
  20136. default: true
  20137. },
  20138. ]
  20139. ))
  20140. characterMakers.push(() => makeCharacter(
  20141. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20142. {
  20143. anthro: {
  20144. height: math.unit(8 + 3 / 12, "feet"),
  20145. weight: math.unit(450, "lb"),
  20146. name: "Anthro",
  20147. image: {
  20148. source: "./media/characters/arador/anthro.svg",
  20149. extra: 1835 / 1718,
  20150. bottom: 0.025
  20151. }
  20152. },
  20153. feral: {
  20154. height: math.unit(4, "feet"),
  20155. weight: math.unit(200, "lb"),
  20156. name: "Feral",
  20157. image: {
  20158. source: "./media/characters/arador/feral.svg",
  20159. extra: 1683 / 1514,
  20160. bottom: 0.07
  20161. }
  20162. },
  20163. },
  20164. [
  20165. {
  20166. name: "Normal",
  20167. height: math.unit(8 + 3 / 12, "feet")
  20168. },
  20169. {
  20170. name: "Macro",
  20171. height: math.unit(82.5, "feet"),
  20172. default: true
  20173. },
  20174. ]
  20175. ))
  20176. characterMakers.push(() => makeCharacter(
  20177. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20178. {
  20179. front: {
  20180. height: math.unit(5 + 10 / 12, "feet"),
  20181. weight: math.unit(125, "lb"),
  20182. name: "Front",
  20183. image: {
  20184. source: "./media/characters/dharsi/front.svg",
  20185. extra: 716 / 630,
  20186. bottom: 0.035
  20187. }
  20188. },
  20189. },
  20190. [
  20191. {
  20192. name: "Nano",
  20193. height: math.unit(100, "nm")
  20194. },
  20195. {
  20196. name: "Micro",
  20197. height: math.unit(2, "inches")
  20198. },
  20199. {
  20200. name: "Normal",
  20201. height: math.unit(5 + 10 / 12, "feet"),
  20202. default: true
  20203. },
  20204. {
  20205. name: "Macro",
  20206. height: math.unit(1000, "feet")
  20207. },
  20208. {
  20209. name: "Megamacro",
  20210. height: math.unit(10, "miles")
  20211. },
  20212. {
  20213. name: "Gigamacro",
  20214. height: math.unit(3000, "miles")
  20215. },
  20216. {
  20217. name: "Teramacro",
  20218. height: math.unit(500000, "miles")
  20219. },
  20220. {
  20221. name: "Teramacro+",
  20222. height: math.unit(30, "galaxies")
  20223. },
  20224. ]
  20225. ))
  20226. characterMakers.push(() => makeCharacter(
  20227. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20228. {
  20229. front: {
  20230. height: math.unit(6, "feet"),
  20231. weight: math.unit(150, "lb"),
  20232. name: "Front",
  20233. image: {
  20234. source: "./media/characters/deathy/front.svg",
  20235. extra: 1552 / 1463,
  20236. bottom: 0.025
  20237. }
  20238. },
  20239. side: {
  20240. height: math.unit(6, "feet"),
  20241. weight: math.unit(150, "lb"),
  20242. name: "Side",
  20243. image: {
  20244. source: "./media/characters/deathy/side.svg",
  20245. extra: 1604 / 1455,
  20246. bottom: 0.025
  20247. }
  20248. },
  20249. back: {
  20250. height: math.unit(6, "feet"),
  20251. weight: math.unit(150, "lb"),
  20252. name: "Back",
  20253. image: {
  20254. source: "./media/characters/deathy/back.svg",
  20255. extra: 1580 / 1463,
  20256. bottom: 0.005
  20257. }
  20258. },
  20259. },
  20260. [
  20261. {
  20262. name: "Micro",
  20263. height: math.unit(5, "millimeters")
  20264. },
  20265. {
  20266. name: "Normal",
  20267. height: math.unit(6 + 5 / 12, "feet"),
  20268. default: true
  20269. },
  20270. ]
  20271. ))
  20272. characterMakers.push(() => makeCharacter(
  20273. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20274. {
  20275. front: {
  20276. height: math.unit(16, "feet"),
  20277. weight: math.unit(4000, "lb"),
  20278. name: "Front",
  20279. image: {
  20280. source: "./media/characters/juniper/front.svg",
  20281. bottom: 0.04
  20282. }
  20283. },
  20284. },
  20285. [
  20286. {
  20287. name: "Normal",
  20288. height: math.unit(16, "feet"),
  20289. default: true
  20290. },
  20291. ]
  20292. ))
  20293. characterMakers.push(() => makeCharacter(
  20294. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20295. {
  20296. front: {
  20297. height: math.unit(6, "feet"),
  20298. weight: math.unit(150, "lb"),
  20299. name: "Front",
  20300. image: {
  20301. source: "./media/characters/hipster/front.svg",
  20302. extra: 1312 / 1209,
  20303. bottom: 0.025
  20304. }
  20305. },
  20306. back: {
  20307. height: math.unit(6, "feet"),
  20308. weight: math.unit(150, "lb"),
  20309. name: "Back",
  20310. image: {
  20311. source: "./media/characters/hipster/back.svg",
  20312. extra: 1281 / 1196,
  20313. bottom: 0.01
  20314. }
  20315. },
  20316. },
  20317. [
  20318. {
  20319. name: "Micro",
  20320. height: math.unit(1, "mm")
  20321. },
  20322. {
  20323. name: "Normal",
  20324. height: math.unit(4, "inches"),
  20325. default: true
  20326. },
  20327. {
  20328. name: "Macro",
  20329. height: math.unit(500, "feet")
  20330. },
  20331. {
  20332. name: "Megamacro",
  20333. height: math.unit(1000, "miles")
  20334. },
  20335. ]
  20336. ))
  20337. characterMakers.push(() => makeCharacter(
  20338. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20339. {
  20340. front: {
  20341. height: math.unit(6, "feet"),
  20342. weight: math.unit(150, "lb"),
  20343. name: "Front",
  20344. image: {
  20345. source: "./media/characters/tendirmuldr/front.svg",
  20346. extra: 1878 / 1772,
  20347. bottom: 0.015
  20348. }
  20349. },
  20350. },
  20351. [
  20352. {
  20353. name: "Megamacro",
  20354. height: math.unit(1500, "miles"),
  20355. default: true
  20356. },
  20357. ]
  20358. ))
  20359. characterMakers.push(() => makeCharacter(
  20360. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20361. {
  20362. front: {
  20363. height: math.unit(14, "feet"),
  20364. weight: math.unit(12000, "lb"),
  20365. name: "Front",
  20366. image: {
  20367. source: "./media/characters/mort/front.svg",
  20368. extra: 365 / 318,
  20369. bottom: 0.01
  20370. }
  20371. },
  20372. side: {
  20373. height: math.unit(14, "feet"),
  20374. weight: math.unit(12000, "lb"),
  20375. name: "Side",
  20376. image: {
  20377. source: "./media/characters/mort/side.svg",
  20378. extra: 365 / 318,
  20379. bottom: 0.052
  20380. },
  20381. default: true
  20382. },
  20383. back: {
  20384. height: math.unit(14, "feet"),
  20385. weight: math.unit(12000, "lb"),
  20386. name: "Back",
  20387. image: {
  20388. source: "./media/characters/mort/back.svg",
  20389. extra: 371 / 332,
  20390. bottom: 0.18
  20391. }
  20392. },
  20393. },
  20394. [
  20395. {
  20396. name: "Normal",
  20397. height: math.unit(14, "feet"),
  20398. default: true
  20399. },
  20400. ]
  20401. ))
  20402. characterMakers.push(() => makeCharacter(
  20403. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20404. {
  20405. front: {
  20406. height: math.unit(8, "feet"),
  20407. weight: math.unit(1, "ton"),
  20408. name: "Front",
  20409. image: {
  20410. source: "./media/characters/lycoa/front.svg",
  20411. extra: 1875 / 1789,
  20412. bottom: 0.022
  20413. }
  20414. },
  20415. back: {
  20416. height: math.unit(8, "feet"),
  20417. weight: math.unit(1, "ton"),
  20418. name: "Back",
  20419. image: {
  20420. source: "./media/characters/lycoa/back.svg",
  20421. extra: 1835 / 1781,
  20422. bottom: 0.03
  20423. }
  20424. },
  20425. head: {
  20426. height: math.unit(2.1, "feet"),
  20427. name: "Head",
  20428. image: {
  20429. source: "./media/characters/lycoa/head.svg"
  20430. }
  20431. },
  20432. tailmaw: {
  20433. height: math.unit(1.9, "feet"),
  20434. name: "Tailmaw",
  20435. image: {
  20436. source: "./media/characters/lycoa/tailmaw.svg"
  20437. }
  20438. },
  20439. tentacles: {
  20440. height: math.unit(2.1, "feet"),
  20441. name: "Tentacles",
  20442. image: {
  20443. source: "./media/characters/lycoa/tentacles.svg"
  20444. }
  20445. },
  20446. dick: {
  20447. height: math.unit(1.73, "feet"),
  20448. name: "Dick",
  20449. image: {
  20450. source: "./media/characters/lycoa/dick.svg"
  20451. }
  20452. },
  20453. },
  20454. [
  20455. {
  20456. name: "Normal",
  20457. height: math.unit(8, "feet"),
  20458. default: true
  20459. },
  20460. {
  20461. name: "Macro",
  20462. height: math.unit(30, "feet")
  20463. },
  20464. ]
  20465. ))
  20466. characterMakers.push(() => makeCharacter(
  20467. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20468. {
  20469. front: {
  20470. height: math.unit(4 + 2 / 12, "feet"),
  20471. weight: math.unit(70, "lb"),
  20472. name: "Front",
  20473. image: {
  20474. source: "./media/characters/naldara/front.svg",
  20475. extra: 841 / 720,
  20476. bottom: 0.04
  20477. }
  20478. },
  20479. naga: {
  20480. height: math.unit(23, "feet"),
  20481. weight: math.unit(15000, "kg"),
  20482. name: "Naga",
  20483. image: {
  20484. source: "./media/characters/naldara/naga.svg",
  20485. extra: 3290 / 2959,
  20486. bottom: 124 / 3432
  20487. }
  20488. },
  20489. },
  20490. [
  20491. {
  20492. name: "Normal",
  20493. height: math.unit(4 + 2 / 12, "feet"),
  20494. default: true
  20495. },
  20496. ]
  20497. ))
  20498. characterMakers.push(() => makeCharacter(
  20499. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20500. {
  20501. front: {
  20502. height: math.unit(13 + 7 / 12, "feet"),
  20503. weight: math.unit(1500, "lb"),
  20504. name: "Front",
  20505. image: {
  20506. source: "./media/characters/briar/front.svg",
  20507. extra: 626 / 596,
  20508. bottom: 0.08
  20509. }
  20510. },
  20511. },
  20512. [
  20513. {
  20514. name: "Normal",
  20515. height: math.unit(13 + 7 / 12, "feet"),
  20516. default: true
  20517. },
  20518. ]
  20519. ))
  20520. characterMakers.push(() => makeCharacter(
  20521. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20522. {
  20523. side: {
  20524. height: math.unit(10, "feet"),
  20525. weight: math.unit(500, "lb"),
  20526. name: "Side",
  20527. image: {
  20528. source: "./media/characters/vanguard/side.svg",
  20529. extra: 502 / 425,
  20530. bottom: 0.087
  20531. }
  20532. },
  20533. },
  20534. [
  20535. {
  20536. name: "Normal",
  20537. height: math.unit(10, "feet"),
  20538. default: true
  20539. },
  20540. ]
  20541. ))
  20542. characterMakers.push(() => makeCharacter(
  20543. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20544. {
  20545. front: {
  20546. height: math.unit(7.5, "feet"),
  20547. weight: math.unit(2, "lb"),
  20548. name: "Front",
  20549. image: {
  20550. source: "./media/characters/artemis/front.svg",
  20551. extra: 1192 / 1075,
  20552. bottom: 0.07
  20553. }
  20554. },
  20555. frontNsfw: {
  20556. height: math.unit(7.5, "feet"),
  20557. weight: math.unit(2, "lb"),
  20558. name: "Front (NSFW)",
  20559. image: {
  20560. source: "./media/characters/artemis/front-nsfw.svg",
  20561. extra: 1192 / 1075,
  20562. bottom: 0.07
  20563. }
  20564. },
  20565. frontNsfwer: {
  20566. height: math.unit(7.5, "feet"),
  20567. weight: math.unit(2, "lb"),
  20568. name: "Front (NSFW-er)",
  20569. image: {
  20570. source: "./media/characters/artemis/front-nsfwer.svg",
  20571. extra: 1192 / 1075,
  20572. bottom: 0.07
  20573. }
  20574. },
  20575. side: {
  20576. height: math.unit(7.5, "feet"),
  20577. weight: math.unit(2, "lb"),
  20578. name: "Side",
  20579. image: {
  20580. source: "./media/characters/artemis/side.svg",
  20581. extra: 1192 / 1075,
  20582. bottom: 0.07
  20583. }
  20584. },
  20585. sideNsfw: {
  20586. height: math.unit(7.5, "feet"),
  20587. weight: math.unit(2, "lb"),
  20588. name: "Side (NSFW)",
  20589. image: {
  20590. source: "./media/characters/artemis/side-nsfw.svg",
  20591. extra: 1192 / 1075,
  20592. bottom: 0.07
  20593. }
  20594. },
  20595. sideNsfwer: {
  20596. height: math.unit(7.5, "feet"),
  20597. weight: math.unit(2, "lb"),
  20598. name: "Side (NSFW-er)",
  20599. image: {
  20600. source: "./media/characters/artemis/side-nsfwer.svg",
  20601. extra: 1192 / 1075,
  20602. bottom: 0.07
  20603. }
  20604. },
  20605. maw: {
  20606. height: math.unit(1.1, "feet"),
  20607. name: "Maw",
  20608. image: {
  20609. source: "./media/characters/artemis/maw.svg"
  20610. }
  20611. },
  20612. stomach: {
  20613. height: math.unit(0.95, "feet"),
  20614. name: "Stomach",
  20615. image: {
  20616. source: "./media/characters/artemis/stomach.svg"
  20617. }
  20618. },
  20619. dickCanine: {
  20620. height: math.unit(1, "feet"),
  20621. name: "Dick (Canine)",
  20622. image: {
  20623. source: "./media/characters/artemis/dick-canine.svg"
  20624. }
  20625. },
  20626. dickEquine: {
  20627. height: math.unit(0.85, "feet"),
  20628. name: "Dick (Equine)",
  20629. image: {
  20630. source: "./media/characters/artemis/dick-equine.svg"
  20631. }
  20632. },
  20633. dickExotic: {
  20634. height: math.unit(0.85, "feet"),
  20635. name: "Dick (Exotic)",
  20636. image: {
  20637. source: "./media/characters/artemis/dick-exotic.svg"
  20638. }
  20639. },
  20640. },
  20641. [
  20642. {
  20643. name: "Normal",
  20644. height: math.unit(7.5, "feet"),
  20645. default: true
  20646. },
  20647. {
  20648. name: "Enlarged",
  20649. height: math.unit(12, "feet")
  20650. },
  20651. ]
  20652. ))
  20653. characterMakers.push(() => makeCharacter(
  20654. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20655. {
  20656. front: {
  20657. height: math.unit(5 + 3 / 12, "feet"),
  20658. weight: math.unit(160, "lb"),
  20659. name: "Front",
  20660. image: {
  20661. source: "./media/characters/kira/front.svg",
  20662. extra: 906 / 786,
  20663. bottom: 0.01
  20664. }
  20665. },
  20666. back: {
  20667. height: math.unit(5 + 3 / 12, "feet"),
  20668. weight: math.unit(160, "lb"),
  20669. name: "Back",
  20670. image: {
  20671. source: "./media/characters/kira/back.svg",
  20672. extra: 882 / 757,
  20673. bottom: 0.005
  20674. }
  20675. },
  20676. frontDressed: {
  20677. height: math.unit(5 + 3 / 12, "feet"),
  20678. weight: math.unit(160, "lb"),
  20679. name: "Front (Dressed)",
  20680. image: {
  20681. source: "./media/characters/kira/front-dressed.svg",
  20682. extra: 906 / 786,
  20683. bottom: 0.01
  20684. }
  20685. },
  20686. beans: {
  20687. height: math.unit(0.92, "feet"),
  20688. name: "Beans",
  20689. image: {
  20690. source: "./media/characters/kira/beans.svg"
  20691. }
  20692. },
  20693. },
  20694. [
  20695. {
  20696. name: "Normal",
  20697. height: math.unit(5 + 3 / 12, "feet"),
  20698. default: true
  20699. },
  20700. ]
  20701. ))
  20702. characterMakers.push(() => makeCharacter(
  20703. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20704. {
  20705. front: {
  20706. height: math.unit(5 + 4 / 12, "feet"),
  20707. weight: math.unit(145, "lb"),
  20708. name: "Front",
  20709. image: {
  20710. source: "./media/characters/scramble/front.svg",
  20711. extra: 763 / 727,
  20712. bottom: 0.05
  20713. }
  20714. },
  20715. back: {
  20716. height: math.unit(5 + 4 / 12, "feet"),
  20717. weight: math.unit(145, "lb"),
  20718. name: "Back",
  20719. image: {
  20720. source: "./media/characters/scramble/back.svg",
  20721. extra: 826 / 737,
  20722. bottom: 0.002
  20723. }
  20724. },
  20725. },
  20726. [
  20727. {
  20728. name: "Normal",
  20729. height: math.unit(5 + 4 / 12, "feet"),
  20730. default: true
  20731. },
  20732. ]
  20733. ))
  20734. characterMakers.push(() => makeCharacter(
  20735. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20736. {
  20737. side: {
  20738. height: math.unit(6 + 2 / 12, "feet"),
  20739. weight: math.unit(190, "lb"),
  20740. name: "Side",
  20741. image: {
  20742. source: "./media/characters/biscuit/side.svg",
  20743. extra: 858 / 791,
  20744. bottom: 0.044
  20745. }
  20746. },
  20747. },
  20748. [
  20749. {
  20750. name: "Normal",
  20751. height: math.unit(6 + 2 / 12, "feet"),
  20752. default: true
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20758. {
  20759. front: {
  20760. height: math.unit(5 + 2 / 12, "feet"),
  20761. weight: math.unit(120, "lb"),
  20762. name: "Front",
  20763. image: {
  20764. source: "./media/characters/poffin/front.svg",
  20765. extra: 786 / 680,
  20766. bottom: 0.005
  20767. }
  20768. },
  20769. },
  20770. [
  20771. {
  20772. name: "Normal",
  20773. height: math.unit(5 + 2 / 12, "feet"),
  20774. default: true
  20775. },
  20776. ]
  20777. ))
  20778. characterMakers.push(() => makeCharacter(
  20779. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20780. {
  20781. front: {
  20782. height: math.unit(6 + 3 / 12, "feet"),
  20783. weight: math.unit(519, "lb"),
  20784. name: "Front",
  20785. image: {
  20786. source: "./media/characters/dhari/front.svg",
  20787. extra: 1048 / 946,
  20788. bottom: 0.015
  20789. }
  20790. },
  20791. back: {
  20792. height: math.unit(6 + 3 / 12, "feet"),
  20793. weight: math.unit(519, "lb"),
  20794. name: "Back",
  20795. image: {
  20796. source: "./media/characters/dhari/back.svg",
  20797. extra: 1048 / 931,
  20798. bottom: 0.005
  20799. }
  20800. },
  20801. frontDressed: {
  20802. height: math.unit(6 + 3 / 12, "feet"),
  20803. weight: math.unit(519, "lb"),
  20804. name: "Front (Dressed)",
  20805. image: {
  20806. source: "./media/characters/dhari/front-dressed.svg",
  20807. extra: 1713 / 1546,
  20808. bottom: 0.02
  20809. }
  20810. },
  20811. backDressed: {
  20812. height: math.unit(6 + 3 / 12, "feet"),
  20813. weight: math.unit(519, "lb"),
  20814. name: "Back (Dressed)",
  20815. image: {
  20816. source: "./media/characters/dhari/back-dressed.svg",
  20817. extra: 1699 / 1537,
  20818. bottom: 0.01
  20819. }
  20820. },
  20821. maw: {
  20822. height: math.unit(0.95, "feet"),
  20823. name: "Maw",
  20824. image: {
  20825. source: "./media/characters/dhari/maw.svg"
  20826. }
  20827. },
  20828. wereFront: {
  20829. height: math.unit(12 + 8 / 12, "feet"),
  20830. weight: math.unit(4000, "lb"),
  20831. name: "Front (Were)",
  20832. image: {
  20833. source: "./media/characters/dhari/were-front.svg",
  20834. extra: 1065 / 969,
  20835. bottom: 0.015
  20836. }
  20837. },
  20838. wereBack: {
  20839. height: math.unit(12 + 8 / 12, "feet"),
  20840. weight: math.unit(4000, "lb"),
  20841. name: "Back (Were)",
  20842. image: {
  20843. source: "./media/characters/dhari/were-back.svg",
  20844. extra: 1065 / 969,
  20845. bottom: 0.012
  20846. }
  20847. },
  20848. wereMaw: {
  20849. height: math.unit(0.625, "meters"),
  20850. name: "Maw (Were)",
  20851. image: {
  20852. source: "./media/characters/dhari/were-maw.svg"
  20853. }
  20854. },
  20855. },
  20856. [
  20857. {
  20858. name: "Normal",
  20859. height: math.unit(6 + 3 / 12, "feet"),
  20860. default: true
  20861. },
  20862. ]
  20863. ))
  20864. characterMakers.push(() => makeCharacter(
  20865. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20866. {
  20867. anthro: {
  20868. height: math.unit(5 + 7 / 12, "feet"),
  20869. weight: math.unit(175, "lb"),
  20870. name: "Anthro",
  20871. image: {
  20872. source: "./media/characters/rena-dyne/anthro.svg",
  20873. extra: 1849 / 1785,
  20874. bottom: 0.005
  20875. }
  20876. },
  20877. taur: {
  20878. height: math.unit(15 + 6 / 12, "feet"),
  20879. weight: math.unit(8000, "lb"),
  20880. name: "Taur",
  20881. image: {
  20882. source: "./media/characters/rena-dyne/taur.svg",
  20883. extra: 2315 / 2234,
  20884. bottom: 0.033
  20885. }
  20886. },
  20887. },
  20888. [
  20889. {
  20890. name: "Normal",
  20891. height: math.unit(5 + 7 / 12, "feet"),
  20892. default: true
  20893. },
  20894. ]
  20895. ))
  20896. characterMakers.push(() => makeCharacter(
  20897. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20898. {
  20899. front: {
  20900. height: math.unit(8, "feet"),
  20901. weight: math.unit(600, "lb"),
  20902. name: "Front",
  20903. image: {
  20904. source: "./media/characters/weremeep/front.svg",
  20905. extra: 967 / 862,
  20906. bottom: 0.01
  20907. }
  20908. },
  20909. },
  20910. [
  20911. {
  20912. name: "Normal",
  20913. height: math.unit(8, "feet"),
  20914. default: true
  20915. },
  20916. {
  20917. name: "Lorg",
  20918. height: math.unit(12, "feet")
  20919. },
  20920. {
  20921. name: "Oh Lawd She Comin'",
  20922. height: math.unit(20, "feet")
  20923. },
  20924. ]
  20925. ))
  20926. characterMakers.push(() => makeCharacter(
  20927. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20928. {
  20929. front: {
  20930. height: math.unit(4, "feet"),
  20931. weight: math.unit(90, "lb"),
  20932. name: "Front",
  20933. image: {
  20934. source: "./media/characters/reza/front.svg",
  20935. extra: 1183 / 1111,
  20936. bottom: 0.017
  20937. }
  20938. },
  20939. back: {
  20940. height: math.unit(4, "feet"),
  20941. weight: math.unit(90, "lb"),
  20942. name: "Back",
  20943. image: {
  20944. source: "./media/characters/reza/back.svg",
  20945. extra: 1183 / 1111,
  20946. bottom: 0.01
  20947. }
  20948. },
  20949. drake: {
  20950. height: math.unit(30, "feet"),
  20951. weight: math.unit(246960, "lb"),
  20952. name: "Drake",
  20953. image: {
  20954. source: "./media/characters/reza/drake.svg",
  20955. extra: 2350 / 2024,
  20956. bottom: 60.7 / 2403
  20957. }
  20958. },
  20959. },
  20960. [
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(4, "feet"),
  20964. default: true
  20965. },
  20966. ]
  20967. ))
  20968. characterMakers.push(() => makeCharacter(
  20969. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20970. {
  20971. side: {
  20972. height: math.unit(15, "feet"),
  20973. weight: math.unit(14, "tons"),
  20974. name: "Side",
  20975. image: {
  20976. source: "./media/characters/athea/side.svg",
  20977. extra: 960 / 540,
  20978. bottom: 0.003
  20979. }
  20980. },
  20981. sitting: {
  20982. height: math.unit(6 * 2.85, "feet"),
  20983. weight: math.unit(14, "tons"),
  20984. name: "Sitting",
  20985. image: {
  20986. source: "./media/characters/athea/sitting.svg",
  20987. extra: 621 / 581,
  20988. bottom: 0.075
  20989. }
  20990. },
  20991. maw: {
  20992. height: math.unit(7.59498031496063, "feet"),
  20993. name: "Maw",
  20994. image: {
  20995. source: "./media/characters/athea/maw.svg"
  20996. }
  20997. },
  20998. },
  20999. [
  21000. {
  21001. name: "Lap Cat",
  21002. height: math.unit(2.5, "feet")
  21003. },
  21004. {
  21005. name: "Minimacro",
  21006. height: math.unit(15, "feet"),
  21007. default: true
  21008. },
  21009. {
  21010. name: "Macro",
  21011. height: math.unit(120, "feet")
  21012. },
  21013. {
  21014. name: "Macro+",
  21015. height: math.unit(640, "feet")
  21016. },
  21017. {
  21018. name: "Colossus",
  21019. height: math.unit(2.2, "miles")
  21020. },
  21021. ]
  21022. ))
  21023. characterMakers.push(() => makeCharacter(
  21024. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21025. {
  21026. front: {
  21027. height: math.unit(8 + 8 / 12, "feet"),
  21028. weight: math.unit(130, "kg"),
  21029. name: "Front",
  21030. image: {
  21031. source: "./media/characters/seroko/front.svg",
  21032. extra: 1385 / 1280,
  21033. bottom: 0.025
  21034. }
  21035. },
  21036. back: {
  21037. height: math.unit(8 + 8 / 12, "feet"),
  21038. weight: math.unit(130, "kg"),
  21039. name: "Back",
  21040. image: {
  21041. source: "./media/characters/seroko/back.svg",
  21042. extra: 1369 / 1238,
  21043. bottom: 0.018
  21044. }
  21045. },
  21046. frontDressed: {
  21047. height: math.unit(8 + 8 / 12, "feet"),
  21048. weight: math.unit(130, "kg"),
  21049. name: "Front (Dressed)",
  21050. image: {
  21051. source: "./media/characters/seroko/front-dressed.svg",
  21052. extra: 1366 / 1275,
  21053. bottom: 0.03
  21054. }
  21055. },
  21056. },
  21057. [
  21058. {
  21059. name: "Normal",
  21060. height: math.unit(8 + 8 / 12, "feet"),
  21061. default: true
  21062. },
  21063. ]
  21064. ))
  21065. characterMakers.push(() => makeCharacter(
  21066. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21067. {
  21068. front: {
  21069. height: math.unit(5.5, "feet"),
  21070. weight: math.unit(160, "lb"),
  21071. name: "Front",
  21072. image: {
  21073. source: "./media/characters/quatzi/front.svg",
  21074. extra: 2346 / 2242,
  21075. bottom: 0.015
  21076. }
  21077. },
  21078. },
  21079. [
  21080. {
  21081. name: "Normal",
  21082. height: math.unit(5.5, "feet"),
  21083. default: true
  21084. },
  21085. {
  21086. name: "Big",
  21087. height: math.unit(7.7, "feet")
  21088. },
  21089. ]
  21090. ))
  21091. characterMakers.push(() => makeCharacter(
  21092. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21093. {
  21094. front: {
  21095. height: math.unit(5 + 11 / 12, "feet"),
  21096. weight: math.unit(180, "lb"),
  21097. name: "Front",
  21098. image: {
  21099. source: "./media/characters/sen/front.svg",
  21100. extra: 1321 / 1254,
  21101. bottom: 0.015
  21102. }
  21103. },
  21104. side: {
  21105. height: math.unit(5 + 11 / 12, "feet"),
  21106. weight: math.unit(180, "lb"),
  21107. name: "Side",
  21108. image: {
  21109. source: "./media/characters/sen/side.svg",
  21110. extra: 1321 / 1254,
  21111. bottom: 0.007
  21112. }
  21113. },
  21114. back: {
  21115. height: math.unit(5 + 11 / 12, "feet"),
  21116. weight: math.unit(180, "lb"),
  21117. name: "Back",
  21118. image: {
  21119. source: "./media/characters/sen/back.svg",
  21120. extra: 1321 / 1254
  21121. }
  21122. },
  21123. },
  21124. [
  21125. {
  21126. name: "Normal",
  21127. height: math.unit(5 + 11 / 12, "feet"),
  21128. default: true
  21129. },
  21130. ]
  21131. ))
  21132. characterMakers.push(() => makeCharacter(
  21133. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21134. {
  21135. front: {
  21136. height: math.unit(166.6, "cm"),
  21137. weight: math.unit(66.6, "kg"),
  21138. name: "Front",
  21139. image: {
  21140. source: "./media/characters/fruity/front.svg",
  21141. extra: 1510 / 1386,
  21142. bottom: 0.04
  21143. }
  21144. },
  21145. back: {
  21146. height: math.unit(166.6, "cm"),
  21147. weight: math.unit(66.6, "lb"),
  21148. name: "Back",
  21149. image: {
  21150. source: "./media/characters/fruity/back.svg",
  21151. extra: 1563 / 1435,
  21152. bottom: 0.005
  21153. }
  21154. },
  21155. },
  21156. [
  21157. {
  21158. name: "Normal",
  21159. height: math.unit(166.6, "cm"),
  21160. default: true
  21161. },
  21162. {
  21163. name: "Demonic",
  21164. height: math.unit(166.6, "feet")
  21165. },
  21166. ]
  21167. ))
  21168. characterMakers.push(() => makeCharacter(
  21169. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21170. {
  21171. side: {
  21172. height: math.unit(10, "feet"),
  21173. weight: math.unit(500, "lb"),
  21174. name: "Side",
  21175. image: {
  21176. source: "./media/characters/zost/side.svg",
  21177. extra: 966 / 880,
  21178. bottom: 0.075
  21179. }
  21180. },
  21181. mawFront: {
  21182. height: math.unit(1.08, "meters"),
  21183. name: "Maw (Front)",
  21184. image: {
  21185. source: "./media/characters/zost/maw-front.svg"
  21186. }
  21187. },
  21188. mawSide: {
  21189. height: math.unit(2.66, "feet"),
  21190. name: "Maw (Side)",
  21191. image: {
  21192. source: "./media/characters/zost/maw-side.svg"
  21193. }
  21194. },
  21195. },
  21196. [
  21197. {
  21198. name: "Normal",
  21199. height: math.unit(10, "feet"),
  21200. default: true
  21201. },
  21202. ]
  21203. ))
  21204. characterMakers.push(() => makeCharacter(
  21205. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21206. {
  21207. front: {
  21208. height: math.unit(5 + 4 / 12, "feet"),
  21209. weight: math.unit(120, "lb"),
  21210. name: "Front",
  21211. image: {
  21212. source: "./media/characters/luci/front.svg",
  21213. extra: 1985 / 1884,
  21214. bottom: 0.04
  21215. }
  21216. },
  21217. back: {
  21218. height: math.unit(5 + 4 / 12, "feet"),
  21219. weight: math.unit(120, "lb"),
  21220. name: "Back",
  21221. image: {
  21222. source: "./media/characters/luci/back.svg",
  21223. extra: 1892 / 1791,
  21224. bottom: 0.002
  21225. }
  21226. },
  21227. },
  21228. [
  21229. {
  21230. name: "Normal",
  21231. height: math.unit(5 + 4 / 12, "feet"),
  21232. default: true
  21233. },
  21234. ]
  21235. ))
  21236. characterMakers.push(() => makeCharacter(
  21237. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21238. {
  21239. front: {
  21240. height: math.unit(1500, "feet"),
  21241. weight: math.unit(3.8e6, "tons"),
  21242. name: "Front",
  21243. image: {
  21244. source: "./media/characters/2th/front.svg",
  21245. extra: 3489 / 3350,
  21246. bottom: 0.1
  21247. }
  21248. },
  21249. foot: {
  21250. height: math.unit(461, "feet"),
  21251. name: "Foot",
  21252. image: {
  21253. source: "./media/characters/2th/foot.svg"
  21254. }
  21255. },
  21256. },
  21257. [
  21258. {
  21259. name: "\"Micro\"",
  21260. height: math.unit(15 + 7 / 12, "feet")
  21261. },
  21262. {
  21263. name: "Normal",
  21264. height: math.unit(1500, "feet"),
  21265. default: true
  21266. },
  21267. {
  21268. name: "Macro",
  21269. height: math.unit(5000, "feet")
  21270. },
  21271. {
  21272. name: "Megamacro",
  21273. height: math.unit(15, "miles")
  21274. },
  21275. {
  21276. name: "Gigamacro",
  21277. height: math.unit(4000, "miles")
  21278. },
  21279. {
  21280. name: "Galactic",
  21281. height: math.unit(50, "AU")
  21282. },
  21283. ]
  21284. ))
  21285. characterMakers.push(() => makeCharacter(
  21286. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21287. {
  21288. front: {
  21289. height: math.unit(5 + 6 / 12, "feet"),
  21290. weight: math.unit(220, "lb"),
  21291. name: "Front",
  21292. image: {
  21293. source: "./media/characters/amethyst/front.svg",
  21294. extra: 2078 / 2040,
  21295. bottom: 0.045
  21296. }
  21297. },
  21298. back: {
  21299. height: math.unit(5 + 6 / 12, "feet"),
  21300. weight: math.unit(220, "lb"),
  21301. name: "Back",
  21302. image: {
  21303. source: "./media/characters/amethyst/back.svg",
  21304. extra: 2021 / 1989,
  21305. bottom: 0.02
  21306. }
  21307. },
  21308. },
  21309. [
  21310. {
  21311. name: "Normal",
  21312. height: math.unit(5 + 6 / 12, "feet"),
  21313. default: true
  21314. },
  21315. ]
  21316. ))
  21317. characterMakers.push(() => makeCharacter(
  21318. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21319. {
  21320. front: {
  21321. height: math.unit(4 + 11 / 12, "feet"),
  21322. weight: math.unit(120, "lb"),
  21323. name: "Front",
  21324. image: {
  21325. source: "./media/characters/yumi-akiyama/front.svg",
  21326. extra: 1327 / 1235,
  21327. bottom: 0.02
  21328. }
  21329. },
  21330. back: {
  21331. height: math.unit(4 + 11 / 12, "feet"),
  21332. weight: math.unit(120, "lb"),
  21333. name: "Back",
  21334. image: {
  21335. source: "./media/characters/yumi-akiyama/back.svg",
  21336. extra: 1287 / 1245,
  21337. bottom: 0.002
  21338. }
  21339. },
  21340. },
  21341. [
  21342. {
  21343. name: "Galactic",
  21344. height: math.unit(50, "galaxies"),
  21345. default: true
  21346. },
  21347. {
  21348. name: "Universal",
  21349. height: math.unit(100, "universes")
  21350. },
  21351. ]
  21352. ))
  21353. characterMakers.push(() => makeCharacter(
  21354. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21355. {
  21356. front: {
  21357. height: math.unit(8, "feet"),
  21358. weight: math.unit(500, "lb"),
  21359. name: "Front",
  21360. image: {
  21361. source: "./media/characters/rifter-yrmori/front.svg",
  21362. extra: 1180 / 1125,
  21363. bottom: 0.02
  21364. }
  21365. },
  21366. back: {
  21367. height: math.unit(8, "feet"),
  21368. weight: math.unit(500, "lb"),
  21369. name: "Back",
  21370. image: {
  21371. source: "./media/characters/rifter-yrmori/back.svg",
  21372. extra: 1190 / 1145,
  21373. bottom: 0.001
  21374. }
  21375. },
  21376. wings: {
  21377. height: math.unit(7.75, "feet"),
  21378. weight: math.unit(500, "lb"),
  21379. name: "Wings",
  21380. image: {
  21381. source: "./media/characters/rifter-yrmori/wings.svg",
  21382. extra: 1357 / 1285
  21383. }
  21384. },
  21385. maw: {
  21386. height: math.unit(0.8, "feet"),
  21387. name: "Maw",
  21388. image: {
  21389. source: "./media/characters/rifter-yrmori/maw.svg"
  21390. }
  21391. },
  21392. mawfront: {
  21393. height: math.unit(1.45, "feet"),
  21394. name: "Maw (Front)",
  21395. image: {
  21396. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21397. }
  21398. },
  21399. },
  21400. [
  21401. {
  21402. name: "Normal",
  21403. height: math.unit(8, "feet"),
  21404. default: true
  21405. },
  21406. {
  21407. name: "Macro",
  21408. height: math.unit(42, "meters")
  21409. },
  21410. ]
  21411. ))
  21412. characterMakers.push(() => makeCharacter(
  21413. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21414. {
  21415. were: {
  21416. height: math.unit(25 + 6 / 12, "feet"),
  21417. weight: math.unit(10000, "lb"),
  21418. name: "Were",
  21419. image: {
  21420. source: "./media/characters/tahajin/were.svg",
  21421. extra: 801 / 770,
  21422. bottom: 0.042
  21423. }
  21424. },
  21425. aquatic: {
  21426. height: math.unit(6 + 4 / 12, "feet"),
  21427. weight: math.unit(160, "lb"),
  21428. name: "Aquatic",
  21429. image: {
  21430. source: "./media/characters/tahajin/aquatic.svg",
  21431. extra: 572 / 542,
  21432. bottom: 0.04
  21433. }
  21434. },
  21435. chow: {
  21436. height: math.unit(8 + 11 / 12, "feet"),
  21437. weight: math.unit(450, "lb"),
  21438. name: "Chow",
  21439. image: {
  21440. source: "./media/characters/tahajin/chow.svg",
  21441. extra: 660 / 640,
  21442. bottom: 0.015
  21443. }
  21444. },
  21445. demiNaga: {
  21446. height: math.unit(6 + 8 / 12, "feet"),
  21447. weight: math.unit(300, "lb"),
  21448. name: "Demi Naga",
  21449. image: {
  21450. source: "./media/characters/tahajin/demi-naga.svg",
  21451. extra: 643 / 615,
  21452. bottom: 0.1
  21453. }
  21454. },
  21455. data: {
  21456. height: math.unit(5, "inches"),
  21457. weight: math.unit(0.1, "lb"),
  21458. name: "Data",
  21459. image: {
  21460. source: "./media/characters/tahajin/data.svg"
  21461. }
  21462. },
  21463. fluu: {
  21464. height: math.unit(5 + 7 / 12, "feet"),
  21465. weight: math.unit(140, "lb"),
  21466. name: "Fluu",
  21467. image: {
  21468. source: "./media/characters/tahajin/fluu.svg",
  21469. extra: 628 / 592,
  21470. bottom: 0.02
  21471. }
  21472. },
  21473. starWarrior: {
  21474. height: math.unit(4 + 5 / 12, "feet"),
  21475. weight: math.unit(50, "lb"),
  21476. name: "Star Warrior",
  21477. image: {
  21478. source: "./media/characters/tahajin/star-warrior.svg"
  21479. }
  21480. },
  21481. },
  21482. [
  21483. {
  21484. name: "Normal",
  21485. height: math.unit(25 + 6 / 12, "feet"),
  21486. default: true
  21487. },
  21488. ]
  21489. ))
  21490. characterMakers.push(() => makeCharacter(
  21491. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21492. {
  21493. front: {
  21494. height: math.unit(8, "feet"),
  21495. weight: math.unit(350, "lb"),
  21496. name: "Front",
  21497. image: {
  21498. source: "./media/characters/gabira/front.svg",
  21499. extra: 608 / 580,
  21500. bottom: 0.03
  21501. }
  21502. },
  21503. back: {
  21504. height: math.unit(8, "feet"),
  21505. weight: math.unit(350, "lb"),
  21506. name: "Back",
  21507. image: {
  21508. source: "./media/characters/gabira/back.svg",
  21509. extra: 608 / 580,
  21510. bottom: 0.03
  21511. }
  21512. },
  21513. },
  21514. [
  21515. {
  21516. name: "Normal",
  21517. height: math.unit(8, "feet"),
  21518. default: true
  21519. },
  21520. ]
  21521. ))
  21522. characterMakers.push(() => makeCharacter(
  21523. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21524. {
  21525. front: {
  21526. height: math.unit(5 + 3 / 12, "feet"),
  21527. weight: math.unit(137, "lb"),
  21528. name: "Front",
  21529. image: {
  21530. source: "./media/characters/sasha-katraine/front.svg",
  21531. bottom: 0.045
  21532. }
  21533. },
  21534. },
  21535. [
  21536. {
  21537. name: "Micro",
  21538. height: math.unit(5, "inches")
  21539. },
  21540. {
  21541. name: "Normal",
  21542. height: math.unit(5 + 3 / 12, "feet"),
  21543. default: true
  21544. },
  21545. ]
  21546. ))
  21547. characterMakers.push(() => makeCharacter(
  21548. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21549. {
  21550. side: {
  21551. height: math.unit(4, "inches"),
  21552. weight: math.unit(200, "grams"),
  21553. name: "Side",
  21554. image: {
  21555. source: "./media/characters/der/side.svg",
  21556. extra: 719 / 400,
  21557. bottom: 30.6 / 749.9187
  21558. }
  21559. },
  21560. },
  21561. [
  21562. {
  21563. name: "Micro",
  21564. height: math.unit(4, "inches"),
  21565. default: true
  21566. },
  21567. ]
  21568. ))
  21569. characterMakers.push(() => makeCharacter(
  21570. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21571. {
  21572. side: {
  21573. height: math.unit(30, "meters"),
  21574. weight: math.unit(700, "tonnes"),
  21575. name: "Side",
  21576. image: {
  21577. source: "./media/characters/fixerdragon/side.svg",
  21578. extra: (1293.0514 - 116.03) / 1106.86,
  21579. bottom: 116.03 / 1293.0514
  21580. }
  21581. },
  21582. },
  21583. [
  21584. {
  21585. name: "Planck",
  21586. height: math.unit(1.6e-35, "meters")
  21587. },
  21588. {
  21589. name: "Micro",
  21590. height: math.unit(0.4, "meters")
  21591. },
  21592. {
  21593. name: "Normal",
  21594. height: math.unit(30, "meters"),
  21595. default: true
  21596. },
  21597. {
  21598. name: "Megamacro",
  21599. height: math.unit(1.2, "megameters")
  21600. },
  21601. {
  21602. name: "Teramacro",
  21603. height: math.unit(130, "terameters")
  21604. },
  21605. {
  21606. name: "Yottamacro",
  21607. height: math.unit(6200, "yottameters")
  21608. },
  21609. ]
  21610. ));
  21611. characterMakers.push(() => makeCharacter(
  21612. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21613. {
  21614. front: {
  21615. height: math.unit(8, "feet"),
  21616. weight: math.unit(250, "lb"),
  21617. name: "Front",
  21618. image: {
  21619. source: "./media/characters/kite/front.svg",
  21620. extra: 2796 / 2659,
  21621. bottom: 0.002
  21622. }
  21623. },
  21624. },
  21625. [
  21626. {
  21627. name: "Normal",
  21628. height: math.unit(8, "feet"),
  21629. default: true
  21630. },
  21631. {
  21632. name: "Macro",
  21633. height: math.unit(360, "feet")
  21634. },
  21635. {
  21636. name: "Megamacro",
  21637. height: math.unit(1500, "feet")
  21638. },
  21639. ]
  21640. ))
  21641. characterMakers.push(() => makeCharacter(
  21642. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21643. {
  21644. front: {
  21645. height: math.unit(5 + 11/12, "feet"),
  21646. weight: math.unit(170, "lb"),
  21647. name: "Front",
  21648. image: {
  21649. source: "./media/characters/poojawa-vynar/front.svg",
  21650. extra: 1735/1585,
  21651. bottom: 96/1831
  21652. }
  21653. },
  21654. back: {
  21655. height: math.unit(5 + 11/12, "feet"),
  21656. weight: math.unit(170, "lb"),
  21657. name: "Back",
  21658. image: {
  21659. source: "./media/characters/poojawa-vynar/back.svg",
  21660. extra: 1749/1607,
  21661. bottom: 28/1777
  21662. }
  21663. },
  21664. male: {
  21665. height: math.unit(5 + 11/12, "feet"),
  21666. weight: math.unit(170, "lb"),
  21667. name: "Male",
  21668. image: {
  21669. source: "./media/characters/poojawa-vynar/male.svg",
  21670. extra: 1855/1713,
  21671. bottom: 63/1918
  21672. }
  21673. },
  21674. taur: {
  21675. height: math.unit(5 + 11/12, "feet"),
  21676. weight: math.unit(170, "lb"),
  21677. name: "Taur",
  21678. image: {
  21679. source: "./media/characters/poojawa-vynar/taur.svg",
  21680. extra: 1151/1059,
  21681. bottom: 356/1507
  21682. }
  21683. },
  21684. frontDressed: {
  21685. height: math.unit(5 + 11/12, "feet"),
  21686. weight: math.unit(170, "lb"),
  21687. name: "Front (Dressed)",
  21688. image: {
  21689. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21690. extra: 1735/1585,
  21691. bottom: 96/1831
  21692. }
  21693. },
  21694. backDressed: {
  21695. height: math.unit(5 + 11/12, "feet"),
  21696. weight: math.unit(170, "lb"),
  21697. name: "Back (Dressed)",
  21698. image: {
  21699. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21700. extra: 1749/1607,
  21701. bottom: 28/1777
  21702. }
  21703. },
  21704. maleDressed: {
  21705. height: math.unit(5 + 11/12, "feet"),
  21706. weight: math.unit(170, "lb"),
  21707. name: "Male (Dressed)",
  21708. image: {
  21709. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21710. extra: 1855/1713,
  21711. bottom: 63/1918
  21712. }
  21713. },
  21714. taurDressed: {
  21715. height: math.unit(5 + 11/12, "feet"),
  21716. weight: math.unit(170, "lb"),
  21717. name: "Taur (Dressed)",
  21718. image: {
  21719. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21720. extra: 1151/1059,
  21721. bottom: 356/1507
  21722. }
  21723. },
  21724. maw: {
  21725. height: math.unit(1.46, "feet"),
  21726. name: "Maw",
  21727. image: {
  21728. source: "./media/characters/poojawa-vynar/maw.svg"
  21729. }
  21730. },
  21731. head: {
  21732. height: math.unit(2.34, "feet"),
  21733. name: "Head",
  21734. image: {
  21735. source: "./media/characters/poojawa-vynar/head.svg"
  21736. }
  21737. },
  21738. paw: {
  21739. height: math.unit(1.61, "feet"),
  21740. name: "Paw",
  21741. image: {
  21742. source: "./media/characters/poojawa-vynar/paw.svg"
  21743. }
  21744. },
  21745. pawToering: {
  21746. height: math.unit(1.72, "feet"),
  21747. name: "Paw (Toering)",
  21748. image: {
  21749. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21750. }
  21751. },
  21752. toering: {
  21753. height: math.unit(2.9, "inches"),
  21754. name: "Toering",
  21755. image: {
  21756. source: "./media/characters/poojawa-vynar/toering.svg"
  21757. }
  21758. },
  21759. shaft: {
  21760. height: math.unit(0.625, "feet"),
  21761. name: "Shaft",
  21762. image: {
  21763. source: "./media/characters/poojawa-vynar/shaft.svg"
  21764. }
  21765. },
  21766. spade: {
  21767. height: math.unit(0.42, "feet"),
  21768. name: "Spade",
  21769. image: {
  21770. source: "./media/characters/poojawa-vynar/spade.svg"
  21771. }
  21772. },
  21773. },
  21774. [
  21775. {
  21776. name: "Shortstack",
  21777. height: math.unit(4, "feet")
  21778. },
  21779. {
  21780. name: "Normal",
  21781. height: math.unit(5 + 11 / 12, "feet"),
  21782. default: true
  21783. },
  21784. {
  21785. name: "Tauric",
  21786. height: math.unit(4, "meters")
  21787. },
  21788. ]
  21789. ))
  21790. characterMakers.push(() => makeCharacter(
  21791. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21792. {
  21793. front: {
  21794. height: math.unit(293, "meters"),
  21795. weight: math.unit(70400, "tons"),
  21796. name: "Front",
  21797. image: {
  21798. source: "./media/characters/violette/front.svg",
  21799. extra: 1227 / 1180,
  21800. bottom: 0.005
  21801. }
  21802. },
  21803. back: {
  21804. height: math.unit(293, "meters"),
  21805. weight: math.unit(70400, "tons"),
  21806. name: "Back",
  21807. image: {
  21808. source: "./media/characters/violette/back.svg",
  21809. extra: 1227 / 1180,
  21810. bottom: 0.005
  21811. }
  21812. },
  21813. },
  21814. [
  21815. {
  21816. name: "Macro",
  21817. height: math.unit(293, "meters"),
  21818. default: true
  21819. },
  21820. ]
  21821. ))
  21822. characterMakers.push(() => makeCharacter(
  21823. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21824. {
  21825. front: {
  21826. height: math.unit(1050, "feet"),
  21827. weight: math.unit(200000, "tons"),
  21828. name: "Front",
  21829. image: {
  21830. source: "./media/characters/alessandra/front.svg",
  21831. extra: 960 / 912,
  21832. bottom: 0.06
  21833. }
  21834. },
  21835. },
  21836. [
  21837. {
  21838. name: "Macro",
  21839. height: math.unit(1050, "feet")
  21840. },
  21841. {
  21842. name: "Macro+",
  21843. height: math.unit(900, "meters"),
  21844. default: true
  21845. },
  21846. ]
  21847. ))
  21848. characterMakers.push(() => makeCharacter(
  21849. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21850. {
  21851. front: {
  21852. height: math.unit(5, "feet"),
  21853. weight: math.unit(187, "lb"),
  21854. name: "Front",
  21855. image: {
  21856. source: "./media/characters/person/front.svg",
  21857. extra: 3087 / 2945,
  21858. bottom: 91 / 3181
  21859. }
  21860. },
  21861. },
  21862. [
  21863. {
  21864. name: "Micro",
  21865. height: math.unit(3, "inches")
  21866. },
  21867. {
  21868. name: "Normal",
  21869. height: math.unit(5, "feet"),
  21870. default: true
  21871. },
  21872. {
  21873. name: "Macro",
  21874. height: math.unit(90, "feet")
  21875. },
  21876. {
  21877. name: "Max Size",
  21878. height: math.unit(280, "feet")
  21879. },
  21880. ]
  21881. ))
  21882. characterMakers.push(() => makeCharacter(
  21883. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21884. {
  21885. front: {
  21886. height: math.unit(4.5, "meters"),
  21887. weight: math.unit(3200, "lb"),
  21888. name: "Front",
  21889. image: {
  21890. source: "./media/characters/ty/front.svg",
  21891. extra: 1038 / 960,
  21892. bottom: 31.156 / 1068
  21893. }
  21894. },
  21895. back: {
  21896. height: math.unit(4.5, "meters"),
  21897. weight: math.unit(3200, "lb"),
  21898. name: "Back",
  21899. image: {
  21900. source: "./media/characters/ty/back.svg",
  21901. extra: 1044 / 966,
  21902. bottom: 7.48 / 1049
  21903. }
  21904. },
  21905. },
  21906. [
  21907. {
  21908. name: "Normal",
  21909. height: math.unit(4.5, "meters"),
  21910. default: true
  21911. },
  21912. ]
  21913. ))
  21914. characterMakers.push(() => makeCharacter(
  21915. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21916. {
  21917. front: {
  21918. height: math.unit(5 + 4 / 12, "feet"),
  21919. weight: math.unit(115, "lb"),
  21920. name: "Front",
  21921. image: {
  21922. source: "./media/characters/rocky/front.svg",
  21923. extra: 1012 / 975,
  21924. bottom: 54 / 1066
  21925. }
  21926. },
  21927. },
  21928. [
  21929. {
  21930. name: "Normal",
  21931. height: math.unit(5 + 4 / 12, "feet"),
  21932. default: true
  21933. },
  21934. ]
  21935. ))
  21936. characterMakers.push(() => makeCharacter(
  21937. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21938. {
  21939. upright: {
  21940. height: math.unit(6, "meters"),
  21941. weight: math.unit(4000, "kg"),
  21942. name: "Upright",
  21943. image: {
  21944. source: "./media/characters/ruin/upright.svg",
  21945. extra: 668 / 661,
  21946. bottom: 42 / 799.8396
  21947. }
  21948. },
  21949. },
  21950. [
  21951. {
  21952. name: "Normal",
  21953. height: math.unit(6, "meters"),
  21954. default: true
  21955. },
  21956. ]
  21957. ))
  21958. characterMakers.push(() => makeCharacter(
  21959. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21960. {
  21961. front: {
  21962. height: math.unit(5, "feet"),
  21963. weight: math.unit(106, "lb"),
  21964. name: "Front",
  21965. image: {
  21966. source: "./media/characters/robin/front.svg",
  21967. extra: 862 / 799,
  21968. bottom: 42.4 / 914.8856
  21969. }
  21970. },
  21971. },
  21972. [
  21973. {
  21974. name: "Normal",
  21975. height: math.unit(5, "feet"),
  21976. default: true
  21977. },
  21978. ]
  21979. ))
  21980. characterMakers.push(() => makeCharacter(
  21981. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21982. {
  21983. side: {
  21984. height: math.unit(3, "feet"),
  21985. weight: math.unit(225, "lb"),
  21986. name: "Side",
  21987. image: {
  21988. source: "./media/characters/saian/side.svg",
  21989. extra: 566 / 356,
  21990. bottom: 79.7 / 643
  21991. }
  21992. },
  21993. maw: {
  21994. height: math.unit(2.85, "feet"),
  21995. name: "Maw",
  21996. image: {
  21997. source: "./media/characters/saian/maw.svg"
  21998. }
  21999. },
  22000. },
  22001. [
  22002. {
  22003. name: "Normal",
  22004. height: math.unit(3, "feet"),
  22005. default: true
  22006. },
  22007. ]
  22008. ))
  22009. characterMakers.push(() => makeCharacter(
  22010. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22011. {
  22012. side: {
  22013. height: math.unit(8, "feet"),
  22014. weight: math.unit(300, "lb"),
  22015. name: "Side",
  22016. image: {
  22017. source: "./media/characters/equus-silvermane/side.svg",
  22018. extra: 2176 / 2050,
  22019. bottom: 65.7 / 2245
  22020. }
  22021. },
  22022. front: {
  22023. height: math.unit(8, "feet"),
  22024. weight: math.unit(300, "lb"),
  22025. name: "Front",
  22026. image: {
  22027. source: "./media/characters/equus-silvermane/front.svg",
  22028. extra: 4633 / 4400,
  22029. bottom: 71.3 / 4706.915
  22030. }
  22031. },
  22032. sideStepping: {
  22033. height: math.unit(8, "feet"),
  22034. weight: math.unit(300, "lb"),
  22035. name: "Side (Stepping)",
  22036. image: {
  22037. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22038. extra: 1968 / 1860,
  22039. bottom: 16.4 / 1989
  22040. }
  22041. },
  22042. },
  22043. [
  22044. {
  22045. name: "Normal",
  22046. height: math.unit(8, "feet")
  22047. },
  22048. {
  22049. name: "Minimacro",
  22050. height: math.unit(75, "feet"),
  22051. default: true
  22052. },
  22053. {
  22054. name: "Macro",
  22055. height: math.unit(150, "feet")
  22056. },
  22057. {
  22058. name: "Macro+",
  22059. height: math.unit(1000, "feet")
  22060. },
  22061. {
  22062. name: "Megamacro",
  22063. height: math.unit(1, "mile")
  22064. },
  22065. ]
  22066. ))
  22067. characterMakers.push(() => makeCharacter(
  22068. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22069. {
  22070. side: {
  22071. height: math.unit(20, "feet"),
  22072. weight: math.unit(30000, "kg"),
  22073. name: "Side",
  22074. image: {
  22075. source: "./media/characters/windar/side.svg",
  22076. extra: 1491 / 1248,
  22077. bottom: 82.56 / 1568
  22078. }
  22079. },
  22080. },
  22081. [
  22082. {
  22083. name: "Normal",
  22084. height: math.unit(20, "feet"),
  22085. default: true
  22086. },
  22087. ]
  22088. ))
  22089. characterMakers.push(() => makeCharacter(
  22090. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22091. {
  22092. side: {
  22093. height: math.unit(15.66, "feet"),
  22094. weight: math.unit(150, "lb"),
  22095. name: "Side",
  22096. image: {
  22097. source: "./media/characters/melody/side.svg",
  22098. extra: 1097 / 944,
  22099. bottom: 11.8 / 1109
  22100. }
  22101. },
  22102. sideOutfit: {
  22103. height: math.unit(15.66, "feet"),
  22104. weight: math.unit(150, "lb"),
  22105. name: "Side (Outfit)",
  22106. image: {
  22107. source: "./media/characters/melody/side-outfit.svg",
  22108. extra: 1097 / 944,
  22109. bottom: 11.8 / 1109
  22110. }
  22111. },
  22112. },
  22113. [
  22114. {
  22115. name: "Normal",
  22116. height: math.unit(15.66, "feet"),
  22117. default: true
  22118. },
  22119. ]
  22120. ))
  22121. characterMakers.push(() => makeCharacter(
  22122. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22123. {
  22124. front: {
  22125. height: math.unit(8, "feet"),
  22126. weight: math.unit(325, "lb"),
  22127. name: "Front",
  22128. image: {
  22129. source: "./media/characters/windera/front.svg",
  22130. extra: 3180 / 2845,
  22131. bottom: 178 / 3365
  22132. }
  22133. },
  22134. },
  22135. [
  22136. {
  22137. name: "Normal",
  22138. height: math.unit(8, "feet"),
  22139. default: true
  22140. },
  22141. ]
  22142. ))
  22143. characterMakers.push(() => makeCharacter(
  22144. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22145. {
  22146. front: {
  22147. height: math.unit(28.75, "feet"),
  22148. weight: math.unit(2000, "kg"),
  22149. name: "Front",
  22150. image: {
  22151. source: "./media/characters/sonear/front.svg",
  22152. extra: 1041.1 / 964.9,
  22153. bottom: 53.7 / 1096.6
  22154. }
  22155. },
  22156. },
  22157. [
  22158. {
  22159. name: "Normal",
  22160. height: math.unit(28.75, "feet"),
  22161. default: true
  22162. },
  22163. ]
  22164. ))
  22165. characterMakers.push(() => makeCharacter(
  22166. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22167. {
  22168. side: {
  22169. height: math.unit(25.5, "feet"),
  22170. weight: math.unit(23000, "kg"),
  22171. name: "Side",
  22172. image: {
  22173. source: "./media/characters/kanara/side.svg"
  22174. }
  22175. },
  22176. },
  22177. [
  22178. {
  22179. name: "Normal",
  22180. height: math.unit(25.5, "feet"),
  22181. default: true
  22182. },
  22183. ]
  22184. ))
  22185. characterMakers.push(() => makeCharacter(
  22186. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22187. {
  22188. side: {
  22189. height: math.unit(10, "feet"),
  22190. weight: math.unit(1000, "kg"),
  22191. name: "Side",
  22192. image: {
  22193. source: "./media/characters/ereus/side.svg",
  22194. extra: 1157 / 959,
  22195. bottom: 153 / 1312.5
  22196. }
  22197. },
  22198. },
  22199. [
  22200. {
  22201. name: "Normal",
  22202. height: math.unit(10, "feet"),
  22203. default: true
  22204. },
  22205. ]
  22206. ))
  22207. characterMakers.push(() => makeCharacter(
  22208. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22209. {
  22210. side: {
  22211. height: math.unit(4.5, "feet"),
  22212. weight: math.unit(500, "lb"),
  22213. name: "Side",
  22214. image: {
  22215. source: "./media/characters/e-ter/side.svg",
  22216. extra: 1550 / 1248,
  22217. bottom: 146 / 1694
  22218. }
  22219. },
  22220. },
  22221. [
  22222. {
  22223. name: "Normal",
  22224. height: math.unit(4.5, "feet"),
  22225. default: true
  22226. },
  22227. ]
  22228. ))
  22229. characterMakers.push(() => makeCharacter(
  22230. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22231. {
  22232. side: {
  22233. height: math.unit(9.7, "feet"),
  22234. weight: math.unit(4000, "kg"),
  22235. name: "Side",
  22236. image: {
  22237. source: "./media/characters/yamie/side.svg"
  22238. }
  22239. },
  22240. },
  22241. [
  22242. {
  22243. name: "Normal",
  22244. height: math.unit(9.7, "feet"),
  22245. default: true
  22246. },
  22247. ]
  22248. ))
  22249. characterMakers.push(() => makeCharacter(
  22250. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22251. {
  22252. front: {
  22253. height: math.unit(50, "feet"),
  22254. weight: math.unit(50000, "kg"),
  22255. name: "Front",
  22256. image: {
  22257. source: "./media/characters/anders/front.svg",
  22258. extra: 570 / 539,
  22259. bottom: 14.7 / 586.7
  22260. }
  22261. },
  22262. },
  22263. [
  22264. {
  22265. name: "Large",
  22266. height: math.unit(50, "feet")
  22267. },
  22268. {
  22269. name: "Macro",
  22270. height: math.unit(2000, "feet"),
  22271. default: true
  22272. },
  22273. {
  22274. name: "Megamacro",
  22275. height: math.unit(12, "miles")
  22276. },
  22277. ]
  22278. ))
  22279. characterMakers.push(() => makeCharacter(
  22280. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22281. {
  22282. front: {
  22283. height: math.unit(7 + 2 / 12, "feet"),
  22284. weight: math.unit(300, "lb"),
  22285. name: "Front",
  22286. image: {
  22287. source: "./media/characters/reban/front.svg",
  22288. extra: 516 / 487,
  22289. bottom: 42.82 / 558.356
  22290. }
  22291. },
  22292. dick: {
  22293. height: math.unit(7 / 5, "feet"),
  22294. name: "Dick",
  22295. image: {
  22296. source: "./media/characters/reban/dick.svg"
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Natural Height",
  22303. height: math.unit(7 + 2 / 12, "feet")
  22304. },
  22305. {
  22306. name: "Macro",
  22307. height: math.unit(500, "feet"),
  22308. default: true
  22309. },
  22310. {
  22311. name: "Canon Height",
  22312. height: math.unit(50, "AU")
  22313. },
  22314. ]
  22315. ))
  22316. characterMakers.push(() => makeCharacter(
  22317. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22318. {
  22319. front: {
  22320. height: math.unit(6, "feet"),
  22321. weight: math.unit(150, "lb"),
  22322. name: "Front",
  22323. image: {
  22324. source: "./media/characters/terrance-keayes/front.svg",
  22325. extra: 1.005,
  22326. bottom: 151 / 1615
  22327. }
  22328. },
  22329. side: {
  22330. height: math.unit(6, "feet"),
  22331. weight: math.unit(150, "lb"),
  22332. name: "Side",
  22333. image: {
  22334. source: "./media/characters/terrance-keayes/side.svg",
  22335. extra: 1.005,
  22336. bottom: 129.4 / 1544
  22337. }
  22338. },
  22339. back: {
  22340. height: math.unit(6, "feet"),
  22341. weight: math.unit(150, "lb"),
  22342. name: "Back",
  22343. image: {
  22344. source: "./media/characters/terrance-keayes/back.svg",
  22345. extra: 1.005,
  22346. bottom: 58.4 / 1557.3
  22347. }
  22348. },
  22349. dick: {
  22350. height: math.unit(6 * 0.208, "feet"),
  22351. name: "Dick",
  22352. image: {
  22353. source: "./media/characters/terrance-keayes/dick.svg"
  22354. }
  22355. },
  22356. },
  22357. [
  22358. {
  22359. name: "Canon Height",
  22360. height: math.unit(35, "miles"),
  22361. default: true
  22362. },
  22363. ]
  22364. ))
  22365. characterMakers.push(() => makeCharacter(
  22366. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22367. {
  22368. front: {
  22369. height: math.unit(6, "feet"),
  22370. weight: math.unit(150, "lb"),
  22371. name: "Front",
  22372. image: {
  22373. source: "./media/characters/ofelia/front.svg",
  22374. extra: 546 / 541,
  22375. bottom: 39 / 583
  22376. }
  22377. },
  22378. back: {
  22379. height: math.unit(6, "feet"),
  22380. weight: math.unit(150, "lb"),
  22381. name: "Back",
  22382. image: {
  22383. source: "./media/characters/ofelia/back.svg",
  22384. extra: 564 / 559.5,
  22385. bottom: 8.69 / 573.02
  22386. }
  22387. },
  22388. maw: {
  22389. height: math.unit(1, "feet"),
  22390. name: "Maw",
  22391. image: {
  22392. source: "./media/characters/ofelia/maw.svg"
  22393. }
  22394. },
  22395. foot: {
  22396. height: math.unit(1.949, "feet"),
  22397. name: "Foot",
  22398. image: {
  22399. source: "./media/characters/ofelia/foot.svg"
  22400. }
  22401. },
  22402. },
  22403. [
  22404. {
  22405. name: "Canon Height",
  22406. height: math.unit(2000, "miles"),
  22407. default: true
  22408. },
  22409. ]
  22410. ))
  22411. characterMakers.push(() => makeCharacter(
  22412. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22413. {
  22414. front: {
  22415. height: math.unit(6, "feet"),
  22416. weight: math.unit(150, "lb"),
  22417. name: "Front",
  22418. image: {
  22419. source: "./media/characters/samuel/front.svg",
  22420. extra: 265 / 258,
  22421. bottom: 2 / 266.1566
  22422. }
  22423. },
  22424. },
  22425. [
  22426. {
  22427. name: "Macro",
  22428. height: math.unit(100, "feet"),
  22429. default: true
  22430. },
  22431. {
  22432. name: "Full Size",
  22433. height: math.unit(1000, "miles")
  22434. },
  22435. ]
  22436. ))
  22437. characterMakers.push(() => makeCharacter(
  22438. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22439. {
  22440. front: {
  22441. height: math.unit(6, "feet"),
  22442. weight: math.unit(300, "lb"),
  22443. name: "Front",
  22444. image: {
  22445. source: "./media/characters/beishir-kiel/front.svg",
  22446. extra: 569 / 547,
  22447. bottom: 41.9 / 609
  22448. }
  22449. },
  22450. maw: {
  22451. height: math.unit(6 * 0.202, "feet"),
  22452. name: "Maw",
  22453. image: {
  22454. source: "./media/characters/beishir-kiel/maw.svg"
  22455. }
  22456. },
  22457. },
  22458. [
  22459. {
  22460. name: "Macro",
  22461. height: math.unit(300, "feet"),
  22462. default: true
  22463. },
  22464. ]
  22465. ))
  22466. characterMakers.push(() => makeCharacter(
  22467. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22468. {
  22469. front: {
  22470. height: math.unit(5 + 7/12, "feet"),
  22471. weight: math.unit(120, "lb"),
  22472. name: "Front",
  22473. image: {
  22474. source: "./media/characters/logan-grey/front.svg",
  22475. extra: 1836/1738,
  22476. bottom: 108/1944
  22477. }
  22478. },
  22479. back: {
  22480. height: math.unit(5 + 7/12, "feet"),
  22481. weight: math.unit(120, "lb"),
  22482. name: "Back",
  22483. image: {
  22484. source: "./media/characters/logan-grey/back.svg",
  22485. extra: 1880/1794,
  22486. bottom: 24/1904
  22487. }
  22488. },
  22489. frontSfw: {
  22490. height: math.unit(5 + 7/12, "feet"),
  22491. weight: math.unit(120, "lb"),
  22492. name: "Front (SFW)",
  22493. image: {
  22494. source: "./media/characters/logan-grey/front-sfw.svg",
  22495. extra: 1836/1738,
  22496. bottom: 108/1944
  22497. }
  22498. },
  22499. backSfw: {
  22500. height: math.unit(5 + 7/12, "feet"),
  22501. weight: math.unit(120, "lb"),
  22502. name: "Back (SFW)",
  22503. image: {
  22504. source: "./media/characters/logan-grey/back-sfw.svg",
  22505. extra: 1880/1794,
  22506. bottom: 24/1904
  22507. }
  22508. },
  22509. hands: {
  22510. height: math.unit(0.84, "feet"),
  22511. name: "Hands",
  22512. image: {
  22513. source: "./media/characters/logan-grey/hands.svg"
  22514. }
  22515. },
  22516. paws: {
  22517. height: math.unit(0.72, "feet"),
  22518. name: "Paws",
  22519. image: {
  22520. source: "./media/characters/logan-grey/paws.svg"
  22521. }
  22522. },
  22523. cock: {
  22524. height: math.unit(1.45, "feet"),
  22525. name: "Cock",
  22526. image: {
  22527. source: "./media/characters/logan-grey/cock.svg"
  22528. }
  22529. },
  22530. cockAlt: {
  22531. height: math.unit(1.437, "feet"),
  22532. name: "Cock (alt)",
  22533. image: {
  22534. source: "./media/characters/logan-grey/cock-alt.svg"
  22535. }
  22536. },
  22537. },
  22538. [
  22539. {
  22540. name: "Normal",
  22541. height: math.unit(5 + 8 / 12, "feet")
  22542. },
  22543. {
  22544. name: "The 500 Foot Femboy",
  22545. height: math.unit(500, "feet"),
  22546. default: true
  22547. },
  22548. {
  22549. name: "Megmacro",
  22550. height: math.unit(20, "miles")
  22551. },
  22552. ]
  22553. ))
  22554. characterMakers.push(() => makeCharacter(
  22555. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22556. {
  22557. front: {
  22558. height: math.unit(8 + 2 / 12, "feet"),
  22559. weight: math.unit(275, "lb"),
  22560. name: "Front",
  22561. image: {
  22562. source: "./media/characters/draganta/front.svg",
  22563. extra: 1177 / 1135,
  22564. bottom: 33.46 / 1212.1
  22565. }
  22566. },
  22567. },
  22568. [
  22569. {
  22570. name: "Normal",
  22571. height: math.unit(8 + 6 / 12, "feet"),
  22572. default: true
  22573. },
  22574. {
  22575. name: "Macro",
  22576. height: math.unit(150, "feet")
  22577. },
  22578. {
  22579. name: "Megamacro",
  22580. height: math.unit(1000, "miles")
  22581. },
  22582. ]
  22583. ))
  22584. characterMakers.push(() => makeCharacter(
  22585. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22586. {
  22587. front: {
  22588. height: math.unit(1.72, "m"),
  22589. weight: math.unit(80, "lb"),
  22590. name: "Front",
  22591. image: {
  22592. source: "./media/characters/voski/front.svg",
  22593. extra: 2076.22 / 2022.4,
  22594. bottom: 102.7 / 2177.3866
  22595. }
  22596. },
  22597. frontNsfw: {
  22598. height: math.unit(1.72, "m"),
  22599. weight: math.unit(80, "lb"),
  22600. name: "Front (NSFW)",
  22601. image: {
  22602. source: "./media/characters/voski/front-nsfw.svg",
  22603. extra: 2076.22 / 2022.4,
  22604. bottom: 102.7 / 2177.3866
  22605. }
  22606. },
  22607. back: {
  22608. height: math.unit(1.72, "m"),
  22609. weight: math.unit(80, "lb"),
  22610. name: "Back",
  22611. image: {
  22612. source: "./media/characters/voski/back.svg",
  22613. extra: 2104 / 2051,
  22614. bottom: 10.45 / 2113.63
  22615. }
  22616. },
  22617. },
  22618. [
  22619. {
  22620. name: "Normal",
  22621. height: math.unit(1.72, "m")
  22622. },
  22623. {
  22624. name: "Macro",
  22625. height: math.unit(55, "m"),
  22626. default: true
  22627. },
  22628. {
  22629. name: "Macro+",
  22630. height: math.unit(300, "m")
  22631. },
  22632. {
  22633. name: "Macro++",
  22634. height: math.unit(700, "m")
  22635. },
  22636. {
  22637. name: "Macro+++",
  22638. height: math.unit(4500, "m")
  22639. },
  22640. {
  22641. name: "Macro++++",
  22642. height: math.unit(45, "km")
  22643. },
  22644. {
  22645. name: "Macro+++++",
  22646. height: math.unit(1220, "km")
  22647. },
  22648. ]
  22649. ))
  22650. characterMakers.push(() => makeCharacter(
  22651. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22652. {
  22653. front: {
  22654. height: math.unit(2.3, "m"),
  22655. weight: math.unit(304, "kg"),
  22656. name: "Front",
  22657. image: {
  22658. source: "./media/characters/icowom-lee/front.svg",
  22659. extra: 985 / 955,
  22660. bottom: 25.4 / 1012
  22661. }
  22662. },
  22663. fronttentacles: {
  22664. height: math.unit(2.3, "m"),
  22665. weight: math.unit(304, "kg"),
  22666. name: "Front-tentacles",
  22667. image: {
  22668. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22669. extra: 985 / 955,
  22670. bottom: 25.4 / 1012
  22671. }
  22672. },
  22673. back: {
  22674. height: math.unit(2.3, "m"),
  22675. weight: math.unit(304, "kg"),
  22676. name: "Back",
  22677. image: {
  22678. source: "./media/characters/icowom-lee/back.svg",
  22679. extra: 975 / 954,
  22680. bottom: 9.5 / 985
  22681. }
  22682. },
  22683. backtentacles: {
  22684. height: math.unit(2.3, "m"),
  22685. weight: math.unit(304, "kg"),
  22686. name: "Back-tentacles",
  22687. image: {
  22688. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22689. extra: 975 / 954,
  22690. bottom: 9.5 / 985
  22691. }
  22692. },
  22693. frontDressed: {
  22694. height: math.unit(2.3, "m"),
  22695. weight: math.unit(304, "kg"),
  22696. name: "Front (Dressed)",
  22697. image: {
  22698. source: "./media/characters/icowom-lee/front-dressed.svg",
  22699. extra: 3076 / 2933,
  22700. bottom: 51.4 / 3125.1889
  22701. }
  22702. },
  22703. rump: {
  22704. height: math.unit(0.776, "meters"),
  22705. name: "Rump",
  22706. image: {
  22707. source: "./media/characters/icowom-lee/rump.svg"
  22708. }
  22709. },
  22710. genitals: {
  22711. height: math.unit(0.78, "meters"),
  22712. name: "Genitals",
  22713. image: {
  22714. source: "./media/characters/icowom-lee/genitals.svg"
  22715. }
  22716. },
  22717. },
  22718. [
  22719. {
  22720. name: "Normal",
  22721. height: math.unit(2.3, "meters"),
  22722. default: true
  22723. },
  22724. {
  22725. name: "Macro",
  22726. height: math.unit(94, "meters"),
  22727. default: true
  22728. },
  22729. ]
  22730. ))
  22731. characterMakers.push(() => makeCharacter(
  22732. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22733. {
  22734. front: {
  22735. height: math.unit(22, "meters"),
  22736. weight: math.unit(21000, "kg"),
  22737. name: "Front",
  22738. image: {
  22739. source: "./media/characters/shock-diamond/front.svg",
  22740. extra: 2204 / 2053,
  22741. bottom: 65 / 2239.47
  22742. }
  22743. },
  22744. frontNude: {
  22745. height: math.unit(22, "meters"),
  22746. weight: math.unit(21000, "kg"),
  22747. name: "Front (Nude)",
  22748. image: {
  22749. source: "./media/characters/shock-diamond/front-nude.svg",
  22750. extra: 2514 / 2285,
  22751. bottom: 13 / 2527.56
  22752. }
  22753. },
  22754. },
  22755. [
  22756. {
  22757. name: "Normal",
  22758. height: math.unit(3, "meters")
  22759. },
  22760. {
  22761. name: "Macro",
  22762. height: math.unit(22, "meters"),
  22763. default: true
  22764. },
  22765. ]
  22766. ))
  22767. characterMakers.push(() => makeCharacter(
  22768. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22769. {
  22770. front: {
  22771. height: math.unit(5 + 4 / 12, "feet"),
  22772. weight: math.unit(120, "lb"),
  22773. name: "Front",
  22774. image: {
  22775. source: "./media/characters/rory/front.svg",
  22776. extra: 1318/1241,
  22777. bottom: 42/1360
  22778. }
  22779. },
  22780. back: {
  22781. height: math.unit(5 + 4 / 12, "feet"),
  22782. weight: math.unit(120, "lb"),
  22783. name: "Back",
  22784. image: {
  22785. source: "./media/characters/rory/back.svg",
  22786. extra: 1318/1241,
  22787. bottom: 42/1360
  22788. }
  22789. },
  22790. butt: {
  22791. height: math.unit(1.74, "feet"),
  22792. name: "Butt",
  22793. image: {
  22794. source: "./media/characters/rory/butt.svg"
  22795. }
  22796. },
  22797. dick: {
  22798. height: math.unit(1.02, "feet"),
  22799. name: "Dick",
  22800. image: {
  22801. source: "./media/characters/rory/dick.svg"
  22802. }
  22803. },
  22804. paws: {
  22805. height: math.unit(1, "feet"),
  22806. name: "Paws",
  22807. image: {
  22808. source: "./media/characters/rory/paws.svg"
  22809. }
  22810. },
  22811. frontAlt: {
  22812. height: math.unit(5 + 4 / 12, "feet"),
  22813. weight: math.unit(120, "lb"),
  22814. name: "Front (Alt)",
  22815. image: {
  22816. source: "./media/characters/rory/front-alt.svg",
  22817. extra: 589 / 556,
  22818. bottom: 45.7 / 635.76
  22819. }
  22820. },
  22821. frontAltNude: {
  22822. height: math.unit(5 + 4 / 12, "feet"),
  22823. weight: math.unit(120, "lb"),
  22824. name: "Front (Alt, Nude)",
  22825. image: {
  22826. source: "./media/characters/rory/front-alt-nude.svg",
  22827. extra: 589 / 556,
  22828. bottom: 45.7 / 635.76
  22829. }
  22830. },
  22831. side: {
  22832. height: math.unit(5 + 4 / 12, "feet"),
  22833. weight: math.unit(120, "lb"),
  22834. name: "Side",
  22835. image: {
  22836. source: "./media/characters/rory/side.svg",
  22837. extra: 597 / 564,
  22838. bottom: 55 / 653
  22839. }
  22840. },
  22841. backAlt: {
  22842. height: math.unit(5 + 4 / 12, "feet"),
  22843. weight: math.unit(120, "lb"),
  22844. name: "Back (Alt)",
  22845. image: {
  22846. source: "./media/characters/rory/back-alt.svg",
  22847. extra: 620 / 585,
  22848. bottom: 8.86 / 630.43
  22849. }
  22850. },
  22851. dickAlt: {
  22852. height: math.unit(0.86, "feet"),
  22853. name: "Dick (Alt)",
  22854. image: {
  22855. source: "./media/characters/rory/dick-alt.svg"
  22856. }
  22857. },
  22858. },
  22859. [
  22860. {
  22861. name: "Normal",
  22862. height: math.unit(5 + 4 / 12, "feet"),
  22863. default: true
  22864. },
  22865. {
  22866. name: "Macro",
  22867. height: math.unit(100, "feet")
  22868. },
  22869. {
  22870. name: "Macro+",
  22871. height: math.unit(140, "feet")
  22872. },
  22873. {
  22874. name: "Macro++",
  22875. height: math.unit(300, "feet")
  22876. },
  22877. ]
  22878. ))
  22879. characterMakers.push(() => makeCharacter(
  22880. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22881. {
  22882. front: {
  22883. height: math.unit(5 + 9 / 12, "feet"),
  22884. weight: math.unit(190, "lb"),
  22885. name: "Front",
  22886. image: {
  22887. source: "./media/characters/sprisk/front.svg",
  22888. extra: 1225 / 1180,
  22889. bottom: 42.7 / 1266.4
  22890. }
  22891. },
  22892. frontNsfw: {
  22893. height: math.unit(5 + 9 / 12, "feet"),
  22894. weight: math.unit(190, "lb"),
  22895. name: "Front (NSFW)",
  22896. image: {
  22897. source: "./media/characters/sprisk/front-nsfw.svg",
  22898. extra: 1225 / 1180,
  22899. bottom: 42.7 / 1266.4
  22900. }
  22901. },
  22902. back: {
  22903. height: math.unit(5 + 9 / 12, "feet"),
  22904. weight: math.unit(190, "lb"),
  22905. name: "Back",
  22906. image: {
  22907. source: "./media/characters/sprisk/back.svg",
  22908. extra: 1247 / 1200,
  22909. bottom: 5.6 / 1253.04
  22910. }
  22911. },
  22912. },
  22913. [
  22914. {
  22915. name: "Tiny",
  22916. height: math.unit(2, "inches")
  22917. },
  22918. {
  22919. name: "Normal",
  22920. height: math.unit(5 + 9 / 12, "feet"),
  22921. default: true
  22922. },
  22923. {
  22924. name: "Mini Macro",
  22925. height: math.unit(18, "feet")
  22926. },
  22927. {
  22928. name: "Macro",
  22929. height: math.unit(100, "feet")
  22930. },
  22931. {
  22932. name: "MACRO",
  22933. height: math.unit(50, "miles")
  22934. },
  22935. {
  22936. name: "M A C R O",
  22937. height: math.unit(300, "miles")
  22938. },
  22939. ]
  22940. ))
  22941. characterMakers.push(() => makeCharacter(
  22942. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22943. {
  22944. side: {
  22945. height: math.unit(15.6, "meters"),
  22946. weight: math.unit(700000, "kg"),
  22947. name: "Side",
  22948. image: {
  22949. source: "./media/characters/bunsen/side.svg",
  22950. extra: 1644 / 358
  22951. }
  22952. },
  22953. foot: {
  22954. height: math.unit(1.611 * 1644 / 358, "meter"),
  22955. name: "Foot",
  22956. image: {
  22957. source: "./media/characters/bunsen/foot.svg"
  22958. }
  22959. },
  22960. },
  22961. [
  22962. {
  22963. name: "Small",
  22964. height: math.unit(10, "feet")
  22965. },
  22966. {
  22967. name: "Normal",
  22968. height: math.unit(15.6, "meters"),
  22969. default: true
  22970. },
  22971. ]
  22972. ))
  22973. characterMakers.push(() => makeCharacter(
  22974. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22975. {
  22976. front: {
  22977. height: math.unit(4 + 11 / 12, "feet"),
  22978. weight: math.unit(140, "lb"),
  22979. name: "Front",
  22980. image: {
  22981. source: "./media/characters/sesh/front.svg",
  22982. extra: 3420 / 3231,
  22983. bottom: 72 / 3949.5
  22984. }
  22985. },
  22986. },
  22987. [
  22988. {
  22989. name: "Normal",
  22990. height: math.unit(4 + 11 / 12, "feet")
  22991. },
  22992. {
  22993. name: "Grown",
  22994. height: math.unit(15, "feet"),
  22995. default: true
  22996. },
  22997. {
  22998. name: "Macro",
  22999. height: math.unit(1500, "feet")
  23000. },
  23001. {
  23002. name: "Megamacro",
  23003. height: math.unit(30, "miles")
  23004. },
  23005. {
  23006. name: "Continental",
  23007. height: math.unit(3000, "miles")
  23008. },
  23009. {
  23010. name: "Gravity Mass",
  23011. height: math.unit(300000, "miles")
  23012. },
  23013. {
  23014. name: "Planet Buster",
  23015. height: math.unit(30000000, "miles")
  23016. },
  23017. {
  23018. name: "Big",
  23019. height: math.unit(3000000000, "miles")
  23020. },
  23021. ]
  23022. ))
  23023. characterMakers.push(() => makeCharacter(
  23024. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23025. {
  23026. front: {
  23027. height: math.unit(9, "feet"),
  23028. weight: math.unit(350, "lb"),
  23029. name: "Front",
  23030. image: {
  23031. source: "./media/characters/pepper/front.svg",
  23032. extra: 1448 / 1312,
  23033. bottom: 9.4 / 1457.88
  23034. }
  23035. },
  23036. back: {
  23037. height: math.unit(9, "feet"),
  23038. weight: math.unit(350, "lb"),
  23039. name: "Back",
  23040. image: {
  23041. source: "./media/characters/pepper/back.svg",
  23042. extra: 1423 / 1300,
  23043. bottom: 4.6 / 1429
  23044. }
  23045. },
  23046. maw: {
  23047. height: math.unit(0.932, "feet"),
  23048. name: "Maw",
  23049. image: {
  23050. source: "./media/characters/pepper/maw.svg"
  23051. }
  23052. },
  23053. },
  23054. [
  23055. {
  23056. name: "Normal",
  23057. height: math.unit(9, "feet"),
  23058. default: true
  23059. },
  23060. ]
  23061. ))
  23062. characterMakers.push(() => makeCharacter(
  23063. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23064. {
  23065. front: {
  23066. height: math.unit(6, "feet"),
  23067. weight: math.unit(150, "lb"),
  23068. name: "Front",
  23069. image: {
  23070. source: "./media/characters/maelstrom/front.svg",
  23071. extra: 2100 / 1883,
  23072. bottom: 94 / 2196.7
  23073. }
  23074. },
  23075. },
  23076. [
  23077. {
  23078. name: "Less Kaiju",
  23079. height: math.unit(200, "feet")
  23080. },
  23081. {
  23082. name: "Kaiju",
  23083. height: math.unit(400, "feet"),
  23084. default: true
  23085. },
  23086. {
  23087. name: "Kaiju-er",
  23088. height: math.unit(600, "feet")
  23089. },
  23090. ]
  23091. ))
  23092. characterMakers.push(() => makeCharacter(
  23093. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23094. {
  23095. front: {
  23096. height: math.unit(6 + 5 / 12, "feet"),
  23097. weight: math.unit(180, "lb"),
  23098. name: "Front",
  23099. image: {
  23100. source: "./media/characters/lexir/front.svg",
  23101. extra: 180 / 172,
  23102. bottom: 12 / 192
  23103. }
  23104. },
  23105. back: {
  23106. height: math.unit(6 + 5 / 12, "feet"),
  23107. weight: math.unit(180, "lb"),
  23108. name: "Back",
  23109. image: {
  23110. source: "./media/characters/lexir/back.svg",
  23111. extra: 183.84 / 175.5,
  23112. bottom: 3.1 / 187
  23113. }
  23114. },
  23115. },
  23116. [
  23117. {
  23118. name: "Very Smal",
  23119. height: math.unit(1, "nm")
  23120. },
  23121. {
  23122. name: "Normal",
  23123. height: math.unit(6 + 5 / 12, "feet"),
  23124. default: true
  23125. },
  23126. {
  23127. name: "Macro",
  23128. height: math.unit(1, "mile")
  23129. },
  23130. {
  23131. name: "Megamacro",
  23132. height: math.unit(50, "miles")
  23133. },
  23134. ]
  23135. ))
  23136. characterMakers.push(() => makeCharacter(
  23137. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23138. {
  23139. front: {
  23140. height: math.unit(1.5, "meters"),
  23141. weight: math.unit(100, "lb"),
  23142. name: "Front",
  23143. image: {
  23144. source: "./media/characters/maksio/front.svg",
  23145. extra: 1549 / 1531,
  23146. bottom: 123.7 / 1674.5429
  23147. }
  23148. },
  23149. back: {
  23150. height: math.unit(1.5, "meters"),
  23151. weight: math.unit(100, "lb"),
  23152. name: "Back",
  23153. image: {
  23154. source: "./media/characters/maksio/back.svg",
  23155. extra: 1541 / 1509,
  23156. bottom: 97 / 1639
  23157. }
  23158. },
  23159. hand: {
  23160. height: math.unit(0.621, "feet"),
  23161. name: "Hand",
  23162. image: {
  23163. source: "./media/characters/maksio/hand.svg"
  23164. }
  23165. },
  23166. foot: {
  23167. height: math.unit(1.611, "feet"),
  23168. name: "Foot",
  23169. image: {
  23170. source: "./media/characters/maksio/foot.svg"
  23171. }
  23172. },
  23173. },
  23174. [
  23175. {
  23176. name: "Shrunken",
  23177. height: math.unit(10, "cm")
  23178. },
  23179. {
  23180. name: "Normal",
  23181. height: math.unit(150, "cm"),
  23182. default: true
  23183. },
  23184. ]
  23185. ))
  23186. characterMakers.push(() => makeCharacter(
  23187. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23188. {
  23189. front: {
  23190. height: math.unit(100, "feet"),
  23191. name: "Front",
  23192. image: {
  23193. source: "./media/characters/erza-bear/front.svg",
  23194. extra: 2449 / 2390,
  23195. bottom: 46 / 2494
  23196. }
  23197. },
  23198. back: {
  23199. height: math.unit(100, "feet"),
  23200. name: "Back",
  23201. image: {
  23202. source: "./media/characters/erza-bear/back.svg",
  23203. extra: 2489 / 2430,
  23204. bottom: 85.4 / 2480
  23205. }
  23206. },
  23207. tail: {
  23208. height: math.unit(42, "feet"),
  23209. name: "Tail",
  23210. image: {
  23211. source: "./media/characters/erza-bear/tail.svg"
  23212. }
  23213. },
  23214. tongue: {
  23215. height: math.unit(8, "feet"),
  23216. name: "Tongue",
  23217. image: {
  23218. source: "./media/characters/erza-bear/tongue.svg"
  23219. }
  23220. },
  23221. dick: {
  23222. height: math.unit(10.5, "feet"),
  23223. name: "Dick",
  23224. image: {
  23225. source: "./media/characters/erza-bear/dick.svg"
  23226. }
  23227. },
  23228. dickVertical: {
  23229. height: math.unit(16.9, "feet"),
  23230. name: "Dick (Vertical)",
  23231. image: {
  23232. source: "./media/characters/erza-bear/dick-vertical.svg"
  23233. }
  23234. },
  23235. },
  23236. [
  23237. {
  23238. name: "Macro",
  23239. height: math.unit(100, "feet"),
  23240. default: true
  23241. },
  23242. ]
  23243. ))
  23244. characterMakers.push(() => makeCharacter(
  23245. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23246. {
  23247. front: {
  23248. height: math.unit(172, "cm"),
  23249. weight: math.unit(73, "kg"),
  23250. name: "Front",
  23251. image: {
  23252. source: "./media/characters/violet-flor/front.svg",
  23253. extra: 1530 / 1442,
  23254. bottom: 61.9 / 1588.8
  23255. }
  23256. },
  23257. back: {
  23258. height: math.unit(180, "cm"),
  23259. weight: math.unit(73, "kg"),
  23260. name: "Back",
  23261. image: {
  23262. source: "./media/characters/violet-flor/back.svg",
  23263. extra: 1692 / 1630,
  23264. bottom: 20 / 1712
  23265. }
  23266. },
  23267. },
  23268. [
  23269. {
  23270. name: "Normal",
  23271. height: math.unit(172, "cm"),
  23272. default: true
  23273. },
  23274. ]
  23275. ))
  23276. characterMakers.push(() => makeCharacter(
  23277. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23278. {
  23279. front: {
  23280. height: math.unit(6, "feet"),
  23281. weight: math.unit(220, "lb"),
  23282. name: "Front",
  23283. image: {
  23284. source: "./media/characters/lynn-rhea/front.svg",
  23285. extra: 310 / 273
  23286. }
  23287. },
  23288. back: {
  23289. height: math.unit(6, "feet"),
  23290. weight: math.unit(220, "lb"),
  23291. name: "Back",
  23292. image: {
  23293. source: "./media/characters/lynn-rhea/back.svg",
  23294. extra: 310 / 273
  23295. }
  23296. },
  23297. dicks: {
  23298. height: math.unit(0.9, "feet"),
  23299. name: "Dicks",
  23300. image: {
  23301. source: "./media/characters/lynn-rhea/dicks.svg"
  23302. }
  23303. },
  23304. slit: {
  23305. height: math.unit(0.4, "feet"),
  23306. name: "Slit",
  23307. image: {
  23308. source: "./media/characters/lynn-rhea/slit.svg"
  23309. }
  23310. },
  23311. },
  23312. [
  23313. {
  23314. name: "Micro",
  23315. height: math.unit(1, "inch")
  23316. },
  23317. {
  23318. name: "Macro",
  23319. height: math.unit(60, "feet"),
  23320. default: true
  23321. },
  23322. {
  23323. name: "Megamacro",
  23324. height: math.unit(2, "miles")
  23325. },
  23326. {
  23327. name: "Gigamacro",
  23328. height: math.unit(3, "earths")
  23329. },
  23330. {
  23331. name: "Galactic",
  23332. height: math.unit(0.8, "galaxies")
  23333. },
  23334. ]
  23335. ))
  23336. characterMakers.push(() => makeCharacter(
  23337. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23338. {
  23339. front: {
  23340. height: math.unit(1600, "feet"),
  23341. weight: math.unit(85758785169, "kg"),
  23342. name: "Front",
  23343. image: {
  23344. source: "./media/characters/valathos/front.svg",
  23345. extra: 1451 / 1339
  23346. }
  23347. },
  23348. },
  23349. [
  23350. {
  23351. name: "Macro",
  23352. height: math.unit(1600, "feet"),
  23353. default: true
  23354. },
  23355. ]
  23356. ))
  23357. characterMakers.push(() => makeCharacter(
  23358. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23359. {
  23360. front: {
  23361. height: math.unit(7 + 5 / 12, "feet"),
  23362. weight: math.unit(300, "lb"),
  23363. name: "Front",
  23364. image: {
  23365. source: "./media/characters/azula/front.svg",
  23366. extra: 3208 / 2880,
  23367. bottom: 80.2 / 3277
  23368. }
  23369. },
  23370. back: {
  23371. height: math.unit(7 + 5 / 12, "feet"),
  23372. weight: math.unit(300, "lb"),
  23373. name: "Back",
  23374. image: {
  23375. source: "./media/characters/azula/back.svg",
  23376. extra: 3169 / 2822,
  23377. bottom: 150.6 / 3321
  23378. }
  23379. },
  23380. },
  23381. [
  23382. {
  23383. name: "Normal",
  23384. height: math.unit(7 + 5 / 12, "feet"),
  23385. default: true
  23386. },
  23387. {
  23388. name: "Big",
  23389. height: math.unit(20, "feet")
  23390. },
  23391. ]
  23392. ))
  23393. characterMakers.push(() => makeCharacter(
  23394. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23395. {
  23396. front: {
  23397. height: math.unit(5 + 1 / 12, "feet"),
  23398. weight: math.unit(110, "lb"),
  23399. name: "Front",
  23400. image: {
  23401. source: "./media/characters/rupert/front.svg",
  23402. extra: 1549 / 1495,
  23403. bottom: 54.2 / 1604.4
  23404. }
  23405. },
  23406. },
  23407. [
  23408. {
  23409. name: "Normal",
  23410. height: math.unit(5 + 1 / 12, "feet"),
  23411. default: true
  23412. },
  23413. ]
  23414. ))
  23415. characterMakers.push(() => makeCharacter(
  23416. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23417. {
  23418. front: {
  23419. height: math.unit(8 + 4 / 12, "feet"),
  23420. weight: math.unit(350, "lb"),
  23421. name: "Front",
  23422. image: {
  23423. source: "./media/characters/sheera-castellar/front.svg",
  23424. extra: 1957 / 1894,
  23425. bottom: 26.97 / 1975.017
  23426. }
  23427. },
  23428. side: {
  23429. height: math.unit(8 + 4 / 12, "feet"),
  23430. weight: math.unit(350, "lb"),
  23431. name: "Side",
  23432. image: {
  23433. source: "./media/characters/sheera-castellar/side.svg",
  23434. extra: 1957 / 1894
  23435. }
  23436. },
  23437. back: {
  23438. height: math.unit(8 + 4 / 12, "feet"),
  23439. weight: math.unit(350, "lb"),
  23440. name: "Back",
  23441. image: {
  23442. source: "./media/characters/sheera-castellar/back.svg",
  23443. extra: 1957 / 1894
  23444. }
  23445. },
  23446. angled: {
  23447. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23448. weight: math.unit(350, "lb"),
  23449. name: "Angled",
  23450. image: {
  23451. source: "./media/characters/sheera-castellar/angled.svg",
  23452. extra: 1807 / 1707,
  23453. bottom: 68 / 1875
  23454. }
  23455. },
  23456. genitals: {
  23457. height: math.unit(2.2, "feet"),
  23458. name: "Genitals",
  23459. image: {
  23460. source: "./media/characters/sheera-castellar/genitals.svg"
  23461. }
  23462. },
  23463. taur: {
  23464. height: math.unit(10 + 6/12, "feet"),
  23465. name: "Taur",
  23466. image: {
  23467. source: "./media/characters/sheera-castellar/taur.svg",
  23468. extra: 2017/1909,
  23469. bottom: 185/2202
  23470. }
  23471. },
  23472. },
  23473. [
  23474. {
  23475. name: "Normal",
  23476. height: math.unit(8 + 4 / 12, "feet")
  23477. },
  23478. {
  23479. name: "Macro",
  23480. height: math.unit(150, "feet"),
  23481. default: true
  23482. },
  23483. {
  23484. name: "Macro+",
  23485. height: math.unit(800, "feet")
  23486. },
  23487. ]
  23488. ))
  23489. characterMakers.push(() => makeCharacter(
  23490. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23491. {
  23492. front: {
  23493. height: math.unit(6, "feet"),
  23494. weight: math.unit(150, "lb"),
  23495. name: "Front",
  23496. image: {
  23497. source: "./media/characters/jaipur/front.svg",
  23498. extra: 3860 / 3731,
  23499. bottom: 287 / 4140
  23500. }
  23501. },
  23502. back: {
  23503. height: math.unit(6, "feet"),
  23504. weight: math.unit(150, "lb"),
  23505. name: "Back",
  23506. image: {
  23507. source: "./media/characters/jaipur/back.svg",
  23508. extra: 4060 / 3930,
  23509. bottom: 151 / 4200
  23510. }
  23511. },
  23512. },
  23513. [
  23514. {
  23515. name: "Normal",
  23516. height: math.unit(1.85, "meters"),
  23517. default: true
  23518. },
  23519. {
  23520. name: "Macro",
  23521. height: math.unit(150, "meters")
  23522. },
  23523. {
  23524. name: "Macro+",
  23525. height: math.unit(0.5, "miles")
  23526. },
  23527. {
  23528. name: "Macro++",
  23529. height: math.unit(2.5, "miles")
  23530. },
  23531. {
  23532. name: "Macro+++",
  23533. height: math.unit(12, "miles")
  23534. },
  23535. {
  23536. name: "Macro++++",
  23537. height: math.unit(120, "miles")
  23538. },
  23539. {
  23540. name: "Macro+++++",
  23541. height: math.unit(1200, "miles")
  23542. },
  23543. ]
  23544. ))
  23545. characterMakers.push(() => makeCharacter(
  23546. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23547. {
  23548. front: {
  23549. height: math.unit(6, "feet"),
  23550. weight: math.unit(150, "lb"),
  23551. name: "Front",
  23552. image: {
  23553. source: "./media/characters/sheila-wolf/front.svg",
  23554. extra: 1931 / 1808,
  23555. bottom: 29.5 / 1960
  23556. }
  23557. },
  23558. dick: {
  23559. height: math.unit(1.464, "feet"),
  23560. name: "Dick",
  23561. image: {
  23562. source: "./media/characters/sheila-wolf/dick.svg"
  23563. }
  23564. },
  23565. muzzle: {
  23566. height: math.unit(0.513, "feet"),
  23567. name: "Muzzle",
  23568. image: {
  23569. source: "./media/characters/sheila-wolf/muzzle.svg"
  23570. }
  23571. },
  23572. },
  23573. [
  23574. {
  23575. name: "Macro",
  23576. height: math.unit(70, "feet"),
  23577. default: true
  23578. },
  23579. ]
  23580. ))
  23581. characterMakers.push(() => makeCharacter(
  23582. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23583. {
  23584. front: {
  23585. height: math.unit(32, "meters"),
  23586. weight: math.unit(300000, "kg"),
  23587. name: "Front",
  23588. image: {
  23589. source: "./media/characters/almor/front.svg",
  23590. extra: 1408 / 1322,
  23591. bottom: 94.6 / 1506.5
  23592. }
  23593. },
  23594. },
  23595. [
  23596. {
  23597. name: "Macro",
  23598. height: math.unit(32, "meters"),
  23599. default: true
  23600. },
  23601. ]
  23602. ))
  23603. characterMakers.push(() => makeCharacter(
  23604. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23605. {
  23606. front: {
  23607. height: math.unit(7, "feet"),
  23608. weight: math.unit(200, "lb"),
  23609. name: "Front",
  23610. image: {
  23611. source: "./media/characters/silver/front.svg",
  23612. extra: 472.1 / 450.5,
  23613. bottom: 26.5 / 499.424
  23614. }
  23615. },
  23616. },
  23617. [
  23618. {
  23619. name: "Normal",
  23620. height: math.unit(7, "feet"),
  23621. default: true
  23622. },
  23623. {
  23624. name: "Macro",
  23625. height: math.unit(800, "feet")
  23626. },
  23627. {
  23628. name: "Megamacro",
  23629. height: math.unit(250, "miles")
  23630. },
  23631. ]
  23632. ))
  23633. characterMakers.push(() => makeCharacter(
  23634. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23635. {
  23636. front: {
  23637. height: math.unit(6, "feet"),
  23638. weight: math.unit(150, "lb"),
  23639. name: "Front",
  23640. image: {
  23641. source: "./media/characters/pliskin/front.svg",
  23642. extra: 1469 / 1359,
  23643. bottom: 70 / 1540
  23644. }
  23645. },
  23646. },
  23647. [
  23648. {
  23649. name: "Micro",
  23650. height: math.unit(3, "inches")
  23651. },
  23652. {
  23653. name: "Normal",
  23654. height: math.unit(5 + 11 / 12, "feet"),
  23655. default: true
  23656. },
  23657. {
  23658. name: "Macro",
  23659. height: math.unit(120, "feet")
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23665. {
  23666. front: {
  23667. height: math.unit(6, "feet"),
  23668. weight: math.unit(150, "lb"),
  23669. name: "Front",
  23670. image: {
  23671. source: "./media/characters/sammy/front.svg",
  23672. extra: 1193 / 1089,
  23673. bottom: 30.5 / 1226
  23674. }
  23675. },
  23676. },
  23677. [
  23678. {
  23679. name: "Macro",
  23680. height: math.unit(1700, "feet"),
  23681. default: true
  23682. },
  23683. {
  23684. name: "Examacro",
  23685. height: math.unit(2.5e9, "lightyears")
  23686. },
  23687. ]
  23688. ))
  23689. characterMakers.push(() => makeCharacter(
  23690. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23691. {
  23692. front: {
  23693. height: math.unit(21, "meters"),
  23694. weight: math.unit(12, "tonnes"),
  23695. name: "Front",
  23696. image: {
  23697. source: "./media/characters/kuru/front.svg",
  23698. extra: 4301 / 3785,
  23699. bottom: 371.3 / 4691
  23700. }
  23701. },
  23702. },
  23703. [
  23704. {
  23705. name: "Macro",
  23706. height: math.unit(21, "meters"),
  23707. default: true
  23708. },
  23709. ]
  23710. ))
  23711. characterMakers.push(() => makeCharacter(
  23712. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23713. {
  23714. front: {
  23715. height: math.unit(23, "meters"),
  23716. weight: math.unit(12.2, "tonnes"),
  23717. name: "Front",
  23718. image: {
  23719. source: "./media/characters/rakka/front.svg",
  23720. extra: 4670 / 4169,
  23721. bottom: 301 / 4968.7
  23722. }
  23723. },
  23724. },
  23725. [
  23726. {
  23727. name: "Macro",
  23728. height: math.unit(23, "meters"),
  23729. default: true
  23730. },
  23731. ]
  23732. ))
  23733. characterMakers.push(() => makeCharacter(
  23734. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23735. {
  23736. front: {
  23737. height: math.unit(6, "feet"),
  23738. weight: math.unit(150, "lb"),
  23739. name: "Front",
  23740. image: {
  23741. source: "./media/characters/rhys-feline/front.svg",
  23742. extra: 2488 / 2308,
  23743. bottom: 35.67 / 2519.19
  23744. }
  23745. },
  23746. },
  23747. [
  23748. {
  23749. name: "Really Small",
  23750. height: math.unit(1, "nm")
  23751. },
  23752. {
  23753. name: "Micro",
  23754. height: math.unit(4, "inches")
  23755. },
  23756. {
  23757. name: "Normal",
  23758. height: math.unit(4 + 10 / 12, "feet"),
  23759. default: true
  23760. },
  23761. {
  23762. name: "Macro",
  23763. height: math.unit(100, "feet")
  23764. },
  23765. {
  23766. name: "Megamacto",
  23767. height: math.unit(50, "miles")
  23768. },
  23769. ]
  23770. ))
  23771. characterMakers.push(() => makeCharacter(
  23772. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23773. {
  23774. side: {
  23775. height: math.unit(30, "feet"),
  23776. weight: math.unit(35000, "kg"),
  23777. name: "Side",
  23778. image: {
  23779. source: "./media/characters/alydar/side.svg",
  23780. extra: 234 / 222,
  23781. bottom: 6.5 / 241
  23782. }
  23783. },
  23784. front: {
  23785. height: math.unit(30, "feet"),
  23786. weight: math.unit(35000, "kg"),
  23787. name: "Front",
  23788. image: {
  23789. source: "./media/characters/alydar/front.svg",
  23790. extra: 223.37 / 210.2,
  23791. bottom: 22.3 / 246.76
  23792. }
  23793. },
  23794. top: {
  23795. height: math.unit(64.54, "feet"),
  23796. weight: math.unit(35000, "kg"),
  23797. name: "Top",
  23798. image: {
  23799. source: "./media/characters/alydar/top.svg"
  23800. }
  23801. },
  23802. anthro: {
  23803. height: math.unit(30, "feet"),
  23804. weight: math.unit(9000, "kg"),
  23805. name: "Anthro",
  23806. image: {
  23807. source: "./media/characters/alydar/anthro.svg",
  23808. extra: 432 / 421,
  23809. bottom: 7.18 / 440
  23810. }
  23811. },
  23812. maw: {
  23813. height: math.unit(11.693, "feet"),
  23814. name: "Maw",
  23815. image: {
  23816. source: "./media/characters/alydar/maw.svg"
  23817. }
  23818. },
  23819. head: {
  23820. height: math.unit(11.693, "feet"),
  23821. name: "Head",
  23822. image: {
  23823. source: "./media/characters/alydar/head.svg"
  23824. }
  23825. },
  23826. headAlt: {
  23827. height: math.unit(12.861, "feet"),
  23828. name: "Head (Alt)",
  23829. image: {
  23830. source: "./media/characters/alydar/head-alt.svg"
  23831. }
  23832. },
  23833. wing: {
  23834. height: math.unit(20.712, "feet"),
  23835. name: "Wing",
  23836. image: {
  23837. source: "./media/characters/alydar/wing.svg"
  23838. }
  23839. },
  23840. wingFeather: {
  23841. height: math.unit(9.662, "feet"),
  23842. name: "Wing Feather",
  23843. image: {
  23844. source: "./media/characters/alydar/wing-feather.svg"
  23845. }
  23846. },
  23847. countourFeather: {
  23848. height: math.unit(4.154, "feet"),
  23849. name: "Contour Feather",
  23850. image: {
  23851. source: "./media/characters/alydar/contour-feather.svg"
  23852. }
  23853. },
  23854. },
  23855. [
  23856. {
  23857. name: "Diplomatic",
  23858. height: math.unit(13, "feet"),
  23859. default: true
  23860. },
  23861. {
  23862. name: "Small",
  23863. height: math.unit(30, "feet")
  23864. },
  23865. {
  23866. name: "Normal",
  23867. height: math.unit(95, "feet"),
  23868. default: true
  23869. },
  23870. {
  23871. name: "Large",
  23872. height: math.unit(285, "feet")
  23873. },
  23874. {
  23875. name: "Incomprehensible",
  23876. height: math.unit(450, "megameters")
  23877. },
  23878. ]
  23879. ))
  23880. characterMakers.push(() => makeCharacter(
  23881. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23882. {
  23883. side: {
  23884. height: math.unit(11, "feet"),
  23885. weight: math.unit(1750, "kg"),
  23886. name: "Side",
  23887. image: {
  23888. source: "./media/characters/selicia/side.svg",
  23889. extra: 440 / 396,
  23890. bottom: 24.8 / 465.979
  23891. }
  23892. },
  23893. maw: {
  23894. height: math.unit(4.665, "feet"),
  23895. name: "Maw",
  23896. image: {
  23897. source: "./media/characters/selicia/maw.svg"
  23898. }
  23899. },
  23900. },
  23901. [
  23902. {
  23903. name: "Normal",
  23904. height: math.unit(11, "feet"),
  23905. default: true
  23906. },
  23907. ]
  23908. ))
  23909. characterMakers.push(() => makeCharacter(
  23910. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23911. {
  23912. side: {
  23913. height: math.unit(2 + 6 / 12, "feet"),
  23914. weight: math.unit(30, "lb"),
  23915. name: "Side",
  23916. image: {
  23917. source: "./media/characters/layla/side.svg",
  23918. extra: 244 / 188,
  23919. bottom: 18.2 / 262.1
  23920. }
  23921. },
  23922. back: {
  23923. height: math.unit(2 + 6 / 12, "feet"),
  23924. weight: math.unit(30, "lb"),
  23925. name: "Back",
  23926. image: {
  23927. source: "./media/characters/layla/back.svg",
  23928. extra: 308 / 241.5,
  23929. bottom: 8.9 / 316.8
  23930. }
  23931. },
  23932. cumming: {
  23933. height: math.unit(2 + 6 / 12, "feet"),
  23934. weight: math.unit(30, "lb"),
  23935. name: "Cumming",
  23936. image: {
  23937. source: "./media/characters/layla/cumming.svg",
  23938. extra: 342 / 279,
  23939. bottom: 595 / 938
  23940. }
  23941. },
  23942. dickFlaccid: {
  23943. height: math.unit(2.595, "feet"),
  23944. name: "Flaccid Genitals",
  23945. image: {
  23946. source: "./media/characters/layla/dick-flaccid.svg"
  23947. }
  23948. },
  23949. dickErect: {
  23950. height: math.unit(2.359, "feet"),
  23951. name: "Erect Genitals",
  23952. image: {
  23953. source: "./media/characters/layla/dick-erect.svg"
  23954. }
  23955. },
  23956. dragon: {
  23957. height: math.unit(40, "feet"),
  23958. name: "Dragon",
  23959. image: {
  23960. source: "./media/characters/layla/dragon.svg",
  23961. extra: 610/535,
  23962. bottom: 367/977
  23963. }
  23964. },
  23965. taur: {
  23966. height: math.unit(30, "feet"),
  23967. name: "Taur",
  23968. image: {
  23969. source: "./media/characters/layla/taur.svg",
  23970. extra: 1268/1199,
  23971. bottom: 112/1380
  23972. }
  23973. },
  23974. },
  23975. [
  23976. {
  23977. name: "Micro",
  23978. height: math.unit(1, "inch")
  23979. },
  23980. {
  23981. name: "Small",
  23982. height: math.unit(1, "foot")
  23983. },
  23984. {
  23985. name: "Normal",
  23986. height: math.unit(2 + 6 / 12, "feet"),
  23987. default: true
  23988. },
  23989. {
  23990. name: "Macro",
  23991. height: math.unit(200, "feet")
  23992. },
  23993. {
  23994. name: "Megamacro",
  23995. height: math.unit(1000, "miles")
  23996. },
  23997. {
  23998. name: "Planetary",
  23999. height: math.unit(8000, "miles")
  24000. },
  24001. {
  24002. name: "True Layla",
  24003. height: math.unit(200000 * 7, "multiverses")
  24004. },
  24005. ]
  24006. ))
  24007. characterMakers.push(() => makeCharacter(
  24008. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24009. {
  24010. back: {
  24011. height: math.unit(10.5, "feet"),
  24012. weight: math.unit(800, "lb"),
  24013. name: "Back",
  24014. image: {
  24015. source: "./media/characters/knox/back.svg",
  24016. extra: 1486 / 1089,
  24017. bottom: 107 / 1601.4
  24018. }
  24019. },
  24020. side: {
  24021. height: math.unit(10.5, "feet"),
  24022. weight: math.unit(800, "lb"),
  24023. name: "Side",
  24024. image: {
  24025. source: "./media/characters/knox/side.svg",
  24026. extra: 244 / 218,
  24027. bottom: 14 / 260
  24028. }
  24029. },
  24030. },
  24031. [
  24032. {
  24033. name: "Compact",
  24034. height: math.unit(10.5, "feet"),
  24035. default: true
  24036. },
  24037. {
  24038. name: "Dynamax",
  24039. height: math.unit(210, "feet")
  24040. },
  24041. {
  24042. name: "Full Macro",
  24043. height: math.unit(850, "feet")
  24044. },
  24045. ]
  24046. ))
  24047. characterMakers.push(() => makeCharacter(
  24048. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24049. {
  24050. front: {
  24051. height: math.unit(28, "feet"),
  24052. weight: math.unit(10500, "lb"),
  24053. name: "Front",
  24054. image: {
  24055. source: "./media/characters/kayda/front.svg",
  24056. extra: 1536 / 1428,
  24057. bottom: 68.7 / 1603
  24058. }
  24059. },
  24060. back: {
  24061. height: math.unit(28, "feet"),
  24062. weight: math.unit(10500, "lb"),
  24063. name: "Back",
  24064. image: {
  24065. source: "./media/characters/kayda/back.svg",
  24066. extra: 1557 / 1464,
  24067. bottom: 39.5 / 1597.49
  24068. }
  24069. },
  24070. dick: {
  24071. height: math.unit(3.858, "feet"),
  24072. name: "Dick",
  24073. image: {
  24074. source: "./media/characters/kayda/dick.svg"
  24075. }
  24076. },
  24077. },
  24078. [
  24079. {
  24080. name: "Macro",
  24081. height: math.unit(28, "feet"),
  24082. default: true
  24083. },
  24084. ]
  24085. ))
  24086. characterMakers.push(() => makeCharacter(
  24087. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24088. {
  24089. front: {
  24090. height: math.unit(10 + 11 / 12, "feet"),
  24091. weight: math.unit(1400, "lb"),
  24092. name: "Front",
  24093. image: {
  24094. source: "./media/characters/brian/front.svg",
  24095. extra: 737 / 692,
  24096. bottom: 55.4 / 785
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Normal",
  24103. height: math.unit(10 + 11 / 12, "feet"),
  24104. default: true
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24110. {
  24111. front: {
  24112. height: math.unit(5 + 8 / 12, "feet"),
  24113. weight: math.unit(140, "lb"),
  24114. name: "Front",
  24115. image: {
  24116. source: "./media/characters/khemri/front.svg",
  24117. extra: 4780 / 4059,
  24118. bottom: 80.1 / 4859.25
  24119. }
  24120. },
  24121. },
  24122. [
  24123. {
  24124. name: "Micro",
  24125. height: math.unit(6, "inches")
  24126. },
  24127. {
  24128. name: "Normal",
  24129. height: math.unit(5 + 8 / 12, "feet"),
  24130. default: true
  24131. },
  24132. ]
  24133. ))
  24134. characterMakers.push(() => makeCharacter(
  24135. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24136. {
  24137. front: {
  24138. height: math.unit(13, "feet"),
  24139. weight: math.unit(1700, "lb"),
  24140. name: "Front",
  24141. image: {
  24142. source: "./media/characters/felix-braveheart/front.svg",
  24143. extra: 1222 / 1157,
  24144. bottom: 53.2 / 1280
  24145. }
  24146. },
  24147. back: {
  24148. height: math.unit(13, "feet"),
  24149. weight: math.unit(1700, "lb"),
  24150. name: "Back",
  24151. image: {
  24152. source: "./media/characters/felix-braveheart/back.svg",
  24153. extra: 1277 / 1203,
  24154. bottom: 50.2 / 1327
  24155. }
  24156. },
  24157. feral: {
  24158. height: math.unit(6, "feet"),
  24159. weight: math.unit(400, "lb"),
  24160. name: "Feral",
  24161. image: {
  24162. source: "./media/characters/felix-braveheart/feral.svg",
  24163. extra: 682 / 625,
  24164. bottom: 6.9 / 688
  24165. }
  24166. },
  24167. },
  24168. [
  24169. {
  24170. name: "Normal",
  24171. height: math.unit(13, "feet"),
  24172. default: true
  24173. },
  24174. ]
  24175. ))
  24176. characterMakers.push(() => makeCharacter(
  24177. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24178. {
  24179. side: {
  24180. height: math.unit(5 + 11 / 12, "feet"),
  24181. weight: math.unit(1400, "lb"),
  24182. name: "Side",
  24183. image: {
  24184. source: "./media/characters/shadow-blade/side.svg",
  24185. extra: 1726 / 1267,
  24186. bottom: 58.4 / 1785
  24187. }
  24188. },
  24189. },
  24190. [
  24191. {
  24192. name: "Normal",
  24193. height: math.unit(5 + 11 / 12, "feet"),
  24194. default: true
  24195. },
  24196. ]
  24197. ))
  24198. characterMakers.push(() => makeCharacter(
  24199. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24200. {
  24201. front: {
  24202. height: math.unit(1 + 6 / 12, "feet"),
  24203. weight: math.unit(25, "lb"),
  24204. name: "Front",
  24205. image: {
  24206. source: "./media/characters/karla-halldor/front.svg",
  24207. extra: 1459 / 1383,
  24208. bottom: 12 / 1472
  24209. }
  24210. },
  24211. },
  24212. [
  24213. {
  24214. name: "Normal",
  24215. height: math.unit(1 + 6 / 12, "feet"),
  24216. default: true
  24217. },
  24218. ]
  24219. ))
  24220. characterMakers.push(() => makeCharacter(
  24221. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24222. {
  24223. front: {
  24224. height: math.unit(6 + 2 / 12, "feet"),
  24225. weight: math.unit(160, "lb"),
  24226. name: "Front",
  24227. image: {
  24228. source: "./media/characters/ariam/front.svg",
  24229. extra: 1073/976,
  24230. bottom: 52/1125
  24231. }
  24232. },
  24233. back: {
  24234. height: math.unit(6 + 2/12, "feet"),
  24235. weight: math.unit(160, "lb"),
  24236. name: "Back",
  24237. image: {
  24238. source: "./media/characters/ariam/back.svg",
  24239. extra: 1103/1023,
  24240. bottom: 9/1112
  24241. }
  24242. },
  24243. dressed: {
  24244. height: math.unit(6 + 2/12, "feet"),
  24245. weight: math.unit(160, "lb"),
  24246. name: "Dressed",
  24247. image: {
  24248. source: "./media/characters/ariam/dressed.svg",
  24249. extra: 1099/1009,
  24250. bottom: 25/1124
  24251. }
  24252. },
  24253. squatting: {
  24254. height: math.unit(4.1, "feet"),
  24255. weight: math.unit(160, "lb"),
  24256. name: "Squatting",
  24257. image: {
  24258. source: "./media/characters/ariam/squatting.svg",
  24259. extra: 2617 / 2112,
  24260. bottom: 61.2 / 2681,
  24261. }
  24262. },
  24263. },
  24264. [
  24265. {
  24266. name: "Normal",
  24267. height: math.unit(6 + 2 / 12, "feet"),
  24268. default: true
  24269. },
  24270. {
  24271. name: "Normal+",
  24272. height: math.unit(4, "meters")
  24273. },
  24274. {
  24275. name: "Macro",
  24276. height: math.unit(50, "meters")
  24277. },
  24278. {
  24279. name: "Macro+",
  24280. height: math.unit(100, "meters")
  24281. },
  24282. {
  24283. name: "Megamacro",
  24284. height: math.unit(20, "km")
  24285. },
  24286. {
  24287. name: "Caretaker",
  24288. height: math.unit(444, "megameters")
  24289. },
  24290. ]
  24291. ))
  24292. characterMakers.push(() => makeCharacter(
  24293. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24294. {
  24295. front: {
  24296. height: math.unit(1.67, "meters"),
  24297. weight: math.unit(140, "lb"),
  24298. name: "Front",
  24299. image: {
  24300. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24301. extra: 438 / 410,
  24302. bottom: 0.75 / 439
  24303. }
  24304. },
  24305. },
  24306. [
  24307. {
  24308. name: "Shrunken",
  24309. height: math.unit(7.6, "cm")
  24310. },
  24311. {
  24312. name: "Human Scale",
  24313. height: math.unit(1.67, "meters")
  24314. },
  24315. {
  24316. name: "Wolxi Scale",
  24317. height: math.unit(36.7, "meters"),
  24318. default: true
  24319. },
  24320. ]
  24321. ))
  24322. characterMakers.push(() => makeCharacter(
  24323. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24324. {
  24325. front: {
  24326. height: math.unit(1.73, "meters"),
  24327. weight: math.unit(240, "lb"),
  24328. name: "Front",
  24329. image: {
  24330. source: "./media/characters/izue-two-mothers/front.svg",
  24331. extra: 469 / 437,
  24332. bottom: 1.24 / 470.6
  24333. }
  24334. },
  24335. },
  24336. [
  24337. {
  24338. name: "Shrunken",
  24339. height: math.unit(7.86, "cm")
  24340. },
  24341. {
  24342. name: "Human Scale",
  24343. height: math.unit(1.73, "meters")
  24344. },
  24345. {
  24346. name: "Wolxi Scale",
  24347. height: math.unit(38, "meters"),
  24348. default: true
  24349. },
  24350. ]
  24351. ))
  24352. characterMakers.push(() => makeCharacter(
  24353. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24354. {
  24355. front: {
  24356. height: math.unit(1.55, "meters"),
  24357. weight: math.unit(120, "lb"),
  24358. name: "Front",
  24359. image: {
  24360. source: "./media/characters/teeku-love-shack/front.svg",
  24361. extra: 387 / 362,
  24362. bottom: 1.51 / 388
  24363. }
  24364. },
  24365. },
  24366. [
  24367. {
  24368. name: "Shrunken",
  24369. height: math.unit(7, "cm")
  24370. },
  24371. {
  24372. name: "Human Scale",
  24373. height: math.unit(1.55, "meters")
  24374. },
  24375. {
  24376. name: "Wolxi Scale",
  24377. height: math.unit(34.1, "meters"),
  24378. default: true
  24379. },
  24380. ]
  24381. ))
  24382. characterMakers.push(() => makeCharacter(
  24383. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24384. {
  24385. front: {
  24386. height: math.unit(1.83, "meters"),
  24387. weight: math.unit(135, "lb"),
  24388. name: "Front",
  24389. image: {
  24390. source: "./media/characters/dejma-the-red/front.svg",
  24391. extra: 480 / 458,
  24392. bottom: 1.8 / 482
  24393. }
  24394. },
  24395. },
  24396. [
  24397. {
  24398. name: "Shrunken",
  24399. height: math.unit(8.3, "cm")
  24400. },
  24401. {
  24402. name: "Human Scale",
  24403. height: math.unit(1.83, "meters")
  24404. },
  24405. {
  24406. name: "Wolxi Scale",
  24407. height: math.unit(40, "meters"),
  24408. default: true
  24409. },
  24410. ]
  24411. ))
  24412. characterMakers.push(() => makeCharacter(
  24413. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24414. {
  24415. front: {
  24416. height: math.unit(1.78, "meters"),
  24417. weight: math.unit(65, "kg"),
  24418. name: "Front",
  24419. image: {
  24420. source: "./media/characters/aki/front.svg",
  24421. extra: 452 / 415
  24422. }
  24423. },
  24424. frontNsfw: {
  24425. height: math.unit(1.78, "meters"),
  24426. weight: math.unit(65, "kg"),
  24427. name: "Front (NSFW)",
  24428. image: {
  24429. source: "./media/characters/aki/front-nsfw.svg",
  24430. extra: 452 / 415
  24431. }
  24432. },
  24433. back: {
  24434. height: math.unit(1.78, "meters"),
  24435. weight: math.unit(65, "kg"),
  24436. name: "Back",
  24437. image: {
  24438. source: "./media/characters/aki/back.svg",
  24439. extra: 452 / 415
  24440. }
  24441. },
  24442. rump: {
  24443. height: math.unit(2.05, "feet"),
  24444. name: "Rump",
  24445. image: {
  24446. source: "./media/characters/aki/rump.svg"
  24447. }
  24448. },
  24449. dick: {
  24450. height: math.unit(0.95, "feet"),
  24451. name: "Dick",
  24452. image: {
  24453. source: "./media/characters/aki/dick.svg"
  24454. }
  24455. },
  24456. },
  24457. [
  24458. {
  24459. name: "Micro",
  24460. height: math.unit(15, "cm")
  24461. },
  24462. {
  24463. name: "Normal",
  24464. height: math.unit(178, "cm"),
  24465. default: true
  24466. },
  24467. {
  24468. name: "Macro",
  24469. height: math.unit(214, "m")
  24470. },
  24471. {
  24472. name: "Macro+",
  24473. height: math.unit(534, "m")
  24474. },
  24475. ]
  24476. ))
  24477. characterMakers.push(() => makeCharacter(
  24478. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24479. {
  24480. front: {
  24481. height: math.unit(5 + 5 / 12, "feet"),
  24482. weight: math.unit(120, "lb"),
  24483. name: "Front",
  24484. image: {
  24485. source: "./media/characters/ari/front.svg",
  24486. extra: 714.5 / 682,
  24487. bottom: 8 / 722.5
  24488. }
  24489. },
  24490. },
  24491. [
  24492. {
  24493. name: "Normal",
  24494. height: math.unit(5 + 5 / 12, "feet")
  24495. },
  24496. {
  24497. name: "Macro",
  24498. height: math.unit(100, "feet"),
  24499. default: true
  24500. },
  24501. {
  24502. name: "Megamacro",
  24503. height: math.unit(100, "miles")
  24504. },
  24505. {
  24506. name: "Gigamacro",
  24507. height: math.unit(80000, "miles")
  24508. },
  24509. ]
  24510. ))
  24511. characterMakers.push(() => makeCharacter(
  24512. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24513. {
  24514. side: {
  24515. height: math.unit(9, "feet"),
  24516. weight: math.unit(400, "kg"),
  24517. name: "Side",
  24518. image: {
  24519. source: "./media/characters/bolt/side.svg",
  24520. extra: 1126 / 896,
  24521. bottom: 60 / 1187.3,
  24522. }
  24523. },
  24524. },
  24525. [
  24526. {
  24527. name: "Micro",
  24528. height: math.unit(5, "inches")
  24529. },
  24530. {
  24531. name: "Normal",
  24532. height: math.unit(9, "feet"),
  24533. default: true
  24534. },
  24535. {
  24536. name: "Macro",
  24537. height: math.unit(700, "feet")
  24538. },
  24539. {
  24540. name: "Max Size",
  24541. height: math.unit(1.52e22, "yottameters")
  24542. },
  24543. ]
  24544. ))
  24545. characterMakers.push(() => makeCharacter(
  24546. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24547. {
  24548. front: {
  24549. height: math.unit(4.53, "meters"),
  24550. weight: math.unit(3, "tons"),
  24551. name: "Front",
  24552. image: {
  24553. source: "./media/characters/draekon-sylviar/front.svg",
  24554. extra: 1228 / 1068,
  24555. bottom: 41 / 1270
  24556. }
  24557. },
  24558. tail: {
  24559. height: math.unit(1.772, "meter"),
  24560. name: "Tail",
  24561. image: {
  24562. source: "./media/characters/draekon-sylviar/tail.svg"
  24563. }
  24564. },
  24565. head: {
  24566. height: math.unit(1.331, "meter"),
  24567. name: "Head",
  24568. image: {
  24569. source: "./media/characters/draekon-sylviar/head.svg"
  24570. }
  24571. },
  24572. hand: {
  24573. height: math.unit(0.564, "meter"),
  24574. name: "Hand",
  24575. image: {
  24576. source: "./media/characters/draekon-sylviar/hand.svg"
  24577. }
  24578. },
  24579. foot: {
  24580. height: math.unit(0.621, "meter"),
  24581. name: "Foot",
  24582. image: {
  24583. source: "./media/characters/draekon-sylviar/foot.svg",
  24584. bottom: 32 / 324
  24585. }
  24586. },
  24587. dick: {
  24588. height: math.unit(61, "cm"),
  24589. name: "Dick",
  24590. image: {
  24591. source: "./media/characters/draekon-sylviar/dick.svg"
  24592. }
  24593. },
  24594. dickseparated: {
  24595. height: math.unit(61, "cm"),
  24596. name: "Dick-separated",
  24597. image: {
  24598. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24599. }
  24600. },
  24601. },
  24602. [
  24603. {
  24604. name: "Small",
  24605. height: math.unit(4.53 / 2, "meters"),
  24606. default: true
  24607. },
  24608. {
  24609. name: "Normal",
  24610. height: math.unit(4.53, "meters"),
  24611. default: true
  24612. },
  24613. {
  24614. name: "Large",
  24615. height: math.unit(4.53 * 2, "meters"),
  24616. },
  24617. ]
  24618. ))
  24619. characterMakers.push(() => makeCharacter(
  24620. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24621. {
  24622. front: {
  24623. height: math.unit(6 + 2 / 12, "feet"),
  24624. weight: math.unit(180, "lb"),
  24625. name: "Front",
  24626. image: {
  24627. source: "./media/characters/brawler/front.svg",
  24628. extra: 3301 / 3027,
  24629. bottom: 138 / 3439
  24630. }
  24631. },
  24632. },
  24633. [
  24634. {
  24635. name: "Normal",
  24636. height: math.unit(6 + 2 / 12, "feet"),
  24637. default: true
  24638. },
  24639. ]
  24640. ))
  24641. characterMakers.push(() => makeCharacter(
  24642. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24643. {
  24644. front: {
  24645. height: math.unit(11, "feet"),
  24646. weight: math.unit(1000, "lb"),
  24647. name: "Front",
  24648. image: {
  24649. source: "./media/characters/alex/front.svg",
  24650. bottom: 44.5 / 620
  24651. }
  24652. },
  24653. },
  24654. [
  24655. {
  24656. name: "Micro",
  24657. height: math.unit(5, "inches")
  24658. },
  24659. {
  24660. name: "Normal",
  24661. height: math.unit(11, "feet"),
  24662. default: true
  24663. },
  24664. {
  24665. name: "Macro",
  24666. height: math.unit(9.5e9, "feet")
  24667. },
  24668. {
  24669. name: "Max Size",
  24670. height: math.unit(1.4e283, "yottameters")
  24671. },
  24672. ]
  24673. ))
  24674. characterMakers.push(() => makeCharacter(
  24675. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24676. {
  24677. female: {
  24678. height: math.unit(29.9, "m"),
  24679. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24680. name: "Female",
  24681. image: {
  24682. source: "./media/characters/zenari/female.svg",
  24683. extra: 3281.6 / 3217,
  24684. bottom: 72.2 / 3353
  24685. }
  24686. },
  24687. male: {
  24688. height: math.unit(27.7, "m"),
  24689. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24690. name: "Male",
  24691. image: {
  24692. source: "./media/characters/zenari/male.svg",
  24693. extra: 3008 / 2991,
  24694. bottom: 54.6 / 3069
  24695. }
  24696. },
  24697. },
  24698. [
  24699. {
  24700. name: "Macro",
  24701. height: math.unit(29.7, "meters"),
  24702. default: true
  24703. },
  24704. ]
  24705. ))
  24706. characterMakers.push(() => makeCharacter(
  24707. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24708. {
  24709. female: {
  24710. height: math.unit(23.8, "m"),
  24711. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24712. name: "Female",
  24713. image: {
  24714. source: "./media/characters/mactarian/female.svg",
  24715. extra: 2662 / 2569,
  24716. bottom: 73 / 2736
  24717. }
  24718. },
  24719. male: {
  24720. height: math.unit(23.8, "m"),
  24721. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24722. name: "Male",
  24723. image: {
  24724. source: "./media/characters/mactarian/male.svg",
  24725. extra: 2673 / 2600,
  24726. bottom: 76 / 2750
  24727. }
  24728. },
  24729. },
  24730. [
  24731. {
  24732. name: "Macro",
  24733. height: math.unit(23.8, "meters"),
  24734. default: true
  24735. },
  24736. ]
  24737. ))
  24738. characterMakers.push(() => makeCharacter(
  24739. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24740. {
  24741. female: {
  24742. height: math.unit(19.3, "m"),
  24743. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24744. name: "Female",
  24745. image: {
  24746. source: "./media/characters/umok/female.svg",
  24747. extra: 2186 / 2078,
  24748. bottom: 87 / 2277
  24749. }
  24750. },
  24751. male: {
  24752. height: math.unit(19.5, "m"),
  24753. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24754. name: "Male",
  24755. image: {
  24756. source: "./media/characters/umok/male.svg",
  24757. extra: 2233 / 2140,
  24758. bottom: 24.4 / 2258
  24759. }
  24760. },
  24761. },
  24762. [
  24763. {
  24764. name: "Macro",
  24765. height: math.unit(19.3, "meters"),
  24766. default: true
  24767. },
  24768. ]
  24769. ))
  24770. characterMakers.push(() => makeCharacter(
  24771. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24772. {
  24773. female: {
  24774. height: math.unit(26.15, "m"),
  24775. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24776. name: "Female",
  24777. image: {
  24778. source: "./media/characters/joraxian/female.svg",
  24779. extra: 2912 / 2824,
  24780. bottom: 36 / 2956
  24781. }
  24782. },
  24783. male: {
  24784. height: math.unit(25.4, "m"),
  24785. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24786. name: "Male",
  24787. image: {
  24788. source: "./media/characters/joraxian/male.svg",
  24789. extra: 2877 / 2721,
  24790. bottom: 82 / 2967
  24791. }
  24792. },
  24793. },
  24794. [
  24795. {
  24796. name: "Macro",
  24797. height: math.unit(26.15, "meters"),
  24798. default: true
  24799. },
  24800. ]
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24804. {
  24805. female: {
  24806. height: math.unit(21.6, "m"),
  24807. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24808. name: "Female",
  24809. image: {
  24810. source: "./media/characters/sthara/female.svg",
  24811. extra: 2516 / 2347,
  24812. bottom: 21.5 / 2537
  24813. }
  24814. },
  24815. male: {
  24816. height: math.unit(24, "m"),
  24817. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24818. name: "Male",
  24819. image: {
  24820. source: "./media/characters/sthara/male.svg",
  24821. extra: 2732 / 2607,
  24822. bottom: 23 / 2732
  24823. }
  24824. },
  24825. },
  24826. [
  24827. {
  24828. name: "Macro",
  24829. height: math.unit(21.6, "meters"),
  24830. default: true
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24836. {
  24837. front: {
  24838. height: math.unit(6 + 4 / 12, "feet"),
  24839. weight: math.unit(175, "lb"),
  24840. name: "Front",
  24841. image: {
  24842. source: "./media/characters/luka-bryzant/front.svg",
  24843. extra: 311 / 289,
  24844. bottom: 4 / 315
  24845. }
  24846. },
  24847. back: {
  24848. height: math.unit(6 + 4 / 12, "feet"),
  24849. weight: math.unit(175, "lb"),
  24850. name: "Back",
  24851. image: {
  24852. source: "./media/characters/luka-bryzant/back.svg",
  24853. extra: 311 / 289,
  24854. bottom: 3.8 / 313.7
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Micro",
  24861. height: math.unit(10, "inches")
  24862. },
  24863. {
  24864. name: "Normal",
  24865. height: math.unit(6 + 4 / 12, "feet"),
  24866. default: true
  24867. },
  24868. {
  24869. name: "Large",
  24870. height: math.unit(12, "feet")
  24871. },
  24872. ]
  24873. ))
  24874. characterMakers.push(() => makeCharacter(
  24875. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24876. {
  24877. front: {
  24878. height: math.unit(5 + 7 / 12, "feet"),
  24879. weight: math.unit(185, "lb"),
  24880. name: "Front",
  24881. image: {
  24882. source: "./media/characters/aman-aquila/front.svg",
  24883. extra: 1013 / 976,
  24884. bottom: 45.6 / 1057
  24885. }
  24886. },
  24887. side: {
  24888. height: math.unit(5 + 7 / 12, "feet"),
  24889. weight: math.unit(185, "lb"),
  24890. name: "Side",
  24891. image: {
  24892. source: "./media/characters/aman-aquila/side.svg",
  24893. extra: 1054 / 1011,
  24894. bottom: 15 / 1070
  24895. }
  24896. },
  24897. back: {
  24898. height: math.unit(5 + 7 / 12, "feet"),
  24899. weight: math.unit(185, "lb"),
  24900. name: "Back",
  24901. image: {
  24902. source: "./media/characters/aman-aquila/back.svg",
  24903. extra: 1026 / 970,
  24904. bottom: 12 / 1039
  24905. }
  24906. },
  24907. head: {
  24908. height: math.unit(1.211, "feet"),
  24909. name: "Head",
  24910. image: {
  24911. source: "./media/characters/aman-aquila/head.svg",
  24912. }
  24913. },
  24914. },
  24915. [
  24916. {
  24917. name: "Minimicro",
  24918. height: math.unit(0.057, "inches")
  24919. },
  24920. {
  24921. name: "Micro",
  24922. height: math.unit(7, "inches")
  24923. },
  24924. {
  24925. name: "Mini",
  24926. height: math.unit(3 + 7 / 12, "feet")
  24927. },
  24928. {
  24929. name: "Normal",
  24930. height: math.unit(5 + 7 / 12, "feet"),
  24931. default: true
  24932. },
  24933. {
  24934. name: "Macro",
  24935. height: math.unit(157 + 7 / 12, "feet")
  24936. },
  24937. {
  24938. name: "Megamacro",
  24939. height: math.unit(1557 + 7 / 12, "feet")
  24940. },
  24941. {
  24942. name: "Gigamacro",
  24943. height: math.unit(15557 + 7 / 12, "feet")
  24944. },
  24945. ]
  24946. ))
  24947. characterMakers.push(() => makeCharacter(
  24948. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24949. {
  24950. front: {
  24951. height: math.unit(3 + 2 / 12, "inches"),
  24952. weight: math.unit(0.3, "ounces"),
  24953. name: "Front",
  24954. image: {
  24955. source: "./media/characters/hiphae/front.svg",
  24956. extra: 1931 / 1683,
  24957. bottom: 24 / 1955
  24958. }
  24959. },
  24960. },
  24961. [
  24962. {
  24963. name: "Normal",
  24964. height: math.unit(3 + 1 / 2, "inches"),
  24965. default: true
  24966. },
  24967. ]
  24968. ))
  24969. characterMakers.push(() => makeCharacter(
  24970. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24971. {
  24972. front: {
  24973. height: math.unit(5 + 10 / 12, "feet"),
  24974. weight: math.unit(165, "lb"),
  24975. name: "Front",
  24976. image: {
  24977. source: "./media/characters/nicky/front.svg",
  24978. extra: 3144 / 2886,
  24979. bottom: 45.6 / 3192
  24980. }
  24981. },
  24982. back: {
  24983. height: math.unit(5 + 10 / 12, "feet"),
  24984. weight: math.unit(165, "lb"),
  24985. name: "Back",
  24986. image: {
  24987. source: "./media/characters/nicky/back.svg",
  24988. extra: 3055 / 2804,
  24989. bottom: 28.4 / 3087
  24990. }
  24991. },
  24992. frontclothed: {
  24993. height: math.unit(5 + 10 / 12, "feet"),
  24994. weight: math.unit(165, "lb"),
  24995. name: "Front-clothed",
  24996. image: {
  24997. source: "./media/characters/nicky/front-clothed.svg",
  24998. extra: 3184.9 / 2926.9,
  24999. bottom: 86.5 / 3239.9
  25000. }
  25001. },
  25002. foot: {
  25003. height: math.unit(1.16, "feet"),
  25004. name: "Foot",
  25005. image: {
  25006. source: "./media/characters/nicky/foot.svg"
  25007. }
  25008. },
  25009. feet: {
  25010. height: math.unit(1.34, "feet"),
  25011. name: "Feet",
  25012. image: {
  25013. source: "./media/characters/nicky/feet.svg"
  25014. }
  25015. },
  25016. maw: {
  25017. height: math.unit(0.9, "feet"),
  25018. name: "Maw",
  25019. image: {
  25020. source: "./media/characters/nicky/maw.svg"
  25021. }
  25022. },
  25023. },
  25024. [
  25025. {
  25026. name: "Normal",
  25027. height: math.unit(5 + 10 / 12, "feet"),
  25028. default: true
  25029. },
  25030. {
  25031. name: "Macro",
  25032. height: math.unit(60, "feet")
  25033. },
  25034. {
  25035. name: "Megamacro",
  25036. height: math.unit(1, "mile")
  25037. },
  25038. ]
  25039. ))
  25040. characterMakers.push(() => makeCharacter(
  25041. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25042. {
  25043. side: {
  25044. height: math.unit(10, "feet"),
  25045. weight: math.unit(600, "lb"),
  25046. name: "Side",
  25047. image: {
  25048. source: "./media/characters/blair/side.svg",
  25049. bottom: 16.6 / 475,
  25050. extra: 458 / 431
  25051. }
  25052. },
  25053. },
  25054. [
  25055. {
  25056. name: "Micro",
  25057. height: math.unit(8, "inches")
  25058. },
  25059. {
  25060. name: "Normal",
  25061. height: math.unit(10, "feet"),
  25062. default: true
  25063. },
  25064. {
  25065. name: "Macro",
  25066. height: math.unit(180, "feet")
  25067. },
  25068. ]
  25069. ))
  25070. characterMakers.push(() => makeCharacter(
  25071. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25072. {
  25073. front: {
  25074. height: math.unit(5 + 4 / 12, "feet"),
  25075. weight: math.unit(125, "lb"),
  25076. name: "Front",
  25077. image: {
  25078. source: "./media/characters/fisher/front.svg",
  25079. extra: 444 / 390,
  25080. bottom: 2 / 444.8
  25081. }
  25082. },
  25083. },
  25084. [
  25085. {
  25086. name: "Micro",
  25087. height: math.unit(4, "inches")
  25088. },
  25089. {
  25090. name: "Normal",
  25091. height: math.unit(5 + 4 / 12, "feet"),
  25092. default: true
  25093. },
  25094. {
  25095. name: "Macro",
  25096. height: math.unit(100, "feet")
  25097. },
  25098. ]
  25099. ))
  25100. characterMakers.push(() => makeCharacter(
  25101. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25102. {
  25103. front: {
  25104. height: math.unit(6.71, "feet"),
  25105. weight: math.unit(200, "lb"),
  25106. capacity: math.unit(1000000, "people"),
  25107. name: "Front",
  25108. image: {
  25109. source: "./media/characters/gliss/front.svg",
  25110. extra: 2347 / 2231,
  25111. bottom: 113 / 2462
  25112. }
  25113. },
  25114. hammerspaceSize: {
  25115. height: math.unit(6.71 * 717, "feet"),
  25116. weight: math.unit(200, "lb"),
  25117. capacity: math.unit(1000000, "people"),
  25118. name: "Hammerspace Size",
  25119. image: {
  25120. source: "./media/characters/gliss/front.svg",
  25121. extra: 2347 / 2231,
  25122. bottom: 113 / 2462
  25123. }
  25124. },
  25125. },
  25126. [
  25127. {
  25128. name: "Normal",
  25129. height: math.unit(6.71, "feet"),
  25130. default: true
  25131. },
  25132. ]
  25133. ))
  25134. characterMakers.push(() => makeCharacter(
  25135. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25136. {
  25137. side: {
  25138. height: math.unit(1.44, "m"),
  25139. weight: math.unit(80, "kg"),
  25140. name: "Side",
  25141. image: {
  25142. source: "./media/characters/dune-anderson/side.svg",
  25143. bottom: 49 / 1426
  25144. }
  25145. },
  25146. },
  25147. [
  25148. {
  25149. name: "Wolf-sized",
  25150. height: math.unit(1.44, "meters")
  25151. },
  25152. {
  25153. name: "Normal",
  25154. height: math.unit(5.05, "meters"),
  25155. default: true
  25156. },
  25157. {
  25158. name: "Big",
  25159. height: math.unit(14.4, "meters")
  25160. },
  25161. {
  25162. name: "Huge",
  25163. height: math.unit(144, "meters")
  25164. },
  25165. ]
  25166. ))
  25167. characterMakers.push(() => makeCharacter(
  25168. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25169. {
  25170. front: {
  25171. height: math.unit(7, "feet"),
  25172. weight: math.unit(425, "lb"),
  25173. name: "Front",
  25174. image: {
  25175. source: "./media/characters/hind/front.svg",
  25176. extra: 2091 / 1860,
  25177. bottom: 129 / 2220
  25178. }
  25179. },
  25180. back: {
  25181. height: math.unit(7, "feet"),
  25182. weight: math.unit(425, "lb"),
  25183. name: "Back",
  25184. image: {
  25185. source: "./media/characters/hind/back.svg",
  25186. extra: 2091 / 1860,
  25187. bottom: 24.6 / 2309
  25188. }
  25189. },
  25190. tail: {
  25191. height: math.unit(2.8, "feet"),
  25192. name: "Tail",
  25193. image: {
  25194. source: "./media/characters/hind/tail.svg"
  25195. }
  25196. },
  25197. head: {
  25198. height: math.unit(2.55, "feet"),
  25199. name: "Head",
  25200. image: {
  25201. source: "./media/characters/hind/head.svg"
  25202. }
  25203. },
  25204. },
  25205. [
  25206. {
  25207. name: "XS",
  25208. height: math.unit(0.7, "feet")
  25209. },
  25210. {
  25211. name: "Normal",
  25212. height: math.unit(7, "feet"),
  25213. default: true
  25214. },
  25215. {
  25216. name: "XL",
  25217. height: math.unit(70, "feet")
  25218. },
  25219. ]
  25220. ))
  25221. characterMakers.push(() => makeCharacter(
  25222. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25223. {
  25224. front: {
  25225. height: math.unit(2.1, "meters"),
  25226. weight: math.unit(150, "lb"),
  25227. name: "Front",
  25228. image: {
  25229. source: "./media/characters/tharquench-sizestealer/front.svg",
  25230. extra: 1605/1470,
  25231. bottom: 36/1641
  25232. }
  25233. },
  25234. frontAlt: {
  25235. height: math.unit(2.1, "meters"),
  25236. weight: math.unit(150, "lb"),
  25237. name: "Front (Alt)",
  25238. image: {
  25239. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25240. extra: 2318 / 2063,
  25241. bottom: 93.4 / 2410
  25242. }
  25243. },
  25244. },
  25245. [
  25246. {
  25247. name: "Nano",
  25248. height: math.unit(1, "mm")
  25249. },
  25250. {
  25251. name: "Micro",
  25252. height: math.unit(1, "cm")
  25253. },
  25254. {
  25255. name: "Normal",
  25256. height: math.unit(2.1, "meters"),
  25257. default: true
  25258. },
  25259. ]
  25260. ))
  25261. characterMakers.push(() => makeCharacter(
  25262. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25263. {
  25264. front: {
  25265. height: math.unit(7 + 5 / 12, "feet"),
  25266. weight: math.unit(357, "lb"),
  25267. name: "Front",
  25268. image: {
  25269. source: "./media/characters/solex-draconov/front.svg",
  25270. extra: 1993 / 1865,
  25271. bottom: 117 / 2111
  25272. }
  25273. },
  25274. },
  25275. [
  25276. {
  25277. name: "Natural Height",
  25278. height: math.unit(7 + 5 / 12, "feet"),
  25279. default: true
  25280. },
  25281. {
  25282. name: "Macro",
  25283. height: math.unit(350, "feet")
  25284. },
  25285. {
  25286. name: "Macro+",
  25287. height: math.unit(1000, "feet")
  25288. },
  25289. {
  25290. name: "Megamacro",
  25291. height: math.unit(20, "km")
  25292. },
  25293. {
  25294. name: "Megamacro+",
  25295. height: math.unit(1000, "km")
  25296. },
  25297. {
  25298. name: "Gigamacro",
  25299. height: math.unit(2.5, "Gm")
  25300. },
  25301. {
  25302. name: "Teramacro",
  25303. height: math.unit(15, "Tm")
  25304. },
  25305. {
  25306. name: "Galactic",
  25307. height: math.unit(30, "Zm")
  25308. },
  25309. {
  25310. name: "Universal",
  25311. height: math.unit(21000, "Ym")
  25312. },
  25313. {
  25314. name: "Omniversal",
  25315. height: math.unit(9.861e50, "Ym")
  25316. },
  25317. {
  25318. name: "Existential",
  25319. height: math.unit(1e300, "meters")
  25320. },
  25321. ]
  25322. ))
  25323. characterMakers.push(() => makeCharacter(
  25324. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25325. {
  25326. side: {
  25327. height: math.unit(25, "feet"),
  25328. weight: math.unit(90000, "lb"),
  25329. name: "Side",
  25330. image: {
  25331. source: "./media/characters/mandarax/side.svg",
  25332. extra: 614 / 332,
  25333. bottom: 55 / 630
  25334. }
  25335. },
  25336. head: {
  25337. height: math.unit(11.4, "feet"),
  25338. name: "Head",
  25339. image: {
  25340. source: "./media/characters/mandarax/head.svg"
  25341. }
  25342. },
  25343. belly: {
  25344. height: math.unit(33, "feet"),
  25345. name: "Belly",
  25346. capacity: math.unit(500, "people"),
  25347. image: {
  25348. source: "./media/characters/mandarax/belly.svg"
  25349. }
  25350. },
  25351. dick: {
  25352. height: math.unit(8.46, "feet"),
  25353. name: "Dick",
  25354. image: {
  25355. source: "./media/characters/mandarax/dick.svg"
  25356. }
  25357. },
  25358. top: {
  25359. height: math.unit(28, "meters"),
  25360. name: "Top",
  25361. image: {
  25362. source: "./media/characters/mandarax/top.svg"
  25363. }
  25364. },
  25365. },
  25366. [
  25367. {
  25368. name: "Normal",
  25369. height: math.unit(25, "feet"),
  25370. default: true
  25371. },
  25372. ]
  25373. ))
  25374. characterMakers.push(() => makeCharacter(
  25375. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25376. {
  25377. front: {
  25378. height: math.unit(5, "feet"),
  25379. weight: math.unit(90, "lb"),
  25380. name: "Front",
  25381. image: {
  25382. source: "./media/characters/pixil/front.svg",
  25383. extra: 2000 / 1618,
  25384. bottom: 12.3 / 2011
  25385. }
  25386. },
  25387. },
  25388. [
  25389. {
  25390. name: "Normal",
  25391. height: math.unit(5, "feet"),
  25392. default: true
  25393. },
  25394. {
  25395. name: "Megamacro",
  25396. height: math.unit(10, "miles"),
  25397. },
  25398. ]
  25399. ))
  25400. characterMakers.push(() => makeCharacter(
  25401. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25402. {
  25403. front: {
  25404. height: math.unit(7 + 2 / 12, "feet"),
  25405. weight: math.unit(200, "lb"),
  25406. name: "Front",
  25407. image: {
  25408. source: "./media/characters/angel/front.svg",
  25409. extra: 1830 / 1737,
  25410. bottom: 22.6 / 1854,
  25411. }
  25412. },
  25413. },
  25414. [
  25415. {
  25416. name: "Normal",
  25417. height: math.unit(7 + 2 / 12, "feet"),
  25418. default: true
  25419. },
  25420. {
  25421. name: "Macro",
  25422. height: math.unit(1000, "feet")
  25423. },
  25424. {
  25425. name: "Megamacro",
  25426. height: math.unit(2, "miles")
  25427. },
  25428. {
  25429. name: "Gigamacro",
  25430. height: math.unit(20, "earths")
  25431. },
  25432. ]
  25433. ))
  25434. characterMakers.push(() => makeCharacter(
  25435. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25436. {
  25437. front: {
  25438. height: math.unit(5, "feet"),
  25439. weight: math.unit(180, "lb"),
  25440. name: "Front",
  25441. image: {
  25442. source: "./media/characters/mekana/front.svg",
  25443. extra: 1671 / 1605,
  25444. bottom: 3.5 / 1691
  25445. }
  25446. },
  25447. side: {
  25448. height: math.unit(5, "feet"),
  25449. weight: math.unit(180, "lb"),
  25450. name: "Side",
  25451. image: {
  25452. source: "./media/characters/mekana/side.svg",
  25453. extra: 1671 / 1605,
  25454. bottom: 3.5 / 1691
  25455. }
  25456. },
  25457. back: {
  25458. height: math.unit(5, "feet"),
  25459. weight: math.unit(180, "lb"),
  25460. name: "Back",
  25461. image: {
  25462. source: "./media/characters/mekana/back.svg",
  25463. extra: 1671 / 1605,
  25464. bottom: 3.5 / 1691
  25465. }
  25466. },
  25467. },
  25468. [
  25469. {
  25470. name: "Normal",
  25471. height: math.unit(5, "feet"),
  25472. default: true
  25473. },
  25474. ]
  25475. ))
  25476. characterMakers.push(() => makeCharacter(
  25477. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25478. {
  25479. front: {
  25480. height: math.unit(4 + 6 / 12, "feet"),
  25481. weight: math.unit(80, "lb"),
  25482. name: "Front",
  25483. image: {
  25484. source: "./media/characters/pixie/front.svg",
  25485. extra: 1924 / 1825,
  25486. bottom: 22.4 / 1946
  25487. }
  25488. },
  25489. },
  25490. [
  25491. {
  25492. name: "Normal",
  25493. height: math.unit(4 + 6 / 12, "feet"),
  25494. default: true
  25495. },
  25496. {
  25497. name: "Macro",
  25498. height: math.unit(40, "feet")
  25499. },
  25500. ]
  25501. ))
  25502. characterMakers.push(() => makeCharacter(
  25503. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25504. {
  25505. front: {
  25506. height: math.unit(2.1, "meters"),
  25507. weight: math.unit(200, "lb"),
  25508. name: "Front",
  25509. image: {
  25510. source: "./media/characters/the-lascivious/front.svg",
  25511. extra: 1 / 0.893,
  25512. bottom: 3.5 / 573.7
  25513. }
  25514. },
  25515. },
  25516. [
  25517. {
  25518. name: "Human Scale",
  25519. height: math.unit(2.1, "meters")
  25520. },
  25521. {
  25522. name: "Wolxi Scale",
  25523. height: math.unit(46.2, "m"),
  25524. default: true
  25525. },
  25526. {
  25527. name: "Boinker of Buildings",
  25528. height: math.unit(10, "km")
  25529. },
  25530. {
  25531. name: "Shagger of Skyscrapers",
  25532. height: math.unit(40, "km")
  25533. },
  25534. {
  25535. name: "Banger of Boroughs",
  25536. height: math.unit(4000, "km")
  25537. },
  25538. {
  25539. name: "Screwer of States",
  25540. height: math.unit(100000, "km")
  25541. },
  25542. {
  25543. name: "Pounder of Planets",
  25544. height: math.unit(2000000, "km")
  25545. },
  25546. ]
  25547. ))
  25548. characterMakers.push(() => makeCharacter(
  25549. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25550. {
  25551. front: {
  25552. height: math.unit(6, "feet"),
  25553. weight: math.unit(150, "lb"),
  25554. name: "Front",
  25555. image: {
  25556. source: "./media/characters/aj/front.svg",
  25557. extra: 2039 / 1562,
  25558. bottom: 40 / 2079
  25559. }
  25560. },
  25561. },
  25562. [
  25563. {
  25564. name: "Normal",
  25565. height: math.unit(11 + 6 / 12, "feet"),
  25566. default: true
  25567. },
  25568. {
  25569. name: "Megamacro",
  25570. height: math.unit(60, "megameters")
  25571. },
  25572. ]
  25573. ))
  25574. characterMakers.push(() => makeCharacter(
  25575. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25576. {
  25577. side: {
  25578. height: math.unit(31 + 8 / 12, "feet"),
  25579. weight: math.unit(75000, "kg"),
  25580. name: "Side",
  25581. image: {
  25582. source: "./media/characters/koros/side.svg",
  25583. extra: 1442 / 1297,
  25584. bottom: 122.7 / 1562
  25585. }
  25586. },
  25587. dicksKingsCrown: {
  25588. height: math.unit(6, "feet"),
  25589. name: "Dicks (King's Crown)",
  25590. image: {
  25591. source: "./media/characters/koros/dicks-kings-crown.svg"
  25592. }
  25593. },
  25594. dicksTailSet: {
  25595. height: math.unit(3, "feet"),
  25596. name: "Dicks (Tail Set)",
  25597. image: {
  25598. source: "./media/characters/koros/dicks-tail-set.svg"
  25599. }
  25600. },
  25601. dickCumming: {
  25602. height: math.unit(7.98, "feet"),
  25603. name: "Dick (Cumming)",
  25604. image: {
  25605. source: "./media/characters/koros/dick-cumming.svg"
  25606. }
  25607. },
  25608. dicksBack: {
  25609. height: math.unit(5.9, "feet"),
  25610. name: "Dicks (Back)",
  25611. image: {
  25612. source: "./media/characters/koros/dicks-back.svg"
  25613. }
  25614. },
  25615. dicksFront: {
  25616. height: math.unit(3.72, "feet"),
  25617. name: "Dicks (Front)",
  25618. image: {
  25619. source: "./media/characters/koros/dicks-front.svg"
  25620. }
  25621. },
  25622. dicksPeeking: {
  25623. height: math.unit(3.0, "feet"),
  25624. name: "Dicks (Peeking)",
  25625. image: {
  25626. source: "./media/characters/koros/dicks-peeking.svg"
  25627. }
  25628. },
  25629. eye: {
  25630. height: math.unit(1.7, "feet"),
  25631. name: "Eye",
  25632. image: {
  25633. source: "./media/characters/koros/eye.svg"
  25634. }
  25635. },
  25636. headFront: {
  25637. height: math.unit(11.69, "feet"),
  25638. name: "Head (Front)",
  25639. image: {
  25640. source: "./media/characters/koros/head-front.svg"
  25641. }
  25642. },
  25643. headSide: {
  25644. height: math.unit(14, "feet"),
  25645. name: "Head (Side)",
  25646. image: {
  25647. source: "./media/characters/koros/head-side.svg"
  25648. }
  25649. },
  25650. leg: {
  25651. height: math.unit(17, "feet"),
  25652. name: "Leg",
  25653. image: {
  25654. source: "./media/characters/koros/leg.svg"
  25655. }
  25656. },
  25657. mawSide: {
  25658. height: math.unit(12.8, "feet"),
  25659. name: "Maw (Side)",
  25660. image: {
  25661. source: "./media/characters/koros/maw-side.svg"
  25662. }
  25663. },
  25664. mawSpitting: {
  25665. height: math.unit(17, "feet"),
  25666. name: "Maw (Spitting)",
  25667. image: {
  25668. source: "./media/characters/koros/maw-spitting.svg"
  25669. }
  25670. },
  25671. slit: {
  25672. height: math.unit(2.8, "feet"),
  25673. name: "Slit",
  25674. image: {
  25675. source: "./media/characters/koros/slit.svg"
  25676. }
  25677. },
  25678. stomach: {
  25679. height: math.unit(6.8, "feet"),
  25680. capacity: math.unit(20, "people"),
  25681. name: "Stomach",
  25682. image: {
  25683. source: "./media/characters/koros/stomach.svg"
  25684. }
  25685. },
  25686. wingspanBottom: {
  25687. height: math.unit(114, "feet"),
  25688. name: "Wingspan (Bottom)",
  25689. image: {
  25690. source: "./media/characters/koros/wingspan-bottom.svg"
  25691. }
  25692. },
  25693. wingspanTop: {
  25694. height: math.unit(104, "feet"),
  25695. name: "Wingspan (Top)",
  25696. image: {
  25697. source: "./media/characters/koros/wingspan-top.svg"
  25698. }
  25699. },
  25700. },
  25701. [
  25702. {
  25703. name: "Normal",
  25704. height: math.unit(31 + 8 / 12, "feet"),
  25705. default: true
  25706. },
  25707. ]
  25708. ))
  25709. characterMakers.push(() => makeCharacter(
  25710. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25711. {
  25712. front: {
  25713. height: math.unit(18 + 5 / 12, "feet"),
  25714. weight: math.unit(3750, "kg"),
  25715. name: "Front",
  25716. image: {
  25717. source: "./media/characters/vexx/front.svg",
  25718. extra: 426 / 396,
  25719. bottom: 31.5 / 458
  25720. }
  25721. },
  25722. maw: {
  25723. height: math.unit(6, "feet"),
  25724. name: "Maw",
  25725. image: {
  25726. source: "./media/characters/vexx/maw.svg"
  25727. }
  25728. },
  25729. },
  25730. [
  25731. {
  25732. name: "Normal",
  25733. height: math.unit(18 + 5 / 12, "feet"),
  25734. default: true
  25735. },
  25736. ]
  25737. ))
  25738. characterMakers.push(() => makeCharacter(
  25739. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25740. {
  25741. front: {
  25742. height: math.unit(17 + 6 / 12, "feet"),
  25743. weight: math.unit(150, "lb"),
  25744. name: "Front",
  25745. image: {
  25746. source: "./media/characters/baadra/front.svg",
  25747. extra: 3137 / 2890,
  25748. bottom: 168.4 / 3305
  25749. }
  25750. },
  25751. back: {
  25752. height: math.unit(17 + 6 / 12, "feet"),
  25753. weight: math.unit(150, "lb"),
  25754. name: "Back",
  25755. image: {
  25756. source: "./media/characters/baadra/back.svg",
  25757. extra: 3142 / 2890,
  25758. bottom: 220 / 3371
  25759. }
  25760. },
  25761. head: {
  25762. height: math.unit(5.45, "feet"),
  25763. name: "Head",
  25764. image: {
  25765. source: "./media/characters/baadra/head.svg"
  25766. }
  25767. },
  25768. headAngry: {
  25769. height: math.unit(4.95, "feet"),
  25770. name: "Head (Angry)",
  25771. image: {
  25772. source: "./media/characters/baadra/head-angry.svg"
  25773. }
  25774. },
  25775. headOpen: {
  25776. height: math.unit(6, "feet"),
  25777. name: "Head (Open)",
  25778. image: {
  25779. source: "./media/characters/baadra/head-open.svg"
  25780. }
  25781. },
  25782. },
  25783. [
  25784. {
  25785. name: "Normal",
  25786. height: math.unit(17 + 6 / 12, "feet"),
  25787. default: true
  25788. },
  25789. ]
  25790. ))
  25791. characterMakers.push(() => makeCharacter(
  25792. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25793. {
  25794. front: {
  25795. height: math.unit(7 + 3 / 12, "feet"),
  25796. weight: math.unit(180, "lb"),
  25797. name: "Front",
  25798. image: {
  25799. source: "./media/characters/juri/front.svg",
  25800. extra: 1401 / 1237,
  25801. bottom: 18.5 / 1418
  25802. }
  25803. },
  25804. side: {
  25805. height: math.unit(7 + 3 / 12, "feet"),
  25806. weight: math.unit(180, "lb"),
  25807. name: "Side",
  25808. image: {
  25809. source: "./media/characters/juri/side.svg",
  25810. extra: 1424 / 1242,
  25811. bottom: 18.5 / 1447
  25812. }
  25813. },
  25814. sitting: {
  25815. height: math.unit(6, "feet"),
  25816. weight: math.unit(180, "lb"),
  25817. name: "Sitting",
  25818. image: {
  25819. source: "./media/characters/juri/sitting.svg",
  25820. extra: 1270 / 1143,
  25821. bottom: 100 / 1343
  25822. }
  25823. },
  25824. back: {
  25825. height: math.unit(7 + 3 / 12, "feet"),
  25826. weight: math.unit(180, "lb"),
  25827. name: "Back",
  25828. image: {
  25829. source: "./media/characters/juri/back.svg",
  25830. extra: 1377 / 1240,
  25831. bottom: 23.7 / 1405
  25832. }
  25833. },
  25834. maw: {
  25835. height: math.unit(2.8, "feet"),
  25836. name: "Maw",
  25837. image: {
  25838. source: "./media/characters/juri/maw.svg"
  25839. }
  25840. },
  25841. stomach: {
  25842. height: math.unit(0.89, "feet"),
  25843. capacity: math.unit(4, "liters"),
  25844. name: "Stomach",
  25845. image: {
  25846. source: "./media/characters/juri/stomach.svg"
  25847. }
  25848. },
  25849. },
  25850. [
  25851. {
  25852. name: "Normal",
  25853. height: math.unit(7 + 3 / 12, "feet"),
  25854. default: true
  25855. },
  25856. ]
  25857. ))
  25858. characterMakers.push(() => makeCharacter(
  25859. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25860. {
  25861. fox: {
  25862. height: math.unit(5 + 6 / 12, "feet"),
  25863. weight: math.unit(140, "lb"),
  25864. name: "Fox",
  25865. image: {
  25866. source: "./media/characters/maxene-sita/fox.svg",
  25867. extra: 146 / 138,
  25868. bottom: 2.1 / 148.19
  25869. }
  25870. },
  25871. foxLaying: {
  25872. height: math.unit(1.70, "feet"),
  25873. weight: math.unit(140, "lb"),
  25874. name: "Fox (Laying)",
  25875. image: {
  25876. source: "./media/characters/maxene-sita/fox-laying.svg",
  25877. extra: 910 / 572,
  25878. bottom: 71 / 981
  25879. }
  25880. },
  25881. kitsune: {
  25882. height: math.unit(10, "feet"),
  25883. weight: math.unit(800, "lb"),
  25884. name: "Kitsune",
  25885. image: {
  25886. source: "./media/characters/maxene-sita/kitsune.svg",
  25887. extra: 185 / 176,
  25888. bottom: 4.7 / 189.9
  25889. }
  25890. },
  25891. hellhound: {
  25892. height: math.unit(10, "feet"),
  25893. weight: math.unit(700, "lb"),
  25894. name: "Hellhound",
  25895. image: {
  25896. source: "./media/characters/maxene-sita/hellhound.svg",
  25897. extra: 1600 / 1545,
  25898. bottom: 81 / 1681
  25899. }
  25900. },
  25901. },
  25902. [
  25903. {
  25904. name: "Normal",
  25905. height: math.unit(5 + 6 / 12, "feet"),
  25906. default: true
  25907. },
  25908. ]
  25909. ))
  25910. characterMakers.push(() => makeCharacter(
  25911. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25912. {
  25913. front: {
  25914. height: math.unit(3 + 4 / 12, "feet"),
  25915. weight: math.unit(70, "lb"),
  25916. name: "Front",
  25917. image: {
  25918. source: "./media/characters/maia/front.svg",
  25919. extra: 227 / 219.5,
  25920. bottom: 40 / 267
  25921. }
  25922. },
  25923. back: {
  25924. height: math.unit(3 + 4 / 12, "feet"),
  25925. weight: math.unit(70, "lb"),
  25926. name: "Back",
  25927. image: {
  25928. source: "./media/characters/maia/back.svg",
  25929. extra: 237 / 225
  25930. }
  25931. },
  25932. },
  25933. [
  25934. {
  25935. name: "Normal",
  25936. height: math.unit(3 + 4 / 12, "feet"),
  25937. default: true
  25938. },
  25939. ]
  25940. ))
  25941. characterMakers.push(() => makeCharacter(
  25942. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25943. {
  25944. front: {
  25945. height: math.unit(5 + 10 / 12, "feet"),
  25946. weight: math.unit(197, "lb"),
  25947. name: "Front",
  25948. image: {
  25949. source: "./media/characters/jabaro/front.svg",
  25950. extra: 225 / 216,
  25951. bottom: 5.06 / 230
  25952. }
  25953. },
  25954. back: {
  25955. height: math.unit(5 + 10 / 12, "feet"),
  25956. weight: math.unit(197, "lb"),
  25957. name: "Back",
  25958. image: {
  25959. source: "./media/characters/jabaro/back.svg",
  25960. extra: 225 / 219,
  25961. bottom: 1.9 / 227
  25962. }
  25963. },
  25964. },
  25965. [
  25966. {
  25967. name: "Normal",
  25968. height: math.unit(5 + 10 / 12, "feet"),
  25969. default: true
  25970. },
  25971. ]
  25972. ))
  25973. characterMakers.push(() => makeCharacter(
  25974. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25975. {
  25976. front: {
  25977. height: math.unit(5 + 8 / 12, "feet"),
  25978. weight: math.unit(139, "lb"),
  25979. name: "Front",
  25980. image: {
  25981. source: "./media/characters/risa/front.svg",
  25982. extra: 270 / 260,
  25983. bottom: 11.2 / 282
  25984. }
  25985. },
  25986. back: {
  25987. height: math.unit(5 + 8 / 12, "feet"),
  25988. weight: math.unit(139, "lb"),
  25989. name: "Back",
  25990. image: {
  25991. source: "./media/characters/risa/back.svg",
  25992. extra: 264 / 255,
  25993. bottom: 4 / 268
  25994. }
  25995. },
  25996. },
  25997. [
  25998. {
  25999. name: "Normal",
  26000. height: math.unit(5 + 8 / 12, "feet"),
  26001. default: true
  26002. },
  26003. ]
  26004. ))
  26005. characterMakers.push(() => makeCharacter(
  26006. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26007. {
  26008. front: {
  26009. height: math.unit(2 + 11 / 12, "feet"),
  26010. weight: math.unit(30, "lb"),
  26011. name: "Front",
  26012. image: {
  26013. source: "./media/characters/weatley/front.svg",
  26014. bottom: 10.7 / 414,
  26015. extra: 403.5 / 362
  26016. }
  26017. },
  26018. back: {
  26019. height: math.unit(2 + 11 / 12, "feet"),
  26020. weight: math.unit(30, "lb"),
  26021. name: "Back",
  26022. image: {
  26023. source: "./media/characters/weatley/back.svg",
  26024. bottom: 10.7 / 414,
  26025. extra: 403.5 / 362
  26026. }
  26027. },
  26028. },
  26029. [
  26030. {
  26031. name: "Normal",
  26032. height: math.unit(2 + 11 / 12, "feet"),
  26033. default: true
  26034. },
  26035. ]
  26036. ))
  26037. characterMakers.push(() => makeCharacter(
  26038. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26039. {
  26040. front: {
  26041. height: math.unit(5 + 2 / 12, "feet"),
  26042. weight: math.unit(50, "kg"),
  26043. name: "Front",
  26044. image: {
  26045. source: "./media/characters/mercury-crescent/front.svg",
  26046. extra: 1088 / 1033,
  26047. bottom: 18.9 / 1109
  26048. }
  26049. },
  26050. },
  26051. [
  26052. {
  26053. name: "Normal",
  26054. height: math.unit(5 + 2 / 12, "feet"),
  26055. default: true
  26056. },
  26057. ]
  26058. ))
  26059. characterMakers.push(() => makeCharacter(
  26060. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26061. {
  26062. front: {
  26063. height: math.unit(2, "feet"),
  26064. weight: math.unit(15, "kg"),
  26065. name: "Front",
  26066. image: {
  26067. source: "./media/characters/diamond-jones/front.svg",
  26068. extra: 727/723,
  26069. bottom: 46/773
  26070. }
  26071. },
  26072. },
  26073. [
  26074. {
  26075. name: "Normal",
  26076. height: math.unit(2, "feet"),
  26077. default: true
  26078. },
  26079. ]
  26080. ))
  26081. characterMakers.push(() => makeCharacter(
  26082. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26083. {
  26084. front: {
  26085. height: math.unit(3, "feet"),
  26086. weight: math.unit(30, "kg"),
  26087. name: "Front",
  26088. image: {
  26089. source: "./media/characters/sweet-bit/front.svg",
  26090. extra: 675 / 567,
  26091. bottom: 27.7 / 703
  26092. }
  26093. },
  26094. },
  26095. [
  26096. {
  26097. name: "Normal",
  26098. height: math.unit(3, "feet"),
  26099. default: true
  26100. },
  26101. ]
  26102. ))
  26103. characterMakers.push(() => makeCharacter(
  26104. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26105. {
  26106. side: {
  26107. height: math.unit(9.178, "feet"),
  26108. weight: math.unit(500, "lb"),
  26109. name: "Side",
  26110. image: {
  26111. source: "./media/characters/umbrazen/side.svg",
  26112. extra: 1730 / 1473,
  26113. bottom: 34.6 / 1765
  26114. }
  26115. },
  26116. },
  26117. [
  26118. {
  26119. name: "Normal",
  26120. height: math.unit(9.178, "feet"),
  26121. default: true
  26122. },
  26123. ]
  26124. ))
  26125. characterMakers.push(() => makeCharacter(
  26126. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26127. {
  26128. front: {
  26129. height: math.unit(10, "feet"),
  26130. weight: math.unit(750, "lb"),
  26131. name: "Front",
  26132. image: {
  26133. source: "./media/characters/arlist/front.svg",
  26134. extra: 961 / 778,
  26135. bottom: 6.2 / 986
  26136. }
  26137. },
  26138. },
  26139. [
  26140. {
  26141. name: "Normal",
  26142. height: math.unit(10, "feet"),
  26143. default: true
  26144. },
  26145. ]
  26146. ))
  26147. characterMakers.push(() => makeCharacter(
  26148. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26149. {
  26150. front: {
  26151. height: math.unit(5 + 1 / 12, "feet"),
  26152. weight: math.unit(110, "lb"),
  26153. name: "Front",
  26154. image: {
  26155. source: "./media/characters/aradel/front.svg",
  26156. extra: 324 / 303,
  26157. bottom: 3.6 / 329.4
  26158. }
  26159. },
  26160. },
  26161. [
  26162. {
  26163. name: "Normal",
  26164. height: math.unit(5 + 1 / 12, "feet"),
  26165. default: true
  26166. },
  26167. ]
  26168. ))
  26169. characterMakers.push(() => makeCharacter(
  26170. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26171. {
  26172. front: {
  26173. height: math.unit(3 + 8 / 12, "feet"),
  26174. weight: math.unit(50, "lb"),
  26175. name: "Front",
  26176. image: {
  26177. source: "./media/characters/serryn/front.svg",
  26178. extra: 1792 / 1656,
  26179. bottom: 43.5 / 1840
  26180. }
  26181. },
  26182. },
  26183. [
  26184. {
  26185. name: "Normal",
  26186. height: math.unit(3 + 8 / 12, "feet"),
  26187. default: true
  26188. },
  26189. ]
  26190. ))
  26191. characterMakers.push(() => makeCharacter(
  26192. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26193. {
  26194. front: {
  26195. height: math.unit(7 + 10 / 12, "feet"),
  26196. weight: math.unit(255, "lb"),
  26197. name: "Front",
  26198. image: {
  26199. source: "./media/characters/xavier-thyme/front.svg",
  26200. extra: 3733 / 3642,
  26201. bottom: 131 / 3869
  26202. }
  26203. },
  26204. frontRaven: {
  26205. height: math.unit(7 + 10 / 12, "feet"),
  26206. weight: math.unit(255, "lb"),
  26207. name: "Front (Raven)",
  26208. image: {
  26209. source: "./media/characters/xavier-thyme/front-raven.svg",
  26210. extra: 4385 / 3642,
  26211. bottom: 131 / 4517
  26212. }
  26213. },
  26214. },
  26215. [
  26216. {
  26217. name: "Normal",
  26218. height: math.unit(7 + 10 / 12, "feet"),
  26219. default: true
  26220. },
  26221. ]
  26222. ))
  26223. characterMakers.push(() => makeCharacter(
  26224. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26225. {
  26226. front: {
  26227. height: math.unit(1.6, "m"),
  26228. weight: math.unit(50, "kg"),
  26229. name: "Front",
  26230. image: {
  26231. source: "./media/characters/kiki/front.svg",
  26232. extra: 4682 / 3610,
  26233. bottom: 115 / 4777
  26234. }
  26235. },
  26236. },
  26237. [
  26238. {
  26239. name: "Normal",
  26240. height: math.unit(1.6, "meters"),
  26241. default: true
  26242. },
  26243. ]
  26244. ))
  26245. characterMakers.push(() => makeCharacter(
  26246. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26247. {
  26248. front: {
  26249. height: math.unit(50, "m"),
  26250. weight: math.unit(500, "tonnes"),
  26251. name: "Front",
  26252. image: {
  26253. source: "./media/characters/ryoko/front.svg",
  26254. extra: 4632 / 3926,
  26255. bottom: 193 / 4823
  26256. }
  26257. },
  26258. },
  26259. [
  26260. {
  26261. name: "Normal",
  26262. height: math.unit(50, "meters"),
  26263. default: true
  26264. },
  26265. ]
  26266. ))
  26267. characterMakers.push(() => makeCharacter(
  26268. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26269. {
  26270. front: {
  26271. height: math.unit(30, "m"),
  26272. weight: math.unit(22, "tonnes"),
  26273. name: "Front",
  26274. image: {
  26275. source: "./media/characters/elio/front.svg",
  26276. extra: 4582 / 3720,
  26277. bottom: 236 / 4828
  26278. }
  26279. },
  26280. },
  26281. [
  26282. {
  26283. name: "Normal",
  26284. height: math.unit(30, "meters"),
  26285. default: true
  26286. },
  26287. ]
  26288. ))
  26289. characterMakers.push(() => makeCharacter(
  26290. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26291. {
  26292. front: {
  26293. height: math.unit(6 + 3 / 12, "feet"),
  26294. weight: math.unit(120, "lb"),
  26295. name: "Front",
  26296. image: {
  26297. source: "./media/characters/azura/front.svg",
  26298. extra: 1149 / 1135,
  26299. bottom: 45 / 1194
  26300. }
  26301. },
  26302. frontClothed: {
  26303. height: math.unit(6 + 3 / 12, "feet"),
  26304. weight: math.unit(120, "lb"),
  26305. name: "Front (Clothed)",
  26306. image: {
  26307. source: "./media/characters/azura/front-clothed.svg",
  26308. extra: 1149 / 1135,
  26309. bottom: 45 / 1194
  26310. }
  26311. },
  26312. },
  26313. [
  26314. {
  26315. name: "Normal",
  26316. height: math.unit(6 + 3 / 12, "feet"),
  26317. default: true
  26318. },
  26319. {
  26320. name: "Macro",
  26321. height: math.unit(20 + 6 / 12, "feet")
  26322. },
  26323. {
  26324. name: "Megamacro",
  26325. height: math.unit(12, "miles")
  26326. },
  26327. {
  26328. name: "Gigamacro",
  26329. height: math.unit(10000, "miles")
  26330. },
  26331. {
  26332. name: "Teramacro",
  26333. height: math.unit(900000, "miles")
  26334. },
  26335. ]
  26336. ))
  26337. characterMakers.push(() => makeCharacter(
  26338. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26339. {
  26340. front: {
  26341. height: math.unit(12, "feet"),
  26342. weight: math.unit(1, "ton"),
  26343. capacity: math.unit(660000, "gallons"),
  26344. name: "Front",
  26345. image: {
  26346. source: "./media/characters/zeus/front.svg",
  26347. extra: 5005 / 4717,
  26348. bottom: 363 / 5388
  26349. }
  26350. },
  26351. },
  26352. [
  26353. {
  26354. name: "Normal",
  26355. height: math.unit(12, "feet")
  26356. },
  26357. {
  26358. name: "Preferred Size",
  26359. height: math.unit(0.5, "miles"),
  26360. default: true
  26361. },
  26362. {
  26363. name: "Giga Horse",
  26364. height: math.unit(300, "miles")
  26365. },
  26366. {
  26367. name: "Riding Planets",
  26368. height: math.unit(30, "megameters")
  26369. },
  26370. {
  26371. name: "Cosmic Giant",
  26372. height: math.unit(3, "zettameters")
  26373. },
  26374. {
  26375. name: "Breeding God",
  26376. height: math.unit(9.92e22, "yottameters")
  26377. },
  26378. ]
  26379. ))
  26380. characterMakers.push(() => makeCharacter(
  26381. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26382. {
  26383. side: {
  26384. height: math.unit(9, "feet"),
  26385. weight: math.unit(1500, "kg"),
  26386. name: "Side",
  26387. image: {
  26388. source: "./media/characters/fang/side.svg",
  26389. extra: 924 / 866,
  26390. bottom: 47.5 / 972.3
  26391. }
  26392. },
  26393. },
  26394. [
  26395. {
  26396. name: "Normal",
  26397. height: math.unit(9, "feet"),
  26398. default: true
  26399. },
  26400. {
  26401. name: "Macro",
  26402. height: math.unit(75 + 6 / 12, "feet")
  26403. },
  26404. {
  26405. name: "Teramacro",
  26406. height: math.unit(50000, "miles")
  26407. },
  26408. ]
  26409. ))
  26410. characterMakers.push(() => makeCharacter(
  26411. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26412. {
  26413. front: {
  26414. height: math.unit(10, "feet"),
  26415. weight: math.unit(2, "tons"),
  26416. name: "Front",
  26417. image: {
  26418. source: "./media/characters/rekhit/front.svg",
  26419. extra: 2796 / 2590,
  26420. bottom: 225 / 3022
  26421. }
  26422. },
  26423. },
  26424. [
  26425. {
  26426. name: "Normal",
  26427. height: math.unit(10, "feet"),
  26428. default: true
  26429. },
  26430. {
  26431. name: "Macro",
  26432. height: math.unit(500, "feet")
  26433. },
  26434. ]
  26435. ))
  26436. characterMakers.push(() => makeCharacter(
  26437. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26438. {
  26439. front: {
  26440. height: math.unit(7 + 6.451 / 12, "feet"),
  26441. weight: math.unit(310, "lb"),
  26442. name: "Front",
  26443. image: {
  26444. source: "./media/characters/dahlia-verrick/front.svg",
  26445. extra: 1488 / 1365,
  26446. bottom: 6.2 / 1495
  26447. }
  26448. },
  26449. back: {
  26450. height: math.unit(7 + 6.451 / 12, "feet"),
  26451. weight: math.unit(310, "lb"),
  26452. name: "Back",
  26453. image: {
  26454. source: "./media/characters/dahlia-verrick/back.svg",
  26455. extra: 1472 / 1351,
  26456. bottom: 5.28 / 1477
  26457. }
  26458. },
  26459. frontBusiness: {
  26460. height: math.unit(7 + 6.451 / 12, "feet"),
  26461. weight: math.unit(200, "lb"),
  26462. name: "Front (Business)",
  26463. image: {
  26464. source: "./media/characters/dahlia-verrick/front-business.svg",
  26465. extra: 1478 / 1381,
  26466. bottom: 5.5 / 1484
  26467. }
  26468. },
  26469. frontCasual: {
  26470. height: math.unit(7 + 6.451 / 12, "feet"),
  26471. weight: math.unit(200, "lb"),
  26472. name: "Front (Casual)",
  26473. image: {
  26474. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26475. extra: 1478 / 1381,
  26476. bottom: 5.5 / 1484
  26477. }
  26478. },
  26479. },
  26480. [
  26481. {
  26482. name: "Travel-Sized",
  26483. height: math.unit(7.45, "inches")
  26484. },
  26485. {
  26486. name: "Normal",
  26487. height: math.unit(7 + 6.451 / 12, "feet"),
  26488. default: true
  26489. },
  26490. {
  26491. name: "Hitting the Town",
  26492. height: math.unit(37 + 8 / 12, "feet")
  26493. },
  26494. {
  26495. name: "Stomp in the Suburbs",
  26496. height: math.unit(964 + 9.728 / 12, "feet")
  26497. },
  26498. {
  26499. name: "Sit on the City",
  26500. height: math.unit(61747 + 10.592 / 12, "feet")
  26501. },
  26502. {
  26503. name: "Glomp the Globe",
  26504. height: math.unit(252919327 + 4.832 / 12, "feet")
  26505. },
  26506. ]
  26507. ))
  26508. characterMakers.push(() => makeCharacter(
  26509. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26510. {
  26511. front: {
  26512. height: math.unit(6 + 4 / 12, "feet"),
  26513. weight: math.unit(320, "lb"),
  26514. name: "Front",
  26515. image: {
  26516. source: "./media/characters/balina-mahigan/front.svg",
  26517. extra: 447 / 428,
  26518. bottom: 18 / 466
  26519. }
  26520. },
  26521. back: {
  26522. height: math.unit(6 + 4 / 12, "feet"),
  26523. weight: math.unit(320, "lb"),
  26524. name: "Back",
  26525. image: {
  26526. source: "./media/characters/balina-mahigan/back.svg",
  26527. extra: 445 / 428,
  26528. bottom: 4.07 / 448
  26529. }
  26530. },
  26531. arm: {
  26532. height: math.unit(1.88, "feet"),
  26533. name: "Arm",
  26534. image: {
  26535. source: "./media/characters/balina-mahigan/arm.svg"
  26536. }
  26537. },
  26538. backPort: {
  26539. height: math.unit(0.685, "feet"),
  26540. name: "Back Port",
  26541. image: {
  26542. source: "./media/characters/balina-mahigan/back-port.svg"
  26543. }
  26544. },
  26545. hoofpaw: {
  26546. height: math.unit(1.41, "feet"),
  26547. name: "Hoofpaw",
  26548. image: {
  26549. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26550. }
  26551. },
  26552. leftHandBack: {
  26553. height: math.unit(0.938, "feet"),
  26554. name: "Left Hand (Back)",
  26555. image: {
  26556. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26557. }
  26558. },
  26559. leftHandFront: {
  26560. height: math.unit(0.938, "feet"),
  26561. name: "Left Hand (Front)",
  26562. image: {
  26563. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26564. }
  26565. },
  26566. rightHandBack: {
  26567. height: math.unit(0.95, "feet"),
  26568. name: "Right Hand (Back)",
  26569. image: {
  26570. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26571. }
  26572. },
  26573. rightHandFront: {
  26574. height: math.unit(0.95, "feet"),
  26575. name: "Right Hand (Front)",
  26576. image: {
  26577. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26578. }
  26579. },
  26580. },
  26581. [
  26582. {
  26583. name: "Normal",
  26584. height: math.unit(6 + 4 / 12, "feet"),
  26585. default: true
  26586. },
  26587. ]
  26588. ))
  26589. characterMakers.push(() => makeCharacter(
  26590. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26591. {
  26592. front: {
  26593. height: math.unit(6, "feet"),
  26594. weight: math.unit(320, "lb"),
  26595. name: "Front",
  26596. image: {
  26597. source: "./media/characters/balina-mejeri/front.svg",
  26598. extra: 517 / 488,
  26599. bottom: 44.2 / 561
  26600. }
  26601. },
  26602. },
  26603. [
  26604. {
  26605. name: "Normal",
  26606. height: math.unit(6 + 4 / 12, "feet")
  26607. },
  26608. {
  26609. name: "Business",
  26610. height: math.unit(155, "feet"),
  26611. default: true
  26612. },
  26613. ]
  26614. ))
  26615. characterMakers.push(() => makeCharacter(
  26616. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26617. {
  26618. kneeling: {
  26619. height: math.unit(6 + 4 / 12, "feet"),
  26620. weight: math.unit(300 * 20, "lb"),
  26621. name: "Kneeling",
  26622. image: {
  26623. source: "./media/characters/balbarian/kneeling.svg",
  26624. extra: 922 / 862,
  26625. bottom: 42.4 / 965
  26626. }
  26627. },
  26628. },
  26629. [
  26630. {
  26631. name: "Normal",
  26632. height: math.unit(6 + 4 / 12, "feet")
  26633. },
  26634. {
  26635. name: "Treasured",
  26636. height: math.unit(18 + 9 / 12, "feet"),
  26637. default: true
  26638. },
  26639. {
  26640. name: "Macro",
  26641. height: math.unit(900, "feet")
  26642. },
  26643. ]
  26644. ))
  26645. characterMakers.push(() => makeCharacter(
  26646. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26647. {
  26648. front: {
  26649. height: math.unit(6 + 4 / 12, "feet"),
  26650. weight: math.unit(325, "lb"),
  26651. name: "Front",
  26652. image: {
  26653. source: "./media/characters/balina-amarini/front.svg",
  26654. extra: 415 / 403,
  26655. bottom: 19 / 433.4
  26656. }
  26657. },
  26658. back: {
  26659. height: math.unit(6 + 4 / 12, "feet"),
  26660. weight: math.unit(325, "lb"),
  26661. name: "Back",
  26662. image: {
  26663. source: "./media/characters/balina-amarini/back.svg",
  26664. extra: 415 / 403,
  26665. bottom: 13.5 / 432
  26666. }
  26667. },
  26668. overdrive: {
  26669. height: math.unit(6 + 4 / 12, "feet"),
  26670. weight: math.unit(400, "lb"),
  26671. name: "Overdrive",
  26672. image: {
  26673. source: "./media/characters/balina-amarini/overdrive.svg",
  26674. extra: 269 / 259,
  26675. bottom: 12 / 282
  26676. }
  26677. },
  26678. },
  26679. [
  26680. {
  26681. name: "Boom",
  26682. height: math.unit(9 + 10 / 12, "feet"),
  26683. default: true
  26684. },
  26685. {
  26686. name: "Macro",
  26687. height: math.unit(280, "feet")
  26688. },
  26689. ]
  26690. ))
  26691. characterMakers.push(() => makeCharacter(
  26692. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26693. {
  26694. goddess: {
  26695. height: math.unit(600, "feet"),
  26696. weight: math.unit(2000000, "tons"),
  26697. name: "Goddess",
  26698. image: {
  26699. source: "./media/characters/lady-kubwa/goddess.svg",
  26700. extra: 1240.5 / 1223,
  26701. bottom: 22 / 1263
  26702. }
  26703. },
  26704. goddesser: {
  26705. height: math.unit(900, "feet"),
  26706. weight: math.unit(20000000, "lb"),
  26707. name: "Goddess-er",
  26708. image: {
  26709. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26710. extra: 899 / 888,
  26711. bottom: 12.6 / 912
  26712. }
  26713. },
  26714. },
  26715. [
  26716. {
  26717. name: "Macro",
  26718. height: math.unit(600, "feet"),
  26719. default: true
  26720. },
  26721. {
  26722. name: "Megamacro",
  26723. height: math.unit(250, "miles")
  26724. },
  26725. ]
  26726. ))
  26727. characterMakers.push(() => makeCharacter(
  26728. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26729. {
  26730. front: {
  26731. height: math.unit(7 + 7 / 12, "feet"),
  26732. weight: math.unit(250, "lb"),
  26733. name: "Front",
  26734. image: {
  26735. source: "./media/characters/tala-grovehorn/front.svg",
  26736. extra: 2636 / 2525,
  26737. bottom: 147 / 2781
  26738. }
  26739. },
  26740. back: {
  26741. height: math.unit(7 + 7 / 12, "feet"),
  26742. weight: math.unit(250, "lb"),
  26743. name: "Back",
  26744. image: {
  26745. source: "./media/characters/tala-grovehorn/back.svg",
  26746. extra: 2635 / 2539,
  26747. bottom: 100 / 2732.8
  26748. }
  26749. },
  26750. mouth: {
  26751. height: math.unit(1.15, "feet"),
  26752. name: "Mouth",
  26753. image: {
  26754. source: "./media/characters/tala-grovehorn/mouth.svg"
  26755. }
  26756. },
  26757. dick: {
  26758. height: math.unit(2.36, "feet"),
  26759. name: "Dick",
  26760. image: {
  26761. source: "./media/characters/tala-grovehorn/dick.svg"
  26762. }
  26763. },
  26764. slit: {
  26765. height: math.unit(0.61, "feet"),
  26766. name: "Slit",
  26767. image: {
  26768. source: "./media/characters/tala-grovehorn/slit.svg"
  26769. }
  26770. },
  26771. },
  26772. [
  26773. ]
  26774. ))
  26775. characterMakers.push(() => makeCharacter(
  26776. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26777. {
  26778. front: {
  26779. height: math.unit(7 + 7 / 12, "feet"),
  26780. weight: math.unit(225, "lb"),
  26781. name: "Front",
  26782. image: {
  26783. source: "./media/characters/epona/front.svg",
  26784. extra: 2445 / 2290,
  26785. bottom: 251 / 2696
  26786. }
  26787. },
  26788. back: {
  26789. height: math.unit(7 + 7 / 12, "feet"),
  26790. weight: math.unit(225, "lb"),
  26791. name: "Back",
  26792. image: {
  26793. source: "./media/characters/epona/back.svg",
  26794. extra: 2546 / 2408,
  26795. bottom: 44 / 2589
  26796. }
  26797. },
  26798. genitals: {
  26799. height: math.unit(1.5, "feet"),
  26800. name: "Genitals",
  26801. image: {
  26802. source: "./media/characters/epona/genitals.svg"
  26803. }
  26804. },
  26805. },
  26806. [
  26807. {
  26808. name: "Normal",
  26809. height: math.unit(7 + 7 / 12, "feet"),
  26810. default: true
  26811. },
  26812. ]
  26813. ))
  26814. characterMakers.push(() => makeCharacter(
  26815. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26816. {
  26817. front: {
  26818. height: math.unit(7, "feet"),
  26819. weight: math.unit(518, "lb"),
  26820. name: "Front",
  26821. image: {
  26822. source: "./media/characters/avia-bloodbourn/front.svg",
  26823. extra: 1466 / 1350,
  26824. bottom: 65 / 1527
  26825. }
  26826. },
  26827. },
  26828. [
  26829. ]
  26830. ))
  26831. characterMakers.push(() => makeCharacter(
  26832. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26833. {
  26834. front: {
  26835. height: math.unit(9.35, "feet"),
  26836. weight: math.unit(600, "lb"),
  26837. name: "Front",
  26838. image: {
  26839. source: "./media/characters/amera/front.svg",
  26840. extra: 891 / 818,
  26841. bottom: 30 / 922.7
  26842. }
  26843. },
  26844. back: {
  26845. height: math.unit(9.35, "feet"),
  26846. weight: math.unit(600, "lb"),
  26847. name: "Back",
  26848. image: {
  26849. source: "./media/characters/amera/back.svg",
  26850. extra: 876 / 824,
  26851. bottom: 6.8 / 884
  26852. }
  26853. },
  26854. dick: {
  26855. height: math.unit(2.14, "feet"),
  26856. name: "Dick",
  26857. image: {
  26858. source: "./media/characters/amera/dick.svg"
  26859. }
  26860. },
  26861. },
  26862. [
  26863. {
  26864. name: "Normal",
  26865. height: math.unit(9.35, "feet"),
  26866. default: true
  26867. },
  26868. ]
  26869. ))
  26870. characterMakers.push(() => makeCharacter(
  26871. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26872. {
  26873. kneeling: {
  26874. height: math.unit(3 + 4 / 12, "feet"),
  26875. weight: math.unit(90, "lb"),
  26876. name: "Kneeling",
  26877. image: {
  26878. source: "./media/characters/rosewen/kneeling.svg",
  26879. extra: 1835 / 1571,
  26880. bottom: 27.7 / 1862
  26881. }
  26882. },
  26883. },
  26884. [
  26885. {
  26886. name: "Normal",
  26887. height: math.unit(3 + 4 / 12, "feet"),
  26888. default: true
  26889. },
  26890. ]
  26891. ))
  26892. characterMakers.push(() => makeCharacter(
  26893. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26894. {
  26895. front: {
  26896. height: math.unit(5 + 10 / 12, "feet"),
  26897. weight: math.unit(200, "lb"),
  26898. name: "Front",
  26899. image: {
  26900. source: "./media/characters/sabah/front.svg",
  26901. extra: 849 / 763,
  26902. bottom: 33.9 / 881
  26903. }
  26904. },
  26905. },
  26906. [
  26907. {
  26908. name: "Normal",
  26909. height: math.unit(5 + 10 / 12, "feet"),
  26910. default: true
  26911. },
  26912. ]
  26913. ))
  26914. characterMakers.push(() => makeCharacter(
  26915. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26916. {
  26917. front: {
  26918. height: math.unit(3 + 5 / 12, "feet"),
  26919. weight: math.unit(40, "kg"),
  26920. name: "Front",
  26921. image: {
  26922. source: "./media/characters/purple-flame/front.svg",
  26923. extra: 1577 / 1412,
  26924. bottom: 97 / 1694
  26925. }
  26926. },
  26927. frontDressed: {
  26928. height: math.unit(3 + 5 / 12, "feet"),
  26929. weight: math.unit(40, "kg"),
  26930. name: "Front (Dressed)",
  26931. image: {
  26932. source: "./media/characters/purple-flame/front-dressed.svg",
  26933. extra: 1577 / 1412,
  26934. bottom: 97 / 1694
  26935. }
  26936. },
  26937. headphones: {
  26938. height: math.unit(0.85, "feet"),
  26939. name: "Headphones",
  26940. image: {
  26941. source: "./media/characters/purple-flame/headphones.svg"
  26942. }
  26943. },
  26944. },
  26945. [
  26946. {
  26947. name: "Really Small",
  26948. height: math.unit(5, "cm")
  26949. },
  26950. {
  26951. name: "Micro",
  26952. height: math.unit(1 + 5 / 12, "feet")
  26953. },
  26954. {
  26955. name: "Normal",
  26956. height: math.unit(3 + 5 / 12, "feet"),
  26957. default: true
  26958. },
  26959. {
  26960. name: "Minimacro",
  26961. height: math.unit(125, "feet")
  26962. },
  26963. {
  26964. name: "Macro",
  26965. height: math.unit(0.5, "miles")
  26966. },
  26967. {
  26968. name: "Megamacro",
  26969. height: math.unit(50, "miles")
  26970. },
  26971. {
  26972. name: "Gigantic",
  26973. height: math.unit(750, "miles")
  26974. },
  26975. {
  26976. name: "Planetary",
  26977. height: math.unit(15000, "miles")
  26978. },
  26979. ]
  26980. ))
  26981. characterMakers.push(() => makeCharacter(
  26982. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26983. {
  26984. front: {
  26985. height: math.unit(14, "feet"),
  26986. weight: math.unit(959, "lb"),
  26987. name: "Front",
  26988. image: {
  26989. source: "./media/characters/arsenal/front.svg",
  26990. extra: 2357 / 2157,
  26991. bottom: 93 / 2458
  26992. }
  26993. },
  26994. },
  26995. [
  26996. {
  26997. name: "Normal",
  26998. height: math.unit(14, "feet"),
  26999. default: true
  27000. },
  27001. ]
  27002. ))
  27003. characterMakers.push(() => makeCharacter(
  27004. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27005. {
  27006. front: {
  27007. height: math.unit(6, "feet"),
  27008. weight: math.unit(150, "lb"),
  27009. name: "Front",
  27010. image: {
  27011. source: "./media/characters/adira/front.svg",
  27012. extra: 1078 / 1029,
  27013. bottom: 87 / 1166
  27014. }
  27015. },
  27016. },
  27017. [
  27018. {
  27019. name: "Micro",
  27020. height: math.unit(4, "inches"),
  27021. default: true
  27022. },
  27023. {
  27024. name: "Macro",
  27025. height: math.unit(50, "feet")
  27026. },
  27027. ]
  27028. ))
  27029. characterMakers.push(() => makeCharacter(
  27030. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27031. {
  27032. front: {
  27033. height: math.unit(16, "feet"),
  27034. weight: math.unit(1000, "lb"),
  27035. name: "Front",
  27036. image: {
  27037. source: "./media/characters/grim/front.svg",
  27038. extra: 622 / 614,
  27039. bottom: 18.1 / 642
  27040. }
  27041. },
  27042. back: {
  27043. height: math.unit(16, "feet"),
  27044. weight: math.unit(1000, "lb"),
  27045. name: "Back",
  27046. image: {
  27047. source: "./media/characters/grim/back.svg",
  27048. extra: 610.6 / 602,
  27049. bottom: 40.8 / 652
  27050. }
  27051. },
  27052. hunched: {
  27053. height: math.unit(9.75, "feet"),
  27054. weight: math.unit(1000, "lb"),
  27055. name: "Hunched",
  27056. image: {
  27057. source: "./media/characters/grim/hunched.svg",
  27058. extra: 304 / 297,
  27059. bottom: 35.4 / 394
  27060. }
  27061. },
  27062. },
  27063. [
  27064. {
  27065. name: "Normal",
  27066. height: math.unit(16, "feet"),
  27067. default: true
  27068. },
  27069. ]
  27070. ))
  27071. characterMakers.push(() => makeCharacter(
  27072. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27073. {
  27074. front: {
  27075. height: math.unit(2.3, "meters"),
  27076. weight: math.unit(300, "lb"),
  27077. name: "Front",
  27078. image: {
  27079. source: "./media/characters/sinja/front-sfw.svg",
  27080. extra: 1393 / 1294,
  27081. bottom: 70 / 1463
  27082. }
  27083. },
  27084. frontNsfw: {
  27085. height: math.unit(2.3, "meters"),
  27086. weight: math.unit(300, "lb"),
  27087. name: "Front (NSFW)",
  27088. image: {
  27089. source: "./media/characters/sinja/front-nsfw.svg",
  27090. extra: 1393 / 1294,
  27091. bottom: 70 / 1463
  27092. }
  27093. },
  27094. back: {
  27095. height: math.unit(2.3, "meters"),
  27096. weight: math.unit(300, "lb"),
  27097. name: "Back",
  27098. image: {
  27099. source: "./media/characters/sinja/back.svg",
  27100. extra: 1393 / 1294,
  27101. bottom: 70 / 1463
  27102. }
  27103. },
  27104. head: {
  27105. height: math.unit(1.771, "feet"),
  27106. name: "Head",
  27107. image: {
  27108. source: "./media/characters/sinja/head.svg"
  27109. }
  27110. },
  27111. slit: {
  27112. height: math.unit(0.8, "feet"),
  27113. name: "Slit",
  27114. image: {
  27115. source: "./media/characters/sinja/slit.svg"
  27116. }
  27117. },
  27118. },
  27119. [
  27120. {
  27121. name: "Normal",
  27122. height: math.unit(2.3, "meters")
  27123. },
  27124. {
  27125. name: "Macro",
  27126. height: math.unit(91, "meters"),
  27127. default: true
  27128. },
  27129. {
  27130. name: "Megamacro",
  27131. height: math.unit(91440, "meters")
  27132. },
  27133. {
  27134. name: "Gigamacro",
  27135. height: math.unit(60960000, "meters")
  27136. },
  27137. {
  27138. name: "Teramacro",
  27139. height: math.unit(9144000000, "meters")
  27140. },
  27141. ]
  27142. ))
  27143. characterMakers.push(() => makeCharacter(
  27144. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27145. {
  27146. front: {
  27147. height: math.unit(1.7, "meters"),
  27148. weight: math.unit(130, "lb"),
  27149. name: "Front",
  27150. image: {
  27151. source: "./media/characters/kyu/front.svg",
  27152. extra: 415 / 395,
  27153. bottom: 5 / 420
  27154. }
  27155. },
  27156. head: {
  27157. height: math.unit(1.75, "feet"),
  27158. name: "Head",
  27159. image: {
  27160. source: "./media/characters/kyu/head.svg"
  27161. }
  27162. },
  27163. foot: {
  27164. height: math.unit(0.81, "feet"),
  27165. name: "Foot",
  27166. image: {
  27167. source: "./media/characters/kyu/foot.svg"
  27168. }
  27169. },
  27170. },
  27171. [
  27172. {
  27173. name: "Normal",
  27174. height: math.unit(1.7, "meters")
  27175. },
  27176. {
  27177. name: "Macro",
  27178. height: math.unit(131, "feet"),
  27179. default: true
  27180. },
  27181. {
  27182. name: "Megamacro",
  27183. height: math.unit(91440, "meters")
  27184. },
  27185. {
  27186. name: "Gigamacro",
  27187. height: math.unit(60960000, "meters")
  27188. },
  27189. {
  27190. name: "Teramacro",
  27191. height: math.unit(9144000000, "meters")
  27192. },
  27193. ]
  27194. ))
  27195. characterMakers.push(() => makeCharacter(
  27196. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27197. {
  27198. front: {
  27199. height: math.unit(7 + 1 / 12, "feet"),
  27200. weight: math.unit(250, "lb"),
  27201. name: "Front",
  27202. image: {
  27203. source: "./media/characters/joey/front.svg",
  27204. extra: 1791 / 1537,
  27205. bottom: 28 / 1816
  27206. }
  27207. },
  27208. },
  27209. [
  27210. {
  27211. name: "Micro",
  27212. height: math.unit(3, "inches")
  27213. },
  27214. {
  27215. name: "Normal",
  27216. height: math.unit(7 + 1 / 12, "feet"),
  27217. default: true
  27218. },
  27219. ]
  27220. ))
  27221. characterMakers.push(() => makeCharacter(
  27222. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27223. {
  27224. front: {
  27225. height: math.unit(165, "cm"),
  27226. weight: math.unit(140, "lb"),
  27227. name: "Front",
  27228. image: {
  27229. source: "./media/characters/sam-evans/front.svg",
  27230. extra: 3417 / 3230,
  27231. bottom: 41.3 / 3417
  27232. }
  27233. },
  27234. frontSixTails: {
  27235. height: math.unit(165, "cm"),
  27236. weight: math.unit(140, "lb"),
  27237. name: "Front-six-tails",
  27238. image: {
  27239. source: "./media/characters/sam-evans/front-six-tails.svg",
  27240. extra: 3417 / 3230,
  27241. bottom: 41.3 / 3417
  27242. }
  27243. },
  27244. back: {
  27245. height: math.unit(165, "cm"),
  27246. weight: math.unit(140, "lb"),
  27247. name: "Back",
  27248. image: {
  27249. source: "./media/characters/sam-evans/back.svg",
  27250. extra: 3227 / 3032,
  27251. bottom: 6.8 / 3234
  27252. }
  27253. },
  27254. face: {
  27255. height: math.unit(0.68, "feet"),
  27256. name: "Face",
  27257. image: {
  27258. source: "./media/characters/sam-evans/face.svg"
  27259. }
  27260. },
  27261. },
  27262. [
  27263. {
  27264. name: "Normal",
  27265. height: math.unit(165, "cm"),
  27266. default: true
  27267. },
  27268. {
  27269. name: "Macro",
  27270. height: math.unit(100, "meters")
  27271. },
  27272. {
  27273. name: "Macro+",
  27274. height: math.unit(800, "meters")
  27275. },
  27276. {
  27277. name: "Macro++",
  27278. height: math.unit(3, "km")
  27279. },
  27280. {
  27281. name: "Macro+++",
  27282. height: math.unit(30, "km")
  27283. },
  27284. ]
  27285. ))
  27286. characterMakers.push(() => makeCharacter(
  27287. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27288. {
  27289. front: {
  27290. height: math.unit(10, "feet"),
  27291. weight: math.unit(750, "lb"),
  27292. name: "Front",
  27293. image: {
  27294. source: "./media/characters/juliet-a/front.svg",
  27295. extra: 1766 / 1720,
  27296. bottom: 43 / 1809
  27297. }
  27298. },
  27299. back: {
  27300. height: math.unit(10, "feet"),
  27301. weight: math.unit(750, "lb"),
  27302. name: "Back",
  27303. image: {
  27304. source: "./media/characters/juliet-a/back.svg",
  27305. extra: 1781 / 1734,
  27306. bottom: 35 / 1810,
  27307. }
  27308. },
  27309. },
  27310. [
  27311. {
  27312. name: "Normal",
  27313. height: math.unit(10, "feet"),
  27314. default: true
  27315. },
  27316. {
  27317. name: "Dragon Form",
  27318. height: math.unit(250, "feet")
  27319. },
  27320. {
  27321. name: "Macro",
  27322. height: math.unit(1000, "feet")
  27323. },
  27324. {
  27325. name: "Megamacro",
  27326. height: math.unit(10000, "feet")
  27327. }
  27328. ]
  27329. ))
  27330. characterMakers.push(() => makeCharacter(
  27331. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27332. {
  27333. regular: {
  27334. height: math.unit(7 + 3 / 12, "feet"),
  27335. weight: math.unit(260, "lb"),
  27336. name: "Regular",
  27337. image: {
  27338. source: "./media/characters/wild/regular.svg",
  27339. extra: 97.45 / 92,
  27340. bottom: 6.8 / 104.3
  27341. }
  27342. },
  27343. biggums: {
  27344. height: math.unit(8 + 6 / 12, "feet"),
  27345. weight: math.unit(425, "lb"),
  27346. name: "Biggums",
  27347. image: {
  27348. source: "./media/characters/wild/biggums.svg",
  27349. extra: 97.45 / 92,
  27350. bottom: 7.5 / 132.34
  27351. }
  27352. },
  27353. mawRegular: {
  27354. height: math.unit(1.24, "feet"),
  27355. name: "Maw (Regular)",
  27356. image: {
  27357. source: "./media/characters/wild/maw.svg"
  27358. }
  27359. },
  27360. mawBiggums: {
  27361. height: math.unit(1.47, "feet"),
  27362. name: "Maw (Biggums)",
  27363. image: {
  27364. source: "./media/characters/wild/maw.svg"
  27365. }
  27366. },
  27367. },
  27368. [
  27369. {
  27370. name: "Normal",
  27371. height: math.unit(7 + 3 / 12, "feet"),
  27372. default: true
  27373. },
  27374. ]
  27375. ))
  27376. characterMakers.push(() => makeCharacter(
  27377. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27378. {
  27379. front: {
  27380. height: math.unit(2.5, "meters"),
  27381. weight: math.unit(200, "kg"),
  27382. name: "Front",
  27383. image: {
  27384. source: "./media/characters/vidar/front.svg",
  27385. extra: 2994 / 2795,
  27386. bottom: 56 / 3061
  27387. }
  27388. },
  27389. back: {
  27390. height: math.unit(2.5, "meters"),
  27391. weight: math.unit(200, "kg"),
  27392. name: "Back",
  27393. image: {
  27394. source: "./media/characters/vidar/back.svg",
  27395. extra: 3131 / 2928,
  27396. bottom: 13.5 / 3141.5
  27397. }
  27398. },
  27399. feral: {
  27400. height: math.unit(2.5, "meters"),
  27401. weight: math.unit(2000, "kg"),
  27402. name: "Feral",
  27403. image: {
  27404. source: "./media/characters/vidar/feral.svg",
  27405. extra: 2790 / 1765,
  27406. bottom: 6 / 2796
  27407. }
  27408. },
  27409. },
  27410. [
  27411. {
  27412. name: "Normal",
  27413. height: math.unit(2.5, "meters"),
  27414. default: true
  27415. },
  27416. {
  27417. name: "Macro",
  27418. height: math.unit(100, "meters")
  27419. },
  27420. ]
  27421. ))
  27422. characterMakers.push(() => makeCharacter(
  27423. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27424. {
  27425. front: {
  27426. height: math.unit(5 + 9 / 12, "feet"),
  27427. weight: math.unit(120, "lb"),
  27428. name: "Front",
  27429. image: {
  27430. source: "./media/characters/ash/front.svg",
  27431. extra: 2189 / 1961,
  27432. bottom: 5.2 / 2194
  27433. }
  27434. },
  27435. },
  27436. [
  27437. {
  27438. name: "Normal",
  27439. height: math.unit(5 + 9 / 12, "feet"),
  27440. default: true
  27441. },
  27442. ]
  27443. ))
  27444. characterMakers.push(() => makeCharacter(
  27445. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27446. {
  27447. front: {
  27448. height: math.unit(9, "feet"),
  27449. weight: math.unit(10000, "lb"),
  27450. name: "Front",
  27451. image: {
  27452. source: "./media/characters/gygabite/front.svg",
  27453. bottom: 31.7 / 537.8,
  27454. extra: 505 / 370
  27455. }
  27456. },
  27457. },
  27458. [
  27459. {
  27460. name: "Normal",
  27461. height: math.unit(9, "feet"),
  27462. default: true
  27463. },
  27464. ]
  27465. ))
  27466. characterMakers.push(() => makeCharacter(
  27467. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27468. {
  27469. front: {
  27470. height: math.unit(12, "feet"),
  27471. weight: math.unit(35000, "lb"),
  27472. name: "Front",
  27473. image: {
  27474. source: "./media/characters/p0tat0/front.svg",
  27475. extra: 1065 / 921,
  27476. bottom: 55.7 / 1121.25
  27477. }
  27478. },
  27479. },
  27480. [
  27481. {
  27482. name: "Normal",
  27483. height: math.unit(12, "feet"),
  27484. default: true
  27485. },
  27486. ]
  27487. ))
  27488. characterMakers.push(() => makeCharacter(
  27489. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27490. {
  27491. side: {
  27492. height: math.unit(6.5, "feet"),
  27493. weight: math.unit(800, "lb"),
  27494. name: "Side",
  27495. image: {
  27496. source: "./media/characters/dusk/side.svg",
  27497. extra: 615 / 373,
  27498. bottom: 53 / 664
  27499. }
  27500. },
  27501. sitting: {
  27502. height: math.unit(7, "feet"),
  27503. weight: math.unit(800, "lb"),
  27504. name: "Sitting",
  27505. image: {
  27506. source: "./media/characters/dusk/sitting.svg",
  27507. extra: 753 / 425,
  27508. bottom: 33 / 774
  27509. }
  27510. },
  27511. head: {
  27512. height: math.unit(6.1, "feet"),
  27513. name: "Head",
  27514. image: {
  27515. source: "./media/characters/dusk/head.svg"
  27516. }
  27517. },
  27518. },
  27519. [
  27520. {
  27521. name: "Normal",
  27522. height: math.unit(7, "feet"),
  27523. default: true
  27524. },
  27525. ]
  27526. ))
  27527. characterMakers.push(() => makeCharacter(
  27528. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27529. {
  27530. front: {
  27531. height: math.unit(15, "feet"),
  27532. weight: math.unit(7000, "lb"),
  27533. name: "Front",
  27534. image: {
  27535. source: "./media/characters/jay-direwolf/front.svg",
  27536. extra: 1810 / 1732,
  27537. bottom: 66 / 1892
  27538. }
  27539. },
  27540. },
  27541. [
  27542. {
  27543. name: "Normal",
  27544. height: math.unit(15, "feet"),
  27545. default: true
  27546. },
  27547. ]
  27548. ))
  27549. characterMakers.push(() => makeCharacter(
  27550. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27551. {
  27552. front: {
  27553. height: math.unit(4 + 9 / 12, "feet"),
  27554. weight: math.unit(130, "lb"),
  27555. name: "Front",
  27556. image: {
  27557. source: "./media/characters/anchovie/front.svg",
  27558. extra: 382 / 350,
  27559. bottom: 25 / 409
  27560. }
  27561. },
  27562. back: {
  27563. height: math.unit(4 + 9 / 12, "feet"),
  27564. weight: math.unit(130, "lb"),
  27565. name: "Back",
  27566. image: {
  27567. source: "./media/characters/anchovie/back.svg",
  27568. extra: 385 / 352,
  27569. bottom: 16.6 / 402
  27570. }
  27571. },
  27572. frontDressed: {
  27573. height: math.unit(4 + 9 / 12, "feet"),
  27574. weight: math.unit(130, "lb"),
  27575. name: "Front (Dressed)",
  27576. image: {
  27577. source: "./media/characters/anchovie/front-dressed.svg",
  27578. extra: 382 / 350,
  27579. bottom: 25 / 409
  27580. }
  27581. },
  27582. backDressed: {
  27583. height: math.unit(4 + 9 / 12, "feet"),
  27584. weight: math.unit(130, "lb"),
  27585. name: "Back (Dressed)",
  27586. image: {
  27587. source: "./media/characters/anchovie/back-dressed.svg",
  27588. extra: 385 / 352,
  27589. bottom: 16.6 / 402
  27590. }
  27591. },
  27592. },
  27593. [
  27594. {
  27595. name: "Micro",
  27596. height: math.unit(6.4, "inches")
  27597. },
  27598. {
  27599. name: "Normal",
  27600. height: math.unit(4 + 9 / 12, "feet"),
  27601. default: true
  27602. },
  27603. ]
  27604. ))
  27605. characterMakers.push(() => makeCharacter(
  27606. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27607. {
  27608. front: {
  27609. height: math.unit(2, "meters"),
  27610. weight: math.unit(180, "lb"),
  27611. name: "Front",
  27612. image: {
  27613. source: "./media/characters/acidrenamon/front.svg",
  27614. extra: 987 / 890,
  27615. bottom: 22.8 / 1009
  27616. }
  27617. },
  27618. back: {
  27619. height: math.unit(2, "meters"),
  27620. weight: math.unit(180, "lb"),
  27621. name: "Back",
  27622. image: {
  27623. source: "./media/characters/acidrenamon/back.svg",
  27624. extra: 983 / 891,
  27625. bottom: 8.4 / 992
  27626. }
  27627. },
  27628. head: {
  27629. height: math.unit(1.92, "feet"),
  27630. name: "Head",
  27631. image: {
  27632. source: "./media/characters/acidrenamon/head.svg"
  27633. }
  27634. },
  27635. rump: {
  27636. height: math.unit(1.72, "feet"),
  27637. name: "Rump",
  27638. image: {
  27639. source: "./media/characters/acidrenamon/rump.svg"
  27640. }
  27641. },
  27642. tail: {
  27643. height: math.unit(4.2, "feet"),
  27644. name: "Tail",
  27645. image: {
  27646. source: "./media/characters/acidrenamon/tail.svg"
  27647. }
  27648. },
  27649. },
  27650. [
  27651. {
  27652. name: "Normal",
  27653. height: math.unit(2, "meters"),
  27654. default: true
  27655. },
  27656. {
  27657. name: "Minimacro",
  27658. height: math.unit(7, "meters")
  27659. },
  27660. {
  27661. name: "Macro",
  27662. height: math.unit(200, "meters")
  27663. },
  27664. {
  27665. name: "Gigamacro",
  27666. height: math.unit(0.2, "earths")
  27667. },
  27668. ]
  27669. ))
  27670. characterMakers.push(() => makeCharacter(
  27671. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27672. {
  27673. front: {
  27674. height: math.unit(6, "feet"),
  27675. weight: math.unit(150, "lb"),
  27676. name: "Front",
  27677. image: {
  27678. source: "./media/characters/kenzie-lee/front.svg",
  27679. extra: 1525 / 1465,
  27680. bottom: 45 / 1570
  27681. }
  27682. },
  27683. side: {
  27684. height: math.unit(6, "feet"),
  27685. weight: math.unit(150, "lb"),
  27686. name: "Side",
  27687. image: {
  27688. source: "./media/characters/kenzie-lee/side.svg",
  27689. extra: 5505 / 5383,
  27690. bottom: 60 / 5573
  27691. }
  27692. },
  27693. paw: {
  27694. height: math.unit(0.57, "feet"),
  27695. name: "Paw",
  27696. image: {
  27697. source: "./media/characters/kenzie-lee/paw.svg"
  27698. }
  27699. },
  27700. },
  27701. [
  27702. {
  27703. name: "Normal",
  27704. height: math.unit(152, "feet"),
  27705. default: true
  27706. },
  27707. {
  27708. name: "Megamacro",
  27709. height: math.unit(7, "miles")
  27710. },
  27711. {
  27712. name: "Gigamacro",
  27713. height: math.unit(8000, "miles")
  27714. },
  27715. ]
  27716. ))
  27717. characterMakers.push(() => makeCharacter(
  27718. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27719. {
  27720. side: {
  27721. height: math.unit(6, "feet"),
  27722. weight: math.unit(150, "lb"),
  27723. name: "Side",
  27724. image: {
  27725. source: "./media/characters/withers/side.svg",
  27726. extra: 1830 / 1728,
  27727. bottom: 96 / 1927
  27728. }
  27729. },
  27730. front: {
  27731. height: math.unit(6, "feet"),
  27732. weight: math.unit(150, "lb"),
  27733. name: "Front",
  27734. image: {
  27735. source: "./media/characters/withers/front.svg",
  27736. extra: 1514 / 1438,
  27737. bottom: 118 / 1632
  27738. }
  27739. },
  27740. },
  27741. [
  27742. {
  27743. name: "Macro",
  27744. height: math.unit(168, "feet"),
  27745. default: true
  27746. },
  27747. {
  27748. name: "Megamacro",
  27749. height: math.unit(15, "miles")
  27750. }
  27751. ]
  27752. ))
  27753. characterMakers.push(() => makeCharacter(
  27754. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27755. {
  27756. front: {
  27757. height: math.unit(6 + 7 / 12, "feet"),
  27758. weight: math.unit(250, "lb"),
  27759. name: "Front",
  27760. image: {
  27761. source: "./media/characters/nemoskii/front.svg",
  27762. extra: 2270 / 1734,
  27763. bottom: 86 / 2354
  27764. }
  27765. },
  27766. back: {
  27767. height: math.unit(6 + 7 / 12, "feet"),
  27768. weight: math.unit(250, "lb"),
  27769. name: "Back",
  27770. image: {
  27771. source: "./media/characters/nemoskii/back.svg",
  27772. extra: 1845 / 1788,
  27773. bottom: 10.5 / 1852
  27774. }
  27775. },
  27776. head: {
  27777. height: math.unit(1.31, "feet"),
  27778. name: "Head",
  27779. image: {
  27780. source: "./media/characters/nemoskii/head.svg"
  27781. }
  27782. },
  27783. },
  27784. [
  27785. {
  27786. name: "Micro",
  27787. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27788. },
  27789. {
  27790. name: "Normal",
  27791. height: math.unit(6 + 7 / 12, "feet"),
  27792. default: true
  27793. },
  27794. {
  27795. name: "Macro",
  27796. height: math.unit((6 + 7 / 12) * 150, "feet")
  27797. },
  27798. {
  27799. name: "Macro+",
  27800. height: math.unit((6 + 7 / 12) * 500, "feet")
  27801. },
  27802. {
  27803. name: "Megamacro",
  27804. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27805. },
  27806. ]
  27807. ))
  27808. characterMakers.push(() => makeCharacter(
  27809. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27810. {
  27811. front: {
  27812. height: math.unit(1, "mile"),
  27813. weight: math.unit(265261.9, "lb"),
  27814. name: "Front",
  27815. image: {
  27816. source: "./media/characters/shui/front.svg",
  27817. extra: 1633 / 1564,
  27818. bottom: 91.5 / 1726
  27819. }
  27820. },
  27821. },
  27822. [
  27823. {
  27824. name: "Macro",
  27825. height: math.unit(1, "mile"),
  27826. default: true
  27827. },
  27828. ]
  27829. ))
  27830. characterMakers.push(() => makeCharacter(
  27831. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27832. {
  27833. front: {
  27834. height: math.unit(12 + 6 / 12, "feet"),
  27835. weight: math.unit(1342, "lb"),
  27836. name: "Front",
  27837. image: {
  27838. source: "./media/characters/arokh-takakura/front.svg",
  27839. extra: 1089 / 1043,
  27840. bottom: 77.4 / 1176.7
  27841. }
  27842. },
  27843. back: {
  27844. height: math.unit(12 + 6 / 12, "feet"),
  27845. weight: math.unit(1342, "lb"),
  27846. name: "Back",
  27847. image: {
  27848. source: "./media/characters/arokh-takakura/back.svg",
  27849. extra: 1046 / 1019,
  27850. bottom: 102 / 1150
  27851. }
  27852. },
  27853. },
  27854. [
  27855. {
  27856. name: "Big",
  27857. height: math.unit(12 + 6 / 12, "feet"),
  27858. default: true
  27859. },
  27860. ]
  27861. ))
  27862. characterMakers.push(() => makeCharacter(
  27863. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27864. {
  27865. front: {
  27866. height: math.unit(5 + 6 / 12, "feet"),
  27867. weight: math.unit(150, "lb"),
  27868. name: "Front",
  27869. image: {
  27870. source: "./media/characters/theo/front.svg",
  27871. extra: 1184 / 1131,
  27872. bottom: 7.4 / 1191
  27873. }
  27874. },
  27875. },
  27876. [
  27877. {
  27878. name: "Micro",
  27879. height: math.unit(5, "inches")
  27880. },
  27881. {
  27882. name: "Normal",
  27883. height: math.unit(5 + 6 / 12, "feet"),
  27884. default: true
  27885. },
  27886. ]
  27887. ))
  27888. characterMakers.push(() => makeCharacter(
  27889. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27890. {
  27891. front: {
  27892. height: math.unit(5 + 9 / 12, "feet"),
  27893. weight: math.unit(130, "lb"),
  27894. name: "Front",
  27895. image: {
  27896. source: "./media/characters/cecelia-swift/front.svg",
  27897. extra: 502 / 484,
  27898. bottom: 23 / 523
  27899. }
  27900. },
  27901. back: {
  27902. height: math.unit(5 + 9 / 12, "feet"),
  27903. weight: math.unit(130, "lb"),
  27904. name: "Back",
  27905. image: {
  27906. source: "./media/characters/cecelia-swift/back.svg",
  27907. extra: 499 / 485,
  27908. bottom: 12 / 511
  27909. }
  27910. },
  27911. head: {
  27912. height: math.unit(0.90, "feet"),
  27913. name: "Head",
  27914. image: {
  27915. source: "./media/characters/cecelia-swift/head.svg"
  27916. }
  27917. },
  27918. rump: {
  27919. height: math.unit(1.75, "feet"),
  27920. name: "Rump",
  27921. image: {
  27922. source: "./media/characters/cecelia-swift/rump.svg"
  27923. }
  27924. },
  27925. },
  27926. [
  27927. {
  27928. name: "Normal",
  27929. height: math.unit(5 + 9 / 12, "feet"),
  27930. default: true
  27931. },
  27932. {
  27933. name: "Big",
  27934. height: math.unit(50, "feet")
  27935. },
  27936. {
  27937. name: "Macro",
  27938. height: math.unit(100, "feet")
  27939. },
  27940. {
  27941. name: "Macro+",
  27942. height: math.unit(500, "feet")
  27943. },
  27944. {
  27945. name: "Macro++",
  27946. height: math.unit(1000, "feet")
  27947. },
  27948. ]
  27949. ))
  27950. characterMakers.push(() => makeCharacter(
  27951. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27952. {
  27953. front: {
  27954. height: math.unit(6, "feet"),
  27955. weight: math.unit(150, "lb"),
  27956. name: "Front",
  27957. image: {
  27958. source: "./media/characters/kaunan/front.svg",
  27959. extra: 2890 / 2523,
  27960. bottom: 49 / 2939
  27961. }
  27962. },
  27963. },
  27964. [
  27965. {
  27966. name: "Macro",
  27967. height: math.unit(150, "feet"),
  27968. default: true
  27969. },
  27970. ]
  27971. ))
  27972. characterMakers.push(() => makeCharacter(
  27973. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27974. {
  27975. front: {
  27976. height: math.unit(175, "cm"),
  27977. weight: math.unit(60, "kg"),
  27978. name: "Front",
  27979. image: {
  27980. source: "./media/characters/fei/front.svg",
  27981. extra: 1873/1723,
  27982. bottom: 53/1926
  27983. }
  27984. },
  27985. },
  27986. [
  27987. {
  27988. name: "Mortal",
  27989. height: math.unit(175, "cm")
  27990. },
  27991. {
  27992. name: "Normal",
  27993. height: math.unit(3500, "m"),
  27994. default: true
  27995. },
  27996. {
  27997. name: "Stroll",
  27998. height: math.unit(17.5, "km")
  27999. },
  28000. {
  28001. name: "Showoff",
  28002. height: math.unit(175, "km")
  28003. },
  28004. ]
  28005. ))
  28006. characterMakers.push(() => makeCharacter(
  28007. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28008. {
  28009. front: {
  28010. height: math.unit(7, "feet"),
  28011. weight: math.unit(1000, "kg"),
  28012. name: "Front",
  28013. image: {
  28014. source: "./media/characters/edrax/front.svg",
  28015. extra: 2838 / 2550,
  28016. bottom: 130 / 2968
  28017. }
  28018. },
  28019. },
  28020. [
  28021. {
  28022. name: "Small",
  28023. height: math.unit(7, "feet")
  28024. },
  28025. {
  28026. name: "Normal",
  28027. height: math.unit(1500, "meters")
  28028. },
  28029. {
  28030. name: "Mega",
  28031. height: math.unit(12000000, "km"),
  28032. default: true
  28033. },
  28034. {
  28035. name: "Megamacro",
  28036. height: math.unit(10600000, "lightyears")
  28037. },
  28038. {
  28039. name: "Hypermacro",
  28040. height: math.unit(256, "yottameters")
  28041. },
  28042. ]
  28043. ))
  28044. characterMakers.push(() => makeCharacter(
  28045. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28046. {
  28047. front: {
  28048. height: math.unit(10, "feet"),
  28049. weight: math.unit(750, "lb"),
  28050. name: "Front",
  28051. image: {
  28052. source: "./media/characters/clove/front.svg",
  28053. extra: 2031 / 1860,
  28054. bottom: 47.8 / 2080
  28055. }
  28056. },
  28057. back: {
  28058. height: math.unit(10, "feet"),
  28059. weight: math.unit(750, "lb"),
  28060. name: "Back",
  28061. image: {
  28062. source: "./media/characters/clove/back.svg",
  28063. extra: 2025 / 1859,
  28064. bottom: 46 / 2071
  28065. }
  28066. },
  28067. },
  28068. [
  28069. {
  28070. name: "Normal",
  28071. height: math.unit(10, "feet"),
  28072. default: true
  28073. },
  28074. ]
  28075. ))
  28076. characterMakers.push(() => makeCharacter(
  28077. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28078. {
  28079. front: {
  28080. height: math.unit(4, "feet"),
  28081. weight: math.unit(50, "lb"),
  28082. name: "Front",
  28083. image: {
  28084. source: "./media/characters/alex-rabbit/front.svg",
  28085. extra: 507 / 458,
  28086. bottom: 18.5 / 527
  28087. }
  28088. },
  28089. back: {
  28090. height: math.unit(4, "feet"),
  28091. weight: math.unit(50, "lb"),
  28092. name: "Back",
  28093. image: {
  28094. source: "./media/characters/alex-rabbit/back.svg",
  28095. extra: 502 / 460,
  28096. bottom: 18.9 / 521
  28097. }
  28098. },
  28099. },
  28100. [
  28101. {
  28102. name: "Normal",
  28103. height: math.unit(4, "feet"),
  28104. default: true
  28105. },
  28106. ]
  28107. ))
  28108. characterMakers.push(() => makeCharacter(
  28109. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28110. {
  28111. front: {
  28112. height: math.unit(1 + 3 / 12, "feet"),
  28113. weight: math.unit(80, "lb"),
  28114. name: "Front",
  28115. image: {
  28116. source: "./media/characters/zander-rose/front.svg",
  28117. extra: 916 / 797,
  28118. bottom: 17 / 933
  28119. }
  28120. },
  28121. back: {
  28122. height: math.unit(1 + 3 / 12, "feet"),
  28123. weight: math.unit(80, "lb"),
  28124. name: "Back",
  28125. image: {
  28126. source: "./media/characters/zander-rose/back.svg",
  28127. extra: 903 / 779,
  28128. bottom: 31 / 934
  28129. }
  28130. },
  28131. },
  28132. [
  28133. {
  28134. name: "Normal",
  28135. height: math.unit(1 + 3 / 12, "feet"),
  28136. default: true
  28137. },
  28138. ]
  28139. ))
  28140. characterMakers.push(() => makeCharacter(
  28141. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28142. {
  28143. anthro: {
  28144. height: math.unit(6, "feet"),
  28145. weight: math.unit(150, "lb"),
  28146. name: "Anthro",
  28147. image: {
  28148. source: "./media/characters/razz/anthro.svg",
  28149. extra: 1437 / 1343,
  28150. bottom: 48 / 1485
  28151. }
  28152. },
  28153. feral: {
  28154. height: math.unit(6, "feet"),
  28155. weight: math.unit(150, "lb"),
  28156. name: "Feral",
  28157. image: {
  28158. source: "./media/characters/razz/feral.svg",
  28159. extra: 2569 / 1385,
  28160. bottom: 95 / 2664
  28161. }
  28162. },
  28163. },
  28164. [
  28165. {
  28166. name: "Normal",
  28167. height: math.unit(6, "feet"),
  28168. default: true
  28169. },
  28170. ]
  28171. ))
  28172. characterMakers.push(() => makeCharacter(
  28173. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28174. {
  28175. front: {
  28176. height: math.unit(9 + 4 / 12, "feet"),
  28177. weight: math.unit(500, "lb"),
  28178. name: "Front",
  28179. image: {
  28180. source: "./media/characters/morrigan/front.svg",
  28181. extra: 2707 / 2579,
  28182. bottom: 156 / 2863
  28183. }
  28184. },
  28185. },
  28186. [
  28187. {
  28188. name: "Normal",
  28189. height: math.unit(9 + 4 / 12, "feet"),
  28190. default: true
  28191. },
  28192. ]
  28193. ))
  28194. characterMakers.push(() => makeCharacter(
  28195. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28196. {
  28197. front: {
  28198. height: math.unit(5, "stories"),
  28199. weight: math.unit(4000, "lb"),
  28200. name: "Front",
  28201. image: {
  28202. source: "./media/characters/jenene/front.svg",
  28203. extra: 1780 / 1710,
  28204. bottom: 57 / 1837
  28205. }
  28206. },
  28207. },
  28208. [
  28209. {
  28210. name: "Normal",
  28211. height: math.unit(5, "stories"),
  28212. default: true
  28213. },
  28214. ]
  28215. ))
  28216. characterMakers.push(() => makeCharacter(
  28217. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28218. {
  28219. taurSfw: {
  28220. height: math.unit(10, "meters"),
  28221. weight: math.unit(17500, "kg"),
  28222. name: "Taur",
  28223. image: {
  28224. source: "./media/characters/faey/taur-sfw.svg",
  28225. extra: 1200 / 968,
  28226. bottom: 41 / 1241
  28227. }
  28228. },
  28229. chestmaw: {
  28230. height: math.unit(2.01, "meters"),
  28231. name: "Chestmaw",
  28232. image: {
  28233. source: "./media/characters/faey/chestmaw.svg"
  28234. }
  28235. },
  28236. foot: {
  28237. height: math.unit(2.43, "meters"),
  28238. name: "Foot",
  28239. image: {
  28240. source: "./media/characters/faey/foot.svg"
  28241. }
  28242. },
  28243. jaws: {
  28244. height: math.unit(1.66, "meters"),
  28245. name: "Jaws",
  28246. image: {
  28247. source: "./media/characters/faey/jaws.svg"
  28248. }
  28249. },
  28250. tongues: {
  28251. height: math.unit(2.01, "meters"),
  28252. name: "Tongues",
  28253. image: {
  28254. source: "./media/characters/faey/tongues.svg"
  28255. }
  28256. },
  28257. },
  28258. [
  28259. {
  28260. name: "Small",
  28261. height: math.unit(10, "meters"),
  28262. default: true
  28263. },
  28264. {
  28265. name: "Big",
  28266. height: math.unit(500000, "km")
  28267. },
  28268. ]
  28269. ))
  28270. characterMakers.push(() => makeCharacter(
  28271. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28272. {
  28273. front: {
  28274. height: math.unit(7, "feet"),
  28275. weight: math.unit(275, "lb"),
  28276. name: "Front",
  28277. image: {
  28278. source: "./media/characters/roku/front.svg",
  28279. extra: 903 / 878,
  28280. bottom: 37 / 940
  28281. }
  28282. },
  28283. },
  28284. [
  28285. {
  28286. name: "Normal",
  28287. height: math.unit(7, "feet"),
  28288. default: true
  28289. },
  28290. {
  28291. name: "Macro",
  28292. height: math.unit(500, "feet")
  28293. },
  28294. {
  28295. name: "Megamacro",
  28296. height: math.unit(200, "miles")
  28297. },
  28298. ]
  28299. ))
  28300. characterMakers.push(() => makeCharacter(
  28301. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28302. {
  28303. front: {
  28304. height: math.unit(6 + 2 / 12, "feet"),
  28305. weight: math.unit(150, "lb"),
  28306. name: "Front",
  28307. image: {
  28308. source: "./media/characters/lira/front.svg",
  28309. extra: 1727 / 1605,
  28310. bottom: 26 / 1753
  28311. }
  28312. },
  28313. back: {
  28314. height: math.unit(6 + 2 / 12, "feet"),
  28315. weight: math.unit(150, "lb"),
  28316. name: "Back",
  28317. image: {
  28318. source: "./media/characters/lira/back.svg",
  28319. extra: 1713/1621,
  28320. bottom: 20/1733
  28321. }
  28322. },
  28323. hand: {
  28324. height: math.unit(0.75, "feet"),
  28325. name: "Hand",
  28326. image: {
  28327. source: "./media/characters/lira/hand.svg"
  28328. }
  28329. },
  28330. maw: {
  28331. height: math.unit(0.65, "feet"),
  28332. name: "Maw",
  28333. image: {
  28334. source: "./media/characters/lira/maw.svg"
  28335. }
  28336. },
  28337. pawDigi: {
  28338. height: math.unit(1.6, "feet"),
  28339. name: "Paw Digi",
  28340. image: {
  28341. source: "./media/characters/lira/paw-digi.svg"
  28342. }
  28343. },
  28344. pawPlanti: {
  28345. height: math.unit(1.4, "feet"),
  28346. name: "Paw Planti",
  28347. image: {
  28348. source: "./media/characters/lira/paw-planti.svg"
  28349. }
  28350. },
  28351. },
  28352. [
  28353. {
  28354. name: "Normal",
  28355. height: math.unit(6 + 2 / 12, "feet"),
  28356. default: true
  28357. },
  28358. {
  28359. name: "Macro",
  28360. height: math.unit(100, "feet")
  28361. },
  28362. {
  28363. name: "Macro²",
  28364. height: math.unit(1600, "feet")
  28365. },
  28366. {
  28367. name: "Planetary",
  28368. height: math.unit(20, "earths")
  28369. },
  28370. ]
  28371. ))
  28372. characterMakers.push(() => makeCharacter(
  28373. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28374. {
  28375. front: {
  28376. height: math.unit(6, "feet"),
  28377. weight: math.unit(150, "lb"),
  28378. name: "Front",
  28379. image: {
  28380. source: "./media/characters/hadjet/front.svg",
  28381. extra: 1480 / 1346,
  28382. bottom: 26 / 1506
  28383. }
  28384. },
  28385. frontNsfw: {
  28386. height: math.unit(6, "feet"),
  28387. weight: math.unit(150, "lb"),
  28388. name: "Front (NSFW)",
  28389. image: {
  28390. source: "./media/characters/hadjet/front-nsfw.svg",
  28391. extra: 1440 / 1358,
  28392. bottom: 52 / 1492
  28393. }
  28394. },
  28395. },
  28396. [
  28397. {
  28398. name: "Macro",
  28399. height: math.unit(10, "stories"),
  28400. default: true
  28401. },
  28402. {
  28403. name: "Megamacro",
  28404. height: math.unit(1.5, "miles")
  28405. },
  28406. {
  28407. name: "Megamacro+",
  28408. height: math.unit(5, "miles")
  28409. },
  28410. ]
  28411. ))
  28412. characterMakers.push(() => makeCharacter(
  28413. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28414. {
  28415. side: {
  28416. height: math.unit(106, "feet"),
  28417. weight: math.unit(500, "tonnes"),
  28418. name: "Side",
  28419. image: {
  28420. source: "./media/characters/kodran/side.svg",
  28421. extra: 553 / 480,
  28422. bottom: 33 / 586
  28423. }
  28424. },
  28425. front: {
  28426. height: math.unit(132, "feet"),
  28427. weight: math.unit(500, "tonnes"),
  28428. name: "Front",
  28429. image: {
  28430. source: "./media/characters/kodran/front.svg",
  28431. extra: 667 / 643,
  28432. bottom: 42 / 709
  28433. }
  28434. },
  28435. flying: {
  28436. height: math.unit(350, "feet"),
  28437. weight: math.unit(500, "tonnes"),
  28438. name: "Flying",
  28439. image: {
  28440. source: "./media/characters/kodran/flying.svg"
  28441. }
  28442. },
  28443. foot: {
  28444. height: math.unit(33, "feet"),
  28445. name: "Foot",
  28446. image: {
  28447. source: "./media/characters/kodran/foot.svg"
  28448. }
  28449. },
  28450. footFront: {
  28451. height: math.unit(19, "feet"),
  28452. name: "Foot (Front)",
  28453. image: {
  28454. source: "./media/characters/kodran/foot-front.svg",
  28455. extra: 261 / 261,
  28456. bottom: 91 / 352
  28457. }
  28458. },
  28459. headFront: {
  28460. height: math.unit(53, "feet"),
  28461. name: "Head (Front)",
  28462. image: {
  28463. source: "./media/characters/kodran/head-front.svg"
  28464. }
  28465. },
  28466. headSide: {
  28467. height: math.unit(65, "feet"),
  28468. name: "Head (Side)",
  28469. image: {
  28470. source: "./media/characters/kodran/head-side.svg"
  28471. }
  28472. },
  28473. throat: {
  28474. height: math.unit(79, "feet"),
  28475. name: "Throat",
  28476. image: {
  28477. source: "./media/characters/kodran/throat.svg"
  28478. }
  28479. },
  28480. },
  28481. [
  28482. {
  28483. name: "Large",
  28484. height: math.unit(106, "feet"),
  28485. default: true
  28486. },
  28487. ]
  28488. ))
  28489. characterMakers.push(() => makeCharacter(
  28490. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28491. {
  28492. side: {
  28493. height: math.unit(11, "feet"),
  28494. weight: math.unit(150, "lb"),
  28495. name: "Side",
  28496. image: {
  28497. source: "./media/characters/pyxaron/side.svg",
  28498. extra: 305 / 195,
  28499. bottom: 17 / 322
  28500. }
  28501. },
  28502. },
  28503. [
  28504. {
  28505. name: "Normal",
  28506. height: math.unit(11, "feet"),
  28507. default: true
  28508. },
  28509. ]
  28510. ))
  28511. characterMakers.push(() => makeCharacter(
  28512. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28513. {
  28514. front: {
  28515. height: math.unit(6, "feet"),
  28516. weight: math.unit(150, "lb"),
  28517. name: "Front",
  28518. image: {
  28519. source: "./media/characters/meep/front.svg",
  28520. extra: 88 / 80,
  28521. bottom: 6 / 94
  28522. }
  28523. },
  28524. },
  28525. [
  28526. {
  28527. name: "Fun Sized",
  28528. height: math.unit(2, "inches"),
  28529. default: true
  28530. },
  28531. {
  28532. name: "Friend Sized",
  28533. height: math.unit(8, "inches")
  28534. },
  28535. ]
  28536. ))
  28537. characterMakers.push(() => makeCharacter(
  28538. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28539. {
  28540. front: {
  28541. height: math.unit(15, "feet"),
  28542. weight: math.unit(2500, "lb"),
  28543. name: "Front",
  28544. image: {
  28545. source: "./media/characters/holly-rabbit/front.svg",
  28546. extra: 1433 / 1233,
  28547. bottom: 125 / 1558
  28548. }
  28549. },
  28550. dick: {
  28551. height: math.unit(4.6, "feet"),
  28552. name: "Dick",
  28553. image: {
  28554. source: "./media/characters/holly-rabbit/dick.svg"
  28555. }
  28556. },
  28557. },
  28558. [
  28559. {
  28560. name: "Normal",
  28561. height: math.unit(15, "feet"),
  28562. default: true
  28563. },
  28564. {
  28565. name: "Macro",
  28566. height: math.unit(250, "feet")
  28567. },
  28568. {
  28569. name: "Macro+",
  28570. height: math.unit(2500, "feet")
  28571. },
  28572. ]
  28573. ))
  28574. characterMakers.push(() => makeCharacter(
  28575. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28576. {
  28577. front: {
  28578. height: math.unit(3.02, "meters"),
  28579. weight: math.unit(500, "kg"),
  28580. name: "Front",
  28581. image: {
  28582. source: "./media/characters/drena/front.svg",
  28583. extra: 282 / 243,
  28584. bottom: 8 / 290
  28585. }
  28586. },
  28587. side: {
  28588. height: math.unit(3.02, "meters"),
  28589. weight: math.unit(500, "kg"),
  28590. name: "Side",
  28591. image: {
  28592. source: "./media/characters/drena/side.svg",
  28593. extra: 280 / 245,
  28594. bottom: 10 / 290
  28595. }
  28596. },
  28597. back: {
  28598. height: math.unit(3.02, "meters"),
  28599. weight: math.unit(500, "kg"),
  28600. name: "Back",
  28601. image: {
  28602. source: "./media/characters/drena/back.svg",
  28603. extra: 278 / 243,
  28604. bottom: 2 / 280
  28605. }
  28606. },
  28607. foot: {
  28608. height: math.unit(0.75, "meters"),
  28609. name: "Foot",
  28610. image: {
  28611. source: "./media/characters/drena/foot.svg"
  28612. }
  28613. },
  28614. maw: {
  28615. height: math.unit(0.82, "meters"),
  28616. name: "Maw",
  28617. image: {
  28618. source: "./media/characters/drena/maw.svg"
  28619. }
  28620. },
  28621. rump: {
  28622. height: math.unit(0.93, "meters"),
  28623. name: "Rump",
  28624. image: {
  28625. source: "./media/characters/drena/rump.svg"
  28626. }
  28627. },
  28628. },
  28629. [
  28630. {
  28631. name: "Normal",
  28632. height: math.unit(3.02, "meters"),
  28633. default: true
  28634. },
  28635. ]
  28636. ))
  28637. characterMakers.push(() => makeCharacter(
  28638. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28639. {
  28640. front: {
  28641. height: math.unit(6 + 4 / 12, "feet"),
  28642. weight: math.unit(250, "lb"),
  28643. name: "Front",
  28644. image: {
  28645. source: "./media/characters/remmyzilla/front.svg",
  28646. extra: 4033 / 3588,
  28647. bottom: 123 / 4156
  28648. }
  28649. },
  28650. back: {
  28651. height: math.unit(6 + 4 / 12, "feet"),
  28652. weight: math.unit(250, "lb"),
  28653. name: "Back",
  28654. image: {
  28655. source: "./media/characters/remmyzilla/back.svg",
  28656. extra: 2687 / 2555,
  28657. bottom: 48 / 2735
  28658. }
  28659. },
  28660. paw: {
  28661. height: math.unit(1.73, "feet"),
  28662. name: "Paw",
  28663. image: {
  28664. source: "./media/characters/remmyzilla/paw.svg"
  28665. }
  28666. },
  28667. maw: {
  28668. height: math.unit(1.73, "feet"),
  28669. name: "Maw",
  28670. image: {
  28671. source: "./media/characters/remmyzilla/maw.svg"
  28672. }
  28673. },
  28674. },
  28675. [
  28676. {
  28677. name: "Normal",
  28678. height: math.unit(6 + 4 / 12, "feet")
  28679. },
  28680. {
  28681. name: "Minimacro",
  28682. height: math.unit(12 + 8 / 12, "feet")
  28683. },
  28684. {
  28685. name: "Normal",
  28686. height: math.unit(640, "feet"),
  28687. default: true
  28688. },
  28689. {
  28690. name: "Megamacro",
  28691. height: math.unit(6400, "feet")
  28692. },
  28693. {
  28694. name: "Gigamacro",
  28695. height: math.unit(64000, "miles")
  28696. },
  28697. ]
  28698. ))
  28699. characterMakers.push(() => makeCharacter(
  28700. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28701. {
  28702. front: {
  28703. height: math.unit(2.5, "meters"),
  28704. weight: math.unit(300, "lb"),
  28705. name: "Front",
  28706. image: {
  28707. source: "./media/characters/lawrence/front.svg",
  28708. extra: 357 / 335,
  28709. bottom: 30 / 387
  28710. }
  28711. },
  28712. back: {
  28713. height: math.unit(2.5, "meters"),
  28714. weight: math.unit(300, "lb"),
  28715. name: "Back",
  28716. image: {
  28717. source: "./media/characters/lawrence/back.svg",
  28718. extra: 357 / 338,
  28719. bottom: 16 / 373
  28720. }
  28721. },
  28722. head: {
  28723. height: math.unit(0.9, "meter"),
  28724. name: "Head",
  28725. image: {
  28726. source: "./media/characters/lawrence/head.svg"
  28727. }
  28728. },
  28729. maw: {
  28730. height: math.unit(0.7, "meter"),
  28731. name: "Maw",
  28732. image: {
  28733. source: "./media/characters/lawrence/maw.svg"
  28734. }
  28735. },
  28736. footBottom: {
  28737. height: math.unit(0.5, "meter"),
  28738. name: "Foot (Bottom)",
  28739. image: {
  28740. source: "./media/characters/lawrence/foot-bottom.svg"
  28741. }
  28742. },
  28743. footTop: {
  28744. height: math.unit(0.5, "meter"),
  28745. name: "Foot (Top)",
  28746. image: {
  28747. source: "./media/characters/lawrence/foot-top.svg"
  28748. }
  28749. },
  28750. },
  28751. [
  28752. {
  28753. name: "Normal",
  28754. height: math.unit(2.5, "meters"),
  28755. default: true
  28756. },
  28757. {
  28758. name: "Macro",
  28759. height: math.unit(95, "meters")
  28760. },
  28761. {
  28762. name: "Megamacro",
  28763. height: math.unit(150, "km")
  28764. },
  28765. ]
  28766. ))
  28767. characterMakers.push(() => makeCharacter(
  28768. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28769. {
  28770. front: {
  28771. height: math.unit(4.2, "meters"),
  28772. name: "Front",
  28773. image: {
  28774. source: "./media/characters/sydney/front.svg",
  28775. extra: 1323 / 1277,
  28776. bottom: 111 / 1434
  28777. }
  28778. },
  28779. },
  28780. [
  28781. {
  28782. name: "Normal",
  28783. height: math.unit(4.2, "meters"),
  28784. default: true
  28785. },
  28786. ]
  28787. ))
  28788. characterMakers.push(() => makeCharacter(
  28789. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28790. {
  28791. back: {
  28792. height: math.unit(201, "feet"),
  28793. name: "Back",
  28794. image: {
  28795. source: "./media/characters/jessica/back.svg",
  28796. extra: 273 / 259,
  28797. bottom: 7 / 280
  28798. }
  28799. },
  28800. },
  28801. [
  28802. {
  28803. name: "Normal",
  28804. height: math.unit(201, "feet"),
  28805. default: true
  28806. },
  28807. {
  28808. name: "Megamacro",
  28809. height: math.unit(8, "miles")
  28810. },
  28811. ]
  28812. ))
  28813. characterMakers.push(() => makeCharacter(
  28814. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28815. {
  28816. side: {
  28817. height: math.unit(320, "cm"),
  28818. name: "Side",
  28819. image: {
  28820. source: "./media/characters/victoria/side.svg",
  28821. extra: 778 / 346,
  28822. bottom: 56 / 834
  28823. }
  28824. },
  28825. maw: {
  28826. height: math.unit(5.9, "feet"),
  28827. name: "Maw",
  28828. image: {
  28829. source: "./media/characters/victoria/maw.svg"
  28830. }
  28831. },
  28832. },
  28833. [
  28834. {
  28835. name: "Normal",
  28836. height: math.unit(320, "cm"),
  28837. default: true
  28838. },
  28839. ]
  28840. ))
  28841. characterMakers.push(() => makeCharacter(
  28842. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28843. {
  28844. front: {
  28845. height: math.unit(5 + 6 / 12, "feet"),
  28846. name: "Front",
  28847. image: {
  28848. source: "./media/characters/cat/front.svg",
  28849. extra: 1449/1295,
  28850. bottom: 34/1483
  28851. }
  28852. },
  28853. back: {
  28854. height: math.unit(5 + 6 / 12, "feet"),
  28855. name: "Back",
  28856. image: {
  28857. source: "./media/characters/cat/back.svg",
  28858. extra: 1466/1301,
  28859. bottom: 19/1485
  28860. }
  28861. },
  28862. taur: {
  28863. height: math.unit(7, "feet"),
  28864. name: "Taur",
  28865. image: {
  28866. source: "./media/characters/cat/taur.svg",
  28867. extra: 1389/1233,
  28868. bottom: 83/1472
  28869. }
  28870. },
  28871. lucarioFront: {
  28872. height: math.unit(4, "feet"),
  28873. name: "Lucario (Front)",
  28874. image: {
  28875. source: "./media/characters/cat/lucario-front.svg",
  28876. extra: 1149/1019,
  28877. bottom: 84/1233
  28878. }
  28879. },
  28880. lucarioBack: {
  28881. height: math.unit(4, "feet"),
  28882. name: "Lucario (Back)",
  28883. image: {
  28884. source: "./media/characters/cat/lucario-back.svg",
  28885. extra: 1190/1059,
  28886. bottom: 33/1223
  28887. }
  28888. },
  28889. megaLucario: {
  28890. height: math.unit(4, "feet"),
  28891. name: "Mega Lucario",
  28892. image: {
  28893. source: "./media/characters/cat/mega-lucario.svg",
  28894. extra: 1515 / 1319,
  28895. bottom: 63 / 1578
  28896. }
  28897. },
  28898. nickit: {
  28899. height: math.unit(2, "feet"),
  28900. name: "Nickit",
  28901. image: {
  28902. source: "./media/characters/cat/nickit.svg",
  28903. extra: 1980 / 1585,
  28904. bottom: 102 / 2082
  28905. }
  28906. },
  28907. lopunnyFront: {
  28908. height: math.unit(5, "feet"),
  28909. name: "Lopunny (Front)",
  28910. image: {
  28911. source: "./media/characters/cat/lopunny-front.svg",
  28912. extra: 1782 / 1469,
  28913. bottom: 38 / 1820
  28914. }
  28915. },
  28916. lopunnyBack: {
  28917. height: math.unit(5, "feet"),
  28918. name: "Lopunny (Back)",
  28919. image: {
  28920. source: "./media/characters/cat/lopunny-back.svg",
  28921. extra: 1660 / 1490,
  28922. bottom: 25 / 1685
  28923. }
  28924. },
  28925. },
  28926. [
  28927. {
  28928. name: "Really small",
  28929. height: math.unit(1, "nm")
  28930. },
  28931. {
  28932. name: "Micro",
  28933. height: math.unit(5, "inches")
  28934. },
  28935. {
  28936. name: "Normal",
  28937. height: math.unit(5 + 6 / 12, "feet"),
  28938. default: true
  28939. },
  28940. {
  28941. name: "Macro",
  28942. height: math.unit(50, "feet")
  28943. },
  28944. {
  28945. name: "Macro+",
  28946. height: math.unit(150, "feet")
  28947. },
  28948. {
  28949. name: "Megamacro",
  28950. height: math.unit(100, "miles")
  28951. },
  28952. ]
  28953. ))
  28954. characterMakers.push(() => makeCharacter(
  28955. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28956. {
  28957. front: {
  28958. height: math.unit(63.4, "meters"),
  28959. weight: math.unit(3.28349e+6, "kilograms"),
  28960. name: "Front",
  28961. image: {
  28962. source: "./media/characters/kirina-violet/front.svg",
  28963. extra: 2812 / 2725,
  28964. bottom: 0 / 2812
  28965. }
  28966. },
  28967. back: {
  28968. height: math.unit(63.4, "meters"),
  28969. weight: math.unit(3.28349e+6, "kilograms"),
  28970. name: "Back",
  28971. image: {
  28972. source: "./media/characters/kirina-violet/back.svg",
  28973. extra: 2812 / 2725,
  28974. bottom: 0 / 2812
  28975. }
  28976. },
  28977. mouth: {
  28978. height: math.unit(4.35, "meters"),
  28979. name: "Mouth",
  28980. image: {
  28981. source: "./media/characters/kirina-violet/mouth.svg"
  28982. }
  28983. },
  28984. paw: {
  28985. height: math.unit(5.6, "meters"),
  28986. name: "Paw",
  28987. image: {
  28988. source: "./media/characters/kirina-violet/paw.svg"
  28989. }
  28990. },
  28991. tail: {
  28992. height: math.unit(18, "meters"),
  28993. name: "Tail",
  28994. image: {
  28995. source: "./media/characters/kirina-violet/tail.svg"
  28996. }
  28997. },
  28998. },
  28999. [
  29000. {
  29001. name: "Macro",
  29002. height: math.unit(63.4, "meters"),
  29003. default: true
  29004. },
  29005. ]
  29006. ))
  29007. characterMakers.push(() => makeCharacter(
  29008. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29009. {
  29010. front: {
  29011. height: math.unit(75, "feet"),
  29012. name: "Front",
  29013. image: {
  29014. source: "./media/characters/cat-gigachu/front.svg",
  29015. extra: 1239/1027,
  29016. bottom: 32/1271
  29017. }
  29018. },
  29019. back: {
  29020. height: math.unit(75, "feet"),
  29021. name: "Back",
  29022. image: {
  29023. source: "./media/characters/cat-gigachu/back.svg",
  29024. extra: 1229/1030,
  29025. bottom: 9/1238
  29026. }
  29027. },
  29028. },
  29029. [
  29030. {
  29031. name: "Dynamax",
  29032. height: math.unit(75, "feet"),
  29033. default: true
  29034. },
  29035. ]
  29036. ))
  29037. characterMakers.push(() => makeCharacter(
  29038. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29039. {
  29040. front: {
  29041. height: math.unit(6, "feet"),
  29042. weight: math.unit(150, "lb"),
  29043. name: "Front",
  29044. image: {
  29045. source: "./media/characters/sfaiyan/front.svg",
  29046. extra: 999 / 978,
  29047. bottom: 5 / 1004
  29048. }
  29049. },
  29050. },
  29051. [
  29052. {
  29053. name: "Normal",
  29054. height: math.unit(1.82, "meters")
  29055. },
  29056. {
  29057. name: "Giant",
  29058. height: math.unit(2.27, "km"),
  29059. default: true
  29060. },
  29061. ]
  29062. ))
  29063. characterMakers.push(() => makeCharacter(
  29064. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29065. {
  29066. front: {
  29067. height: math.unit(179, "cm"),
  29068. weight: math.unit(100, "kg"),
  29069. name: "Front",
  29070. image: {
  29071. source: "./media/characters/raunehkeli/front.svg",
  29072. extra: 1934 / 1926,
  29073. bottom: 0 / 1934
  29074. }
  29075. },
  29076. },
  29077. [
  29078. {
  29079. name: "Normal",
  29080. height: math.unit(179, "cm")
  29081. },
  29082. {
  29083. name: "Maximum",
  29084. height: math.unit(575, "meters"),
  29085. default: true
  29086. },
  29087. ]
  29088. ))
  29089. characterMakers.push(() => makeCharacter(
  29090. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29091. {
  29092. front: {
  29093. height: math.unit(6, "feet"),
  29094. weight: math.unit(150, "lb"),
  29095. name: "Front",
  29096. image: {
  29097. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29098. extra: 2625 / 2518,
  29099. bottom: 60 / 2685
  29100. }
  29101. },
  29102. },
  29103. [
  29104. {
  29105. name: "Normal",
  29106. height: math.unit(6 + 2 / 12, "feet")
  29107. },
  29108. {
  29109. name: "Macro",
  29110. height: math.unit(1180, "feet"),
  29111. default: true
  29112. },
  29113. ]
  29114. ))
  29115. characterMakers.push(() => makeCharacter(
  29116. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29117. {
  29118. front: {
  29119. height: math.unit(5 + 6 / 12, "feet"),
  29120. weight: math.unit(108, "lb"),
  29121. name: "Front",
  29122. image: {
  29123. source: "./media/characters/lilith-zott/front.svg",
  29124. extra: 2510 / 2238,
  29125. bottom: 100 / 2610
  29126. }
  29127. },
  29128. frontDressed: {
  29129. height: math.unit(5 + 6 / 12, "feet"),
  29130. weight: math.unit(108, "lb"),
  29131. name: "Front (Dressed)",
  29132. image: {
  29133. source: "./media/characters/lilith-zott/front-dressed.svg",
  29134. extra: 2510 / 2238,
  29135. bottom: 100 / 2610
  29136. }
  29137. },
  29138. },
  29139. [
  29140. {
  29141. name: "Normal",
  29142. height: math.unit(5 + 6 / 12, "feet")
  29143. },
  29144. {
  29145. name: "Macro",
  29146. height: math.unit(1030, "feet"),
  29147. default: true
  29148. },
  29149. ]
  29150. ))
  29151. characterMakers.push(() => makeCharacter(
  29152. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29153. {
  29154. front: {
  29155. height: math.unit(6, "feet"),
  29156. weight: math.unit(150, "lb"),
  29157. name: "Front",
  29158. image: {
  29159. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29160. extra: 2567 / 2435,
  29161. bottom: 39 / 2606
  29162. }
  29163. },
  29164. frontSuper: {
  29165. height: math.unit(6, "feet"),
  29166. name: "Front (Super)",
  29167. image: {
  29168. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29169. extra: 2567 / 2435,
  29170. bottom: 39 / 2606
  29171. }
  29172. },
  29173. },
  29174. [
  29175. {
  29176. name: "Normal",
  29177. height: math.unit(5 + 10 / 12, "feet")
  29178. },
  29179. {
  29180. name: "Macro",
  29181. height: math.unit(1100, "feet"),
  29182. default: true
  29183. },
  29184. ]
  29185. ))
  29186. characterMakers.push(() => makeCharacter(
  29187. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29188. {
  29189. front: {
  29190. height: math.unit(100, "miles"),
  29191. name: "Front",
  29192. image: {
  29193. source: "./media/characters/sona/front.svg",
  29194. extra: 2433 / 2201,
  29195. bottom: 53 / 2486
  29196. }
  29197. },
  29198. foot: {
  29199. height: math.unit(16.1, "miles"),
  29200. name: "Foot",
  29201. image: {
  29202. source: "./media/characters/sona/foot.svg"
  29203. }
  29204. },
  29205. },
  29206. [
  29207. {
  29208. name: "Macro",
  29209. height: math.unit(100, "miles"),
  29210. default: true
  29211. },
  29212. ]
  29213. ))
  29214. characterMakers.push(() => makeCharacter(
  29215. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29216. {
  29217. front: {
  29218. height: math.unit(6, "feet"),
  29219. weight: math.unit(150, "lb"),
  29220. name: "Front",
  29221. image: {
  29222. source: "./media/characters/bailey/front.svg",
  29223. extra: 1778 / 1724,
  29224. bottom: 30 / 1808
  29225. }
  29226. },
  29227. },
  29228. [
  29229. {
  29230. name: "Micro",
  29231. height: math.unit(4, "inches")
  29232. },
  29233. {
  29234. name: "Normal",
  29235. height: math.unit(5 + 5 / 12, "feet"),
  29236. default: true
  29237. },
  29238. {
  29239. name: "Macro",
  29240. height: math.unit(250, "feet")
  29241. },
  29242. {
  29243. name: "Megamacro",
  29244. height: math.unit(100, "miles")
  29245. },
  29246. ]
  29247. ))
  29248. characterMakers.push(() => makeCharacter(
  29249. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29250. {
  29251. front: {
  29252. height: math.unit(5 + 2 / 12, "feet"),
  29253. weight: math.unit(120, "lb"),
  29254. name: "Front",
  29255. image: {
  29256. source: "./media/characters/snaps/front.svg",
  29257. extra: 2370 / 2177,
  29258. bottom: 48 / 2418
  29259. }
  29260. },
  29261. back: {
  29262. height: math.unit(5 + 2 / 12, "feet"),
  29263. weight: math.unit(120, "lb"),
  29264. name: "Back",
  29265. image: {
  29266. source: "./media/characters/snaps/back.svg",
  29267. extra: 2408 / 2258,
  29268. bottom: 15 / 2423
  29269. }
  29270. },
  29271. },
  29272. [
  29273. {
  29274. name: "Micro",
  29275. height: math.unit(9, "inches")
  29276. },
  29277. {
  29278. name: "Normal",
  29279. height: math.unit(5 + 2 / 12, "feet"),
  29280. default: true
  29281. },
  29282. {
  29283. name: "Mini Macro",
  29284. height: math.unit(10, "feet")
  29285. },
  29286. ]
  29287. ))
  29288. characterMakers.push(() => makeCharacter(
  29289. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29290. {
  29291. front: {
  29292. height: math.unit(1.8, "meters"),
  29293. weight: math.unit(85, "kg"),
  29294. name: "Front",
  29295. image: {
  29296. source: "./media/characters/azteck/front.svg",
  29297. extra: 2815 / 2625,
  29298. bottom: 89 / 2904
  29299. }
  29300. },
  29301. back: {
  29302. height: math.unit(1.8, "meters"),
  29303. weight: math.unit(85, "kg"),
  29304. name: "Back",
  29305. image: {
  29306. source: "./media/characters/azteck/back.svg",
  29307. extra: 2856 / 2648,
  29308. bottom: 85 / 2941
  29309. }
  29310. },
  29311. frontDressed: {
  29312. height: math.unit(1.8, "meters"),
  29313. weight: math.unit(85, "kg"),
  29314. name: "Front (Dressed)",
  29315. image: {
  29316. source: "./media/characters/azteck/front-dressed.svg",
  29317. extra: 2147 / 2003,
  29318. bottom: 68 / 2215
  29319. }
  29320. },
  29321. head: {
  29322. height: math.unit(0.47, "meters"),
  29323. weight: math.unit(85, "kg"),
  29324. name: "Head",
  29325. image: {
  29326. source: "./media/characters/azteck/head.svg"
  29327. }
  29328. },
  29329. },
  29330. [
  29331. {
  29332. name: "Bite sized",
  29333. height: math.unit(16, "cm")
  29334. },
  29335. {
  29336. name: "Normal",
  29337. height: math.unit(1.8, "meters"),
  29338. default: true
  29339. },
  29340. ]
  29341. ))
  29342. characterMakers.push(() => makeCharacter(
  29343. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29344. {
  29345. front: {
  29346. height: math.unit(6, "feet"),
  29347. weight: math.unit(150, "lb"),
  29348. name: "Front",
  29349. image: {
  29350. source: "./media/characters/pidge/front.svg",
  29351. extra: 620 / 588,
  29352. bottom: 9 / 629
  29353. }
  29354. },
  29355. back: {
  29356. height: math.unit(6, "feet"),
  29357. weight: math.unit(150, "lb"),
  29358. name: "Back",
  29359. image: {
  29360. source: "./media/characters/pidge/back.svg",
  29361. extra: 620 / 588,
  29362. bottom: 9 / 629
  29363. }
  29364. },
  29365. },
  29366. [
  29367. {
  29368. name: "Macro",
  29369. height: math.unit(1, "mile"),
  29370. default: true
  29371. },
  29372. ]
  29373. ))
  29374. characterMakers.push(() => makeCharacter(
  29375. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29376. {
  29377. front: {
  29378. height: math.unit(6, "feet"),
  29379. weight: math.unit(150, "lb"),
  29380. name: "Front",
  29381. image: {
  29382. source: "./media/characters/en/front.svg",
  29383. extra: 1697 / 1563,
  29384. bottom: 103 / 1800
  29385. }
  29386. },
  29387. back: {
  29388. height: math.unit(6, "feet"),
  29389. weight: math.unit(150, "lb"),
  29390. name: "Back",
  29391. image: {
  29392. source: "./media/characters/en/back.svg",
  29393. extra: 1700 / 1570,
  29394. bottom: 51 / 1751
  29395. }
  29396. },
  29397. frontDressed: {
  29398. height: math.unit(6, "feet"),
  29399. weight: math.unit(150, "lb"),
  29400. name: "Front (Dressed)",
  29401. image: {
  29402. source: "./media/characters/en/front-dressed.svg",
  29403. extra: 1697 / 1563,
  29404. bottom: 103 / 1800
  29405. }
  29406. },
  29407. backDressed: {
  29408. height: math.unit(6, "feet"),
  29409. weight: math.unit(150, "lb"),
  29410. name: "Back (Dressed)",
  29411. image: {
  29412. source: "./media/characters/en/back-dressed.svg",
  29413. extra: 1700 / 1570,
  29414. bottom: 51 / 1751
  29415. }
  29416. },
  29417. },
  29418. [
  29419. {
  29420. name: "Macro",
  29421. height: math.unit(210, "feet"),
  29422. default: true
  29423. },
  29424. ]
  29425. ))
  29426. characterMakers.push(() => makeCharacter(
  29427. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29428. {
  29429. front: {
  29430. height: math.unit(6, "feet"),
  29431. weight: math.unit(150, "lb"),
  29432. name: "Front",
  29433. image: {
  29434. source: "./media/characters/haze-orris/front.svg",
  29435. extra: 3975 / 3525,
  29436. bottom: 137 / 4112
  29437. }
  29438. },
  29439. },
  29440. [
  29441. {
  29442. name: "Micro",
  29443. height: math.unit(150, "mm"),
  29444. default: true
  29445. },
  29446. ]
  29447. ))
  29448. characterMakers.push(() => makeCharacter(
  29449. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29450. {
  29451. front: {
  29452. height: math.unit(6, "feet"),
  29453. weight: math.unit(150, "lb"),
  29454. name: "Front",
  29455. image: {
  29456. source: "./media/characters/casselene-yaro/front.svg",
  29457. extra: 4721 / 4541,
  29458. bottom: 82 / 4803
  29459. }
  29460. },
  29461. back: {
  29462. height: math.unit(6, "feet"),
  29463. weight: math.unit(150, "lb"),
  29464. name: "Back",
  29465. image: {
  29466. source: "./media/characters/casselene-yaro/back.svg",
  29467. extra: 4569 / 4377,
  29468. bottom: 69 / 4638
  29469. }
  29470. },
  29471. frontDressed: {
  29472. height: math.unit(6, "feet"),
  29473. weight: math.unit(150, "lb"),
  29474. name: "Front-dressed",
  29475. image: {
  29476. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29477. extra: 4721 / 4541,
  29478. bottom: 82 / 4803
  29479. }
  29480. },
  29481. },
  29482. [
  29483. {
  29484. name: "Macro",
  29485. height: math.unit(190, "feet"),
  29486. default: true
  29487. },
  29488. ]
  29489. ))
  29490. characterMakers.push(() => makeCharacter(
  29491. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29492. {
  29493. front: {
  29494. height: math.unit(6, "feet"),
  29495. weight: math.unit(150, "lb"),
  29496. name: "Front",
  29497. image: {
  29498. source: "./media/characters/myra-rue-delore/front.svg",
  29499. extra: 1340 / 1308,
  29500. bottom: 67 / 1407
  29501. }
  29502. },
  29503. back: {
  29504. height: math.unit(6, "feet"),
  29505. weight: math.unit(150, "lb"),
  29506. name: "Back",
  29507. image: {
  29508. source: "./media/characters/myra-rue-delore/back.svg",
  29509. extra: 1341 / 1310,
  29510. bottom: 40 / 1381
  29511. }
  29512. },
  29513. frontDressed: {
  29514. height: math.unit(6, "feet"),
  29515. weight: math.unit(150, "lb"),
  29516. name: "Front (Dressed)",
  29517. image: {
  29518. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29519. extra: 1340 / 1308,
  29520. bottom: 67 / 1407
  29521. }
  29522. },
  29523. },
  29524. [
  29525. {
  29526. name: "Macro",
  29527. height: math.unit(150, "feet"),
  29528. default: true
  29529. },
  29530. ]
  29531. ))
  29532. characterMakers.push(() => makeCharacter(
  29533. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29534. {
  29535. front: {
  29536. height: math.unit(10, "feet"),
  29537. weight: math.unit(15015, "lb"),
  29538. name: "Front",
  29539. image: {
  29540. source: "./media/characters/fem!plat/front.svg",
  29541. extra: 2799 / 2604,
  29542. bottom: 149 / 2948
  29543. }
  29544. },
  29545. },
  29546. [
  29547. {
  29548. name: "Normal",
  29549. height: math.unit(10, "feet"),
  29550. default: true
  29551. },
  29552. {
  29553. name: "Macro",
  29554. height: math.unit(100, "feet")
  29555. },
  29556. {
  29557. name: "Megamacro",
  29558. height: math.unit(1000, "feet")
  29559. },
  29560. ]
  29561. ))
  29562. characterMakers.push(() => makeCharacter(
  29563. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29564. {
  29565. front: {
  29566. height: math.unit(15 + 5 / 12, "feet"),
  29567. weight: math.unit(4600, "lb"),
  29568. name: "Front",
  29569. image: {
  29570. source: "./media/characters/neapolitan-ananassa/front.svg",
  29571. extra: 2903 / 2736,
  29572. bottom: 0 / 2903
  29573. }
  29574. },
  29575. side: {
  29576. height: math.unit(15 + 5 / 12, "feet"),
  29577. weight: math.unit(4600, "lb"),
  29578. name: "Side",
  29579. image: {
  29580. source: "./media/characters/neapolitan-ananassa/side.svg",
  29581. extra: 2925 / 2719,
  29582. bottom: 0 / 2925
  29583. }
  29584. },
  29585. back: {
  29586. height: math.unit(15 + 5 / 12, "feet"),
  29587. weight: math.unit(4600, "lb"),
  29588. name: "Back",
  29589. image: {
  29590. source: "./media/characters/neapolitan-ananassa/back.svg",
  29591. extra: 2903 / 2736,
  29592. bottom: 0 / 2903
  29593. }
  29594. },
  29595. },
  29596. [
  29597. {
  29598. name: "Normal",
  29599. height: math.unit(15 + 5 / 12, "feet"),
  29600. default: true
  29601. },
  29602. {
  29603. name: "Post-Millenium",
  29604. height: math.unit(35 + 5 / 12, "feet")
  29605. },
  29606. {
  29607. name: "Post-Era",
  29608. height: math.unit(450 + 5 / 12, "feet")
  29609. },
  29610. ]
  29611. ))
  29612. characterMakers.push(() => makeCharacter(
  29613. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29614. {
  29615. front: {
  29616. height: math.unit(300, "meters"),
  29617. weight: math.unit(125000, "tonnes"),
  29618. name: "Front",
  29619. image: {
  29620. source: "./media/characters/pazuzu/front.svg",
  29621. extra: 877 / 794,
  29622. bottom: 47 / 924
  29623. }
  29624. },
  29625. },
  29626. [
  29627. {
  29628. name: "Macro",
  29629. height: math.unit(300, "meters"),
  29630. default: true
  29631. },
  29632. ]
  29633. ))
  29634. characterMakers.push(() => makeCharacter(
  29635. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29636. {
  29637. side: {
  29638. height: math.unit(10 + 7 / 12, "feet"),
  29639. weight: math.unit(2.5, "tons"),
  29640. name: "Side",
  29641. image: {
  29642. source: "./media/characters/aasha/side.svg",
  29643. extra: 1345 / 1245,
  29644. bottom: 111 / 1456
  29645. }
  29646. },
  29647. back: {
  29648. height: math.unit(10 + 7 / 12, "feet"),
  29649. weight: math.unit(2.5, "tons"),
  29650. name: "Back",
  29651. image: {
  29652. source: "./media/characters/aasha/back.svg",
  29653. extra: 1133 / 1057,
  29654. bottom: 257 / 1390
  29655. }
  29656. },
  29657. },
  29658. [
  29659. {
  29660. name: "Normal",
  29661. height: math.unit(10 + 7 / 12, "feet"),
  29662. default: true
  29663. },
  29664. ]
  29665. ))
  29666. characterMakers.push(() => makeCharacter(
  29667. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29668. {
  29669. front: {
  29670. height: math.unit(6 + 3 / 12, "feet"),
  29671. name: "Front",
  29672. image: {
  29673. source: "./media/characters/nevan/front.svg",
  29674. extra: 704 / 704,
  29675. bottom: 28 / 732
  29676. }
  29677. },
  29678. back: {
  29679. height: math.unit(6 + 3 / 12, "feet"),
  29680. name: "Back",
  29681. image: {
  29682. source: "./media/characters/nevan/back.svg",
  29683. extra: 714 / 714,
  29684. bottom: 21 / 735
  29685. }
  29686. },
  29687. frontFlaccid: {
  29688. height: math.unit(6 + 3 / 12, "feet"),
  29689. name: "Front (Flaccid)",
  29690. image: {
  29691. source: "./media/characters/nevan/front-flaccid.svg",
  29692. extra: 704 / 704,
  29693. bottom: 28 / 732
  29694. }
  29695. },
  29696. frontErect: {
  29697. height: math.unit(6 + 3 / 12, "feet"),
  29698. name: "Front (Erect)",
  29699. image: {
  29700. source: "./media/characters/nevan/front-erect.svg",
  29701. extra: 704 / 704,
  29702. bottom: 28 / 732
  29703. }
  29704. },
  29705. backFlaccid: {
  29706. height: math.unit(6 + 3 / 12, "feet"),
  29707. name: "Back (Flaccid)",
  29708. image: {
  29709. source: "./media/characters/nevan/back-flaccid.svg",
  29710. extra: 714 / 714,
  29711. bottom: 21 / 735
  29712. }
  29713. },
  29714. },
  29715. [
  29716. {
  29717. name: "Normal",
  29718. height: math.unit(6 + 3 / 12, "feet"),
  29719. default: true
  29720. },
  29721. ]
  29722. ))
  29723. characterMakers.push(() => makeCharacter(
  29724. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29725. {
  29726. front: {
  29727. height: math.unit(4, "feet"),
  29728. name: "Front",
  29729. image: {
  29730. source: "./media/characters/arhan/front.svg",
  29731. extra: 3368 / 3133,
  29732. bottom: 0 / 3368
  29733. }
  29734. },
  29735. side: {
  29736. height: math.unit(4, "feet"),
  29737. name: "Side",
  29738. image: {
  29739. source: "./media/characters/arhan/side.svg",
  29740. extra: 3347 / 3105,
  29741. bottom: 0 / 3347
  29742. }
  29743. },
  29744. tongue: {
  29745. height: math.unit(1.42, "feet"),
  29746. name: "Tongue",
  29747. image: {
  29748. source: "./media/characters/arhan/tongue.svg"
  29749. }
  29750. },
  29751. head: {
  29752. height: math.unit(0.85, "feet"),
  29753. name: "Head",
  29754. image: {
  29755. source: "./media/characters/arhan/head.svg"
  29756. }
  29757. },
  29758. },
  29759. [
  29760. {
  29761. name: "Normal",
  29762. height: math.unit(4, "feet"),
  29763. default: true
  29764. },
  29765. ]
  29766. ))
  29767. characterMakers.push(() => makeCharacter(
  29768. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29769. {
  29770. front: {
  29771. height: math.unit(5 + 7.5 / 12, "feet"),
  29772. weight: math.unit(120, "lb"),
  29773. name: "Front",
  29774. image: {
  29775. source: "./media/characters/digi-duncan/front.svg",
  29776. extra: 330 / 326,
  29777. bottom: 16 / 346
  29778. }
  29779. },
  29780. side: {
  29781. height: math.unit(5 + 7.5 / 12, "feet"),
  29782. weight: math.unit(120, "lb"),
  29783. name: "Side",
  29784. image: {
  29785. source: "./media/characters/digi-duncan/side.svg",
  29786. extra: 341 / 337,
  29787. bottom: 1 / 342
  29788. }
  29789. },
  29790. back: {
  29791. height: math.unit(5 + 7.5 / 12, "feet"),
  29792. weight: math.unit(120, "lb"),
  29793. name: "Back",
  29794. image: {
  29795. source: "./media/characters/digi-duncan/back.svg",
  29796. extra: 330 / 326,
  29797. bottom: 12 / 342
  29798. }
  29799. },
  29800. },
  29801. [
  29802. {
  29803. name: "Speck",
  29804. height: math.unit(0.25, "mm")
  29805. },
  29806. {
  29807. name: "Micro",
  29808. height: math.unit(5, "mm")
  29809. },
  29810. {
  29811. name: "Tiny",
  29812. height: math.unit(0.5, "inches"),
  29813. default: true
  29814. },
  29815. {
  29816. name: "Human",
  29817. height: math.unit(5 + 7.5 / 12, "feet")
  29818. },
  29819. {
  29820. name: "Minigiant",
  29821. height: math.unit(8 + 5.25, "feet")
  29822. },
  29823. {
  29824. name: "Giant",
  29825. height: math.unit(2000, "feet")
  29826. },
  29827. {
  29828. name: "Mega",
  29829. height: math.unit(371.1, "miles")
  29830. },
  29831. ]
  29832. ))
  29833. characterMakers.push(() => makeCharacter(
  29834. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29835. {
  29836. front: {
  29837. height: math.unit(2, "meters"),
  29838. weight: math.unit(350, "kg"),
  29839. name: "Front",
  29840. image: {
  29841. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29842. extra: 898 / 838,
  29843. bottom: 9 / 907
  29844. }
  29845. },
  29846. },
  29847. [
  29848. {
  29849. name: "Micro",
  29850. height: math.unit(8, "meters")
  29851. },
  29852. {
  29853. name: "Normal",
  29854. height: math.unit(50, "meters"),
  29855. default: true
  29856. },
  29857. {
  29858. name: "Macro",
  29859. height: math.unit(500, "meters")
  29860. },
  29861. ]
  29862. ))
  29863. characterMakers.push(() => makeCharacter(
  29864. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29865. {
  29866. front: {
  29867. height: math.unit(6 + 6 / 12, "feet"),
  29868. name: "Front",
  29869. image: {
  29870. source: "./media/characters/khardesh/front.svg",
  29871. extra: 888 / 797,
  29872. bottom: 25 / 913
  29873. }
  29874. },
  29875. },
  29876. [
  29877. {
  29878. name: "Normal",
  29879. height: math.unit(6 + 6 / 12, "feet"),
  29880. default: true
  29881. },
  29882. {
  29883. name: "Normal+",
  29884. height: math.unit(4, "meters")
  29885. },
  29886. {
  29887. name: "Macro",
  29888. height: math.unit(50, "meters")
  29889. },
  29890. {
  29891. name: "Macro+",
  29892. height: math.unit(100, "meters")
  29893. },
  29894. {
  29895. name: "Megamacro",
  29896. height: math.unit(20, "km")
  29897. },
  29898. ]
  29899. ))
  29900. characterMakers.push(() => makeCharacter(
  29901. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29902. {
  29903. front: {
  29904. height: math.unit(6, "feet"),
  29905. weight: math.unit(150, "lb"),
  29906. name: "Front",
  29907. image: {
  29908. source: "./media/characters/kosho/front.svg",
  29909. extra: 1847 / 1847,
  29910. bottom: 86 / 1933
  29911. }
  29912. },
  29913. },
  29914. [
  29915. {
  29916. name: "Second-stage micro",
  29917. height: math.unit(0.5, "inches")
  29918. },
  29919. {
  29920. name: "First-stage micro",
  29921. height: math.unit(6, "inches")
  29922. },
  29923. {
  29924. name: "Normal",
  29925. height: math.unit(6, "feet"),
  29926. default: true
  29927. },
  29928. {
  29929. name: "First-stage macro",
  29930. height: math.unit(72, "feet")
  29931. },
  29932. {
  29933. name: "Second-stage macro",
  29934. height: math.unit(864, "feet")
  29935. },
  29936. ]
  29937. ))
  29938. characterMakers.push(() => makeCharacter(
  29939. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29940. {
  29941. normal: {
  29942. height: math.unit(4 + 6 / 12, "feet"),
  29943. name: "Normal",
  29944. image: {
  29945. source: "./media/characters/hydra/normal.svg",
  29946. extra: 2833 / 2634,
  29947. bottom: 68 / 2901
  29948. }
  29949. },
  29950. smol: {
  29951. height: math.unit(0.705, "inches"),
  29952. name: "Smol",
  29953. image: {
  29954. source: "./media/characters/hydra/smol.svg",
  29955. extra: 2715 / 2540,
  29956. bottom: 0 / 2715
  29957. }
  29958. },
  29959. },
  29960. [
  29961. {
  29962. name: "Normal",
  29963. height: math.unit(4 + 6 / 12, "feet"),
  29964. default: true
  29965. }
  29966. ]
  29967. ))
  29968. characterMakers.push(() => makeCharacter(
  29969. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29970. {
  29971. front: {
  29972. height: math.unit(0.6, "cm"),
  29973. name: "Front",
  29974. image: {
  29975. source: "./media/characters/daz/front.svg",
  29976. extra: 1682 / 1164,
  29977. bottom: 42 / 1724
  29978. }
  29979. },
  29980. },
  29981. [
  29982. {
  29983. name: "Normal",
  29984. height: math.unit(0.6, "cm"),
  29985. default: true
  29986. },
  29987. ]
  29988. ))
  29989. characterMakers.push(() => makeCharacter(
  29990. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29991. {
  29992. front: {
  29993. height: math.unit(6, "feet"),
  29994. weight: math.unit(235, "lb"),
  29995. name: "Front",
  29996. image: {
  29997. source: "./media/characters/theo-pangolin/front.svg",
  29998. extra: 1996 / 1969,
  29999. bottom: 115 / 2111
  30000. }
  30001. },
  30002. back: {
  30003. height: math.unit(6, "feet"),
  30004. weight: math.unit(235, "lb"),
  30005. name: "Back",
  30006. image: {
  30007. source: "./media/characters/theo-pangolin/back.svg",
  30008. extra: 1979 / 1979,
  30009. bottom: 40 / 2019
  30010. }
  30011. },
  30012. feral: {
  30013. height: math.unit(2, "feet"),
  30014. weight: math.unit(30, "lb"),
  30015. name: "Feral",
  30016. image: {
  30017. source: "./media/characters/theo-pangolin/feral.svg",
  30018. extra: 803 / 791,
  30019. bottom: 181 / 984
  30020. }
  30021. },
  30022. footFive: {
  30023. height: math.unit(1.43, "feet"),
  30024. name: "Foot (Five Toes)",
  30025. image: {
  30026. source: "./media/characters/theo-pangolin/foot-five.svg"
  30027. }
  30028. },
  30029. footFour: {
  30030. height: math.unit(1.43, "feet"),
  30031. name: "Foot (Four Toes)",
  30032. image: {
  30033. source: "./media/characters/theo-pangolin/foot-four.svg"
  30034. }
  30035. },
  30036. handFour: {
  30037. height: math.unit(0.81, "feet"),
  30038. name: "Hand (Four Fingers)",
  30039. image: {
  30040. source: "./media/characters/theo-pangolin/hand-four.svg"
  30041. }
  30042. },
  30043. handThree: {
  30044. height: math.unit(0.81, "feet"),
  30045. name: "Hand (Three Fingers)",
  30046. image: {
  30047. source: "./media/characters/theo-pangolin/hand-three.svg"
  30048. }
  30049. },
  30050. headFront: {
  30051. height: math.unit(1.37, "feet"),
  30052. name: "Head (Front)",
  30053. image: {
  30054. source: "./media/characters/theo-pangolin/head-front.svg"
  30055. }
  30056. },
  30057. headSide: {
  30058. height: math.unit(1.43, "feet"),
  30059. name: "Head (Side)",
  30060. image: {
  30061. source: "./media/characters/theo-pangolin/head-side.svg"
  30062. }
  30063. },
  30064. tongue: {
  30065. height: math.unit(2.29, "feet"),
  30066. name: "Tongue",
  30067. image: {
  30068. source: "./media/characters/theo-pangolin/tongue.svg"
  30069. }
  30070. },
  30071. },
  30072. [
  30073. {
  30074. name: "Normal",
  30075. height: math.unit(6, "feet")
  30076. },
  30077. {
  30078. name: "Macro",
  30079. height: math.unit(400, "feet"),
  30080. default: true
  30081. },
  30082. ]
  30083. ))
  30084. characterMakers.push(() => makeCharacter(
  30085. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30086. {
  30087. front: {
  30088. height: math.unit(6, "inches"),
  30089. weight: math.unit(0.036, "kg"),
  30090. name: "Front",
  30091. image: {
  30092. source: "./media/characters/renée/front.svg",
  30093. extra: 900 / 886,
  30094. bottom: 8 / 908
  30095. }
  30096. },
  30097. },
  30098. [
  30099. {
  30100. name: "Nano",
  30101. height: math.unit(1, "nm")
  30102. },
  30103. {
  30104. name: "Micro",
  30105. height: math.unit(1, "mm")
  30106. },
  30107. {
  30108. name: "Normal",
  30109. height: math.unit(6, "inches")
  30110. },
  30111. {
  30112. name: "Macro",
  30113. height: math.unit(2000, "feet"),
  30114. default: true
  30115. },
  30116. {
  30117. name: "Megamacro",
  30118. height: math.unit(2, "km")
  30119. },
  30120. {
  30121. name: "Gigamacro",
  30122. height: math.unit(2000, "km")
  30123. },
  30124. {
  30125. name: "Teramacro",
  30126. height: math.unit(250000, "km")
  30127. },
  30128. ]
  30129. ))
  30130. characterMakers.push(() => makeCharacter(
  30131. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30132. {
  30133. front: {
  30134. height: math.unit(4, "meters"),
  30135. weight: math.unit(150, "kg"),
  30136. name: "Front",
  30137. image: {
  30138. source: "./media/characters/caledvwlch/front.svg",
  30139. extra: 1760 / 1551,
  30140. bottom: 28 / 1788
  30141. }
  30142. },
  30143. side: {
  30144. height: math.unit(4, "meters"),
  30145. weight: math.unit(150, "kg"),
  30146. name: "Side",
  30147. image: {
  30148. source: "./media/characters/caledvwlch/side.svg",
  30149. extra: 1605 / 1536,
  30150. bottom: 31 / 1636
  30151. }
  30152. },
  30153. back: {
  30154. height: math.unit(4, "meters"),
  30155. weight: math.unit(150, "kg"),
  30156. name: "Back",
  30157. image: {
  30158. source: "./media/characters/caledvwlch/back.svg",
  30159. extra: 1635 / 1565,
  30160. bottom: 27 / 1662
  30161. }
  30162. },
  30163. },
  30164. [
  30165. {
  30166. name: "\"Incognito\"",
  30167. height: math.unit(4, "meters")
  30168. },
  30169. {
  30170. name: "Small rampage",
  30171. height: math.unit(600, "meters")
  30172. },
  30173. {
  30174. name: "Mega",
  30175. height: math.unit(30, "km")
  30176. },
  30177. {
  30178. name: "Home-size",
  30179. height: math.unit(50, "km"),
  30180. default: true
  30181. },
  30182. {
  30183. name: "Giga",
  30184. height: math.unit(300, "km")
  30185. },
  30186. {
  30187. name: "Lounging",
  30188. height: math.unit(11000, "km")
  30189. },
  30190. {
  30191. name: "Planet snacking",
  30192. height: math.unit(2000000, "km")
  30193. },
  30194. ]
  30195. ))
  30196. characterMakers.push(() => makeCharacter(
  30197. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30198. {
  30199. front: {
  30200. height: math.unit(6, "feet"),
  30201. weight: math.unit(215, "lb"),
  30202. name: "Front",
  30203. image: {
  30204. source: "./media/characters/sapphire-svell/front.svg",
  30205. extra: 495 / 455,
  30206. bottom: 20 / 515
  30207. }
  30208. },
  30209. back: {
  30210. height: math.unit(6, "feet"),
  30211. weight: math.unit(216, "lb"),
  30212. name: "Back",
  30213. image: {
  30214. source: "./media/characters/sapphire-svell/back.svg",
  30215. extra: 497 / 477,
  30216. bottom: 7 / 504
  30217. }
  30218. },
  30219. maw: {
  30220. height: math.unit(1.57, "feet"),
  30221. name: "Maw",
  30222. image: {
  30223. source: "./media/characters/sapphire-svell/maw.svg"
  30224. }
  30225. },
  30226. foot: {
  30227. height: math.unit(1.07, "feet"),
  30228. name: "Foot",
  30229. image: {
  30230. source: "./media/characters/sapphire-svell/foot.svg"
  30231. }
  30232. },
  30233. toering: {
  30234. height: math.unit(1.7, "inch"),
  30235. name: "Toering",
  30236. image: {
  30237. source: "./media/characters/sapphire-svell/toering.svg"
  30238. }
  30239. },
  30240. },
  30241. [
  30242. {
  30243. name: "Normal",
  30244. height: math.unit(300, "feet"),
  30245. default: true
  30246. },
  30247. {
  30248. name: "Augmented",
  30249. height: math.unit(1250, "feet")
  30250. },
  30251. {
  30252. name: "Unleashed",
  30253. height: math.unit(3000, "feet")
  30254. },
  30255. ]
  30256. ))
  30257. characterMakers.push(() => makeCharacter(
  30258. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30259. {
  30260. side: {
  30261. height: math.unit(2 + 3 / 12, "feet"),
  30262. weight: math.unit(110, "lb"),
  30263. name: "Side",
  30264. image: {
  30265. source: "./media/characters/glitch-flux/side.svg",
  30266. extra: 997 / 805,
  30267. bottom: 20 / 1017
  30268. }
  30269. },
  30270. },
  30271. [
  30272. {
  30273. name: "Normal",
  30274. height: math.unit(2 + 3 / 12, "feet"),
  30275. default: true
  30276. },
  30277. ]
  30278. ))
  30279. characterMakers.push(() => makeCharacter(
  30280. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30281. {
  30282. front: {
  30283. height: math.unit(4, "meters"),
  30284. name: "Front",
  30285. image: {
  30286. source: "./media/characters/mid/front.svg",
  30287. extra: 507 / 476,
  30288. bottom: 17 / 524
  30289. }
  30290. },
  30291. back: {
  30292. height: math.unit(4, "meters"),
  30293. name: "Back",
  30294. image: {
  30295. source: "./media/characters/mid/back.svg",
  30296. extra: 519 / 487,
  30297. bottom: 7 / 526
  30298. }
  30299. },
  30300. stuck: {
  30301. height: math.unit(2.2, "meters"),
  30302. name: "Stuck",
  30303. image: {
  30304. source: "./media/characters/mid/stuck.svg",
  30305. extra: 1951 / 1869,
  30306. bottom: 88 / 2039
  30307. }
  30308. }
  30309. },
  30310. [
  30311. {
  30312. name: "Normal",
  30313. height: math.unit(4, "meters"),
  30314. default: true
  30315. },
  30316. {
  30317. name: "Big",
  30318. height: math.unit(10, "meters")
  30319. },
  30320. {
  30321. name: "Macro",
  30322. height: math.unit(800, "meters")
  30323. },
  30324. {
  30325. name: "Megamacro",
  30326. height: math.unit(100, "km")
  30327. },
  30328. {
  30329. name: "Overgrown",
  30330. height: math.unit(1, "parsec")
  30331. },
  30332. ]
  30333. ))
  30334. characterMakers.push(() => makeCharacter(
  30335. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30336. {
  30337. front: {
  30338. height: math.unit(2.5, "meters"),
  30339. weight: math.unit(225, "kg"),
  30340. name: "Front",
  30341. image: {
  30342. source: "./media/characters/iris/front.svg",
  30343. extra: 3348 / 3251,
  30344. bottom: 205 / 3553
  30345. }
  30346. },
  30347. maw: {
  30348. height: math.unit(0.56, "meter"),
  30349. name: "Maw",
  30350. image: {
  30351. source: "./media/characters/iris/maw.svg"
  30352. }
  30353. },
  30354. },
  30355. [
  30356. {
  30357. name: "Mewter cat",
  30358. height: math.unit(1.2, "meters")
  30359. },
  30360. {
  30361. name: "Minimacro",
  30362. height: math.unit(2.5, "meters"),
  30363. default: true
  30364. },
  30365. {
  30366. name: "Macro",
  30367. height: math.unit(180, "meters")
  30368. },
  30369. {
  30370. name: "Megamacro",
  30371. height: math.unit(2746, "meters")
  30372. },
  30373. ]
  30374. ))
  30375. characterMakers.push(() => makeCharacter(
  30376. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30377. {
  30378. front: {
  30379. height: math.unit(6, "feet"),
  30380. weight: math.unit(135, "lb"),
  30381. name: "Front",
  30382. image: {
  30383. source: "./media/characters/axel/front.svg",
  30384. extra: 908 / 908,
  30385. bottom: 58 / 966
  30386. }
  30387. },
  30388. side: {
  30389. height: math.unit(6, "feet"),
  30390. weight: math.unit(135, "lb"),
  30391. name: "Side",
  30392. image: {
  30393. source: "./media/characters/axel/side.svg",
  30394. extra: 958 / 958,
  30395. bottom: 11 / 969
  30396. }
  30397. },
  30398. back: {
  30399. height: math.unit(6, "feet"),
  30400. weight: math.unit(135, "lb"),
  30401. name: "Back",
  30402. image: {
  30403. source: "./media/characters/axel/back.svg",
  30404. extra: 887 / 887,
  30405. bottom: 34 / 921
  30406. }
  30407. },
  30408. head: {
  30409. height: math.unit(1.07, "feet"),
  30410. name: "Head",
  30411. image: {
  30412. source: "./media/characters/axel/head.svg"
  30413. }
  30414. },
  30415. beak: {
  30416. height: math.unit(1.4, "feet"),
  30417. name: "Beak",
  30418. image: {
  30419. source: "./media/characters/axel/beak.svg"
  30420. }
  30421. },
  30422. beakSide: {
  30423. height: math.unit(1.4, "feet"),
  30424. name: "Beak Side",
  30425. image: {
  30426. source: "./media/characters/axel/beak-side.svg"
  30427. }
  30428. },
  30429. sheath: {
  30430. height: math.unit(0.5, "feet"),
  30431. name: "Sheath",
  30432. image: {
  30433. source: "./media/characters/axel/sheath.svg"
  30434. }
  30435. },
  30436. dick: {
  30437. height: math.unit(0.98, "feet"),
  30438. name: "Dick",
  30439. image: {
  30440. source: "./media/characters/axel/dick.svg"
  30441. }
  30442. },
  30443. },
  30444. [
  30445. {
  30446. name: "Macro",
  30447. height: math.unit(68, "meters"),
  30448. default: true
  30449. },
  30450. ]
  30451. ))
  30452. characterMakers.push(() => makeCharacter(
  30453. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30454. {
  30455. front: {
  30456. height: math.unit(3.5, "meters"),
  30457. weight: math.unit(1200, "kg"),
  30458. name: "Front",
  30459. image: {
  30460. source: "./media/characters/joanna/front.svg",
  30461. extra: 1596 / 1488,
  30462. bottom: 29 / 1625
  30463. }
  30464. },
  30465. back: {
  30466. height: math.unit(3.5, "meters"),
  30467. weight: math.unit(1200, "kg"),
  30468. name: "Back",
  30469. image: {
  30470. source: "./media/characters/joanna/back.svg",
  30471. extra: 1594 / 1495,
  30472. bottom: 26 / 1620
  30473. }
  30474. },
  30475. frontShorts: {
  30476. height: math.unit(3.5, "meters"),
  30477. weight: math.unit(1200, "kg"),
  30478. name: "Front (Shorts)",
  30479. image: {
  30480. source: "./media/characters/joanna/front-shorts.svg",
  30481. extra: 1596 / 1488,
  30482. bottom: 29 / 1625
  30483. }
  30484. },
  30485. frontBiker: {
  30486. height: math.unit(3.5, "meters"),
  30487. weight: math.unit(1200, "kg"),
  30488. name: "Front (Biker)",
  30489. image: {
  30490. source: "./media/characters/joanna/front-biker.svg",
  30491. extra: 1596 / 1488,
  30492. bottom: 29 / 1625
  30493. }
  30494. },
  30495. backBiker: {
  30496. height: math.unit(3.5, "meters"),
  30497. weight: math.unit(1200, "kg"),
  30498. name: "Back (Biker)",
  30499. image: {
  30500. source: "./media/characters/joanna/back-biker.svg",
  30501. extra: 1594 / 1495,
  30502. bottom: 88 / 1682
  30503. }
  30504. },
  30505. bikeLeft: {
  30506. height: math.unit(2.4, "meters"),
  30507. weight: math.unit(1600, "kg"),
  30508. name: "Bike (Left)",
  30509. image: {
  30510. source: "./media/characters/joanna/bike-left.svg",
  30511. extra: 720 / 720,
  30512. bottom: 8 / 728
  30513. }
  30514. },
  30515. bikeRight: {
  30516. height: math.unit(2.4, "meters"),
  30517. weight: math.unit(1600, "kg"),
  30518. name: "Bike (Right)",
  30519. image: {
  30520. source: "./media/characters/joanna/bike-right.svg",
  30521. extra: 720 / 720,
  30522. bottom: 8 / 728
  30523. }
  30524. },
  30525. },
  30526. [
  30527. {
  30528. name: "Incognito",
  30529. height: math.unit(3.5, "meters")
  30530. },
  30531. {
  30532. name: "Casual Big",
  30533. height: math.unit(200, "meters")
  30534. },
  30535. {
  30536. name: "Macro",
  30537. height: math.unit(600, "meters")
  30538. },
  30539. {
  30540. name: "Original",
  30541. height: math.unit(20, "km"),
  30542. default: true
  30543. },
  30544. {
  30545. name: "Giga",
  30546. height: math.unit(400, "km")
  30547. },
  30548. {
  30549. name: "Lounging",
  30550. height: math.unit(1500, "km")
  30551. },
  30552. {
  30553. name: "Planetary",
  30554. height: math.unit(200000, "km")
  30555. },
  30556. ]
  30557. ))
  30558. characterMakers.push(() => makeCharacter(
  30559. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30560. {
  30561. front: {
  30562. height: math.unit(6, "feet"),
  30563. weight: math.unit(150, "lb"),
  30564. name: "Front",
  30565. image: {
  30566. source: "./media/characters/hugo-sigil/front.svg",
  30567. extra: 522 / 500,
  30568. bottom: 2 / 524
  30569. }
  30570. },
  30571. back: {
  30572. height: math.unit(6, "feet"),
  30573. weight: math.unit(150, "lb"),
  30574. name: "Back",
  30575. image: {
  30576. source: "./media/characters/hugo-sigil/back.svg",
  30577. extra: 519 / 495,
  30578. bottom: 5 / 524
  30579. }
  30580. },
  30581. maw: {
  30582. height: math.unit(1.4, "feet"),
  30583. weight: math.unit(150, "lb"),
  30584. name: "Maw",
  30585. image: {
  30586. source: "./media/characters/hugo-sigil/maw.svg"
  30587. }
  30588. },
  30589. feet: {
  30590. height: math.unit(1.56, "feet"),
  30591. weight: math.unit(150, "lb"),
  30592. name: "Feet",
  30593. image: {
  30594. source: "./media/characters/hugo-sigil/feet.svg",
  30595. extra: 177 / 177,
  30596. bottom: 12 / 189
  30597. }
  30598. },
  30599. },
  30600. [
  30601. {
  30602. name: "Normal",
  30603. height: math.unit(6, "feet")
  30604. },
  30605. {
  30606. name: "Macro",
  30607. height: math.unit(200, "feet"),
  30608. default: true
  30609. },
  30610. ]
  30611. ))
  30612. characterMakers.push(() => makeCharacter(
  30613. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30614. {
  30615. front: {
  30616. height: math.unit(6, "feet"),
  30617. weight: math.unit(150, "lb"),
  30618. name: "Front",
  30619. image: {
  30620. source: "./media/characters/peri/front.svg",
  30621. extra: 2354 / 2233,
  30622. bottom: 49 / 2403
  30623. }
  30624. },
  30625. },
  30626. [
  30627. {
  30628. name: "Really Small",
  30629. height: math.unit(1, "nm")
  30630. },
  30631. {
  30632. name: "Micro",
  30633. height: math.unit(4, "inches")
  30634. },
  30635. {
  30636. name: "Normal",
  30637. height: math.unit(7, "inches"),
  30638. default: true
  30639. },
  30640. {
  30641. name: "Macro",
  30642. height: math.unit(400, "feet")
  30643. },
  30644. {
  30645. name: "Megamacro",
  30646. height: math.unit(100, "miles")
  30647. },
  30648. ]
  30649. ))
  30650. characterMakers.push(() => makeCharacter(
  30651. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30652. {
  30653. frontSlim: {
  30654. height: math.unit(7, "feet"),
  30655. name: "Front (Slim)",
  30656. image: {
  30657. source: "./media/characters/issilora/front-slim.svg",
  30658. extra: 529 / 449,
  30659. bottom: 53 / 582
  30660. }
  30661. },
  30662. sideSlim: {
  30663. height: math.unit(7, "feet"),
  30664. name: "Side (Slim)",
  30665. image: {
  30666. source: "./media/characters/issilora/side-slim.svg",
  30667. extra: 570 / 480,
  30668. bottom: 30 / 600
  30669. }
  30670. },
  30671. backSlim: {
  30672. height: math.unit(7, "feet"),
  30673. name: "Back (Slim)",
  30674. image: {
  30675. source: "./media/characters/issilora/back-slim.svg",
  30676. extra: 537 / 455,
  30677. bottom: 46 / 583
  30678. }
  30679. },
  30680. frontBuff: {
  30681. height: math.unit(7, "feet"),
  30682. name: "Front (Buff)",
  30683. image: {
  30684. source: "./media/characters/issilora/front-buff.svg",
  30685. extra: 2310 / 2035,
  30686. bottom: 335 / 2645
  30687. }
  30688. },
  30689. head: {
  30690. height: math.unit(1.94, "feet"),
  30691. name: "Head",
  30692. image: {
  30693. source: "./media/characters/issilora/head.svg"
  30694. }
  30695. },
  30696. },
  30697. [
  30698. {
  30699. name: "Minimum",
  30700. height: math.unit(7, "feet")
  30701. },
  30702. {
  30703. name: "Comfortable",
  30704. height: math.unit(17, "feet")
  30705. },
  30706. {
  30707. name: "Fun Size",
  30708. height: math.unit(47, "feet")
  30709. },
  30710. {
  30711. name: "Natural Macro",
  30712. height: math.unit(137, "feet"),
  30713. default: true
  30714. },
  30715. {
  30716. name: "Maximum Kaiju",
  30717. height: math.unit(397, "feet")
  30718. },
  30719. ]
  30720. ))
  30721. characterMakers.push(() => makeCharacter(
  30722. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30723. {
  30724. front: {
  30725. height: math.unit(50 + 9/12, "feet"),
  30726. weight: math.unit(32.8, "tons"),
  30727. name: "Front",
  30728. image: {
  30729. source: "./media/characters/irb'iiritaahn/front.svg",
  30730. extra: 1878/1826,
  30731. bottom: 326/2204
  30732. }
  30733. },
  30734. back: {
  30735. height: math.unit(50 + 9/12, "feet"),
  30736. weight: math.unit(32.8, "tons"),
  30737. name: "Back",
  30738. image: {
  30739. source: "./media/characters/irb'iiritaahn/back.svg",
  30740. extra: 2052/2018,
  30741. bottom: 152/2204
  30742. }
  30743. },
  30744. head: {
  30745. height: math.unit(12.86, "feet"),
  30746. name: "Head",
  30747. image: {
  30748. source: "./media/characters/irb'iiritaahn/head.svg"
  30749. }
  30750. },
  30751. maw: {
  30752. height: math.unit(9.66, "feet"),
  30753. name: "Maw",
  30754. image: {
  30755. source: "./media/characters/irb'iiritaahn/maw.svg"
  30756. }
  30757. },
  30758. frontDick: {
  30759. height: math.unit(8.78461, "feet"),
  30760. name: "Front Dick",
  30761. image: {
  30762. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30763. }
  30764. },
  30765. rearDick: {
  30766. height: math.unit(8.78461, "feet"),
  30767. name: "Rear Dick",
  30768. image: {
  30769. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30770. }
  30771. },
  30772. rearDickUnfolded: {
  30773. height: math.unit(8.78, "feet"),
  30774. name: "Rear Dick (Unfolded)",
  30775. image: {
  30776. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30777. }
  30778. },
  30779. wings: {
  30780. height: math.unit(43, "feet"),
  30781. name: "Wings",
  30782. image: {
  30783. source: "./media/characters/irb'iiritaahn/wings.svg"
  30784. }
  30785. },
  30786. },
  30787. [
  30788. {
  30789. name: "Macro",
  30790. height: math.unit(50 + 9/12, "feet"),
  30791. default: true
  30792. },
  30793. ]
  30794. ))
  30795. characterMakers.push(() => makeCharacter(
  30796. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30797. {
  30798. front: {
  30799. height: math.unit(205, "cm"),
  30800. weight: math.unit(102, "kg"),
  30801. name: "Front",
  30802. image: {
  30803. source: "./media/characters/irbisgreif/front.svg",
  30804. extra: 785/706,
  30805. bottom: 13/798
  30806. }
  30807. },
  30808. back: {
  30809. height: math.unit(205, "cm"),
  30810. weight: math.unit(102, "kg"),
  30811. name: "Back",
  30812. image: {
  30813. source: "./media/characters/irbisgreif/back.svg",
  30814. extra: 713/701,
  30815. bottom: 26/739
  30816. }
  30817. },
  30818. frontDressed: {
  30819. height: math.unit(216, "cm"),
  30820. weight: math.unit(102, "kg"),
  30821. name: "Front-dressed",
  30822. image: {
  30823. source: "./media/characters/irbisgreif/front-dressed.svg",
  30824. extra: 902/776,
  30825. bottom: 14/916
  30826. }
  30827. },
  30828. sideDressed: {
  30829. height: math.unit(195, "cm"),
  30830. weight: math.unit(102, "kg"),
  30831. name: "Side-dressed",
  30832. image: {
  30833. source: "./media/characters/irbisgreif/side-dressed.svg",
  30834. extra: 788/688,
  30835. bottom: 21/809
  30836. }
  30837. },
  30838. backDressed: {
  30839. height: math.unit(216, "cm"),
  30840. weight: math.unit(102, "kg"),
  30841. name: "Back-dressed",
  30842. image: {
  30843. source: "./media/characters/irbisgreif/back-dressed.svg",
  30844. extra: 901/783,
  30845. bottom: 10/911
  30846. }
  30847. },
  30848. dick: {
  30849. height: math.unit(0.49, "feet"),
  30850. name: "Dick",
  30851. image: {
  30852. source: "./media/characters/irbisgreif/dick.svg"
  30853. }
  30854. },
  30855. wingTop: {
  30856. height: math.unit(1.93 , "feet"),
  30857. name: "Wing-top",
  30858. image: {
  30859. source: "./media/characters/irbisgreif/wing-top.svg"
  30860. }
  30861. },
  30862. wingBottom: {
  30863. height: math.unit(1.93 , "feet"),
  30864. name: "Wing-bottom",
  30865. image: {
  30866. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30867. }
  30868. },
  30869. },
  30870. [
  30871. {
  30872. name: "Normal",
  30873. height: math.unit(216, "cm"),
  30874. default: true
  30875. },
  30876. ]
  30877. ))
  30878. characterMakers.push(() => makeCharacter(
  30879. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30880. {
  30881. front: {
  30882. height: math.unit(6, "feet"),
  30883. weight: math.unit(150, "lb"),
  30884. name: "Front",
  30885. image: {
  30886. source: "./media/characters/pride/front.svg",
  30887. extra: 1299/1230,
  30888. bottom: 18/1317
  30889. }
  30890. },
  30891. },
  30892. [
  30893. {
  30894. name: "Normal",
  30895. height: math.unit(7, "feet")
  30896. },
  30897. {
  30898. name: "Mini-macro",
  30899. height: math.unit(11, "feet")
  30900. },
  30901. {
  30902. name: "Macro",
  30903. height: math.unit(15, "meters"),
  30904. default: true
  30905. },
  30906. {
  30907. name: "Macro+",
  30908. height: math.unit(40, "meters")
  30909. },
  30910. ]
  30911. ))
  30912. characterMakers.push(() => makeCharacter(
  30913. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30914. {
  30915. front: {
  30916. height: math.unit(4 + 2 / 12, "feet"),
  30917. weight: math.unit(95, "lb"),
  30918. name: "Front",
  30919. image: {
  30920. source: "./media/characters/vaelophis-nyx/front.svg",
  30921. extra: 2532/2330,
  30922. bottom: 0/2532
  30923. }
  30924. },
  30925. back: {
  30926. height: math.unit(4 + 2 / 12, "feet"),
  30927. weight: math.unit(95, "lb"),
  30928. name: "Back",
  30929. image: {
  30930. source: "./media/characters/vaelophis-nyx/back.svg",
  30931. extra: 2484/2361,
  30932. bottom: 0/2484
  30933. }
  30934. },
  30935. feralSide: {
  30936. height: math.unit(2 + 1/12, "feet"),
  30937. weight: math.unit(20, "lb"),
  30938. name: "Feral (Side)",
  30939. image: {
  30940. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30941. extra: 1721/1581,
  30942. bottom: 70/1791
  30943. }
  30944. },
  30945. feralLazing: {
  30946. height: math.unit(1.08, "feet"),
  30947. weight: math.unit(20, "lb"),
  30948. name: "Feral (Lazing)",
  30949. image: {
  30950. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30951. extra: 822/822,
  30952. bottom: 248/1070
  30953. }
  30954. },
  30955. ear: {
  30956. height: math.unit(0.416, "feet"),
  30957. name: "Ear",
  30958. image: {
  30959. source: "./media/characters/vaelophis-nyx/ear.svg"
  30960. }
  30961. },
  30962. eye: {
  30963. height: math.unit(0.0748, "feet"),
  30964. name: "Eye",
  30965. image: {
  30966. source: "./media/characters/vaelophis-nyx/eye.svg"
  30967. }
  30968. },
  30969. mouth: {
  30970. height: math.unit(0.378, "feet"),
  30971. name: "Mouth",
  30972. image: {
  30973. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30974. }
  30975. },
  30976. spade: {
  30977. height: math.unit(0.55, "feet"),
  30978. name: "Spade",
  30979. image: {
  30980. source: "./media/characters/vaelophis-nyx/spade.svg"
  30981. }
  30982. },
  30983. },
  30984. [
  30985. {
  30986. name: "Normal",
  30987. height: math.unit(4 + 2/12, "feet"),
  30988. default: true
  30989. },
  30990. ]
  30991. ))
  30992. characterMakers.push(() => makeCharacter(
  30993. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30994. {
  30995. front: {
  30996. height: math.unit(7, "feet"),
  30997. weight: math.unit(231, "lb"),
  30998. name: "Front",
  30999. image: {
  31000. source: "./media/characters/flux/front.svg",
  31001. extra: 919/871,
  31002. bottom: 0/919
  31003. }
  31004. },
  31005. back: {
  31006. height: math.unit(7, "feet"),
  31007. weight: math.unit(231, "lb"),
  31008. name: "Back",
  31009. image: {
  31010. source: "./media/characters/flux/back.svg",
  31011. extra: 1040/992,
  31012. bottom: 0/1040
  31013. }
  31014. },
  31015. frontDressed: {
  31016. height: math.unit(7, "feet"),
  31017. weight: math.unit(231, "lb"),
  31018. name: "Front (Dressed)",
  31019. image: {
  31020. source: "./media/characters/flux/front-dressed.svg",
  31021. extra: 919/871,
  31022. bottom: 0/919
  31023. }
  31024. },
  31025. feralSide: {
  31026. height: math.unit(5, "feet"),
  31027. weight: math.unit(150, "lb"),
  31028. name: "Feral (Side)",
  31029. image: {
  31030. source: "./media/characters/flux/feral-side.svg",
  31031. extra: 598/528,
  31032. bottom: 28/626
  31033. }
  31034. },
  31035. head: {
  31036. height: math.unit(1.585, "feet"),
  31037. name: "Head",
  31038. image: {
  31039. source: "./media/characters/flux/head.svg"
  31040. }
  31041. },
  31042. headSide: {
  31043. height: math.unit(1.74, "feet"),
  31044. name: "Head (Side)",
  31045. image: {
  31046. source: "./media/characters/flux/head-side.svg"
  31047. }
  31048. },
  31049. headSideFire: {
  31050. height: math.unit(1.76, "feet"),
  31051. name: "Head (Side, Fire)",
  31052. image: {
  31053. source: "./media/characters/flux/head-side-fire.svg"
  31054. }
  31055. },
  31056. },
  31057. [
  31058. {
  31059. name: "Normal",
  31060. height: math.unit(7, "feet"),
  31061. default: true
  31062. },
  31063. ]
  31064. ))
  31065. characterMakers.push(() => makeCharacter(
  31066. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31067. {
  31068. front: {
  31069. height: math.unit(9, "feet"),
  31070. weight: math.unit(1012, "lb"),
  31071. name: "Front",
  31072. image: {
  31073. source: "./media/characters/ulfra-lupae/front.svg",
  31074. extra: 1083/1011,
  31075. bottom: 67/1150
  31076. }
  31077. },
  31078. },
  31079. [
  31080. {
  31081. name: "Micro",
  31082. height: math.unit(6, "inches")
  31083. },
  31084. {
  31085. name: "Socializing",
  31086. height: math.unit(6 + 5/12, "feet")
  31087. },
  31088. {
  31089. name: "Normal",
  31090. height: math.unit(9, "feet"),
  31091. default: true
  31092. },
  31093. {
  31094. name: "Macro",
  31095. height: math.unit(150, "feet")
  31096. },
  31097. ]
  31098. ))
  31099. characterMakers.push(() => makeCharacter(
  31100. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31101. {
  31102. front: {
  31103. height: math.unit(5 + 2/12, "feet"),
  31104. weight: math.unit(120, "lb"),
  31105. name: "Front",
  31106. image: {
  31107. source: "./media/characters/timber/front.svg",
  31108. extra: 2814/2705,
  31109. bottom: 181/2995
  31110. }
  31111. },
  31112. },
  31113. [
  31114. {
  31115. name: "Normal",
  31116. height: math.unit(5 + 2/12, "feet"),
  31117. default: true
  31118. },
  31119. ]
  31120. ))
  31121. characterMakers.push(() => makeCharacter(
  31122. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31123. {
  31124. front: {
  31125. height: math.unit(5 + 7/12, "feet"),
  31126. weight: math.unit(220, "lb"),
  31127. name: "Front",
  31128. image: {
  31129. source: "./media/characters/nicki/front.svg",
  31130. extra: 453/419,
  31131. bottom: 7/460
  31132. }
  31133. },
  31134. frontAlt: {
  31135. height: math.unit(5 + 7/12, "feet"),
  31136. weight: math.unit(220, "lb"),
  31137. name: "Front-alt",
  31138. image: {
  31139. source: "./media/characters/nicki/front-alt.svg",
  31140. extra: 435/411,
  31141. bottom: 12/447
  31142. }
  31143. },
  31144. back: {
  31145. height: math.unit(5 + 7/12, "feet"),
  31146. weight: math.unit(220, "lb"),
  31147. name: "Back",
  31148. image: {
  31149. source: "./media/characters/nicki/back.svg",
  31150. extra: 440/413,
  31151. bottom: 19/459
  31152. }
  31153. },
  31154. taur: {
  31155. height: math.unit(7 + 6/12, "feet"),
  31156. weight: math.unit(700, "lb"),
  31157. name: "Taur",
  31158. image: {
  31159. source: "./media/characters/nicki/taur.svg",
  31160. extra: 975/773,
  31161. bottom: 0/975
  31162. }
  31163. },
  31164. frontNsfw: {
  31165. height: math.unit(5 + 7/12, "feet"),
  31166. weight: math.unit(220, "lb"),
  31167. name: "Front (NSFW)",
  31168. image: {
  31169. source: "./media/characters/nicki/front-nsfw.svg",
  31170. extra: 453/419,
  31171. bottom: 7/460
  31172. }
  31173. },
  31174. frontNsfwAlt: {
  31175. height: math.unit(5 + 7/12, "feet"),
  31176. weight: math.unit(220, "lb"),
  31177. name: "Front (Alt, NSFW)",
  31178. image: {
  31179. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31180. extra: 435/411,
  31181. bottom: 12/447
  31182. }
  31183. },
  31184. backNsfw: {
  31185. height: math.unit(5 + 7/12, "feet"),
  31186. weight: math.unit(220, "lb"),
  31187. name: "Back (NSFW)",
  31188. image: {
  31189. source: "./media/characters/nicki/back-nsfw.svg",
  31190. extra: 440/413,
  31191. bottom: 19/459
  31192. }
  31193. },
  31194. head: {
  31195. height: math.unit(2.1, "feet"),
  31196. name: "Head",
  31197. image: {
  31198. source: "./media/characters/nicki/head.svg"
  31199. }
  31200. },
  31201. paw: {
  31202. height: math.unit(1.88, "feet"),
  31203. name: "Paw",
  31204. image: {
  31205. source: "./media/characters/nicki/paw.svg"
  31206. }
  31207. },
  31208. },
  31209. [
  31210. {
  31211. name: "Normal",
  31212. height: math.unit(5 + 7/12, "feet"),
  31213. default: true
  31214. },
  31215. ]
  31216. ))
  31217. characterMakers.push(() => makeCharacter(
  31218. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31219. {
  31220. front: {
  31221. height: math.unit(7 + 10/12, "feet"),
  31222. weight: math.unit(3.5, "tons"),
  31223. name: "Front",
  31224. image: {
  31225. source: "./media/characters/lee/front.svg",
  31226. extra: 1773/1615,
  31227. bottom: 86/1859
  31228. }
  31229. },
  31230. hand: {
  31231. height: math.unit(1.78, "feet"),
  31232. name: "Hand",
  31233. image: {
  31234. source: "./media/characters/lee/hand.svg"
  31235. }
  31236. },
  31237. maw: {
  31238. height: math.unit(1.18, "feet"),
  31239. name: "Maw",
  31240. image: {
  31241. source: "./media/characters/lee/maw.svg"
  31242. }
  31243. },
  31244. },
  31245. [
  31246. {
  31247. name: "Normal",
  31248. height: math.unit(7 + 10/12, "feet"),
  31249. default: true
  31250. },
  31251. ]
  31252. ))
  31253. characterMakers.push(() => makeCharacter(
  31254. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31255. {
  31256. front: {
  31257. height: math.unit(9, "feet"),
  31258. name: "Front",
  31259. image: {
  31260. source: "./media/characters/guti/front.svg",
  31261. extra: 4551/4355,
  31262. bottom: 123/4674
  31263. }
  31264. },
  31265. tongue: {
  31266. height: math.unit(1, "feet"),
  31267. name: "Tongue",
  31268. image: {
  31269. source: "./media/characters/guti/tongue.svg"
  31270. }
  31271. },
  31272. paw: {
  31273. height: math.unit(1.18, "feet"),
  31274. name: "Paw",
  31275. image: {
  31276. source: "./media/characters/guti/paw.svg"
  31277. }
  31278. },
  31279. },
  31280. [
  31281. {
  31282. name: "Normal",
  31283. height: math.unit(9, "feet"),
  31284. default: true
  31285. },
  31286. ]
  31287. ))
  31288. characterMakers.push(() => makeCharacter(
  31289. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31290. {
  31291. side: {
  31292. height: math.unit(5, "meters"),
  31293. name: "Side",
  31294. image: {
  31295. source: "./media/characters/vesper/side.svg",
  31296. extra: 1605/1518,
  31297. bottom: 0/1605
  31298. }
  31299. },
  31300. },
  31301. [
  31302. {
  31303. name: "Small",
  31304. height: math.unit(5, "meters")
  31305. },
  31306. {
  31307. name: "Sage",
  31308. height: math.unit(100, "meters"),
  31309. default: true
  31310. },
  31311. {
  31312. name: "Fun Size",
  31313. height: math.unit(600, "meters")
  31314. },
  31315. {
  31316. name: "Goddess",
  31317. height: math.unit(20000, "km")
  31318. },
  31319. {
  31320. name: "Maximum",
  31321. height: math.unit(5, "galaxies")
  31322. },
  31323. ]
  31324. ))
  31325. characterMakers.push(() => makeCharacter(
  31326. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31327. {
  31328. front: {
  31329. height: math.unit(6 + 3/12, "feet"),
  31330. weight: math.unit(190, "lb"),
  31331. name: "Front",
  31332. image: {
  31333. source: "./media/characters/gawain/front.svg",
  31334. extra: 2222/2139,
  31335. bottom: 90/2312
  31336. }
  31337. },
  31338. back: {
  31339. height: math.unit(6 + 3/12, "feet"),
  31340. weight: math.unit(190, "lb"),
  31341. name: "Back",
  31342. image: {
  31343. source: "./media/characters/gawain/back.svg",
  31344. extra: 2199/2111,
  31345. bottom: 73/2272
  31346. }
  31347. },
  31348. },
  31349. [
  31350. {
  31351. name: "Normal",
  31352. height: math.unit(6 + 3/12, "feet"),
  31353. default: true
  31354. },
  31355. ]
  31356. ))
  31357. characterMakers.push(() => makeCharacter(
  31358. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31359. {
  31360. side: {
  31361. height: math.unit(3.5, "meters"),
  31362. weight: math.unit(16000, "lb"),
  31363. name: "Side",
  31364. image: {
  31365. source: "./media/characters/dascalti/side.svg",
  31366. extra: 392/273,
  31367. bottom: 47/439
  31368. }
  31369. },
  31370. breath: {
  31371. height: math.unit(7.4, "feet"),
  31372. name: "Breath",
  31373. image: {
  31374. source: "./media/characters/dascalti/breath.svg"
  31375. }
  31376. },
  31377. fed: {
  31378. height: math.unit(3.6, "meters"),
  31379. weight: math.unit(16000, "lb"),
  31380. name: "Fed",
  31381. image: {
  31382. source: "./media/characters/dascalti/fed.svg",
  31383. extra: 1419/820,
  31384. bottom: 95/1514
  31385. }
  31386. },
  31387. },
  31388. [
  31389. {
  31390. name: "Normal",
  31391. height: math.unit(3.5, "meters"),
  31392. default: true
  31393. },
  31394. ]
  31395. ))
  31396. characterMakers.push(() => makeCharacter(
  31397. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31398. {
  31399. front: {
  31400. height: math.unit(3 + 5/12, "feet"),
  31401. name: "Front",
  31402. image: {
  31403. source: "./media/characters/mauve/front.svg",
  31404. extra: 1126/1033,
  31405. bottom: 65/1191
  31406. }
  31407. },
  31408. side: {
  31409. height: math.unit(3 + 5/12, "feet"),
  31410. name: "Side",
  31411. image: {
  31412. source: "./media/characters/mauve/side.svg",
  31413. extra: 1089/1001,
  31414. bottom: 29/1118
  31415. }
  31416. },
  31417. back: {
  31418. height: math.unit(3 + 5/12, "feet"),
  31419. name: "Back",
  31420. image: {
  31421. source: "./media/characters/mauve/back.svg",
  31422. extra: 1173/1053,
  31423. bottom: 109/1282
  31424. }
  31425. },
  31426. },
  31427. [
  31428. {
  31429. name: "Normal",
  31430. height: math.unit(3 + 5/12, "feet"),
  31431. default: true
  31432. },
  31433. ]
  31434. ))
  31435. characterMakers.push(() => makeCharacter(
  31436. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31437. {
  31438. front: {
  31439. height: math.unit(6 + 3/12, "feet"),
  31440. weight: math.unit(430, "lb"),
  31441. name: "Front",
  31442. image: {
  31443. source: "./media/characters/carlos/front.svg",
  31444. extra: 1964/1913,
  31445. bottom: 70/2034
  31446. }
  31447. },
  31448. },
  31449. [
  31450. {
  31451. name: "Normal",
  31452. height: math.unit(6 + 3/12, "feet"),
  31453. default: true
  31454. },
  31455. ]
  31456. ))
  31457. characterMakers.push(() => makeCharacter(
  31458. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31459. {
  31460. back: {
  31461. height: math.unit(5 + 10/12, "feet"),
  31462. weight: math.unit(200, "lb"),
  31463. name: "Back",
  31464. image: {
  31465. source: "./media/characters/jax/back.svg",
  31466. extra: 764/739,
  31467. bottom: 25/789
  31468. }
  31469. },
  31470. },
  31471. [
  31472. {
  31473. name: "Normal",
  31474. height: math.unit(5 + 10/12, "feet"),
  31475. default: true
  31476. },
  31477. ]
  31478. ))
  31479. characterMakers.push(() => makeCharacter(
  31480. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31481. {
  31482. front: {
  31483. height: math.unit(8, "feet"),
  31484. weight: math.unit(250, "lb"),
  31485. name: "Front",
  31486. image: {
  31487. source: "./media/characters/eikthynir/front.svg",
  31488. extra: 1332/1166,
  31489. bottom: 82/1414
  31490. }
  31491. },
  31492. back: {
  31493. height: math.unit(8, "feet"),
  31494. weight: math.unit(250, "lb"),
  31495. name: "Back",
  31496. image: {
  31497. source: "./media/characters/eikthynir/back.svg",
  31498. extra: 1342/1190,
  31499. bottom: 19/1361
  31500. }
  31501. },
  31502. dick: {
  31503. height: math.unit(2.35, "feet"),
  31504. name: "Dick",
  31505. image: {
  31506. source: "./media/characters/eikthynir/dick.svg"
  31507. }
  31508. },
  31509. },
  31510. [
  31511. {
  31512. name: "Normal",
  31513. height: math.unit(8, "feet"),
  31514. default: true
  31515. },
  31516. ]
  31517. ))
  31518. characterMakers.push(() => makeCharacter(
  31519. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31520. {
  31521. front: {
  31522. height: math.unit(99, "meters"),
  31523. weight: math.unit(13000, "tons"),
  31524. name: "Front",
  31525. image: {
  31526. source: "./media/characters/zlmos/front.svg",
  31527. extra: 2202/1992,
  31528. bottom: 315/2517
  31529. }
  31530. },
  31531. },
  31532. [
  31533. {
  31534. name: "Macro",
  31535. height: math.unit(99, "meters"),
  31536. default: true
  31537. },
  31538. ]
  31539. ))
  31540. characterMakers.push(() => makeCharacter(
  31541. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31542. {
  31543. front: {
  31544. height: math.unit(6 + 5/12, "feet"),
  31545. name: "Front",
  31546. image: {
  31547. source: "./media/characters/purri/front.svg",
  31548. extra: 1698/1610,
  31549. bottom: 32/1730
  31550. }
  31551. },
  31552. frontAlt: {
  31553. height: math.unit(6 + 5/12, "feet"),
  31554. name: "Front (Alt)",
  31555. image: {
  31556. source: "./media/characters/purri/front-alt.svg",
  31557. extra: 450/420,
  31558. bottom: 26/476
  31559. }
  31560. },
  31561. boots: {
  31562. height: math.unit(5.5, "feet"),
  31563. name: "Boots",
  31564. image: {
  31565. source: "./media/characters/purri/boots.svg",
  31566. extra: 905/853,
  31567. bottom: 18/923
  31568. }
  31569. },
  31570. lying: {
  31571. height: math.unit(2, "feet"),
  31572. name: "Lying",
  31573. image: {
  31574. source: "./media/characters/purri/lying.svg",
  31575. extra: 940/843,
  31576. bottom: 146/1086
  31577. }
  31578. },
  31579. devious: {
  31580. height: math.unit(1.77, "feet"),
  31581. name: "Devious",
  31582. image: {
  31583. source: "./media/characters/purri/devious.svg",
  31584. extra: 1440/1155,
  31585. bottom: 147/1587
  31586. }
  31587. },
  31588. bean: {
  31589. height: math.unit(1.94, "feet"),
  31590. name: "Bean",
  31591. image: {
  31592. source: "./media/characters/purri/bean.svg"
  31593. }
  31594. },
  31595. },
  31596. [
  31597. {
  31598. name: "Micro",
  31599. height: math.unit(1, "mm")
  31600. },
  31601. {
  31602. name: "Normal",
  31603. height: math.unit(6 + 5/12, "feet"),
  31604. default: true
  31605. },
  31606. {
  31607. name: "Macro :3c",
  31608. height: math.unit(2, "miles")
  31609. },
  31610. ]
  31611. ))
  31612. characterMakers.push(() => makeCharacter(
  31613. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31614. {
  31615. front: {
  31616. height: math.unit(6 + 2/12, "feet"),
  31617. weight: math.unit(250, "lb"),
  31618. name: "Front",
  31619. image: {
  31620. source: "./media/characters/moonlight/front.svg",
  31621. extra: 1044/908,
  31622. bottom: 56/1100
  31623. }
  31624. },
  31625. feral: {
  31626. height: math.unit(3 + 1/12, "feet"),
  31627. weight: math.unit(50, "kg"),
  31628. name: "Feral",
  31629. image: {
  31630. source: "./media/characters/moonlight/feral.svg",
  31631. extra: 3705/2791,
  31632. bottom: 145/3850
  31633. }
  31634. },
  31635. paw: {
  31636. height: math.unit(1, "feet"),
  31637. name: "Paw",
  31638. image: {
  31639. source: "./media/characters/moonlight/paw.svg"
  31640. }
  31641. },
  31642. paws: {
  31643. height: math.unit(0.98, "feet"),
  31644. name: "Paws",
  31645. image: {
  31646. source: "./media/characters/moonlight/paws.svg",
  31647. extra: 939/939,
  31648. bottom: 50/989
  31649. }
  31650. },
  31651. mouth: {
  31652. height: math.unit(0.48, "feet"),
  31653. name: "Mouth",
  31654. image: {
  31655. source: "./media/characters/moonlight/mouth.svg"
  31656. }
  31657. },
  31658. dick: {
  31659. height: math.unit(1.46, "feet"),
  31660. name: "Dick",
  31661. image: {
  31662. source: "./media/characters/moonlight/dick.svg"
  31663. }
  31664. },
  31665. },
  31666. [
  31667. {
  31668. name: "Normal",
  31669. height: math.unit(6 + 2/12, "feet"),
  31670. default: true
  31671. },
  31672. {
  31673. name: "Macro",
  31674. height: math.unit(300, "feet")
  31675. },
  31676. {
  31677. name: "Macro+",
  31678. height: math.unit(1, "mile")
  31679. },
  31680. {
  31681. name: "Mt. Moon",
  31682. height: math.unit(5, "miles")
  31683. },
  31684. {
  31685. name: "Megamacro",
  31686. height: math.unit(15, "miles")
  31687. },
  31688. ]
  31689. ))
  31690. characterMakers.push(() => makeCharacter(
  31691. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31692. {
  31693. back: {
  31694. height: math.unit(6, "feet"),
  31695. weight: math.unit(150, "lb"),
  31696. name: "Back",
  31697. image: {
  31698. source: "./media/characters/sylen/back.svg",
  31699. extra: 1335/1273,
  31700. bottom: 107/1442
  31701. }
  31702. },
  31703. },
  31704. [
  31705. {
  31706. name: "Normal",
  31707. height: math.unit(5 + 5/12, "feet")
  31708. },
  31709. {
  31710. name: "Megamacro",
  31711. height: math.unit(3, "miles"),
  31712. default: true
  31713. },
  31714. ]
  31715. ))
  31716. characterMakers.push(() => makeCharacter(
  31717. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31718. {
  31719. front: {
  31720. height: math.unit(6, "feet"),
  31721. weight: math.unit(190, "lb"),
  31722. name: "Front",
  31723. image: {
  31724. source: "./media/characters/huttser/front.svg",
  31725. extra: 1152/1058,
  31726. bottom: 23/1175
  31727. }
  31728. },
  31729. side: {
  31730. height: math.unit(6, "feet"),
  31731. weight: math.unit(190, "lb"),
  31732. name: "Side",
  31733. image: {
  31734. source: "./media/characters/huttser/side.svg",
  31735. extra: 1174/1065,
  31736. bottom: 18/1192
  31737. }
  31738. },
  31739. back: {
  31740. height: math.unit(6, "feet"),
  31741. weight: math.unit(190, "lb"),
  31742. name: "Back",
  31743. image: {
  31744. source: "./media/characters/huttser/back.svg",
  31745. extra: 1158/1056,
  31746. bottom: 12/1170
  31747. }
  31748. },
  31749. },
  31750. [
  31751. ]
  31752. ))
  31753. characterMakers.push(() => makeCharacter(
  31754. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31755. {
  31756. side: {
  31757. height: math.unit(12 + 9/12, "feet"),
  31758. weight: math.unit(15000, "lb"),
  31759. name: "Side",
  31760. image: {
  31761. source: "./media/characters/faan/side.svg",
  31762. extra: 2747/2697,
  31763. bottom: 0/2747
  31764. }
  31765. },
  31766. front: {
  31767. height: math.unit(12 + 9/12, "feet"),
  31768. weight: math.unit(15000, "lb"),
  31769. name: "Front",
  31770. image: {
  31771. source: "./media/characters/faan/front.svg",
  31772. extra: 607/571,
  31773. bottom: 24/631
  31774. }
  31775. },
  31776. head: {
  31777. height: math.unit(2.85, "feet"),
  31778. name: "Head",
  31779. image: {
  31780. source: "./media/characters/faan/head.svg"
  31781. }
  31782. },
  31783. headAlt: {
  31784. height: math.unit(3.13, "feet"),
  31785. name: "Head-alt",
  31786. image: {
  31787. source: "./media/characters/faan/head-alt.svg"
  31788. }
  31789. },
  31790. },
  31791. [
  31792. {
  31793. name: "Normal",
  31794. height: math.unit(12 + 9/12, "feet"),
  31795. default: true
  31796. },
  31797. ]
  31798. ))
  31799. characterMakers.push(() => makeCharacter(
  31800. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31801. {
  31802. front: {
  31803. height: math.unit(6, "feet"),
  31804. weight: math.unit(300, "lb"),
  31805. name: "Front",
  31806. image: {
  31807. source: "./media/characters/tanio/front.svg",
  31808. extra: 711/673,
  31809. bottom: 25/736
  31810. }
  31811. },
  31812. },
  31813. [
  31814. {
  31815. name: "Normal",
  31816. height: math.unit(6, "feet"),
  31817. default: true
  31818. },
  31819. ]
  31820. ))
  31821. characterMakers.push(() => makeCharacter(
  31822. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31823. {
  31824. front: {
  31825. height: math.unit(3, "inches"),
  31826. name: "Front",
  31827. image: {
  31828. source: "./media/characters/noboru/front.svg",
  31829. extra: 1039/932,
  31830. bottom: 18/1057
  31831. }
  31832. },
  31833. },
  31834. [
  31835. {
  31836. name: "Micro",
  31837. height: math.unit(3, "inches"),
  31838. default: true
  31839. },
  31840. ]
  31841. ))
  31842. characterMakers.push(() => makeCharacter(
  31843. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31844. {
  31845. front: {
  31846. height: math.unit(1.85, "meters"),
  31847. weight: math.unit(80, "kg"),
  31848. name: "Front",
  31849. image: {
  31850. source: "./media/characters/daniel-barrett/front.svg",
  31851. extra: 355/337,
  31852. bottom: 9/364
  31853. }
  31854. },
  31855. },
  31856. [
  31857. {
  31858. name: "Pico",
  31859. height: math.unit(0.0433, "mm")
  31860. },
  31861. {
  31862. name: "Nano",
  31863. height: math.unit(1.5, "mm")
  31864. },
  31865. {
  31866. name: "Micro",
  31867. height: math.unit(5.3, "cm"),
  31868. default: true
  31869. },
  31870. {
  31871. name: "Normal",
  31872. height: math.unit(1.85, "meters")
  31873. },
  31874. {
  31875. name: "Macro",
  31876. height: math.unit(64.7, "meters")
  31877. },
  31878. {
  31879. name: "Megamacro",
  31880. height: math.unit(2.26, "km")
  31881. },
  31882. {
  31883. name: "Gigamacro",
  31884. height: math.unit(79, "km")
  31885. },
  31886. {
  31887. name: "Teramacro",
  31888. height: math.unit(2765, "km")
  31889. },
  31890. {
  31891. name: "Petamacro",
  31892. height: math.unit(96678, "km")
  31893. },
  31894. ]
  31895. ))
  31896. characterMakers.push(() => makeCharacter(
  31897. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31898. {
  31899. front: {
  31900. height: math.unit(30, "meters"),
  31901. weight: math.unit(400, "tons"),
  31902. name: "Front",
  31903. image: {
  31904. source: "./media/characters/zeel/front.svg",
  31905. extra: 2599/2599,
  31906. bottom: 226/2825
  31907. }
  31908. },
  31909. },
  31910. [
  31911. {
  31912. name: "Macro",
  31913. height: math.unit(30, "meters"),
  31914. default: true
  31915. },
  31916. ]
  31917. ))
  31918. characterMakers.push(() => makeCharacter(
  31919. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31920. {
  31921. front: {
  31922. height: math.unit(6 + 7/12, "feet"),
  31923. weight: math.unit(210, "lb"),
  31924. name: "Front",
  31925. image: {
  31926. source: "./media/characters/tarn/front.svg",
  31927. extra: 3517/3220,
  31928. bottom: 91/3608
  31929. }
  31930. },
  31931. back: {
  31932. height: math.unit(6 + 7/12, "feet"),
  31933. weight: math.unit(210, "lb"),
  31934. name: "Back",
  31935. image: {
  31936. source: "./media/characters/tarn/back.svg",
  31937. extra: 3566/3241,
  31938. bottom: 34/3600
  31939. }
  31940. },
  31941. dick: {
  31942. height: math.unit(1.65, "feet"),
  31943. name: "Dick",
  31944. image: {
  31945. source: "./media/characters/tarn/dick.svg"
  31946. }
  31947. },
  31948. paw: {
  31949. height: math.unit(1.80, "feet"),
  31950. name: "Paw",
  31951. image: {
  31952. source: "./media/characters/tarn/paw.svg"
  31953. }
  31954. },
  31955. tongue: {
  31956. height: math.unit(0.97, "feet"),
  31957. name: "Tongue",
  31958. image: {
  31959. source: "./media/characters/tarn/tongue.svg"
  31960. }
  31961. },
  31962. },
  31963. [
  31964. {
  31965. name: "Micro",
  31966. height: math.unit(4, "inches")
  31967. },
  31968. {
  31969. name: "Normal",
  31970. height: math.unit(6 + 7/12, "feet"),
  31971. default: true
  31972. },
  31973. {
  31974. name: "Macro",
  31975. height: math.unit(300, "feet")
  31976. },
  31977. ]
  31978. ))
  31979. characterMakers.push(() => makeCharacter(
  31980. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31981. {
  31982. front: {
  31983. height: math.unit(5 + 7/12, "feet"),
  31984. weight: math.unit(80, "kg"),
  31985. name: "Front",
  31986. image: {
  31987. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31988. extra: 3023/2865,
  31989. bottom: 33/3056
  31990. }
  31991. },
  31992. back: {
  31993. height: math.unit(5 + 7/12, "feet"),
  31994. weight: math.unit(80, "kg"),
  31995. name: "Back",
  31996. image: {
  31997. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31998. extra: 3020/2886,
  31999. bottom: 30/3050
  32000. }
  32001. },
  32002. dick: {
  32003. height: math.unit(0.98, "feet"),
  32004. name: "Dick",
  32005. image: {
  32006. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32007. }
  32008. },
  32009. anatomy: {
  32010. height: math.unit(2.86, "feet"),
  32011. name: "Anatomy",
  32012. image: {
  32013. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32014. }
  32015. },
  32016. },
  32017. [
  32018. {
  32019. name: "Really Small",
  32020. height: math.unit(2, "inches")
  32021. },
  32022. {
  32023. name: "Micro",
  32024. height: math.unit(5.583, "inches")
  32025. },
  32026. {
  32027. name: "Normal",
  32028. height: math.unit(5 + 7/12, "feet"),
  32029. default: true
  32030. },
  32031. {
  32032. name: "Macro",
  32033. height: math.unit(67, "feet")
  32034. },
  32035. {
  32036. name: "Megamacro",
  32037. height: math.unit(134, "feet")
  32038. },
  32039. ]
  32040. ))
  32041. characterMakers.push(() => makeCharacter(
  32042. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32043. {
  32044. front: {
  32045. height: math.unit(9, "feet"),
  32046. weight: math.unit(120, "lb"),
  32047. name: "Front",
  32048. image: {
  32049. source: "./media/characters/sally/front.svg",
  32050. extra: 1506/1349,
  32051. bottom: 66/1572
  32052. }
  32053. },
  32054. },
  32055. [
  32056. {
  32057. name: "Normal",
  32058. height: math.unit(9, "feet"),
  32059. default: true
  32060. },
  32061. ]
  32062. ))
  32063. characterMakers.push(() => makeCharacter(
  32064. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32065. {
  32066. front: {
  32067. height: math.unit(8, "feet"),
  32068. weight: math.unit(900, "lb"),
  32069. name: "Front",
  32070. image: {
  32071. source: "./media/characters/owen/front.svg",
  32072. extra: 1761/1657,
  32073. bottom: 74/1835
  32074. }
  32075. },
  32076. side: {
  32077. height: math.unit(8, "feet"),
  32078. weight: math.unit(900, "lb"),
  32079. name: "Side",
  32080. image: {
  32081. source: "./media/characters/owen/side.svg",
  32082. extra: 1797/1734,
  32083. bottom: 30/1827
  32084. }
  32085. },
  32086. back: {
  32087. height: math.unit(8, "feet"),
  32088. weight: math.unit(900, "lb"),
  32089. name: "Back",
  32090. image: {
  32091. source: "./media/characters/owen/back.svg",
  32092. extra: 1796/1706,
  32093. bottom: 59/1855
  32094. }
  32095. },
  32096. maw: {
  32097. height: math.unit(1.76, "feet"),
  32098. name: "Maw",
  32099. image: {
  32100. source: "./media/characters/owen/maw.svg"
  32101. }
  32102. },
  32103. },
  32104. [
  32105. {
  32106. name: "Normal",
  32107. height: math.unit(8, "feet"),
  32108. default: true
  32109. },
  32110. ]
  32111. ))
  32112. characterMakers.push(() => makeCharacter(
  32113. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32114. {
  32115. front: {
  32116. height: math.unit(4, "feet"),
  32117. weight: math.unit(400, "lb"),
  32118. name: "Front",
  32119. image: {
  32120. source: "./media/characters/ryth/front.svg",
  32121. extra: 1920/1748,
  32122. bottom: 42/1962
  32123. }
  32124. },
  32125. back: {
  32126. height: math.unit(4, "feet"),
  32127. weight: math.unit(400, "lb"),
  32128. name: "Back",
  32129. image: {
  32130. source: "./media/characters/ryth/back.svg",
  32131. extra: 1897/1690,
  32132. bottom: 89/1986
  32133. }
  32134. },
  32135. mouth: {
  32136. height: math.unit(1.39, "feet"),
  32137. name: "Mouth",
  32138. image: {
  32139. source: "./media/characters/ryth/mouth.svg"
  32140. }
  32141. },
  32142. tailmaw: {
  32143. height: math.unit(1.23, "feet"),
  32144. name: "Tailmaw",
  32145. image: {
  32146. source: "./media/characters/ryth/tailmaw.svg"
  32147. }
  32148. },
  32149. goia: {
  32150. height: math.unit(4, "meters"),
  32151. weight: math.unit(10800, "lb"),
  32152. name: "Goia",
  32153. image: {
  32154. source: "./media/characters/ryth/goia.svg",
  32155. extra: 745/640,
  32156. bottom: 107/852
  32157. }
  32158. },
  32159. goiaFront: {
  32160. height: math.unit(4, "meters"),
  32161. weight: math.unit(10800, "lb"),
  32162. name: "Goia (Front)",
  32163. image: {
  32164. source: "./media/characters/ryth/goia-front.svg",
  32165. extra: 750/586,
  32166. bottom: 114/864
  32167. }
  32168. },
  32169. goiaMaw: {
  32170. height: math.unit(5.55, "feet"),
  32171. name: "Goia Maw",
  32172. image: {
  32173. source: "./media/characters/ryth/goia-maw.svg"
  32174. }
  32175. },
  32176. goiaForepaw: {
  32177. height: math.unit(3.5, "feet"),
  32178. name: "Goia Forepaw",
  32179. image: {
  32180. source: "./media/characters/ryth/goia-forepaw.svg"
  32181. }
  32182. },
  32183. goiaHindpaw: {
  32184. height: math.unit(5.55, "feet"),
  32185. name: "Goia Hindpaw",
  32186. image: {
  32187. source: "./media/characters/ryth/goia-hindpaw.svg"
  32188. }
  32189. },
  32190. },
  32191. [
  32192. {
  32193. name: "Normal",
  32194. height: math.unit(4, "feet"),
  32195. default: true
  32196. },
  32197. ]
  32198. ))
  32199. characterMakers.push(() => makeCharacter(
  32200. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32201. {
  32202. front: {
  32203. height: math.unit(7, "feet"),
  32204. weight: math.unit(180, "lb"),
  32205. name: "Front",
  32206. image: {
  32207. source: "./media/characters/necrolance/front.svg",
  32208. extra: 1062/947,
  32209. bottom: 41/1103
  32210. }
  32211. },
  32212. back: {
  32213. height: math.unit(7, "feet"),
  32214. weight: math.unit(180, "lb"),
  32215. name: "Back",
  32216. image: {
  32217. source: "./media/characters/necrolance/back.svg",
  32218. extra: 1045/984,
  32219. bottom: 14/1059
  32220. }
  32221. },
  32222. wing: {
  32223. height: math.unit(2.67, "feet"),
  32224. name: "Wing",
  32225. image: {
  32226. source: "./media/characters/necrolance/wing.svg"
  32227. }
  32228. },
  32229. },
  32230. [
  32231. {
  32232. name: "Normal",
  32233. height: math.unit(7, "feet"),
  32234. default: true
  32235. },
  32236. ]
  32237. ))
  32238. characterMakers.push(() => makeCharacter(
  32239. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32240. {
  32241. front: {
  32242. height: math.unit(76, "meters"),
  32243. weight: math.unit(30000, "tons"),
  32244. name: "Front",
  32245. image: {
  32246. source: "./media/characters/tyler/front.svg",
  32247. extra: 1640/1640,
  32248. bottom: 114/1754
  32249. }
  32250. },
  32251. },
  32252. [
  32253. {
  32254. name: "Macro",
  32255. height: math.unit(76, "meters"),
  32256. default: true
  32257. },
  32258. ]
  32259. ))
  32260. characterMakers.push(() => makeCharacter(
  32261. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32262. {
  32263. front: {
  32264. height: math.unit(4 + 11/12, "feet"),
  32265. weight: math.unit(132, "lb"),
  32266. name: "Front",
  32267. image: {
  32268. source: "./media/characters/icey/front.svg",
  32269. extra: 2750/2550,
  32270. bottom: 33/2783
  32271. }
  32272. },
  32273. back: {
  32274. height: math.unit(4 + 11/12, "feet"),
  32275. weight: math.unit(132, "lb"),
  32276. name: "Back",
  32277. image: {
  32278. source: "./media/characters/icey/back.svg",
  32279. extra: 2624/2481,
  32280. bottom: 35/2659
  32281. }
  32282. },
  32283. },
  32284. [
  32285. {
  32286. name: "Normal",
  32287. height: math.unit(4 + 11/12, "feet"),
  32288. default: true
  32289. },
  32290. ]
  32291. ))
  32292. characterMakers.push(() => makeCharacter(
  32293. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32294. {
  32295. front: {
  32296. height: math.unit(100, "feet"),
  32297. weight: math.unit(0, "lb"),
  32298. name: "Front",
  32299. image: {
  32300. source: "./media/characters/smile/front.svg",
  32301. extra: 2983/2912,
  32302. bottom: 162/3145
  32303. }
  32304. },
  32305. back: {
  32306. height: math.unit(100, "feet"),
  32307. weight: math.unit(0, "lb"),
  32308. name: "Back",
  32309. image: {
  32310. source: "./media/characters/smile/back.svg",
  32311. extra: 3143/3031,
  32312. bottom: 91/3234
  32313. }
  32314. },
  32315. head: {
  32316. height: math.unit(26.3, "feet"),
  32317. weight: math.unit(0, "lb"),
  32318. name: "Head",
  32319. image: {
  32320. source: "./media/characters/smile/head.svg"
  32321. }
  32322. },
  32323. collar: {
  32324. height: math.unit(5.3, "feet"),
  32325. weight: math.unit(0, "lb"),
  32326. name: "Collar",
  32327. image: {
  32328. source: "./media/characters/smile/collar.svg"
  32329. }
  32330. },
  32331. },
  32332. [
  32333. {
  32334. name: "Macro",
  32335. height: math.unit(100, "feet"),
  32336. default: true
  32337. },
  32338. ]
  32339. ))
  32340. characterMakers.push(() => makeCharacter(
  32341. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32342. {
  32343. dragon: {
  32344. height: math.unit(26, "feet"),
  32345. weight: math.unit(36, "tons"),
  32346. name: "Dragon",
  32347. image: {
  32348. source: "./media/characters/arimphae/dragon.svg",
  32349. extra: 1574/983,
  32350. bottom: 357/1931
  32351. }
  32352. },
  32353. drake: {
  32354. height: math.unit(9, "feet"),
  32355. weight: math.unit(1.5, "tons"),
  32356. name: "Drake",
  32357. image: {
  32358. source: "./media/characters/arimphae/drake.svg",
  32359. extra: 1120/925,
  32360. bottom: 435/1555
  32361. }
  32362. },
  32363. },
  32364. [
  32365. {
  32366. name: "Small",
  32367. height: math.unit(26*5/9, "feet")
  32368. },
  32369. {
  32370. name: "Normal",
  32371. height: math.unit(26, "feet"),
  32372. default: true
  32373. },
  32374. ]
  32375. ))
  32376. characterMakers.push(() => makeCharacter(
  32377. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32378. {
  32379. front: {
  32380. height: math.unit(8 + 9/12, "feet"),
  32381. name: "Front",
  32382. image: {
  32383. source: "./media/characters/xander/front.svg",
  32384. extra: 1237/974,
  32385. bottom: 94/1331
  32386. }
  32387. },
  32388. },
  32389. [
  32390. {
  32391. name: "Normal",
  32392. height: math.unit(8 + 9/12, "feet"),
  32393. default: true
  32394. },
  32395. {
  32396. name: "Gaze Grabber",
  32397. height: math.unit(13 + 8/12, "feet")
  32398. },
  32399. {
  32400. name: "Jaw Dropper",
  32401. height: math.unit(27, "feet")
  32402. },
  32403. {
  32404. name: "Show Stopper",
  32405. height: math.unit(136, "feet")
  32406. },
  32407. {
  32408. name: "Superstar",
  32409. height: math.unit(1.9e6, "miles")
  32410. },
  32411. ]
  32412. ))
  32413. characterMakers.push(() => makeCharacter(
  32414. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32415. {
  32416. side: {
  32417. height: math.unit(2100, "feet"),
  32418. name: "Side",
  32419. image: {
  32420. source: "./media/characters/osiris/side.svg",
  32421. extra: 1105/939,
  32422. bottom: 167/1272
  32423. }
  32424. },
  32425. },
  32426. [
  32427. {
  32428. name: "Macro",
  32429. height: math.unit(2100, "feet"),
  32430. default: true
  32431. },
  32432. ]
  32433. ))
  32434. characterMakers.push(() => makeCharacter(
  32435. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32436. {
  32437. front: {
  32438. height: math.unit(6 + 8/12, "feet"),
  32439. weight: math.unit(225, "lb"),
  32440. name: "Front",
  32441. image: {
  32442. source: "./media/characters/rhys-londe/front.svg",
  32443. extra: 2258/2141,
  32444. bottom: 188/2446
  32445. }
  32446. },
  32447. back: {
  32448. height: math.unit(6 + 8/12, "feet"),
  32449. weight: math.unit(225, "lb"),
  32450. name: "Back",
  32451. image: {
  32452. source: "./media/characters/rhys-londe/back.svg",
  32453. extra: 2237/2137,
  32454. bottom: 63/2300
  32455. }
  32456. },
  32457. frontNsfw: {
  32458. height: math.unit(6 + 8/12, "feet"),
  32459. weight: math.unit(225, "lb"),
  32460. name: "Front (NSFW)",
  32461. image: {
  32462. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32463. extra: 2258/2141,
  32464. bottom: 188/2446
  32465. }
  32466. },
  32467. backNsfw: {
  32468. height: math.unit(6 + 8/12, "feet"),
  32469. weight: math.unit(225, "lb"),
  32470. name: "Back (NSFW)",
  32471. image: {
  32472. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32473. extra: 2237/2137,
  32474. bottom: 63/2300
  32475. }
  32476. },
  32477. dick: {
  32478. height: math.unit(30, "inches"),
  32479. name: "Dick",
  32480. image: {
  32481. source: "./media/characters/rhys-londe/dick.svg"
  32482. }
  32483. },
  32484. maw: {
  32485. height: math.unit(1.6, "feet"),
  32486. name: "Maw",
  32487. image: {
  32488. source: "./media/characters/rhys-londe/maw.svg"
  32489. }
  32490. },
  32491. },
  32492. [
  32493. {
  32494. name: "Normal",
  32495. height: math.unit(6 + 8/12, "feet"),
  32496. default: true
  32497. },
  32498. ]
  32499. ))
  32500. characterMakers.push(() => makeCharacter(
  32501. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32502. {
  32503. front: {
  32504. height: math.unit(3 + 10/12, "feet"),
  32505. weight: math.unit(90, "lb"),
  32506. name: "Front",
  32507. image: {
  32508. source: "./media/characters/taivas-ensim/front.svg",
  32509. extra: 1327/1216,
  32510. bottom: 96/1423
  32511. }
  32512. },
  32513. back: {
  32514. height: math.unit(3 + 10/12, "feet"),
  32515. weight: math.unit(90, "lb"),
  32516. name: "Back",
  32517. image: {
  32518. source: "./media/characters/taivas-ensim/back.svg",
  32519. extra: 1355/1247,
  32520. bottom: 11/1366
  32521. }
  32522. },
  32523. frontNsfw: {
  32524. height: math.unit(3 + 10/12, "feet"),
  32525. weight: math.unit(90, "lb"),
  32526. name: "Front (NSFW)",
  32527. image: {
  32528. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32529. extra: 1327/1216,
  32530. bottom: 96/1423
  32531. }
  32532. },
  32533. backNsfw: {
  32534. height: math.unit(3 + 10/12, "feet"),
  32535. weight: math.unit(90, "lb"),
  32536. name: "Back (NSFW)",
  32537. image: {
  32538. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32539. extra: 1355/1247,
  32540. bottom: 11/1366
  32541. }
  32542. },
  32543. },
  32544. [
  32545. {
  32546. name: "Normal",
  32547. height: math.unit(3 + 10/12, "feet"),
  32548. default: true
  32549. },
  32550. ]
  32551. ))
  32552. characterMakers.push(() => makeCharacter(
  32553. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32554. {
  32555. front: {
  32556. height: math.unit(9 + 6/12, "feet"),
  32557. weight: math.unit(940, "lb"),
  32558. name: "Front",
  32559. image: {
  32560. source: "./media/characters/byliss/front.svg",
  32561. extra: 1327/1290,
  32562. bottom: 82/1409
  32563. }
  32564. },
  32565. back: {
  32566. height: math.unit(9 + 6/12, "feet"),
  32567. weight: math.unit(940, "lb"),
  32568. name: "Back",
  32569. image: {
  32570. source: "./media/characters/byliss/back.svg",
  32571. extra: 1376/1349,
  32572. bottom: 9/1385
  32573. }
  32574. },
  32575. frontNsfw: {
  32576. height: math.unit(9 + 6/12, "feet"),
  32577. weight: math.unit(940, "lb"),
  32578. name: "Front (NSFW)",
  32579. image: {
  32580. source: "./media/characters/byliss/front-nsfw.svg",
  32581. extra: 1327/1290,
  32582. bottom: 82/1409
  32583. }
  32584. },
  32585. backNsfw: {
  32586. height: math.unit(9 + 6/12, "feet"),
  32587. weight: math.unit(940, "lb"),
  32588. name: "Back (NSFW)",
  32589. image: {
  32590. source: "./media/characters/byliss/back-nsfw.svg",
  32591. extra: 1376/1349,
  32592. bottom: 9/1385
  32593. }
  32594. },
  32595. },
  32596. [
  32597. {
  32598. name: "Normal",
  32599. height: math.unit(9 + 6/12, "feet"),
  32600. default: true
  32601. },
  32602. ]
  32603. ))
  32604. characterMakers.push(() => makeCharacter(
  32605. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32606. {
  32607. front: {
  32608. height: math.unit(5 + 2/12, "feet"),
  32609. weight: math.unit(200, "lb"),
  32610. name: "Front",
  32611. image: {
  32612. source: "./media/characters/noraly/front.svg",
  32613. extra: 4985/4773,
  32614. bottom: 150/5135
  32615. }
  32616. },
  32617. full: {
  32618. height: math.unit(5 + 2/12, "feet"),
  32619. weight: math.unit(164, "lb"),
  32620. name: "Full",
  32621. image: {
  32622. source: "./media/characters/noraly/full.svg",
  32623. extra: 1114/1059,
  32624. bottom: 35/1149
  32625. }
  32626. },
  32627. fuller: {
  32628. height: math.unit(5 + 2/12, "feet"),
  32629. weight: math.unit(230, "lb"),
  32630. name: "Fuller",
  32631. image: {
  32632. source: "./media/characters/noraly/fuller.svg",
  32633. extra: 1114/1059,
  32634. bottom: 35/1149
  32635. }
  32636. },
  32637. fullest: {
  32638. height: math.unit(5 + 2/12, "feet"),
  32639. weight: math.unit(300, "lb"),
  32640. name: "Fullest",
  32641. image: {
  32642. source: "./media/characters/noraly/fullest.svg",
  32643. extra: 1114/1059,
  32644. bottom: 35/1149
  32645. }
  32646. },
  32647. },
  32648. [
  32649. {
  32650. name: "Normal",
  32651. height: math.unit(5 + 2/12, "feet"),
  32652. default: true
  32653. },
  32654. ]
  32655. ))
  32656. characterMakers.push(() => makeCharacter(
  32657. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32658. {
  32659. front: {
  32660. height: math.unit(5 + 2/12, "feet"),
  32661. weight: math.unit(210, "lb"),
  32662. name: "Front",
  32663. image: {
  32664. source: "./media/characters/pera/front.svg",
  32665. extra: 1560/1531,
  32666. bottom: 165/1725
  32667. }
  32668. },
  32669. back: {
  32670. height: math.unit(5 + 2/12, "feet"),
  32671. weight: math.unit(210, "lb"),
  32672. name: "Back",
  32673. image: {
  32674. source: "./media/characters/pera/back.svg",
  32675. extra: 1523/1493,
  32676. bottom: 152/1675
  32677. }
  32678. },
  32679. dick: {
  32680. height: math.unit(2.4, "feet"),
  32681. name: "Dick",
  32682. image: {
  32683. source: "./media/characters/pera/dick.svg"
  32684. }
  32685. },
  32686. },
  32687. [
  32688. {
  32689. name: "Normal",
  32690. height: math.unit(5 + 2/12, "feet"),
  32691. default: true
  32692. },
  32693. ]
  32694. ))
  32695. characterMakers.push(() => makeCharacter(
  32696. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32697. {
  32698. front: {
  32699. height: math.unit(12, "feet"),
  32700. weight: math.unit(3200, "lb"),
  32701. name: "Front",
  32702. image: {
  32703. source: "./media/characters/julian/front.svg",
  32704. extra: 2962/2701,
  32705. bottom: 184/3146
  32706. }
  32707. },
  32708. maw: {
  32709. height: math.unit(5.35, "feet"),
  32710. name: "Maw",
  32711. image: {
  32712. source: "./media/characters/julian/maw.svg"
  32713. }
  32714. },
  32715. paw: {
  32716. height: math.unit(3.07, "feet"),
  32717. name: "Paw",
  32718. image: {
  32719. source: "./media/characters/julian/paw.svg"
  32720. }
  32721. },
  32722. },
  32723. [
  32724. {
  32725. name: "Default",
  32726. height: math.unit(12, "feet"),
  32727. default: true
  32728. },
  32729. {
  32730. name: "Big",
  32731. height: math.unit(50, "feet")
  32732. },
  32733. {
  32734. name: "Really Big",
  32735. height: math.unit(1, "mile")
  32736. },
  32737. {
  32738. name: "Extremely Big",
  32739. height: math.unit(100, "miles")
  32740. },
  32741. {
  32742. name: "Planet Hugger",
  32743. height: math.unit(200, "megameters")
  32744. },
  32745. {
  32746. name: "Unreasonably Big",
  32747. height: math.unit(1e300, "meters")
  32748. },
  32749. ]
  32750. ))
  32751. characterMakers.push(() => makeCharacter(
  32752. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32753. {
  32754. solgooleo: {
  32755. height: math.unit(4, "meters"),
  32756. weight: math.unit(6000*1.5, "kg"),
  32757. volume: math.unit(6000, "liters"),
  32758. name: "Solgooleo",
  32759. image: {
  32760. source: "./media/characters/pi/solgooleo.svg",
  32761. extra: 388/331,
  32762. bottom: 29/417
  32763. }
  32764. },
  32765. },
  32766. [
  32767. {
  32768. name: "Normal",
  32769. height: math.unit(4, "meters"),
  32770. default: true
  32771. },
  32772. ]
  32773. ))
  32774. characterMakers.push(() => makeCharacter(
  32775. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32776. {
  32777. front: {
  32778. height: math.unit(8, "feet"),
  32779. weight: math.unit(4, "tons"),
  32780. name: "Front",
  32781. image: {
  32782. source: "./media/characters/shaun/front.svg",
  32783. extra: 503/495,
  32784. bottom: 20/523
  32785. }
  32786. },
  32787. back: {
  32788. height: math.unit(8, "feet"),
  32789. weight: math.unit(4, "tons"),
  32790. name: "Back",
  32791. image: {
  32792. source: "./media/characters/shaun/back.svg",
  32793. extra: 487/480,
  32794. bottom: 20/507
  32795. }
  32796. },
  32797. },
  32798. [
  32799. {
  32800. name: "Lorg",
  32801. height: math.unit(8, "feet"),
  32802. default: true
  32803. },
  32804. ]
  32805. ))
  32806. characterMakers.push(() => makeCharacter(
  32807. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32808. {
  32809. front: {
  32810. height: math.unit(7, "feet"),
  32811. name: "Front",
  32812. image: {
  32813. source: "./media/characters/sini/front.svg",
  32814. extra: 726/678,
  32815. bottom: 35/761
  32816. }
  32817. },
  32818. back: {
  32819. height: math.unit(7, "feet"),
  32820. name: "Back",
  32821. image: {
  32822. source: "./media/characters/sini/back.svg",
  32823. extra: 743/701,
  32824. bottom: 12/755
  32825. }
  32826. },
  32827. mawAnthro: {
  32828. height: math.unit(2.14, "feet"),
  32829. name: "Maw (Anthro)",
  32830. image: {
  32831. source: "./media/characters/sini/maw-anthro.svg"
  32832. }
  32833. },
  32834. dick: {
  32835. height: math.unit(1.45, "feet"),
  32836. name: "Dick (Anthro)",
  32837. image: {
  32838. source: "./media/characters/sini/dick-anthro.svg"
  32839. }
  32840. },
  32841. feral: {
  32842. height: math.unit(16, "feet"),
  32843. name: "Feral",
  32844. image: {
  32845. source: "./media/characters/sini/feral.svg",
  32846. extra: 814/605,
  32847. bottom: 11/825
  32848. }
  32849. },
  32850. mawFeral: {
  32851. height: math.unit(5.66, "feet"),
  32852. name: "Maw-feral",
  32853. image: {
  32854. source: "./media/characters/sini/maw-feral.svg"
  32855. }
  32856. },
  32857. footFeral: {
  32858. height: math.unit(5.17, "feet"),
  32859. name: "Foot-feral",
  32860. image: {
  32861. source: "./media/characters/sini/foot-feral.svg"
  32862. }
  32863. },
  32864. },
  32865. [
  32866. {
  32867. name: "Normal",
  32868. height: math.unit(7, "feet"),
  32869. default: true
  32870. },
  32871. ]
  32872. ))
  32873. characterMakers.push(() => makeCharacter(
  32874. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32875. {
  32876. side: {
  32877. height: math.unit(13, "meters"),
  32878. weight: math.unit(9072, "kg"),
  32879. name: "Side",
  32880. image: {
  32881. source: "./media/characters/raylldo/side.svg",
  32882. extra: 403/344,
  32883. bottom: 42/445
  32884. }
  32885. },
  32886. leaping: {
  32887. height: math.unit(12.3, "meters"),
  32888. weight: math.unit(9072, "kg"),
  32889. name: "Leaping",
  32890. image: {
  32891. source: "./media/characters/raylldo/leaping.svg",
  32892. extra: 470/249,
  32893. bottom: 13/483
  32894. }
  32895. },
  32896. flying: {
  32897. height: math.unit(18, "meters"),
  32898. weight: math.unit(9072, "kg"),
  32899. name: "Flying",
  32900. image: {
  32901. source: "./media/characters/raylldo/flying.svg"
  32902. }
  32903. },
  32904. head: {
  32905. height: math.unit(5.85, "meters"),
  32906. name: "Head",
  32907. image: {
  32908. source: "./media/characters/raylldo/head.svg"
  32909. }
  32910. },
  32911. maw: {
  32912. height: math.unit(5.32, "meters"),
  32913. name: "Maw",
  32914. image: {
  32915. source: "./media/characters/raylldo/maw.svg"
  32916. }
  32917. },
  32918. eye: {
  32919. height: math.unit(0.54, "meters"),
  32920. name: "Eye",
  32921. image: {
  32922. source: "./media/characters/raylldo/eye.svg"
  32923. }
  32924. },
  32925. },
  32926. [
  32927. {
  32928. name: "Normal",
  32929. height: math.unit(13, "meters"),
  32930. default: true
  32931. },
  32932. ]
  32933. ))
  32934. characterMakers.push(() => makeCharacter(
  32935. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32936. {
  32937. anthroFront: {
  32938. height: math.unit(9, "feet"),
  32939. weight: math.unit(600, "lb"),
  32940. name: "Anthro (Front)",
  32941. image: {
  32942. source: "./media/characters/glint/anthro-front.svg",
  32943. extra: 1097/1018,
  32944. bottom: 28/1125
  32945. }
  32946. },
  32947. anthroBack: {
  32948. height: math.unit(9, "feet"),
  32949. weight: math.unit(600, "lb"),
  32950. name: "Anthro (Back)",
  32951. image: {
  32952. source: "./media/characters/glint/anthro-back.svg",
  32953. extra: 1154/997,
  32954. bottom: 36/1190
  32955. }
  32956. },
  32957. feral: {
  32958. height: math.unit(11, "feet"),
  32959. weight: math.unit(50000, "lb"),
  32960. name: "Feral",
  32961. image: {
  32962. source: "./media/characters/glint/feral.svg",
  32963. extra: 3035/1585,
  32964. bottom: 1169/4204
  32965. }
  32966. },
  32967. dickAnthro: {
  32968. height: math.unit(0.7, "meters"),
  32969. name: "Dick (Anthro)",
  32970. image: {
  32971. source: "./media/characters/glint/dick-anthro.svg"
  32972. }
  32973. },
  32974. dickFeral: {
  32975. height: math.unit(2.65, "meters"),
  32976. name: "Dick (Feral)",
  32977. image: {
  32978. source: "./media/characters/glint/dick-feral.svg"
  32979. }
  32980. },
  32981. slitHidden: {
  32982. height: math.unit(5.85, "meters"),
  32983. name: "Slit (Hidden)",
  32984. image: {
  32985. source: "./media/characters/glint/slit-hidden.svg"
  32986. }
  32987. },
  32988. slitErect: {
  32989. height: math.unit(5.85, "meters"),
  32990. name: "Slit (Erect)",
  32991. image: {
  32992. source: "./media/characters/glint/slit-erect.svg"
  32993. }
  32994. },
  32995. mawAnthro: {
  32996. height: math.unit(0.63, "meters"),
  32997. name: "Maw (Anthro)",
  32998. image: {
  32999. source: "./media/characters/glint/maw.svg"
  33000. }
  33001. },
  33002. mawFeral: {
  33003. height: math.unit(2.89, "meters"),
  33004. name: "Maw (Feral)",
  33005. image: {
  33006. source: "./media/characters/glint/maw.svg"
  33007. }
  33008. },
  33009. },
  33010. [
  33011. {
  33012. name: "Normal",
  33013. height: math.unit(9, "feet"),
  33014. default: true
  33015. },
  33016. ]
  33017. ))
  33018. characterMakers.push(() => makeCharacter(
  33019. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33020. {
  33021. side: {
  33022. height: math.unit(15, "feet"),
  33023. weight: math.unit(5000, "kg"),
  33024. name: "Side",
  33025. image: {
  33026. source: "./media/characters/kairne/side.svg",
  33027. extra: 979/811,
  33028. bottom: 13/992
  33029. }
  33030. },
  33031. front: {
  33032. height: math.unit(15, "feet"),
  33033. weight: math.unit(5000, "kg"),
  33034. name: "Front",
  33035. image: {
  33036. source: "./media/characters/kairne/front.svg",
  33037. extra: 908/814,
  33038. bottom: 26/934
  33039. }
  33040. },
  33041. sideNsfw: {
  33042. height: math.unit(15, "feet"),
  33043. weight: math.unit(5000, "kg"),
  33044. name: "Side (NSFW)",
  33045. image: {
  33046. source: "./media/characters/kairne/side-nsfw.svg",
  33047. extra: 979/811,
  33048. bottom: 13/992
  33049. }
  33050. },
  33051. frontNsfw: {
  33052. height: math.unit(15, "feet"),
  33053. weight: math.unit(5000, "kg"),
  33054. name: "Front (NSFW)",
  33055. image: {
  33056. source: "./media/characters/kairne/front-nsfw.svg",
  33057. extra: 908/814,
  33058. bottom: 26/934
  33059. }
  33060. },
  33061. dickCaged: {
  33062. height: math.unit(0.65, "meters"),
  33063. name: "Dick-caged",
  33064. image: {
  33065. source: "./media/characters/kairne/dick-caged.svg"
  33066. }
  33067. },
  33068. dick: {
  33069. height: math.unit(0.79, "meters"),
  33070. name: "Dick",
  33071. image: {
  33072. source: "./media/characters/kairne/dick.svg"
  33073. }
  33074. },
  33075. genitals: {
  33076. height: math.unit(1.29, "meters"),
  33077. name: "Genitals",
  33078. image: {
  33079. source: "./media/characters/kairne/genitals.svg"
  33080. }
  33081. },
  33082. maw: {
  33083. height: math.unit(1.73, "meters"),
  33084. name: "Maw",
  33085. image: {
  33086. source: "./media/characters/kairne/maw.svg"
  33087. }
  33088. },
  33089. },
  33090. [
  33091. {
  33092. name: "Normal",
  33093. height: math.unit(15, "feet"),
  33094. default: true
  33095. },
  33096. ]
  33097. ))
  33098. characterMakers.push(() => makeCharacter(
  33099. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33100. {
  33101. front: {
  33102. height: math.unit(5 + 8/12, "feet"),
  33103. weight: math.unit(139, "lb"),
  33104. name: "Front",
  33105. image: {
  33106. source: "./media/characters/biscuit-jackal/front.svg",
  33107. extra: 2106/1961,
  33108. bottom: 58/2164
  33109. }
  33110. },
  33111. back: {
  33112. height: math.unit(5 + 8/12, "feet"),
  33113. weight: math.unit(139, "lb"),
  33114. name: "Back",
  33115. image: {
  33116. source: "./media/characters/biscuit-jackal/back.svg",
  33117. extra: 2132/1976,
  33118. bottom: 57/2189
  33119. }
  33120. },
  33121. werejackal: {
  33122. height: math.unit(6 + 3/12, "feet"),
  33123. weight: math.unit(188, "lb"),
  33124. name: "Werejackal",
  33125. image: {
  33126. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33127. extra: 2373/2178,
  33128. bottom: 53/2426
  33129. }
  33130. },
  33131. },
  33132. [
  33133. {
  33134. name: "Normal",
  33135. height: math.unit(5 + 8/12, "feet"),
  33136. default: true
  33137. },
  33138. ]
  33139. ))
  33140. characterMakers.push(() => makeCharacter(
  33141. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33142. {
  33143. front: {
  33144. height: math.unit(140, "cm"),
  33145. weight: math.unit(45, "kg"),
  33146. name: "Front",
  33147. image: {
  33148. source: "./media/characters/tayra-white/front.svg",
  33149. extra: 2229/2192,
  33150. bottom: 75/2304
  33151. }
  33152. },
  33153. },
  33154. [
  33155. {
  33156. name: "Normal",
  33157. height: math.unit(140, "cm"),
  33158. default: true
  33159. },
  33160. ]
  33161. ))
  33162. characterMakers.push(() => makeCharacter(
  33163. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33164. {
  33165. front: {
  33166. height: math.unit(4 + 5/12, "feet"),
  33167. name: "Front",
  33168. image: {
  33169. source: "./media/characters/scoop/front.svg",
  33170. extra: 1257/1136,
  33171. bottom: 69/1326
  33172. }
  33173. },
  33174. back: {
  33175. height: math.unit(4 + 5/12, "feet"),
  33176. name: "Back",
  33177. image: {
  33178. source: "./media/characters/scoop/back.svg",
  33179. extra: 1321/1152,
  33180. bottom: 32/1353
  33181. }
  33182. },
  33183. maw: {
  33184. height: math.unit(0.68, "feet"),
  33185. name: "Maw",
  33186. image: {
  33187. source: "./media/characters/scoop/maw.svg"
  33188. }
  33189. },
  33190. },
  33191. [
  33192. {
  33193. name: "Really Small",
  33194. height: math.unit(1, "mm")
  33195. },
  33196. {
  33197. name: "Micro",
  33198. height: math.unit(1, "inch")
  33199. },
  33200. {
  33201. name: "Normal",
  33202. height: math.unit(4 + 5/12, "feet"),
  33203. default: true
  33204. },
  33205. {
  33206. name: "Macro",
  33207. height: math.unit(200, "feet")
  33208. },
  33209. {
  33210. name: "Megamacro",
  33211. height: math.unit(3240, "feet")
  33212. },
  33213. {
  33214. name: "Teramacro",
  33215. height: math.unit(2500, "miles")
  33216. },
  33217. ]
  33218. ))
  33219. characterMakers.push(() => makeCharacter(
  33220. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33221. {
  33222. front: {
  33223. height: math.unit(15 + 7/12, "feet"),
  33224. name: "Front",
  33225. image: {
  33226. source: "./media/characters/saphinara/front.svg",
  33227. extra: 604/546,
  33228. bottom: 19/623
  33229. }
  33230. },
  33231. side: {
  33232. height: math.unit(15 + 7/12, "feet"),
  33233. name: "Side",
  33234. image: {
  33235. source: "./media/characters/saphinara/side.svg",
  33236. extra: 605/547,
  33237. bottom: 6/611
  33238. }
  33239. },
  33240. back: {
  33241. height: math.unit(15 + 7/12, "feet"),
  33242. name: "Back",
  33243. image: {
  33244. source: "./media/characters/saphinara/back.svg",
  33245. extra: 591/531,
  33246. bottom: 13/604
  33247. }
  33248. },
  33249. frontTail: {
  33250. height: math.unit(15 + 7/12, "feet"),
  33251. name: "Front (Full Tail)",
  33252. image: {
  33253. source: "./media/characters/saphinara/front-tail.svg",
  33254. extra: 748/547,
  33255. bottom: 66/814
  33256. }
  33257. },
  33258. },
  33259. [
  33260. {
  33261. name: "Normal",
  33262. height: math.unit(15 + 7/12, "feet"),
  33263. default: true
  33264. },
  33265. {
  33266. name: "Angry",
  33267. height: math.unit(30 + 6/12, "feet")
  33268. },
  33269. {
  33270. name: "Enraged",
  33271. height: math.unit(102 + 1/12, "feet")
  33272. },
  33273. ]
  33274. ))
  33275. characterMakers.push(() => makeCharacter(
  33276. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33277. {
  33278. front: {
  33279. height: math.unit(6 + 8/12, "feet"),
  33280. weight: math.unit(300, "lb"),
  33281. name: "Front",
  33282. image: {
  33283. source: "./media/characters/jrain/front.svg",
  33284. extra: 3039/2865,
  33285. bottom: 399/3438
  33286. }
  33287. },
  33288. back: {
  33289. height: math.unit(6 + 8/12, "feet"),
  33290. weight: math.unit(300, "lb"),
  33291. name: "Back",
  33292. image: {
  33293. source: "./media/characters/jrain/back.svg",
  33294. extra: 3089/2938,
  33295. bottom: 172/3261
  33296. }
  33297. },
  33298. head: {
  33299. height: math.unit(2.14, "feet"),
  33300. name: "Head",
  33301. image: {
  33302. source: "./media/characters/jrain/head.svg"
  33303. }
  33304. },
  33305. maw: {
  33306. height: math.unit(1.77, "feet"),
  33307. name: "Maw",
  33308. image: {
  33309. source: "./media/characters/jrain/maw.svg"
  33310. }
  33311. },
  33312. leftHand: {
  33313. height: math.unit(1.1, "feet"),
  33314. name: "Left Hand",
  33315. image: {
  33316. source: "./media/characters/jrain/left-hand.svg"
  33317. }
  33318. },
  33319. rightHand: {
  33320. height: math.unit(1.1, "feet"),
  33321. name: "Right Hand",
  33322. image: {
  33323. source: "./media/characters/jrain/right-hand.svg"
  33324. }
  33325. },
  33326. eye: {
  33327. height: math.unit(0.35, "feet"),
  33328. name: "Eye",
  33329. image: {
  33330. source: "./media/characters/jrain/eye.svg"
  33331. }
  33332. },
  33333. },
  33334. [
  33335. {
  33336. name: "Normal",
  33337. height: math.unit(6 + 8/12, "feet"),
  33338. default: true
  33339. },
  33340. {
  33341. name: "Casually Large",
  33342. height: math.unit(25, "feet")
  33343. },
  33344. {
  33345. name: "Giant",
  33346. height: math.unit(100, "feet")
  33347. },
  33348. {
  33349. name: "Kaiju",
  33350. height: math.unit(300, "feet")
  33351. },
  33352. ]
  33353. ))
  33354. characterMakers.push(() => makeCharacter(
  33355. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33356. {
  33357. dragon: {
  33358. height: math.unit(5, "meters"),
  33359. name: "Dragon",
  33360. image: {
  33361. source: "./media/characters/sabrina/dragon.svg",
  33362. extra: 3670 / 2365,
  33363. bottom: 333 / 4003
  33364. }
  33365. },
  33366. gryphon: {
  33367. height: math.unit(3, "meters"),
  33368. name: "Gryphon",
  33369. image: {
  33370. source: "./media/characters/sabrina/gryphon.svg",
  33371. extra: 1576 / 945,
  33372. bottom: 71 / 1647
  33373. }
  33374. },
  33375. snake: {
  33376. height: math.unit(12, "meters"),
  33377. name: "Snake",
  33378. image: {
  33379. source: "./media/characters/sabrina/snake.svg",
  33380. extra: 1758 / 1320,
  33381. bottom: 186 / 1944
  33382. }
  33383. },
  33384. collar: {
  33385. height: math.unit(1.86, "meters"),
  33386. name: "Collar",
  33387. image: {
  33388. source: "./media/characters/sabrina/collar.svg"
  33389. }
  33390. },
  33391. eye: {
  33392. height: math.unit(0.53, "meters"),
  33393. name: "Eye",
  33394. image: {
  33395. source: "./media/characters/sabrina/eye.svg"
  33396. }
  33397. },
  33398. foot: {
  33399. height: math.unit(1.86, "meters"),
  33400. name: "Foot",
  33401. image: {
  33402. source: "./media/characters/sabrina/foot.svg"
  33403. }
  33404. },
  33405. hand: {
  33406. height: math.unit(1.32, "meters"),
  33407. name: "Hand",
  33408. image: {
  33409. source: "./media/characters/sabrina/hand.svg"
  33410. }
  33411. },
  33412. head: {
  33413. height: math.unit(2.44, "meters"),
  33414. name: "Head",
  33415. image: {
  33416. source: "./media/characters/sabrina/head.svg"
  33417. }
  33418. },
  33419. headAngry: {
  33420. height: math.unit(2.44, "meters"),
  33421. name: "Head (Angry))",
  33422. image: {
  33423. source: "./media/characters/sabrina/head-angry.svg"
  33424. }
  33425. },
  33426. maw: {
  33427. height: math.unit(1.65, "meters"),
  33428. name: "Maw",
  33429. image: {
  33430. source: "./media/characters/sabrina/maw.svg"
  33431. }
  33432. },
  33433. spikes: {
  33434. height: math.unit(1.69, "meters"),
  33435. name: "Spikes",
  33436. image: {
  33437. source: "./media/characters/sabrina/spikes.svg"
  33438. }
  33439. },
  33440. stomach: {
  33441. height: math.unit(1.15, "meters"),
  33442. name: "Stomach",
  33443. image: {
  33444. source: "./media/characters/sabrina/stomach.svg"
  33445. }
  33446. },
  33447. tongue: {
  33448. height: math.unit(1.27, "meters"),
  33449. name: "Tongue",
  33450. image: {
  33451. source: "./media/characters/sabrina/tongue.svg"
  33452. }
  33453. },
  33454. wingDorsal: {
  33455. height: math.unit(4.85, "meters"),
  33456. name: "Wing (Dorsal)",
  33457. image: {
  33458. source: "./media/characters/sabrina/wing-dorsal.svg"
  33459. }
  33460. },
  33461. wingVentral: {
  33462. height: math.unit(4.85, "meters"),
  33463. name: "Wing (Ventral)",
  33464. image: {
  33465. source: "./media/characters/sabrina/wing-ventral.svg"
  33466. }
  33467. },
  33468. },
  33469. [
  33470. {
  33471. name: "Normal",
  33472. height: math.unit(5, "meters"),
  33473. default: true
  33474. },
  33475. ]
  33476. ))
  33477. characterMakers.push(() => makeCharacter(
  33478. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33479. {
  33480. frontMaid: {
  33481. height: math.unit(5 + 5/12, "feet"),
  33482. weight: math.unit(130, "lb"),
  33483. name: "Front (Maid)",
  33484. image: {
  33485. source: "./media/characters/midnight-tales/front-maid.svg",
  33486. extra: 489/454,
  33487. bottom: 61/550
  33488. }
  33489. },
  33490. frontFormal: {
  33491. height: math.unit(5 + 5/12, "feet"),
  33492. weight: math.unit(130, "lb"),
  33493. name: "Front (Formal)",
  33494. image: {
  33495. source: "./media/characters/midnight-tales/front-formal.svg",
  33496. extra: 489/454,
  33497. bottom: 61/550
  33498. }
  33499. },
  33500. back: {
  33501. height: math.unit(5 + 5/12, "feet"),
  33502. weight: math.unit(130, "lb"),
  33503. name: "Back",
  33504. image: {
  33505. source: "./media/characters/midnight-tales/back.svg",
  33506. extra: 498/456,
  33507. bottom: 33/531
  33508. }
  33509. },
  33510. frontBeast: {
  33511. height: math.unit(40, "feet"),
  33512. weight: math.unit(64000, "lb"),
  33513. name: "Front (Beast)",
  33514. image: {
  33515. source: "./media/characters/midnight-tales/front-beast.svg",
  33516. extra: 927/860,
  33517. bottom: 53/980
  33518. }
  33519. },
  33520. backBeast: {
  33521. height: math.unit(40, "feet"),
  33522. weight: math.unit(64000, "lb"),
  33523. name: "Back (Beast)",
  33524. image: {
  33525. source: "./media/characters/midnight-tales/back-beast.svg",
  33526. extra: 929/855,
  33527. bottom: 16/945
  33528. }
  33529. },
  33530. footBeast: {
  33531. height: math.unit(6.7, "feet"),
  33532. name: "Foot (Beast)",
  33533. image: {
  33534. source: "./media/characters/midnight-tales/foot-beast.svg"
  33535. }
  33536. },
  33537. headBeast: {
  33538. height: math.unit(8, "feet"),
  33539. name: "Head (Beast)",
  33540. image: {
  33541. source: "./media/characters/midnight-tales/head-beast.svg"
  33542. }
  33543. },
  33544. },
  33545. [
  33546. {
  33547. name: "Normal",
  33548. height: math.unit(5 + 5 / 12, "feet"),
  33549. default: true
  33550. },
  33551. {
  33552. name: "Macro",
  33553. height: math.unit(25, "feet")
  33554. },
  33555. ]
  33556. ))
  33557. characterMakers.push(() => makeCharacter(
  33558. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33559. {
  33560. front: {
  33561. height: math.unit(5 + 10/12, "feet"),
  33562. name: "Front",
  33563. image: {
  33564. source: "./media/characters/argon/front.svg",
  33565. extra: 2009/1935,
  33566. bottom: 118/2127
  33567. }
  33568. },
  33569. back: {
  33570. height: math.unit(5 + 10/12, "feet"),
  33571. name: "Back",
  33572. image: {
  33573. source: "./media/characters/argon/back.svg",
  33574. extra: 2047/1992,
  33575. bottom: 20/2067
  33576. }
  33577. },
  33578. frontDressed: {
  33579. height: math.unit(5 + 10/12, "feet"),
  33580. name: "Front (Dressed)",
  33581. image: {
  33582. source: "./media/characters/argon/front-dressed.svg",
  33583. extra: 2009/1935,
  33584. bottom: 118/2127
  33585. }
  33586. },
  33587. },
  33588. [
  33589. {
  33590. name: "Normal",
  33591. height: math.unit(5 + 10/12, "feet"),
  33592. default: true
  33593. },
  33594. ]
  33595. ))
  33596. characterMakers.push(() => makeCharacter(
  33597. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33598. {
  33599. front: {
  33600. height: math.unit(8 + 6/12, "feet"),
  33601. weight: math.unit(1150, "lb"),
  33602. name: "Front",
  33603. image: {
  33604. source: "./media/characters/kichi/front.svg",
  33605. extra: 1267/1164,
  33606. bottom: 61/1328
  33607. }
  33608. },
  33609. back: {
  33610. height: math.unit(8 + 6/12, "feet"),
  33611. weight: math.unit(1150, "lb"),
  33612. name: "Back",
  33613. image: {
  33614. source: "./media/characters/kichi/back.svg",
  33615. extra: 1273/1166,
  33616. bottom: 33/1306
  33617. }
  33618. },
  33619. },
  33620. [
  33621. {
  33622. name: "Normal",
  33623. height: math.unit(8 + 6/12, "feet"),
  33624. default: true
  33625. },
  33626. ]
  33627. ))
  33628. characterMakers.push(() => makeCharacter(
  33629. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33630. {
  33631. front: {
  33632. height: math.unit(6, "feet"),
  33633. weight: math.unit(210, "lb"),
  33634. name: "Front",
  33635. image: {
  33636. source: "./media/characters/manetel-greyscale/front.svg",
  33637. extra: 350/312,
  33638. bottom: 8/358
  33639. }
  33640. },
  33641. },
  33642. [
  33643. {
  33644. name: "Micro",
  33645. height: math.unit(2, "inches")
  33646. },
  33647. {
  33648. name: "Normal",
  33649. height: math.unit(6, "feet"),
  33650. default: true
  33651. },
  33652. {
  33653. name: "Minimacro",
  33654. height: math.unit(17, "feet")
  33655. },
  33656. {
  33657. name: "Macro",
  33658. height: math.unit(117, "feet")
  33659. },
  33660. ]
  33661. ))
  33662. characterMakers.push(() => makeCharacter(
  33663. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33664. {
  33665. side: {
  33666. height: math.unit(5 + 1/12, "feet"),
  33667. weight: math.unit(418, "lb"),
  33668. name: "Side",
  33669. image: {
  33670. source: "./media/characters/softpurr/side.svg",
  33671. extra: 1993/1945,
  33672. bottom: 134/2127
  33673. }
  33674. },
  33675. front: {
  33676. height: math.unit(5 + 1/12, "feet"),
  33677. weight: math.unit(418, "lb"),
  33678. name: "Front",
  33679. image: {
  33680. source: "./media/characters/softpurr/front.svg",
  33681. extra: 1950/1856,
  33682. bottom: 174/2124
  33683. }
  33684. },
  33685. paw: {
  33686. height: math.unit(1, "feet"),
  33687. name: "Paw",
  33688. image: {
  33689. source: "./media/characters/softpurr/paw.svg"
  33690. }
  33691. },
  33692. },
  33693. [
  33694. {
  33695. name: "Normal",
  33696. height: math.unit(5 + 1/12, "feet"),
  33697. default: true
  33698. },
  33699. ]
  33700. ))
  33701. characterMakers.push(() => makeCharacter(
  33702. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33703. {
  33704. front: {
  33705. height: math.unit(260, "meters"),
  33706. name: "Front",
  33707. image: {
  33708. source: "./media/characters/anahita/front.svg",
  33709. extra: 665/635,
  33710. bottom: 89/754
  33711. }
  33712. },
  33713. },
  33714. [
  33715. {
  33716. name: "Macro",
  33717. height: math.unit(260, "meters"),
  33718. default: true
  33719. },
  33720. ]
  33721. ))
  33722. characterMakers.push(() => makeCharacter(
  33723. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33724. {
  33725. front: {
  33726. height: math.unit(4 + 10/12, "feet"),
  33727. weight: math.unit(160, "lb"),
  33728. name: "Front",
  33729. image: {
  33730. source: "./media/characters/chip-mouse/front.svg",
  33731. extra: 3528/3408,
  33732. bottom: 0/3528
  33733. }
  33734. },
  33735. frontNsfw: {
  33736. height: math.unit(4 + 10/12, "feet"),
  33737. weight: math.unit(160, "lb"),
  33738. name: "Front (NSFW)",
  33739. image: {
  33740. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33741. extra: 3528/3408,
  33742. bottom: 0/3528
  33743. }
  33744. },
  33745. },
  33746. [
  33747. {
  33748. name: "Normal",
  33749. height: math.unit(4 + 10/12, "feet"),
  33750. default: true
  33751. },
  33752. ]
  33753. ))
  33754. characterMakers.push(() => makeCharacter(
  33755. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33756. {
  33757. side: {
  33758. height: math.unit(10, "feet"),
  33759. weight: math.unit(14000, "lb"),
  33760. name: "Side",
  33761. image: {
  33762. source: "./media/characters/kremm/side.svg",
  33763. extra: 1390/1053,
  33764. bottom: 90/1480
  33765. }
  33766. },
  33767. gut: {
  33768. height: math.unit(5.8, "feet"),
  33769. name: "Gut",
  33770. image: {
  33771. source: "./media/characters/kremm/gut.svg"
  33772. }
  33773. },
  33774. ass: {
  33775. height: math.unit(6.1, "feet"),
  33776. name: "Ass",
  33777. image: {
  33778. source: "./media/characters/kremm/ass.svg"
  33779. }
  33780. },
  33781. jaws: {
  33782. height: math.unit(2.2, "feet"),
  33783. name: "Jaws",
  33784. image: {
  33785. source: "./media/characters/kremm/jaws.svg"
  33786. }
  33787. },
  33788. dick: {
  33789. height: math.unit(4.26, "feet"),
  33790. name: "Dick",
  33791. image: {
  33792. source: "./media/characters/kremm/dick.svg"
  33793. }
  33794. },
  33795. },
  33796. [
  33797. {
  33798. name: "Normal",
  33799. height: math.unit(10, "feet"),
  33800. default: true
  33801. },
  33802. ]
  33803. ))
  33804. characterMakers.push(() => makeCharacter(
  33805. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33806. {
  33807. front: {
  33808. height: math.unit(30, "stories"),
  33809. name: "Front",
  33810. image: {
  33811. source: "./media/characters/kai/front.svg",
  33812. extra: 1892/1718,
  33813. bottom: 162/2054
  33814. }
  33815. },
  33816. },
  33817. [
  33818. {
  33819. name: "Macro",
  33820. height: math.unit(30, "stories"),
  33821. default: true
  33822. },
  33823. ]
  33824. ))
  33825. characterMakers.push(() => makeCharacter(
  33826. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33827. {
  33828. front: {
  33829. height: math.unit(6 + 4/12, "feet"),
  33830. weight: math.unit(145, "lb"),
  33831. name: "Front",
  33832. image: {
  33833. source: "./media/characters/sykes/front.svg",
  33834. extra: 1321 / 1187,
  33835. bottom: 66 / 1387
  33836. }
  33837. },
  33838. back: {
  33839. height: math.unit(6 + 4/12, "feet"),
  33840. weight: math.unit(145, "lb"),
  33841. name: "Back",
  33842. image: {
  33843. source: "./media/characters/sykes/back.svg",
  33844. extra: 1326/1181,
  33845. bottom: 31/1357
  33846. }
  33847. },
  33848. handBack: {
  33849. height: math.unit(0.9, "feet"),
  33850. name: "Hand (Back)",
  33851. image: {
  33852. source: "./media/characters/sykes/hand-back.svg"
  33853. }
  33854. },
  33855. handFront: {
  33856. height: math.unit(0.839, "feet"),
  33857. name: "Hand (Front)",
  33858. image: {
  33859. source: "./media/characters/sykes/hand-front.svg"
  33860. }
  33861. },
  33862. leftFoot: {
  33863. height: math.unit(1.2, "feet"),
  33864. name: "Foot (Left)",
  33865. image: {
  33866. source: "./media/characters/sykes/foot-left.svg"
  33867. }
  33868. },
  33869. rightFoot: {
  33870. height: math.unit(1.2, "feet"),
  33871. name: "Foot (Right)",
  33872. image: {
  33873. source: "./media/characters/sykes/foot-right.svg"
  33874. }
  33875. },
  33876. maw: {
  33877. height: math.unit(1.93, "feet"),
  33878. name: "Maw",
  33879. image: {
  33880. source: "./media/characters/sykes/maw.svg"
  33881. }
  33882. },
  33883. teeth: {
  33884. height: math.unit(0.51, "feet"),
  33885. name: "Teeth",
  33886. image: {
  33887. source: "./media/characters/sykes/teeth.svg"
  33888. }
  33889. },
  33890. tongue: {
  33891. height: math.unit(2.13, "feet"),
  33892. name: "Tongue",
  33893. image: {
  33894. source: "./media/characters/sykes/tongue.svg"
  33895. }
  33896. },
  33897. uvula: {
  33898. height: math.unit(0.16, "feet"),
  33899. name: "Uvula",
  33900. image: {
  33901. source: "./media/characters/sykes/uvula.svg"
  33902. }
  33903. },
  33904. collar: {
  33905. height: math.unit(0.287, "feet"),
  33906. name: "Collar",
  33907. image: {
  33908. source: "./media/characters/sykes/collar.svg"
  33909. }
  33910. },
  33911. },
  33912. [
  33913. {
  33914. name: "Shrunken",
  33915. height: math.unit(5, "inches")
  33916. },
  33917. {
  33918. name: "Normal",
  33919. height: math.unit(6 + 4 / 12, "feet"),
  33920. default: true
  33921. },
  33922. {
  33923. name: "Big",
  33924. height: math.unit(15, "feet")
  33925. },
  33926. ]
  33927. ))
  33928. characterMakers.push(() => makeCharacter(
  33929. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33930. {
  33931. front: {
  33932. height: math.unit(5 + 8/12, "feet"),
  33933. weight: math.unit(190, "lb"),
  33934. name: "Front",
  33935. image: {
  33936. source: "./media/characters/oven-otter/front.svg",
  33937. extra: 1809/1740,
  33938. bottom: 181/1990
  33939. }
  33940. },
  33941. back: {
  33942. height: math.unit(5 + 8/12, "feet"),
  33943. weight: math.unit(190, "lb"),
  33944. name: "Back",
  33945. image: {
  33946. source: "./media/characters/oven-otter/back.svg",
  33947. extra: 1709/1635,
  33948. bottom: 118/1827
  33949. }
  33950. },
  33951. hand: {
  33952. height: math.unit(1.07, "feet"),
  33953. name: "Hand",
  33954. image: {
  33955. source: "./media/characters/oven-otter/hand.svg"
  33956. }
  33957. },
  33958. beans: {
  33959. height: math.unit(1.74, "feet"),
  33960. name: "Beans",
  33961. image: {
  33962. source: "./media/characters/oven-otter/beans.svg"
  33963. }
  33964. },
  33965. },
  33966. [
  33967. {
  33968. name: "Micro",
  33969. height: math.unit(0.5, "inches")
  33970. },
  33971. {
  33972. name: "Normal",
  33973. height: math.unit(5 + 8/12, "feet"),
  33974. default: true
  33975. },
  33976. {
  33977. name: "Macro",
  33978. height: math.unit(250, "feet")
  33979. },
  33980. {
  33981. name: "Really High",
  33982. height: math.unit(420, "feet")
  33983. },
  33984. ]
  33985. ))
  33986. characterMakers.push(() => makeCharacter(
  33987. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33988. {
  33989. front: {
  33990. height: math.unit(5, "meters"),
  33991. weight: math.unit(292000000000000, "kg"),
  33992. name: "Front",
  33993. image: {
  33994. source: "./media/characters/devourer/front.svg",
  33995. extra: 1800/1733,
  33996. bottom: 211/2011
  33997. }
  33998. },
  33999. maw: {
  34000. height: math.unit(1.1, "meter"),
  34001. name: "Maw",
  34002. image: {
  34003. source: "./media/characters/devourer/maw.svg"
  34004. }
  34005. },
  34006. },
  34007. [
  34008. {
  34009. name: "Small",
  34010. height: math.unit(3, "meters")
  34011. },
  34012. {
  34013. name: "Large",
  34014. height: math.unit(5, "meters"),
  34015. default: true
  34016. },
  34017. ]
  34018. ))
  34019. characterMakers.push(() => makeCharacter(
  34020. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34021. {
  34022. front: {
  34023. height: math.unit(6, "feet"),
  34024. weight: math.unit(400, "lb"),
  34025. name: "Front",
  34026. image: {
  34027. source: "./media/characters/ellarby/front.svg",
  34028. extra: 1909/1763,
  34029. bottom: 80/1989
  34030. }
  34031. },
  34032. back: {
  34033. height: math.unit(6, "feet"),
  34034. weight: math.unit(400, "lb"),
  34035. name: "Back",
  34036. image: {
  34037. source: "./media/characters/ellarby/back.svg",
  34038. extra: 1914/1784,
  34039. bottom: 172/2086
  34040. }
  34041. },
  34042. },
  34043. [
  34044. {
  34045. name: "Mischief",
  34046. height: math.unit(18, "inches")
  34047. },
  34048. {
  34049. name: "Trouble",
  34050. height: math.unit(12, "feet")
  34051. },
  34052. {
  34053. name: "Havoc",
  34054. height: math.unit(200, "feet"),
  34055. default: true
  34056. },
  34057. {
  34058. name: "Pandemonium",
  34059. height: math.unit(1, "mile")
  34060. },
  34061. {
  34062. name: "Catastrophe",
  34063. height: math.unit(100, "miles")
  34064. },
  34065. ]
  34066. ))
  34067. characterMakers.push(() => makeCharacter(
  34068. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34069. {
  34070. front: {
  34071. height: math.unit(4.7, "meters"),
  34072. weight: math.unit(6500, "kg"),
  34073. name: "Front",
  34074. image: {
  34075. source: "./media/characters/vex/front.svg",
  34076. extra: 1288/1140,
  34077. bottom: 100/1388
  34078. }
  34079. },
  34080. },
  34081. [
  34082. {
  34083. name: "Normal",
  34084. height: math.unit(4.7, "meters"),
  34085. default: true
  34086. },
  34087. ]
  34088. ))
  34089. characterMakers.push(() => makeCharacter(
  34090. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34091. {
  34092. normal: {
  34093. height: math.unit(6, "feet"),
  34094. weight: math.unit(350, "lb"),
  34095. name: "Normal",
  34096. image: {
  34097. source: "./media/characters/teshy/normal.svg",
  34098. extra: 1795/1735,
  34099. bottom: 16/1811
  34100. }
  34101. },
  34102. monsterFront: {
  34103. height: math.unit(12, "feet"),
  34104. weight: math.unit(4700, "lb"),
  34105. name: "Monster (Front)",
  34106. image: {
  34107. source: "./media/characters/teshy/monster-front.svg",
  34108. extra: 2042/2034,
  34109. bottom: 128/2170
  34110. }
  34111. },
  34112. monsterSide: {
  34113. height: math.unit(12, "feet"),
  34114. weight: math.unit(4700, "lb"),
  34115. name: "Monster (Side)",
  34116. image: {
  34117. source: "./media/characters/teshy/monster-side.svg",
  34118. extra: 2067/2056,
  34119. bottom: 70/2137
  34120. }
  34121. },
  34122. monsterBack: {
  34123. height: math.unit(12, "feet"),
  34124. weight: math.unit(4700, "lb"),
  34125. name: "Monster (Back)",
  34126. image: {
  34127. source: "./media/characters/teshy/monster-back.svg",
  34128. extra: 1921/1914,
  34129. bottom: 171/2092
  34130. }
  34131. },
  34132. },
  34133. [
  34134. {
  34135. name: "Normal",
  34136. height: math.unit(6, "feet"),
  34137. default: true
  34138. },
  34139. ]
  34140. ))
  34141. characterMakers.push(() => makeCharacter(
  34142. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34143. {
  34144. front: {
  34145. height: math.unit(6, "feet"),
  34146. name: "Front",
  34147. image: {
  34148. source: "./media/characters/ramey/front.svg",
  34149. extra: 790/787,
  34150. bottom: 27/817
  34151. }
  34152. },
  34153. },
  34154. [
  34155. {
  34156. name: "Normal",
  34157. height: math.unit(6, "feet"),
  34158. default: true
  34159. },
  34160. ]
  34161. ))
  34162. characterMakers.push(() => makeCharacter(
  34163. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34164. {
  34165. front: {
  34166. height: math.unit(5 + 5/12, "feet"),
  34167. weight: math.unit(120, "lb"),
  34168. name: "Front",
  34169. image: {
  34170. source: "./media/characters/phirae/front.svg",
  34171. extra: 2491/2436,
  34172. bottom: 38/2529
  34173. }
  34174. },
  34175. },
  34176. [
  34177. {
  34178. name: "Normal",
  34179. height: math.unit(5 + 5/12, "feet"),
  34180. default: true
  34181. },
  34182. ]
  34183. ))
  34184. characterMakers.push(() => makeCharacter(
  34185. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34186. {
  34187. front: {
  34188. height: math.unit(5 + 3/12, "feet"),
  34189. name: "Front",
  34190. image: {
  34191. source: "./media/characters/stagglas/front.svg",
  34192. extra: 962/882,
  34193. bottom: 53/1015
  34194. }
  34195. },
  34196. feral: {
  34197. height: math.unit(335, "cm"),
  34198. name: "Feral",
  34199. image: {
  34200. source: "./media/characters/stagglas/feral.svg",
  34201. extra: 1732/1090,
  34202. bottom: 48/1780
  34203. }
  34204. },
  34205. },
  34206. [
  34207. {
  34208. name: "Normal",
  34209. height: math.unit(5 + 3/12, "feet"),
  34210. default: true
  34211. },
  34212. ]
  34213. ))
  34214. characterMakers.push(() => makeCharacter(
  34215. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34216. {
  34217. front: {
  34218. height: math.unit(5 + 4/12, "feet"),
  34219. weight: math.unit(145, "lb"),
  34220. name: "Front",
  34221. image: {
  34222. source: "./media/characters/starra/front.svg",
  34223. extra: 1790/1691,
  34224. bottom: 91/1881
  34225. }
  34226. },
  34227. },
  34228. [
  34229. {
  34230. name: "Normal",
  34231. height: math.unit(5 + 4/12, "feet"),
  34232. default: true
  34233. },
  34234. ]
  34235. ))
  34236. characterMakers.push(() => makeCharacter(
  34237. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34238. {
  34239. front: {
  34240. height: math.unit(2.2, "meters"),
  34241. name: "Front",
  34242. image: {
  34243. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34244. extra: 1194/1005,
  34245. bottom: 25/1219
  34246. }
  34247. },
  34248. },
  34249. [
  34250. {
  34251. name: "Normal",
  34252. height: math.unit(2.2, "meters"),
  34253. default: true
  34254. },
  34255. ]
  34256. ))
  34257. characterMakers.push(() => makeCharacter(
  34258. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34259. {
  34260. side: {
  34261. height: math.unit(8 + 2/12, "feet"),
  34262. weight: math.unit(1240, "lb"),
  34263. name: "Side",
  34264. image: {
  34265. source: "./media/characters/mika-valentine/side.svg",
  34266. extra: 2670/2501,
  34267. bottom: 250/2920
  34268. }
  34269. },
  34270. },
  34271. [
  34272. {
  34273. name: "Normal",
  34274. height: math.unit(8 + 2/12, "feet"),
  34275. default: true
  34276. },
  34277. ]
  34278. ))
  34279. characterMakers.push(() => makeCharacter(
  34280. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34281. {
  34282. front: {
  34283. height: math.unit(7 + 2/12, "feet"),
  34284. name: "Front",
  34285. image: {
  34286. source: "./media/characters/xoltol/front.svg",
  34287. extra: 2212/2124,
  34288. bottom: 84/2296
  34289. }
  34290. },
  34291. side: {
  34292. height: math.unit(7 + 2/12, "feet"),
  34293. name: "Side",
  34294. image: {
  34295. source: "./media/characters/xoltol/side.svg",
  34296. extra: 2273/2197,
  34297. bottom: 26/2299
  34298. }
  34299. },
  34300. hand: {
  34301. height: math.unit(2.5, "feet"),
  34302. name: "Hand",
  34303. image: {
  34304. source: "./media/characters/xoltol/hand.svg"
  34305. }
  34306. },
  34307. },
  34308. [
  34309. {
  34310. name: "Small-ish",
  34311. height: math.unit(5 + 11/12, "feet")
  34312. },
  34313. {
  34314. name: "Normal",
  34315. height: math.unit(7 + 2/12, "feet")
  34316. },
  34317. {
  34318. name: "\"Macro\"",
  34319. height: math.unit(14 + 9/12, "feet"),
  34320. default: true
  34321. },
  34322. {
  34323. name: "Alternate Height",
  34324. height: math.unit(20, "feet")
  34325. },
  34326. {
  34327. name: "Actually Macro",
  34328. height: math.unit(100, "feet")
  34329. },
  34330. ]
  34331. ))
  34332. characterMakers.push(() => makeCharacter(
  34333. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34334. {
  34335. front: {
  34336. height: math.unit(5 + 2/12, "feet"),
  34337. name: "Front",
  34338. image: {
  34339. source: "./media/characters/kotetsu-redwood/front.svg",
  34340. extra: 1053/942,
  34341. bottom: 60/1113
  34342. }
  34343. },
  34344. },
  34345. [
  34346. {
  34347. name: "Normal",
  34348. height: math.unit(5 + 2/12, "feet"),
  34349. default: true
  34350. },
  34351. ]
  34352. ))
  34353. characterMakers.push(() => makeCharacter(
  34354. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34355. {
  34356. front: {
  34357. height: math.unit(2.4, "meters"),
  34358. weight: math.unit(125, "kg"),
  34359. name: "Front",
  34360. image: {
  34361. source: "./media/characters/lilith/front.svg",
  34362. extra: 1590/1513,
  34363. bottom: 203/1793
  34364. }
  34365. },
  34366. },
  34367. [
  34368. {
  34369. name: "Humanoid",
  34370. height: math.unit(2.4, "meters")
  34371. },
  34372. {
  34373. name: "Normal",
  34374. height: math.unit(6, "meters"),
  34375. default: true
  34376. },
  34377. {
  34378. name: "Largest",
  34379. height: math.unit(55, "meters")
  34380. },
  34381. ]
  34382. ))
  34383. characterMakers.push(() => makeCharacter(
  34384. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34385. {
  34386. front: {
  34387. height: math.unit(8 + 4/12, "feet"),
  34388. weight: math.unit(535, "lb"),
  34389. name: "Front",
  34390. image: {
  34391. source: "./media/characters/beh'kah-bolger/front.svg",
  34392. extra: 1660/1603,
  34393. bottom: 37/1697
  34394. }
  34395. },
  34396. },
  34397. [
  34398. {
  34399. name: "Normal",
  34400. height: math.unit(8 + 4/12, "feet"),
  34401. default: true
  34402. },
  34403. {
  34404. name: "Kaiju",
  34405. height: math.unit(250, "feet")
  34406. },
  34407. {
  34408. name: "Still Growing",
  34409. height: math.unit(10, "miles")
  34410. },
  34411. {
  34412. name: "Continental",
  34413. height: math.unit(5000, "miles")
  34414. },
  34415. {
  34416. name: "Final Form",
  34417. height: math.unit(2500000, "miles")
  34418. },
  34419. ]
  34420. ))
  34421. characterMakers.push(() => makeCharacter(
  34422. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34423. {
  34424. front: {
  34425. height: math.unit(7 + 2/12, "feet"),
  34426. weight: math.unit(230, "kg"),
  34427. name: "Front",
  34428. image: {
  34429. source: "./media/characters/tatyana-milewska/front.svg",
  34430. extra: 1199/1150,
  34431. bottom: 86/1285
  34432. }
  34433. },
  34434. },
  34435. [
  34436. {
  34437. name: "Normal",
  34438. height: math.unit(7 + 2/12, "feet"),
  34439. default: true
  34440. },
  34441. {
  34442. name: "Big",
  34443. height: math.unit(12, "feet")
  34444. },
  34445. {
  34446. name: "Minimacro",
  34447. height: math.unit(20, "feet")
  34448. },
  34449. {
  34450. name: "Macro",
  34451. height: math.unit(120, "feet")
  34452. },
  34453. ]
  34454. ))
  34455. characterMakers.push(() => makeCharacter(
  34456. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34457. {
  34458. front: {
  34459. height: math.unit(7 + 8/12, "feet"),
  34460. weight: math.unit(152, "kg"),
  34461. name: "Front",
  34462. image: {
  34463. source: "./media/characters/helen-arri/front.svg",
  34464. extra: 440/423,
  34465. bottom: 14/454
  34466. }
  34467. },
  34468. back: {
  34469. height: math.unit(7 + 8/12, "feet"),
  34470. weight: math.unit(152, "kg"),
  34471. name: "Back",
  34472. image: {
  34473. source: "./media/characters/helen-arri/back.svg",
  34474. extra: 443/426,
  34475. bottom: 8/451
  34476. }
  34477. },
  34478. },
  34479. [
  34480. {
  34481. name: "Normal",
  34482. height: math.unit(7 + 8/12, "feet"),
  34483. default: true
  34484. },
  34485. {
  34486. name: "Big",
  34487. height: math.unit(14, "feet")
  34488. },
  34489. {
  34490. name: "Minimacro",
  34491. height: math.unit(24, "feet")
  34492. },
  34493. {
  34494. name: "Macro",
  34495. height: math.unit(140, "feet")
  34496. },
  34497. ]
  34498. ))
  34499. characterMakers.push(() => makeCharacter(
  34500. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34501. {
  34502. front: {
  34503. height: math.unit(6, "meters"),
  34504. name: "Front",
  34505. image: {
  34506. source: "./media/characters/ehanu-rehu/front.svg",
  34507. extra: 1800/1800,
  34508. bottom: 59/1859
  34509. }
  34510. },
  34511. },
  34512. [
  34513. {
  34514. name: "Normal",
  34515. height: math.unit(6, "meters"),
  34516. default: true
  34517. },
  34518. ]
  34519. ))
  34520. characterMakers.push(() => makeCharacter(
  34521. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34522. {
  34523. front: {
  34524. height: math.unit(7 + 3/12, "feet"),
  34525. name: "Front",
  34526. image: {
  34527. source: "./media/characters/renholder/front.svg",
  34528. extra: 3096/2960,
  34529. bottom: 250/3346
  34530. }
  34531. },
  34532. },
  34533. [
  34534. {
  34535. name: "Normal Bat",
  34536. height: math.unit(7 + 3/12, "feet"),
  34537. default: true
  34538. },
  34539. {
  34540. name: "Slightly Tall Bat",
  34541. height: math.unit(100, "feet")
  34542. },
  34543. {
  34544. name: "Big Bat",
  34545. height: math.unit(1000, "feet")
  34546. },
  34547. {
  34548. name: "City-Sized Bat",
  34549. height: math.unit(200000, "feet")
  34550. },
  34551. {
  34552. name: "Bigger Bat",
  34553. height: math.unit(10000, "miles")
  34554. },
  34555. {
  34556. name: "Solar Sized Bat",
  34557. height: math.unit(100, "AU")
  34558. },
  34559. {
  34560. name: "Galactic Bat",
  34561. height: math.unit(200000, "lightyears")
  34562. },
  34563. {
  34564. name: "Universally Known Bat",
  34565. height: math.unit(1, "universe")
  34566. },
  34567. ]
  34568. ))
  34569. characterMakers.push(() => makeCharacter(
  34570. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34571. {
  34572. front: {
  34573. height: math.unit(6 + 11/12, "feet"),
  34574. weight: math.unit(250, "lb"),
  34575. name: "Front",
  34576. image: {
  34577. source: "./media/characters/cookiecat/front.svg",
  34578. extra: 893/827,
  34579. bottom: 14/907
  34580. }
  34581. },
  34582. },
  34583. [
  34584. {
  34585. name: "Micro",
  34586. height: math.unit(3, "inches")
  34587. },
  34588. {
  34589. name: "Normal",
  34590. height: math.unit(6 + 11/12, "feet"),
  34591. default: true
  34592. },
  34593. {
  34594. name: "Macro",
  34595. height: math.unit(100, "feet")
  34596. },
  34597. {
  34598. name: "Macro+",
  34599. height: math.unit(404, "feet")
  34600. },
  34601. {
  34602. name: "Megamacro",
  34603. height: math.unit(165, "miles")
  34604. },
  34605. {
  34606. name: "Planetary",
  34607. height: math.unit(4600, "miles")
  34608. },
  34609. ]
  34610. ))
  34611. characterMakers.push(() => makeCharacter(
  34612. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34613. {
  34614. front: {
  34615. height: math.unit(10 + 3/12, "feet"),
  34616. weight: math.unit(1500, "lb"),
  34617. name: "Front",
  34618. image: {
  34619. source: "./media/characters/tux-kusanagi/front.svg",
  34620. extra: 944/840,
  34621. bottom: 39/983
  34622. }
  34623. },
  34624. back: {
  34625. height: math.unit(10 + 3/12, "feet"),
  34626. weight: math.unit(1500, "lb"),
  34627. name: "Back",
  34628. image: {
  34629. source: "./media/characters/tux-kusanagi/back.svg",
  34630. extra: 941/842,
  34631. bottom: 28/969
  34632. }
  34633. },
  34634. rump: {
  34635. height: math.unit(5.25, "feet"),
  34636. name: "Rump",
  34637. image: {
  34638. source: "./media/characters/tux-kusanagi/rump.svg"
  34639. }
  34640. },
  34641. beak: {
  34642. height: math.unit(1.54, "feet"),
  34643. name: "Beak",
  34644. image: {
  34645. source: "./media/characters/tux-kusanagi/beak.svg"
  34646. }
  34647. },
  34648. },
  34649. [
  34650. {
  34651. name: "Normal",
  34652. height: math.unit(10 + 3/12, "feet"),
  34653. default: true
  34654. },
  34655. ]
  34656. ))
  34657. characterMakers.push(() => makeCharacter(
  34658. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34659. {
  34660. front: {
  34661. height: math.unit(58, "feet"),
  34662. weight: math.unit(200, "tons"),
  34663. name: "Front",
  34664. image: {
  34665. source: "./media/characters/uzarmazari/front.svg",
  34666. extra: 1575/1455,
  34667. bottom: 152/1727
  34668. }
  34669. },
  34670. back: {
  34671. height: math.unit(58, "feet"),
  34672. weight: math.unit(200, "tons"),
  34673. name: "Back",
  34674. image: {
  34675. source: "./media/characters/uzarmazari/back.svg",
  34676. extra: 1585/1510,
  34677. bottom: 157/1742
  34678. }
  34679. },
  34680. head: {
  34681. height: math.unit(26, "feet"),
  34682. name: "Head",
  34683. image: {
  34684. source: "./media/characters/uzarmazari/head.svg"
  34685. }
  34686. },
  34687. },
  34688. [
  34689. {
  34690. name: "Normal",
  34691. height: math.unit(58, "feet"),
  34692. default: true
  34693. },
  34694. ]
  34695. ))
  34696. characterMakers.push(() => makeCharacter(
  34697. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34698. {
  34699. side: {
  34700. height: math.unit(15, "feet"),
  34701. name: "Side",
  34702. image: {
  34703. source: "./media/characters/akitu/side.svg",
  34704. extra: 1421/1321,
  34705. bottom: 157/1578
  34706. }
  34707. },
  34708. front: {
  34709. height: math.unit(15, "feet"),
  34710. name: "Front",
  34711. image: {
  34712. source: "./media/characters/akitu/front.svg",
  34713. extra: 1435/1326,
  34714. bottom: 232/1667
  34715. }
  34716. },
  34717. },
  34718. [
  34719. {
  34720. name: "Normal",
  34721. height: math.unit(15, "feet"),
  34722. default: true
  34723. },
  34724. ]
  34725. ))
  34726. characterMakers.push(() => makeCharacter(
  34727. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34728. {
  34729. front: {
  34730. height: math.unit(10 + 8/12, "feet"),
  34731. name: "Front",
  34732. image: {
  34733. source: "./media/characters/azalie-croixland/front.svg",
  34734. extra: 1972/1856,
  34735. bottom: 31/2003
  34736. }
  34737. },
  34738. },
  34739. [
  34740. {
  34741. name: "Original Height",
  34742. height: math.unit(5 + 4/12, "feet")
  34743. },
  34744. {
  34745. name: "Normal Height",
  34746. height: math.unit(10 + 8/12, "feet"),
  34747. default: true
  34748. },
  34749. ]
  34750. ))
  34751. characterMakers.push(() => makeCharacter(
  34752. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34753. {
  34754. side: {
  34755. height: math.unit(7 + 1/12, "feet"),
  34756. weight: math.unit(245, "lb"),
  34757. name: "Side",
  34758. image: {
  34759. source: "./media/characters/kavus-kazian/side.svg",
  34760. extra: 349/342,
  34761. bottom: 15/364
  34762. }
  34763. },
  34764. },
  34765. [
  34766. {
  34767. name: "Normal",
  34768. height: math.unit(7 + 1/12, "feet"),
  34769. default: true
  34770. },
  34771. ]
  34772. ))
  34773. characterMakers.push(() => makeCharacter(
  34774. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34775. {
  34776. normal: {
  34777. height: math.unit(5 + 11/12, "feet"),
  34778. name: "Normal",
  34779. image: {
  34780. source: "./media/characters/moonlight-rose/normal.svg",
  34781. extra: 1979/1835,
  34782. bottom: 14/1993
  34783. }
  34784. },
  34785. demon: {
  34786. height: math.unit(5, "km"),
  34787. name: "Demon",
  34788. image: {
  34789. source: "./media/characters/moonlight-rose/demon.svg",
  34790. extra: 986/916,
  34791. bottom: 28/1014
  34792. }
  34793. },
  34794. },
  34795. [
  34796. {
  34797. name: "\"Natural\" height",
  34798. height: math.unit(5 + 11/12, "feet")
  34799. },
  34800. {
  34801. name: "Comfortable Size",
  34802. height: math.unit(40, "meters")
  34803. },
  34804. {
  34805. name: "Common Size",
  34806. height: math.unit(50, "km"),
  34807. default: true
  34808. },
  34809. {
  34810. name: "Demonic",
  34811. height: math.unit(1.24415e+21, "meters")
  34812. },
  34813. ]
  34814. ))
  34815. characterMakers.push(() => makeCharacter(
  34816. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34817. {
  34818. front: {
  34819. height: math.unit(16, "feet"),
  34820. weight: math.unit(610, "kg"),
  34821. name: "Front",
  34822. image: {
  34823. source: "./media/characters/huckle/front.svg",
  34824. extra: 1731/1625,
  34825. bottom: 33/1764
  34826. }
  34827. },
  34828. back: {
  34829. height: math.unit(16, "feet"),
  34830. weight: math.unit(610, "kg"),
  34831. name: "Back",
  34832. image: {
  34833. source: "./media/characters/huckle/back.svg",
  34834. extra: 1738/1651,
  34835. bottom: 37/1775
  34836. }
  34837. },
  34838. laughing: {
  34839. height: math.unit(3.75, "feet"),
  34840. name: "Laughing",
  34841. image: {
  34842. source: "./media/characters/huckle/laughing.svg"
  34843. }
  34844. },
  34845. angry: {
  34846. height: math.unit(4.15, "feet"),
  34847. name: "Angry",
  34848. image: {
  34849. source: "./media/characters/huckle/angry.svg"
  34850. }
  34851. },
  34852. },
  34853. [
  34854. {
  34855. name: "Normal",
  34856. height: math.unit(16, "feet"),
  34857. default: true
  34858. },
  34859. {
  34860. name: "Mini Macro",
  34861. height: math.unit(463, "feet")
  34862. },
  34863. {
  34864. name: "Macro",
  34865. height: math.unit(1680, "meters")
  34866. },
  34867. {
  34868. name: "Mega Macro",
  34869. height: math.unit(175, "km")
  34870. },
  34871. {
  34872. name: "Terra Macro",
  34873. height: math.unit(32, "gigameters")
  34874. },
  34875. {
  34876. name: "Multiverse+",
  34877. height: math.unit(2.56e23, "yottameters")
  34878. },
  34879. ]
  34880. ))
  34881. characterMakers.push(() => makeCharacter(
  34882. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34883. {
  34884. front: {
  34885. height: math.unit(6 + 9/12, "feet"),
  34886. weight: math.unit(280, "lb"),
  34887. name: "Front",
  34888. image: {
  34889. source: "./media/characters/candy/front.svg",
  34890. extra: 234/217,
  34891. bottom: 11/245
  34892. }
  34893. },
  34894. },
  34895. [
  34896. {
  34897. name: "Really Small",
  34898. height: math.unit(0.1, "nm")
  34899. },
  34900. {
  34901. name: "Micro",
  34902. height: math.unit(2, "inches")
  34903. },
  34904. {
  34905. name: "Normal",
  34906. height: math.unit(6 + 9/12, "feet"),
  34907. default: true
  34908. },
  34909. {
  34910. name: "Small Macro",
  34911. height: math.unit(69, "feet")
  34912. },
  34913. {
  34914. name: "Macro",
  34915. height: math.unit(160, "feet")
  34916. },
  34917. {
  34918. name: "Megamacro",
  34919. height: math.unit(22000, "miles")
  34920. },
  34921. {
  34922. name: "Gigamacro",
  34923. height: math.unit(50000, "miles")
  34924. },
  34925. ]
  34926. ))
  34927. characterMakers.push(() => makeCharacter(
  34928. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34929. {
  34930. front: {
  34931. height: math.unit(4, "feet"),
  34932. weight: math.unit(90, "lb"),
  34933. name: "Front",
  34934. image: {
  34935. source: "./media/characters/joey-mcdonald/front.svg",
  34936. extra: 1059/852,
  34937. bottom: 33/1092
  34938. }
  34939. },
  34940. back: {
  34941. height: math.unit(4, "feet"),
  34942. weight: math.unit(90, "lb"),
  34943. name: "Back",
  34944. image: {
  34945. source: "./media/characters/joey-mcdonald/back.svg",
  34946. extra: 1077/879,
  34947. bottom: 5/1082
  34948. }
  34949. },
  34950. frontKobold: {
  34951. height: math.unit(4, "feet"),
  34952. weight: math.unit(100, "lb"),
  34953. name: "Front-kobold",
  34954. image: {
  34955. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34956. extra: 1480/1367,
  34957. bottom: 0/1480
  34958. }
  34959. },
  34960. backKobold: {
  34961. height: math.unit(4, "feet"),
  34962. weight: math.unit(100, "lb"),
  34963. name: "Back-kobold",
  34964. image: {
  34965. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34966. extra: 1449/1361,
  34967. bottom: 0/1449
  34968. }
  34969. },
  34970. },
  34971. [
  34972. {
  34973. name: "Normal",
  34974. height: math.unit(4, "feet"),
  34975. default: true
  34976. },
  34977. ]
  34978. ))
  34979. characterMakers.push(() => makeCharacter(
  34980. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34981. {
  34982. front: {
  34983. height: math.unit(12 + 6/12, "feet"),
  34984. name: "Front",
  34985. image: {
  34986. source: "./media/characters/kass-lockheed/front.svg",
  34987. extra: 354/343,
  34988. bottom: 9/363
  34989. }
  34990. },
  34991. back: {
  34992. height: math.unit(12 + 6/12, "feet"),
  34993. name: "Back",
  34994. image: {
  34995. source: "./media/characters/kass-lockheed/back.svg",
  34996. extra: 364/352,
  34997. bottom: 3/367
  34998. }
  34999. },
  35000. dick: {
  35001. height: math.unit(3.12, "feet"),
  35002. name: "Dick",
  35003. image: {
  35004. source: "./media/characters/kass-lockheed/dick.svg"
  35005. }
  35006. },
  35007. head: {
  35008. height: math.unit(2.6, "feet"),
  35009. name: "Head",
  35010. image: {
  35011. source: "./media/characters/kass-lockheed/head.svg"
  35012. }
  35013. },
  35014. bleh: {
  35015. height: math.unit(2.85, "feet"),
  35016. name: "Bleh",
  35017. image: {
  35018. source: "./media/characters/kass-lockheed/bleh.svg"
  35019. }
  35020. },
  35021. smug: {
  35022. height: math.unit(2.85, "feet"),
  35023. name: "Smug",
  35024. image: {
  35025. source: "./media/characters/kass-lockheed/smug.svg"
  35026. }
  35027. },
  35028. },
  35029. [
  35030. {
  35031. name: "Normal",
  35032. height: math.unit(12 + 6/12, "feet"),
  35033. default: true
  35034. },
  35035. ]
  35036. ))
  35037. characterMakers.push(() => makeCharacter(
  35038. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35039. {
  35040. front: {
  35041. height: math.unit(6 + 2/12, "feet"),
  35042. name: "Front",
  35043. image: {
  35044. source: "./media/characters/taylor/front.svg",
  35045. extra: 639/495,
  35046. bottom: 12/651
  35047. }
  35048. },
  35049. },
  35050. [
  35051. {
  35052. name: "Normal",
  35053. height: math.unit(6 + 2/12, "feet"),
  35054. default: true
  35055. },
  35056. {
  35057. name: "Big",
  35058. height: math.unit(15, "feet")
  35059. },
  35060. {
  35061. name: "Lorg",
  35062. height: math.unit(80, "feet")
  35063. },
  35064. {
  35065. name: "Too Lorg",
  35066. height: math.unit(120, "feet")
  35067. },
  35068. ]
  35069. ))
  35070. characterMakers.push(() => makeCharacter(
  35071. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35072. {
  35073. front: {
  35074. height: math.unit(15, "feet"),
  35075. name: "Front",
  35076. image: {
  35077. source: "./media/characters/kaizer/front.svg",
  35078. extra: 1612/1436,
  35079. bottom: 43/1655
  35080. }
  35081. },
  35082. },
  35083. [
  35084. {
  35085. name: "Normal",
  35086. height: math.unit(15, "feet"),
  35087. default: true
  35088. },
  35089. ]
  35090. ))
  35091. characterMakers.push(() => makeCharacter(
  35092. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35093. {
  35094. front: {
  35095. height: math.unit(2, "feet"),
  35096. weight: math.unit(30, "lb"),
  35097. name: "Front",
  35098. image: {
  35099. source: "./media/characters/sandy/front.svg",
  35100. extra: 1439/1307,
  35101. bottom: 194/1633
  35102. }
  35103. },
  35104. },
  35105. [
  35106. {
  35107. name: "Normal",
  35108. height: math.unit(2, "feet"),
  35109. default: true
  35110. },
  35111. ]
  35112. ))
  35113. characterMakers.push(() => makeCharacter(
  35114. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35115. {
  35116. front: {
  35117. height: math.unit(3, "feet"),
  35118. name: "Front",
  35119. image: {
  35120. source: "./media/characters/mellvi/front.svg",
  35121. extra: 1831/1630,
  35122. bottom: 58/1889
  35123. }
  35124. },
  35125. },
  35126. [
  35127. {
  35128. name: "Normal",
  35129. height: math.unit(3, "feet"),
  35130. default: true
  35131. },
  35132. ]
  35133. ))
  35134. characterMakers.push(() => makeCharacter(
  35135. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35136. {
  35137. front: {
  35138. height: math.unit(5 + 11/12, "feet"),
  35139. weight: math.unit(200, "lb"),
  35140. name: "Front",
  35141. image: {
  35142. source: "./media/characters/shirou/front.svg",
  35143. extra: 2491/2383,
  35144. bottom: 189/2680
  35145. }
  35146. },
  35147. back: {
  35148. height: math.unit(5 + 11/12, "feet"),
  35149. weight: math.unit(200, "lb"),
  35150. name: "Back",
  35151. image: {
  35152. source: "./media/characters/shirou/back.svg",
  35153. extra: 2554/2450,
  35154. bottom: 76/2630
  35155. }
  35156. },
  35157. },
  35158. [
  35159. {
  35160. name: "Normal",
  35161. height: math.unit(5 + 11/12, "feet"),
  35162. default: true
  35163. },
  35164. ]
  35165. ))
  35166. characterMakers.push(() => makeCharacter(
  35167. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35168. {
  35169. front: {
  35170. height: math.unit(6 + 3/12, "feet"),
  35171. weight: math.unit(177, "lb"),
  35172. name: "Front",
  35173. image: {
  35174. source: "./media/characters/noryu/front.svg",
  35175. extra: 973/885,
  35176. bottom: 10/983
  35177. }
  35178. },
  35179. },
  35180. [
  35181. {
  35182. name: "Normal",
  35183. height: math.unit(6 + 3/12, "feet"),
  35184. default: true
  35185. },
  35186. ]
  35187. ))
  35188. characterMakers.push(() => makeCharacter(
  35189. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35190. {
  35191. front: {
  35192. height: math.unit(5 + 6/12, "feet"),
  35193. weight: math.unit(170, "lb"),
  35194. name: "Front",
  35195. image: {
  35196. source: "./media/characters/mevolas-rubenido/front.svg",
  35197. extra: 2109/1901,
  35198. bottom: 96/2205
  35199. }
  35200. },
  35201. },
  35202. [
  35203. {
  35204. name: "Normal",
  35205. height: math.unit(5 + 6/12, "feet"),
  35206. default: true
  35207. },
  35208. ]
  35209. ))
  35210. characterMakers.push(() => makeCharacter(
  35211. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35212. {
  35213. front: {
  35214. height: math.unit(100, "feet"),
  35215. name: "Front",
  35216. image: {
  35217. source: "./media/characters/dee/front.svg",
  35218. extra: 2153/2036,
  35219. bottom: 59/2212
  35220. }
  35221. },
  35222. back: {
  35223. height: math.unit(100, "feet"),
  35224. name: "Back",
  35225. image: {
  35226. source: "./media/characters/dee/back.svg",
  35227. extra: 2183/2058,
  35228. bottom: 75/2258
  35229. }
  35230. },
  35231. foot: {
  35232. height: math.unit(19.43, "feet"),
  35233. name: "Foot",
  35234. image: {
  35235. source: "./media/characters/dee/foot.svg"
  35236. }
  35237. },
  35238. hoof: {
  35239. height: math.unit(20.6, "feet"),
  35240. name: "Hoof",
  35241. image: {
  35242. source: "./media/characters/dee/hoof.svg"
  35243. }
  35244. },
  35245. },
  35246. [
  35247. {
  35248. name: "Macro",
  35249. height: math.unit(100, "feet"),
  35250. default: true
  35251. },
  35252. ]
  35253. ))
  35254. characterMakers.push(() => makeCharacter(
  35255. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35256. {
  35257. front: {
  35258. height: math.unit(5 + 6/12, "feet"),
  35259. name: "Front",
  35260. image: {
  35261. source: "./media/characters/teh/front.svg",
  35262. extra: 1002/847,
  35263. bottom: 62/1064
  35264. }
  35265. },
  35266. },
  35267. [
  35268. {
  35269. name: "Normal",
  35270. height: math.unit(5 + 6/12, "feet"),
  35271. default: true
  35272. },
  35273. ]
  35274. ))
  35275. characterMakers.push(() => makeCharacter(
  35276. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35277. {
  35278. side: {
  35279. height: math.unit(6 + 1/12, "feet"),
  35280. weight: math.unit(204, "lb"),
  35281. name: "Side",
  35282. image: {
  35283. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35284. extra: 974/775,
  35285. bottom: 169/1143
  35286. }
  35287. },
  35288. sitting: {
  35289. height: math.unit(6 + 2/12, "feet"),
  35290. weight: math.unit(204, "lb"),
  35291. name: "Sitting",
  35292. image: {
  35293. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35294. extra: 1175/964,
  35295. bottom: 378/1553
  35296. }
  35297. },
  35298. },
  35299. [
  35300. {
  35301. name: "Normal",
  35302. height: math.unit(6 + 1/12, "feet"),
  35303. default: true
  35304. },
  35305. ]
  35306. ))
  35307. characterMakers.push(() => makeCharacter(
  35308. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35309. {
  35310. front: {
  35311. height: math.unit(6, "inches"),
  35312. name: "Front",
  35313. image: {
  35314. source: "./media/characters/tululi/front.svg",
  35315. extra: 1997/1876,
  35316. bottom: 20/2017
  35317. }
  35318. },
  35319. },
  35320. [
  35321. {
  35322. name: "Normal",
  35323. height: math.unit(6, "inches"),
  35324. default: true
  35325. },
  35326. ]
  35327. ))
  35328. characterMakers.push(() => makeCharacter(
  35329. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35330. {
  35331. front: {
  35332. height: math.unit(4 + 1/12, "feet"),
  35333. name: "Front",
  35334. image: {
  35335. source: "./media/characters/star/front.svg",
  35336. extra: 1493/1189,
  35337. bottom: 48/1541
  35338. }
  35339. },
  35340. },
  35341. [
  35342. {
  35343. name: "Normal",
  35344. height: math.unit(4 + 1/12, "feet"),
  35345. default: true
  35346. },
  35347. ]
  35348. ))
  35349. characterMakers.push(() => makeCharacter(
  35350. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35351. {
  35352. front: {
  35353. height: math.unit(6 + 3/12, "feet"),
  35354. name: "Front",
  35355. image: {
  35356. source: "./media/characters/comet/front.svg",
  35357. extra: 1681/1462,
  35358. bottom: 26/1707
  35359. }
  35360. },
  35361. },
  35362. [
  35363. {
  35364. name: "Normal",
  35365. height: math.unit(6 + 3/12, "feet"),
  35366. default: true
  35367. },
  35368. ]
  35369. ))
  35370. characterMakers.push(() => makeCharacter(
  35371. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35372. {
  35373. front: {
  35374. height: math.unit(950, "feet"),
  35375. name: "Front",
  35376. image: {
  35377. source: "./media/characters/vortex/front.svg",
  35378. extra: 1497/1434,
  35379. bottom: 56/1553
  35380. }
  35381. },
  35382. maw: {
  35383. height: math.unit(285, "feet"),
  35384. name: "Maw",
  35385. image: {
  35386. source: "./media/characters/vortex/maw.svg"
  35387. }
  35388. },
  35389. },
  35390. [
  35391. {
  35392. name: "Macro",
  35393. height: math.unit(950, "feet"),
  35394. default: true
  35395. },
  35396. ]
  35397. ))
  35398. characterMakers.push(() => makeCharacter(
  35399. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35400. {
  35401. front: {
  35402. height: math.unit(600, "feet"),
  35403. weight: math.unit(0.02, "grams"),
  35404. name: "Front",
  35405. image: {
  35406. source: "./media/characters/doodle/front.svg",
  35407. extra: 1578/1413,
  35408. bottom: 37/1615
  35409. }
  35410. },
  35411. },
  35412. [
  35413. {
  35414. name: "Macro",
  35415. height: math.unit(600, "feet"),
  35416. default: true
  35417. },
  35418. ]
  35419. ))
  35420. characterMakers.push(() => makeCharacter(
  35421. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35422. {
  35423. front: {
  35424. height: math.unit(6 + 6/12, "feet"),
  35425. name: "Front",
  35426. image: {
  35427. source: "./media/characters/jai/front.svg",
  35428. extra: 1645/1534,
  35429. bottom: 115/1760
  35430. }
  35431. },
  35432. },
  35433. [
  35434. {
  35435. name: "Normal",
  35436. height: math.unit(6 + 6/12, "feet"),
  35437. default: true
  35438. },
  35439. ]
  35440. ))
  35441. characterMakers.push(() => makeCharacter(
  35442. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35443. {
  35444. front: {
  35445. height: math.unit(6 + 8/12, "feet"),
  35446. name: "Front",
  35447. image: {
  35448. source: "./media/characters/pixel/front.svg",
  35449. extra: 1900/1735,
  35450. bottom: 63/1963
  35451. }
  35452. },
  35453. },
  35454. [
  35455. {
  35456. name: "Normal",
  35457. height: math.unit(6 + 8/12, "feet"),
  35458. default: true
  35459. },
  35460. ]
  35461. ))
  35462. characterMakers.push(() => makeCharacter(
  35463. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35464. {
  35465. front: {
  35466. height: math.unit(4 + 11/12, "feet"),
  35467. weight: math.unit(111, "lb"),
  35468. name: "Front",
  35469. image: {
  35470. source: "./media/characters/rhett/front.svg",
  35471. extra: 1682/1586,
  35472. bottom: 92/1774
  35473. }
  35474. },
  35475. },
  35476. [
  35477. {
  35478. name: "Mini",
  35479. height: math.unit(1 + 1/12, "feet")
  35480. },
  35481. {
  35482. name: "Normal",
  35483. height: math.unit(4 + 11/12, "feet"),
  35484. default: true
  35485. },
  35486. ]
  35487. ))
  35488. characterMakers.push(() => makeCharacter(
  35489. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35490. {
  35491. front: {
  35492. height: math.unit(3 + 3/12, "feet"),
  35493. name: "Front",
  35494. image: {
  35495. source: "./media/characters/penny/front.svg",
  35496. extra: 1406/1311,
  35497. bottom: 26/1432
  35498. }
  35499. },
  35500. },
  35501. [
  35502. {
  35503. name: "Normal",
  35504. height: math.unit(3 + 3/12, "feet"),
  35505. default: true
  35506. },
  35507. ]
  35508. ))
  35509. characterMakers.push(() => makeCharacter(
  35510. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35511. {
  35512. front: {
  35513. height: math.unit(4 + 11/12, "feet"),
  35514. name: "Front",
  35515. image: {
  35516. source: "./media/characters/monty/front.svg",
  35517. extra: 1479/1209,
  35518. bottom: 0/1479
  35519. }
  35520. },
  35521. },
  35522. [
  35523. {
  35524. name: "Normal",
  35525. height: math.unit(4 + 11/12, "feet"),
  35526. default: true
  35527. },
  35528. ]
  35529. ))
  35530. characterMakers.push(() => makeCharacter(
  35531. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35532. {
  35533. front: {
  35534. height: math.unit(8 + 4/12, "feet"),
  35535. name: "Front",
  35536. image: {
  35537. source: "./media/characters/sterling/front.svg",
  35538. extra: 1420/1236,
  35539. bottom: 27/1447
  35540. }
  35541. },
  35542. },
  35543. [
  35544. {
  35545. name: "Normal",
  35546. height: math.unit(8 + 4/12, "feet"),
  35547. default: true
  35548. },
  35549. ]
  35550. ))
  35551. characterMakers.push(() => makeCharacter(
  35552. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35553. {
  35554. front: {
  35555. height: math.unit(15, "feet"),
  35556. name: "Front",
  35557. image: {
  35558. source: "./media/characters/marble/front.svg",
  35559. extra: 973/937,
  35560. bottom: 32/1005
  35561. }
  35562. },
  35563. },
  35564. [
  35565. {
  35566. name: "Normal",
  35567. height: math.unit(15, "feet"),
  35568. default: true
  35569. },
  35570. ]
  35571. ))
  35572. characterMakers.push(() => makeCharacter(
  35573. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35574. {
  35575. front: {
  35576. height: math.unit(3, "inches"),
  35577. name: "Front",
  35578. image: {
  35579. source: "./media/characters/powder/front.svg",
  35580. extra: 1504/1334,
  35581. bottom: 518/2022
  35582. }
  35583. },
  35584. },
  35585. [
  35586. {
  35587. name: "Normal",
  35588. height: math.unit(3, "inches"),
  35589. default: true
  35590. },
  35591. ]
  35592. ))
  35593. characterMakers.push(() => makeCharacter(
  35594. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35595. {
  35596. front: {
  35597. height: math.unit(4 + 5/12, "feet"),
  35598. name: "Front",
  35599. image: {
  35600. source: "./media/characters/joey-raccoon/front.svg",
  35601. extra: 1273/1197,
  35602. bottom: 0/1273
  35603. }
  35604. },
  35605. },
  35606. [
  35607. {
  35608. name: "Normal",
  35609. height: math.unit(4 + 5/12, "feet"),
  35610. default: true
  35611. },
  35612. ]
  35613. ))
  35614. characterMakers.push(() => makeCharacter(
  35615. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35616. {
  35617. front: {
  35618. height: math.unit(8 + 4/12, "feet"),
  35619. name: "Front",
  35620. image: {
  35621. source: "./media/characters/vick/front.svg",
  35622. extra: 2187/2118,
  35623. bottom: 47/2234
  35624. }
  35625. },
  35626. },
  35627. [
  35628. {
  35629. name: "Normal",
  35630. height: math.unit(8 + 4/12, "feet"),
  35631. default: true
  35632. },
  35633. ]
  35634. ))
  35635. characterMakers.push(() => makeCharacter(
  35636. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35637. {
  35638. front: {
  35639. height: math.unit(5 + 5/12, "feet"),
  35640. name: "Front",
  35641. image: {
  35642. source: "./media/characters/mitsy/front.svg",
  35643. extra: 1842/1695,
  35644. bottom: 0/1842
  35645. }
  35646. },
  35647. },
  35648. [
  35649. {
  35650. name: "Normal",
  35651. height: math.unit(5 + 5/12, "feet"),
  35652. default: true
  35653. },
  35654. ]
  35655. ))
  35656. characterMakers.push(() => makeCharacter(
  35657. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35658. {
  35659. front: {
  35660. height: math.unit(6 + 3/12, "feet"),
  35661. name: "Front",
  35662. image: {
  35663. source: "./media/characters/silvy/front.svg",
  35664. extra: 1995/1836,
  35665. bottom: 225/2220
  35666. }
  35667. },
  35668. },
  35669. [
  35670. {
  35671. name: "Normal",
  35672. height: math.unit(6 + 3/12, "feet"),
  35673. default: true
  35674. },
  35675. ]
  35676. ))
  35677. characterMakers.push(() => makeCharacter(
  35678. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35679. {
  35680. front: {
  35681. height: math.unit(3 + 8/12, "feet"),
  35682. name: "Front",
  35683. image: {
  35684. source: "./media/characters/rodney/front.svg",
  35685. extra: 1956/1747,
  35686. bottom: 31/1987
  35687. }
  35688. },
  35689. frontDressed: {
  35690. height: math.unit(2.9, "feet"),
  35691. name: "Front (Dressed)",
  35692. image: {
  35693. source: "./media/characters/rodney/front-dressed.svg",
  35694. extra: 1382/1241,
  35695. bottom: 385/1767
  35696. }
  35697. },
  35698. },
  35699. [
  35700. {
  35701. name: "Normal",
  35702. height: math.unit(3 + 8/12, "feet"),
  35703. default: true
  35704. },
  35705. ]
  35706. ))
  35707. characterMakers.push(() => makeCharacter(
  35708. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35709. {
  35710. front: {
  35711. height: math.unit(5 + 9/12, "feet"),
  35712. weight: math.unit(194, "lbs"),
  35713. name: "Front",
  35714. image: {
  35715. source: "./media/characters/zakail-sudekai/front.svg",
  35716. extra: 2696/2533,
  35717. bottom: 248/2944
  35718. }
  35719. },
  35720. maw: {
  35721. height: math.unit(1.35, "feet"),
  35722. name: "Maw",
  35723. image: {
  35724. source: "./media/characters/zakail-sudekai/maw.svg"
  35725. }
  35726. },
  35727. },
  35728. [
  35729. {
  35730. name: "Normal",
  35731. height: math.unit(5 + 9/12, "feet"),
  35732. default: true
  35733. },
  35734. ]
  35735. ))
  35736. characterMakers.push(() => makeCharacter(
  35737. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35738. {
  35739. front: {
  35740. height: math.unit(8 + 4/12, "feet"),
  35741. weight: math.unit(1200, "lb"),
  35742. name: "Front",
  35743. image: {
  35744. source: "./media/characters/eleanor/front.svg",
  35745. extra: 1226/1192,
  35746. bottom: 52/1278
  35747. }
  35748. },
  35749. back: {
  35750. height: math.unit(8 + 4/12, "feet"),
  35751. weight: math.unit(1200, "lb"),
  35752. name: "Back",
  35753. image: {
  35754. source: "./media/characters/eleanor/back.svg",
  35755. extra: 1242/1184,
  35756. bottom: 60/1302
  35757. }
  35758. },
  35759. head: {
  35760. height: math.unit(2.62, "feet"),
  35761. name: "Head",
  35762. image: {
  35763. source: "./media/characters/eleanor/head.svg"
  35764. }
  35765. },
  35766. },
  35767. [
  35768. {
  35769. name: "Normal",
  35770. height: math.unit(8 + 4/12, "feet"),
  35771. default: true
  35772. },
  35773. ]
  35774. ))
  35775. characterMakers.push(() => makeCharacter(
  35776. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35777. {
  35778. front: {
  35779. height: math.unit(8 + 4/12, "feet"),
  35780. weight: math.unit(750, "lb"),
  35781. name: "Front",
  35782. image: {
  35783. source: "./media/characters/tanya/front.svg",
  35784. extra: 1749/1615,
  35785. bottom: 33/1782
  35786. }
  35787. },
  35788. },
  35789. [
  35790. {
  35791. name: "Normal",
  35792. height: math.unit(8 + 4/12, "feet"),
  35793. default: true
  35794. },
  35795. ]
  35796. ))
  35797. characterMakers.push(() => makeCharacter(
  35798. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35799. {
  35800. front: {
  35801. height: math.unit(5, "feet"),
  35802. weight: math.unit(225, "lb"),
  35803. name: "Front",
  35804. image: {
  35805. source: "./media/characters/cindy/front.svg",
  35806. extra: 1320/1250,
  35807. bottom: 42/1362
  35808. }
  35809. },
  35810. frontDressed: {
  35811. height: math.unit(5, "feet"),
  35812. weight: math.unit(225, "lb"),
  35813. name: "Front (Dressed)",
  35814. image: {
  35815. source: "./media/characters/cindy/front-dressed.svg",
  35816. extra: 1320/1250,
  35817. bottom: 42/1362
  35818. }
  35819. },
  35820. back: {
  35821. height: math.unit(5, "feet"),
  35822. weight: math.unit(225, "lb"),
  35823. name: "Back",
  35824. image: {
  35825. source: "./media/characters/cindy/back.svg",
  35826. extra: 1384/1346,
  35827. bottom: 14/1398
  35828. }
  35829. },
  35830. },
  35831. [
  35832. {
  35833. name: "Normal",
  35834. height: math.unit(5, "feet"),
  35835. default: true
  35836. },
  35837. ]
  35838. ))
  35839. characterMakers.push(() => makeCharacter(
  35840. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35841. {
  35842. front: {
  35843. height: math.unit(6 + 9/12, "feet"),
  35844. weight: math.unit(440, "lb"),
  35845. name: "Front",
  35846. image: {
  35847. source: "./media/characters/wilbur-owen/front.svg",
  35848. extra: 1575/1448,
  35849. bottom: 72/1647
  35850. }
  35851. },
  35852. back: {
  35853. height: math.unit(6 + 9/12, "feet"),
  35854. weight: math.unit(440, "lb"),
  35855. name: "Back",
  35856. image: {
  35857. source: "./media/characters/wilbur-owen/back.svg",
  35858. extra: 1578/1445,
  35859. bottom: 36/1614
  35860. }
  35861. },
  35862. },
  35863. [
  35864. {
  35865. name: "Normal",
  35866. height: math.unit(6 + 9/12, "feet"),
  35867. default: true
  35868. },
  35869. ]
  35870. ))
  35871. characterMakers.push(() => makeCharacter(
  35872. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35873. {
  35874. front: {
  35875. height: math.unit(6 + 5/12, "feet"),
  35876. weight: math.unit(650, "lb"),
  35877. name: "Front",
  35878. image: {
  35879. source: "./media/characters/keegan/front.svg",
  35880. extra: 2387/2198,
  35881. bottom: 33/2420
  35882. }
  35883. },
  35884. side: {
  35885. height: math.unit(6 + 5/12, "feet"),
  35886. weight: math.unit(650, "lb"),
  35887. name: "Side",
  35888. image: {
  35889. source: "./media/characters/keegan/side.svg",
  35890. extra: 2390/2202,
  35891. bottom: 47/2437
  35892. }
  35893. },
  35894. back: {
  35895. height: math.unit(6 + 5/12, "feet"),
  35896. weight: math.unit(650, "lb"),
  35897. name: "Back",
  35898. image: {
  35899. source: "./media/characters/keegan/back.svg",
  35900. extra: 2418/2268,
  35901. bottom: 15/2433
  35902. }
  35903. },
  35904. frontSfw: {
  35905. height: math.unit(6 + 5/12, "feet"),
  35906. weight: math.unit(650, "lb"),
  35907. name: "Front (SFW)",
  35908. image: {
  35909. source: "./media/characters/keegan/front-sfw.svg",
  35910. extra: 2387/2198,
  35911. bottom: 33/2420
  35912. }
  35913. },
  35914. beans: {
  35915. height: math.unit(1.85, "feet"),
  35916. name: "Beans",
  35917. image: {
  35918. source: "./media/characters/keegan/beans.svg"
  35919. }
  35920. },
  35921. },
  35922. [
  35923. {
  35924. name: "Normal",
  35925. height: math.unit(6 + 5/12, "feet"),
  35926. default: true
  35927. },
  35928. ]
  35929. ))
  35930. characterMakers.push(() => makeCharacter(
  35931. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35932. {
  35933. front: {
  35934. height: math.unit(9, "feet"),
  35935. name: "Front",
  35936. image: {
  35937. source: "./media/characters/colton/front.svg",
  35938. extra: 1589/1326,
  35939. bottom: 139/1728
  35940. }
  35941. },
  35942. },
  35943. [
  35944. {
  35945. name: "Normal",
  35946. height: math.unit(9, "feet"),
  35947. default: true
  35948. },
  35949. ]
  35950. ))
  35951. characterMakers.push(() => makeCharacter(
  35952. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35953. {
  35954. front: {
  35955. height: math.unit(2 + 9/12, "feet"),
  35956. name: "Front",
  35957. image: {
  35958. source: "./media/characters/bora/front.svg",
  35959. extra: 1265/1250,
  35960. bottom: 24/1289
  35961. }
  35962. },
  35963. },
  35964. [
  35965. {
  35966. name: "Normal",
  35967. height: math.unit(2 + 9/12, "feet"),
  35968. default: true
  35969. },
  35970. ]
  35971. ))
  35972. characterMakers.push(() => makeCharacter(
  35973. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35974. {
  35975. front: {
  35976. height: math.unit(8, "feet"),
  35977. name: "Front",
  35978. image: {
  35979. source: "./media/characters/myu-myu/front.svg",
  35980. extra: 1949/1857,
  35981. bottom: 90/2039
  35982. }
  35983. },
  35984. },
  35985. [
  35986. {
  35987. name: "Normal",
  35988. height: math.unit(8, "feet"),
  35989. default: true
  35990. },
  35991. {
  35992. name: "Big",
  35993. height: math.unit(15, "feet")
  35994. },
  35995. {
  35996. name: "BIG",
  35997. height: math.unit(25, "feet")
  35998. },
  35999. ]
  36000. ))
  36001. characterMakers.push(() => makeCharacter(
  36002. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36003. {
  36004. side: {
  36005. height: math.unit(7 + 5/12, "feet"),
  36006. weight: math.unit(2800, "lb"),
  36007. name: "Side",
  36008. image: {
  36009. source: "./media/characters/haloren/side.svg",
  36010. extra: 1793/409,
  36011. bottom: 59/1852
  36012. }
  36013. },
  36014. frontPaw: {
  36015. height: math.unit(2.36, "feet"),
  36016. name: "Front paw",
  36017. image: {
  36018. source: "./media/characters/haloren/front-paw.svg"
  36019. }
  36020. },
  36021. hindPaw: {
  36022. height: math.unit(3.18, "feet"),
  36023. name: "Hind paw",
  36024. image: {
  36025. source: "./media/characters/haloren/hind-paw.svg"
  36026. }
  36027. },
  36028. maw: {
  36029. height: math.unit(5.05, "feet"),
  36030. name: "Maw",
  36031. image: {
  36032. source: "./media/characters/haloren/maw.svg"
  36033. }
  36034. },
  36035. dick: {
  36036. height: math.unit(2.90, "feet"),
  36037. name: "Dick",
  36038. image: {
  36039. source: "./media/characters/haloren/dick.svg"
  36040. }
  36041. },
  36042. },
  36043. [
  36044. {
  36045. name: "Normal",
  36046. height: math.unit(7 + 5/12, "feet"),
  36047. default: true
  36048. },
  36049. {
  36050. name: "Enhanced",
  36051. height: math.unit(14 + 3/12, "feet")
  36052. },
  36053. ]
  36054. ))
  36055. characterMakers.push(() => makeCharacter(
  36056. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36057. {
  36058. front: {
  36059. height: math.unit(171, "cm"),
  36060. name: "Front",
  36061. image: {
  36062. source: "./media/characters/kimmy/front.svg",
  36063. extra: 1491/1435,
  36064. bottom: 53/1544
  36065. }
  36066. },
  36067. },
  36068. [
  36069. {
  36070. name: "Small",
  36071. height: math.unit(9, "cm")
  36072. },
  36073. {
  36074. name: "Normal",
  36075. height: math.unit(171, "cm"),
  36076. default: true
  36077. },
  36078. ]
  36079. ))
  36080. characterMakers.push(() => makeCharacter(
  36081. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36082. {
  36083. front: {
  36084. height: math.unit(8, "feet"),
  36085. weight: math.unit(300, "lb"),
  36086. name: "Front",
  36087. image: {
  36088. source: "./media/characters/galeboomer/front.svg",
  36089. extra: 4651/4415,
  36090. bottom: 162/4813
  36091. }
  36092. },
  36093. back: {
  36094. height: math.unit(8, "feet"),
  36095. weight: math.unit(300, "lb"),
  36096. name: "Back",
  36097. image: {
  36098. source: "./media/characters/galeboomer/back.svg",
  36099. extra: 4544/4314,
  36100. bottom: 16/4560
  36101. }
  36102. },
  36103. frontAlt: {
  36104. height: math.unit(8, "feet"),
  36105. weight: math.unit(300, "lb"),
  36106. name: "Front (Alt)",
  36107. image: {
  36108. source: "./media/characters/galeboomer/front-alt.svg",
  36109. extra: 4458/4228,
  36110. bottom: 68/4526
  36111. }
  36112. },
  36113. maw: {
  36114. height: math.unit(1.2, "feet"),
  36115. name: "Maw",
  36116. image: {
  36117. source: "./media/characters/galeboomer/maw.svg"
  36118. }
  36119. },
  36120. },
  36121. [
  36122. {
  36123. name: "Normal",
  36124. height: math.unit(8, "feet"),
  36125. default: true
  36126. },
  36127. ]
  36128. ))
  36129. characterMakers.push(() => makeCharacter(
  36130. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36131. {
  36132. front: {
  36133. height: math.unit(5 + 9/12, "feet"),
  36134. weight: math.unit(120, "lb"),
  36135. name: "Front",
  36136. image: {
  36137. source: "./media/characters/chyr/front.svg",
  36138. extra: 1323/1254,
  36139. bottom: 63/1386
  36140. }
  36141. },
  36142. back: {
  36143. height: math.unit(5 + 9/12, "feet"),
  36144. weight: math.unit(120, "lb"),
  36145. name: "Back",
  36146. image: {
  36147. source: "./media/characters/chyr/back.svg",
  36148. extra: 1323/1252,
  36149. bottom: 48/1371
  36150. }
  36151. },
  36152. },
  36153. [
  36154. {
  36155. name: "Normal",
  36156. height: math.unit(5 + 9/12, "feet"),
  36157. default: true
  36158. },
  36159. ]
  36160. ))
  36161. characterMakers.push(() => makeCharacter(
  36162. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36163. {
  36164. front: {
  36165. height: math.unit(7, "feet"),
  36166. weight: math.unit(310, "lb"),
  36167. name: "Front",
  36168. image: {
  36169. source: "./media/characters/solarus/front.svg",
  36170. extra: 2415/2021,
  36171. bottom: 103/2518
  36172. }
  36173. },
  36174. back: {
  36175. height: math.unit(7, "feet"),
  36176. weight: math.unit(310, "lb"),
  36177. name: "Back",
  36178. image: {
  36179. source: "./media/characters/solarus/back.svg",
  36180. extra: 2463/2089,
  36181. bottom: 79/2542
  36182. }
  36183. },
  36184. },
  36185. [
  36186. {
  36187. name: "Normal",
  36188. height: math.unit(7, "feet"),
  36189. default: true
  36190. },
  36191. ]
  36192. ))
  36193. characterMakers.push(() => makeCharacter(
  36194. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36195. {
  36196. front: {
  36197. height: math.unit(16, "feet"),
  36198. name: "Front",
  36199. image: {
  36200. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36201. extra: 1844/1780,
  36202. bottom: 58/1902
  36203. }
  36204. },
  36205. winterCoat: {
  36206. height: math.unit(16, "feet"),
  36207. name: "Winter Coat",
  36208. image: {
  36209. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36210. extra: 1807/1775,
  36211. bottom: 69/1876
  36212. }
  36213. },
  36214. },
  36215. [
  36216. {
  36217. name: "Normal",
  36218. height: math.unit(16, "feet"),
  36219. default: true
  36220. },
  36221. {
  36222. name: "Chicago Size",
  36223. height: math.unit(560, "feet")
  36224. },
  36225. ]
  36226. ))
  36227. characterMakers.push(() => makeCharacter(
  36228. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36229. {
  36230. front: {
  36231. height: math.unit(11 + 6/12, "feet"),
  36232. weight: math.unit(1366, "lb"),
  36233. name: "Front",
  36234. image: {
  36235. source: "./media/characters/lexor/front.svg",
  36236. extra: 1560/1481,
  36237. bottom: 211/1771
  36238. }
  36239. },
  36240. back: {
  36241. height: math.unit(11 + 6/12, "feet"),
  36242. weight: math.unit(1366, "lb"),
  36243. name: "Back",
  36244. image: {
  36245. source: "./media/characters/lexor/back.svg",
  36246. extra: 1614/1533,
  36247. bottom: 76/1690
  36248. }
  36249. },
  36250. maw: {
  36251. height: math.unit(3, "feet"),
  36252. name: "Maw",
  36253. image: {
  36254. source: "./media/characters/lexor/maw.svg"
  36255. }
  36256. },
  36257. dick: {
  36258. height: math.unit(2.59, "feet"),
  36259. name: "Dick",
  36260. image: {
  36261. source: "./media/characters/lexor/dick.svg"
  36262. }
  36263. },
  36264. },
  36265. [
  36266. {
  36267. name: "Normal",
  36268. height: math.unit(11 + 6/12, "feet"),
  36269. default: true
  36270. },
  36271. ]
  36272. ))
  36273. characterMakers.push(() => makeCharacter(
  36274. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36275. {
  36276. front: {
  36277. height: math.unit(5 + 8/12, "feet"),
  36278. name: "Front",
  36279. image: {
  36280. source: "./media/characters/magnum/front.svg",
  36281. extra: 942/855,
  36282. bottom: 26/968
  36283. }
  36284. },
  36285. },
  36286. [
  36287. {
  36288. name: "Normal",
  36289. height: math.unit(5 + 8/12, "feet"),
  36290. default: true
  36291. },
  36292. ]
  36293. ))
  36294. characterMakers.push(() => makeCharacter(
  36295. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36296. {
  36297. front: {
  36298. height: math.unit(18 + 4/12, "feet"),
  36299. weight: math.unit(1500, "kg"),
  36300. name: "Front",
  36301. image: {
  36302. source: "./media/characters/solas-sharpsman/front.svg",
  36303. extra: 1698/1589,
  36304. bottom: 0/1698
  36305. }
  36306. },
  36307. },
  36308. [
  36309. {
  36310. name: "Normal",
  36311. height: math.unit(18 + 4/12, "feet"),
  36312. default: true
  36313. },
  36314. ]
  36315. ))
  36316. characterMakers.push(() => makeCharacter(
  36317. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36318. {
  36319. front: {
  36320. height: math.unit(5 + 5/12, "feet"),
  36321. weight: math.unit(180, "lb"),
  36322. name: "Front",
  36323. image: {
  36324. source: "./media/characters/october/front.svg",
  36325. extra: 1800/1650,
  36326. bottom: 0/1800
  36327. }
  36328. },
  36329. frontNsfw: {
  36330. height: math.unit(5 + 5/12, "feet"),
  36331. weight: math.unit(180, "lb"),
  36332. name: "Front (NSFW)",
  36333. image: {
  36334. source: "./media/characters/october/front-nsfw.svg",
  36335. extra: 1392/1307,
  36336. bottom: 42/1434
  36337. }
  36338. },
  36339. },
  36340. [
  36341. {
  36342. name: "Normal",
  36343. height: math.unit(5 + 5/12, "feet"),
  36344. default: true
  36345. },
  36346. ]
  36347. ))
  36348. characterMakers.push(() => makeCharacter(
  36349. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36350. {
  36351. front: {
  36352. height: math.unit(8 + 6/12, "feet"),
  36353. name: "Front",
  36354. image: {
  36355. source: "./media/characters/essynkardi/front.svg",
  36356. extra: 1914/1846,
  36357. bottom: 22/1936
  36358. }
  36359. },
  36360. },
  36361. [
  36362. {
  36363. name: "Normal",
  36364. height: math.unit(8 + 6/12, "feet"),
  36365. default: true
  36366. },
  36367. ]
  36368. ))
  36369. characterMakers.push(() => makeCharacter(
  36370. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36371. {
  36372. front: {
  36373. height: math.unit(6 + 6/12, "feet"),
  36374. weight: math.unit(7, "lb"),
  36375. name: "Front",
  36376. image: {
  36377. source: "./media/characters/icky/front.svg",
  36378. extra: 813/782,
  36379. bottom: 66/879
  36380. }
  36381. },
  36382. back: {
  36383. height: math.unit(6 + 6/12, "feet"),
  36384. weight: math.unit(7, "lb"),
  36385. name: "Back",
  36386. image: {
  36387. source: "./media/characters/icky/back.svg",
  36388. extra: 754/735,
  36389. bottom: 56/810
  36390. }
  36391. },
  36392. },
  36393. [
  36394. {
  36395. name: "Normal",
  36396. height: math.unit(6 + 6/12, "feet"),
  36397. default: true
  36398. },
  36399. ]
  36400. ))
  36401. characterMakers.push(() => makeCharacter(
  36402. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36403. {
  36404. front: {
  36405. height: math.unit(15, "feet"),
  36406. name: "Front",
  36407. image: {
  36408. source: "./media/characters/rojas/front.svg",
  36409. extra: 1462/1408,
  36410. bottom: 95/1557
  36411. }
  36412. },
  36413. back: {
  36414. height: math.unit(15, "feet"),
  36415. name: "Back",
  36416. image: {
  36417. source: "./media/characters/rojas/back.svg",
  36418. extra: 1023/954,
  36419. bottom: 28/1051
  36420. }
  36421. },
  36422. },
  36423. [
  36424. {
  36425. name: "Normal",
  36426. height: math.unit(15, "feet"),
  36427. default: true
  36428. },
  36429. ]
  36430. ))
  36431. characterMakers.push(() => makeCharacter(
  36432. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36433. {
  36434. frontHuman: {
  36435. height: math.unit(5 + 7/12, "feet"),
  36436. name: "Front (Human)",
  36437. image: {
  36438. source: "./media/characters/alek-dryagan/front-human.svg",
  36439. extra: 1687/1667,
  36440. bottom: 69/1756
  36441. }
  36442. },
  36443. backHuman: {
  36444. height: math.unit(5 + 7/12, "feet"),
  36445. name: "Back (Human)",
  36446. image: {
  36447. source: "./media/characters/alek-dryagan/back-human.svg",
  36448. extra: 1670/1649,
  36449. bottom: 65/1735
  36450. }
  36451. },
  36452. frontDemi: {
  36453. height: math.unit(65, "feet"),
  36454. name: "Front (Demi)",
  36455. image: {
  36456. source: "./media/characters/alek-dryagan/front-demi.svg",
  36457. extra: 1669/1642,
  36458. bottom: 49/1718
  36459. }
  36460. },
  36461. backDemi: {
  36462. height: math.unit(65, "feet"),
  36463. name: "Back (Demi)",
  36464. image: {
  36465. source: "./media/characters/alek-dryagan/back-demi.svg",
  36466. extra: 1658/1637,
  36467. bottom: 40/1698
  36468. }
  36469. },
  36470. mawHuman: {
  36471. height: math.unit(0.3, "feet"),
  36472. name: "Maw (Human)",
  36473. image: {
  36474. source: "./media/characters/alek-dryagan/maw-human.svg"
  36475. }
  36476. },
  36477. mawDemi: {
  36478. height: math.unit(3.8, "feet"),
  36479. name: "Maw (Demi)",
  36480. image: {
  36481. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36482. }
  36483. },
  36484. },
  36485. [
  36486. {
  36487. name: "Normal",
  36488. height: math.unit(5 + 7/12, "feet"),
  36489. default: true
  36490. },
  36491. ]
  36492. ))
  36493. characterMakers.push(() => makeCharacter(
  36494. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36495. {
  36496. frontHuman: {
  36497. height: math.unit(5 + 2/12, "feet"),
  36498. name: "Front (Human)",
  36499. image: {
  36500. source: "./media/characters/gen/front-human.svg",
  36501. extra: 1627/1538,
  36502. bottom: 71/1698
  36503. }
  36504. },
  36505. backHuman: {
  36506. height: math.unit(5 + 2/12, "feet"),
  36507. name: "Back (Human)",
  36508. image: {
  36509. source: "./media/characters/gen/back-human.svg",
  36510. extra: 1638/1548,
  36511. bottom: 69/1707
  36512. }
  36513. },
  36514. frontDemi: {
  36515. height: math.unit(5 + 2/12, "feet"),
  36516. name: "Front (Demi)",
  36517. image: {
  36518. source: "./media/characters/gen/front-demi.svg",
  36519. extra: 1627/1538,
  36520. bottom: 71/1698
  36521. }
  36522. },
  36523. backDemi: {
  36524. height: math.unit(5 + 2/12, "feet"),
  36525. name: "Back (Demi)",
  36526. image: {
  36527. source: "./media/characters/gen/back-demi.svg",
  36528. extra: 1638/1548,
  36529. bottom: 69/1707
  36530. }
  36531. },
  36532. },
  36533. [
  36534. {
  36535. name: "Normal",
  36536. height: math.unit(5 + 2/12, "feet"),
  36537. default: true
  36538. },
  36539. ]
  36540. ))
  36541. characterMakers.push(() => makeCharacter(
  36542. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36543. {
  36544. frontImp: {
  36545. height: math.unit(1 + 11/12, "feet"),
  36546. name: "Front (Imp)",
  36547. image: {
  36548. source: "./media/characters/max-kobold/front-imp.svg",
  36549. extra: 1238/1134,
  36550. bottom: 81/1319
  36551. }
  36552. },
  36553. backImp: {
  36554. height: math.unit(1 + 11/12, "feet"),
  36555. name: "Back (Imp)",
  36556. image: {
  36557. source: "./media/characters/max-kobold/back-imp.svg",
  36558. extra: 1334/1175,
  36559. bottom: 34/1368
  36560. }
  36561. },
  36562. frontDemi: {
  36563. height: math.unit(5 + 9/12, "feet"),
  36564. name: "Front (Demi)",
  36565. image: {
  36566. source: "./media/characters/max-kobold/front-demi.svg",
  36567. extra: 1715/1685,
  36568. bottom: 54/1769
  36569. }
  36570. },
  36571. backDemi: {
  36572. height: math.unit(5 + 9/12, "feet"),
  36573. name: "Back (Demi)",
  36574. image: {
  36575. source: "./media/characters/max-kobold/back-demi.svg",
  36576. extra: 1752/1729,
  36577. bottom: 41/1793
  36578. }
  36579. },
  36580. handImp: {
  36581. height: math.unit(0.45, "feet"),
  36582. name: "Hand (Imp)",
  36583. image: {
  36584. source: "./media/characters/max-kobold/hand.svg"
  36585. }
  36586. },
  36587. pawImp: {
  36588. height: math.unit(0.46, "feet"),
  36589. name: "Paw (Imp)",
  36590. image: {
  36591. source: "./media/characters/max-kobold/paw.svg"
  36592. }
  36593. },
  36594. handDemi: {
  36595. height: math.unit(0.80, "feet"),
  36596. name: "Hand (Demi)",
  36597. image: {
  36598. source: "./media/characters/max-kobold/hand.svg"
  36599. }
  36600. },
  36601. pawDemi: {
  36602. height: math.unit(1.1, "feet"),
  36603. name: "Paw (Demi)",
  36604. image: {
  36605. source: "./media/characters/max-kobold/paw.svg"
  36606. }
  36607. },
  36608. headImp: {
  36609. height: math.unit(1.33, "feet"),
  36610. name: "Head (Imp)",
  36611. image: {
  36612. source: "./media/characters/max-kobold/head-imp.svg"
  36613. }
  36614. },
  36615. mawImp: {
  36616. height: math.unit(0.75, "feet"),
  36617. name: "Maw (Imp)",
  36618. image: {
  36619. source: "./media/characters/max-kobold/maw-imp.svg"
  36620. }
  36621. },
  36622. mawDemi: {
  36623. height: math.unit(0.42, "feet"),
  36624. name: "Maw (Demi)",
  36625. image: {
  36626. source: "./media/characters/max-kobold/maw-demi.svg"
  36627. }
  36628. },
  36629. },
  36630. [
  36631. {
  36632. name: "Normal",
  36633. height: math.unit(1 + 11/12, "feet"),
  36634. default: true
  36635. },
  36636. ]
  36637. ))
  36638. characterMakers.push(() => makeCharacter(
  36639. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36640. {
  36641. front: {
  36642. height: math.unit(7 + 5/12, "feet"),
  36643. name: "Front",
  36644. image: {
  36645. source: "./media/characters/carbon/front.svg",
  36646. extra: 1754/1689,
  36647. bottom: 65/1819
  36648. }
  36649. },
  36650. back: {
  36651. height: math.unit(7 + 5/12, "feet"),
  36652. name: "Back",
  36653. image: {
  36654. source: "./media/characters/carbon/back.svg",
  36655. extra: 1762/1695,
  36656. bottom: 24/1786
  36657. }
  36658. },
  36659. frontGigantamax: {
  36660. height: math.unit(150, "feet"),
  36661. name: "Front (Gigantamax)",
  36662. image: {
  36663. source: "./media/characters/carbon/front-gigantamax.svg",
  36664. extra: 1826/1669,
  36665. bottom: 59/1885
  36666. }
  36667. },
  36668. backGigantamax: {
  36669. height: math.unit(150, "feet"),
  36670. name: "Back (Gigantamax)",
  36671. image: {
  36672. source: "./media/characters/carbon/back-gigantamax.svg",
  36673. extra: 1796/1653,
  36674. bottom: 53/1849
  36675. }
  36676. },
  36677. maw: {
  36678. height: math.unit(0.48, "feet"),
  36679. name: "Maw",
  36680. image: {
  36681. source: "./media/characters/carbon/maw.svg"
  36682. }
  36683. },
  36684. mawGigantamax: {
  36685. height: math.unit(7.5, "feet"),
  36686. name: "Maw (Gigantamax)",
  36687. image: {
  36688. source: "./media/characters/carbon/maw-gigantamax.svg"
  36689. }
  36690. },
  36691. },
  36692. [
  36693. {
  36694. name: "Normal",
  36695. height: math.unit(7 + 5/12, "feet"),
  36696. default: true
  36697. },
  36698. ]
  36699. ))
  36700. characterMakers.push(() => makeCharacter(
  36701. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36702. {
  36703. front: {
  36704. height: math.unit(6, "feet"),
  36705. name: "Front",
  36706. image: {
  36707. source: "./media/characters/maverick/front.svg",
  36708. extra: 1672/1661,
  36709. bottom: 85/1757
  36710. }
  36711. },
  36712. back: {
  36713. height: math.unit(6, "feet"),
  36714. name: "Back",
  36715. image: {
  36716. source: "./media/characters/maverick/back.svg",
  36717. extra: 1642/1631,
  36718. bottom: 38/1680
  36719. }
  36720. },
  36721. },
  36722. [
  36723. {
  36724. name: "Normal",
  36725. height: math.unit(6, "feet"),
  36726. default: true
  36727. },
  36728. ]
  36729. ))
  36730. characterMakers.push(() => makeCharacter(
  36731. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36732. {
  36733. front: {
  36734. height: math.unit(15, "feet"),
  36735. weight: math.unit(615, "lb"),
  36736. name: "Front",
  36737. image: {
  36738. source: "./media/characters/grockle/front.svg",
  36739. extra: 1535/1427,
  36740. bottom: 56/1591
  36741. }
  36742. },
  36743. },
  36744. [
  36745. {
  36746. name: "Normal",
  36747. height: math.unit(15, "feet"),
  36748. default: true
  36749. },
  36750. {
  36751. name: "Large",
  36752. height: math.unit(150, "feet")
  36753. },
  36754. {
  36755. name: "Macro",
  36756. height: math.unit(1876, "feet")
  36757. },
  36758. {
  36759. name: "Mega Macro",
  36760. height: math.unit(121940, "feet")
  36761. },
  36762. {
  36763. name: "Giga Macro",
  36764. height: math.unit(750, "km")
  36765. },
  36766. {
  36767. name: "Tera Macro",
  36768. height: math.unit(750000, "km")
  36769. },
  36770. {
  36771. name: "Galactic",
  36772. height: math.unit(1.4e5, "km")
  36773. },
  36774. {
  36775. name: "Godlike",
  36776. height: math.unit(9.8e280, "galaxies")
  36777. },
  36778. ]
  36779. ))
  36780. characterMakers.push(() => makeCharacter(
  36781. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36782. {
  36783. front: {
  36784. height: math.unit(11, "meters"),
  36785. weight: math.unit(20, "tonnes"),
  36786. name: "Front",
  36787. image: {
  36788. source: "./media/characters/alistair/front.svg",
  36789. extra: 1265/1009,
  36790. bottom: 93/1358
  36791. }
  36792. },
  36793. },
  36794. [
  36795. {
  36796. name: "Normal",
  36797. height: math.unit(11, "meters"),
  36798. default: true
  36799. },
  36800. ]
  36801. ))
  36802. characterMakers.push(() => makeCharacter(
  36803. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36804. {
  36805. front: {
  36806. height: math.unit(5 + 8/12, "feet"),
  36807. name: "Front",
  36808. image: {
  36809. source: "./media/characters/haruka/front.svg",
  36810. extra: 2012/1952,
  36811. bottom: 0/2012
  36812. }
  36813. },
  36814. },
  36815. [
  36816. {
  36817. name: "Normal",
  36818. height: math.unit(5 + 8/12, "feet"),
  36819. default: true
  36820. },
  36821. ]
  36822. ))
  36823. characterMakers.push(() => makeCharacter(
  36824. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36825. {
  36826. back: {
  36827. height: math.unit(9, "feet"),
  36828. name: "Back",
  36829. image: {
  36830. source: "./media/characters/vivian-sylveon/back.svg",
  36831. extra: 1853/1714,
  36832. bottom: 0/1853
  36833. }
  36834. },
  36835. },
  36836. [
  36837. {
  36838. name: "Normal",
  36839. height: math.unit(9, "feet"),
  36840. default: true
  36841. },
  36842. {
  36843. name: "Macro",
  36844. height: math.unit(500, "feet")
  36845. },
  36846. {
  36847. name: "Megamacro",
  36848. height: math.unit(600, "miles")
  36849. },
  36850. {
  36851. name: "Gigamacro",
  36852. height: math.unit(30000, "miles")
  36853. },
  36854. ]
  36855. ))
  36856. characterMakers.push(() => makeCharacter(
  36857. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36858. {
  36859. anthro: {
  36860. height: math.unit(5 + 10/12, "feet"),
  36861. weight: math.unit(100, "lb"),
  36862. name: "Anthro",
  36863. image: {
  36864. source: "./media/characters/daiki/anthro.svg",
  36865. extra: 1115/1027,
  36866. bottom: 69/1184
  36867. }
  36868. },
  36869. feral: {
  36870. height: math.unit(200, "feet"),
  36871. name: "Feral",
  36872. image: {
  36873. source: "./media/characters/daiki/feral.svg",
  36874. extra: 1256/313,
  36875. bottom: 39/1295
  36876. }
  36877. },
  36878. feralHead: {
  36879. height: math.unit(171, "feet"),
  36880. name: "Feral Head",
  36881. image: {
  36882. source: "./media/characters/daiki/feral-head.svg"
  36883. }
  36884. },
  36885. manaDragon: {
  36886. height: math.unit(170, "meters"),
  36887. name: "Mana-dragon",
  36888. image: {
  36889. source: "./media/characters/daiki/mana-dragon.svg",
  36890. extra: 763/420,
  36891. bottom: 97/860
  36892. }
  36893. },
  36894. },
  36895. [
  36896. {
  36897. name: "Normal",
  36898. height: math.unit(5 + 10/12, "feet"),
  36899. default: true
  36900. },
  36901. ]
  36902. ))
  36903. characterMakers.push(() => makeCharacter(
  36904. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36905. {
  36906. fullyEquippedFront: {
  36907. height: math.unit(3 + 1/12, "feet"),
  36908. weight: math.unit(24, "lb"),
  36909. name: "Fully Equipped (Front)",
  36910. image: {
  36911. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36912. extra: 687/605,
  36913. bottom: 18/705
  36914. }
  36915. },
  36916. fullyEquippedBack: {
  36917. height: math.unit(3 + 1/12, "feet"),
  36918. weight: math.unit(24, "lb"),
  36919. name: "Fully Equipped (Back)",
  36920. image: {
  36921. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36922. extra: 689/590,
  36923. bottom: 18/707
  36924. }
  36925. },
  36926. dailyWear: {
  36927. height: math.unit(3 + 1/12, "feet"),
  36928. weight: math.unit(24, "lb"),
  36929. name: "Daily Wear",
  36930. image: {
  36931. source: "./media/characters/tea-spot/daily-wear.svg",
  36932. extra: 701/620,
  36933. bottom: 21/722
  36934. }
  36935. },
  36936. maidWork: {
  36937. height: math.unit(3 + 1/12, "feet"),
  36938. weight: math.unit(24, "lb"),
  36939. name: "Maid Work",
  36940. image: {
  36941. source: "./media/characters/tea-spot/maid-work.svg",
  36942. extra: 693/609,
  36943. bottom: 15/708
  36944. }
  36945. },
  36946. },
  36947. [
  36948. {
  36949. name: "Normal",
  36950. height: math.unit(3 + 1/12, "feet"),
  36951. default: true
  36952. },
  36953. ]
  36954. ))
  36955. characterMakers.push(() => makeCharacter(
  36956. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36957. {
  36958. front: {
  36959. height: math.unit(175, "cm"),
  36960. weight: math.unit(75, "kg"),
  36961. name: "Front",
  36962. image: {
  36963. source: "./media/characters/chee/front.svg",
  36964. extra: 1796/1740,
  36965. bottom: 40/1836
  36966. }
  36967. },
  36968. },
  36969. [
  36970. {
  36971. name: "Micro-Micro",
  36972. height: math.unit(1, "nm")
  36973. },
  36974. {
  36975. name: "Micro-erst",
  36976. height: math.unit(1, "micrometer")
  36977. },
  36978. {
  36979. name: "Micro-er",
  36980. height: math.unit(1, "cm")
  36981. },
  36982. {
  36983. name: "Normal",
  36984. height: math.unit(175, "cm"),
  36985. default: true
  36986. },
  36987. {
  36988. name: "Macro",
  36989. height: math.unit(100, "m")
  36990. },
  36991. {
  36992. name: "Macro-er",
  36993. height: math.unit(1, "km")
  36994. },
  36995. {
  36996. name: "Macro-erst",
  36997. height: math.unit(10, "km")
  36998. },
  36999. {
  37000. name: "Macro-Macro",
  37001. height: math.unit(100, "km")
  37002. },
  37003. ]
  37004. ))
  37005. characterMakers.push(() => makeCharacter(
  37006. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37007. {
  37008. front: {
  37009. height: math.unit(11 + 9/12, "feet"),
  37010. weight: math.unit(935, "lb"),
  37011. name: "Front",
  37012. image: {
  37013. source: "./media/characters/kingsley/front.svg",
  37014. extra: 1803/1674,
  37015. bottom: 127/1930
  37016. }
  37017. },
  37018. frontNude: {
  37019. height: math.unit(11 + 9/12, "feet"),
  37020. weight: math.unit(935, "lb"),
  37021. name: "Front (Nude)",
  37022. image: {
  37023. source: "./media/characters/kingsley/front-nude.svg",
  37024. extra: 1803/1674,
  37025. bottom: 127/1930
  37026. }
  37027. },
  37028. },
  37029. [
  37030. {
  37031. name: "Normal",
  37032. height: math.unit(11 + 9/12, "feet"),
  37033. default: true
  37034. },
  37035. ]
  37036. ))
  37037. characterMakers.push(() => makeCharacter(
  37038. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37039. {
  37040. side: {
  37041. height: math.unit(9, "feet"),
  37042. name: "Side",
  37043. image: {
  37044. source: "./media/characters/rymel/side.svg",
  37045. extra: 792/469,
  37046. bottom: 121/913
  37047. }
  37048. },
  37049. maw: {
  37050. height: math.unit(2.4, "meters"),
  37051. name: "Maw",
  37052. image: {
  37053. source: "./media/characters/rymel/maw.svg"
  37054. }
  37055. },
  37056. },
  37057. [
  37058. {
  37059. name: "House Drake",
  37060. height: math.unit(2, "feet")
  37061. },
  37062. {
  37063. name: "Reduced",
  37064. height: math.unit(4.5, "feet")
  37065. },
  37066. {
  37067. name: "Normal",
  37068. height: math.unit(9, "feet"),
  37069. default: true
  37070. },
  37071. ]
  37072. ))
  37073. characterMakers.push(() => makeCharacter(
  37074. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37075. {
  37076. front: {
  37077. height: math.unit(1.74, "meters"),
  37078. weight: math.unit(55, "kg"),
  37079. name: "Front",
  37080. image: {
  37081. source: "./media/characters/rubus/front.svg",
  37082. extra: 1894/1742,
  37083. bottom: 44/1938
  37084. }
  37085. },
  37086. },
  37087. [
  37088. {
  37089. name: "Normal",
  37090. height: math.unit(1.74, "meters"),
  37091. default: true
  37092. },
  37093. ]
  37094. ))
  37095. characterMakers.push(() => makeCharacter(
  37096. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37097. {
  37098. front: {
  37099. height: math.unit(5 + 2/12, "feet"),
  37100. weight: math.unit(112, "lb"),
  37101. name: "Front",
  37102. image: {
  37103. source: "./media/characters/cassie-kingston/front.svg",
  37104. extra: 1438/1390,
  37105. bottom: 47/1485
  37106. }
  37107. },
  37108. },
  37109. [
  37110. {
  37111. name: "Normal",
  37112. height: math.unit(5 + 2/12, "feet"),
  37113. default: true
  37114. },
  37115. {
  37116. name: "Macro",
  37117. height: math.unit(128, "feet")
  37118. },
  37119. {
  37120. name: "Megamacro",
  37121. height: math.unit(2.56, "miles")
  37122. },
  37123. ]
  37124. ))
  37125. characterMakers.push(() => makeCharacter(
  37126. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37127. {
  37128. front: {
  37129. height: math.unit(7, "feet"),
  37130. name: "Front",
  37131. image: {
  37132. source: "./media/characters/fox/front.svg",
  37133. extra: 1798/1703,
  37134. bottom: 55/1853
  37135. }
  37136. },
  37137. back: {
  37138. height: math.unit(7, "feet"),
  37139. name: "Back",
  37140. image: {
  37141. source: "./media/characters/fox/back.svg",
  37142. extra: 1748/1649,
  37143. bottom: 32/1780
  37144. }
  37145. },
  37146. head: {
  37147. height: math.unit(1.95, "feet"),
  37148. name: "Head",
  37149. image: {
  37150. source: "./media/characters/fox/head.svg"
  37151. }
  37152. },
  37153. dick: {
  37154. height: math.unit(1.33, "feet"),
  37155. name: "Dick",
  37156. image: {
  37157. source: "./media/characters/fox/dick.svg"
  37158. }
  37159. },
  37160. foot: {
  37161. height: math.unit(1, "feet"),
  37162. name: "Foot",
  37163. image: {
  37164. source: "./media/characters/fox/foot.svg"
  37165. }
  37166. },
  37167. paw: {
  37168. height: math.unit(0.92, "feet"),
  37169. name: "Paw",
  37170. image: {
  37171. source: "./media/characters/fox/paw.svg"
  37172. }
  37173. },
  37174. },
  37175. [
  37176. {
  37177. name: "Small",
  37178. height: math.unit(3, "inches")
  37179. },
  37180. {
  37181. name: "\"Realistic\"",
  37182. height: math.unit(7, "feet")
  37183. },
  37184. {
  37185. name: "Normal",
  37186. height: math.unit(150, "feet"),
  37187. default: true
  37188. },
  37189. {
  37190. name: "BIG",
  37191. height: math.unit(1200, "feet")
  37192. },
  37193. {
  37194. name: "👀",
  37195. height: math.unit(5, "miles")
  37196. },
  37197. {
  37198. name: "👀👀👀",
  37199. height: math.unit(64, "miles")
  37200. },
  37201. ]
  37202. ))
  37203. characterMakers.push(() => makeCharacter(
  37204. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37205. {
  37206. front: {
  37207. height: math.unit(625, "feet"),
  37208. name: "Front",
  37209. image: {
  37210. source: "./media/characters/asonja-rossa/front.svg",
  37211. extra: 1833/1686,
  37212. bottom: 24/1857
  37213. }
  37214. },
  37215. back: {
  37216. height: math.unit(625, "feet"),
  37217. name: "Back",
  37218. image: {
  37219. source: "./media/characters/asonja-rossa/back.svg",
  37220. extra: 1852/1753,
  37221. bottom: 26/1878
  37222. }
  37223. },
  37224. },
  37225. [
  37226. {
  37227. name: "Macro",
  37228. height: math.unit(625, "feet"),
  37229. default: true
  37230. },
  37231. ]
  37232. ))
  37233. characterMakers.push(() => makeCharacter(
  37234. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37235. {
  37236. side: {
  37237. height: math.unit(8, "feet"),
  37238. name: "Side",
  37239. image: {
  37240. source: "./media/characters/rezukii/side.svg",
  37241. extra: 979/542,
  37242. bottom: 87/1066
  37243. }
  37244. },
  37245. sitting: {
  37246. height: math.unit(14.6, "feet"),
  37247. name: "Sitting",
  37248. image: {
  37249. source: "./media/characters/rezukii/sitting.svg",
  37250. extra: 1023/813,
  37251. bottom: 45/1068
  37252. }
  37253. },
  37254. },
  37255. [
  37256. {
  37257. name: "Tiny",
  37258. height: math.unit(2, "feet")
  37259. },
  37260. {
  37261. name: "Smol",
  37262. height: math.unit(4, "feet")
  37263. },
  37264. {
  37265. name: "Normal",
  37266. height: math.unit(8, "feet"),
  37267. default: true
  37268. },
  37269. {
  37270. name: "Big",
  37271. height: math.unit(12, "feet")
  37272. },
  37273. {
  37274. name: "Macro",
  37275. height: math.unit(30, "feet")
  37276. },
  37277. ]
  37278. ))
  37279. characterMakers.push(() => makeCharacter(
  37280. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37281. {
  37282. front: {
  37283. height: math.unit(14, "feet"),
  37284. weight: math.unit(9.5, "tonnes"),
  37285. name: "Front",
  37286. image: {
  37287. source: "./media/characters/dawnheart/front.svg",
  37288. extra: 2792/2675,
  37289. bottom: 64/2856
  37290. }
  37291. },
  37292. },
  37293. [
  37294. {
  37295. name: "Normal",
  37296. height: math.unit(14, "feet"),
  37297. default: true
  37298. },
  37299. ]
  37300. ))
  37301. characterMakers.push(() => makeCharacter(
  37302. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37303. {
  37304. front: {
  37305. height: math.unit(1.7, "m"),
  37306. name: "Front",
  37307. image: {
  37308. source: "./media/characters/gladi/front.svg",
  37309. extra: 1460/1362,
  37310. bottom: 19/1479
  37311. }
  37312. },
  37313. back: {
  37314. height: math.unit(1.7, "m"),
  37315. name: "Back",
  37316. image: {
  37317. source: "./media/characters/gladi/back.svg",
  37318. extra: 1459/1357,
  37319. bottom: 12/1471
  37320. }
  37321. },
  37322. feral: {
  37323. height: math.unit(2.05, "m"),
  37324. name: "Feral",
  37325. image: {
  37326. source: "./media/characters/gladi/feral.svg",
  37327. extra: 821/557,
  37328. bottom: 91/912
  37329. }
  37330. },
  37331. },
  37332. [
  37333. {
  37334. name: "Shortest",
  37335. height: math.unit(70, "cm")
  37336. },
  37337. {
  37338. name: "Normal",
  37339. height: math.unit(1.7, "m")
  37340. },
  37341. {
  37342. name: "Macro",
  37343. height: math.unit(10, "m"),
  37344. default: true
  37345. },
  37346. {
  37347. name: "Tallest",
  37348. height: math.unit(200, "m")
  37349. },
  37350. ]
  37351. ))
  37352. characterMakers.push(() => makeCharacter(
  37353. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37354. {
  37355. front: {
  37356. height: math.unit(5 + 7/12, "feet"),
  37357. weight: math.unit(2, "tons"),
  37358. name: "Front",
  37359. image: {
  37360. source: "./media/characters/erdno/front.svg",
  37361. extra: 1234/1129,
  37362. bottom: 35/1269
  37363. }
  37364. },
  37365. angled: {
  37366. height: math.unit(5 + 7/12, "feet"),
  37367. weight: math.unit(2, "tons"),
  37368. name: "Angled",
  37369. image: {
  37370. source: "./media/characters/erdno/angled.svg",
  37371. extra: 1185/1139,
  37372. bottom: 36/1221
  37373. }
  37374. },
  37375. side: {
  37376. height: math.unit(5 + 7/12, "feet"),
  37377. weight: math.unit(2, "tons"),
  37378. name: "Side",
  37379. image: {
  37380. source: "./media/characters/erdno/side.svg",
  37381. extra: 1191/1144,
  37382. bottom: 40/1231
  37383. }
  37384. },
  37385. back: {
  37386. height: math.unit(5 + 7/12, "feet"),
  37387. weight: math.unit(2, "tons"),
  37388. name: "Back",
  37389. image: {
  37390. source: "./media/characters/erdno/back.svg",
  37391. extra: 1202/1146,
  37392. bottom: 17/1219
  37393. }
  37394. },
  37395. frontNsfw: {
  37396. height: math.unit(5 + 7/12, "feet"),
  37397. weight: math.unit(2, "tons"),
  37398. name: "Front (NSFW)",
  37399. image: {
  37400. source: "./media/characters/erdno/front-nsfw.svg",
  37401. extra: 1234/1129,
  37402. bottom: 35/1269
  37403. }
  37404. },
  37405. angledNsfw: {
  37406. height: math.unit(5 + 7/12, "feet"),
  37407. weight: math.unit(2, "tons"),
  37408. name: "Angled (NSFW)",
  37409. image: {
  37410. source: "./media/characters/erdno/angled-nsfw.svg",
  37411. extra: 1185/1139,
  37412. bottom: 36/1221
  37413. }
  37414. },
  37415. sideNsfw: {
  37416. height: math.unit(5 + 7/12, "feet"),
  37417. weight: math.unit(2, "tons"),
  37418. name: "Side (NSFW)",
  37419. image: {
  37420. source: "./media/characters/erdno/side-nsfw.svg",
  37421. extra: 1191/1144,
  37422. bottom: 40/1231
  37423. }
  37424. },
  37425. backNsfw: {
  37426. height: math.unit(5 + 7/12, "feet"),
  37427. weight: math.unit(2, "tons"),
  37428. name: "Back (NSFW)",
  37429. image: {
  37430. source: "./media/characters/erdno/back-nsfw.svg",
  37431. extra: 1202/1146,
  37432. bottom: 17/1219
  37433. }
  37434. },
  37435. frontHyper: {
  37436. height: math.unit(5 + 7/12, "feet"),
  37437. weight: math.unit(2, "tons"),
  37438. name: "Front (Hyper)",
  37439. image: {
  37440. source: "./media/characters/erdno/front-hyper.svg",
  37441. extra: 1298/1136,
  37442. bottom: 35/1333
  37443. }
  37444. },
  37445. },
  37446. [
  37447. {
  37448. name: "Normal",
  37449. height: math.unit(5 + 7/12, "feet"),
  37450. default: true
  37451. },
  37452. {
  37453. name: "Big",
  37454. height: math.unit(5.7, "meters")
  37455. },
  37456. {
  37457. name: "Macro",
  37458. height: math.unit(5.7, "kilometers")
  37459. },
  37460. {
  37461. name: "Megamacro",
  37462. height: math.unit(5.7, "earths")
  37463. },
  37464. ]
  37465. ))
  37466. characterMakers.push(() => makeCharacter(
  37467. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37468. {
  37469. front: {
  37470. height: math.unit(5 + 10/12, "feet"),
  37471. weight: math.unit(150, "lb"),
  37472. name: "Front",
  37473. image: {
  37474. source: "./media/characters/jamie/front.svg",
  37475. extra: 1908/1768,
  37476. bottom: 19/1927
  37477. }
  37478. },
  37479. },
  37480. [
  37481. {
  37482. name: "Minimum",
  37483. height: math.unit(2, "cm")
  37484. },
  37485. {
  37486. name: "Micro",
  37487. height: math.unit(3, "inches")
  37488. },
  37489. {
  37490. name: "Normal",
  37491. height: math.unit(5 + 10/12, "feet"),
  37492. default: true
  37493. },
  37494. {
  37495. name: "Macro",
  37496. height: math.unit(150, "feet")
  37497. },
  37498. {
  37499. name: "Megamacro",
  37500. height: math.unit(10000, "m")
  37501. },
  37502. ]
  37503. ))
  37504. characterMakers.push(() => makeCharacter(
  37505. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37506. {
  37507. front: {
  37508. height: math.unit(2, "meters"),
  37509. weight: math.unit(100, "kg"),
  37510. name: "Front",
  37511. image: {
  37512. source: "./media/characters/shiron/front.svg",
  37513. extra: 2103/1985,
  37514. bottom: 98/2201
  37515. }
  37516. },
  37517. back: {
  37518. height: math.unit(2, "meters"),
  37519. weight: math.unit(100, "kg"),
  37520. name: "Back",
  37521. image: {
  37522. source: "./media/characters/shiron/back.svg",
  37523. extra: 2110/2015,
  37524. bottom: 89/2199
  37525. }
  37526. },
  37527. hand: {
  37528. height: math.unit(0.96, "feet"),
  37529. name: "Hand",
  37530. image: {
  37531. source: "./media/characters/shiron/hand.svg"
  37532. }
  37533. },
  37534. foot: {
  37535. height: math.unit(1.464, "feet"),
  37536. name: "Foot",
  37537. image: {
  37538. source: "./media/characters/shiron/foot.svg"
  37539. }
  37540. },
  37541. },
  37542. [
  37543. {
  37544. name: "Normal",
  37545. height: math.unit(2, "meters")
  37546. },
  37547. {
  37548. name: "Macro",
  37549. height: math.unit(500, "meters"),
  37550. default: true
  37551. },
  37552. {
  37553. name: "Megamacro",
  37554. height: math.unit(20, "km")
  37555. },
  37556. ]
  37557. ))
  37558. characterMakers.push(() => makeCharacter(
  37559. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37560. {
  37561. front: {
  37562. height: math.unit(6, "feet"),
  37563. name: "Front",
  37564. image: {
  37565. source: "./media/characters/sam/front.svg",
  37566. extra: 849/826,
  37567. bottom: 19/868
  37568. }
  37569. },
  37570. },
  37571. [
  37572. {
  37573. name: "Normal",
  37574. height: math.unit(6, "feet"),
  37575. default: true
  37576. },
  37577. ]
  37578. ))
  37579. characterMakers.push(() => makeCharacter(
  37580. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37581. {
  37582. front: {
  37583. height: math.unit(8 + 4/12, "feet"),
  37584. weight: math.unit(122, "kg"),
  37585. name: "Front",
  37586. image: {
  37587. source: "./media/characters/namori-kurogawa/front.svg",
  37588. extra: 1894/1576,
  37589. bottom: 34/1928
  37590. }
  37591. },
  37592. },
  37593. [
  37594. {
  37595. name: "Normal",
  37596. height: math.unit(8 + 4/12, "feet"),
  37597. default: true
  37598. },
  37599. ]
  37600. ))
  37601. characterMakers.push(() => makeCharacter(
  37602. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37603. {
  37604. front: {
  37605. height: math.unit(9, "feet"),
  37606. weight: math.unit(621, "lb"),
  37607. name: "Front",
  37608. image: {
  37609. source: "./media/characters/unmru/front.svg",
  37610. extra: 1853/1747,
  37611. bottom: 73/1926
  37612. }
  37613. },
  37614. side: {
  37615. height: math.unit(9, "feet"),
  37616. weight: math.unit(621, "lb"),
  37617. name: "Side",
  37618. image: {
  37619. source: "./media/characters/unmru/side.svg",
  37620. extra: 1781/1671,
  37621. bottom: 127/1908
  37622. }
  37623. },
  37624. back: {
  37625. height: math.unit(9, "feet"),
  37626. weight: math.unit(621, "lb"),
  37627. name: "Back",
  37628. image: {
  37629. source: "./media/characters/unmru/back.svg",
  37630. extra: 1894/1765,
  37631. bottom: 75/1969
  37632. }
  37633. },
  37634. dick: {
  37635. height: math.unit(3, "feet"),
  37636. weight: math.unit(35, "lb"),
  37637. name: "Dick",
  37638. image: {
  37639. source: "./media/characters/unmru/dick.svg"
  37640. }
  37641. },
  37642. },
  37643. [
  37644. {
  37645. name: "Normal",
  37646. height: math.unit(9, "feet")
  37647. },
  37648. {
  37649. name: "Natural",
  37650. height: math.unit(27, "feet"),
  37651. default: true
  37652. },
  37653. {
  37654. name: "Giant",
  37655. height: math.unit(90, "feet")
  37656. },
  37657. {
  37658. name: "Kaiju",
  37659. height: math.unit(270, "feet")
  37660. },
  37661. {
  37662. name: "Macro",
  37663. height: math.unit(900, "feet")
  37664. },
  37665. {
  37666. name: "Macro+",
  37667. height: math.unit(2700, "feet")
  37668. },
  37669. {
  37670. name: "Megamacro",
  37671. height: math.unit(9000, "feet")
  37672. },
  37673. {
  37674. name: "City-Crushing",
  37675. height: math.unit(27000, "feet")
  37676. },
  37677. {
  37678. name: "Mountain-Mashing",
  37679. height: math.unit(90000, "feet")
  37680. },
  37681. {
  37682. name: "Earth-Eclipsing",
  37683. height: math.unit(2.7e8, "feet")
  37684. },
  37685. {
  37686. name: "Sol-Swallowing",
  37687. height: math.unit(9e10, "feet")
  37688. },
  37689. {
  37690. name: "Majoris-Munching",
  37691. height: math.unit(2.7e13, "feet")
  37692. },
  37693. ]
  37694. ))
  37695. characterMakers.push(() => makeCharacter(
  37696. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37697. {
  37698. front: {
  37699. height: math.unit(1, "inch"),
  37700. name: "Front",
  37701. image: {
  37702. source: "./media/characters/squeaks-mouse/front.svg",
  37703. extra: 352/308,
  37704. bottom: 25/377
  37705. }
  37706. },
  37707. },
  37708. [
  37709. {
  37710. name: "Micro",
  37711. height: math.unit(1, "inch"),
  37712. default: true
  37713. },
  37714. ]
  37715. ))
  37716. characterMakers.push(() => makeCharacter(
  37717. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37718. {
  37719. side: {
  37720. height: math.unit(35, "feet"),
  37721. name: "Side",
  37722. image: {
  37723. source: "./media/characters/sayko/side.svg",
  37724. extra: 1697/1021,
  37725. bottom: 82/1779
  37726. }
  37727. },
  37728. head: {
  37729. height: math.unit(16, "feet"),
  37730. name: "Head",
  37731. image: {
  37732. source: "./media/characters/sayko/head.svg"
  37733. }
  37734. },
  37735. forepaw: {
  37736. height: math.unit(7.85, "feet"),
  37737. name: "Forepaw",
  37738. image: {
  37739. source: "./media/characters/sayko/forepaw.svg"
  37740. }
  37741. },
  37742. hindpaw: {
  37743. height: math.unit(8.8, "feet"),
  37744. name: "Hindpaw",
  37745. image: {
  37746. source: "./media/characters/sayko/hindpaw.svg"
  37747. }
  37748. },
  37749. },
  37750. [
  37751. {
  37752. name: "Normal",
  37753. height: math.unit(35, "feet"),
  37754. default: true
  37755. },
  37756. {
  37757. name: "Colossus",
  37758. height: math.unit(100, "meters")
  37759. },
  37760. {
  37761. name: "\"Small\" Deity",
  37762. height: math.unit(1, "km")
  37763. },
  37764. {
  37765. name: "\"Large\" Deity",
  37766. height: math.unit(15, "km")
  37767. },
  37768. ]
  37769. ))
  37770. characterMakers.push(() => makeCharacter(
  37771. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37772. {
  37773. front: {
  37774. height: math.unit(6, "feet"),
  37775. weight: math.unit(250, "lb"),
  37776. name: "Front",
  37777. image: {
  37778. source: "./media/characters/mukiro/front.svg",
  37779. extra: 1368/1310,
  37780. bottom: 34/1402
  37781. }
  37782. },
  37783. },
  37784. [
  37785. {
  37786. name: "Normal",
  37787. height: math.unit(6, "feet"),
  37788. default: true
  37789. },
  37790. ]
  37791. ))
  37792. characterMakers.push(() => makeCharacter(
  37793. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37794. {
  37795. front: {
  37796. height: math.unit(12 + 4/12, "feet"),
  37797. name: "Front",
  37798. image: {
  37799. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37800. extra: 1346/1311,
  37801. bottom: 65/1411
  37802. }
  37803. },
  37804. },
  37805. [
  37806. {
  37807. name: "Base",
  37808. height: math.unit(12 + 4/12, "feet"),
  37809. default: true
  37810. },
  37811. {
  37812. name: "Macro",
  37813. height: math.unit(150, "feet")
  37814. },
  37815. {
  37816. name: "Mega",
  37817. height: math.unit(2, "miles")
  37818. },
  37819. {
  37820. name: "Demi God",
  37821. height: math.unit(4, "AU")
  37822. },
  37823. {
  37824. name: "God Size",
  37825. height: math.unit(1, "universe")
  37826. },
  37827. ]
  37828. ))
  37829. characterMakers.push(() => makeCharacter(
  37830. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37831. {
  37832. front: {
  37833. height: math.unit(3 + 3/12, "feet"),
  37834. weight: math.unit(88, "lb"),
  37835. name: "Front",
  37836. image: {
  37837. source: "./media/characters/trey/front.svg",
  37838. extra: 1815/1509,
  37839. bottom: 60/1875
  37840. }
  37841. },
  37842. },
  37843. [
  37844. {
  37845. name: "Normal",
  37846. height: math.unit(3 + 3/12, "feet"),
  37847. default: true
  37848. },
  37849. ]
  37850. ))
  37851. characterMakers.push(() => makeCharacter(
  37852. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  37853. {
  37854. front: {
  37855. height: math.unit(4, "meters"),
  37856. name: "Front",
  37857. image: {
  37858. source: "./media/characters/adelonda/front.svg",
  37859. extra: 1077/982,
  37860. bottom: 39/1116
  37861. }
  37862. },
  37863. back: {
  37864. height: math.unit(4, "meters"),
  37865. name: "Back",
  37866. image: {
  37867. source: "./media/characters/adelonda/back.svg",
  37868. extra: 1105/1003,
  37869. bottom: 25/1130
  37870. }
  37871. },
  37872. feral: {
  37873. height: math.unit(40/1.5, "meters"),
  37874. name: "Feral",
  37875. image: {
  37876. source: "./media/characters/adelonda/feral.svg",
  37877. extra: 597/271,
  37878. bottom: 387/984
  37879. }
  37880. },
  37881. },
  37882. [
  37883. {
  37884. name: "Normal",
  37885. height: math.unit(4, "meters"),
  37886. default: true
  37887. },
  37888. ]
  37889. ))
  37890. characterMakers.push(() => makeCharacter(
  37891. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37892. {
  37893. front: {
  37894. height: math.unit(8 + 4/12, "feet"),
  37895. weight: math.unit(670, "lb"),
  37896. name: "Front",
  37897. image: {
  37898. source: "./media/characters/acadiel/front.svg",
  37899. extra: 1901/1595,
  37900. bottom: 142/2043
  37901. }
  37902. },
  37903. },
  37904. [
  37905. {
  37906. name: "Normal",
  37907. height: math.unit(8 + 4/12, "feet"),
  37908. default: true
  37909. },
  37910. {
  37911. name: "Macro",
  37912. height: math.unit(200, "feet")
  37913. },
  37914. ]
  37915. ))
  37916. characterMakers.push(() => makeCharacter(
  37917. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37918. {
  37919. front: {
  37920. height: math.unit(6 + 2/12, "feet"),
  37921. weight: math.unit(185, "lb"),
  37922. name: "Front",
  37923. image: {
  37924. source: "./media/characters/kayne-ein/front.svg",
  37925. extra: 1780/1560,
  37926. bottom: 81/1861
  37927. }
  37928. },
  37929. },
  37930. [
  37931. {
  37932. name: "Normal",
  37933. height: math.unit(6 + 2/12, "feet"),
  37934. default: true
  37935. },
  37936. {
  37937. name: "Transformation Stage",
  37938. height: math.unit(15, "feet")
  37939. },
  37940. {
  37941. name: "Macro",
  37942. height: math.unit(150, "feet")
  37943. },
  37944. {
  37945. name: "Earth's Shadow",
  37946. height: math.unit(6200, "miles")
  37947. },
  37948. {
  37949. name: "Universal Demon",
  37950. height: math.unit(28e9, "parsecs")
  37951. },
  37952. {
  37953. name: "Multiverse God",
  37954. height: math.unit(3, "multiverses")
  37955. },
  37956. ]
  37957. ))
  37958. characterMakers.push(() => makeCharacter(
  37959. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37960. {
  37961. front: {
  37962. height: math.unit(5 + 5/12, "feet"),
  37963. name: "Front",
  37964. image: {
  37965. source: "./media/characters/fawn/front.svg",
  37966. extra: 1873/1731,
  37967. bottom: 95/1968
  37968. }
  37969. },
  37970. back: {
  37971. height: math.unit(5 + 5/12, "feet"),
  37972. name: "Back",
  37973. image: {
  37974. source: "./media/characters/fawn/back.svg",
  37975. extra: 1813/1700,
  37976. bottom: 14/1827
  37977. }
  37978. },
  37979. hoof: {
  37980. height: math.unit(1.45, "feet"),
  37981. name: "Hoof",
  37982. image: {
  37983. source: "./media/characters/fawn/hoof.svg"
  37984. }
  37985. },
  37986. },
  37987. [
  37988. {
  37989. name: "Normal",
  37990. height: math.unit(5 + 5/12, "feet"),
  37991. default: true
  37992. },
  37993. ]
  37994. ))
  37995. characterMakers.push(() => makeCharacter(
  37996. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37997. {
  37998. front: {
  37999. height: math.unit(2 + 5/12, "feet"),
  38000. name: "Front",
  38001. image: {
  38002. source: "./media/characters/orion/front.svg",
  38003. extra: 1366/1304,
  38004. bottom: 43/1409
  38005. }
  38006. },
  38007. paw: {
  38008. height: math.unit(0.52, "feet"),
  38009. name: "Paw",
  38010. image: {
  38011. source: "./media/characters/orion/paw.svg"
  38012. }
  38013. },
  38014. },
  38015. [
  38016. {
  38017. name: "Normal",
  38018. height: math.unit(2 + 5/12, "feet"),
  38019. default: true
  38020. },
  38021. ]
  38022. ))
  38023. characterMakers.push(() => makeCharacter(
  38024. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38025. {
  38026. front: {
  38027. height: math.unit(5 + 10/12, "feet"),
  38028. name: "Front",
  38029. image: {
  38030. source: "./media/characters/vera/front.svg",
  38031. extra: 1680/1575,
  38032. bottom: 49/1729
  38033. }
  38034. },
  38035. back: {
  38036. height: math.unit(5 + 10/12, "feet"),
  38037. name: "Back",
  38038. image: {
  38039. source: "./media/characters/vera/back.svg",
  38040. extra: 1700/1588,
  38041. bottom: 18/1718
  38042. }
  38043. },
  38044. arcanine: {
  38045. height: math.unit(6 + 8/12, "feet"),
  38046. name: "Arcanine",
  38047. image: {
  38048. source: "./media/characters/vera/arcanine.svg",
  38049. extra: 1590/1511,
  38050. bottom: 71/1661
  38051. }
  38052. },
  38053. maw: {
  38054. height: math.unit(0.82, "feet"),
  38055. name: "Maw",
  38056. image: {
  38057. source: "./media/characters/vera/maw.svg"
  38058. }
  38059. },
  38060. mawArcanine: {
  38061. height: math.unit(0.97, "feet"),
  38062. name: "Maw (Arcanine)",
  38063. image: {
  38064. source: "./media/characters/vera/maw-arcanine.svg"
  38065. }
  38066. },
  38067. paw: {
  38068. height: math.unit(0.75, "feet"),
  38069. name: "Paw",
  38070. image: {
  38071. source: "./media/characters/vera/paw.svg"
  38072. }
  38073. },
  38074. pawprint: {
  38075. height: math.unit(0.52, "feet"),
  38076. name: "Pawprint",
  38077. image: {
  38078. source: "./media/characters/vera/pawprint.svg"
  38079. }
  38080. },
  38081. },
  38082. [
  38083. {
  38084. name: "Normal",
  38085. height: math.unit(5 + 10/12, "feet"),
  38086. default: true
  38087. },
  38088. {
  38089. name: "Macro",
  38090. height: math.unit(75, "feet")
  38091. },
  38092. ]
  38093. ))
  38094. characterMakers.push(() => makeCharacter(
  38095. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38096. {
  38097. front: {
  38098. height: math.unit(4, "feet"),
  38099. weight: math.unit(40, "lb"),
  38100. name: "Front",
  38101. image: {
  38102. source: "./media/characters/orvan-rabbit/front.svg",
  38103. extra: 1896/1642,
  38104. bottom: 29/1925
  38105. }
  38106. },
  38107. },
  38108. [
  38109. {
  38110. name: "Normal",
  38111. height: math.unit(4, "feet"),
  38112. default: true
  38113. },
  38114. ]
  38115. ))
  38116. characterMakers.push(() => makeCharacter(
  38117. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38118. {
  38119. front: {
  38120. height: math.unit(6, "feet"),
  38121. weight: math.unit(168, "lb"),
  38122. name: "Front",
  38123. image: {
  38124. source: "./media/characters/lisa/front.svg",
  38125. extra: 2065/1867,
  38126. bottom: 46/2111
  38127. }
  38128. },
  38129. back: {
  38130. height: math.unit(6, "feet"),
  38131. weight: math.unit(168, "lb"),
  38132. name: "Back",
  38133. image: {
  38134. source: "./media/characters/lisa/back.svg",
  38135. extra: 1982/1838,
  38136. bottom: 29/2011
  38137. }
  38138. },
  38139. maw: {
  38140. height: math.unit(0.81, "feet"),
  38141. name: "Maw",
  38142. image: {
  38143. source: "./media/characters/lisa/maw.svg"
  38144. }
  38145. },
  38146. paw: {
  38147. height: math.unit(0.9, "feet"),
  38148. name: "Paw",
  38149. image: {
  38150. source: "./media/characters/lisa/paw.svg"
  38151. }
  38152. },
  38153. caribousune: {
  38154. height: math.unit(7 + 2/12, "feet"),
  38155. weight: math.unit(268, "lb"),
  38156. name: "Caribousune",
  38157. image: {
  38158. source: "./media/characters/lisa/caribousune.svg",
  38159. extra: 1843/1633,
  38160. bottom: 29/1872
  38161. }
  38162. },
  38163. frontCaribousune: {
  38164. height: math.unit(7 + 2/12, "feet"),
  38165. weight: math.unit(268, "lb"),
  38166. name: "Front (Caribousune)",
  38167. image: {
  38168. source: "./media/characters/lisa/front-caribousune.svg",
  38169. extra: 1818/1638,
  38170. bottom: 52/1870
  38171. }
  38172. },
  38173. sideCaribousune: {
  38174. height: math.unit(7 + 2/12, "feet"),
  38175. weight: math.unit(268, "lb"),
  38176. name: "Side (Caribousune)",
  38177. image: {
  38178. source: "./media/characters/lisa/side-caribousune.svg",
  38179. extra: 1851/1635,
  38180. bottom: 16/1867
  38181. }
  38182. },
  38183. backCaribousune: {
  38184. height: math.unit(7 + 2/12, "feet"),
  38185. weight: math.unit(268, "lb"),
  38186. name: "Back (Caribousune)",
  38187. image: {
  38188. source: "./media/characters/lisa/back-caribousune.svg",
  38189. extra: 1801/1604,
  38190. bottom: 44/1845
  38191. }
  38192. },
  38193. caribou: {
  38194. height: math.unit(7 + 2/12, "feet"),
  38195. weight: math.unit(268, "lb"),
  38196. name: "Caribou",
  38197. image: {
  38198. source: "./media/characters/lisa/caribou.svg",
  38199. extra: 1843/1633,
  38200. bottom: 29/1872
  38201. }
  38202. },
  38203. frontCaribou: {
  38204. height: math.unit(7 + 2/12, "feet"),
  38205. weight: math.unit(268, "lb"),
  38206. name: "Front (Caribou)",
  38207. image: {
  38208. source: "./media/characters/lisa/front-caribou.svg",
  38209. extra: 1818/1638,
  38210. bottom: 52/1870
  38211. }
  38212. },
  38213. sideCaribou: {
  38214. height: math.unit(7 + 2/12, "feet"),
  38215. weight: math.unit(268, "lb"),
  38216. name: "Side (Caribou)",
  38217. image: {
  38218. source: "./media/characters/lisa/side-caribou.svg",
  38219. extra: 1851/1635,
  38220. bottom: 16/1867
  38221. }
  38222. },
  38223. backCaribou: {
  38224. height: math.unit(7 + 2/12, "feet"),
  38225. weight: math.unit(268, "lb"),
  38226. name: "Back (Caribou)",
  38227. image: {
  38228. source: "./media/characters/lisa/back-caribou.svg",
  38229. extra: 1801/1604,
  38230. bottom: 44/1845
  38231. }
  38232. },
  38233. mawCaribou: {
  38234. height: math.unit(1.45, "feet"),
  38235. name: "Maw (Caribou)",
  38236. image: {
  38237. source: "./media/characters/lisa/maw-caribou.svg"
  38238. }
  38239. },
  38240. mawCaribousune: {
  38241. height: math.unit(1.45, "feet"),
  38242. name: "Maw (Caribousune)",
  38243. image: {
  38244. source: "./media/characters/lisa/maw-caribousune.svg"
  38245. }
  38246. },
  38247. pawCaribousune: {
  38248. height: math.unit(1.61, "feet"),
  38249. name: "Paw (Caribou)",
  38250. image: {
  38251. source: "./media/characters/lisa/paw-caribousune.svg"
  38252. }
  38253. },
  38254. },
  38255. [
  38256. {
  38257. name: "Normal",
  38258. height: math.unit(6, "feet")
  38259. },
  38260. {
  38261. name: "God Size",
  38262. height: math.unit(72, "feet"),
  38263. default: true
  38264. },
  38265. {
  38266. name: "Towering",
  38267. height: math.unit(288, "feet")
  38268. },
  38269. {
  38270. name: "City Size",
  38271. height: math.unit(48384, "feet")
  38272. },
  38273. {
  38274. name: "Continental",
  38275. height: math.unit(4200, "miles")
  38276. },
  38277. {
  38278. name: "Planet Eater",
  38279. height: math.unit(42, "earths")
  38280. },
  38281. {
  38282. name: "Star Swallower",
  38283. height: math.unit(42, "solarradii")
  38284. },
  38285. {
  38286. name: "System Swallower",
  38287. height: math.unit(84000, "AU")
  38288. },
  38289. {
  38290. name: "Galaxy Gobbler",
  38291. height: math.unit(42, "galaxies")
  38292. },
  38293. {
  38294. name: "Universe Devourer",
  38295. height: math.unit(42, "universes")
  38296. },
  38297. {
  38298. name: "Multiverse Muncher",
  38299. height: math.unit(42, "multiverses")
  38300. },
  38301. ]
  38302. ))
  38303. characterMakers.push(() => makeCharacter(
  38304. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38305. {
  38306. front: {
  38307. height: math.unit(36, "feet"),
  38308. name: "Front",
  38309. image: {
  38310. source: "./media/characters/shadow-rat/front.svg",
  38311. extra: 1845/1758,
  38312. bottom: 83/1928
  38313. }
  38314. },
  38315. },
  38316. [
  38317. {
  38318. name: "Macro",
  38319. height: math.unit(36, "feet"),
  38320. default: true
  38321. },
  38322. ]
  38323. ))
  38324. characterMakers.push(() => makeCharacter(
  38325. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38326. {
  38327. side: {
  38328. height: math.unit(8, "feet"),
  38329. weight: math.unit(2630, "lb"),
  38330. name: "Side",
  38331. image: {
  38332. source: "./media/characters/torallia/side.svg",
  38333. extra: 2164/2021,
  38334. bottom: 371/2535
  38335. }
  38336. },
  38337. },
  38338. [
  38339. {
  38340. name: "Mortal Interaction",
  38341. height: math.unit(8, "feet")
  38342. },
  38343. {
  38344. name: "Natural",
  38345. height: math.unit(24, "feet"),
  38346. default: true
  38347. },
  38348. {
  38349. name: "Giant",
  38350. height: math.unit(80, "feet")
  38351. },
  38352. {
  38353. name: "Kaiju",
  38354. height: math.unit(240, "feet")
  38355. },
  38356. {
  38357. name: "Macro",
  38358. height: math.unit(800, "feet")
  38359. },
  38360. {
  38361. name: "Macro+",
  38362. height: math.unit(2400, "feet")
  38363. },
  38364. {
  38365. name: "Macro++",
  38366. height: math.unit(8000, "feet")
  38367. },
  38368. {
  38369. name: "City-Crushing",
  38370. height: math.unit(24000, "feet")
  38371. },
  38372. {
  38373. name: "Mountain-Mashing",
  38374. height: math.unit(80000, "feet")
  38375. },
  38376. {
  38377. name: "District Demolisher",
  38378. height: math.unit(240000, "feet")
  38379. },
  38380. {
  38381. name: "Tri-County Terror",
  38382. height: math.unit(800000, "feet")
  38383. },
  38384. {
  38385. name: "State Smasher",
  38386. height: math.unit(2.4e6, "feet")
  38387. },
  38388. {
  38389. name: "Nation Nemesis",
  38390. height: math.unit(8e6, "feet")
  38391. },
  38392. {
  38393. name: "Continent Cracker",
  38394. height: math.unit(2.4e7, "feet")
  38395. },
  38396. {
  38397. name: "Planet-Pillaging",
  38398. height: math.unit(8e7, "feet")
  38399. },
  38400. {
  38401. name: "Earth-Eclipsing",
  38402. height: math.unit(2.4e8, "feet")
  38403. },
  38404. {
  38405. name: "Jovian-Jostling",
  38406. height: math.unit(8e8, "feet")
  38407. },
  38408. {
  38409. name: "Gas Giant Gulper",
  38410. height: math.unit(2.4e9, "feet")
  38411. },
  38412. {
  38413. name: "Astral Annihilator",
  38414. height: math.unit(8e9, "feet")
  38415. },
  38416. {
  38417. name: "Celestial Conqueror",
  38418. height: math.unit(2.4e10, "feet")
  38419. },
  38420. {
  38421. name: "Sol-Swallowing",
  38422. height: math.unit(8e10, "feet")
  38423. },
  38424. {
  38425. name: "Hunter of the Heavens",
  38426. height: math.unit(2.4e13, "feet")
  38427. },
  38428. ]
  38429. ))
  38430. characterMakers.push(() => makeCharacter(
  38431. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38432. {
  38433. front: {
  38434. height: math.unit(6 + 8/12, "feet"),
  38435. name: "Front",
  38436. image: {
  38437. source: "./media/characters/rebecca-pawlson/front.svg",
  38438. extra: 1737/1596,
  38439. bottom: 107/1844
  38440. }
  38441. },
  38442. back: {
  38443. height: math.unit(6 + 8/12, "feet"),
  38444. name: "Back",
  38445. image: {
  38446. source: "./media/characters/rebecca-pawlson/back.svg",
  38447. extra: 1702/1523,
  38448. bottom: 86/1788
  38449. }
  38450. },
  38451. },
  38452. [
  38453. {
  38454. name: "Normal",
  38455. height: math.unit(6 + 8/12, "feet")
  38456. },
  38457. {
  38458. name: "Mini Macro",
  38459. height: math.unit(10, "feet"),
  38460. default: true
  38461. },
  38462. {
  38463. name: "Macro",
  38464. height: math.unit(100, "feet")
  38465. },
  38466. {
  38467. name: "Mega Macro",
  38468. height: math.unit(2500, "feet")
  38469. },
  38470. {
  38471. name: "Giga Macro",
  38472. height: math.unit(50, "miles")
  38473. },
  38474. ]
  38475. ))
  38476. characterMakers.push(() => makeCharacter(
  38477. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38478. {
  38479. front: {
  38480. height: math.unit(7 + 6/12, "feet"),
  38481. weight: math.unit(600, "lb"),
  38482. name: "Front",
  38483. image: {
  38484. source: "./media/characters/moxie-nova/front.svg",
  38485. extra: 1734/1652,
  38486. bottom: 41/1775
  38487. }
  38488. },
  38489. },
  38490. [
  38491. {
  38492. name: "Normal",
  38493. height: math.unit(7 + 6/12, "feet"),
  38494. default: true
  38495. },
  38496. ]
  38497. ))
  38498. characterMakers.push(() => makeCharacter(
  38499. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38500. {
  38501. goat: {
  38502. height: math.unit(4, "feet"),
  38503. weight: math.unit(180, "lb"),
  38504. name: "Goat",
  38505. image: {
  38506. source: "./media/characters/tiffany/goat.svg",
  38507. extra: 1845/1595,
  38508. bottom: 106/1951
  38509. }
  38510. },
  38511. front: {
  38512. height: math.unit(5, "feet"),
  38513. weight: math.unit(150, "lb"),
  38514. name: "Foxcoon",
  38515. image: {
  38516. source: "./media/characters/tiffany/foxcoon.svg",
  38517. extra: 1941/1845,
  38518. bottom: 58/1999
  38519. }
  38520. },
  38521. },
  38522. [
  38523. {
  38524. name: "Normal",
  38525. height: math.unit(5, "feet"),
  38526. default: true
  38527. },
  38528. ]
  38529. ))
  38530. characterMakers.push(() => makeCharacter(
  38531. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38532. {
  38533. front: {
  38534. height: math.unit(8, "feet"),
  38535. weight: math.unit(300, "lb"),
  38536. name: "Front",
  38537. image: {
  38538. source: "./media/characters/raxinath/front.svg",
  38539. extra: 1407/1309,
  38540. bottom: 39/1446
  38541. }
  38542. },
  38543. back: {
  38544. height: math.unit(8, "feet"),
  38545. weight: math.unit(300, "lb"),
  38546. name: "Back",
  38547. image: {
  38548. source: "./media/characters/raxinath/back.svg",
  38549. extra: 1405/1315,
  38550. bottom: 9/1414
  38551. }
  38552. },
  38553. },
  38554. [
  38555. {
  38556. name: "Speck",
  38557. height: math.unit(0.5, "nm")
  38558. },
  38559. {
  38560. name: "Micro",
  38561. height: math.unit(3, "inches")
  38562. },
  38563. {
  38564. name: "Kobold",
  38565. height: math.unit(3, "feet")
  38566. },
  38567. {
  38568. name: "Normal",
  38569. height: math.unit(8, "feet"),
  38570. default: true
  38571. },
  38572. {
  38573. name: "Giant",
  38574. height: math.unit(50, "feet")
  38575. },
  38576. {
  38577. name: "Macro",
  38578. height: math.unit(1000, "feet")
  38579. },
  38580. {
  38581. name: "Megamacro",
  38582. height: math.unit(1, "mile")
  38583. },
  38584. ]
  38585. ))
  38586. characterMakers.push(() => makeCharacter(
  38587. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38588. {
  38589. front: {
  38590. height: math.unit(10, "feet"),
  38591. weight: math.unit(1442, "lb"),
  38592. name: "Front",
  38593. image: {
  38594. source: "./media/characters/mal-dragon/front.svg",
  38595. extra: 1515/1444,
  38596. bottom: 113/1628
  38597. }
  38598. },
  38599. back: {
  38600. height: math.unit(10, "feet"),
  38601. weight: math.unit(1442, "lb"),
  38602. name: "Back",
  38603. image: {
  38604. source: "./media/characters/mal-dragon/back.svg",
  38605. extra: 1527/1434,
  38606. bottom: 25/1552
  38607. }
  38608. },
  38609. },
  38610. [
  38611. {
  38612. name: "Mortal Interaction",
  38613. height: math.unit(10, "feet"),
  38614. default: true
  38615. },
  38616. {
  38617. name: "Large",
  38618. height: math.unit(30, "feet")
  38619. },
  38620. {
  38621. name: "Kaiju",
  38622. height: math.unit(300, "feet")
  38623. },
  38624. {
  38625. name: "Megamacro",
  38626. height: math.unit(10000, "feet")
  38627. },
  38628. {
  38629. name: "Continent Cracker",
  38630. height: math.unit(30000000, "feet")
  38631. },
  38632. {
  38633. name: "Sol-Swallowing",
  38634. height: math.unit(1e11, "feet")
  38635. },
  38636. {
  38637. name: "Light Universal",
  38638. height: math.unit(5, "universes")
  38639. },
  38640. {
  38641. name: "Universe Atoms",
  38642. height: math.unit(1.829e9, "universes")
  38643. },
  38644. {
  38645. name: "Light Multiversal",
  38646. height: math.unit(5, "multiverses")
  38647. },
  38648. {
  38649. name: "Multiverse Atoms",
  38650. height: math.unit(1.829e9, "multiverses")
  38651. },
  38652. {
  38653. name: "Fabric of Time",
  38654. height: math.unit(1e262, "multiverses")
  38655. },
  38656. ]
  38657. ))
  38658. characterMakers.push(() => makeCharacter(
  38659. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38660. {
  38661. front: {
  38662. height: math.unit(9, "feet"),
  38663. weight: math.unit(1050, "lb"),
  38664. name: "Front",
  38665. image: {
  38666. source: "./media/characters/tabitha/front.svg",
  38667. extra: 2083/1994,
  38668. bottom: 68/2151
  38669. }
  38670. },
  38671. },
  38672. [
  38673. {
  38674. name: "Baseline",
  38675. height: math.unit(9, "feet"),
  38676. default: true
  38677. },
  38678. {
  38679. name: "Giant",
  38680. height: math.unit(90, "feet")
  38681. },
  38682. {
  38683. name: "Macro",
  38684. height: math.unit(900, "feet")
  38685. },
  38686. {
  38687. name: "Megamacro",
  38688. height: math.unit(9000, "feet")
  38689. },
  38690. {
  38691. name: "City-Crushing",
  38692. height: math.unit(27000, "feet")
  38693. },
  38694. {
  38695. name: "Mountain-Mashing",
  38696. height: math.unit(90000, "feet")
  38697. },
  38698. {
  38699. name: "Nation Nemesis",
  38700. height: math.unit(9e6, "feet")
  38701. },
  38702. {
  38703. name: "Continent Cracker",
  38704. height: math.unit(27e6, "feet")
  38705. },
  38706. {
  38707. name: "Earth-Eclipsing",
  38708. height: math.unit(2.7e8, "feet")
  38709. },
  38710. {
  38711. name: "Gas Giant Gulper",
  38712. height: math.unit(2.7e9, "feet")
  38713. },
  38714. {
  38715. name: "Sol-Swallowing",
  38716. height: math.unit(9e10, "feet")
  38717. },
  38718. {
  38719. name: "Galaxy Gulper",
  38720. height: math.unit(9, "galaxies")
  38721. },
  38722. {
  38723. name: "Cosmos Churner",
  38724. height: math.unit(9, "universes")
  38725. },
  38726. ]
  38727. ))
  38728. characterMakers.push(() => makeCharacter(
  38729. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38730. {
  38731. front: {
  38732. height: math.unit(160, "cm"),
  38733. weight: math.unit(55, "kg"),
  38734. name: "Front",
  38735. image: {
  38736. source: "./media/characters/tow/front.svg",
  38737. extra: 1751/1722,
  38738. bottom: 74/1825
  38739. }
  38740. },
  38741. },
  38742. [
  38743. {
  38744. name: "Norm",
  38745. height: math.unit(160, "cm")
  38746. },
  38747. {
  38748. name: "Casual",
  38749. height: math.unit(3200, "m"),
  38750. default: true
  38751. },
  38752. {
  38753. name: "Show-Off",
  38754. height: math.unit(160, "km")
  38755. },
  38756. ]
  38757. ))
  38758. characterMakers.push(() => makeCharacter(
  38759. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38760. {
  38761. front: {
  38762. height: math.unit(7 + 11/12, "feet"),
  38763. weight: math.unit(342.8, "lb"),
  38764. name: "Front",
  38765. image: {
  38766. source: "./media/characters/vivian-orca-dragon/front.svg",
  38767. extra: 1890/1865,
  38768. bottom: 28/1918
  38769. }
  38770. },
  38771. },
  38772. [
  38773. {
  38774. name: "Micro",
  38775. height: math.unit(5, "inches")
  38776. },
  38777. {
  38778. name: "Normal",
  38779. height: math.unit(7 + 11/12, "feet"),
  38780. default: true
  38781. },
  38782. {
  38783. name: "Macro",
  38784. height: math.unit(395 + 7/12, "feet")
  38785. },
  38786. ]
  38787. ))
  38788. characterMakers.push(() => makeCharacter(
  38789. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38790. {
  38791. side: {
  38792. height: math.unit(10, "feet"),
  38793. weight: math.unit(1442, "lb"),
  38794. name: "Side",
  38795. image: {
  38796. source: "./media/characters/lotherakon/side.svg",
  38797. extra: 1604/1497,
  38798. bottom: 89/1693
  38799. }
  38800. },
  38801. },
  38802. [
  38803. {
  38804. name: "Mortal Interaction",
  38805. height: math.unit(10, "feet")
  38806. },
  38807. {
  38808. name: "Large",
  38809. height: math.unit(30, "feet"),
  38810. default: true
  38811. },
  38812. {
  38813. name: "Giant",
  38814. height: math.unit(100, "feet")
  38815. },
  38816. {
  38817. name: "Kaiju",
  38818. height: math.unit(300, "feet")
  38819. },
  38820. {
  38821. name: "Macro",
  38822. height: math.unit(1000, "feet")
  38823. },
  38824. {
  38825. name: "Macro+",
  38826. height: math.unit(3000, "feet")
  38827. },
  38828. {
  38829. name: "Megamacro",
  38830. height: math.unit(10000, "feet")
  38831. },
  38832. {
  38833. name: "City-Crushing",
  38834. height: math.unit(30000, "feet")
  38835. },
  38836. {
  38837. name: "Continent Cracker",
  38838. height: math.unit(30e6, "feet")
  38839. },
  38840. {
  38841. name: "Earth Eclipsing",
  38842. height: math.unit(3e8, "feet")
  38843. },
  38844. {
  38845. name: "Gas Giant Gulper",
  38846. height: math.unit(3e9, "feet")
  38847. },
  38848. {
  38849. name: "Sol-Swallowing",
  38850. height: math.unit(1e11, "feet")
  38851. },
  38852. {
  38853. name: "System Swallower",
  38854. height: math.unit(3e14, "feet")
  38855. },
  38856. {
  38857. name: "Galaxy Gulper",
  38858. height: math.unit(10, "galaxies")
  38859. },
  38860. {
  38861. name: "Light Universal",
  38862. height: math.unit(5, "universes")
  38863. },
  38864. {
  38865. name: "Universe Palm",
  38866. height: math.unit(20, "universes")
  38867. },
  38868. {
  38869. name: "Light Multiversal",
  38870. height: math.unit(5, "multiverses")
  38871. },
  38872. {
  38873. name: "Multiverse Palm",
  38874. height: math.unit(20, "multiverses")
  38875. },
  38876. {
  38877. name: "Inferno Incarnate",
  38878. height: math.unit(1e7, "multiverses")
  38879. },
  38880. ]
  38881. ))
  38882. characterMakers.push(() => makeCharacter(
  38883. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38884. {
  38885. front: {
  38886. height: math.unit(8, "feet"),
  38887. weight: math.unit(1200, "lb"),
  38888. name: "Front",
  38889. image: {
  38890. source: "./media/characters/malithee/front.svg",
  38891. extra: 1675/1640,
  38892. bottom: 162/1837
  38893. }
  38894. },
  38895. },
  38896. [
  38897. {
  38898. name: "Mortal Interaction",
  38899. height: math.unit(8, "feet"),
  38900. default: true
  38901. },
  38902. {
  38903. name: "Large",
  38904. height: math.unit(24, "feet")
  38905. },
  38906. {
  38907. name: "Kaiju",
  38908. height: math.unit(240, "feet")
  38909. },
  38910. {
  38911. name: "Megamacro",
  38912. height: math.unit(8000, "feet")
  38913. },
  38914. {
  38915. name: "Continent Cracker",
  38916. height: math.unit(24e6, "feet")
  38917. },
  38918. {
  38919. name: "Earth-Eclipsing",
  38920. height: math.unit(2.4e8, "feet")
  38921. },
  38922. {
  38923. name: "Sol-Swallowing",
  38924. height: math.unit(8e10, "feet")
  38925. },
  38926. {
  38927. name: "Galaxy Gulper",
  38928. height: math.unit(8, "galaxies")
  38929. },
  38930. {
  38931. name: "Light Universal",
  38932. height: math.unit(4, "universes")
  38933. },
  38934. {
  38935. name: "Universe Atoms",
  38936. height: math.unit(1.829e9, "universes")
  38937. },
  38938. {
  38939. name: "Light Multiversal",
  38940. height: math.unit(4, "multiverses")
  38941. },
  38942. {
  38943. name: "Multiverse Atoms",
  38944. height: math.unit(1.829e9, "multiverses")
  38945. },
  38946. {
  38947. name: "Nigh-Omnipresence",
  38948. height: math.unit(8e261, "multiverses")
  38949. },
  38950. ]
  38951. ))
  38952. characterMakers.push(() => makeCharacter(
  38953. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38954. {
  38955. front: {
  38956. height: math.unit(10, "feet"),
  38957. weight: math.unit(1500, "lb"),
  38958. name: "Front",
  38959. image: {
  38960. source: "./media/characters/miles-thestia/front.svg",
  38961. extra: 1812/1727,
  38962. bottom: 86/1898
  38963. }
  38964. },
  38965. back: {
  38966. height: math.unit(10, "feet"),
  38967. weight: math.unit(1500, "lb"),
  38968. name: "Back",
  38969. image: {
  38970. source: "./media/characters/miles-thestia/back.svg",
  38971. extra: 1799/1690,
  38972. bottom: 47/1846
  38973. }
  38974. },
  38975. frontNsfw: {
  38976. height: math.unit(10, "feet"),
  38977. weight: math.unit(1500, "lb"),
  38978. name: "Front (NSFW)",
  38979. image: {
  38980. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38981. extra: 1812/1727,
  38982. bottom: 86/1898
  38983. }
  38984. },
  38985. },
  38986. [
  38987. {
  38988. name: "Mini-Macro",
  38989. height: math.unit(10, "feet"),
  38990. default: true
  38991. },
  38992. ]
  38993. ))
  38994. characterMakers.push(() => makeCharacter(
  38995. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38996. {
  38997. front: {
  38998. height: math.unit(25, "feet"),
  38999. name: "Front",
  39000. image: {
  39001. source: "./media/characters/titan-s-wulf/front.svg",
  39002. extra: 1560/1484,
  39003. bottom: 76/1636
  39004. }
  39005. },
  39006. },
  39007. [
  39008. {
  39009. name: "Smallest",
  39010. height: math.unit(25, "feet"),
  39011. default: true
  39012. },
  39013. {
  39014. name: "Normal",
  39015. height: math.unit(200, "feet")
  39016. },
  39017. {
  39018. name: "Macro",
  39019. height: math.unit(200000, "feet")
  39020. },
  39021. {
  39022. name: "Multiversal Original",
  39023. height: math.unit(10000, "multiverses")
  39024. },
  39025. ]
  39026. ))
  39027. characterMakers.push(() => makeCharacter(
  39028. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39029. {
  39030. front: {
  39031. height: math.unit(8, "feet"),
  39032. weight: math.unit(553, "lb"),
  39033. name: "Front",
  39034. image: {
  39035. source: "./media/characters/tawendeh/front.svg",
  39036. extra: 2365/2268,
  39037. bottom: 83/2448
  39038. }
  39039. },
  39040. frontClothed: {
  39041. height: math.unit(8, "feet"),
  39042. weight: math.unit(553, "lb"),
  39043. name: "Front (Clothed)",
  39044. image: {
  39045. source: "./media/characters/tawendeh/front-clothed.svg",
  39046. extra: 2365/2268,
  39047. bottom: 83/2448
  39048. }
  39049. },
  39050. back: {
  39051. height: math.unit(8, "feet"),
  39052. weight: math.unit(553, "lb"),
  39053. name: "Back",
  39054. image: {
  39055. source: "./media/characters/tawendeh/back.svg",
  39056. extra: 2397/2294,
  39057. bottom: 42/2439
  39058. }
  39059. },
  39060. },
  39061. [
  39062. {
  39063. name: "Mortal Interaction",
  39064. height: math.unit(8, "feet"),
  39065. default: true
  39066. },
  39067. {
  39068. name: "Giant",
  39069. height: math.unit(80, "feet")
  39070. },
  39071. {
  39072. name: "Macro",
  39073. height: math.unit(800, "feet")
  39074. },
  39075. {
  39076. name: "Megamacro",
  39077. height: math.unit(8000, "feet")
  39078. },
  39079. {
  39080. name: "City-Crushing",
  39081. height: math.unit(24000, "feet")
  39082. },
  39083. {
  39084. name: "Mountain-Mashing",
  39085. height: math.unit(80000, "feet")
  39086. },
  39087. {
  39088. name: "Nation Nemesis",
  39089. height: math.unit(8e6, "feet")
  39090. },
  39091. {
  39092. name: "Continent Cracker",
  39093. height: math.unit(24e6, "feet")
  39094. },
  39095. {
  39096. name: "Earth-Eclipsing",
  39097. height: math.unit(2.4e8, "feet")
  39098. },
  39099. {
  39100. name: "Gas Giant Gulper",
  39101. height: math.unit(2.4e9, "feet")
  39102. },
  39103. {
  39104. name: "Sol-Swallowing",
  39105. height: math.unit(8e10, "feet")
  39106. },
  39107. {
  39108. name: "Galaxy Gulper",
  39109. height: math.unit(8, "galaxies")
  39110. },
  39111. {
  39112. name: "Cosmos Churner",
  39113. height: math.unit(8, "universes")
  39114. },
  39115. {
  39116. name: "Omnipotent Otter",
  39117. height: math.unit(80, "universes")
  39118. },
  39119. ]
  39120. ))
  39121. characterMakers.push(() => makeCharacter(
  39122. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39123. {
  39124. front: {
  39125. height: math.unit(2.6, "meters"),
  39126. weight: math.unit(900, "kg"),
  39127. name: "Front",
  39128. image: {
  39129. source: "./media/characters/neesha/front.svg",
  39130. extra: 1803/1653,
  39131. bottom: 128/1931
  39132. }
  39133. },
  39134. },
  39135. [
  39136. {
  39137. name: "Normal",
  39138. height: math.unit(2.6, "meters"),
  39139. default: true
  39140. },
  39141. {
  39142. name: "Macro",
  39143. height: math.unit(50, "meters")
  39144. },
  39145. ]
  39146. ))
  39147. characterMakers.push(() => makeCharacter(
  39148. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39149. {
  39150. front: {
  39151. height: math.unit(5, "feet"),
  39152. weight: math.unit(185, "lb"),
  39153. name: "Front",
  39154. image: {
  39155. source: "./media/characters/kyera/front.svg",
  39156. extra: 1875/1790,
  39157. bottom: 96/1971
  39158. }
  39159. },
  39160. },
  39161. [
  39162. {
  39163. name: "Normal",
  39164. height: math.unit(5, "feet"),
  39165. default: true
  39166. },
  39167. ]
  39168. ))
  39169. characterMakers.push(() => makeCharacter(
  39170. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39171. {
  39172. front: {
  39173. height: math.unit(7 + 6/12, "feet"),
  39174. weight: math.unit(540, "lb"),
  39175. name: "Front",
  39176. image: {
  39177. source: "./media/characters/yuko/front.svg",
  39178. extra: 1282/1222,
  39179. bottom: 101/1383
  39180. }
  39181. },
  39182. frontClothed: {
  39183. height: math.unit(7 + 6/12, "feet"),
  39184. weight: math.unit(540, "lb"),
  39185. name: "Front (Clothed)",
  39186. image: {
  39187. source: "./media/characters/yuko/front-clothed.svg",
  39188. extra: 1282/1222,
  39189. bottom: 101/1383
  39190. }
  39191. },
  39192. },
  39193. [
  39194. {
  39195. name: "Normal",
  39196. height: math.unit(7 + 6/12, "feet"),
  39197. default: true
  39198. },
  39199. {
  39200. name: "Macro",
  39201. height: math.unit(26 + 9/12, "feet")
  39202. },
  39203. {
  39204. name: "Megamacro",
  39205. height: math.unit(300, "feet")
  39206. },
  39207. {
  39208. name: "Gigamacro",
  39209. height: math.unit(5000, "feet")
  39210. },
  39211. {
  39212. name: "Planetary",
  39213. height: math.unit(10000, "miles")
  39214. },
  39215. ]
  39216. ))
  39217. characterMakers.push(() => makeCharacter(
  39218. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39219. {
  39220. front: {
  39221. height: math.unit(8 + 2/12, "feet"),
  39222. weight: math.unit(600, "lb"),
  39223. name: "Front",
  39224. image: {
  39225. source: "./media/characters/deam-nitrel/front.svg",
  39226. extra: 1308/1234,
  39227. bottom: 125/1433
  39228. }
  39229. },
  39230. },
  39231. [
  39232. {
  39233. name: "Normal",
  39234. height: math.unit(8 + 2/12, "feet"),
  39235. default: true
  39236. },
  39237. ]
  39238. ))
  39239. characterMakers.push(() => makeCharacter(
  39240. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39241. {
  39242. front: {
  39243. height: math.unit(6.1, "feet"),
  39244. weight: math.unit(180, "lb"),
  39245. name: "Front",
  39246. image: {
  39247. source: "./media/characters/skyress/front.svg",
  39248. extra: 1045/915,
  39249. bottom: 28/1073
  39250. }
  39251. },
  39252. maw: {
  39253. height: math.unit(1, "feet"),
  39254. name: "Maw",
  39255. image: {
  39256. source: "./media/characters/skyress/maw.svg"
  39257. }
  39258. },
  39259. },
  39260. [
  39261. {
  39262. name: "Normal",
  39263. height: math.unit(6.1, "feet"),
  39264. default: true
  39265. },
  39266. {
  39267. name: "Macro",
  39268. height: math.unit(200, "feet")
  39269. },
  39270. ]
  39271. ))
  39272. characterMakers.push(() => makeCharacter(
  39273. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39274. {
  39275. front: {
  39276. height: math.unit(4 + 2/12, "feet"),
  39277. weight: math.unit(40, "kg"),
  39278. name: "Front",
  39279. image: {
  39280. source: "./media/characters/amethyst-jones/front.svg",
  39281. extra: 1220/1150,
  39282. bottom: 101/1321
  39283. }
  39284. },
  39285. },
  39286. [
  39287. {
  39288. name: "Normal",
  39289. height: math.unit(4 + 2/12, "feet"),
  39290. default: true
  39291. },
  39292. ]
  39293. ))
  39294. characterMakers.push(() => makeCharacter(
  39295. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39296. {
  39297. front: {
  39298. height: math.unit(1.7, "m"),
  39299. weight: math.unit(135, "lb"),
  39300. name: "Front",
  39301. image: {
  39302. source: "./media/characters/jade/front.svg",
  39303. extra: 1818/1767,
  39304. bottom: 32/1850
  39305. }
  39306. },
  39307. back: {
  39308. height: math.unit(1.7, "m"),
  39309. weight: math.unit(135, "lb"),
  39310. name: "Back",
  39311. image: {
  39312. source: "./media/characters/jade/back.svg",
  39313. extra: 1869/1809,
  39314. bottom: 35/1904
  39315. }
  39316. },
  39317. hand: {
  39318. height: math.unit(0.24, "m"),
  39319. name: "Hand",
  39320. image: {
  39321. source: "./media/characters/jade/hand.svg"
  39322. }
  39323. },
  39324. foot: {
  39325. height: math.unit(0.263, "m"),
  39326. name: "Foot",
  39327. image: {
  39328. source: "./media/characters/jade/foot.svg"
  39329. }
  39330. },
  39331. dick: {
  39332. height: math.unit(0.47, "m"),
  39333. name: "Dick",
  39334. image: {
  39335. source: "./media/characters/jade/dick.svg"
  39336. }
  39337. },
  39338. },
  39339. [
  39340. {
  39341. name: "Micro",
  39342. height: math.unit(22, "cm")
  39343. },
  39344. {
  39345. name: "Normal",
  39346. height: math.unit(1.7, "m"),
  39347. default: true
  39348. },
  39349. {
  39350. name: "Macro",
  39351. height: math.unit(152, "m")
  39352. },
  39353. ]
  39354. ))
  39355. characterMakers.push(() => makeCharacter(
  39356. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39357. {
  39358. front: {
  39359. height: math.unit(100, "miles"),
  39360. weight: math.unit(20000, "tons"),
  39361. name: "Front",
  39362. image: {
  39363. source: "./media/characters/cookie/front.svg",
  39364. extra: 1125/1070,
  39365. bottom: 30/1155
  39366. }
  39367. },
  39368. },
  39369. [
  39370. {
  39371. name: "Big",
  39372. height: math.unit(50, "feet")
  39373. },
  39374. {
  39375. name: "Macro",
  39376. height: math.unit(100, "miles"),
  39377. default: true
  39378. },
  39379. {
  39380. name: "Megamacro",
  39381. height: math.unit(90000, "miles")
  39382. },
  39383. ]
  39384. ))
  39385. characterMakers.push(() => makeCharacter(
  39386. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39387. {
  39388. front: {
  39389. height: math.unit(6, "feet"),
  39390. weight: math.unit(145, "lb"),
  39391. name: "Front",
  39392. image: {
  39393. source: "./media/characters/farzian/front.svg",
  39394. extra: 1902/1693,
  39395. bottom: 108/2010
  39396. }
  39397. },
  39398. },
  39399. [
  39400. {
  39401. name: "Macro",
  39402. height: math.unit(500, "feet"),
  39403. default: true
  39404. },
  39405. ]
  39406. ))
  39407. characterMakers.push(() => makeCharacter(
  39408. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39409. {
  39410. front: {
  39411. height: math.unit(3 + 6/12, "feet"),
  39412. weight: math.unit(50, "lb"),
  39413. name: "Front",
  39414. image: {
  39415. source: "./media/characters/kimberly-tilson/front.svg",
  39416. extra: 1400/1322,
  39417. bottom: 36/1436
  39418. }
  39419. },
  39420. back: {
  39421. height: math.unit(3 + 6/12, "feet"),
  39422. weight: math.unit(50, "lb"),
  39423. name: "Back",
  39424. image: {
  39425. source: "./media/characters/kimberly-tilson/back.svg",
  39426. extra: 1370/1307,
  39427. bottom: 20/1390
  39428. }
  39429. },
  39430. },
  39431. [
  39432. {
  39433. name: "Normal",
  39434. height: math.unit(3 + 6/12, "feet"),
  39435. default: true
  39436. },
  39437. ]
  39438. ))
  39439. characterMakers.push(() => makeCharacter(
  39440. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39441. {
  39442. front: {
  39443. height: math.unit(1148, "feet"),
  39444. weight: math.unit(34057, "lb"),
  39445. name: "Front",
  39446. image: {
  39447. source: "./media/characters/harthos/front.svg",
  39448. extra: 1391/1339,
  39449. bottom: 13/1404
  39450. }
  39451. },
  39452. },
  39453. [
  39454. {
  39455. name: "Macro",
  39456. height: math.unit(1148, "feet"),
  39457. default: true
  39458. },
  39459. ]
  39460. ))
  39461. characterMakers.push(() => makeCharacter(
  39462. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39463. {
  39464. front: {
  39465. height: math.unit(15, "feet"),
  39466. name: "Front",
  39467. image: {
  39468. source: "./media/characters/hypatia/front.svg",
  39469. extra: 1653/1591,
  39470. bottom: 79/1732
  39471. }
  39472. },
  39473. },
  39474. [
  39475. {
  39476. name: "Normal",
  39477. height: math.unit(15, "feet")
  39478. },
  39479. {
  39480. name: "Small",
  39481. height: math.unit(300, "feet")
  39482. },
  39483. {
  39484. name: "Macro",
  39485. height: math.unit(2500, "feet"),
  39486. default: true
  39487. },
  39488. {
  39489. name: "Mega Macro",
  39490. height: math.unit(1500, "miles")
  39491. },
  39492. {
  39493. name: "Giga Macro",
  39494. height: math.unit(1.5e6, "miles")
  39495. },
  39496. ]
  39497. ))
  39498. characterMakers.push(() => makeCharacter(
  39499. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39500. {
  39501. front: {
  39502. height: math.unit(6, "feet"),
  39503. weight: math.unit(200, "lb"),
  39504. name: "Front",
  39505. image: {
  39506. source: "./media/characters/wulver/front.svg",
  39507. extra: 1724/1632,
  39508. bottom: 130/1854
  39509. }
  39510. },
  39511. frontNsfw: {
  39512. height: math.unit(6, "feet"),
  39513. weight: math.unit(200, "lb"),
  39514. name: "Front (NSFW)",
  39515. image: {
  39516. source: "./media/characters/wulver/front-nsfw.svg",
  39517. extra: 1724/1632,
  39518. bottom: 130/1854
  39519. }
  39520. },
  39521. },
  39522. [
  39523. {
  39524. name: "Human-Sized",
  39525. height: math.unit(6, "feet")
  39526. },
  39527. {
  39528. name: "Normal",
  39529. height: math.unit(4, "meters"),
  39530. default: true
  39531. },
  39532. {
  39533. name: "Large",
  39534. height: math.unit(6, "m")
  39535. },
  39536. ]
  39537. ))
  39538. characterMakers.push(() => makeCharacter(
  39539. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39540. {
  39541. front: {
  39542. height: math.unit(7, "feet"),
  39543. name: "Front",
  39544. image: {
  39545. source: "./media/characters/maru/front.svg",
  39546. extra: 1595/1570,
  39547. bottom: 0/1595
  39548. }
  39549. },
  39550. },
  39551. [
  39552. {
  39553. name: "Normal",
  39554. height: math.unit(7, "feet"),
  39555. default: true
  39556. },
  39557. {
  39558. name: "Macro",
  39559. height: math.unit(700, "feet")
  39560. },
  39561. {
  39562. name: "Mega Macro",
  39563. height: math.unit(25, "miles")
  39564. },
  39565. ]
  39566. ))
  39567. characterMakers.push(() => makeCharacter(
  39568. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39569. {
  39570. front: {
  39571. height: math.unit(6, "feet"),
  39572. weight: math.unit(170, "lb"),
  39573. name: "Front",
  39574. image: {
  39575. source: "./media/characters/xenon/front.svg",
  39576. extra: 1376/1305,
  39577. bottom: 56/1432
  39578. }
  39579. },
  39580. back: {
  39581. height: math.unit(6, "feet"),
  39582. weight: math.unit(170, "lb"),
  39583. name: "Back",
  39584. image: {
  39585. source: "./media/characters/xenon/back.svg",
  39586. extra: 1328/1259,
  39587. bottom: 95/1423
  39588. }
  39589. },
  39590. maw: {
  39591. height: math.unit(0.52, "feet"),
  39592. name: "Maw",
  39593. image: {
  39594. source: "./media/characters/xenon/maw.svg"
  39595. }
  39596. },
  39597. hand: {
  39598. height: math.unit(0.82, "feet"),
  39599. name: "Hand",
  39600. image: {
  39601. source: "./media/characters/xenon/hand.svg"
  39602. }
  39603. },
  39604. foot: {
  39605. height: math.unit(1.13, "feet"),
  39606. name: "Foot",
  39607. image: {
  39608. source: "./media/characters/xenon/foot.svg"
  39609. }
  39610. },
  39611. },
  39612. [
  39613. {
  39614. name: "Micro",
  39615. height: math.unit(0.8, "inches")
  39616. },
  39617. {
  39618. name: "Normal",
  39619. height: math.unit(6, "feet")
  39620. },
  39621. {
  39622. name: "Macro",
  39623. height: math.unit(50, "feet"),
  39624. default: true
  39625. },
  39626. {
  39627. name: "Macro+",
  39628. height: math.unit(250, "feet")
  39629. },
  39630. {
  39631. name: "Megamacro",
  39632. height: math.unit(1500, "feet")
  39633. },
  39634. ]
  39635. ))
  39636. characterMakers.push(() => makeCharacter(
  39637. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39638. {
  39639. front: {
  39640. height: math.unit(7 + 5/12, "feet"),
  39641. name: "Front",
  39642. image: {
  39643. source: "./media/characters/zane/front.svg",
  39644. extra: 1260/1203,
  39645. bottom: 94/1354
  39646. }
  39647. },
  39648. back: {
  39649. height: math.unit(5.05, "feet"),
  39650. name: "Back",
  39651. image: {
  39652. source: "./media/characters/zane/back.svg",
  39653. extra: 893/829,
  39654. bottom: 30/923
  39655. }
  39656. },
  39657. werewolf: {
  39658. height: math.unit(11, "feet"),
  39659. name: "Werewolf",
  39660. image: {
  39661. source: "./media/characters/zane/werewolf.svg",
  39662. extra: 1383/1323,
  39663. bottom: 89/1472
  39664. }
  39665. },
  39666. foot: {
  39667. height: math.unit(1.46, "feet"),
  39668. name: "Foot",
  39669. image: {
  39670. source: "./media/characters/zane/foot.svg"
  39671. }
  39672. },
  39673. footFront: {
  39674. height: math.unit(0.784, "feet"),
  39675. name: "Foot (Front)",
  39676. image: {
  39677. source: "./media/characters/zane/foot-front.svg"
  39678. }
  39679. },
  39680. dick: {
  39681. height: math.unit(1.95, "feet"),
  39682. name: "Dick",
  39683. image: {
  39684. source: "./media/characters/zane/dick.svg"
  39685. }
  39686. },
  39687. dickWerewolf: {
  39688. height: math.unit(3.77, "feet"),
  39689. name: "Dick (Werewolf)",
  39690. image: {
  39691. source: "./media/characters/zane/dick.svg"
  39692. }
  39693. },
  39694. },
  39695. [
  39696. {
  39697. name: "Normal",
  39698. height: math.unit(7 + 5/12, "feet"),
  39699. default: true
  39700. },
  39701. ]
  39702. ))
  39703. characterMakers.push(() => makeCharacter(
  39704. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39705. {
  39706. front: {
  39707. height: math.unit(6 + 2/12, "feet"),
  39708. weight: math.unit(284, "lb"),
  39709. name: "Front",
  39710. image: {
  39711. source: "./media/characters/benni-desparque/front.svg",
  39712. extra: 1353/1126,
  39713. bottom: 69/1422
  39714. }
  39715. },
  39716. },
  39717. [
  39718. {
  39719. name: "Civilian",
  39720. height: math.unit(6 + 2/12, "feet")
  39721. },
  39722. {
  39723. name: "Normal",
  39724. height: math.unit(98, "feet"),
  39725. default: true
  39726. },
  39727. {
  39728. name: "Kaiju Fighter",
  39729. height: math.unit(268, "feet")
  39730. },
  39731. ]
  39732. ))
  39733. characterMakers.push(() => makeCharacter(
  39734. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39735. {
  39736. front: {
  39737. height: math.unit(5, "feet"),
  39738. weight: math.unit(105, "lb"),
  39739. name: "Front",
  39740. image: {
  39741. source: "./media/characters/maxine/front.svg",
  39742. extra: 1386/1250,
  39743. bottom: 71/1457
  39744. }
  39745. },
  39746. },
  39747. [
  39748. {
  39749. name: "Normal",
  39750. height: math.unit(5, "feet"),
  39751. default: true
  39752. },
  39753. ]
  39754. ))
  39755. characterMakers.push(() => makeCharacter(
  39756. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39757. {
  39758. front: {
  39759. height: math.unit(11 + 7/12, "feet"),
  39760. weight: math.unit(9576, "lb"),
  39761. name: "Front",
  39762. image: {
  39763. source: "./media/characters/scaly/front.svg",
  39764. extra: 888/867,
  39765. bottom: 36/924
  39766. }
  39767. },
  39768. },
  39769. [
  39770. {
  39771. name: "Normal",
  39772. height: math.unit(11 + 7/12, "feet"),
  39773. default: true
  39774. },
  39775. ]
  39776. ))
  39777. characterMakers.push(() => makeCharacter(
  39778. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39779. {
  39780. front: {
  39781. height: math.unit(9, "inches"),
  39782. name: "Front",
  39783. image: {
  39784. source: "./media/characters/saelria/front.svg",
  39785. extra: 662/621,
  39786. bottom: 12/674
  39787. }
  39788. },
  39789. },
  39790. [
  39791. {
  39792. name: "Tiny",
  39793. height: math.unit(9, "inches"),
  39794. default: true
  39795. },
  39796. ]
  39797. ))
  39798. characterMakers.push(() => makeCharacter(
  39799. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39800. {
  39801. front: {
  39802. height: math.unit(80, "meters"),
  39803. weight: math.unit(7000, "tonnes"),
  39804. name: "Front",
  39805. image: {
  39806. source: "./media/characters/tef/front.svg",
  39807. extra: 2036/1991,
  39808. bottom: 54/2090
  39809. }
  39810. },
  39811. back: {
  39812. height: math.unit(80, "meters"),
  39813. weight: math.unit(7000, "tonnes"),
  39814. name: "Back",
  39815. image: {
  39816. source: "./media/characters/tef/back.svg",
  39817. extra: 2036/1991,
  39818. bottom: 54/2090
  39819. }
  39820. },
  39821. },
  39822. [
  39823. {
  39824. name: "Macro",
  39825. height: math.unit(80, "meters"),
  39826. default: true
  39827. },
  39828. ]
  39829. ))
  39830. characterMakers.push(() => makeCharacter(
  39831. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39832. {
  39833. front: {
  39834. height: math.unit(13, "feet"),
  39835. weight: math.unit(6, "tons"),
  39836. name: "Front",
  39837. image: {
  39838. source: "./media/characters/rover/front.svg",
  39839. extra: 1233/1156,
  39840. bottom: 50/1283
  39841. }
  39842. },
  39843. back: {
  39844. height: math.unit(13, "feet"),
  39845. weight: math.unit(6, "tons"),
  39846. name: "Back",
  39847. image: {
  39848. source: "./media/characters/rover/back.svg",
  39849. extra: 1327/1258,
  39850. bottom: 39/1366
  39851. }
  39852. },
  39853. },
  39854. [
  39855. {
  39856. name: "Normal",
  39857. height: math.unit(13, "feet"),
  39858. default: true
  39859. },
  39860. {
  39861. name: "Macro",
  39862. height: math.unit(1300, "feet")
  39863. },
  39864. {
  39865. name: "Megamacro",
  39866. height: math.unit(1300, "miles")
  39867. },
  39868. {
  39869. name: "Gigamacro",
  39870. height: math.unit(1300000, "miles")
  39871. },
  39872. ]
  39873. ))
  39874. characterMakers.push(() => makeCharacter(
  39875. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39876. {
  39877. front: {
  39878. height: math.unit(6, "feet"),
  39879. weight: math.unit(150, "lb"),
  39880. name: "Front",
  39881. image: {
  39882. source: "./media/characters/ariz/front.svg",
  39883. extra: 1401/1346,
  39884. bottom: 5/1406
  39885. }
  39886. },
  39887. },
  39888. [
  39889. {
  39890. name: "Normal",
  39891. height: math.unit(10, "feet"),
  39892. default: true
  39893. },
  39894. ]
  39895. ))
  39896. characterMakers.push(() => makeCharacter(
  39897. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39898. {
  39899. front: {
  39900. height: math.unit(6, "feet"),
  39901. weight: math.unit(140, "lb"),
  39902. name: "Front",
  39903. image: {
  39904. source: "./media/characters/sigrun/front.svg",
  39905. extra: 1418/1359,
  39906. bottom: 27/1445
  39907. }
  39908. },
  39909. },
  39910. [
  39911. {
  39912. name: "Macro",
  39913. height: math.unit(35, "feet"),
  39914. default: true
  39915. },
  39916. ]
  39917. ))
  39918. characterMakers.push(() => makeCharacter(
  39919. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39920. {
  39921. front: {
  39922. height: math.unit(6, "feet"),
  39923. weight: math.unit(150, "lb"),
  39924. name: "Front",
  39925. image: {
  39926. source: "./media/characters/numin/front.svg",
  39927. extra: 1433/1388,
  39928. bottom: 12/1445
  39929. }
  39930. },
  39931. },
  39932. [
  39933. {
  39934. name: "Macro",
  39935. height: math.unit(21.5, "km"),
  39936. default: true
  39937. },
  39938. ]
  39939. ))
  39940. characterMakers.push(() => makeCharacter(
  39941. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39942. {
  39943. front: {
  39944. height: math.unit(6, "feet"),
  39945. weight: math.unit(463, "lb"),
  39946. name: "Front",
  39947. image: {
  39948. source: "./media/characters/melwa/front.svg",
  39949. extra: 1307/1248,
  39950. bottom: 93/1400
  39951. }
  39952. },
  39953. },
  39954. [
  39955. {
  39956. name: "Macro",
  39957. height: math.unit(50, "meters"),
  39958. default: true
  39959. },
  39960. ]
  39961. ))
  39962. characterMakers.push(() => makeCharacter(
  39963. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39964. {
  39965. front: {
  39966. height: math.unit(325, "feet"),
  39967. name: "Front",
  39968. image: {
  39969. source: "./media/characters/zorkaiju/front.svg",
  39970. extra: 1955/1814,
  39971. bottom: 40/1995
  39972. }
  39973. },
  39974. frontExtended: {
  39975. height: math.unit(325, "feet"),
  39976. name: "Front (Extended)",
  39977. image: {
  39978. source: "./media/characters/zorkaiju/front-extended.svg",
  39979. extra: 1955/1814,
  39980. bottom: 40/1995
  39981. }
  39982. },
  39983. side: {
  39984. height: math.unit(325, "feet"),
  39985. name: "Side",
  39986. image: {
  39987. source: "./media/characters/zorkaiju/side.svg",
  39988. extra: 1495/1396,
  39989. bottom: 17/1512
  39990. }
  39991. },
  39992. sideExtended: {
  39993. height: math.unit(325, "feet"),
  39994. name: "Side (Extended)",
  39995. image: {
  39996. source: "./media/characters/zorkaiju/side-extended.svg",
  39997. extra: 1495/1396,
  39998. bottom: 17/1512
  39999. }
  40000. },
  40001. back: {
  40002. height: math.unit(325, "feet"),
  40003. name: "Back",
  40004. image: {
  40005. source: "./media/characters/zorkaiju/back.svg",
  40006. extra: 1959/1821,
  40007. bottom: 31/1990
  40008. }
  40009. },
  40010. backExtended: {
  40011. height: math.unit(325, "feet"),
  40012. name: "Back (Extended)",
  40013. image: {
  40014. source: "./media/characters/zorkaiju/back-extended.svg",
  40015. extra: 1959/1821,
  40016. bottom: 31/1990
  40017. }
  40018. },
  40019. hand: {
  40020. height: math.unit(58.4, "feet"),
  40021. name: "Hand",
  40022. image: {
  40023. source: "./media/characters/zorkaiju/hand.svg"
  40024. }
  40025. },
  40026. handExtended: {
  40027. height: math.unit(61.4, "feet"),
  40028. name: "Hand (Extended)",
  40029. image: {
  40030. source: "./media/characters/zorkaiju/hand-extended.svg"
  40031. }
  40032. },
  40033. foot: {
  40034. height: math.unit(95, "feet"),
  40035. name: "Foot",
  40036. image: {
  40037. source: "./media/characters/zorkaiju/foot.svg"
  40038. }
  40039. },
  40040. leftArm: {
  40041. height: math.unit(59, "feet"),
  40042. name: "Left Arm",
  40043. image: {
  40044. source: "./media/characters/zorkaiju/left-arm.svg"
  40045. }
  40046. },
  40047. rightArm: {
  40048. height: math.unit(59, "feet"),
  40049. name: "Right Arm",
  40050. image: {
  40051. source: "./media/characters/zorkaiju/right-arm.svg"
  40052. }
  40053. },
  40054. tail: {
  40055. height: math.unit(104, "feet"),
  40056. name: "Tail",
  40057. image: {
  40058. source: "./media/characters/zorkaiju/tail.svg"
  40059. }
  40060. },
  40061. tailExtended: {
  40062. height: math.unit(104, "feet"),
  40063. name: "Tail (Extended)",
  40064. image: {
  40065. source: "./media/characters/zorkaiju/tail-extended.svg"
  40066. }
  40067. },
  40068. tailBottom: {
  40069. height: math.unit(104, "feet"),
  40070. name: "Tail Bottom",
  40071. image: {
  40072. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40073. }
  40074. },
  40075. crystal: {
  40076. height: math.unit(27.54, "feet"),
  40077. name: "Crystal",
  40078. image: {
  40079. source: "./media/characters/zorkaiju/crystal.svg"
  40080. }
  40081. },
  40082. },
  40083. [
  40084. {
  40085. name: "Kaiju",
  40086. height: math.unit(325, "feet"),
  40087. default: true
  40088. },
  40089. ]
  40090. ))
  40091. characterMakers.push(() => makeCharacter(
  40092. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40093. {
  40094. front: {
  40095. height: math.unit(6 + 1/12, "feet"),
  40096. weight: math.unit(115, "lb"),
  40097. name: "Front",
  40098. image: {
  40099. source: "./media/characters/bailey-belfry/front.svg",
  40100. extra: 1240/1121,
  40101. bottom: 101/1341
  40102. }
  40103. },
  40104. },
  40105. [
  40106. {
  40107. name: "Normal",
  40108. height: math.unit(6 + 1/12, "feet"),
  40109. default: true
  40110. },
  40111. ]
  40112. ))
  40113. characterMakers.push(() => makeCharacter(
  40114. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40115. {
  40116. side: {
  40117. height: math.unit(4, "meters"),
  40118. weight: math.unit(250, "kg"),
  40119. name: "Side",
  40120. image: {
  40121. source: "./media/characters/blacky/side.svg",
  40122. extra: 1027/919,
  40123. bottom: 43/1070
  40124. }
  40125. },
  40126. maw: {
  40127. height: math.unit(1, "meters"),
  40128. name: "Maw",
  40129. image: {
  40130. source: "./media/characters/blacky/maw.svg"
  40131. }
  40132. },
  40133. paw: {
  40134. height: math.unit(1, "meters"),
  40135. name: "Paw",
  40136. image: {
  40137. source: "./media/characters/blacky/paw.svg"
  40138. }
  40139. },
  40140. },
  40141. [
  40142. {
  40143. name: "Normal",
  40144. height: math.unit(4, "meters"),
  40145. default: true
  40146. },
  40147. ]
  40148. ))
  40149. characterMakers.push(() => makeCharacter(
  40150. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40151. {
  40152. front: {
  40153. height: math.unit(170, "cm"),
  40154. weight: math.unit(66, "kg"),
  40155. name: "Front",
  40156. image: {
  40157. source: "./media/characters/thux-ei/front.svg",
  40158. extra: 1109/1011,
  40159. bottom: 8/1117
  40160. }
  40161. },
  40162. },
  40163. [
  40164. {
  40165. name: "Normal",
  40166. height: math.unit(170, "cm"),
  40167. default: true
  40168. },
  40169. ]
  40170. ))
  40171. characterMakers.push(() => makeCharacter(
  40172. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40173. {
  40174. front: {
  40175. height: math.unit(5, "feet"),
  40176. weight: math.unit(120, "lb"),
  40177. name: "Front",
  40178. image: {
  40179. source: "./media/characters/roxanne-voltaire/front.svg",
  40180. extra: 1901/1779,
  40181. bottom: 53/1954
  40182. }
  40183. },
  40184. },
  40185. [
  40186. {
  40187. name: "Normal",
  40188. height: math.unit(5, "feet"),
  40189. default: true
  40190. },
  40191. {
  40192. name: "Giant",
  40193. height: math.unit(50, "feet")
  40194. },
  40195. {
  40196. name: "Titan",
  40197. height: math.unit(500, "feet")
  40198. },
  40199. {
  40200. name: "Macro",
  40201. height: math.unit(5000, "feet")
  40202. },
  40203. {
  40204. name: "Megamacro",
  40205. height: math.unit(50000, "feet")
  40206. },
  40207. {
  40208. name: "Gigamacro",
  40209. height: math.unit(500000, "feet")
  40210. },
  40211. {
  40212. name: "Teramacro",
  40213. height: math.unit(5e6, "feet")
  40214. },
  40215. ]
  40216. ))
  40217. characterMakers.push(() => makeCharacter(
  40218. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40219. {
  40220. front: {
  40221. height: math.unit(6 + 2/12, "feet"),
  40222. name: "Front",
  40223. image: {
  40224. source: "./media/characters/squeaks/front.svg",
  40225. extra: 1823/1768,
  40226. bottom: 138/1961
  40227. }
  40228. },
  40229. },
  40230. [
  40231. {
  40232. name: "Micro",
  40233. height: math.unit(0.5, "inches")
  40234. },
  40235. {
  40236. name: "Normal",
  40237. height: math.unit(6 + 2/12, "feet"),
  40238. default: true
  40239. },
  40240. {
  40241. name: "Macro",
  40242. height: math.unit(600, "feet")
  40243. },
  40244. ]
  40245. ))
  40246. characterMakers.push(() => makeCharacter(
  40247. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40248. {
  40249. front: {
  40250. height: math.unit(1.72, "meters"),
  40251. name: "Front",
  40252. image: {
  40253. source: "./media/characters/archinger/front.svg",
  40254. extra: 1861/1675,
  40255. bottom: 125/1986
  40256. }
  40257. },
  40258. back: {
  40259. height: math.unit(1.72, "meters"),
  40260. name: "Back",
  40261. image: {
  40262. source: "./media/characters/archinger/back.svg",
  40263. extra: 1844/1701,
  40264. bottom: 104/1948
  40265. }
  40266. },
  40267. cock: {
  40268. height: math.unit(0.59, "feet"),
  40269. name: "Cock",
  40270. image: {
  40271. source: "./media/characters/archinger/cock.svg"
  40272. }
  40273. },
  40274. },
  40275. [
  40276. {
  40277. name: "Normal",
  40278. height: math.unit(1.72, "meters"),
  40279. default: true
  40280. },
  40281. {
  40282. name: "Macro",
  40283. height: math.unit(84, "meters")
  40284. },
  40285. {
  40286. name: "Macro+",
  40287. height: math.unit(112, "meters")
  40288. },
  40289. {
  40290. name: "Macro++",
  40291. height: math.unit(960, "meters")
  40292. },
  40293. {
  40294. name: "Macro+++",
  40295. height: math.unit(4, "km")
  40296. },
  40297. {
  40298. name: "Macro++++",
  40299. height: math.unit(48, "km")
  40300. },
  40301. {
  40302. name: "Macro+++++",
  40303. height: math.unit(4500, "km")
  40304. },
  40305. ]
  40306. ))
  40307. characterMakers.push(() => makeCharacter(
  40308. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40309. {
  40310. front: {
  40311. height: math.unit(5 + 5/12, "feet"),
  40312. name: "Front",
  40313. image: {
  40314. source: "./media/characters/alsnapz/front.svg",
  40315. extra: 1157/1065,
  40316. bottom: 42/1199
  40317. }
  40318. },
  40319. },
  40320. [
  40321. {
  40322. name: "Normal",
  40323. height: math.unit(5 + 5/12, "feet"),
  40324. default: true
  40325. },
  40326. ]
  40327. ))
  40328. characterMakers.push(() => makeCharacter(
  40329. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40330. {
  40331. side: {
  40332. height: math.unit(3.2, "earths"),
  40333. name: "Side",
  40334. image: {
  40335. source: "./media/characters/mag/side.svg",
  40336. extra: 1331/1008,
  40337. bottom: 52/1383
  40338. }
  40339. },
  40340. wing: {
  40341. height: math.unit(1.94, "earths"),
  40342. name: "Wing",
  40343. image: {
  40344. source: "./media/characters/mag/wing.svg"
  40345. }
  40346. },
  40347. dick: {
  40348. height: math.unit(1.8, "earths"),
  40349. name: "Dick",
  40350. image: {
  40351. source: "./media/characters/mag/dick.svg"
  40352. }
  40353. },
  40354. ass: {
  40355. height: math.unit(1.33, "earths"),
  40356. name: "Ass",
  40357. image: {
  40358. source: "./media/characters/mag/ass.svg"
  40359. }
  40360. },
  40361. head: {
  40362. height: math.unit(1.1, "earths"),
  40363. name: "Head",
  40364. image: {
  40365. source: "./media/characters/mag/head.svg"
  40366. }
  40367. },
  40368. maw: {
  40369. height: math.unit(1.62, "earths"),
  40370. name: "Maw",
  40371. image: {
  40372. source: "./media/characters/mag/maw.svg"
  40373. }
  40374. },
  40375. },
  40376. [
  40377. {
  40378. name: "Small",
  40379. height: math.unit(162, "feet")
  40380. },
  40381. {
  40382. name: "Normal",
  40383. height: math.unit(3.2, "earths"),
  40384. default: true
  40385. },
  40386. ]
  40387. ))
  40388. characterMakers.push(() => makeCharacter(
  40389. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40390. {
  40391. front: {
  40392. height: math.unit(512, "feet"),
  40393. weight: math.unit(63509, "tonnes"),
  40394. name: "Front",
  40395. image: {
  40396. source: "./media/characters/vorrel-harroc/front.svg",
  40397. extra: 1075/1063,
  40398. bottom: 62/1137
  40399. }
  40400. },
  40401. },
  40402. [
  40403. {
  40404. name: "Normal",
  40405. height: math.unit(10, "feet")
  40406. },
  40407. {
  40408. name: "Macro",
  40409. height: math.unit(512, "feet"),
  40410. default: true
  40411. },
  40412. {
  40413. name: "Megamacro",
  40414. height: math.unit(256, "miles")
  40415. },
  40416. {
  40417. name: "Gigamacro",
  40418. height: math.unit(4096, "miles")
  40419. },
  40420. ]
  40421. ))
  40422. characterMakers.push(() => makeCharacter(
  40423. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40424. {
  40425. side: {
  40426. height: math.unit(50, "feet"),
  40427. name: "Side",
  40428. image: {
  40429. source: "./media/characters/froimar/side.svg",
  40430. extra: 855/638,
  40431. bottom: 99/954
  40432. }
  40433. },
  40434. },
  40435. [
  40436. {
  40437. name: "Macro",
  40438. height: math.unit(50, "feet"),
  40439. default: true
  40440. },
  40441. ]
  40442. ))
  40443. characterMakers.push(() => makeCharacter(
  40444. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40445. {
  40446. front: {
  40447. height: math.unit(210, "miles"),
  40448. name: "Front",
  40449. image: {
  40450. source: "./media/characters/timothy/front.svg",
  40451. extra: 1007/943,
  40452. bottom: 62/1069
  40453. }
  40454. },
  40455. frontSkirt: {
  40456. height: math.unit(210, "miles"),
  40457. name: "Front (Skirt)",
  40458. image: {
  40459. source: "./media/characters/timothy/front-skirt.svg",
  40460. extra: 1007/943,
  40461. bottom: 62/1069
  40462. }
  40463. },
  40464. frontCoat: {
  40465. height: math.unit(210, "miles"),
  40466. name: "Front (Coat)",
  40467. image: {
  40468. source: "./media/characters/timothy/front-coat.svg",
  40469. extra: 1007/943,
  40470. bottom: 62/1069
  40471. }
  40472. },
  40473. },
  40474. [
  40475. {
  40476. name: "Macro",
  40477. height: math.unit(210, "miles"),
  40478. default: true
  40479. },
  40480. {
  40481. name: "Megamacro",
  40482. height: math.unit(210000, "miles")
  40483. },
  40484. ]
  40485. ))
  40486. characterMakers.push(() => makeCharacter(
  40487. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40488. {
  40489. front: {
  40490. height: math.unit(188, "feet"),
  40491. name: "Front",
  40492. image: {
  40493. source: "./media/characters/pyotr/front.svg",
  40494. extra: 1912/1826,
  40495. bottom: 18/1930
  40496. }
  40497. },
  40498. },
  40499. [
  40500. {
  40501. name: "Macro",
  40502. height: math.unit(188, "feet"),
  40503. default: true
  40504. },
  40505. {
  40506. name: "Megamacro",
  40507. height: math.unit(8, "miles")
  40508. },
  40509. ]
  40510. ))
  40511. characterMakers.push(() => makeCharacter(
  40512. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40513. {
  40514. side: {
  40515. height: math.unit(10, "feet"),
  40516. weight: math.unit(4500, "lb"),
  40517. name: "Side",
  40518. image: {
  40519. source: "./media/characters/ackart/side.svg",
  40520. extra: 1776/1668,
  40521. bottom: 116/1892
  40522. }
  40523. },
  40524. },
  40525. [
  40526. {
  40527. name: "Normal",
  40528. height: math.unit(10, "feet"),
  40529. default: true
  40530. },
  40531. ]
  40532. ))
  40533. characterMakers.push(() => makeCharacter(
  40534. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40535. {
  40536. side: {
  40537. height: math.unit(21, "feet"),
  40538. name: "Side",
  40539. image: {
  40540. source: "./media/characters/nolow/side.svg",
  40541. extra: 1484/1434,
  40542. bottom: 85/1569
  40543. }
  40544. },
  40545. sideErect: {
  40546. height: math.unit(21, "feet"),
  40547. name: "Side-erect",
  40548. image: {
  40549. source: "./media/characters/nolow/side-erect.svg",
  40550. extra: 1484/1434,
  40551. bottom: 85/1569
  40552. }
  40553. },
  40554. },
  40555. [
  40556. {
  40557. name: "Regular",
  40558. height: math.unit(12, "feet")
  40559. },
  40560. {
  40561. name: "Big Chee",
  40562. height: math.unit(21, "feet"),
  40563. default: true
  40564. },
  40565. ]
  40566. ))
  40567. characterMakers.push(() => makeCharacter(
  40568. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40569. {
  40570. front: {
  40571. height: math.unit(7, "feet"),
  40572. weight: math.unit(250, "lb"),
  40573. name: "Front",
  40574. image: {
  40575. source: "./media/characters/nines/front.svg",
  40576. extra: 1741/1607,
  40577. bottom: 41/1782
  40578. }
  40579. },
  40580. side: {
  40581. height: math.unit(7, "feet"),
  40582. weight: math.unit(250, "lb"),
  40583. name: "Side",
  40584. image: {
  40585. source: "./media/characters/nines/side.svg",
  40586. extra: 1854/1735,
  40587. bottom: 93/1947
  40588. }
  40589. },
  40590. back: {
  40591. height: math.unit(7, "feet"),
  40592. weight: math.unit(250, "lb"),
  40593. name: "Back",
  40594. image: {
  40595. source: "./media/characters/nines/back.svg",
  40596. extra: 1748/1615,
  40597. bottom: 20/1768
  40598. }
  40599. },
  40600. },
  40601. [
  40602. {
  40603. name: "Megamacro",
  40604. height: math.unit(99, "km"),
  40605. default: true
  40606. },
  40607. ]
  40608. ))
  40609. characterMakers.push(() => makeCharacter(
  40610. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40611. {
  40612. front: {
  40613. height: math.unit(5 + 10/12, "feet"),
  40614. weight: math.unit(210, "lb"),
  40615. name: "Front",
  40616. image: {
  40617. source: "./media/characters/zenith/front.svg",
  40618. extra: 1531/1452,
  40619. bottom: 198/1729
  40620. }
  40621. },
  40622. back: {
  40623. height: math.unit(5 + 10/12, "feet"),
  40624. weight: math.unit(210, "lb"),
  40625. name: "Back",
  40626. image: {
  40627. source: "./media/characters/zenith/back.svg",
  40628. extra: 1571/1487,
  40629. bottom: 75/1646
  40630. }
  40631. },
  40632. },
  40633. [
  40634. {
  40635. name: "Normal",
  40636. height: math.unit(5 + 10/12, "feet"),
  40637. default: true
  40638. }
  40639. ]
  40640. ))
  40641. characterMakers.push(() => makeCharacter(
  40642. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40643. {
  40644. front: {
  40645. height: math.unit(4, "feet"),
  40646. weight: math.unit(60, "lb"),
  40647. name: "Front",
  40648. image: {
  40649. source: "./media/characters/jasper/front.svg",
  40650. extra: 1450/1379,
  40651. bottom: 19/1469
  40652. }
  40653. },
  40654. },
  40655. [
  40656. {
  40657. name: "Normal",
  40658. height: math.unit(4, "feet"),
  40659. default: true
  40660. },
  40661. ]
  40662. ))
  40663. characterMakers.push(() => makeCharacter(
  40664. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40665. {
  40666. front: {
  40667. height: math.unit(6 + 5/12, "feet"),
  40668. weight: math.unit(290, "lb"),
  40669. name: "Front",
  40670. image: {
  40671. source: "./media/characters/tiberius-thyben/front.svg",
  40672. extra: 757/739,
  40673. bottom: 39/796
  40674. }
  40675. },
  40676. },
  40677. [
  40678. {
  40679. name: "Micro",
  40680. height: math.unit(1.5, "inches")
  40681. },
  40682. {
  40683. name: "Normal",
  40684. height: math.unit(6 + 5/12, "feet"),
  40685. default: true
  40686. },
  40687. {
  40688. name: "Macro",
  40689. height: math.unit(300, "feet")
  40690. },
  40691. ]
  40692. ))
  40693. characterMakers.push(() => makeCharacter(
  40694. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40695. {
  40696. front: {
  40697. height: math.unit(5 + 6/12, "feet"),
  40698. weight: math.unit(60, "kg"),
  40699. name: "Front",
  40700. image: {
  40701. source: "./media/characters/sabre/front.svg",
  40702. extra: 738/671,
  40703. bottom: 27/765
  40704. }
  40705. },
  40706. },
  40707. [
  40708. {
  40709. name: "Teeny",
  40710. height: math.unit(2, "inches")
  40711. },
  40712. {
  40713. name: "Smol",
  40714. height: math.unit(8, "inches")
  40715. },
  40716. {
  40717. name: "Normal",
  40718. height: math.unit(5 + 6/12, "feet"),
  40719. default: true
  40720. },
  40721. {
  40722. name: "Mini-Macro",
  40723. height: math.unit(15, "feet")
  40724. },
  40725. {
  40726. name: "Macro",
  40727. height: math.unit(50, "feet")
  40728. },
  40729. ]
  40730. ))
  40731. characterMakers.push(() => makeCharacter(
  40732. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40733. {
  40734. front: {
  40735. height: math.unit(6 + 4/12, "feet"),
  40736. weight: math.unit(170, "lb"),
  40737. name: "Front",
  40738. image: {
  40739. source: "./media/characters/charlie/front.svg",
  40740. extra: 1348/1228,
  40741. bottom: 15/1363
  40742. }
  40743. },
  40744. },
  40745. [
  40746. {
  40747. name: "Macro",
  40748. height: math.unit(1700, "meters"),
  40749. default: true
  40750. },
  40751. {
  40752. name: "MegaMacro",
  40753. height: math.unit(20400, "meters")
  40754. },
  40755. ]
  40756. ))
  40757. characterMakers.push(() => makeCharacter(
  40758. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40759. {
  40760. front: {
  40761. height: math.unit(6 + 3/12, "feet"),
  40762. weight: math.unit(185, "lb"),
  40763. name: "Front",
  40764. image: {
  40765. source: "./media/characters/susan-grant/front.svg",
  40766. extra: 1351/1327,
  40767. bottom: 26/1377
  40768. }
  40769. },
  40770. },
  40771. [
  40772. {
  40773. name: "Normal",
  40774. height: math.unit(6 + 3/12, "feet"),
  40775. default: true
  40776. },
  40777. {
  40778. name: "Macro",
  40779. height: math.unit(225, "feet")
  40780. },
  40781. {
  40782. name: "Macro+",
  40783. height: math.unit(900, "feet")
  40784. },
  40785. {
  40786. name: "MegaMacro",
  40787. height: math.unit(14400, "feet")
  40788. },
  40789. ]
  40790. ))
  40791. characterMakers.push(() => makeCharacter(
  40792. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40793. {
  40794. front: {
  40795. height: math.unit(5 + 4/12, "feet"),
  40796. weight: math.unit(110, "lb"),
  40797. name: "Front",
  40798. image: {
  40799. source: "./media/characters/axel-isanov/front.svg",
  40800. extra: 1096/1065,
  40801. bottom: 13/1109
  40802. }
  40803. },
  40804. },
  40805. [
  40806. {
  40807. name: "Normal",
  40808. height: math.unit(5 + 4/12, "feet"),
  40809. default: true
  40810. },
  40811. ]
  40812. ))
  40813. characterMakers.push(() => makeCharacter(
  40814. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40815. {
  40816. front: {
  40817. height: math.unit(9, "feet"),
  40818. weight: math.unit(467, "lb"),
  40819. name: "Front",
  40820. image: {
  40821. source: "./media/characters/necahual/front.svg",
  40822. extra: 920/873,
  40823. bottom: 26/946
  40824. }
  40825. },
  40826. back: {
  40827. height: math.unit(9, "feet"),
  40828. weight: math.unit(467, "lb"),
  40829. name: "Back",
  40830. image: {
  40831. source: "./media/characters/necahual/back.svg",
  40832. extra: 930/884,
  40833. bottom: 16/946
  40834. }
  40835. },
  40836. frontUnderwear: {
  40837. height: math.unit(9, "feet"),
  40838. weight: math.unit(467, "lb"),
  40839. name: "Front (Underwear)",
  40840. image: {
  40841. source: "./media/characters/necahual/front-underwear.svg",
  40842. extra: 920/873,
  40843. bottom: 26/946
  40844. }
  40845. },
  40846. frontDressed: {
  40847. height: math.unit(9, "feet"),
  40848. weight: math.unit(467, "lb"),
  40849. name: "Front (Dressed)",
  40850. image: {
  40851. source: "./media/characters/necahual/front-dressed.svg",
  40852. extra: 920/873,
  40853. bottom: 26/946
  40854. }
  40855. },
  40856. },
  40857. [
  40858. {
  40859. name: "Comprsesed",
  40860. height: math.unit(9, "feet")
  40861. },
  40862. {
  40863. name: "Natural",
  40864. height: math.unit(15, "feet"),
  40865. default: true
  40866. },
  40867. {
  40868. name: "Boosted",
  40869. height: math.unit(50, "feet")
  40870. },
  40871. {
  40872. name: "Boosted+",
  40873. height: math.unit(150, "feet")
  40874. },
  40875. {
  40876. name: "Max",
  40877. height: math.unit(500, "feet")
  40878. },
  40879. ]
  40880. ))
  40881. characterMakers.push(() => makeCharacter(
  40882. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40883. {
  40884. front: {
  40885. height: math.unit(22 + 1/12, "feet"),
  40886. weight: math.unit(3200, "lb"),
  40887. name: "Front",
  40888. image: {
  40889. source: "./media/characters/theo-acacia/front.svg",
  40890. extra: 1796/1741,
  40891. bottom: 83/1879
  40892. }
  40893. },
  40894. frontUnderwear: {
  40895. height: math.unit(22 + 1/12, "feet"),
  40896. weight: math.unit(3200, "lb"),
  40897. name: "Front (Underwear)",
  40898. image: {
  40899. source: "./media/characters/theo-acacia/front-underwear.svg",
  40900. extra: 1796/1741,
  40901. bottom: 83/1879
  40902. }
  40903. },
  40904. frontNude: {
  40905. height: math.unit(22 + 1/12, "feet"),
  40906. weight: math.unit(3200, "lb"),
  40907. name: "Front (Nude)",
  40908. image: {
  40909. source: "./media/characters/theo-acacia/front-nude.svg",
  40910. extra: 1796/1741,
  40911. bottom: 83/1879
  40912. }
  40913. },
  40914. },
  40915. [
  40916. {
  40917. name: "Normal",
  40918. height: math.unit(22 + 1/12, "feet"),
  40919. default: true
  40920. },
  40921. ]
  40922. ))
  40923. characterMakers.push(() => makeCharacter(
  40924. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40925. {
  40926. front: {
  40927. height: math.unit(20, "feet"),
  40928. name: "Front",
  40929. image: {
  40930. source: "./media/characters/astra/front.svg",
  40931. extra: 1850/1714,
  40932. bottom: 106/1956
  40933. }
  40934. },
  40935. frontUndressed: {
  40936. height: math.unit(20, "feet"),
  40937. name: "Front (Undressed)",
  40938. image: {
  40939. source: "./media/characters/astra/front-undressed.svg",
  40940. extra: 1926/1749,
  40941. bottom: 0/1926
  40942. }
  40943. },
  40944. hand: {
  40945. height: math.unit(1.53, "feet"),
  40946. name: "Hand",
  40947. image: {
  40948. source: "./media/characters/astra/hand.svg"
  40949. }
  40950. },
  40951. paw: {
  40952. height: math.unit(1.53, "feet"),
  40953. name: "Paw",
  40954. image: {
  40955. source: "./media/characters/astra/paw.svg"
  40956. }
  40957. },
  40958. },
  40959. [
  40960. {
  40961. name: "Smallest",
  40962. height: math.unit(20, "feet")
  40963. },
  40964. {
  40965. name: "Normal",
  40966. height: math.unit(1e9, "miles"),
  40967. default: true
  40968. },
  40969. {
  40970. name: "Larger",
  40971. height: math.unit(5, "multiverses")
  40972. },
  40973. {
  40974. name: "Largest",
  40975. height: math.unit(1e9, "multiverses")
  40976. },
  40977. ]
  40978. ))
  40979. characterMakers.push(() => makeCharacter(
  40980. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40981. {
  40982. front: {
  40983. height: math.unit(8, "feet"),
  40984. name: "Front",
  40985. image: {
  40986. source: "./media/characters/breanna/front.svg",
  40987. extra: 1912/1632,
  40988. bottom: 33/1945
  40989. }
  40990. },
  40991. },
  40992. [
  40993. {
  40994. name: "Smallest",
  40995. height: math.unit(8, "feet")
  40996. },
  40997. {
  40998. name: "Normal",
  40999. height: math.unit(1, "mile"),
  41000. default: true
  41001. },
  41002. {
  41003. name: "Maximum",
  41004. height: math.unit(1500000000000, "lightyears")
  41005. },
  41006. ]
  41007. ))
  41008. characterMakers.push(() => makeCharacter(
  41009. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41010. {
  41011. front: {
  41012. height: math.unit(5 + 11/12, "feet"),
  41013. weight: math.unit(155, "lb"),
  41014. name: "Front",
  41015. image: {
  41016. source: "./media/characters/cai/front.svg",
  41017. extra: 1823/1702,
  41018. bottom: 32/1855
  41019. }
  41020. },
  41021. back: {
  41022. height: math.unit(5 + 11/12, "feet"),
  41023. weight: math.unit(155, "lb"),
  41024. name: "Back",
  41025. image: {
  41026. source: "./media/characters/cai/back.svg",
  41027. extra: 1809/1708,
  41028. bottom: 31/1840
  41029. }
  41030. },
  41031. },
  41032. [
  41033. {
  41034. name: "Normal",
  41035. height: math.unit(5 + 11/12, "feet"),
  41036. default: true
  41037. },
  41038. {
  41039. name: "Big",
  41040. height: math.unit(15, "feet")
  41041. },
  41042. {
  41043. name: "Macro",
  41044. height: math.unit(200, "feet")
  41045. },
  41046. ]
  41047. ))
  41048. characterMakers.push(() => makeCharacter(
  41049. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41050. {
  41051. front: {
  41052. height: math.unit(5 + 6/12, "feet"),
  41053. weight: math.unit(160, "lb"),
  41054. name: "Front",
  41055. image: {
  41056. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41057. extra: 1227/1174,
  41058. bottom: 37/1264
  41059. }
  41060. },
  41061. },
  41062. [
  41063. {
  41064. name: "Macro",
  41065. height: math.unit(444, "meters"),
  41066. default: true
  41067. },
  41068. ]
  41069. ))
  41070. characterMakers.push(() => makeCharacter(
  41071. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41072. {
  41073. front: {
  41074. height: math.unit(18 + 7/12, "feet"),
  41075. name: "Front",
  41076. image: {
  41077. source: "./media/characters/rex/front.svg",
  41078. extra: 1941/1807,
  41079. bottom: 66/2007
  41080. }
  41081. },
  41082. back: {
  41083. height: math.unit(18 + 7/12, "feet"),
  41084. name: "Back",
  41085. image: {
  41086. source: "./media/characters/rex/back.svg",
  41087. extra: 1937/1822,
  41088. bottom: 42/1979
  41089. }
  41090. },
  41091. boot: {
  41092. height: math.unit(3.45, "feet"),
  41093. name: "Boot",
  41094. image: {
  41095. source: "./media/characters/rex/boot.svg"
  41096. }
  41097. },
  41098. paw: {
  41099. height: math.unit(4.17, "feet"),
  41100. name: "Paw",
  41101. image: {
  41102. source: "./media/characters/rex/paw.svg"
  41103. }
  41104. },
  41105. head: {
  41106. height: math.unit(6.728, "feet"),
  41107. name: "Head",
  41108. image: {
  41109. source: "./media/characters/rex/head.svg"
  41110. }
  41111. },
  41112. },
  41113. [
  41114. {
  41115. name: "Nano",
  41116. height: math.unit(18 + 7/12, "feet")
  41117. },
  41118. {
  41119. name: "Micro",
  41120. height: math.unit(1.5, "megameters")
  41121. },
  41122. {
  41123. name: "Normal",
  41124. height: math.unit(440, "megameters"),
  41125. default: true
  41126. },
  41127. {
  41128. name: "Macro",
  41129. height: math.unit(2.5, "gigameters")
  41130. },
  41131. {
  41132. name: "Gigamacro",
  41133. height: math.unit(2, "galaxies")
  41134. },
  41135. ]
  41136. ))
  41137. characterMakers.push(() => makeCharacter(
  41138. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41139. {
  41140. side: {
  41141. height: math.unit(32, "feet"),
  41142. weight: math.unit(250000, "lb"),
  41143. name: "Side",
  41144. image: {
  41145. source: "./media/characters/silverwing/side.svg",
  41146. extra: 1100/1019,
  41147. bottom: 204/1304
  41148. }
  41149. },
  41150. },
  41151. [
  41152. {
  41153. name: "Normal",
  41154. height: math.unit(32, "feet"),
  41155. default: true
  41156. },
  41157. ]
  41158. ))
  41159. characterMakers.push(() => makeCharacter(
  41160. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41161. {
  41162. front: {
  41163. height: math.unit(6 + 6/12, "feet"),
  41164. weight: math.unit(350, "lb"),
  41165. name: "Front",
  41166. image: {
  41167. source: "./media/characters/tristan-hawthorne/front.svg",
  41168. extra: 1159/1124,
  41169. bottom: 37/1196
  41170. }
  41171. },
  41172. },
  41173. [
  41174. {
  41175. name: "Normal",
  41176. height: math.unit(6 + 6/12, "feet"),
  41177. default: true
  41178. },
  41179. ]
  41180. ))
  41181. characterMakers.push(() => makeCharacter(
  41182. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41183. {
  41184. front: {
  41185. height: math.unit(5 + 11/12, "feet"),
  41186. weight: math.unit(190, "lb"),
  41187. name: "Front",
  41188. image: {
  41189. source: "./media/characters/mizu/front.svg",
  41190. extra: 1988/1788,
  41191. bottom: 14/2002
  41192. }
  41193. },
  41194. },
  41195. [
  41196. {
  41197. name: "Normal",
  41198. height: math.unit(5 + 11/12, "feet"),
  41199. default: true
  41200. },
  41201. ]
  41202. ))
  41203. characterMakers.push(() => makeCharacter(
  41204. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41205. {
  41206. front: {
  41207. height: math.unit(6, "feet"),
  41208. name: "Front",
  41209. image: {
  41210. source: "./media/characters/moonlight-rose-terra/front.svg",
  41211. extra: 1434/1252,
  41212. bottom: 48/1482
  41213. }
  41214. },
  41215. },
  41216. [
  41217. {
  41218. name: "TRAPPIST-1D",
  41219. height: math.unit(4992*2, "km")
  41220. },
  41221. {
  41222. name: "Earth",
  41223. height: math.unit(6367*2, "km"),
  41224. default: true
  41225. },
  41226. {
  41227. name: "Kepler-22b",
  41228. height: math.unit(15282*2, "km")
  41229. },
  41230. ]
  41231. ))
  41232. characterMakers.push(() => makeCharacter(
  41233. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41234. {
  41235. front: {
  41236. height: math.unit(6, "feet"),
  41237. name: "Front",
  41238. image: {
  41239. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41240. extra: 1851/1712,
  41241. bottom: 0/1851
  41242. }
  41243. },
  41244. },
  41245. [
  41246. {
  41247. name: "Enceladus",
  41248. height: math.unit(513*2, "km")
  41249. },
  41250. {
  41251. name: "Europe",
  41252. height: math.unit(1560*2, "km")
  41253. },
  41254. {
  41255. name: "Neptune",
  41256. height: math.unit(24622*2, "km"),
  41257. default: true
  41258. },
  41259. {
  41260. name: "CoRoT-9b",
  41261. height: math.unit(75067*2, "km")
  41262. },
  41263. ]
  41264. ))
  41265. characterMakers.push(() => makeCharacter(
  41266. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41267. {
  41268. front: {
  41269. height: math.unit(6, "feet"),
  41270. name: "Front",
  41271. image: {
  41272. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41273. extra: 1367/1286,
  41274. bottom: 55/1422
  41275. }
  41276. },
  41277. },
  41278. [
  41279. {
  41280. name: "Saturn",
  41281. height: math.unit(58232*2, "km")
  41282. },
  41283. {
  41284. name: "Jupiter",
  41285. height: math.unit(69911*2, "km"),
  41286. default: true
  41287. },
  41288. {
  41289. name: "HD 100546 b",
  41290. height: math.unit(482938, "km")
  41291. },
  41292. ]
  41293. ))
  41294. characterMakers.push(() => makeCharacter(
  41295. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41296. {
  41297. front: {
  41298. height: math.unit(1.7, "feet"),
  41299. weight: math.unit(50, "lb"),
  41300. name: "Front",
  41301. image: {
  41302. source: "./media/characters/dechroma/front.svg",
  41303. extra: 1095/859,
  41304. bottom: 64/1159
  41305. }
  41306. },
  41307. },
  41308. [
  41309. {
  41310. name: "Normal",
  41311. height: math.unit(1.7, "feet"),
  41312. default: true
  41313. },
  41314. ]
  41315. ))
  41316. characterMakers.push(() => makeCharacter(
  41317. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41318. {
  41319. side: {
  41320. height: math.unit(30, "feet"),
  41321. name: "Side",
  41322. image: {
  41323. source: "./media/characters/veluren-thanazel/side.svg",
  41324. extra: 1611/633,
  41325. bottom: 118/1729
  41326. }
  41327. },
  41328. front: {
  41329. height: math.unit(30, "feet"),
  41330. name: "Front",
  41331. image: {
  41332. source: "./media/characters/veluren-thanazel/front.svg",
  41333. extra: 1486/636,
  41334. bottom: 238/1724
  41335. }
  41336. },
  41337. head: {
  41338. height: math.unit(21.4, "feet"),
  41339. name: "Head",
  41340. image: {
  41341. source: "./media/characters/veluren-thanazel/head.svg"
  41342. }
  41343. },
  41344. genitals: {
  41345. height: math.unit(19.4, "feet"),
  41346. name: "Genitals",
  41347. image: {
  41348. source: "./media/characters/veluren-thanazel/genitals.svg"
  41349. }
  41350. },
  41351. },
  41352. [
  41353. {
  41354. name: "Social",
  41355. height: math.unit(6, "feet")
  41356. },
  41357. {
  41358. name: "Play",
  41359. height: math.unit(12, "feet")
  41360. },
  41361. {
  41362. name: "True",
  41363. height: math.unit(30, "feet"),
  41364. default: true
  41365. },
  41366. ]
  41367. ))
  41368. characterMakers.push(() => makeCharacter(
  41369. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41370. {
  41371. front: {
  41372. height: math.unit(7 + 6/12, "feet"),
  41373. weight: math.unit(500, "kg"),
  41374. name: "Front",
  41375. image: {
  41376. source: "./media/characters/arcturas/front.svg",
  41377. extra: 1700/1500,
  41378. bottom: 145/1845
  41379. }
  41380. },
  41381. },
  41382. [
  41383. {
  41384. name: "Normal",
  41385. height: math.unit(7 + 6/12, "feet"),
  41386. default: true
  41387. },
  41388. ]
  41389. ))
  41390. characterMakers.push(() => makeCharacter(
  41391. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41392. {
  41393. side: {
  41394. height: math.unit(6, "feet"),
  41395. weight: math.unit(2, "tons"),
  41396. name: "Side",
  41397. image: {
  41398. source: "./media/characters/vitaen/side.svg",
  41399. extra: 1157/617,
  41400. bottom: 122/1279
  41401. }
  41402. },
  41403. },
  41404. [
  41405. {
  41406. name: "Normal",
  41407. height: math.unit(6, "feet"),
  41408. default: true
  41409. },
  41410. ]
  41411. ))
  41412. characterMakers.push(() => makeCharacter(
  41413. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41414. {
  41415. front: {
  41416. height: math.unit(19, "feet"),
  41417. name: "Front",
  41418. image: {
  41419. source: "./media/characters/fia-dreamweaver/front.svg",
  41420. extra: 1630/1504,
  41421. bottom: 25/1655
  41422. }
  41423. },
  41424. },
  41425. [
  41426. {
  41427. name: "Normal",
  41428. height: math.unit(19, "feet"),
  41429. default: true
  41430. },
  41431. ]
  41432. ))
  41433. characterMakers.push(() => makeCharacter(
  41434. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41435. {
  41436. front: {
  41437. height: math.unit(5 + 4/12, "feet"),
  41438. name: "Front",
  41439. image: {
  41440. source: "./media/characters/artan/front.svg",
  41441. extra: 1618/1535,
  41442. bottom: 46/1664
  41443. }
  41444. },
  41445. back: {
  41446. height: math.unit(5 + 4/12, "feet"),
  41447. name: "Back",
  41448. image: {
  41449. source: "./media/characters/artan/back.svg",
  41450. extra: 1618/1543,
  41451. bottom: 31/1649
  41452. }
  41453. },
  41454. },
  41455. [
  41456. {
  41457. name: "Normal",
  41458. height: math.unit(5 + 4/12, "feet"),
  41459. default: true
  41460. },
  41461. ]
  41462. ))
  41463. characterMakers.push(() => makeCharacter(
  41464. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41465. {
  41466. side: {
  41467. height: math.unit(182, "cm"),
  41468. weight: math.unit(1000, "lb"),
  41469. name: "Side",
  41470. image: {
  41471. source: "./media/characters/silver-dragon/side.svg",
  41472. extra: 710/287,
  41473. bottom: 88/798
  41474. }
  41475. },
  41476. },
  41477. [
  41478. {
  41479. name: "Normal",
  41480. height: math.unit(182, "cm"),
  41481. default: true
  41482. },
  41483. ]
  41484. ))
  41485. characterMakers.push(() => makeCharacter(
  41486. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41487. {
  41488. side: {
  41489. height: math.unit(6 + 6/12, "feet"),
  41490. weight: math.unit(1.5, "tons"),
  41491. name: "Side",
  41492. image: {
  41493. source: "./media/characters/zephyr/side.svg",
  41494. extra: 1433/586,
  41495. bottom: 109/1542
  41496. }
  41497. },
  41498. },
  41499. [
  41500. {
  41501. name: "Normal",
  41502. height: math.unit(6 + 6/12, "feet"),
  41503. default: true
  41504. },
  41505. ]
  41506. ))
  41507. characterMakers.push(() => makeCharacter(
  41508. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41509. {
  41510. side: {
  41511. height: math.unit(1, "feet"),
  41512. name: "Side",
  41513. image: {
  41514. source: "./media/characters/vixye/side.svg",
  41515. extra: 632/541,
  41516. bottom: 0/632
  41517. }
  41518. },
  41519. },
  41520. [
  41521. {
  41522. name: "Normal",
  41523. height: math.unit(1, "feet"),
  41524. default: true
  41525. },
  41526. {
  41527. name: "True",
  41528. height: math.unit(1e15, "multiverses")
  41529. },
  41530. ]
  41531. ))
  41532. characterMakers.push(() => makeCharacter(
  41533. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41534. {
  41535. front: {
  41536. height: math.unit(8 + 2/12, "feet"),
  41537. weight: math.unit(650, "lb"),
  41538. name: "Front",
  41539. image: {
  41540. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41541. extra: 1174/1137,
  41542. bottom: 82/1256
  41543. }
  41544. },
  41545. back: {
  41546. height: math.unit(8 + 2/12, "feet"),
  41547. weight: math.unit(650, "lb"),
  41548. name: "Back",
  41549. image: {
  41550. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41551. extra: 1204/1157,
  41552. bottom: 46/1250
  41553. }
  41554. },
  41555. },
  41556. [
  41557. {
  41558. name: "Wildform",
  41559. height: math.unit(8 + 2/12, "feet"),
  41560. default: true
  41561. },
  41562. ]
  41563. ))
  41564. characterMakers.push(() => makeCharacter(
  41565. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41566. {
  41567. front: {
  41568. height: math.unit(18, "feet"),
  41569. name: "Front",
  41570. image: {
  41571. source: "./media/characters/cyphin/front.svg",
  41572. extra: 970/886,
  41573. bottom: 42/1012
  41574. }
  41575. },
  41576. back: {
  41577. height: math.unit(18, "feet"),
  41578. name: "Back",
  41579. image: {
  41580. source: "./media/characters/cyphin/back.svg",
  41581. extra: 1009/894,
  41582. bottom: 24/1033
  41583. }
  41584. },
  41585. head: {
  41586. height: math.unit(5.05, "feet"),
  41587. name: "Head",
  41588. image: {
  41589. source: "./media/characters/cyphin/head.svg"
  41590. }
  41591. },
  41592. tailbud: {
  41593. height: math.unit(5, "feet"),
  41594. name: "Tailbud",
  41595. image: {
  41596. source: "./media/characters/cyphin/tailbud.svg"
  41597. }
  41598. },
  41599. },
  41600. [
  41601. ]
  41602. ))
  41603. characterMakers.push(() => makeCharacter(
  41604. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41605. {
  41606. side: {
  41607. height: math.unit(10, "feet"),
  41608. weight: math.unit(6, "tons"),
  41609. name: "Side",
  41610. image: {
  41611. source: "./media/characters/raijin/side.svg",
  41612. extra: 1529/613,
  41613. bottom: 337/1866
  41614. }
  41615. },
  41616. },
  41617. [
  41618. {
  41619. name: "Normal",
  41620. height: math.unit(10, "feet"),
  41621. default: true
  41622. },
  41623. ]
  41624. ))
  41625. characterMakers.push(() => makeCharacter(
  41626. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41627. {
  41628. side: {
  41629. height: math.unit(9, "feet"),
  41630. name: "Side",
  41631. image: {
  41632. source: "./media/characters/nilghais/side.svg",
  41633. extra: 1047/744,
  41634. bottom: 91/1138
  41635. }
  41636. },
  41637. head: {
  41638. height: math.unit(3.14, "feet"),
  41639. name: "Head",
  41640. image: {
  41641. source: "./media/characters/nilghais/head.svg"
  41642. }
  41643. },
  41644. mouth: {
  41645. height: math.unit(4.6, "feet"),
  41646. name: "Mouth",
  41647. image: {
  41648. source: "./media/characters/nilghais/mouth.svg"
  41649. }
  41650. },
  41651. wings: {
  41652. height: math.unit(24, "feet"),
  41653. name: "Wings",
  41654. image: {
  41655. source: "./media/characters/nilghais/wings.svg"
  41656. }
  41657. },
  41658. ass: {
  41659. height: math.unit(6.12, "feet"),
  41660. name: "Ass",
  41661. image: {
  41662. source: "./media/characters/nilghais/ass.svg"
  41663. }
  41664. },
  41665. },
  41666. [
  41667. {
  41668. name: "Normal",
  41669. height: math.unit(9, "feet"),
  41670. default: true
  41671. },
  41672. ]
  41673. ))
  41674. characterMakers.push(() => makeCharacter(
  41675. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41676. {
  41677. regular: {
  41678. height: math.unit(16 + 2/12, "feet"),
  41679. weight: math.unit(2300, "lb"),
  41680. name: "Regular",
  41681. image: {
  41682. source: "./media/characters/zolgar/regular.svg",
  41683. extra: 1246/1004,
  41684. bottom: 124/1370
  41685. }
  41686. },
  41687. boxers: {
  41688. height: math.unit(16 + 2/12, "feet"),
  41689. weight: math.unit(2300, "lb"),
  41690. name: "Boxers",
  41691. image: {
  41692. source: "./media/characters/zolgar/boxers.svg",
  41693. extra: 1246/1004,
  41694. bottom: 124/1370
  41695. }
  41696. },
  41697. armored: {
  41698. height: math.unit(16 + 2/12, "feet"),
  41699. weight: math.unit(2300, "lb"),
  41700. name: "Armored",
  41701. image: {
  41702. source: "./media/characters/zolgar/armored.svg",
  41703. extra: 1246/1004,
  41704. bottom: 124/1370
  41705. }
  41706. },
  41707. goth: {
  41708. height: math.unit(16 + 2/12, "feet"),
  41709. weight: math.unit(2300, "lb"),
  41710. name: "Goth",
  41711. image: {
  41712. source: "./media/characters/zolgar/goth.svg",
  41713. extra: 1246/1004,
  41714. bottom: 124/1370
  41715. }
  41716. },
  41717. },
  41718. [
  41719. {
  41720. name: "Shrunken Down",
  41721. height: math.unit(9 + 2/12, "feet")
  41722. },
  41723. {
  41724. name: "Normal",
  41725. height: math.unit(16 + 2/12, "feet"),
  41726. default: true
  41727. },
  41728. ]
  41729. ))
  41730. characterMakers.push(() => makeCharacter(
  41731. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41732. {
  41733. front: {
  41734. height: math.unit(6, "feet"),
  41735. weight: math.unit(168, "lb"),
  41736. name: "Front",
  41737. image: {
  41738. source: "./media/characters/luca/front.svg",
  41739. extra: 841/667,
  41740. bottom: 102/943
  41741. }
  41742. },
  41743. },
  41744. [
  41745. {
  41746. name: "Normal",
  41747. height: math.unit(6, "feet"),
  41748. default: true
  41749. },
  41750. ]
  41751. ))
  41752. characterMakers.push(() => makeCharacter(
  41753. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41754. {
  41755. side: {
  41756. height: math.unit(7 + 3/12, "feet"),
  41757. weight: math.unit(312, "lb"),
  41758. name: "Side",
  41759. image: {
  41760. source: "./media/characters/zezo/side.svg",
  41761. extra: 1192/1067,
  41762. bottom: 63/1255
  41763. }
  41764. },
  41765. },
  41766. [
  41767. {
  41768. name: "Normal",
  41769. height: math.unit(7 + 3/12, "feet"),
  41770. default: true
  41771. },
  41772. ]
  41773. ))
  41774. characterMakers.push(() => makeCharacter(
  41775. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41776. {
  41777. front: {
  41778. height: math.unit(5 + 5/12, "feet"),
  41779. weight: math.unit(170, "lb"),
  41780. name: "Front",
  41781. image: {
  41782. source: "./media/characters/mayso/front.svg",
  41783. extra: 1215/1108,
  41784. bottom: 16/1231
  41785. }
  41786. },
  41787. },
  41788. [
  41789. {
  41790. name: "Normal",
  41791. height: math.unit(5 + 5/12, "feet"),
  41792. default: true
  41793. },
  41794. ]
  41795. ))
  41796. characterMakers.push(() => makeCharacter(
  41797. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41798. {
  41799. front: {
  41800. height: math.unit(4 + 3/12, "feet"),
  41801. weight: math.unit(80, "lb"),
  41802. name: "Front",
  41803. image: {
  41804. source: "./media/characters/hess/front.svg",
  41805. extra: 1200/1123,
  41806. bottom: 16/1216
  41807. }
  41808. },
  41809. },
  41810. [
  41811. {
  41812. name: "Normal",
  41813. height: math.unit(4 + 3/12, "feet"),
  41814. default: true
  41815. },
  41816. ]
  41817. ))
  41818. characterMakers.push(() => makeCharacter(
  41819. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41820. {
  41821. front: {
  41822. height: math.unit(1.9, "meters"),
  41823. name: "Front",
  41824. image: {
  41825. source: "./media/characters/ashgar/front.svg",
  41826. extra: 1177/1146,
  41827. bottom: 99/1276
  41828. }
  41829. },
  41830. back: {
  41831. height: math.unit(1.9, "meters"),
  41832. name: "Back",
  41833. image: {
  41834. source: "./media/characters/ashgar/back.svg",
  41835. extra: 1201/1183,
  41836. bottom: 53/1254
  41837. }
  41838. },
  41839. feral: {
  41840. height: math.unit(1.4, "meters"),
  41841. name: "Feral",
  41842. image: {
  41843. source: "./media/characters/ashgar/feral.svg",
  41844. extra: 370/345,
  41845. bottom: 45/415
  41846. }
  41847. },
  41848. },
  41849. [
  41850. {
  41851. name: "Normal",
  41852. height: math.unit(1.9, "meters"),
  41853. default: true
  41854. },
  41855. ]
  41856. ))
  41857. characterMakers.push(() => makeCharacter(
  41858. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41859. {
  41860. regular: {
  41861. height: math.unit(6, "feet"),
  41862. weight: math.unit(220, "lb"),
  41863. name: "Regular",
  41864. image: {
  41865. source: "./media/characters/phillip/regular.svg",
  41866. extra: 1373/1277,
  41867. bottom: 75/1448
  41868. }
  41869. },
  41870. dressed: {
  41871. height: math.unit(6, "feet"),
  41872. weight: math.unit(220, "lb"),
  41873. name: "Dressed",
  41874. image: {
  41875. source: "./media/characters/phillip/dressed.svg",
  41876. extra: 1373/1277,
  41877. bottom: 75/1448
  41878. }
  41879. },
  41880. paw: {
  41881. height: math.unit(1.44, "feet"),
  41882. name: "Paw",
  41883. image: {
  41884. source: "./media/characters/phillip/paw.svg"
  41885. }
  41886. },
  41887. },
  41888. [
  41889. {
  41890. name: "Normal",
  41891. height: math.unit(6, "feet"),
  41892. default: true
  41893. },
  41894. ]
  41895. ))
  41896. characterMakers.push(() => makeCharacter(
  41897. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41898. {
  41899. side: {
  41900. height: math.unit(42, "feet"),
  41901. name: "Side",
  41902. image: {
  41903. source: "./media/characters/uvula/side.svg",
  41904. extra: 683/586,
  41905. bottom: 60/743
  41906. }
  41907. },
  41908. front: {
  41909. height: math.unit(42, "feet"),
  41910. name: "Front",
  41911. image: {
  41912. source: "./media/characters/uvula/front.svg",
  41913. extra: 705/613,
  41914. bottom: 54/759
  41915. }
  41916. },
  41917. maw: {
  41918. height: math.unit(23.5, "feet"),
  41919. name: "Maw",
  41920. image: {
  41921. source: "./media/characters/uvula/maw.svg"
  41922. }
  41923. },
  41924. },
  41925. [
  41926. {
  41927. name: "Original Size",
  41928. height: math.unit(14, "inches")
  41929. },
  41930. {
  41931. name: "Human Size",
  41932. height: math.unit(6, "feet")
  41933. },
  41934. {
  41935. name: "Big",
  41936. height: math.unit(42, "feet"),
  41937. default: true
  41938. },
  41939. {
  41940. name: "Bigger",
  41941. height: math.unit(100, "feet")
  41942. },
  41943. ]
  41944. ))
  41945. characterMakers.push(() => makeCharacter(
  41946. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41947. {
  41948. front: {
  41949. height: math.unit(5 + 11/12, "feet"),
  41950. name: "Front",
  41951. image: {
  41952. source: "./media/characters/lannah/front.svg",
  41953. extra: 1208/1113,
  41954. bottom: 97/1305
  41955. }
  41956. },
  41957. },
  41958. [
  41959. {
  41960. name: "Normal",
  41961. height: math.unit(5 + 11/12, "feet"),
  41962. default: true
  41963. },
  41964. ]
  41965. ))
  41966. characterMakers.push(() => makeCharacter(
  41967. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41968. {
  41969. front: {
  41970. height: math.unit(6 + 3/12, "feet"),
  41971. weight: math.unit(3.5, "tons"),
  41972. name: "Front",
  41973. image: {
  41974. source: "./media/characters/emberflame/front.svg",
  41975. extra: 1198/672,
  41976. bottom: 82/1280
  41977. }
  41978. },
  41979. side: {
  41980. height: math.unit(6 + 3/12, "feet"),
  41981. weight: math.unit(3.5, "tons"),
  41982. name: "Side",
  41983. image: {
  41984. source: "./media/characters/emberflame/side.svg",
  41985. extra: 938/527,
  41986. bottom: 56/994
  41987. }
  41988. },
  41989. },
  41990. [
  41991. {
  41992. name: "Normal",
  41993. height: math.unit(6 + 3/12, "feet"),
  41994. default: true
  41995. },
  41996. ]
  41997. ))
  41998. characterMakers.push(() => makeCharacter(
  41999. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42000. {
  42001. side: {
  42002. height: math.unit(17.5, "feet"),
  42003. weight: math.unit(35, "tons"),
  42004. name: "Side",
  42005. image: {
  42006. source: "./media/characters/sophie-ambrose/side.svg",
  42007. extra: 1573/1242,
  42008. bottom: 71/1644
  42009. }
  42010. },
  42011. maw: {
  42012. height: math.unit(7.4, "feet"),
  42013. name: "Maw",
  42014. image: {
  42015. source: "./media/characters/sophie-ambrose/maw.svg"
  42016. }
  42017. },
  42018. },
  42019. [
  42020. {
  42021. name: "Normal",
  42022. height: math.unit(17.5, "feet"),
  42023. default: true
  42024. },
  42025. ]
  42026. ))
  42027. characterMakers.push(() => makeCharacter(
  42028. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42029. {
  42030. front: {
  42031. height: math.unit(280, "feet"),
  42032. weight: math.unit(550, "tons"),
  42033. name: "Front",
  42034. image: {
  42035. source: "./media/characters/king-mugi/front.svg",
  42036. extra: 1102/947,
  42037. bottom: 104/1206
  42038. }
  42039. },
  42040. },
  42041. [
  42042. {
  42043. name: "King Mugi",
  42044. height: math.unit(280, "feet"),
  42045. default: true
  42046. },
  42047. ]
  42048. ))
  42049. characterMakers.push(() => makeCharacter(
  42050. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42051. {
  42052. front: {
  42053. height: math.unit(64, "meters"),
  42054. name: "Front",
  42055. image: {
  42056. source: "./media/characters/nova-fox/front.svg",
  42057. extra: 1310/1246,
  42058. bottom: 65/1375
  42059. }
  42060. },
  42061. },
  42062. [
  42063. {
  42064. name: "Macro",
  42065. height: math.unit(64, "meters"),
  42066. default: true
  42067. },
  42068. ]
  42069. ))
  42070. characterMakers.push(() => makeCharacter(
  42071. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42072. {
  42073. front: {
  42074. height: math.unit(6 + 3/12, "feet"),
  42075. weight: math.unit(170, "lb"),
  42076. name: "Front",
  42077. image: {
  42078. source: "./media/characters/sam-bat/front.svg",
  42079. extra: 1601/1411,
  42080. bottom: 125/1726
  42081. }
  42082. },
  42083. back: {
  42084. height: math.unit(6 + 3/12, "feet"),
  42085. weight: math.unit(170, "lb"),
  42086. name: "Back",
  42087. image: {
  42088. source: "./media/characters/sam-bat/back.svg",
  42089. extra: 1577/1405,
  42090. bottom: 58/1635
  42091. }
  42092. },
  42093. },
  42094. [
  42095. {
  42096. name: "Normal",
  42097. height: math.unit(6 + 3/12, "feet"),
  42098. default: true
  42099. },
  42100. ]
  42101. ))
  42102. characterMakers.push(() => makeCharacter(
  42103. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42104. {
  42105. front: {
  42106. height: math.unit(59, "feet"),
  42107. weight: math.unit(40000, "lb"),
  42108. name: "Front",
  42109. image: {
  42110. source: "./media/characters/inari/front.svg",
  42111. extra: 1884/1350,
  42112. bottom: 95/1979
  42113. }
  42114. },
  42115. },
  42116. [
  42117. {
  42118. name: "Gigantamax",
  42119. height: math.unit(59, "feet"),
  42120. default: true
  42121. },
  42122. ]
  42123. ))
  42124. characterMakers.push(() => makeCharacter(
  42125. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42126. {
  42127. front: {
  42128. height: math.unit(5 + 8/12, "feet"),
  42129. name: "Front",
  42130. image: {
  42131. source: "./media/characters/elizabeth/front.svg",
  42132. extra: 1395/1298,
  42133. bottom: 54/1449
  42134. }
  42135. },
  42136. mouth: {
  42137. height: math.unit(1.97, "feet"),
  42138. name: "Mouth",
  42139. image: {
  42140. source: "./media/characters/elizabeth/mouth.svg"
  42141. }
  42142. },
  42143. foot: {
  42144. height: math.unit(1.17, "feet"),
  42145. name: "Foot",
  42146. image: {
  42147. source: "./media/characters/elizabeth/foot.svg"
  42148. }
  42149. },
  42150. },
  42151. [
  42152. {
  42153. name: "Normal",
  42154. height: math.unit(5 + 8/12, "feet"),
  42155. default: true
  42156. },
  42157. {
  42158. name: "Minimacro",
  42159. height: math.unit(18, "feet")
  42160. },
  42161. {
  42162. name: "Macro",
  42163. height: math.unit(180, "feet")
  42164. },
  42165. ]
  42166. ))
  42167. characterMakers.push(() => makeCharacter(
  42168. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42169. {
  42170. front: {
  42171. height: math.unit(5 + 2/12, "feet"),
  42172. name: "Front",
  42173. image: {
  42174. source: "./media/characters/october-gossamer/front.svg",
  42175. extra: 505/454,
  42176. bottom: 7/512
  42177. }
  42178. },
  42179. back: {
  42180. height: math.unit(5 + 2/12, "feet"),
  42181. name: "Back",
  42182. image: {
  42183. source: "./media/characters/october-gossamer/back.svg",
  42184. extra: 501/454,
  42185. bottom: 11/512
  42186. }
  42187. },
  42188. },
  42189. [
  42190. {
  42191. name: "Normal",
  42192. height: math.unit(5 + 2/12, "feet"),
  42193. default: true
  42194. },
  42195. ]
  42196. ))
  42197. characterMakers.push(() => makeCharacter(
  42198. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42199. {
  42200. front: {
  42201. height: math.unit(5, "feet"),
  42202. name: "Front",
  42203. image: {
  42204. source: "./media/characters/epiglottis/front.svg",
  42205. extra: 923/849,
  42206. bottom: 17/940
  42207. }
  42208. },
  42209. },
  42210. [
  42211. {
  42212. name: "Original Size",
  42213. height: math.unit(10, "inches")
  42214. },
  42215. {
  42216. name: "Human Size",
  42217. height: math.unit(5, "feet"),
  42218. default: true
  42219. },
  42220. {
  42221. name: "Big",
  42222. height: math.unit(25, "feet")
  42223. },
  42224. {
  42225. name: "Bigger",
  42226. height: math.unit(50, "feet")
  42227. },
  42228. {
  42229. name: "oh lawd",
  42230. height: math.unit(75, "feet")
  42231. },
  42232. ]
  42233. ))
  42234. characterMakers.push(() => makeCharacter(
  42235. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42236. {
  42237. front: {
  42238. height: math.unit(2 + 4/12, "feet"),
  42239. weight: math.unit(60, "lb"),
  42240. name: "Front",
  42241. image: {
  42242. source: "./media/characters/lerm/front.svg",
  42243. extra: 796/790,
  42244. bottom: 79/875
  42245. }
  42246. },
  42247. },
  42248. [
  42249. {
  42250. name: "Normal",
  42251. height: math.unit(2 + 4/12, "feet"),
  42252. default: true
  42253. },
  42254. ]
  42255. ))
  42256. characterMakers.push(() => makeCharacter(
  42257. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42258. {
  42259. front: {
  42260. height: math.unit(5.5, "feet"),
  42261. weight: math.unit(130, "lb"),
  42262. name: "Front",
  42263. image: {
  42264. source: "./media/characters/xena-nebadon/front.svg",
  42265. extra: 1828/1730,
  42266. bottom: 79/1907
  42267. }
  42268. },
  42269. },
  42270. [
  42271. {
  42272. name: "Tiny Puppy",
  42273. height: math.unit(3, "inches")
  42274. },
  42275. {
  42276. name: "Normal",
  42277. height: math.unit(5.5, "feet"),
  42278. default: true
  42279. },
  42280. {
  42281. name: "Lotta Lady",
  42282. height: math.unit(12, "feet")
  42283. },
  42284. {
  42285. name: "Pretty Big",
  42286. height: math.unit(100, "feet")
  42287. },
  42288. {
  42289. name: "Big",
  42290. height: math.unit(500, "feet")
  42291. },
  42292. {
  42293. name: "Skyscraper Toys",
  42294. height: math.unit(2500, "feet")
  42295. },
  42296. {
  42297. name: "Plane Catcher",
  42298. height: math.unit(8, "miles")
  42299. },
  42300. {
  42301. name: "Planet Toys",
  42302. height: math.unit(15, "earths")
  42303. },
  42304. {
  42305. name: "Stardust",
  42306. height: math.unit(0.25, "galaxies")
  42307. },
  42308. {
  42309. name: "Snacks",
  42310. height: math.unit(70, "universes")
  42311. },
  42312. ]
  42313. ))
  42314. characterMakers.push(() => makeCharacter(
  42315. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42316. {
  42317. front: {
  42318. height: math.unit(1.6, "meters"),
  42319. weight: math.unit(60, "kg"),
  42320. name: "Front",
  42321. image: {
  42322. source: "./media/characters/bounty/front.svg",
  42323. extra: 1426/1308,
  42324. bottom: 15/1441
  42325. }
  42326. },
  42327. back: {
  42328. height: math.unit(1.6, "meters"),
  42329. weight: math.unit(60, "kg"),
  42330. name: "Back",
  42331. image: {
  42332. source: "./media/characters/bounty/back.svg",
  42333. extra: 1417/1307,
  42334. bottom: 8/1425
  42335. }
  42336. },
  42337. },
  42338. [
  42339. {
  42340. name: "Normal",
  42341. height: math.unit(1.6, "meters"),
  42342. default: true
  42343. },
  42344. {
  42345. name: "Macro",
  42346. height: math.unit(300, "meters")
  42347. },
  42348. ]
  42349. ))
  42350. characterMakers.push(() => makeCharacter(
  42351. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42352. {
  42353. front: {
  42354. height: math.unit(2 + 8/12, "feet"),
  42355. weight: math.unit(15, "lb"),
  42356. name: "Front",
  42357. image: {
  42358. source: "./media/characters/mochi/front.svg",
  42359. extra: 1022/852,
  42360. bottom: 435/1457
  42361. }
  42362. },
  42363. back: {
  42364. height: math.unit(2 + 8/12, "feet"),
  42365. weight: math.unit(15, "lb"),
  42366. name: "Back",
  42367. image: {
  42368. source: "./media/characters/mochi/back.svg",
  42369. extra: 1335/1119,
  42370. bottom: 39/1374
  42371. }
  42372. },
  42373. bird: {
  42374. height: math.unit(2 + 8/12, "feet"),
  42375. weight: math.unit(15, "lb"),
  42376. name: "Bird",
  42377. image: {
  42378. source: "./media/characters/mochi/bird.svg",
  42379. extra: 1251/1113,
  42380. bottom: 178/1429
  42381. }
  42382. },
  42383. kaiju: {
  42384. height: math.unit(154, "feet"),
  42385. weight: math.unit(1e7, "lb"),
  42386. name: "Kaiju",
  42387. image: {
  42388. source: "./media/characters/mochi/kaiju.svg",
  42389. extra: 460/324,
  42390. bottom: 40/500
  42391. }
  42392. },
  42393. head: {
  42394. height: math.unit(1.21, "feet"),
  42395. name: "Head",
  42396. image: {
  42397. source: "./media/characters/mochi/head.svg"
  42398. }
  42399. },
  42400. alternateTail: {
  42401. height: math.unit(2 + 8/12, "feet"),
  42402. weight: math.unit(45, "lb"),
  42403. name: "Alternate Tail",
  42404. image: {
  42405. source: "./media/characters/mochi/alternate-tail.svg",
  42406. extra: 139/76,
  42407. bottom: 45/184
  42408. }
  42409. },
  42410. },
  42411. [
  42412. {
  42413. name: "Micro",
  42414. height: math.unit(2, "inches")
  42415. },
  42416. {
  42417. name: "Normal",
  42418. height: math.unit(2 + 8/12, "feet"),
  42419. default: true
  42420. },
  42421. {
  42422. name: "Macro",
  42423. height: math.unit(106, "feet")
  42424. },
  42425. ]
  42426. ))
  42427. characterMakers.push(() => makeCharacter(
  42428. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42429. {
  42430. front: {
  42431. height: math.unit(5.67, "feet"),
  42432. weight: math.unit(135, "lb"),
  42433. name: "Front",
  42434. image: {
  42435. source: "./media/characters/sarel/front.svg",
  42436. extra: 865/788,
  42437. bottom: 97/962
  42438. }
  42439. },
  42440. back: {
  42441. height: math.unit(5.67, "feet"),
  42442. weight: math.unit(135, "lb"),
  42443. name: "Back",
  42444. image: {
  42445. source: "./media/characters/sarel/back.svg",
  42446. extra: 857/777,
  42447. bottom: 32/889
  42448. }
  42449. },
  42450. chozoan: {
  42451. height: math.unit(5.67, "feet"),
  42452. weight: math.unit(135, "lb"),
  42453. name: "Chozoan",
  42454. image: {
  42455. source: "./media/characters/sarel/chozoan.svg",
  42456. extra: 865/788,
  42457. bottom: 97/962
  42458. }
  42459. },
  42460. current: {
  42461. height: math.unit(5.67, "feet"),
  42462. weight: math.unit(135, "lb"),
  42463. name: "Current",
  42464. image: {
  42465. source: "./media/characters/sarel/current.svg",
  42466. extra: 865/788,
  42467. bottom: 97/962
  42468. }
  42469. },
  42470. head: {
  42471. height: math.unit(1.77, "feet"),
  42472. name: "Head",
  42473. image: {
  42474. source: "./media/characters/sarel/head.svg"
  42475. }
  42476. },
  42477. claws: {
  42478. height: math.unit(1.8, "feet"),
  42479. name: "Claws",
  42480. image: {
  42481. source: "./media/characters/sarel/claws.svg"
  42482. }
  42483. },
  42484. clawsAlt: {
  42485. height: math.unit(1.8, "feet"),
  42486. name: "Claws-alt",
  42487. image: {
  42488. source: "./media/characters/sarel/claws-alt.svg"
  42489. }
  42490. },
  42491. },
  42492. [
  42493. {
  42494. name: "Normal",
  42495. height: math.unit(5.67, "feet"),
  42496. default: true
  42497. },
  42498. ]
  42499. ))
  42500. characterMakers.push(() => makeCharacter(
  42501. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42502. {
  42503. front: {
  42504. height: math.unit(5500, "feet"),
  42505. name: "Front",
  42506. image: {
  42507. source: "./media/characters/alyonia/front.svg",
  42508. extra: 1200/1135,
  42509. bottom: 29/1229
  42510. }
  42511. },
  42512. back: {
  42513. height: math.unit(5500, "feet"),
  42514. name: "Back",
  42515. image: {
  42516. source: "./media/characters/alyonia/back.svg",
  42517. extra: 1205/1138,
  42518. bottom: 10/1215
  42519. }
  42520. },
  42521. },
  42522. [
  42523. {
  42524. name: "Small",
  42525. height: math.unit(10, "feet")
  42526. },
  42527. {
  42528. name: "Macro",
  42529. height: math.unit(500, "feet")
  42530. },
  42531. {
  42532. name: "Mega Macro",
  42533. height: math.unit(5500, "feet"),
  42534. default: true
  42535. },
  42536. {
  42537. name: "Mega Macro+",
  42538. height: math.unit(500000, "feet")
  42539. },
  42540. {
  42541. name: "Giga Macro",
  42542. height: math.unit(3000, "miles")
  42543. },
  42544. {
  42545. name: "Tera Macro",
  42546. height: math.unit(2.8e6, "miles")
  42547. },
  42548. {
  42549. name: "Galactic",
  42550. height: math.unit(120000, "lightyears")
  42551. },
  42552. ]
  42553. ))
  42554. characterMakers.push(() => makeCharacter(
  42555. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42556. {
  42557. werewolf: {
  42558. height: math.unit(8, "feet"),
  42559. weight: math.unit(425, "lb"),
  42560. name: "Werewolf",
  42561. image: {
  42562. source: "./media/characters/autumn/werewolf.svg",
  42563. extra: 2154/2031,
  42564. bottom: 160/2314
  42565. }
  42566. },
  42567. human: {
  42568. height: math.unit(5 + 8/12, "feet"),
  42569. weight: math.unit(150, "lb"),
  42570. name: "Human",
  42571. image: {
  42572. source: "./media/characters/autumn/human.svg",
  42573. extra: 1200/1149,
  42574. bottom: 30/1230
  42575. }
  42576. },
  42577. },
  42578. [
  42579. {
  42580. name: "Normal",
  42581. height: math.unit(8, "feet"),
  42582. default: true
  42583. },
  42584. ]
  42585. ))
  42586. characterMakers.push(() => makeCharacter(
  42587. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42588. {
  42589. front: {
  42590. height: math.unit(8 + 5/12, "feet"),
  42591. weight: math.unit(825, "lb"),
  42592. name: "Front",
  42593. image: {
  42594. source: "./media/characters/cobalt-charizard/front.svg",
  42595. extra: 1268/1155,
  42596. bottom: 122/1390
  42597. }
  42598. },
  42599. side: {
  42600. height: math.unit(8 + 5/12, "feet"),
  42601. weight: math.unit(825, "lb"),
  42602. name: "Side",
  42603. image: {
  42604. source: "./media/characters/cobalt-charizard/side.svg",
  42605. extra: 1348/1257,
  42606. bottom: 58/1406
  42607. }
  42608. },
  42609. gMax: {
  42610. height: math.unit(134 + 11/12, "feet"),
  42611. name: "G-Max",
  42612. image: {
  42613. source: "./media/characters/cobalt-charizard/g-max.svg",
  42614. extra: 1835/1541,
  42615. bottom: 151/1986
  42616. }
  42617. },
  42618. },
  42619. [
  42620. {
  42621. name: "Normal",
  42622. height: math.unit(8 + 5/12, "feet"),
  42623. default: true
  42624. },
  42625. ]
  42626. ))
  42627. characterMakers.push(() => makeCharacter(
  42628. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42629. {
  42630. front: {
  42631. height: math.unit(6 + 3/12, "feet"),
  42632. weight: math.unit(210, "lb"),
  42633. name: "Front",
  42634. image: {
  42635. source: "./media/characters/stella/front.svg",
  42636. extra: 3549/3335,
  42637. bottom: 51/3600
  42638. }
  42639. },
  42640. },
  42641. [
  42642. {
  42643. name: "Normal",
  42644. height: math.unit(6 + 3/12, "feet"),
  42645. default: true
  42646. },
  42647. ]
  42648. ))
  42649. characterMakers.push(() => makeCharacter(
  42650. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42651. {
  42652. front: {
  42653. height: math.unit(5, "feet"),
  42654. weight: math.unit(90, "lb"),
  42655. name: "Front",
  42656. image: {
  42657. source: "./media/characters/riley-bishop/front.svg",
  42658. extra: 1450/1428,
  42659. bottom: 152/1602
  42660. }
  42661. },
  42662. },
  42663. [
  42664. {
  42665. name: "Normal",
  42666. height: math.unit(5, "feet"),
  42667. default: true
  42668. },
  42669. ]
  42670. ))
  42671. characterMakers.push(() => makeCharacter(
  42672. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42673. {
  42674. side: {
  42675. height: math.unit(8 + 2/12, "feet"),
  42676. weight: math.unit(500, "kg"),
  42677. name: "Side",
  42678. image: {
  42679. source: "./media/characters/theo-arcanine/side.svg",
  42680. extra: 1342/1074,
  42681. bottom: 111/1453
  42682. }
  42683. },
  42684. },
  42685. [
  42686. {
  42687. name: "Normal",
  42688. height: math.unit(8 + 2/12, "feet"),
  42689. default: true
  42690. },
  42691. ]
  42692. ))
  42693. characterMakers.push(() => makeCharacter(
  42694. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42695. {
  42696. front: {
  42697. height: math.unit(4, "feet"),
  42698. name: "Front",
  42699. image: {
  42700. source: "./media/characters/kali/front.svg",
  42701. extra: 1921/1357,
  42702. bottom: 70/1991
  42703. }
  42704. },
  42705. },
  42706. [
  42707. {
  42708. name: "Normal",
  42709. height: math.unit(4, "feet"),
  42710. default: true
  42711. },
  42712. {
  42713. name: "Macro",
  42714. height: math.unit(32, "meters")
  42715. },
  42716. {
  42717. name: "Macro+",
  42718. height: math.unit(150, "meters")
  42719. },
  42720. {
  42721. name: "Megamacro",
  42722. height: math.unit(7500, "meters")
  42723. },
  42724. {
  42725. name: "Megamacro+",
  42726. height: math.unit(80, "kilometers")
  42727. },
  42728. ]
  42729. ))
  42730. characterMakers.push(() => makeCharacter(
  42731. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42732. {
  42733. side: {
  42734. height: math.unit(5 + 11/12, "feet"),
  42735. weight: math.unit(236, "lb"),
  42736. name: "Side",
  42737. image: {
  42738. source: "./media/characters/gapp/side.svg",
  42739. extra: 775/340,
  42740. bottom: 58/833
  42741. }
  42742. },
  42743. mouth: {
  42744. height: math.unit(2.98, "feet"),
  42745. name: "Mouth",
  42746. image: {
  42747. source: "./media/characters/gapp/mouth.svg"
  42748. }
  42749. },
  42750. },
  42751. [
  42752. {
  42753. name: "Normal",
  42754. height: math.unit(5 + 1/12, "feet"),
  42755. default: true
  42756. },
  42757. ]
  42758. ))
  42759. characterMakers.push(() => makeCharacter(
  42760. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42761. {
  42762. front: {
  42763. height: math.unit(6, "feet"),
  42764. name: "Front",
  42765. image: {
  42766. source: "./media/characters/persephone/front.svg",
  42767. extra: 1895/1717,
  42768. bottom: 96/1991
  42769. }
  42770. },
  42771. back: {
  42772. height: math.unit(6, "feet"),
  42773. name: "Back",
  42774. image: {
  42775. source: "./media/characters/persephone/back.svg",
  42776. extra: 1868/1679,
  42777. bottom: 26/1894
  42778. }
  42779. },
  42780. casual: {
  42781. height: math.unit(6, "feet"),
  42782. name: "Casual",
  42783. image: {
  42784. source: "./media/characters/persephone/casual.svg",
  42785. extra: 1713/1541,
  42786. bottom: 76/1789
  42787. }
  42788. },
  42789. },
  42790. [
  42791. {
  42792. name: "Human Size",
  42793. height: math.unit(6, "feet")
  42794. },
  42795. {
  42796. name: "Big Steppy",
  42797. height: math.unit(600, "meters"),
  42798. default: true
  42799. },
  42800. {
  42801. name: "Galaxy Brain",
  42802. height: math.unit(1, "zettameter")
  42803. },
  42804. ]
  42805. ))
  42806. characterMakers.push(() => makeCharacter(
  42807. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42808. {
  42809. front: {
  42810. height: math.unit(1.85, "meters"),
  42811. name: "Front",
  42812. image: {
  42813. source: "./media/characters/riley-foxthing/front.svg",
  42814. extra: 1495/1354,
  42815. bottom: 122/1617
  42816. }
  42817. },
  42818. frontAlt: {
  42819. height: math.unit(1.85, "meters"),
  42820. name: "Front (Alt)",
  42821. image: {
  42822. source: "./media/characters/riley-foxthing/front-alt.svg",
  42823. extra: 1572/1389,
  42824. bottom: 116/1688
  42825. }
  42826. },
  42827. },
  42828. [
  42829. {
  42830. name: "Normal Sized",
  42831. height: math.unit(1.85, "meters"),
  42832. default: true
  42833. },
  42834. {
  42835. name: "Quite Sizable",
  42836. height: math.unit(5, "meters")
  42837. },
  42838. {
  42839. name: "Rather Large",
  42840. height: math.unit(20, "meters")
  42841. },
  42842. {
  42843. name: "Macro",
  42844. height: math.unit(450, "meters")
  42845. },
  42846. {
  42847. name: "Giga",
  42848. height: math.unit(5, "km")
  42849. },
  42850. ]
  42851. ))
  42852. characterMakers.push(() => makeCharacter(
  42853. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42854. {
  42855. front: {
  42856. height: math.unit(6, "feet"),
  42857. weight: math.unit(200, "lb"),
  42858. name: "Front",
  42859. image: {
  42860. source: "./media/characters/blizzard/front.svg",
  42861. extra: 1136/990,
  42862. bottom: 136/1272
  42863. }
  42864. },
  42865. back: {
  42866. height: math.unit(6, "feet"),
  42867. weight: math.unit(200, "lb"),
  42868. name: "Back",
  42869. image: {
  42870. source: "./media/characters/blizzard/back.svg",
  42871. extra: 1175/1034,
  42872. bottom: 97/1272
  42873. }
  42874. },
  42875. sitting: {
  42876. height: math.unit(3.725, "feet"),
  42877. weight: math.unit(200, "lb"),
  42878. name: "Sitting",
  42879. image: {
  42880. source: "./media/characters/blizzard/sitting.svg",
  42881. extra: 581/485,
  42882. bottom: 90/671
  42883. }
  42884. },
  42885. frontWizard: {
  42886. height: math.unit(7.9, "feet"),
  42887. weight: math.unit(200, "lb"),
  42888. name: "Front (Wizard)",
  42889. image: {
  42890. source: "./media/characters/blizzard/front-wizard.svg"
  42891. }
  42892. },
  42893. backWizard: {
  42894. height: math.unit(7.9, "feet"),
  42895. weight: math.unit(200, "lb"),
  42896. name: "Back (Wizard)",
  42897. image: {
  42898. source: "./media/characters/blizzard/back-wizard.svg"
  42899. }
  42900. },
  42901. frontNsfw: {
  42902. height: math.unit(6, "feet"),
  42903. weight: math.unit(200, "lb"),
  42904. name: "Front (NSFW)",
  42905. image: {
  42906. source: "./media/characters/blizzard/front-nsfw.svg",
  42907. extra: 1136/990,
  42908. bottom: 136/1272
  42909. }
  42910. },
  42911. backNsfw: {
  42912. height: math.unit(6, "feet"),
  42913. weight: math.unit(200, "lb"),
  42914. name: "Back (NSFW)",
  42915. image: {
  42916. source: "./media/characters/blizzard/back-nsfw.svg",
  42917. extra: 1175/1034,
  42918. bottom: 97/1272
  42919. }
  42920. },
  42921. sittingNsfw: {
  42922. height: math.unit(3.725, "feet"),
  42923. weight: math.unit(200, "lb"),
  42924. name: "Sitting (NSFW)",
  42925. image: {
  42926. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42927. extra: 581/485,
  42928. bottom: 90/671
  42929. }
  42930. },
  42931. wizardFrontNsfw: {
  42932. height: math.unit(7.9, "feet"),
  42933. weight: math.unit(200, "lb"),
  42934. name: "Wizard (Front, NSFW)",
  42935. image: {
  42936. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42937. }
  42938. },
  42939. },
  42940. [
  42941. {
  42942. name: "Normal",
  42943. height: math.unit(6, "feet"),
  42944. default: true
  42945. },
  42946. ]
  42947. ))
  42948. characterMakers.push(() => makeCharacter(
  42949. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42950. {
  42951. front: {
  42952. height: math.unit(5 + 2/12, "feet"),
  42953. name: "Front",
  42954. image: {
  42955. source: "./media/characters/lumi/front.svg",
  42956. extra: 1328/1268,
  42957. bottom: 103/1431
  42958. }
  42959. },
  42960. back: {
  42961. height: math.unit(5 + 2/12, "feet"),
  42962. name: "Back",
  42963. image: {
  42964. source: "./media/characters/lumi/back.svg",
  42965. extra: 1381/1327,
  42966. bottom: 43/1424
  42967. }
  42968. },
  42969. },
  42970. [
  42971. {
  42972. name: "Normal",
  42973. height: math.unit(5 + 2/12, "feet"),
  42974. default: true
  42975. },
  42976. ]
  42977. ))
  42978. characterMakers.push(() => makeCharacter(
  42979. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42980. {
  42981. front: {
  42982. height: math.unit(5 + 9/12, "feet"),
  42983. name: "Front",
  42984. image: {
  42985. source: "./media/characters/aliya-cotton/front.svg",
  42986. extra: 577/564,
  42987. bottom: 29/606
  42988. }
  42989. },
  42990. },
  42991. [
  42992. {
  42993. name: "Normal",
  42994. height: math.unit(5 + 9/12, "feet"),
  42995. default: true
  42996. },
  42997. ]
  42998. ))
  42999. characterMakers.push(() => makeCharacter(
  43000. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43001. {
  43002. front: {
  43003. height: math.unit(2.7, "meters"),
  43004. weight: math.unit(25000, "lb"),
  43005. name: "Front",
  43006. image: {
  43007. source: "./media/characters/noah-luxray/front.svg",
  43008. extra: 1644/825,
  43009. bottom: 339/1983
  43010. }
  43011. },
  43012. side: {
  43013. height: math.unit(2.97, "meters"),
  43014. weight: math.unit(25000, "lb"),
  43015. name: "Side",
  43016. image: {
  43017. source: "./media/characters/noah-luxray/side.svg",
  43018. extra: 1319/650,
  43019. bottom: 163/1482
  43020. }
  43021. },
  43022. dick: {
  43023. height: math.unit(7.4, "feet"),
  43024. weight: math.unit(2500, "lb"),
  43025. name: "Dick",
  43026. image: {
  43027. source: "./media/characters/noah-luxray/dick.svg"
  43028. }
  43029. },
  43030. dickAlt: {
  43031. height: math.unit(10.83, "feet"),
  43032. weight: math.unit(2500, "lb"),
  43033. name: "Dick-alt",
  43034. image: {
  43035. source: "./media/characters/noah-luxray/dick-alt.svg"
  43036. }
  43037. },
  43038. },
  43039. [
  43040. {
  43041. name: "BIG",
  43042. height: math.unit(2.7, "meters"),
  43043. default: true
  43044. },
  43045. ]
  43046. ))
  43047. characterMakers.push(() => makeCharacter(
  43048. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43049. {
  43050. standing: {
  43051. height: math.unit(183, "cm"),
  43052. weight: math.unit(68, "kg"),
  43053. name: "Standing",
  43054. image: {
  43055. source: "./media/characters/arion/standing.svg",
  43056. extra: 1869/1807,
  43057. bottom: 93/1962
  43058. }
  43059. },
  43060. reclining: {
  43061. height: math.unit(70.5, "cm"),
  43062. weight: math.unit(68, "lb"),
  43063. name: "Reclining",
  43064. image: {
  43065. source: "./media/characters/arion/reclining.svg",
  43066. extra: 937/870,
  43067. bottom: 63/1000
  43068. }
  43069. },
  43070. },
  43071. [
  43072. {
  43073. name: "Colossus Size, Low",
  43074. height: math.unit(33, "meters"),
  43075. default: true
  43076. },
  43077. {
  43078. name: "Colossus Size, Mid",
  43079. height: math.unit(52, "meters")
  43080. },
  43081. {
  43082. name: "Colossus Size, High",
  43083. height: math.unit(60, "meters")
  43084. },
  43085. {
  43086. name: "Titan Size, Low",
  43087. height: math.unit(91, "meters"),
  43088. },
  43089. {
  43090. name: "Titan Size, Mid",
  43091. height: math.unit(122, "meters")
  43092. },
  43093. {
  43094. name: "Titan Size, High",
  43095. height: math.unit(162, "meters")
  43096. },
  43097. ]
  43098. ))
  43099. characterMakers.push(() => makeCharacter(
  43100. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43101. {
  43102. front: {
  43103. height: math.unit(53, "meters"),
  43104. name: "Front",
  43105. image: {
  43106. source: "./media/characters/stellar-marbey/front.svg",
  43107. extra: 1913/1805,
  43108. bottom: 92/2005
  43109. }
  43110. },
  43111. back: {
  43112. height: math.unit(53, "meters"),
  43113. name: "Back",
  43114. image: {
  43115. source: "./media/characters/stellar-marbey/back.svg",
  43116. extra: 1960/1851,
  43117. bottom: 28/1988
  43118. }
  43119. },
  43120. mouth: {
  43121. height: math.unit(3.5, "meters"),
  43122. name: "Mouth",
  43123. image: {
  43124. source: "./media/characters/stellar-marbey/mouth.svg"
  43125. }
  43126. },
  43127. },
  43128. [
  43129. {
  43130. name: "Macro",
  43131. height: math.unit(53, "meters"),
  43132. default: true
  43133. },
  43134. ]
  43135. ))
  43136. characterMakers.push(() => makeCharacter(
  43137. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43138. {
  43139. front: {
  43140. height: math.unit(8 + 1/12, "feet"),
  43141. weight: math.unit(233, "lb"),
  43142. name: "Front",
  43143. image: {
  43144. source: "./media/characters/matsu/front.svg",
  43145. extra: 832/772,
  43146. bottom: 40/872
  43147. }
  43148. },
  43149. back: {
  43150. height: math.unit(8 + 1/12, "feet"),
  43151. weight: math.unit(233, "lb"),
  43152. name: "Back",
  43153. image: {
  43154. source: "./media/characters/matsu/back.svg",
  43155. extra: 839/780,
  43156. bottom: 47/886
  43157. }
  43158. },
  43159. },
  43160. [
  43161. {
  43162. name: "Normal",
  43163. height: math.unit(8 + 1/12, "feet"),
  43164. default: true
  43165. },
  43166. ]
  43167. ))
  43168. characterMakers.push(() => makeCharacter(
  43169. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43170. {
  43171. front: {
  43172. height: math.unit(4, "feet"),
  43173. weight: math.unit(148, "lb"),
  43174. name: "Front",
  43175. image: {
  43176. source: "./media/characters/thiz/front.svg",
  43177. extra: 1913/1748,
  43178. bottom: 62/1975
  43179. }
  43180. },
  43181. },
  43182. [
  43183. {
  43184. name: "Normal",
  43185. height: math.unit(4, "feet"),
  43186. default: true
  43187. },
  43188. ]
  43189. ))
  43190. characterMakers.push(() => makeCharacter(
  43191. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43192. {
  43193. front: {
  43194. height: math.unit(7 + 6/12, "feet"),
  43195. weight: math.unit(267, "lb"),
  43196. name: "Front",
  43197. image: {
  43198. source: "./media/characters/marcel/front.svg",
  43199. extra: 1221/1096,
  43200. bottom: 76/1297
  43201. }
  43202. },
  43203. },
  43204. [
  43205. {
  43206. name: "Normal",
  43207. height: math.unit(7 + 6/12, "feet"),
  43208. default: true
  43209. },
  43210. ]
  43211. ))
  43212. characterMakers.push(() => makeCharacter(
  43213. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43214. {
  43215. side: {
  43216. height: math.unit(42, "meters"),
  43217. name: "Side",
  43218. image: {
  43219. source: "./media/characters/flake/side.svg",
  43220. extra: 1525/1306,
  43221. bottom: 209/1734
  43222. }
  43223. },
  43224. },
  43225. [
  43226. {
  43227. name: "Normal",
  43228. height: math.unit(42, "meters"),
  43229. default: true
  43230. },
  43231. ]
  43232. ))
  43233. characterMakers.push(() => makeCharacter(
  43234. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43235. {
  43236. dressed: {
  43237. height: math.unit(6 + 4/12, "feet"),
  43238. weight: math.unit(520, "lb"),
  43239. name: "Dressed",
  43240. image: {
  43241. source: "./media/characters/someonne/dressed.svg",
  43242. extra: 1020/1010,
  43243. bottom: 178/1198
  43244. }
  43245. },
  43246. undressed: {
  43247. height: math.unit(6 + 4/12, "feet"),
  43248. weight: math.unit(520, "lb"),
  43249. name: "Undressed",
  43250. image: {
  43251. source: "./media/characters/someonne/undressed.svg",
  43252. extra: 1019/1014,
  43253. bottom: 169/1188
  43254. }
  43255. },
  43256. },
  43257. [
  43258. {
  43259. name: "Normal",
  43260. height: math.unit(6 + 4/12, "feet"),
  43261. default: true
  43262. },
  43263. ]
  43264. ))
  43265. characterMakers.push(() => makeCharacter(
  43266. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43267. {
  43268. front: {
  43269. height: math.unit(3, "feet"),
  43270. weight: math.unit(30, "lb"),
  43271. name: "Front",
  43272. image: {
  43273. source: "./media/characters/till/front.svg",
  43274. extra: 892/823,
  43275. bottom: 55/947
  43276. }
  43277. },
  43278. },
  43279. [
  43280. {
  43281. name: "Normal",
  43282. height: math.unit(3, "feet"),
  43283. default: true
  43284. },
  43285. ]
  43286. ))
  43287. characterMakers.push(() => makeCharacter(
  43288. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43289. {
  43290. front: {
  43291. height: math.unit(9 + 8/12, "feet"),
  43292. weight: math.unit(800, "lb"),
  43293. name: "Front",
  43294. image: {
  43295. source: "./media/characters/sydney-heki/front.svg",
  43296. extra: 1360/1300,
  43297. bottom: 22/1382
  43298. }
  43299. },
  43300. back: {
  43301. height: math.unit(9 + 8/12, "feet"),
  43302. weight: math.unit(800, "lb"),
  43303. name: "Back",
  43304. image: {
  43305. source: "./media/characters/sydney-heki/back.svg",
  43306. extra: 1356/1293,
  43307. bottom: 12/1368
  43308. }
  43309. },
  43310. frontDressed: {
  43311. height: math.unit(9 + 8/12, "feet"),
  43312. weight: math.unit(800, "lb"),
  43313. name: "Front-dressed",
  43314. image: {
  43315. source: "./media/characters/sydney-heki/front-dressed.svg",
  43316. extra: 1360/1300,
  43317. bottom: 22/1382
  43318. }
  43319. },
  43320. },
  43321. [
  43322. {
  43323. name: "Normal",
  43324. height: math.unit(9 + 8/12, "feet"),
  43325. default: true
  43326. },
  43327. {
  43328. name: "Macro",
  43329. height: math.unit(500, "feet")
  43330. },
  43331. {
  43332. name: "Megamacro",
  43333. height: math.unit(3.6, "miles")
  43334. },
  43335. ]
  43336. ))
  43337. characterMakers.push(() => makeCharacter(
  43338. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43339. {
  43340. front: {
  43341. height: math.unit(200, "cm"),
  43342. weight: math.unit(250, "lb"),
  43343. name: "Front",
  43344. image: {
  43345. source: "./media/characters/fowler-karlsson/front.svg",
  43346. extra: 897/845,
  43347. bottom: 123/1020
  43348. }
  43349. },
  43350. back: {
  43351. height: math.unit(200, "cm"),
  43352. weight: math.unit(250, "lb"),
  43353. name: "Back",
  43354. image: {
  43355. source: "./media/characters/fowler-karlsson/back.svg",
  43356. extra: 999/944,
  43357. bottom: 26/1025
  43358. }
  43359. },
  43360. dick: {
  43361. height: math.unit(1.92, "feet"),
  43362. weight: math.unit(150, "lb"),
  43363. name: "Dick",
  43364. image: {
  43365. source: "./media/characters/fowler-karlsson/dick.svg"
  43366. }
  43367. },
  43368. },
  43369. [
  43370. {
  43371. name: "Normal",
  43372. height: math.unit(200, "cm"),
  43373. default: true
  43374. },
  43375. {
  43376. name: "Smaller Macro",
  43377. height: math.unit(90, "m")
  43378. },
  43379. {
  43380. name: "Macro",
  43381. height: math.unit(150, "m")
  43382. },
  43383. {
  43384. name: "Bigger Macro",
  43385. height: math.unit(300, "m")
  43386. },
  43387. ]
  43388. ))
  43389. characterMakers.push(() => makeCharacter(
  43390. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43391. {
  43392. side: {
  43393. height: math.unit(8 + 2/12, "feet"),
  43394. weight: math.unit(1, "tonne"),
  43395. name: "Side",
  43396. image: {
  43397. source: "./media/characters/rylide/side.svg",
  43398. extra: 1318/1034,
  43399. bottom: 106/1424
  43400. }
  43401. },
  43402. sitting: {
  43403. height: math.unit(303, "cm"),
  43404. weight: math.unit(1, "tonne"),
  43405. name: "Sitting",
  43406. image: {
  43407. source: "./media/characters/rylide/sitting.svg",
  43408. extra: 1303/1103,
  43409. bottom: 36/1339
  43410. }
  43411. },
  43412. },
  43413. [
  43414. {
  43415. name: "Normal",
  43416. height: math.unit(8 + 2/12, "feet"),
  43417. default: true
  43418. },
  43419. ]
  43420. ))
  43421. characterMakers.push(() => makeCharacter(
  43422. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43423. {
  43424. front: {
  43425. height: math.unit(5 + 10/12, "feet"),
  43426. weight: math.unit(160, "lb"),
  43427. name: "Front",
  43428. image: {
  43429. source: "./media/characters/pudask/front.svg",
  43430. extra: 1616/1590,
  43431. bottom: 161/1777
  43432. }
  43433. },
  43434. },
  43435. [
  43436. {
  43437. name: "Ferret Height",
  43438. height: math.unit(2 + 5/12, "feet")
  43439. },
  43440. {
  43441. name: "Canon Height",
  43442. height: math.unit(5 + 10/12, "feet"),
  43443. default: true
  43444. },
  43445. ]
  43446. ))
  43447. characterMakers.push(() => makeCharacter(
  43448. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43449. {
  43450. front: {
  43451. height: math.unit(3 + 6/12, "feet"),
  43452. weight: math.unit(60, "lb"),
  43453. name: "Front",
  43454. image: {
  43455. source: "./media/characters/ramita/front.svg",
  43456. extra: 1402/1232,
  43457. bottom: 62/1464
  43458. }
  43459. },
  43460. dressed: {
  43461. height: math.unit(3 + 6/12, "feet"),
  43462. weight: math.unit(60, "lb"),
  43463. name: "Dressed",
  43464. image: {
  43465. source: "./media/characters/ramita/dressed.svg",
  43466. extra: 1534/1249,
  43467. bottom: 50/1584
  43468. }
  43469. },
  43470. },
  43471. [
  43472. {
  43473. name: "Normal",
  43474. height: math.unit(3 + 6/12, "feet"),
  43475. default: true
  43476. },
  43477. ]
  43478. ))
  43479. characterMakers.push(() => makeCharacter(
  43480. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43481. {
  43482. front: {
  43483. height: math.unit(8, "feet"),
  43484. name: "Front",
  43485. image: {
  43486. source: "./media/characters/ark/front.svg",
  43487. extra: 772/693,
  43488. bottom: 45/817
  43489. }
  43490. },
  43491. },
  43492. [
  43493. {
  43494. name: "Normal",
  43495. height: math.unit(8, "feet"),
  43496. default: true
  43497. },
  43498. ]
  43499. ))
  43500. characterMakers.push(() => makeCharacter(
  43501. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43502. {
  43503. front: {
  43504. height: math.unit(6, "feet"),
  43505. weight: math.unit(250, "lb"),
  43506. volume: math.unit(5/8, "gallons"),
  43507. name: "Front",
  43508. image: {
  43509. source: "./media/characters/ludwig-horn/front.svg",
  43510. extra: 1782/1635,
  43511. bottom: 96/1878
  43512. }
  43513. },
  43514. back: {
  43515. height: math.unit(6, "feet"),
  43516. weight: math.unit(250, "lb"),
  43517. volume: math.unit(5/8, "gallons"),
  43518. name: "Back",
  43519. image: {
  43520. source: "./media/characters/ludwig-horn/back.svg",
  43521. extra: 1874/1729,
  43522. bottom: 27/1901
  43523. }
  43524. },
  43525. dick: {
  43526. height: math.unit(1.05, "feet"),
  43527. weight: math.unit(15, "lb"),
  43528. volume: math.unit(5/8, "gallons"),
  43529. name: "Dick",
  43530. image: {
  43531. source: "./media/characters/ludwig-horn/dick.svg"
  43532. }
  43533. },
  43534. },
  43535. [
  43536. {
  43537. name: "Small",
  43538. height: math.unit(6, "feet")
  43539. },
  43540. {
  43541. name: "Typical",
  43542. height: math.unit(12, "feet"),
  43543. default: true
  43544. },
  43545. {
  43546. name: "Building",
  43547. height: math.unit(80, "feet")
  43548. },
  43549. {
  43550. name: "Town",
  43551. height: math.unit(800, "feet")
  43552. },
  43553. {
  43554. name: "Kingdom",
  43555. height: math.unit(80000, "feet")
  43556. },
  43557. {
  43558. name: "Planet",
  43559. height: math.unit(8000000, "feet")
  43560. },
  43561. {
  43562. name: "Universe",
  43563. height: math.unit(8000000000, "feet")
  43564. },
  43565. {
  43566. name: "Transcended",
  43567. height: math.unit(8e27, "feet")
  43568. },
  43569. ]
  43570. ))
  43571. characterMakers.push(() => makeCharacter(
  43572. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43573. {
  43574. front: {
  43575. height: math.unit(5, "feet"),
  43576. weight: math.unit(50, "kg"),
  43577. name: "Front",
  43578. image: {
  43579. source: "./media/characters/biot-avery/front.svg",
  43580. extra: 1295/1232,
  43581. bottom: 86/1381
  43582. }
  43583. },
  43584. },
  43585. [
  43586. {
  43587. name: "Normal",
  43588. height: math.unit(5, "feet"),
  43589. default: true
  43590. },
  43591. ]
  43592. ))
  43593. characterMakers.push(() => makeCharacter(
  43594. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43595. {
  43596. front: {
  43597. height: math.unit(6, "feet"),
  43598. name: "Front",
  43599. image: {
  43600. source: "./media/characters/kitsune-kiro/front.svg",
  43601. extra: 1270/1158,
  43602. bottom: 42/1312
  43603. }
  43604. },
  43605. frontAlt: {
  43606. height: math.unit(6, "feet"),
  43607. name: "Front-alt",
  43608. image: {
  43609. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43610. extra: 1130/1081,
  43611. bottom: 36/1166
  43612. }
  43613. },
  43614. },
  43615. [
  43616. {
  43617. name: "Smol",
  43618. height: math.unit(3, "feet")
  43619. },
  43620. {
  43621. name: "Normal",
  43622. height: math.unit(6, "feet"),
  43623. default: true
  43624. },
  43625. ]
  43626. ))
  43627. characterMakers.push(() => makeCharacter(
  43628. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43629. {
  43630. front: {
  43631. height: math.unit(6, "feet"),
  43632. weight: math.unit(125, "lb"),
  43633. name: "Front",
  43634. image: {
  43635. source: "./media/characters/jack-thatcher/front.svg",
  43636. extra: 1474/1370,
  43637. bottom: 26/1500
  43638. }
  43639. },
  43640. back: {
  43641. height: math.unit(6, "feet"),
  43642. weight: math.unit(125, "lb"),
  43643. name: "Back",
  43644. image: {
  43645. source: "./media/characters/jack-thatcher/back.svg",
  43646. extra: 1489/1384,
  43647. bottom: 18/1507
  43648. }
  43649. },
  43650. },
  43651. [
  43652. {
  43653. name: "Normal",
  43654. height: math.unit(6, "feet"),
  43655. default: true
  43656. },
  43657. {
  43658. name: "Macro",
  43659. height: math.unit(75, "feet")
  43660. },
  43661. {
  43662. name: "Macro-er",
  43663. height: math.unit(250, "feet")
  43664. },
  43665. ]
  43666. ))
  43667. characterMakers.push(() => makeCharacter(
  43668. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43669. {
  43670. front: {
  43671. height: math.unit(7, "feet"),
  43672. weight: math.unit(110, "kg"),
  43673. name: "Front",
  43674. image: {
  43675. source: "./media/characters/max-hyper/front.svg",
  43676. extra: 1969/1881,
  43677. bottom: 49/2018
  43678. }
  43679. },
  43680. },
  43681. [
  43682. {
  43683. name: "Normal",
  43684. height: math.unit(7, "feet"),
  43685. default: true
  43686. },
  43687. ]
  43688. ))
  43689. characterMakers.push(() => makeCharacter(
  43690. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43691. {
  43692. front: {
  43693. height: math.unit(5 + 5/12, "feet"),
  43694. weight: math.unit(160, "lb"),
  43695. name: "Front",
  43696. image: {
  43697. source: "./media/characters/spook/front.svg",
  43698. extra: 794/791,
  43699. bottom: 54/848
  43700. }
  43701. },
  43702. back: {
  43703. height: math.unit(5 + 5/12, "feet"),
  43704. weight: math.unit(160, "lb"),
  43705. name: "Back",
  43706. image: {
  43707. source: "./media/characters/spook/back.svg",
  43708. extra: 812/798,
  43709. bottom: 32/844
  43710. }
  43711. },
  43712. },
  43713. [
  43714. {
  43715. name: "Normal",
  43716. height: math.unit(5 + 5/12, "feet"),
  43717. default: true
  43718. },
  43719. ]
  43720. ))
  43721. characterMakers.push(() => makeCharacter(
  43722. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43723. {
  43724. front: {
  43725. height: math.unit(18, "feet"),
  43726. name: "Front",
  43727. image: {
  43728. source: "./media/characters/xeaduulix/front.svg",
  43729. extra: 1380/1166,
  43730. bottom: 110/1490
  43731. }
  43732. },
  43733. back: {
  43734. height: math.unit(18, "feet"),
  43735. name: "Back",
  43736. image: {
  43737. source: "./media/characters/xeaduulix/back.svg",
  43738. extra: 1592/1170,
  43739. bottom: 128/1720
  43740. }
  43741. },
  43742. frontNsfw: {
  43743. height: math.unit(18, "feet"),
  43744. name: "Front (NSFW)",
  43745. image: {
  43746. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43747. extra: 1380/1166,
  43748. bottom: 110/1490
  43749. }
  43750. },
  43751. backNsfw: {
  43752. height: math.unit(18, "feet"),
  43753. name: "Back (NSFW)",
  43754. image: {
  43755. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43756. extra: 1592/1170,
  43757. bottom: 128/1720
  43758. }
  43759. },
  43760. },
  43761. [
  43762. {
  43763. name: "Normal",
  43764. height: math.unit(18, "feet"),
  43765. default: true
  43766. },
  43767. ]
  43768. ))
  43769. characterMakers.push(() => makeCharacter(
  43770. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43771. {
  43772. spreadWings: {
  43773. height: math.unit(20, "feet"),
  43774. name: "Spread Wings",
  43775. image: {
  43776. source: "./media/characters/fledge/spread-wings.svg",
  43777. extra: 693/635,
  43778. bottom: 26/719
  43779. }
  43780. },
  43781. front: {
  43782. height: math.unit(20, "feet"),
  43783. name: "Front",
  43784. image: {
  43785. source: "./media/characters/fledge/front.svg",
  43786. extra: 684/637,
  43787. bottom: 18/702
  43788. }
  43789. },
  43790. frontAlt: {
  43791. height: math.unit(20, "feet"),
  43792. name: "Front (Alt)",
  43793. image: {
  43794. source: "./media/characters/fledge/front-alt.svg",
  43795. extra: 708/664,
  43796. bottom: 13/721
  43797. }
  43798. },
  43799. back: {
  43800. height: math.unit(20, "feet"),
  43801. name: "Back",
  43802. image: {
  43803. source: "./media/characters/fledge/back.svg",
  43804. extra: 718/634,
  43805. bottom: 22/740
  43806. }
  43807. },
  43808. head: {
  43809. height: math.unit(5.55, "feet"),
  43810. name: "Head",
  43811. image: {
  43812. source: "./media/characters/fledge/head.svg"
  43813. }
  43814. },
  43815. headAlt: {
  43816. height: math.unit(5.1, "feet"),
  43817. name: "Head (Alt)",
  43818. image: {
  43819. source: "./media/characters/fledge/head-alt.svg"
  43820. }
  43821. },
  43822. },
  43823. [
  43824. {
  43825. name: "Small",
  43826. height: math.unit(6 + 2/12, "feet")
  43827. },
  43828. {
  43829. name: "Big",
  43830. height: math.unit(20, "feet"),
  43831. default: true
  43832. },
  43833. {
  43834. name: "Giant",
  43835. height: math.unit(100, "feet")
  43836. },
  43837. {
  43838. name: "Macro",
  43839. height: math.unit(200, "feet")
  43840. },
  43841. ]
  43842. ))
  43843. characterMakers.push(() => makeCharacter(
  43844. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43845. {
  43846. front: {
  43847. height: math.unit(1, "meter"),
  43848. name: "Front",
  43849. image: {
  43850. source: "./media/characters/atlas-morenai/front.svg",
  43851. extra: 1275/1043,
  43852. bottom: 19/1294
  43853. }
  43854. },
  43855. back: {
  43856. height: math.unit(1, "meter"),
  43857. name: "Back",
  43858. image: {
  43859. source: "./media/characters/atlas-morenai/back.svg",
  43860. extra: 1141/1001,
  43861. bottom: 25/1166
  43862. }
  43863. },
  43864. },
  43865. [
  43866. {
  43867. name: "Normal",
  43868. height: math.unit(1, "meter"),
  43869. default: true
  43870. },
  43871. {
  43872. name: "Magic-Infused",
  43873. height: math.unit(5, "meters")
  43874. },
  43875. ]
  43876. ))
  43877. characterMakers.push(() => makeCharacter(
  43878. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43879. {
  43880. front: {
  43881. height: math.unit(5, "meters"),
  43882. name: "Front",
  43883. image: {
  43884. source: "./media/characters/cintia/front.svg",
  43885. extra: 1312/1228,
  43886. bottom: 38/1350
  43887. }
  43888. },
  43889. back: {
  43890. height: math.unit(5, "meters"),
  43891. name: "Back",
  43892. image: {
  43893. source: "./media/characters/cintia/back.svg",
  43894. extra: 1260/1166,
  43895. bottom: 98/1358
  43896. }
  43897. },
  43898. frontDick: {
  43899. height: math.unit(5, "meters"),
  43900. name: "Front (Dick)",
  43901. image: {
  43902. source: "./media/characters/cintia/front-dick.svg",
  43903. extra: 1312/1228,
  43904. bottom: 38/1350
  43905. }
  43906. },
  43907. backDick: {
  43908. height: math.unit(5, "meters"),
  43909. name: "Back (Dick)",
  43910. image: {
  43911. source: "./media/characters/cintia/back-dick.svg",
  43912. extra: 1260/1166,
  43913. bottom: 98/1358
  43914. }
  43915. },
  43916. bust: {
  43917. height: math.unit(1.97, "meters"),
  43918. name: "Bust",
  43919. image: {
  43920. source: "./media/characters/cintia/bust.svg",
  43921. extra: 617/565,
  43922. bottom: 0/617
  43923. }
  43924. },
  43925. },
  43926. [
  43927. {
  43928. name: "Normal",
  43929. height: math.unit(5, "meters"),
  43930. default: true
  43931. },
  43932. ]
  43933. ))
  43934. characterMakers.push(() => makeCharacter(
  43935. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  43936. {
  43937. side: {
  43938. height: math.unit(100, "feet"),
  43939. name: "Side",
  43940. image: {
  43941. source: "./media/characters/denora/side.svg",
  43942. extra: 875/803,
  43943. bottom: 9/884
  43944. }
  43945. },
  43946. },
  43947. [
  43948. {
  43949. name: "Standard",
  43950. height: math.unit(100, "feet"),
  43951. default: true
  43952. },
  43953. {
  43954. name: "Grand",
  43955. height: math.unit(1000, "feet")
  43956. },
  43957. {
  43958. name: "Conquering",
  43959. height: math.unit(10000, "feet")
  43960. },
  43961. ]
  43962. ))
  43963. characterMakers.push(() => makeCharacter(
  43964. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  43965. {
  43966. dressed: {
  43967. height: math.unit(8 + 5/12, "feet"),
  43968. weight: math.unit(700, "lb"),
  43969. name: "Dressed",
  43970. image: {
  43971. source: "./media/characters/kiva/dressed.svg",
  43972. extra: 1102/1055,
  43973. bottom: 60/1162
  43974. }
  43975. },
  43976. nude: {
  43977. height: math.unit(8 + 5/12, "feet"),
  43978. weight: math.unit(700, "lb"),
  43979. name: "Nude",
  43980. image: {
  43981. source: "./media/characters/kiva/nude.svg",
  43982. extra: 1102/1055,
  43983. bottom: 60/1162
  43984. }
  43985. },
  43986. },
  43987. [
  43988. {
  43989. name: "Base Height",
  43990. height: math.unit(8 + 5/12, "feet"),
  43991. default: true
  43992. },
  43993. {
  43994. name: "Macro",
  43995. height: math.unit(100, "feet")
  43996. },
  43997. {
  43998. name: "Max",
  43999. height: math.unit(3280, "feet")
  44000. },
  44001. ]
  44002. ))
  44003. characterMakers.push(() => makeCharacter(
  44004. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44005. {
  44006. front: {
  44007. height: math.unit(6 + 8/12, "feet"),
  44008. weight: math.unit(250, "lb"),
  44009. name: "Front",
  44010. image: {
  44011. source: "./media/characters/ztragon/front.svg",
  44012. extra: 1825/1684,
  44013. bottom: 98/1923
  44014. }
  44015. },
  44016. },
  44017. [
  44018. {
  44019. name: "Normal",
  44020. height: math.unit(6 + 8/12, "feet"),
  44021. default: true
  44022. },
  44023. {
  44024. name: "Macro",
  44025. height: math.unit(80, "feet")
  44026. },
  44027. ]
  44028. ))
  44029. characterMakers.push(() => makeCharacter(
  44030. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44031. {
  44032. front: {
  44033. height: math.unit(10.4, "feet"),
  44034. weight: math.unit(2, "tons"),
  44035. name: "Front",
  44036. image: {
  44037. source: "./media/characters/yesenia/front.svg",
  44038. extra: 1479/1474,
  44039. bottom: 233/1712
  44040. }
  44041. },
  44042. },
  44043. [
  44044. {
  44045. name: "Normal",
  44046. height: math.unit(10.4, "feet"),
  44047. default: true
  44048. },
  44049. ]
  44050. ))
  44051. characterMakers.push(() => makeCharacter(
  44052. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44053. {
  44054. normal: {
  44055. height: math.unit(6 + 1/12, "feet"),
  44056. weight: math.unit(180, "lb"),
  44057. name: "Normal",
  44058. image: {
  44059. source: "./media/characters/leanne-lycheborne/normal.svg",
  44060. extra: 1748/1660,
  44061. bottom: 98/1846
  44062. }
  44063. },
  44064. were: {
  44065. height: math.unit(12, "feet"),
  44066. weight: math.unit(1600, "lb"),
  44067. name: "Were",
  44068. image: {
  44069. source: "./media/characters/leanne-lycheborne/were.svg",
  44070. extra: 1485/1432,
  44071. bottom: 66/1551
  44072. }
  44073. },
  44074. },
  44075. [
  44076. {
  44077. name: "Normal",
  44078. height: math.unit(6 + 1/12, "feet"),
  44079. default: true
  44080. },
  44081. ]
  44082. ))
  44083. characterMakers.push(() => makeCharacter(
  44084. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44085. {
  44086. side: {
  44087. height: math.unit(13, "feet"),
  44088. name: "Side",
  44089. image: {
  44090. source: "./media/characters/kira-tyler/side.svg",
  44091. extra: 693/393,
  44092. bottom: 58/751
  44093. }
  44094. },
  44095. },
  44096. [
  44097. {
  44098. name: "Normal",
  44099. height: math.unit(13, "feet"),
  44100. default: true
  44101. },
  44102. ]
  44103. ))
  44104. characterMakers.push(() => makeCharacter(
  44105. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44106. {
  44107. front: {
  44108. height: math.unit(10.3, "feet"),
  44109. weight: math.unit(150, "lb"),
  44110. name: "Front",
  44111. image: {
  44112. source: "./media/characters/blaze/front.svg",
  44113. extra: 1378/1286,
  44114. bottom: 172/1550
  44115. }
  44116. },
  44117. },
  44118. [
  44119. {
  44120. name: "Normal",
  44121. height: math.unit(10.3, "feet"),
  44122. default: true
  44123. },
  44124. ]
  44125. ))
  44126. characterMakers.push(() => makeCharacter(
  44127. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44128. {
  44129. side: {
  44130. height: math.unit(2, "meters"),
  44131. weight: math.unit(400, "kg"),
  44132. name: "Side",
  44133. image: {
  44134. source: "./media/characters/anu/side.svg",
  44135. extra: 506/394,
  44136. bottom: 18/524
  44137. }
  44138. },
  44139. },
  44140. [
  44141. {
  44142. name: "Humanoid",
  44143. height: math.unit(2, "meters")
  44144. },
  44145. {
  44146. name: "Normal",
  44147. height: math.unit(5, "meters"),
  44148. default: true
  44149. },
  44150. ]
  44151. ))
  44152. characterMakers.push(() => makeCharacter(
  44153. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44154. {
  44155. front: {
  44156. height: math.unit(5 + 5/12, "feet"),
  44157. weight: math.unit(170, "lb"),
  44158. name: "Front",
  44159. image: {
  44160. source: "./media/characters/synx-the-lynx/front.svg",
  44161. extra: 1893/1745,
  44162. bottom: 17/1910
  44163. }
  44164. },
  44165. side: {
  44166. height: math.unit(5 + 5/12, "feet"),
  44167. weight: math.unit(170, "lb"),
  44168. name: "Side",
  44169. image: {
  44170. source: "./media/characters/synx-the-lynx/side.svg",
  44171. extra: 1884/1740,
  44172. bottom: 39/1923
  44173. }
  44174. },
  44175. back: {
  44176. height: math.unit(5 + 5/12, "feet"),
  44177. weight: math.unit(170, "lb"),
  44178. name: "Back",
  44179. image: {
  44180. source: "./media/characters/synx-the-lynx/back.svg",
  44181. extra: 1903/1755,
  44182. bottom: 14/1917
  44183. }
  44184. },
  44185. },
  44186. [
  44187. {
  44188. name: "Normal",
  44189. height: math.unit(5 + 5/12, "feet"),
  44190. default: true
  44191. },
  44192. ]
  44193. ))
  44194. characterMakers.push(() => makeCharacter(
  44195. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44196. {
  44197. back: {
  44198. height: math.unit(15, "feet"),
  44199. name: "Back",
  44200. image: {
  44201. source: "./media/characters/nadezda-fex/back.svg",
  44202. extra: 1695/1481,
  44203. bottom: 25/1720
  44204. }
  44205. },
  44206. },
  44207. [
  44208. {
  44209. name: "Normal",
  44210. height: math.unit(15, "feet"),
  44211. default: true
  44212. },
  44213. {
  44214. name: "Macro",
  44215. height: math.unit(2.5, "miles")
  44216. },
  44217. {
  44218. name: "Goddess",
  44219. height: math.unit(2, "multiverses")
  44220. },
  44221. ]
  44222. ))
  44223. characterMakers.push(() => makeCharacter(
  44224. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44225. {
  44226. front: {
  44227. height: math.unit(216, "cm"),
  44228. name: "Front",
  44229. image: {
  44230. source: "./media/characters/lev/front.svg",
  44231. extra: 1728/1670,
  44232. bottom: 82/1810
  44233. }
  44234. },
  44235. back: {
  44236. height: math.unit(216, "cm"),
  44237. name: "Back",
  44238. image: {
  44239. source: "./media/characters/lev/back.svg",
  44240. extra: 1738/1675,
  44241. bottom: 24/1762
  44242. }
  44243. },
  44244. dressed: {
  44245. height: math.unit(216, "cm"),
  44246. name: "Dressed",
  44247. image: {
  44248. source: "./media/characters/lev/dressed.svg",
  44249. extra: 1397/1351,
  44250. bottom: 73/1470
  44251. }
  44252. },
  44253. head: {
  44254. height: math.unit(0.51, "meter"),
  44255. name: "Head",
  44256. image: {
  44257. source: "./media/characters/lev/head.svg"
  44258. }
  44259. },
  44260. },
  44261. [
  44262. {
  44263. name: "Normal",
  44264. height: math.unit(216, "cm"),
  44265. default: true
  44266. },
  44267. {
  44268. name: "Relatively Macro",
  44269. height: math.unit(80, "meters")
  44270. },
  44271. {
  44272. name: "Megamacro",
  44273. height: math.unit(21600, "meters")
  44274. },
  44275. {
  44276. name: "Megamacro+",
  44277. height: math.unit(64800, "meters")
  44278. },
  44279. ]
  44280. ))
  44281. characterMakers.push(() => makeCharacter(
  44282. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44283. {
  44284. front: {
  44285. height: math.unit(2, "meters"),
  44286. weight: math.unit(80, "kg"),
  44287. name: "Front",
  44288. image: {
  44289. source: "./media/characters/moka/front.svg",
  44290. extra: 1337/1255,
  44291. bottom: 58/1395
  44292. }
  44293. },
  44294. },
  44295. [
  44296. {
  44297. name: "Micro",
  44298. height: math.unit(15, "cm")
  44299. },
  44300. {
  44301. name: "Normal",
  44302. height: math.unit(2, "meters"),
  44303. default: true
  44304. },
  44305. {
  44306. name: "Macro",
  44307. height: math.unit(20, "meters"),
  44308. },
  44309. ]
  44310. ))
  44311. characterMakers.push(() => makeCharacter(
  44312. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44313. {
  44314. front: {
  44315. height: math.unit(9, "feet"),
  44316. weight: math.unit(240, "lb"),
  44317. name: "Front",
  44318. image: {
  44319. source: "./media/characters/kuzco/front.svg",
  44320. extra: 1593/1487,
  44321. bottom: 32/1625
  44322. }
  44323. },
  44324. side: {
  44325. height: math.unit(9, "feet"),
  44326. weight: math.unit(240, "lb"),
  44327. name: "Side",
  44328. image: {
  44329. source: "./media/characters/kuzco/side.svg",
  44330. extra: 1575/1485,
  44331. bottom: 30/1605
  44332. }
  44333. },
  44334. back: {
  44335. height: math.unit(9, "feet"),
  44336. weight: math.unit(240, "lb"),
  44337. name: "Back",
  44338. image: {
  44339. source: "./media/characters/kuzco/back.svg",
  44340. extra: 1603/1514,
  44341. bottom: 14/1617
  44342. }
  44343. },
  44344. },
  44345. [
  44346. {
  44347. name: "Normal",
  44348. height: math.unit(9, "feet"),
  44349. default: true
  44350. },
  44351. ]
  44352. ))
  44353. characterMakers.push(() => makeCharacter(
  44354. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44355. {
  44356. side: {
  44357. height: math.unit(2, "meters"),
  44358. weight: math.unit(300, "kg"),
  44359. name: "Side",
  44360. image: {
  44361. source: "./media/characters/ceruleus/side.svg",
  44362. extra: 1068/974,
  44363. bottom: 126/1194
  44364. }
  44365. },
  44366. },
  44367. [
  44368. {
  44369. name: "Normal",
  44370. height: math.unit(16, "meters"),
  44371. default: true
  44372. },
  44373. ]
  44374. ))
  44375. characterMakers.push(() => makeCharacter(
  44376. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44377. {
  44378. front: {
  44379. height: math.unit(9, "feet"),
  44380. weight: math.unit(500, "kg"),
  44381. name: "Front",
  44382. image: {
  44383. source: "./media/characters/acouya/front.svg",
  44384. extra: 1660/1473,
  44385. bottom: 28/1688
  44386. }
  44387. },
  44388. },
  44389. [
  44390. {
  44391. name: "Normal",
  44392. height: math.unit(9, "feet"),
  44393. default: true
  44394. },
  44395. ]
  44396. ))
  44397. characterMakers.push(() => makeCharacter(
  44398. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44399. {
  44400. front: {
  44401. height: math.unit(5 + 6/12, "feet"),
  44402. weight: math.unit(195, "lb"),
  44403. name: "Front",
  44404. image: {
  44405. source: "./media/characters/vant/front.svg",
  44406. extra: 1396/1320,
  44407. bottom: 20/1416
  44408. }
  44409. },
  44410. back: {
  44411. height: math.unit(5 + 6/12, "feet"),
  44412. weight: math.unit(195, "lb"),
  44413. name: "Back",
  44414. image: {
  44415. source: "./media/characters/vant/back.svg",
  44416. extra: 1396/1320,
  44417. bottom: 20/1416
  44418. }
  44419. },
  44420. maw: {
  44421. height: math.unit(0.75, "feet"),
  44422. name: "Maw",
  44423. image: {
  44424. source: "./media/characters/vant/maw.svg"
  44425. }
  44426. },
  44427. paw: {
  44428. height: math.unit(1.07, "feet"),
  44429. name: "Paw",
  44430. image: {
  44431. source: "./media/characters/vant/paw.svg"
  44432. }
  44433. },
  44434. },
  44435. [
  44436. {
  44437. name: "Micro",
  44438. height: math.unit(0.25, "inches")
  44439. },
  44440. {
  44441. name: "Normal",
  44442. height: math.unit(5 + 6/12, "feet"),
  44443. default: true
  44444. },
  44445. {
  44446. name: "Macro",
  44447. height: math.unit(75, "feet")
  44448. },
  44449. ]
  44450. ))
  44451. characterMakers.push(() => makeCharacter(
  44452. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44453. {
  44454. front: {
  44455. height: math.unit(30, "meters"),
  44456. weight: math.unit(363, "tons"),
  44457. name: "Front",
  44458. image: {
  44459. source: "./media/characters/ahra/front.svg",
  44460. extra: 1914/1814,
  44461. bottom: 46/1960
  44462. }
  44463. },
  44464. },
  44465. [
  44466. {
  44467. name: "Macro",
  44468. height: math.unit(30, "meters"),
  44469. default: true
  44470. },
  44471. ]
  44472. ))
  44473. //characters
  44474. function makeCharacters() {
  44475. const results = [];
  44476. characterMakers.forEach(character => {
  44477. results.push(character());
  44478. });
  44479. return results;
  44480. }