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

47910 строки
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. }
  1884. //species
  1885. function getSpeciesInfo(speciesList) {
  1886. let result = new Set();
  1887. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1888. result.add(entry)
  1889. });
  1890. return Array.from(result);
  1891. };
  1892. function getSpeciesInfoHelper(species) {
  1893. if (!speciesData[species]) {
  1894. console.warn(species + " doesn't exist");
  1895. return [];
  1896. }
  1897. if (speciesData[species].parents) {
  1898. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1899. } else {
  1900. return [species];
  1901. }
  1902. }
  1903. characterMakers.push(() => makeCharacter(
  1904. {
  1905. name: "Fen",
  1906. species: ["crux"],
  1907. description: {
  1908. title: "Bio",
  1909. text: "Very furry. Sheds on everything."
  1910. },
  1911. tags: [
  1912. "anthro",
  1913. "goo"
  1914. ]
  1915. },
  1916. {
  1917. front: {
  1918. height: math.unit(12, "feet"),
  1919. weight: math.unit(2400, "lb"),
  1920. name: "Front",
  1921. image: {
  1922. source: "./media/characters/fen/front.svg",
  1923. extra: 1804/1562,
  1924. bottom: 205/2009
  1925. }
  1926. },
  1927. diving: {
  1928. height: math.unit(4.9, "meters"),
  1929. weight: math.unit(2400, "lb"),
  1930. name: "Diving",
  1931. image: {
  1932. source: "./media/characters/fen/diving.svg"
  1933. }
  1934. },
  1935. goo: {
  1936. height: math.unit(12, "feet"),
  1937. weight: math.unit(3000, "lb"),
  1938. capacity: math.unit(6, "people"),
  1939. name: "Goo",
  1940. image: {
  1941. source: "./media/characters/fen/goo.svg",
  1942. extra: 1307/1071,
  1943. bottom: 134/1441
  1944. }
  1945. },
  1946. maw: {
  1947. height: math.unit(5.03, "feet"),
  1948. name: "Maw",
  1949. image: {
  1950. source: "./media/characters/fen/maw.svg"
  1951. }
  1952. },
  1953. gooCeiling: {
  1954. height: math.unit(6.6, "feet"),
  1955. weight: math.unit(3000, "lb"),
  1956. capacity: math.unit(6, "people"),
  1957. name: "Goo (Ceiling)",
  1958. image: {
  1959. source: "./media/characters/fen/goo-ceiling.svg"
  1960. }
  1961. },
  1962. back: {
  1963. height: math.unit(12, "feet"),
  1964. weight: math.unit(2400, "lb"),
  1965. name: "Back",
  1966. image: {
  1967. source: "./media/characters/fen/back.svg",
  1968. },
  1969. info: {
  1970. description: {
  1971. mode: "append",
  1972. text: "\n\nHe is not currently looking at you."
  1973. }
  1974. }
  1975. },
  1976. full: {
  1977. height: math.unit(1.6, "meter"),
  1978. weight: math.unit(3200, "lb"),
  1979. name: "Full",
  1980. image: {
  1981. source: "./media/characters/fen/full.svg",
  1982. extra: 1133/859,
  1983. bottom: 145/1278
  1984. },
  1985. info: {
  1986. description: {
  1987. mode: "append",
  1988. text: "\n\nMunch."
  1989. }
  1990. }
  1991. },
  1992. gooLounging: {
  1993. height: math.unit(4.53, "feet"),
  1994. weight: math.unit(3000, "lb"),
  1995. capacity: math.unit(6, "people"),
  1996. name: "Goo (Lounging)",
  1997. image: {
  1998. source: "./media/characters/fen/goo.svg",
  1999. bottom: 116 / 613
  2000. }
  2001. },
  2002. lounging: {
  2003. height: math.unit(10.52, "feet"),
  2004. weight: math.unit(2400, "lb"),
  2005. name: "Lounging",
  2006. image: {
  2007. source: "./media/characters/fen/lounging.svg"
  2008. }
  2009. },
  2010. },
  2011. [
  2012. {
  2013. name: "Small",
  2014. height: math.unit(2.2428, "meter")
  2015. },
  2016. {
  2017. name: "Normal",
  2018. height: math.unit(12, "feet"),
  2019. default: true,
  2020. },
  2021. {
  2022. name: "Big",
  2023. height: math.unit(20, "feet")
  2024. },
  2025. {
  2026. name: "Minimacro",
  2027. height: math.unit(40, "feet"),
  2028. info: {
  2029. description: {
  2030. mode: "append",
  2031. text: "\n\nTOO DAMN BIG"
  2032. }
  2033. }
  2034. },
  2035. {
  2036. name: "Macro",
  2037. height: math.unit(100, "feet"),
  2038. info: {
  2039. description: {
  2040. mode: "append",
  2041. text: "\n\nTOO DAMN BIG"
  2042. }
  2043. }
  2044. },
  2045. {
  2046. name: "Megamacro",
  2047. height: math.unit(2, "miles")
  2048. },
  2049. {
  2050. name: "Gigamacro",
  2051. height: math.unit(10, "earths")
  2052. },
  2053. ]
  2054. ))
  2055. characterMakers.push(() => makeCharacter(
  2056. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2057. {
  2058. front: {
  2059. height: math.unit(183, "cm"),
  2060. weight: math.unit(80, "kg"),
  2061. name: "Front",
  2062. image: {
  2063. source: "./media/characters/sofia-fluttertail/front.svg",
  2064. bottom: 0.01,
  2065. extra: 2154 / 2081
  2066. }
  2067. },
  2068. frontAlt: {
  2069. height: math.unit(183, "cm"),
  2070. weight: math.unit(80, "kg"),
  2071. name: "Front (alt)",
  2072. image: {
  2073. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2074. }
  2075. },
  2076. back: {
  2077. height: math.unit(183, "cm"),
  2078. weight: math.unit(80, "kg"),
  2079. name: "Back",
  2080. image: {
  2081. source: "./media/characters/sofia-fluttertail/back.svg"
  2082. }
  2083. },
  2084. kneeling: {
  2085. height: math.unit(125, "cm"),
  2086. weight: math.unit(80, "kg"),
  2087. name: "Kneeling",
  2088. image: {
  2089. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2090. extra: 1033 / 977,
  2091. bottom: 23.7 / 1057
  2092. }
  2093. },
  2094. maw: {
  2095. height: math.unit(183 / 5, "cm"),
  2096. name: "Maw",
  2097. image: {
  2098. source: "./media/characters/sofia-fluttertail/maw.svg"
  2099. }
  2100. },
  2101. mawcloseup: {
  2102. height: math.unit(183 / 5 * 0.41, "cm"),
  2103. name: "Maw (Closeup)",
  2104. image: {
  2105. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2106. }
  2107. },
  2108. paws: {
  2109. height: math.unit(1.17, "feet"),
  2110. name: "Paws",
  2111. image: {
  2112. source: "./media/characters/sofia-fluttertail/paws.svg",
  2113. extra: 851 / 851,
  2114. bottom: 17 / 868
  2115. }
  2116. },
  2117. },
  2118. [
  2119. {
  2120. name: "Normal",
  2121. height: math.unit(1.83, "meter")
  2122. },
  2123. {
  2124. name: "Size Thief",
  2125. height: math.unit(18, "feet")
  2126. },
  2127. {
  2128. name: "50 Foot Collie",
  2129. height: math.unit(50, "feet")
  2130. },
  2131. {
  2132. name: "Macro",
  2133. height: math.unit(96, "feet"),
  2134. default: true
  2135. },
  2136. {
  2137. name: "Megamerger",
  2138. height: math.unit(650, "feet")
  2139. },
  2140. ]
  2141. ))
  2142. characterMakers.push(() => makeCharacter(
  2143. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2144. {
  2145. front: {
  2146. height: math.unit(7, "feet"),
  2147. weight: math.unit(100, "kg"),
  2148. name: "Front",
  2149. image: {
  2150. source: "./media/characters/march/front.svg",
  2151. extra: 1992/1851,
  2152. bottom: 39/2031
  2153. }
  2154. },
  2155. foot: {
  2156. height: math.unit(0.9, "feet"),
  2157. name: "Foot",
  2158. image: {
  2159. source: "./media/characters/march/foot.svg"
  2160. }
  2161. },
  2162. },
  2163. [
  2164. {
  2165. name: "Normal",
  2166. height: math.unit(7.9, "feet")
  2167. },
  2168. {
  2169. name: "Macro",
  2170. height: math.unit(220, "meters")
  2171. },
  2172. {
  2173. name: "Megamacro",
  2174. height: math.unit(2.98, "km"),
  2175. default: true
  2176. },
  2177. {
  2178. name: "Gigamacro",
  2179. height: math.unit(15963, "km")
  2180. },
  2181. {
  2182. name: "Teramacro",
  2183. height: math.unit(2980000000, "km")
  2184. },
  2185. {
  2186. name: "Examacro",
  2187. height: math.unit(250, "parsecs")
  2188. },
  2189. ]
  2190. ))
  2191. characterMakers.push(() => makeCharacter(
  2192. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2193. {
  2194. front: {
  2195. height: math.unit(6, "feet"),
  2196. weight: math.unit(60, "kg"),
  2197. name: "Front",
  2198. image: {
  2199. source: "./media/characters/noir/front.svg",
  2200. extra: 1,
  2201. bottom: 0.032
  2202. }
  2203. },
  2204. },
  2205. [
  2206. {
  2207. name: "Normal",
  2208. height: math.unit(6.6, "feet")
  2209. },
  2210. {
  2211. name: "Macro",
  2212. height: math.unit(500, "feet")
  2213. },
  2214. {
  2215. name: "Megamacro",
  2216. height: math.unit(2.5, "km"),
  2217. default: true
  2218. },
  2219. {
  2220. name: "Gigamacro",
  2221. height: math.unit(22500, "km")
  2222. },
  2223. {
  2224. name: "Teramacro",
  2225. height: math.unit(2500000000, "km")
  2226. },
  2227. {
  2228. name: "Examacro",
  2229. height: math.unit(200, "parsecs")
  2230. },
  2231. ]
  2232. ))
  2233. characterMakers.push(() => makeCharacter(
  2234. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2235. {
  2236. front: {
  2237. height: math.unit(7, "feet"),
  2238. weight: math.unit(100, "kg"),
  2239. name: "Front",
  2240. image: {
  2241. source: "./media/characters/okuri/front.svg",
  2242. extra: 1,
  2243. bottom: 0.037
  2244. }
  2245. },
  2246. back: {
  2247. height: math.unit(7, "feet"),
  2248. weight: math.unit(100, "kg"),
  2249. name: "Back",
  2250. image: {
  2251. source: "./media/characters/okuri/back.svg",
  2252. extra: 1,
  2253. bottom: 0.007
  2254. }
  2255. },
  2256. },
  2257. [
  2258. {
  2259. name: "Megamacro",
  2260. height: math.unit(100, "miles"),
  2261. default: true
  2262. },
  2263. ]
  2264. ))
  2265. characterMakers.push(() => makeCharacter(
  2266. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2267. {
  2268. front: {
  2269. height: math.unit(7, "feet"),
  2270. weight: math.unit(100, "kg"),
  2271. name: "Front",
  2272. image: {
  2273. source: "./media/characters/manny/front.svg",
  2274. extra: 1,
  2275. bottom: 0.06
  2276. }
  2277. },
  2278. back: {
  2279. height: math.unit(7, "feet"),
  2280. weight: math.unit(100, "kg"),
  2281. name: "Back",
  2282. image: {
  2283. source: "./media/characters/manny/back.svg",
  2284. extra: 1,
  2285. bottom: 0.014
  2286. }
  2287. },
  2288. },
  2289. [
  2290. {
  2291. name: "Normal",
  2292. height: math.unit(7, "feet"),
  2293. },
  2294. {
  2295. name: "Macro",
  2296. height: math.unit(78, "feet"),
  2297. default: true
  2298. },
  2299. {
  2300. name: "Macro+",
  2301. height: math.unit(300, "meters")
  2302. },
  2303. {
  2304. name: "Macro++",
  2305. height: math.unit(2400, "meters")
  2306. },
  2307. {
  2308. name: "Megamacro",
  2309. height: math.unit(5167, "meters")
  2310. },
  2311. {
  2312. name: "Gigamacro",
  2313. height: math.unit(41769, "miles")
  2314. },
  2315. ]
  2316. ))
  2317. characterMakers.push(() => makeCharacter(
  2318. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2319. {
  2320. front: {
  2321. height: math.unit(7, "feet"),
  2322. weight: math.unit(100, "kg"),
  2323. name: "Front",
  2324. image: {
  2325. source: "./media/characters/adake/front-1.svg"
  2326. }
  2327. },
  2328. frontAlt: {
  2329. height: math.unit(7, "feet"),
  2330. weight: math.unit(100, "kg"),
  2331. name: "Front (Alt)",
  2332. image: {
  2333. source: "./media/characters/adake/front-2.svg",
  2334. extra: 1,
  2335. bottom: 0.01
  2336. }
  2337. },
  2338. back: {
  2339. height: math.unit(7, "feet"),
  2340. weight: math.unit(100, "kg"),
  2341. name: "Back",
  2342. image: {
  2343. source: "./media/characters/adake/back.svg",
  2344. }
  2345. },
  2346. kneel: {
  2347. height: math.unit(5.385, "feet"),
  2348. weight: math.unit(100, "kg"),
  2349. name: "Kneeling",
  2350. image: {
  2351. source: "./media/characters/adake/kneel.svg",
  2352. bottom: 0.052
  2353. }
  2354. },
  2355. },
  2356. [
  2357. {
  2358. name: "Normal",
  2359. height: math.unit(7, "feet"),
  2360. },
  2361. {
  2362. name: "Macro",
  2363. height: math.unit(78, "feet"),
  2364. default: true
  2365. },
  2366. {
  2367. name: "Macro+",
  2368. height: math.unit(300, "meters")
  2369. },
  2370. {
  2371. name: "Macro++",
  2372. height: math.unit(2400, "meters")
  2373. },
  2374. {
  2375. name: "Megamacro",
  2376. height: math.unit(5167, "meters")
  2377. },
  2378. {
  2379. name: "Gigamacro",
  2380. height: math.unit(41769, "miles")
  2381. },
  2382. ]
  2383. ))
  2384. characterMakers.push(() => makeCharacter(
  2385. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2386. {
  2387. front: {
  2388. height: math.unit(1.65, "meters"),
  2389. weight: math.unit(50, "kg"),
  2390. name: "Front",
  2391. image: {
  2392. source: "./media/characters/elijah/front.svg",
  2393. extra: 858 / 830,
  2394. bottom: 95.5 / 953.8559
  2395. }
  2396. },
  2397. back: {
  2398. height: math.unit(1.65, "meters"),
  2399. weight: math.unit(50, "kg"),
  2400. name: "Back",
  2401. image: {
  2402. source: "./media/characters/elijah/back.svg",
  2403. extra: 895 / 850,
  2404. bottom: 5.3 / 897.956
  2405. }
  2406. },
  2407. frontNsfw: {
  2408. height: math.unit(1.65, "meters"),
  2409. weight: math.unit(50, "kg"),
  2410. name: "Front (NSFW)",
  2411. image: {
  2412. source: "./media/characters/elijah/front-nsfw.svg",
  2413. extra: 858 / 830,
  2414. bottom: 95.5 / 953.8559
  2415. }
  2416. },
  2417. backNsfw: {
  2418. height: math.unit(1.65, "meters"),
  2419. weight: math.unit(50, "kg"),
  2420. name: "Back (NSFW)",
  2421. image: {
  2422. source: "./media/characters/elijah/back-nsfw.svg",
  2423. extra: 895 / 850,
  2424. bottom: 5.3 / 897.956
  2425. }
  2426. },
  2427. dick: {
  2428. height: math.unit(1, "feet"),
  2429. name: "Dick",
  2430. image: {
  2431. source: "./media/characters/elijah/dick.svg"
  2432. }
  2433. },
  2434. beakOpen: {
  2435. height: math.unit(1.25, "feet"),
  2436. name: "Beak (Open)",
  2437. image: {
  2438. source: "./media/characters/elijah/beak-open.svg"
  2439. }
  2440. },
  2441. beakShut: {
  2442. height: math.unit(1.25, "feet"),
  2443. name: "Beak (Shut)",
  2444. image: {
  2445. source: "./media/characters/elijah/beak-shut.svg"
  2446. }
  2447. },
  2448. footFlexing: {
  2449. height: math.unit(1.61, "feet"),
  2450. name: "Foot (Flexing)",
  2451. image: {
  2452. source: "./media/characters/elijah/foot-flexing.svg"
  2453. }
  2454. },
  2455. footStepping: {
  2456. height: math.unit(1.44, "feet"),
  2457. name: "Foot (Stepping)",
  2458. image: {
  2459. source: "./media/characters/elijah/foot-stepping.svg"
  2460. }
  2461. },
  2462. plantigradeLeg: {
  2463. height: math.unit(2.34, "feet"),
  2464. name: "Plantigrade Leg",
  2465. image: {
  2466. source: "./media/characters/elijah/plantigrade-leg.svg"
  2467. }
  2468. },
  2469. plantigradeFootLeft: {
  2470. height: math.unit(0.9, "feet"),
  2471. name: "Plantigrade Foot (Left)",
  2472. image: {
  2473. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2474. }
  2475. },
  2476. plantigradeFootRight: {
  2477. height: math.unit(0.9, "feet"),
  2478. name: "Plantigrade Foot (Right)",
  2479. image: {
  2480. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2481. }
  2482. },
  2483. },
  2484. [
  2485. {
  2486. name: "Normal",
  2487. height: math.unit(1.65, "meters")
  2488. },
  2489. {
  2490. name: "Macro",
  2491. height: math.unit(55, "meters"),
  2492. default: true
  2493. },
  2494. {
  2495. name: "Macro+",
  2496. height: math.unit(105, "meters")
  2497. },
  2498. ]
  2499. ))
  2500. characterMakers.push(() => makeCharacter(
  2501. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2502. {
  2503. front: {
  2504. height: math.unit(7 + 2/12, "feet"),
  2505. weight: math.unit(320, "kg"),
  2506. name: "Front",
  2507. image: {
  2508. source: "./media/characters/rai/front.svg",
  2509. extra: 1802/1696,
  2510. bottom: 68/1870
  2511. }
  2512. },
  2513. frontDressed: {
  2514. height: math.unit(7 + 2/12, "feet"),
  2515. weight: math.unit(320, "kg"),
  2516. name: "Front (Dressed)",
  2517. image: {
  2518. source: "./media/characters/rai/front-dressed.svg",
  2519. extra: 1802/1696,
  2520. bottom: 68/1870
  2521. }
  2522. },
  2523. side: {
  2524. height: math.unit(7 + 2/12, "feet"),
  2525. weight: math.unit(320, "kg"),
  2526. name: "Side",
  2527. image: {
  2528. source: "./media/characters/rai/side.svg",
  2529. extra: 1789/1710,
  2530. bottom: 115/1904
  2531. }
  2532. },
  2533. back: {
  2534. height: math.unit(7 + 2/12, "feet"),
  2535. weight: math.unit(320, "kg"),
  2536. name: "Back",
  2537. image: {
  2538. source: "./media/characters/rai/back.svg",
  2539. extra: 1770/1707,
  2540. bottom: 28/1798
  2541. }
  2542. },
  2543. feral: {
  2544. height: math.unit(9.5, "feet"),
  2545. weight: math.unit(640, "kg"),
  2546. name: "Feral",
  2547. image: {
  2548. source: "./media/characters/rai/feral.svg",
  2549. extra: 945/553,
  2550. bottom: 176/1121
  2551. }
  2552. },
  2553. dragon: {
  2554. height: math.unit(23, "feet"),
  2555. weight: math.unit(50000, "lb"),
  2556. name: "Dragon",
  2557. image: {
  2558. source: "./media/characters/rai/dragon.svg",
  2559. extra: 2498 / 2030,
  2560. bottom: 85.2 / 2584
  2561. }
  2562. },
  2563. maw: {
  2564. height: math.unit(1.69, "feet"),
  2565. name: "Maw",
  2566. image: {
  2567. source: "./media/characters/rai/maw.svg"
  2568. }
  2569. },
  2570. },
  2571. [
  2572. {
  2573. name: "Normal",
  2574. height: math.unit(7 + 2/12, "feet")
  2575. },
  2576. {
  2577. name: "Big",
  2578. height: math.unit(11, "feet")
  2579. },
  2580. {
  2581. name: "Macro",
  2582. height: math.unit(302, "feet"),
  2583. default: true
  2584. },
  2585. ]
  2586. ))
  2587. characterMakers.push(() => makeCharacter(
  2588. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2589. {
  2590. frontDressed: {
  2591. height: math.unit(216, "feet"),
  2592. weight: math.unit(7000000, "lb"),
  2593. name: "Front (Dressed)",
  2594. image: {
  2595. source: "./media/characters/jazzy/front-dressed.svg",
  2596. extra: 2738 / 2651,
  2597. bottom: 41.8 / 2786
  2598. }
  2599. },
  2600. backDressed: {
  2601. height: math.unit(216, "feet"),
  2602. weight: math.unit(7000000, "lb"),
  2603. name: "Back (Dressed)",
  2604. image: {
  2605. source: "./media/characters/jazzy/back-dressed.svg",
  2606. extra: 2775 / 2673,
  2607. bottom: 36.8 / 2817
  2608. }
  2609. },
  2610. front: {
  2611. height: math.unit(216, "feet"),
  2612. weight: math.unit(7000000, "lb"),
  2613. name: "Front",
  2614. image: {
  2615. source: "./media/characters/jazzy/front.svg",
  2616. extra: 2738 / 2651,
  2617. bottom: 41.8 / 2786
  2618. }
  2619. },
  2620. back: {
  2621. height: math.unit(216, "feet"),
  2622. weight: math.unit(7000000, "lb"),
  2623. name: "Back",
  2624. image: {
  2625. source: "./media/characters/jazzy/back.svg",
  2626. extra: 2775 / 2673,
  2627. bottom: 36.8 / 2817
  2628. }
  2629. },
  2630. maw: {
  2631. height: math.unit(20, "feet"),
  2632. name: "Maw",
  2633. image: {
  2634. source: "./media/characters/jazzy/maw.svg"
  2635. }
  2636. },
  2637. paws: {
  2638. height: math.unit(27.5, "feet"),
  2639. name: "Paws",
  2640. image: {
  2641. source: "./media/characters/jazzy/paws.svg"
  2642. }
  2643. },
  2644. eye: {
  2645. height: math.unit(4.4, "feet"),
  2646. name: "Eye",
  2647. image: {
  2648. source: "./media/characters/jazzy/eye.svg"
  2649. }
  2650. },
  2651. droneOffense: {
  2652. height: math.unit(9.5, "inches"),
  2653. name: "Drone (Offense)",
  2654. image: {
  2655. source: "./media/characters/jazzy/drone-offense.svg"
  2656. }
  2657. },
  2658. droneRecon: {
  2659. height: math.unit(9.5, "inches"),
  2660. name: "Drone (Recon)",
  2661. image: {
  2662. source: "./media/characters/jazzy/drone-recon.svg"
  2663. }
  2664. },
  2665. droneDefense: {
  2666. height: math.unit(9.5, "inches"),
  2667. name: "Drone (Defense)",
  2668. image: {
  2669. source: "./media/characters/jazzy/drone-defense.svg"
  2670. }
  2671. },
  2672. },
  2673. [
  2674. {
  2675. name: "Macro",
  2676. height: math.unit(216, "feet"),
  2677. default: true
  2678. },
  2679. ]
  2680. ))
  2681. characterMakers.push(() => makeCharacter(
  2682. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2683. {
  2684. front: {
  2685. height: math.unit(9 + 6/12, "feet"),
  2686. weight: math.unit(700, "lb"),
  2687. name: "Front",
  2688. image: {
  2689. source: "./media/characters/flamm/front.svg",
  2690. extra: 1751/1632,
  2691. bottom: 46/1797
  2692. }
  2693. },
  2694. buff: {
  2695. height: math.unit(9 + 6/12, "feet"),
  2696. weight: math.unit(950, "lb"),
  2697. name: "Buff",
  2698. image: {
  2699. source: "./media/characters/flamm/buff.svg",
  2700. extra: 3018/2874,
  2701. bottom: 221/3239
  2702. }
  2703. },
  2704. },
  2705. [
  2706. {
  2707. name: "Normal",
  2708. height: math.unit(9.5, "feet")
  2709. },
  2710. {
  2711. name: "Macro",
  2712. height: math.unit(200, "feet"),
  2713. default: true
  2714. },
  2715. ]
  2716. ))
  2717. characterMakers.push(() => makeCharacter(
  2718. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2719. {
  2720. front: {
  2721. height: math.unit(5 + 3/12, "feet"),
  2722. weight: math.unit(60, "kg"),
  2723. name: "Front",
  2724. image: {
  2725. source: "./media/characters/zephiro/front.svg",
  2726. extra: 2309 / 2162,
  2727. bottom: 0.069
  2728. }
  2729. },
  2730. side: {
  2731. height: math.unit(5 + 3/12, "feet"),
  2732. weight: math.unit(60, "kg"),
  2733. name: "Side",
  2734. image: {
  2735. source: "./media/characters/zephiro/side.svg",
  2736. extra: 2403 / 2279,
  2737. bottom: 0.015
  2738. }
  2739. },
  2740. back: {
  2741. height: math.unit(5 + 3/12, "feet"),
  2742. weight: math.unit(60, "kg"),
  2743. name: "Back",
  2744. image: {
  2745. source: "./media/characters/zephiro/back.svg",
  2746. extra: 2373 / 2244,
  2747. bottom: 0.013
  2748. }
  2749. },
  2750. hand: {
  2751. height: math.unit(0.68, "feet"),
  2752. name: "Hand",
  2753. image: {
  2754. source: "./media/characters/zephiro/hand.svg"
  2755. }
  2756. },
  2757. paw: {
  2758. height: math.unit(1, "feet"),
  2759. name: "Paw",
  2760. image: {
  2761. source: "./media/characters/zephiro/paw.svg"
  2762. }
  2763. },
  2764. beans: {
  2765. height: math.unit(0.93, "feet"),
  2766. name: "Beans",
  2767. image: {
  2768. source: "./media/characters/zephiro/beans.svg"
  2769. }
  2770. },
  2771. },
  2772. [
  2773. {
  2774. name: "Micro",
  2775. height: math.unit(3, "inches")
  2776. },
  2777. {
  2778. name: "Normal",
  2779. height: math.unit(5 + 3 / 12, "feet"),
  2780. default: true
  2781. },
  2782. {
  2783. name: "Macro",
  2784. height: math.unit(118, "feet")
  2785. },
  2786. ]
  2787. ))
  2788. characterMakers.push(() => makeCharacter(
  2789. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2790. {
  2791. front: {
  2792. height: math.unit(5, "feet"),
  2793. weight: math.unit(90, "kg"),
  2794. name: "Front",
  2795. image: {
  2796. source: "./media/characters/fory/front.svg",
  2797. extra: 2862 / 2674,
  2798. bottom: 180 / 3043.8
  2799. }
  2800. },
  2801. back: {
  2802. height: math.unit(5, "feet"),
  2803. weight: math.unit(90, "kg"),
  2804. name: "Back",
  2805. image: {
  2806. source: "./media/characters/fory/back.svg",
  2807. extra: 2962 / 2791,
  2808. bottom: 106 / 3071.8
  2809. }
  2810. },
  2811. foot: {
  2812. height: math.unit(2.14, "feet"),
  2813. name: "Foot",
  2814. image: {
  2815. source: "./media/characters/fory/foot.svg"
  2816. }
  2817. },
  2818. },
  2819. [
  2820. {
  2821. name: "Normal",
  2822. height: math.unit(5, "feet")
  2823. },
  2824. {
  2825. name: "Macro",
  2826. height: math.unit(50, "feet"),
  2827. default: true
  2828. },
  2829. {
  2830. name: "Megamacro",
  2831. height: math.unit(10, "miles")
  2832. },
  2833. {
  2834. name: "Gigamacro",
  2835. height: math.unit(5, "earths")
  2836. },
  2837. ]
  2838. ))
  2839. characterMakers.push(() => makeCharacter(
  2840. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2841. {
  2842. front: {
  2843. height: math.unit(7, "feet"),
  2844. weight: math.unit(90, "kg"),
  2845. name: "Front",
  2846. image: {
  2847. source: "./media/characters/kurrikage/front.svg",
  2848. extra: 1845/1733,
  2849. bottom: 119/1964
  2850. }
  2851. },
  2852. back: {
  2853. height: math.unit(7, "feet"),
  2854. weight: math.unit(90, "kg"),
  2855. name: "Back",
  2856. image: {
  2857. source: "./media/characters/kurrikage/back.svg",
  2858. extra: 1790/1677,
  2859. bottom: 61/1851
  2860. }
  2861. },
  2862. dressed: {
  2863. height: math.unit(7, "feet"),
  2864. weight: math.unit(90, "kg"),
  2865. name: "Dressed",
  2866. image: {
  2867. source: "./media/characters/kurrikage/dressed.svg",
  2868. extra: 1845/1733,
  2869. bottom: 119/1964
  2870. }
  2871. },
  2872. foot: {
  2873. height: math.unit(1.5, "feet"),
  2874. name: "Foot",
  2875. image: {
  2876. source: "./media/characters/kurrikage/foot.svg"
  2877. }
  2878. },
  2879. staff: {
  2880. height: math.unit(6.7, "feet"),
  2881. name: "Staff",
  2882. image: {
  2883. source: "./media/characters/kurrikage/staff.svg"
  2884. }
  2885. },
  2886. peek: {
  2887. height: math.unit(1.05, "feet"),
  2888. name: "Peeking",
  2889. image: {
  2890. source: "./media/characters/kurrikage/peek.svg",
  2891. bottom: 0.08
  2892. }
  2893. },
  2894. },
  2895. [
  2896. {
  2897. name: "Normal",
  2898. height: math.unit(12, "feet"),
  2899. default: true
  2900. },
  2901. {
  2902. name: "Big",
  2903. height: math.unit(20, "feet")
  2904. },
  2905. {
  2906. name: "Macro",
  2907. height: math.unit(500, "feet")
  2908. },
  2909. {
  2910. name: "Megamacro",
  2911. height: math.unit(20, "miles")
  2912. },
  2913. ]
  2914. ))
  2915. characterMakers.push(() => makeCharacter(
  2916. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2917. {
  2918. front: {
  2919. height: math.unit(6, "feet"),
  2920. weight: math.unit(75, "kg"),
  2921. name: "Front",
  2922. image: {
  2923. source: "./media/characters/shingo/front.svg",
  2924. extra: 1900/1825,
  2925. bottom: 82/1982
  2926. }
  2927. },
  2928. side: {
  2929. height: math.unit(6, "feet"),
  2930. weight: math.unit(75, "kg"),
  2931. name: "Side",
  2932. image: {
  2933. source: "./media/characters/shingo/side.svg",
  2934. extra: 1930/1865,
  2935. bottom: 16/1946
  2936. }
  2937. },
  2938. back: {
  2939. height: math.unit(6, "feet"),
  2940. weight: math.unit(75, "kg"),
  2941. name: "Back",
  2942. image: {
  2943. source: "./media/characters/shingo/back.svg",
  2944. extra: 1922/1852,
  2945. bottom: 16/1938
  2946. }
  2947. },
  2948. frontDressed: {
  2949. height: math.unit(6, "feet"),
  2950. weight: math.unit(150, "lb"),
  2951. name: "Front-dressed",
  2952. image: {
  2953. source: "./media/characters/shingo/front-dressed.svg",
  2954. extra: 1900/1825,
  2955. bottom: 82/1982
  2956. }
  2957. },
  2958. paw: {
  2959. height: math.unit(1.29, "feet"),
  2960. name: "Paw",
  2961. image: {
  2962. source: "./media/characters/shingo/paw.svg"
  2963. }
  2964. },
  2965. hand: {
  2966. height: math.unit(1.07, "feet"),
  2967. name: "Hand",
  2968. image: {
  2969. source: "./media/characters/shingo/hand.svg"
  2970. }
  2971. },
  2972. frontAlt: {
  2973. height: math.unit(6, "feet"),
  2974. weight: math.unit(75, "kg"),
  2975. name: "Front (Alt)",
  2976. image: {
  2977. source: "./media/characters/shingo/front-alt.svg",
  2978. extra: 3511 / 3338,
  2979. bottom: 0.005
  2980. }
  2981. },
  2982. frontAlt2: {
  2983. height: math.unit(6, "feet"),
  2984. weight: math.unit(75, "kg"),
  2985. name: "Front (Alt 2)",
  2986. image: {
  2987. source: "./media/characters/shingo/front-alt-2.svg",
  2988. extra: 706/681,
  2989. bottom: 11/717
  2990. }
  2991. },
  2992. pawAlt: {
  2993. height: math.unit(1, "feet"),
  2994. name: "Paw (Alt)",
  2995. image: {
  2996. source: "./media/characters/shingo/paw-alt.svg"
  2997. }
  2998. },
  2999. },
  3000. [
  3001. {
  3002. name: "Micro",
  3003. height: math.unit(4, "inches")
  3004. },
  3005. {
  3006. name: "Normal",
  3007. height: math.unit(6, "feet"),
  3008. default: true
  3009. },
  3010. {
  3011. name: "Macro",
  3012. height: math.unit(108, "feet")
  3013. },
  3014. {
  3015. name: "Macro+",
  3016. height: math.unit(1500, "feet")
  3017. },
  3018. ]
  3019. ))
  3020. characterMakers.push(() => makeCharacter(
  3021. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3022. {
  3023. side: {
  3024. height: math.unit(6, "feet"),
  3025. weight: math.unit(75, "kg"),
  3026. name: "Side",
  3027. image: {
  3028. source: "./media/characters/aigey/side.svg"
  3029. }
  3030. },
  3031. },
  3032. [
  3033. {
  3034. name: "Macro",
  3035. height: math.unit(200, "feet"),
  3036. default: true
  3037. },
  3038. {
  3039. name: "Megamacro",
  3040. height: math.unit(100, "miles")
  3041. },
  3042. ]
  3043. )
  3044. )
  3045. characterMakers.push(() => makeCharacter(
  3046. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3047. {
  3048. front: {
  3049. height: math.unit(5 + 5 / 12, "feet"),
  3050. weight: math.unit(75, "kg"),
  3051. name: "Front",
  3052. image: {
  3053. source: "./media/characters/natasha/front.svg",
  3054. extra: 859 / 824,
  3055. bottom: 23 / 879.6
  3056. }
  3057. },
  3058. frontNsfw: {
  3059. height: math.unit(5 + 5 / 12, "feet"),
  3060. weight: math.unit(75, "kg"),
  3061. name: "Front (NSFW)",
  3062. image: {
  3063. source: "./media/characters/natasha/front-nsfw.svg",
  3064. extra: 859 / 824,
  3065. bottom: 23 / 879.6
  3066. }
  3067. },
  3068. frontErect: {
  3069. height: math.unit(5 + 5 / 12, "feet"),
  3070. weight: math.unit(75, "kg"),
  3071. name: "Front (Erect)",
  3072. image: {
  3073. source: "./media/characters/natasha/front-erect.svg",
  3074. extra: 859 / 824,
  3075. bottom: 23 / 879.6
  3076. }
  3077. },
  3078. back: {
  3079. height: math.unit(5 + 5 / 12, "feet"),
  3080. weight: math.unit(75, "kg"),
  3081. name: "Back",
  3082. image: {
  3083. source: "./media/characters/natasha/back.svg",
  3084. extra: 887.9 / 852.6,
  3085. bottom: 9.7 / 896.4
  3086. }
  3087. },
  3088. backAlt: {
  3089. height: math.unit(5 + 5 / 12, "feet"),
  3090. weight: math.unit(75, "kg"),
  3091. name: "Back (Alt)",
  3092. image: {
  3093. source: "./media/characters/natasha/back-alt.svg",
  3094. extra: 1236.7 / 1192,
  3095. bottom: 22.3 / 1258.2
  3096. }
  3097. },
  3098. dick: {
  3099. height: math.unit(1.772, "feet"),
  3100. name: "Dick",
  3101. image: {
  3102. source: "./media/characters/natasha/dick.svg"
  3103. }
  3104. },
  3105. paw: {
  3106. height: math.unit(0.250, "meters"),
  3107. name: "Paw",
  3108. image: {
  3109. source: "./media/characters/natasha/paw.svg"
  3110. }
  3111. },
  3112. },
  3113. [
  3114. {
  3115. name: "Normal",
  3116. height: math.unit(5 + 5 / 12, "feet")
  3117. },
  3118. {
  3119. name: "Large",
  3120. height: math.unit(12, "feet")
  3121. },
  3122. {
  3123. name: "Macro",
  3124. height: math.unit(100, "feet"),
  3125. default: true
  3126. },
  3127. {
  3128. name: "Macro+",
  3129. height: math.unit(260, "feet")
  3130. },
  3131. {
  3132. name: "Macro++",
  3133. height: math.unit(1, "mile")
  3134. },
  3135. ]
  3136. ))
  3137. characterMakers.push(() => makeCharacter(
  3138. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3139. {
  3140. front: {
  3141. height: math.unit(6, "feet"),
  3142. weight: math.unit(75, "kg"),
  3143. name: "Front",
  3144. image: {
  3145. source: "./media/characters/malik/front.svg"
  3146. }
  3147. },
  3148. side: {
  3149. height: math.unit(6, "feet"),
  3150. weight: math.unit(75, "kg"),
  3151. name: "Side",
  3152. image: {
  3153. source: "./media/characters/malik/side.svg",
  3154. extra: 1.1539
  3155. }
  3156. },
  3157. back: {
  3158. height: math.unit(6, "feet"),
  3159. weight: math.unit(75, "kg"),
  3160. name: "Back",
  3161. image: {
  3162. source: "./media/characters/malik/back.svg"
  3163. }
  3164. },
  3165. },
  3166. [
  3167. {
  3168. name: "Macro",
  3169. height: math.unit(156, "feet"),
  3170. default: true
  3171. },
  3172. {
  3173. name: "Macro+",
  3174. height: math.unit(1188, "feet")
  3175. },
  3176. ]
  3177. ))
  3178. characterMakers.push(() => makeCharacter(
  3179. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3180. {
  3181. front: {
  3182. height: math.unit(6, "feet"),
  3183. weight: math.unit(75, "kg"),
  3184. name: "Front",
  3185. image: {
  3186. source: "./media/characters/sefer/front.svg",
  3187. extra: 848 / 659,
  3188. bottom: 28.3 / 876.442
  3189. }
  3190. },
  3191. back: {
  3192. height: math.unit(6, "feet"),
  3193. weight: math.unit(75, "kg"),
  3194. name: "Back",
  3195. image: {
  3196. source: "./media/characters/sefer/back.svg",
  3197. extra: 864 / 695,
  3198. bottom: 10 / 871
  3199. }
  3200. },
  3201. frontDressed: {
  3202. height: math.unit(6, "feet"),
  3203. weight: math.unit(75, "kg"),
  3204. name: "Front (Dressed)",
  3205. image: {
  3206. source: "./media/characters/sefer/front-dressed.svg",
  3207. extra: 839 / 653,
  3208. bottom: 37.6 / 878
  3209. }
  3210. },
  3211. },
  3212. [
  3213. {
  3214. name: "Normal",
  3215. height: math.unit(6, "feet"),
  3216. default: true
  3217. },
  3218. ]
  3219. ))
  3220. characterMakers.push(() => makeCharacter(
  3221. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3222. {
  3223. body: {
  3224. height: math.unit(2.2428, "meter"),
  3225. weight: math.unit(124.738, "kg"),
  3226. name: "Body",
  3227. image: {
  3228. extra: 1225 / 1050,
  3229. source: "./media/characters/north/front.svg"
  3230. }
  3231. }
  3232. },
  3233. [
  3234. {
  3235. name: "Micro",
  3236. height: math.unit(4, "inches")
  3237. },
  3238. {
  3239. name: "Macro",
  3240. height: math.unit(63, "meters")
  3241. },
  3242. {
  3243. name: "Megamacro",
  3244. height: math.unit(101, "miles"),
  3245. default: true
  3246. }
  3247. ]
  3248. ))
  3249. characterMakers.push(() => makeCharacter(
  3250. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3251. {
  3252. angled: {
  3253. height: math.unit(4, "meter"),
  3254. weight: math.unit(150, "kg"),
  3255. name: "Angled",
  3256. image: {
  3257. source: "./media/characters/talan/angled-sfw.svg",
  3258. bottom: 29 / 3734
  3259. }
  3260. },
  3261. angledNsfw: {
  3262. height: math.unit(4, "meter"),
  3263. weight: math.unit(150, "kg"),
  3264. name: "Angled (NSFW)",
  3265. image: {
  3266. source: "./media/characters/talan/angled-nsfw.svg",
  3267. bottom: 29 / 3734
  3268. }
  3269. },
  3270. frontNsfw: {
  3271. height: math.unit(4, "meter"),
  3272. weight: math.unit(150, "kg"),
  3273. name: "Front (NSFW)",
  3274. image: {
  3275. source: "./media/characters/talan/front-nsfw.svg",
  3276. bottom: 29 / 3734
  3277. }
  3278. },
  3279. sideNsfw: {
  3280. height: math.unit(4, "meter"),
  3281. weight: math.unit(150, "kg"),
  3282. name: "Side (NSFW)",
  3283. image: {
  3284. source: "./media/characters/talan/side-nsfw.svg",
  3285. bottom: 29 / 3734
  3286. }
  3287. },
  3288. back: {
  3289. height: math.unit(4, "meter"),
  3290. weight: math.unit(150, "kg"),
  3291. name: "Back",
  3292. image: {
  3293. source: "./media/characters/talan/back.svg"
  3294. }
  3295. },
  3296. dickBottom: {
  3297. height: math.unit(0.621, "meter"),
  3298. name: "Dick (Bottom)",
  3299. image: {
  3300. source: "./media/characters/talan/dick-bottom.svg"
  3301. }
  3302. },
  3303. dickTop: {
  3304. height: math.unit(0.621, "meter"),
  3305. name: "Dick (Top)",
  3306. image: {
  3307. source: "./media/characters/talan/dick-top.svg"
  3308. }
  3309. },
  3310. dickSide: {
  3311. height: math.unit(0.305, "meter"),
  3312. name: "Dick (Side)",
  3313. image: {
  3314. source: "./media/characters/talan/dick-side.svg"
  3315. }
  3316. },
  3317. dickFront: {
  3318. height: math.unit(0.305, "meter"),
  3319. name: "Dick (Front)",
  3320. image: {
  3321. source: "./media/characters/talan/dick-front.svg"
  3322. }
  3323. },
  3324. },
  3325. [
  3326. {
  3327. name: "Normal",
  3328. height: math.unit(4, "meters")
  3329. },
  3330. {
  3331. name: "Macro",
  3332. height: math.unit(100, "meters")
  3333. },
  3334. {
  3335. name: "Megamacro",
  3336. height: math.unit(2, "miles"),
  3337. default: true
  3338. },
  3339. {
  3340. name: "Gigamacro",
  3341. height: math.unit(5000, "miles")
  3342. },
  3343. {
  3344. name: "Teramacro",
  3345. height: math.unit(100, "parsecs")
  3346. }
  3347. ]
  3348. ))
  3349. characterMakers.push(() => makeCharacter(
  3350. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3351. {
  3352. front: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(90, "kg"),
  3355. name: "Front",
  3356. image: {
  3357. source: "./media/characters/gael'rathus/front.svg"
  3358. }
  3359. },
  3360. frontAlt: {
  3361. height: math.unit(2, "meter"),
  3362. weight: math.unit(90, "kg"),
  3363. name: "Front (alt)",
  3364. image: {
  3365. source: "./media/characters/gael'rathus/front-alt.svg"
  3366. }
  3367. },
  3368. frontAlt2: {
  3369. height: math.unit(2, "meter"),
  3370. weight: math.unit(90, "kg"),
  3371. name: "Front (alt 2)",
  3372. image: {
  3373. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3374. }
  3375. }
  3376. },
  3377. [
  3378. {
  3379. name: "Normal",
  3380. height: math.unit(9, "feet"),
  3381. default: true
  3382. },
  3383. {
  3384. name: "Large",
  3385. height: math.unit(25, "feet")
  3386. },
  3387. {
  3388. name: "Macro",
  3389. height: math.unit(0.25, "miles")
  3390. },
  3391. {
  3392. name: "Megamacro",
  3393. height: math.unit(10, "miles")
  3394. }
  3395. ]
  3396. ))
  3397. characterMakers.push(() => makeCharacter(
  3398. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3399. {
  3400. side: {
  3401. height: math.unit(2, "meter"),
  3402. weight: math.unit(140, "kg"),
  3403. name: "Side",
  3404. image: {
  3405. source: "./media/characters/sosha/side.svg",
  3406. bottom: 0.042
  3407. }
  3408. },
  3409. },
  3410. [
  3411. {
  3412. name: "Normal",
  3413. height: math.unit(12, "feet"),
  3414. default: true
  3415. }
  3416. ]
  3417. ))
  3418. characterMakers.push(() => makeCharacter(
  3419. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3420. {
  3421. side: {
  3422. height: math.unit(5 + 5 / 12, "feet"),
  3423. weight: math.unit(170, "kg"),
  3424. name: "Side",
  3425. image: {
  3426. source: "./media/characters/runnola/side.svg",
  3427. extra: 741 / 448,
  3428. bottom: 0.05
  3429. }
  3430. },
  3431. },
  3432. [
  3433. {
  3434. name: "Small",
  3435. height: math.unit(3, "feet")
  3436. },
  3437. {
  3438. name: "Normal",
  3439. height: math.unit(5 + 5 / 12, "feet"),
  3440. default: true
  3441. },
  3442. {
  3443. name: "Big",
  3444. height: math.unit(10, "feet")
  3445. },
  3446. ]
  3447. ))
  3448. characterMakers.push(() => makeCharacter(
  3449. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3450. {
  3451. front: {
  3452. height: math.unit(2, "meter"),
  3453. weight: math.unit(50, "kg"),
  3454. name: "Front",
  3455. image: {
  3456. source: "./media/characters/kurribird/front.svg",
  3457. bottom: 0.015
  3458. }
  3459. },
  3460. frontAlt: {
  3461. height: math.unit(1.5, "meter"),
  3462. weight: math.unit(50, "kg"),
  3463. name: "Front (Alt)",
  3464. image: {
  3465. source: "./media/characters/kurribird/front-alt.svg",
  3466. extra: 1.45
  3467. }
  3468. },
  3469. },
  3470. [
  3471. {
  3472. name: "Normal",
  3473. height: math.unit(7, "feet")
  3474. },
  3475. {
  3476. name: "Big",
  3477. height: math.unit(12, "feet"),
  3478. default: true
  3479. },
  3480. {
  3481. name: "Macro",
  3482. height: math.unit(1500, "feet")
  3483. },
  3484. {
  3485. name: "Megamacro",
  3486. height: math.unit(2, "miles")
  3487. }
  3488. ]
  3489. ))
  3490. characterMakers.push(() => makeCharacter(
  3491. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3492. {
  3493. front: {
  3494. height: math.unit(2, "meter"),
  3495. weight: math.unit(80, "kg"),
  3496. name: "Front",
  3497. image: {
  3498. source: "./media/characters/elbial/front.svg",
  3499. extra: 1643 / 1556,
  3500. bottom: 60.2 / 1696
  3501. }
  3502. },
  3503. side: {
  3504. height: math.unit(2, "meter"),
  3505. weight: math.unit(80, "kg"),
  3506. name: "Side",
  3507. image: {
  3508. source: "./media/characters/elbial/side.svg",
  3509. extra: 1601/1528,
  3510. bottom: 97/1698
  3511. }
  3512. },
  3513. back: {
  3514. height: math.unit(2, "meter"),
  3515. weight: math.unit(80, "kg"),
  3516. name: "Back",
  3517. image: {
  3518. source: "./media/characters/elbial/back.svg",
  3519. extra: 1653/1569,
  3520. bottom: 20/1673
  3521. }
  3522. },
  3523. frontDressed: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(80, "kg"),
  3526. name: "Front (Dressed)",
  3527. image: {
  3528. source: "./media/characters/elbial/front-dressed.svg",
  3529. extra: 1638/1569,
  3530. bottom: 70/1708
  3531. }
  3532. },
  3533. genitals: {
  3534. height: math.unit(2 / 3.367, "meter"),
  3535. name: "Genitals",
  3536. image: {
  3537. source: "./media/characters/elbial/genitals.svg"
  3538. }
  3539. },
  3540. },
  3541. [
  3542. {
  3543. name: "Large",
  3544. height: math.unit(100, "feet")
  3545. },
  3546. {
  3547. name: "Macro",
  3548. height: math.unit(500, "feet"),
  3549. default: true
  3550. },
  3551. {
  3552. name: "Megamacro",
  3553. height: math.unit(10, "miles")
  3554. },
  3555. {
  3556. name: "Gigamacro",
  3557. height: math.unit(25000, "miles")
  3558. },
  3559. {
  3560. name: "Full-Size",
  3561. height: math.unit(8000000, "gigaparsecs")
  3562. }
  3563. ]
  3564. ))
  3565. characterMakers.push(() => makeCharacter(
  3566. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3567. {
  3568. front: {
  3569. height: math.unit(2, "meter"),
  3570. weight: math.unit(60, "kg"),
  3571. name: "Front",
  3572. image: {
  3573. source: "./media/characters/noah/front.svg"
  3574. }
  3575. },
  3576. talons: {
  3577. height: math.unit(0.315, "meter"),
  3578. name: "Talons",
  3579. image: {
  3580. source: "./media/characters/noah/talons.svg"
  3581. }
  3582. }
  3583. },
  3584. [
  3585. {
  3586. name: "Large",
  3587. height: math.unit(50, "feet")
  3588. },
  3589. {
  3590. name: "Macro",
  3591. height: math.unit(750, "feet"),
  3592. default: true
  3593. },
  3594. {
  3595. name: "Megamacro",
  3596. height: math.unit(50, "miles")
  3597. },
  3598. {
  3599. name: "Gigamacro",
  3600. height: math.unit(100000, "miles")
  3601. },
  3602. {
  3603. name: "Full-Size",
  3604. height: math.unit(3000000000, "miles")
  3605. }
  3606. ]
  3607. ))
  3608. characterMakers.push(() => makeCharacter(
  3609. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3610. {
  3611. front: {
  3612. height: math.unit(2, "meter"),
  3613. weight: math.unit(80, "kg"),
  3614. name: "Front",
  3615. image: {
  3616. source: "./media/characters/natalya/front.svg"
  3617. }
  3618. },
  3619. back: {
  3620. height: math.unit(2, "meter"),
  3621. weight: math.unit(80, "kg"),
  3622. name: "Back",
  3623. image: {
  3624. source: "./media/characters/natalya/back.svg"
  3625. }
  3626. }
  3627. },
  3628. [
  3629. {
  3630. name: "Normal",
  3631. height: math.unit(150, "feet"),
  3632. default: true
  3633. },
  3634. {
  3635. name: "Megamacro",
  3636. height: math.unit(5, "miles")
  3637. },
  3638. {
  3639. name: "Full-Size",
  3640. height: math.unit(600, "kiloparsecs")
  3641. }
  3642. ]
  3643. ))
  3644. characterMakers.push(() => makeCharacter(
  3645. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3646. {
  3647. front: {
  3648. height: math.unit(2, "meter"),
  3649. weight: math.unit(50, "kg"),
  3650. name: "Front",
  3651. image: {
  3652. source: "./media/characters/erestrebah/front.svg",
  3653. extra: 1262/1162,
  3654. bottom: 96/1358
  3655. }
  3656. },
  3657. back: {
  3658. height: math.unit(2, "meter"),
  3659. weight: math.unit(50, "kg"),
  3660. name: "Back",
  3661. image: {
  3662. source: "./media/characters/erestrebah/back.svg",
  3663. extra: 1257/1139,
  3664. bottom: 13/1270
  3665. }
  3666. },
  3667. wing: {
  3668. height: math.unit(2, "meter"),
  3669. weight: math.unit(50, "kg"),
  3670. name: "Wing",
  3671. image: {
  3672. source: "./media/characters/erestrebah/wing.svg",
  3673. extra: 1262/1162,
  3674. bottom: 96/1358
  3675. }
  3676. },
  3677. mouth: {
  3678. height: math.unit(0.39, "feet"),
  3679. name: "Mouth",
  3680. image: {
  3681. source: "./media/characters/erestrebah/mouth.svg"
  3682. }
  3683. }
  3684. },
  3685. [
  3686. {
  3687. name: "Normal",
  3688. height: math.unit(10, "feet")
  3689. },
  3690. {
  3691. name: "Large",
  3692. height: math.unit(50, "feet"),
  3693. default: true
  3694. },
  3695. {
  3696. name: "Macro",
  3697. height: math.unit(300, "feet")
  3698. },
  3699. {
  3700. name: "Macro+",
  3701. height: math.unit(750, "feet")
  3702. },
  3703. {
  3704. name: "Megamacro",
  3705. height: math.unit(3, "miles")
  3706. }
  3707. ]
  3708. ))
  3709. characterMakers.push(() => makeCharacter(
  3710. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3711. {
  3712. front: {
  3713. height: math.unit(2, "meter"),
  3714. weight: math.unit(80, "kg"),
  3715. name: "Front",
  3716. image: {
  3717. source: "./media/characters/jennifer/front.svg",
  3718. bottom: 0.11,
  3719. extra: 1.16
  3720. }
  3721. },
  3722. frontAlt: {
  3723. height: math.unit(2, "meter"),
  3724. weight: math.unit(80, "kg"),
  3725. name: "Front (Alt)",
  3726. image: {
  3727. source: "./media/characters/jennifer/front-alt.svg"
  3728. }
  3729. }
  3730. },
  3731. [
  3732. {
  3733. name: "Canon Height",
  3734. height: math.unit(120, "feet"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Macro+",
  3739. height: math.unit(300, "feet")
  3740. },
  3741. {
  3742. name: "Megamacro",
  3743. height: math.unit(20000, "feet")
  3744. }
  3745. ]
  3746. ))
  3747. characterMakers.push(() => makeCharacter(
  3748. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3749. {
  3750. front: {
  3751. height: math.unit(2, "meter"),
  3752. weight: math.unit(50, "kg"),
  3753. name: "Front",
  3754. image: {
  3755. source: "./media/characters/kalista/front.svg",
  3756. extra: 1314/1145,
  3757. bottom: 101/1415
  3758. }
  3759. },
  3760. back: {
  3761. height: math.unit(2, "meter"),
  3762. weight: math.unit(50, "kg"),
  3763. name: "Back",
  3764. image: {
  3765. source: "./media/characters/kalista/back.svg",
  3766. extra: 1366 / 1156,
  3767. bottom: 33.9 / 1362.78
  3768. }
  3769. }
  3770. },
  3771. [
  3772. {
  3773. name: "Uncomfortably Small",
  3774. height: math.unit(10, "feet")
  3775. },
  3776. {
  3777. name: "Small",
  3778. height: math.unit(30, "feet")
  3779. },
  3780. {
  3781. name: "Macro",
  3782. height: math.unit(100, "feet"),
  3783. default: true
  3784. },
  3785. {
  3786. name: "Macro+",
  3787. height: math.unit(2000, "feet")
  3788. },
  3789. {
  3790. name: "True Form",
  3791. height: math.unit(8924, "miles")
  3792. }
  3793. ]
  3794. ))
  3795. characterMakers.push(() => makeCharacter(
  3796. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3797. {
  3798. front: {
  3799. height: math.unit(2, "meter"),
  3800. weight: math.unit(120, "kg"),
  3801. name: "Front",
  3802. image: {
  3803. source: "./media/characters/ggv/front.svg"
  3804. }
  3805. },
  3806. side: {
  3807. height: math.unit(2, "meter"),
  3808. weight: math.unit(120, "kg"),
  3809. name: "Side",
  3810. image: {
  3811. source: "./media/characters/ggv/side.svg"
  3812. }
  3813. }
  3814. },
  3815. [
  3816. {
  3817. name: "Extremely Puny",
  3818. height: math.unit(9 + 5 / 12, "feet")
  3819. },
  3820. {
  3821. name: "Horribly Small",
  3822. height: math.unit(47.7, "miles"),
  3823. default: true
  3824. },
  3825. {
  3826. name: "Reasonably Sized",
  3827. height: math.unit(25000, "parsecs")
  3828. },
  3829. {
  3830. name: "Slightly Uncompressed",
  3831. height: math.unit(7.77e31, "parsecs")
  3832. },
  3833. {
  3834. name: "Omniversal",
  3835. height: math.unit(1e300, "meters")
  3836. },
  3837. ]
  3838. ))
  3839. characterMakers.push(() => makeCharacter(
  3840. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3841. {
  3842. front: {
  3843. height: math.unit(2, "meter"),
  3844. weight: math.unit(75, "lb"),
  3845. name: "Front",
  3846. image: {
  3847. source: "./media/characters/napalm/front.svg"
  3848. }
  3849. },
  3850. back: {
  3851. height: math.unit(2, "meter"),
  3852. weight: math.unit(75, "lb"),
  3853. name: "Back",
  3854. image: {
  3855. source: "./media/characters/napalm/back.svg"
  3856. }
  3857. }
  3858. },
  3859. [
  3860. {
  3861. name: "Standard",
  3862. height: math.unit(55, "feet"),
  3863. default: true
  3864. }
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3869. {
  3870. front: {
  3871. height: math.unit(7 + 5 / 6, "feet"),
  3872. weight: math.unit(325, "lb"),
  3873. name: "Front",
  3874. image: {
  3875. source: "./media/characters/asana/front.svg",
  3876. extra: 1133 / 1060,
  3877. bottom: 15.2 / 1148.6
  3878. }
  3879. },
  3880. back: {
  3881. height: math.unit(7 + 5 / 6, "feet"),
  3882. weight: math.unit(325, "lb"),
  3883. name: "Back",
  3884. image: {
  3885. source: "./media/characters/asana/back.svg",
  3886. extra: 1114 / 1043,
  3887. bottom: 5 / 1120
  3888. }
  3889. },
  3890. dressedDark: {
  3891. height: math.unit(7 + 5 / 6, "feet"),
  3892. weight: math.unit(325, "lb"),
  3893. name: "Dressed (Dark)",
  3894. image: {
  3895. source: "./media/characters/asana/dressed-dark.svg",
  3896. extra: 1133 / 1060,
  3897. bottom: 15.2 / 1148.6
  3898. }
  3899. },
  3900. dressedLight: {
  3901. height: math.unit(7 + 5 / 6, "feet"),
  3902. weight: math.unit(325, "lb"),
  3903. name: "Dressed (Light)",
  3904. image: {
  3905. source: "./media/characters/asana/dressed-light.svg",
  3906. extra: 1133 / 1060,
  3907. bottom: 15.2 / 1148.6
  3908. }
  3909. },
  3910. },
  3911. [
  3912. {
  3913. name: "Standard",
  3914. height: math.unit(7 + 5 / 6, "feet"),
  3915. default: true
  3916. },
  3917. {
  3918. name: "Large",
  3919. height: math.unit(10, "meters")
  3920. },
  3921. {
  3922. name: "Macro",
  3923. height: math.unit(2500, "meters")
  3924. },
  3925. {
  3926. name: "Megamacro",
  3927. height: math.unit(5e6, "meters")
  3928. },
  3929. {
  3930. name: "Examacro",
  3931. height: math.unit(5e12, "lightyears")
  3932. },
  3933. {
  3934. name: "Max Size",
  3935. height: math.unit(1e31, "lightyears")
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3941. {
  3942. front: {
  3943. height: math.unit(2, "meter"),
  3944. weight: math.unit(60, "kg"),
  3945. name: "Front",
  3946. image: {
  3947. source: "./media/characters/ebony/front.svg",
  3948. bottom: 0.03,
  3949. extra: 1045 / 810 + 0.03
  3950. }
  3951. },
  3952. side: {
  3953. height: math.unit(2, "meter"),
  3954. weight: math.unit(60, "kg"),
  3955. name: "Side",
  3956. image: {
  3957. source: "./media/characters/ebony/side.svg",
  3958. bottom: 0.03,
  3959. extra: 1045 / 810 + 0.03
  3960. }
  3961. },
  3962. back: {
  3963. height: math.unit(2, "meter"),
  3964. weight: math.unit(60, "kg"),
  3965. name: "Back",
  3966. image: {
  3967. source: "./media/characters/ebony/back.svg",
  3968. bottom: 0.01,
  3969. extra: 1045 / 810 + 0.01
  3970. }
  3971. },
  3972. },
  3973. [
  3974. // TODO check why I did this lol
  3975. {
  3976. name: "Standard",
  3977. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3978. default: true
  3979. },
  3980. {
  3981. name: "Macro",
  3982. height: math.unit(200, "feet")
  3983. },
  3984. {
  3985. name: "Gigamacro",
  3986. height: math.unit(13000, "km")
  3987. }
  3988. ]
  3989. ))
  3990. characterMakers.push(() => makeCharacter(
  3991. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3992. {
  3993. front: {
  3994. height: math.unit(6, "feet"),
  3995. weight: math.unit(175, "lb"),
  3996. name: "Front",
  3997. image: {
  3998. source: "./media/characters/mountain/front.svg",
  3999. extra: 972 / 955,
  4000. bottom: 64 / 1036.6
  4001. }
  4002. },
  4003. back: {
  4004. height: math.unit(6, "feet"),
  4005. weight: math.unit(175, "lb"),
  4006. name: "Back",
  4007. image: {
  4008. source: "./media/characters/mountain/back.svg",
  4009. extra: 970 / 950,
  4010. bottom: 28.25 / 999
  4011. }
  4012. },
  4013. },
  4014. [
  4015. {
  4016. name: "Large",
  4017. height: math.unit(20, "meters")
  4018. },
  4019. {
  4020. name: "Macro",
  4021. height: math.unit(300, "meters")
  4022. },
  4023. {
  4024. name: "Gigamacro",
  4025. height: math.unit(10000, "km"),
  4026. default: true
  4027. },
  4028. {
  4029. name: "Examacro",
  4030. height: math.unit(10e9, "lightyears")
  4031. }
  4032. ]
  4033. ))
  4034. characterMakers.push(() => makeCharacter(
  4035. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4036. {
  4037. front: {
  4038. height: math.unit(8, "feet"),
  4039. weight: math.unit(500, "lb"),
  4040. name: "Front",
  4041. image: {
  4042. source: "./media/characters/rick/front.svg"
  4043. }
  4044. }
  4045. },
  4046. [
  4047. {
  4048. name: "Normal",
  4049. height: math.unit(8, "feet"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Macro",
  4054. height: math.unit(5, "km")
  4055. }
  4056. ]
  4057. ))
  4058. characterMakers.push(() => makeCharacter(
  4059. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4060. {
  4061. front: {
  4062. height: math.unit(8, "feet"),
  4063. weight: math.unit(120, "lb"),
  4064. name: "Front",
  4065. image: {
  4066. source: "./media/characters/ona/front.svg"
  4067. }
  4068. },
  4069. frontAlt: {
  4070. height: math.unit(8, "feet"),
  4071. weight: math.unit(120, "lb"),
  4072. name: "Front (Alt)",
  4073. image: {
  4074. source: "./media/characters/ona/front-alt.svg"
  4075. }
  4076. },
  4077. back: {
  4078. height: math.unit(8, "feet"),
  4079. weight: math.unit(120, "lb"),
  4080. name: "Back",
  4081. image: {
  4082. source: "./media/characters/ona/back.svg"
  4083. }
  4084. },
  4085. foot: {
  4086. height: math.unit(1.1, "feet"),
  4087. name: "Foot",
  4088. image: {
  4089. source: "./media/characters/ona/foot.svg"
  4090. }
  4091. }
  4092. },
  4093. [
  4094. {
  4095. name: "Megamacro",
  4096. height: math.unit(70, "km"),
  4097. default: true
  4098. },
  4099. {
  4100. name: "Gigamacro",
  4101. height: math.unit(681818, "miles")
  4102. },
  4103. {
  4104. name: "Examacro",
  4105. height: math.unit(3800000, "lightyears")
  4106. },
  4107. ]
  4108. ))
  4109. characterMakers.push(() => makeCharacter(
  4110. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4111. {
  4112. front: {
  4113. height: math.unit(12, "feet"),
  4114. weight: math.unit(3000, "lb"),
  4115. name: "Front",
  4116. image: {
  4117. source: "./media/characters/mech/front.svg",
  4118. extra: 2900 / 2770,
  4119. bottom: 110 / 3010
  4120. }
  4121. },
  4122. back: {
  4123. height: math.unit(12, "feet"),
  4124. weight: math.unit(3000, "lb"),
  4125. name: "Back",
  4126. image: {
  4127. source: "./media/characters/mech/back.svg",
  4128. extra: 3011 / 2890,
  4129. bottom: 94 / 3105
  4130. }
  4131. },
  4132. maw: {
  4133. height: math.unit(3.07, "feet"),
  4134. name: "Maw",
  4135. image: {
  4136. source: "./media/characters/mech/maw.svg"
  4137. }
  4138. },
  4139. head: {
  4140. height: math.unit(2.82, "feet"),
  4141. name: "Head",
  4142. image: {
  4143. source: "./media/characters/mech/head.svg"
  4144. }
  4145. },
  4146. dick: {
  4147. height: math.unit(1.43, "feet"),
  4148. name: "Dick",
  4149. image: {
  4150. source: "./media/characters/mech/dick.svg"
  4151. }
  4152. },
  4153. },
  4154. [
  4155. {
  4156. name: "Normal",
  4157. height: math.unit(12, "feet")
  4158. },
  4159. {
  4160. name: "Macro",
  4161. height: math.unit(300, "feet"),
  4162. default: true
  4163. },
  4164. {
  4165. name: "Macro+",
  4166. height: math.unit(1500, "feet")
  4167. },
  4168. ]
  4169. ))
  4170. characterMakers.push(() => makeCharacter(
  4171. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4172. {
  4173. front: {
  4174. height: math.unit(1.3, "meter"),
  4175. weight: math.unit(30, "kg"),
  4176. name: "Front",
  4177. image: {
  4178. source: "./media/characters/gregory/front.svg",
  4179. }
  4180. }
  4181. },
  4182. [
  4183. {
  4184. name: "Normal",
  4185. height: math.unit(1.3, "meter"),
  4186. default: true
  4187. },
  4188. {
  4189. name: "Macro",
  4190. height: math.unit(20, "meter")
  4191. }
  4192. ]
  4193. ))
  4194. characterMakers.push(() => makeCharacter(
  4195. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4196. {
  4197. front: {
  4198. height: math.unit(2.8, "meter"),
  4199. weight: math.unit(200, "kg"),
  4200. name: "Front",
  4201. image: {
  4202. source: "./media/characters/elory/front.svg",
  4203. }
  4204. }
  4205. },
  4206. [
  4207. {
  4208. name: "Normal",
  4209. height: math.unit(2.8, "meter"),
  4210. default: true
  4211. },
  4212. {
  4213. name: "Macro",
  4214. height: math.unit(38, "meter")
  4215. }
  4216. ]
  4217. ))
  4218. characterMakers.push(() => makeCharacter(
  4219. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4220. {
  4221. front: {
  4222. height: math.unit(470, "feet"),
  4223. weight: math.unit(924, "tons"),
  4224. name: "Front",
  4225. image: {
  4226. source: "./media/characters/angelpatamon/front.svg",
  4227. }
  4228. }
  4229. },
  4230. [
  4231. {
  4232. name: "Normal",
  4233. height: math.unit(470, "feet"),
  4234. default: true
  4235. },
  4236. {
  4237. name: "Deity Size I",
  4238. height: math.unit(28651.2, "km")
  4239. },
  4240. {
  4241. name: "Deity Size II",
  4242. height: math.unit(171907.2, "km")
  4243. }
  4244. ]
  4245. ))
  4246. characterMakers.push(() => makeCharacter(
  4247. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4248. {
  4249. side: {
  4250. height: math.unit(7.2, "meter"),
  4251. weight: math.unit(8.2, "tons"),
  4252. name: "Side",
  4253. image: {
  4254. source: "./media/characters/cryae/side.svg",
  4255. extra: 3500 / 1500
  4256. }
  4257. }
  4258. },
  4259. [
  4260. {
  4261. name: "Normal",
  4262. height: math.unit(7.2, "meter"),
  4263. default: true
  4264. }
  4265. ]
  4266. ))
  4267. characterMakers.push(() => makeCharacter(
  4268. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4269. {
  4270. front: {
  4271. height: math.unit(6, "feet"),
  4272. weight: math.unit(175, "lb"),
  4273. name: "Front",
  4274. image: {
  4275. source: "./media/characters/xera/front.svg",
  4276. extra: 2377 / 1972,
  4277. bottom: 75.5 / 2452
  4278. }
  4279. },
  4280. side: {
  4281. height: math.unit(6, "feet"),
  4282. weight: math.unit(175, "lb"),
  4283. name: "Side",
  4284. image: {
  4285. source: "./media/characters/xera/side.svg",
  4286. extra: 2345 / 2019,
  4287. bottom: 39.7 / 2384
  4288. }
  4289. },
  4290. back: {
  4291. height: math.unit(6, "feet"),
  4292. weight: math.unit(175, "lb"),
  4293. name: "Back",
  4294. image: {
  4295. source: "./media/characters/xera/back.svg",
  4296. extra: 2095 / 1984,
  4297. bottom: 67 / 2166
  4298. }
  4299. },
  4300. },
  4301. [
  4302. {
  4303. name: "Small",
  4304. height: math.unit(10, "feet")
  4305. },
  4306. {
  4307. name: "Macro",
  4308. height: math.unit(500, "meters"),
  4309. default: true
  4310. },
  4311. {
  4312. name: "Macro+",
  4313. height: math.unit(10, "km")
  4314. },
  4315. {
  4316. name: "Gigamacro",
  4317. height: math.unit(25000, "km")
  4318. },
  4319. {
  4320. name: "Teramacro",
  4321. height: math.unit(3e6, "km")
  4322. }
  4323. ]
  4324. ))
  4325. characterMakers.push(() => makeCharacter(
  4326. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4327. {
  4328. front: {
  4329. height: math.unit(6, "feet"),
  4330. weight: math.unit(175, "lb"),
  4331. name: "Front",
  4332. image: {
  4333. source: "./media/characters/nebula/front.svg",
  4334. extra: 2566 / 2362,
  4335. bottom: 81 / 2644
  4336. }
  4337. }
  4338. },
  4339. [
  4340. {
  4341. name: "Small",
  4342. height: math.unit(4.5, "meters")
  4343. },
  4344. {
  4345. name: "Macro",
  4346. height: math.unit(1500, "meters"),
  4347. default: true
  4348. },
  4349. {
  4350. name: "Megamacro",
  4351. height: math.unit(150, "km")
  4352. },
  4353. {
  4354. name: "Gigamacro",
  4355. height: math.unit(27000, "km")
  4356. }
  4357. ]
  4358. ))
  4359. characterMakers.push(() => makeCharacter(
  4360. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4361. {
  4362. front: {
  4363. height: math.unit(6, "feet"),
  4364. weight: math.unit(225, "lb"),
  4365. name: "Front",
  4366. image: {
  4367. source: "./media/characters/abysgar/front.svg"
  4368. }
  4369. }
  4370. },
  4371. [
  4372. {
  4373. name: "Small",
  4374. height: math.unit(4.5, "meters")
  4375. },
  4376. {
  4377. name: "Macro",
  4378. height: math.unit(1250, "meters"),
  4379. default: true
  4380. },
  4381. {
  4382. name: "Megamacro",
  4383. height: math.unit(125, "km")
  4384. },
  4385. {
  4386. name: "Gigamacro",
  4387. height: math.unit(26000, "km")
  4388. }
  4389. ]
  4390. ))
  4391. characterMakers.push(() => makeCharacter(
  4392. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4393. {
  4394. front: {
  4395. height: math.unit(6, "feet"),
  4396. weight: math.unit(180, "lb"),
  4397. name: "Front",
  4398. image: {
  4399. source: "./media/characters/yakuz/front.svg"
  4400. }
  4401. }
  4402. },
  4403. [
  4404. {
  4405. name: "Small",
  4406. height: math.unit(5, "meters")
  4407. },
  4408. {
  4409. name: "Macro",
  4410. height: math.unit(1500, "meters"),
  4411. default: true
  4412. },
  4413. {
  4414. name: "Megamacro",
  4415. height: math.unit(200, "km")
  4416. },
  4417. {
  4418. name: "Gigamacro",
  4419. height: math.unit(100000, "km")
  4420. }
  4421. ]
  4422. ))
  4423. characterMakers.push(() => makeCharacter(
  4424. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4425. {
  4426. front: {
  4427. height: math.unit(6, "feet"),
  4428. weight: math.unit(175, "lb"),
  4429. name: "Front",
  4430. image: {
  4431. source: "./media/characters/mirova/front.svg",
  4432. extra: 3334 / 3071,
  4433. bottom: 42 / 3375.6
  4434. }
  4435. }
  4436. },
  4437. [
  4438. {
  4439. name: "Small",
  4440. height: math.unit(5, "meters")
  4441. },
  4442. {
  4443. name: "Macro",
  4444. height: math.unit(900, "meters"),
  4445. default: true
  4446. },
  4447. {
  4448. name: "Megamacro",
  4449. height: math.unit(135, "km")
  4450. },
  4451. {
  4452. name: "Gigamacro",
  4453. height: math.unit(20000, "km")
  4454. }
  4455. ]
  4456. ))
  4457. characterMakers.push(() => makeCharacter(
  4458. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4459. {
  4460. side: {
  4461. height: math.unit(28.35, "feet"),
  4462. weight: math.unit(99.75, "tons"),
  4463. name: "Side",
  4464. image: {
  4465. source: "./media/characters/asana-mech/side.svg",
  4466. extra: 923 / 699,
  4467. bottom: 50 / 975
  4468. }
  4469. },
  4470. chaingun: {
  4471. height: math.unit(7, "feet"),
  4472. weight: math.unit(2400, "lb"),
  4473. name: "Chaingun",
  4474. image: {
  4475. source: "./media/characters/asana-mech/chaingun.svg"
  4476. }
  4477. },
  4478. laser: {
  4479. height: math.unit(7.12, "feet"),
  4480. weight: math.unit(2000, "lb"),
  4481. name: "Laser",
  4482. image: {
  4483. source: "./media/characters/asana-mech/laser.svg"
  4484. }
  4485. },
  4486. },
  4487. [
  4488. {
  4489. name: "Normal",
  4490. height: math.unit(28.35, "feet"),
  4491. default: true
  4492. },
  4493. {
  4494. name: "Macro",
  4495. height: math.unit(2500, "feet")
  4496. },
  4497. {
  4498. name: "Megamacro",
  4499. height: math.unit(25, "miles")
  4500. },
  4501. {
  4502. name: "Examacro",
  4503. height: math.unit(6e8, "lightyears")
  4504. },
  4505. ]
  4506. ))
  4507. characterMakers.push(() => makeCharacter(
  4508. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4509. {
  4510. front: {
  4511. height: math.unit(5, "meters"),
  4512. weight: math.unit(1000, "kg"),
  4513. name: "Front",
  4514. image: {
  4515. source: "./media/characters/asche/front.svg",
  4516. extra: 1258 / 1190,
  4517. bottom: 47 / 1305
  4518. }
  4519. },
  4520. frontUnderwear: {
  4521. height: math.unit(5, "meters"),
  4522. weight: math.unit(1000, "kg"),
  4523. name: "Front (Underwear)",
  4524. image: {
  4525. source: "./media/characters/asche/front-underwear.svg",
  4526. extra: 1258 / 1190,
  4527. bottom: 47 / 1305
  4528. }
  4529. },
  4530. frontDressed: {
  4531. height: math.unit(5, "meters"),
  4532. weight: math.unit(1000, "kg"),
  4533. name: "Front (Dressed)",
  4534. image: {
  4535. source: "./media/characters/asche/front-dressed.svg",
  4536. extra: 1258 / 1190,
  4537. bottom: 47 / 1305
  4538. }
  4539. },
  4540. frontArmor: {
  4541. height: math.unit(5, "meters"),
  4542. weight: math.unit(1000, "kg"),
  4543. name: "Front (Armored)",
  4544. image: {
  4545. source: "./media/characters/asche/front-armored.svg",
  4546. extra: 1374 / 1308,
  4547. bottom: 23 / 1397
  4548. }
  4549. },
  4550. mp724: {
  4551. height: math.unit(0.96, "meters"),
  4552. weight: math.unit(38, "kg"),
  4553. name: "H&K MP724",
  4554. image: {
  4555. source: "./media/characters/asche/h&k-mp724.svg"
  4556. }
  4557. },
  4558. side: {
  4559. height: math.unit(5, "meters"),
  4560. weight: math.unit(1000, "kg"),
  4561. name: "Side",
  4562. image: {
  4563. source: "./media/characters/asche/side.svg",
  4564. extra: 1717 / 1609,
  4565. bottom: 0.005
  4566. }
  4567. },
  4568. back: {
  4569. height: math.unit(5, "meters"),
  4570. weight: math.unit(1000, "kg"),
  4571. name: "Back",
  4572. image: {
  4573. source: "./media/characters/asche/back.svg",
  4574. extra: 1570 / 1501
  4575. }
  4576. },
  4577. },
  4578. [
  4579. {
  4580. name: "DEFCON 5",
  4581. height: math.unit(5, "meters")
  4582. },
  4583. {
  4584. name: "DEFCON 4",
  4585. height: math.unit(500, "meters"),
  4586. default: true
  4587. },
  4588. {
  4589. name: "DEFCON 3",
  4590. height: math.unit(5, "km")
  4591. },
  4592. {
  4593. name: "DEFCON 2",
  4594. height: math.unit(500, "km")
  4595. },
  4596. {
  4597. name: "DEFCON 1",
  4598. height: math.unit(500000, "km")
  4599. },
  4600. {
  4601. name: "DEFCON 0",
  4602. height: math.unit(3, "gigaparsecs")
  4603. },
  4604. ]
  4605. ))
  4606. characterMakers.push(() => makeCharacter(
  4607. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4608. {
  4609. front: {
  4610. height: math.unit(2, "meters"),
  4611. weight: math.unit(76, "kg"),
  4612. name: "Front",
  4613. image: {
  4614. source: "./media/characters/gale/front.svg"
  4615. }
  4616. },
  4617. frontAlt1: {
  4618. height: math.unit(2, "meters"),
  4619. weight: math.unit(76, "kg"),
  4620. name: "Front (Alt 1)",
  4621. image: {
  4622. source: "./media/characters/gale/front-alt-1.svg"
  4623. }
  4624. },
  4625. frontAlt2: {
  4626. height: math.unit(2, "meters"),
  4627. weight: math.unit(76, "kg"),
  4628. name: "Front (Alt 2)",
  4629. image: {
  4630. source: "./media/characters/gale/front-alt-2.svg"
  4631. }
  4632. },
  4633. },
  4634. [
  4635. {
  4636. name: "Normal",
  4637. height: math.unit(7, "feet")
  4638. },
  4639. {
  4640. name: "Macro",
  4641. height: math.unit(150, "feet"),
  4642. default: true
  4643. },
  4644. {
  4645. name: "Macro+",
  4646. height: math.unit(300, "feet")
  4647. },
  4648. ]
  4649. ))
  4650. characterMakers.push(() => makeCharacter(
  4651. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4652. {
  4653. front: {
  4654. height: math.unit(5 + 10/12, "feet"),
  4655. weight: math.unit(67, "kg"),
  4656. name: "Front",
  4657. image: {
  4658. source: "./media/characters/draylen/front.svg",
  4659. extra: 832/777,
  4660. bottom: 85/917
  4661. }
  4662. }
  4663. },
  4664. [
  4665. {
  4666. name: "Normal",
  4667. height: math.unit(5 + 10/12, "feet")
  4668. },
  4669. {
  4670. name: "Macro",
  4671. height: math.unit(150, "feet"),
  4672. default: true
  4673. }
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4678. {
  4679. front: {
  4680. height: math.unit(7 + 9 / 12, "feet"),
  4681. weight: math.unit(379, "lbs"),
  4682. name: "Front",
  4683. image: {
  4684. source: "./media/characters/chez/front.svg"
  4685. }
  4686. },
  4687. side: {
  4688. height: math.unit(7 + 9 / 12, "feet"),
  4689. weight: math.unit(379, "lbs"),
  4690. name: "Side",
  4691. image: {
  4692. source: "./media/characters/chez/side.svg"
  4693. }
  4694. }
  4695. },
  4696. [
  4697. {
  4698. name: "Normal",
  4699. height: math.unit(7 + 9 / 12, "feet"),
  4700. default: true
  4701. },
  4702. {
  4703. name: "God King",
  4704. height: math.unit(9750000, "meters")
  4705. }
  4706. ]
  4707. ))
  4708. characterMakers.push(() => makeCharacter(
  4709. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4710. {
  4711. front: {
  4712. height: math.unit(6, "feet"),
  4713. weight: math.unit(275, "lbs"),
  4714. name: "Front",
  4715. image: {
  4716. source: "./media/characters/kaylum/front.svg",
  4717. bottom: 0.01,
  4718. extra: 1166 / 1031
  4719. }
  4720. },
  4721. frontWingless: {
  4722. height: math.unit(6, "feet"),
  4723. weight: math.unit(275, "lbs"),
  4724. name: "Front (Wingless)",
  4725. image: {
  4726. source: "./media/characters/kaylum/front-wingless.svg",
  4727. bottom: 0.01,
  4728. extra: 1117 / 1031
  4729. }
  4730. }
  4731. },
  4732. [
  4733. {
  4734. name: "Normal",
  4735. height: math.unit(3.05, "meters")
  4736. },
  4737. {
  4738. name: "Master",
  4739. height: math.unit(5.5, "meters")
  4740. },
  4741. {
  4742. name: "Rampage",
  4743. height: math.unit(19, "meters")
  4744. },
  4745. {
  4746. name: "Macro Lite",
  4747. height: math.unit(37, "meters")
  4748. },
  4749. {
  4750. name: "Hyper Predator",
  4751. height: math.unit(61, "meters")
  4752. },
  4753. {
  4754. name: "Macro",
  4755. height: math.unit(138, "meters"),
  4756. default: true
  4757. }
  4758. ]
  4759. ))
  4760. characterMakers.push(() => makeCharacter(
  4761. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4762. {
  4763. front: {
  4764. height: math.unit(6, "feet"),
  4765. weight: math.unit(150, "lbs"),
  4766. name: "Front",
  4767. image: {
  4768. source: "./media/characters/geta/front.svg"
  4769. }
  4770. }
  4771. },
  4772. [
  4773. {
  4774. name: "Micro",
  4775. height: math.unit(3, "inches"),
  4776. default: true
  4777. },
  4778. {
  4779. name: "Normal",
  4780. height: math.unit(5 + 5 / 12, "feet")
  4781. }
  4782. ]
  4783. ))
  4784. characterMakers.push(() => makeCharacter(
  4785. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4786. {
  4787. front: {
  4788. height: math.unit(6, "feet"),
  4789. weight: math.unit(300, "lbs"),
  4790. name: "Front",
  4791. image: {
  4792. source: "./media/characters/tyrnn/front.svg"
  4793. }
  4794. }
  4795. },
  4796. [
  4797. {
  4798. name: "Main Height",
  4799. height: math.unit(355, "feet"),
  4800. default: true
  4801. },
  4802. {
  4803. name: "Fave. Height",
  4804. height: math.unit(2400, "feet")
  4805. }
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4810. {
  4811. front: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(300, "lbs"),
  4814. name: "Front",
  4815. image: {
  4816. source: "./media/characters/appledectomy/front.svg"
  4817. }
  4818. }
  4819. },
  4820. [
  4821. {
  4822. name: "Macro",
  4823. height: math.unit(2500, "feet")
  4824. },
  4825. {
  4826. name: "Megamacro",
  4827. height: math.unit(50, "miles"),
  4828. default: true
  4829. },
  4830. {
  4831. name: "Gigamacro",
  4832. height: math.unit(5000, "miles")
  4833. },
  4834. {
  4835. name: "Teramacro",
  4836. height: math.unit(250000, "miles")
  4837. },
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4842. {
  4843. front: {
  4844. height: math.unit(6, "feet"),
  4845. weight: math.unit(200, "lbs"),
  4846. name: "Front",
  4847. image: {
  4848. source: "./media/characters/vulpes/front.svg",
  4849. extra: 573 / 543,
  4850. bottom: 0.033
  4851. }
  4852. },
  4853. side: {
  4854. height: math.unit(6, "feet"),
  4855. weight: math.unit(200, "lbs"),
  4856. name: "Side",
  4857. image: {
  4858. source: "./media/characters/vulpes/side.svg",
  4859. extra: 577 / 549,
  4860. bottom: 11 / 588
  4861. }
  4862. },
  4863. back: {
  4864. height: math.unit(6, "feet"),
  4865. weight: math.unit(200, "lbs"),
  4866. name: "Back",
  4867. image: {
  4868. source: "./media/characters/vulpes/back.svg",
  4869. extra: 573 / 549,
  4870. bottom: 20 / 593
  4871. }
  4872. },
  4873. feet: {
  4874. height: math.unit(1.276, "feet"),
  4875. name: "Feet",
  4876. image: {
  4877. source: "./media/characters/vulpes/feet.svg"
  4878. }
  4879. },
  4880. maw: {
  4881. height: math.unit(1.18, "feet"),
  4882. name: "Maw",
  4883. image: {
  4884. source: "./media/characters/vulpes/maw.svg"
  4885. }
  4886. },
  4887. },
  4888. [
  4889. {
  4890. name: "Micro",
  4891. height: math.unit(2, "inches")
  4892. },
  4893. {
  4894. name: "Normal",
  4895. height: math.unit(6.3, "feet")
  4896. },
  4897. {
  4898. name: "Macro",
  4899. height: math.unit(850, "feet")
  4900. },
  4901. {
  4902. name: "Megamacro",
  4903. height: math.unit(7500, "feet"),
  4904. default: true
  4905. },
  4906. {
  4907. name: "Gigamacro",
  4908. height: math.unit(570000, "miles")
  4909. }
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4914. {
  4915. front: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(210, "lbs"),
  4918. name: "Front",
  4919. image: {
  4920. source: "./media/characters/rain-fallen/front.svg"
  4921. }
  4922. },
  4923. side: {
  4924. height: math.unit(6, "feet"),
  4925. weight: math.unit(210, "lbs"),
  4926. name: "Side",
  4927. image: {
  4928. source: "./media/characters/rain-fallen/side.svg"
  4929. }
  4930. },
  4931. back: {
  4932. height: math.unit(6, "feet"),
  4933. weight: math.unit(210, "lbs"),
  4934. name: "Back",
  4935. image: {
  4936. source: "./media/characters/rain-fallen/back.svg"
  4937. }
  4938. },
  4939. feral: {
  4940. height: math.unit(9, "feet"),
  4941. weight: math.unit(700, "lbs"),
  4942. name: "Feral",
  4943. image: {
  4944. source: "./media/characters/rain-fallen/feral.svg"
  4945. }
  4946. },
  4947. },
  4948. [
  4949. {
  4950. name: "Meddling with Mortals",
  4951. height: math.unit(8 + 8/12, "feet")
  4952. },
  4953. {
  4954. name: "Normal",
  4955. height: math.unit(5, "meter")
  4956. },
  4957. {
  4958. name: "Macro",
  4959. height: math.unit(150, "meter"),
  4960. default: true
  4961. },
  4962. {
  4963. name: "Megamacro",
  4964. height: math.unit(278e6, "meter")
  4965. },
  4966. {
  4967. name: "Gigamacro",
  4968. height: math.unit(2e9, "meter")
  4969. },
  4970. {
  4971. name: "Teramacro",
  4972. height: math.unit(8e12, "meter")
  4973. },
  4974. {
  4975. name: "Devourer",
  4976. height: math.unit(14, "zettameters")
  4977. },
  4978. {
  4979. name: "Scarlet King",
  4980. height: math.unit(18, "yottameters")
  4981. },
  4982. {
  4983. name: "Void",
  4984. height: math.unit(1e88, "yottameters")
  4985. }
  4986. ]
  4987. ))
  4988. characterMakers.push(() => makeCharacter(
  4989. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4990. {
  4991. standing: {
  4992. height: math.unit(6, "feet"),
  4993. weight: math.unit(180, "lbs"),
  4994. name: "Standing",
  4995. image: {
  4996. source: "./media/characters/zaakira/standing.svg",
  4997. extra: 1599/1504,
  4998. bottom: 39/1638
  4999. }
  5000. },
  5001. laying: {
  5002. height: math.unit(3, "feet"),
  5003. weight: math.unit(180, "lbs"),
  5004. name: "Laying",
  5005. image: {
  5006. source: "./media/characters/zaakira/laying.svg"
  5007. }
  5008. },
  5009. },
  5010. [
  5011. {
  5012. name: "Normal",
  5013. height: math.unit(12, "feet")
  5014. },
  5015. {
  5016. name: "Macro",
  5017. height: math.unit(279, "feet"),
  5018. default: true
  5019. }
  5020. ]
  5021. ))
  5022. characterMakers.push(() => makeCharacter(
  5023. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5024. {
  5025. femSfw: {
  5026. height: math.unit(8, "feet"),
  5027. weight: math.unit(350, "lb"),
  5028. name: "Fem",
  5029. image: {
  5030. source: "./media/characters/sigvald/fem-sfw.svg",
  5031. extra: 182 / 164,
  5032. bottom: 8.7 / 190.5
  5033. }
  5034. },
  5035. femNsfw: {
  5036. height: math.unit(8, "feet"),
  5037. weight: math.unit(350, "lb"),
  5038. name: "Fem (NSFW)",
  5039. image: {
  5040. source: "./media/characters/sigvald/fem-nsfw.svg",
  5041. extra: 182 / 164,
  5042. bottom: 8.7 / 190.5
  5043. }
  5044. },
  5045. maleNsfw: {
  5046. height: math.unit(8, "feet"),
  5047. weight: math.unit(350, "lb"),
  5048. name: "Male (NSFW)",
  5049. image: {
  5050. source: "./media/characters/sigvald/male-nsfw.svg",
  5051. extra: 182 / 164,
  5052. bottom: 8.7 / 190.5
  5053. }
  5054. },
  5055. hermNsfw: {
  5056. height: math.unit(8, "feet"),
  5057. weight: math.unit(350, "lb"),
  5058. name: "Herm (NSFW)",
  5059. image: {
  5060. source: "./media/characters/sigvald/herm-nsfw.svg",
  5061. extra: 182 / 164,
  5062. bottom: 8.7 / 190.5
  5063. }
  5064. },
  5065. dick: {
  5066. height: math.unit(2.36, "feet"),
  5067. name: "Dick",
  5068. image: {
  5069. source: "./media/characters/sigvald/dick.svg"
  5070. }
  5071. },
  5072. eye: {
  5073. height: math.unit(0.31, "feet"),
  5074. name: "Eye",
  5075. image: {
  5076. source: "./media/characters/sigvald/eye.svg"
  5077. }
  5078. },
  5079. mouth: {
  5080. height: math.unit(0.92, "feet"),
  5081. name: "Mouth",
  5082. image: {
  5083. source: "./media/characters/sigvald/mouth.svg"
  5084. }
  5085. },
  5086. paws: {
  5087. height: math.unit(2.2, "feet"),
  5088. name: "Paws",
  5089. image: {
  5090. source: "./media/characters/sigvald/paws.svg"
  5091. }
  5092. }
  5093. },
  5094. [
  5095. {
  5096. name: "Normal",
  5097. height: math.unit(8, "feet")
  5098. },
  5099. {
  5100. name: "Large",
  5101. height: math.unit(12, "feet")
  5102. },
  5103. {
  5104. name: "Larger",
  5105. height: math.unit(20, "feet")
  5106. },
  5107. {
  5108. name: "Macro",
  5109. height: math.unit(150, "feet")
  5110. },
  5111. {
  5112. name: "Macro+",
  5113. height: math.unit(200, "feet"),
  5114. default: true
  5115. },
  5116. ]
  5117. ))
  5118. characterMakers.push(() => makeCharacter(
  5119. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5120. {
  5121. side: {
  5122. height: math.unit(12, "feet"),
  5123. weight: math.unit(2000, "kg"),
  5124. name: "Side",
  5125. image: {
  5126. source: "./media/characters/scott/side.svg",
  5127. extra: 754 / 724,
  5128. bottom: 0.069
  5129. }
  5130. },
  5131. upright: {
  5132. height: math.unit(12, "feet"),
  5133. weight: math.unit(2000, "kg"),
  5134. name: "Upright",
  5135. image: {
  5136. source: "./media/characters/scott/upright.svg",
  5137. extra: 3881 / 3722,
  5138. bottom: 0.05
  5139. }
  5140. },
  5141. },
  5142. [
  5143. {
  5144. name: "Normal",
  5145. height: math.unit(12, "feet"),
  5146. default: true
  5147. },
  5148. ]
  5149. ))
  5150. characterMakers.push(() => makeCharacter(
  5151. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5152. {
  5153. side: {
  5154. height: math.unit(8, "meters"),
  5155. weight: math.unit(84755, "lbs"),
  5156. name: "Side",
  5157. image: {
  5158. source: "./media/characters/tobias/side.svg",
  5159. extra: 1474 / 1096,
  5160. bottom: 38.9 / 1513.1235
  5161. }
  5162. },
  5163. },
  5164. [
  5165. {
  5166. name: "Normal",
  5167. height: math.unit(8, "meters"),
  5168. default: true
  5169. },
  5170. ]
  5171. ))
  5172. characterMakers.push(() => makeCharacter(
  5173. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5174. {
  5175. front: {
  5176. height: math.unit(5.5, "feet"),
  5177. weight: math.unit(400, "lbs"),
  5178. name: "Front",
  5179. image: {
  5180. source: "./media/characters/kieran/front.svg",
  5181. extra: 2694 / 2364,
  5182. bottom: 217 / 2908
  5183. }
  5184. },
  5185. side: {
  5186. height: math.unit(5.5, "feet"),
  5187. weight: math.unit(400, "lbs"),
  5188. name: "Side",
  5189. image: {
  5190. source: "./media/characters/kieran/side.svg",
  5191. extra: 875 / 777,
  5192. bottom: 84.6 / 959
  5193. }
  5194. },
  5195. },
  5196. [
  5197. {
  5198. name: "Normal",
  5199. height: math.unit(5.5, "feet"),
  5200. default: true
  5201. },
  5202. ]
  5203. ))
  5204. characterMakers.push(() => makeCharacter(
  5205. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5206. {
  5207. side: {
  5208. height: math.unit(2, "meters"),
  5209. weight: math.unit(70, "kg"),
  5210. name: "Side",
  5211. image: {
  5212. source: "./media/characters/sanya/side.svg",
  5213. bottom: 0.02,
  5214. extra: 1.02
  5215. }
  5216. },
  5217. },
  5218. [
  5219. {
  5220. name: "Small",
  5221. height: math.unit(2, "meters")
  5222. },
  5223. {
  5224. name: "Normal",
  5225. height: math.unit(3, "meters")
  5226. },
  5227. {
  5228. name: "Macro",
  5229. height: math.unit(16, "meters"),
  5230. default: true
  5231. },
  5232. ]
  5233. ))
  5234. characterMakers.push(() => makeCharacter(
  5235. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5236. {
  5237. front: {
  5238. height: math.unit(2, "meters"),
  5239. weight: math.unit(120, "kg"),
  5240. name: "Front",
  5241. image: {
  5242. source: "./media/characters/miranda/front.svg",
  5243. extra: 195 / 185,
  5244. bottom: 10.9 / 206.5
  5245. }
  5246. },
  5247. back: {
  5248. height: math.unit(2, "meters"),
  5249. weight: math.unit(120, "kg"),
  5250. name: "Back",
  5251. image: {
  5252. source: "./media/characters/miranda/back.svg",
  5253. extra: 201 / 193,
  5254. bottom: 2.3 / 203.7
  5255. }
  5256. },
  5257. },
  5258. [
  5259. {
  5260. name: "Normal",
  5261. height: math.unit(10, "feet"),
  5262. default: true
  5263. }
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "James", species: ["deer"], tags: ["anthro"] },
  5268. {
  5269. side: {
  5270. height: math.unit(2, "meters"),
  5271. weight: math.unit(100, "kg"),
  5272. name: "Front",
  5273. image: {
  5274. source: "./media/characters/james/front.svg",
  5275. extra: 10 / 8.5
  5276. }
  5277. },
  5278. },
  5279. [
  5280. {
  5281. name: "Normal",
  5282. height: math.unit(8.5, "feet"),
  5283. default: true
  5284. }
  5285. ]
  5286. ))
  5287. characterMakers.push(() => makeCharacter(
  5288. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5289. {
  5290. side: {
  5291. height: math.unit(9.5, "feet"),
  5292. weight: math.unit(2500, "lbs"),
  5293. name: "Side",
  5294. image: {
  5295. source: "./media/characters/heather/side.svg"
  5296. }
  5297. },
  5298. },
  5299. [
  5300. {
  5301. name: "Normal",
  5302. height: math.unit(9.5, "feet"),
  5303. default: true
  5304. }
  5305. ]
  5306. ))
  5307. characterMakers.push(() => makeCharacter(
  5308. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5309. {
  5310. side: {
  5311. height: math.unit(6.5, "feet"),
  5312. weight: math.unit(400, "lbs"),
  5313. name: "Side",
  5314. image: {
  5315. source: "./media/characters/lukas/side.svg",
  5316. extra: 7.25 / 6.5
  5317. }
  5318. },
  5319. },
  5320. [
  5321. {
  5322. name: "Normal",
  5323. height: math.unit(6.5, "feet"),
  5324. default: true
  5325. }
  5326. ]
  5327. ))
  5328. characterMakers.push(() => makeCharacter(
  5329. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5330. {
  5331. side: {
  5332. height: math.unit(5, "feet"),
  5333. weight: math.unit(3000, "lbs"),
  5334. name: "Side",
  5335. image: {
  5336. source: "./media/characters/louise/side.svg"
  5337. }
  5338. },
  5339. },
  5340. [
  5341. {
  5342. name: "Normal",
  5343. height: math.unit(5, "feet"),
  5344. default: true
  5345. }
  5346. ]
  5347. ))
  5348. characterMakers.push(() => makeCharacter(
  5349. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5350. {
  5351. side: {
  5352. height: math.unit(6, "feet"),
  5353. weight: math.unit(150, "lbs"),
  5354. name: "Side",
  5355. image: {
  5356. source: "./media/characters/ramona/side.svg",
  5357. extra: 871/854,
  5358. bottom: 41/912
  5359. }
  5360. },
  5361. },
  5362. [
  5363. {
  5364. name: "Normal",
  5365. height: math.unit(5.3, "meters"),
  5366. default: true
  5367. },
  5368. {
  5369. name: "Macro",
  5370. height: math.unit(20, "stories")
  5371. },
  5372. {
  5373. name: "Macro+",
  5374. height: math.unit(50, "stories")
  5375. },
  5376. ]
  5377. ))
  5378. characterMakers.push(() => makeCharacter(
  5379. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5380. {
  5381. standing: {
  5382. height: math.unit(5.75, "feet"),
  5383. weight: math.unit(160, "lbs"),
  5384. name: "Standing",
  5385. image: {
  5386. source: "./media/characters/deerpuff/standing.svg",
  5387. extra: 682 / 624
  5388. }
  5389. },
  5390. sitting: {
  5391. height: math.unit(5.75 / 1.79, "feet"),
  5392. weight: math.unit(160, "lbs"),
  5393. name: "Sitting",
  5394. image: {
  5395. source: "./media/characters/deerpuff/sitting.svg",
  5396. bottom: 44 / 400,
  5397. extra: 1
  5398. }
  5399. },
  5400. taurLaying: {
  5401. height: math.unit(6, "feet"),
  5402. weight: math.unit(400, "lbs"),
  5403. name: "Taur (Laying)",
  5404. image: {
  5405. source: "./media/characters/deerpuff/taur-laying.svg"
  5406. }
  5407. },
  5408. },
  5409. [
  5410. {
  5411. name: "Puffball",
  5412. height: math.unit(6, "inches")
  5413. },
  5414. {
  5415. name: "Normalpuff",
  5416. height: math.unit(5.75, "feet")
  5417. },
  5418. {
  5419. name: "Macropuff",
  5420. height: math.unit(1500, "feet"),
  5421. default: true
  5422. },
  5423. {
  5424. name: "Megapuff",
  5425. height: math.unit(500, "miles")
  5426. },
  5427. {
  5428. name: "Gigapuff",
  5429. height: math.unit(250000, "miles")
  5430. },
  5431. {
  5432. name: "Omegapuff",
  5433. height: math.unit(1000, "lightyears")
  5434. },
  5435. ]
  5436. ))
  5437. characterMakers.push(() => makeCharacter(
  5438. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5439. {
  5440. stomping: {
  5441. height: math.unit(6, "feet"),
  5442. weight: math.unit(170, "lbs"),
  5443. name: "Stomping",
  5444. image: {
  5445. source: "./media/characters/vivian/stomping.svg"
  5446. }
  5447. },
  5448. sitting: {
  5449. height: math.unit(6 / 1.75, "feet"),
  5450. weight: math.unit(170, "lbs"),
  5451. name: "Sitting",
  5452. image: {
  5453. source: "./media/characters/vivian/sitting.svg",
  5454. bottom: 1 / 6.4,
  5455. extra: 1,
  5456. }
  5457. },
  5458. },
  5459. [
  5460. {
  5461. name: "Normal",
  5462. height: math.unit(7, "feet"),
  5463. default: true
  5464. },
  5465. {
  5466. name: "Macro",
  5467. height: math.unit(10, "stories")
  5468. },
  5469. {
  5470. name: "Macro+",
  5471. height: math.unit(30, "stories")
  5472. },
  5473. {
  5474. name: "Megamacro",
  5475. height: math.unit(10, "miles")
  5476. },
  5477. {
  5478. name: "Megamacro+",
  5479. height: math.unit(2750000, "meters")
  5480. },
  5481. ]
  5482. ))
  5483. characterMakers.push(() => makeCharacter(
  5484. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5485. {
  5486. front: {
  5487. height: math.unit(6, "feet"),
  5488. weight: math.unit(160, "lbs"),
  5489. name: "Front",
  5490. image: {
  5491. source: "./media/characters/prince/front.svg",
  5492. extra: 3400 / 3000
  5493. }
  5494. },
  5495. jumping: {
  5496. height: math.unit(6, "feet"),
  5497. weight: math.unit(160, "lbs"),
  5498. name: "Jumping",
  5499. image: {
  5500. source: "./media/characters/prince/jump.svg",
  5501. extra: 2555 / 2134
  5502. }
  5503. },
  5504. },
  5505. [
  5506. {
  5507. name: "Normal",
  5508. height: math.unit(7.75, "feet"),
  5509. default: true
  5510. },
  5511. {
  5512. name: "Not cute",
  5513. height: math.unit(17, "feet")
  5514. },
  5515. {
  5516. name: "I said NOT",
  5517. height: math.unit(91, "feet")
  5518. },
  5519. {
  5520. name: "Please stop",
  5521. height: math.unit(560, "feet")
  5522. },
  5523. {
  5524. name: "What have you done",
  5525. height: math.unit(2200, "feet")
  5526. },
  5527. {
  5528. name: "Deer God",
  5529. height: math.unit(3.6, "miles")
  5530. },
  5531. ]
  5532. ))
  5533. characterMakers.push(() => makeCharacter(
  5534. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5535. {
  5536. standing: {
  5537. height: math.unit(6, "feet"),
  5538. weight: math.unit(300, "lbs"),
  5539. name: "Standing",
  5540. image: {
  5541. source: "./media/characters/psymon/standing.svg",
  5542. extra: 1888 / 1810,
  5543. bottom: 0.05
  5544. }
  5545. },
  5546. slithering: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(300, "lbs"),
  5549. name: "Slithering",
  5550. image: {
  5551. source: "./media/characters/psymon/slithering.svg",
  5552. extra: 1330 / 1224
  5553. }
  5554. },
  5555. slitheringAlt: {
  5556. height: math.unit(6, "feet"),
  5557. weight: math.unit(300, "lbs"),
  5558. name: "Slithering (Alt)",
  5559. image: {
  5560. source: "./media/characters/psymon/slithering-alt.svg",
  5561. extra: 1330 / 1224
  5562. }
  5563. },
  5564. },
  5565. [
  5566. {
  5567. name: "Normal",
  5568. height: math.unit(11.25, "feet"),
  5569. default: true
  5570. },
  5571. {
  5572. name: "Large",
  5573. height: math.unit(27, "feet")
  5574. },
  5575. {
  5576. name: "Giant",
  5577. height: math.unit(87, "feet")
  5578. },
  5579. {
  5580. name: "Macro",
  5581. height: math.unit(365, "feet")
  5582. },
  5583. {
  5584. name: "Megamacro",
  5585. height: math.unit(3, "miles")
  5586. },
  5587. {
  5588. name: "World Serpent",
  5589. height: math.unit(8000, "miles")
  5590. },
  5591. ]
  5592. ))
  5593. characterMakers.push(() => makeCharacter(
  5594. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5595. {
  5596. front: {
  5597. height: math.unit(6, "feet"),
  5598. weight: math.unit(180, "lbs"),
  5599. name: "Front",
  5600. image: {
  5601. source: "./media/characters/daimos/front.svg",
  5602. extra: 4160 / 3897,
  5603. bottom: 0.021
  5604. }
  5605. }
  5606. },
  5607. [
  5608. {
  5609. name: "Normal",
  5610. height: math.unit(8, "feet"),
  5611. default: true
  5612. },
  5613. {
  5614. name: "Big Dog",
  5615. height: math.unit(22, "feet")
  5616. },
  5617. {
  5618. name: "Macro",
  5619. height: math.unit(127, "feet")
  5620. },
  5621. {
  5622. name: "Megamacro",
  5623. height: math.unit(3600, "feet")
  5624. },
  5625. ]
  5626. ))
  5627. characterMakers.push(() => makeCharacter(
  5628. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5629. {
  5630. side: {
  5631. height: math.unit(6, "feet"),
  5632. weight: math.unit(180, "lbs"),
  5633. name: "Side",
  5634. image: {
  5635. source: "./media/characters/blake/side.svg",
  5636. extra: 1212 / 1120,
  5637. bottom: 0.05
  5638. }
  5639. },
  5640. crouched: {
  5641. height: math.unit(6 * 0.57, "feet"),
  5642. weight: math.unit(180, "lbs"),
  5643. name: "Crouched",
  5644. image: {
  5645. source: "./media/characters/blake/crouched.svg",
  5646. extra: 840 / 587,
  5647. bottom: 0.04
  5648. }
  5649. },
  5650. bent: {
  5651. height: math.unit(6 * 0.75, "feet"),
  5652. weight: math.unit(180, "lbs"),
  5653. name: "Bent",
  5654. image: {
  5655. source: "./media/characters/blake/bent.svg",
  5656. extra: 592 / 544,
  5657. bottom: 0.035
  5658. }
  5659. },
  5660. },
  5661. [
  5662. {
  5663. name: "Normal",
  5664. height: math.unit(8 + 1 / 6, "feet"),
  5665. default: true
  5666. },
  5667. {
  5668. name: "Big Backside",
  5669. height: math.unit(37, "feet")
  5670. },
  5671. {
  5672. name: "Subway Shredder",
  5673. height: math.unit(72, "feet")
  5674. },
  5675. {
  5676. name: "City Carver",
  5677. height: math.unit(1675, "feet")
  5678. },
  5679. {
  5680. name: "Tectonic Tweaker",
  5681. height: math.unit(2300, "miles")
  5682. },
  5683. ]
  5684. ))
  5685. characterMakers.push(() => makeCharacter(
  5686. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5687. {
  5688. front: {
  5689. height: math.unit(6, "feet"),
  5690. weight: math.unit(180, "lbs"),
  5691. name: "Front",
  5692. image: {
  5693. source: "./media/characters/guisetto/front.svg",
  5694. extra: 856 / 817,
  5695. bottom: 0.06
  5696. }
  5697. },
  5698. airborne: {
  5699. height: math.unit(6, "feet"),
  5700. weight: math.unit(180, "lbs"),
  5701. name: "Airborne",
  5702. image: {
  5703. source: "./media/characters/guisetto/airborne.svg",
  5704. extra: 584 / 525
  5705. }
  5706. },
  5707. },
  5708. [
  5709. {
  5710. name: "Normal",
  5711. height: math.unit(10 + 11 / 12, "feet"),
  5712. default: true
  5713. },
  5714. {
  5715. name: "Large",
  5716. height: math.unit(35, "feet")
  5717. },
  5718. {
  5719. name: "Macro",
  5720. height: math.unit(475, "feet")
  5721. },
  5722. ]
  5723. ))
  5724. characterMakers.push(() => makeCharacter(
  5725. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5726. {
  5727. front: {
  5728. height: math.unit(6, "feet"),
  5729. weight: math.unit(180, "lbs"),
  5730. name: "Front",
  5731. image: {
  5732. source: "./media/characters/luxor/front.svg",
  5733. extra: 2940 / 2152
  5734. }
  5735. },
  5736. back: {
  5737. height: math.unit(6, "feet"),
  5738. weight: math.unit(180, "lbs"),
  5739. name: "Back",
  5740. image: {
  5741. source: "./media/characters/luxor/back.svg",
  5742. extra: 1083 / 960
  5743. }
  5744. },
  5745. },
  5746. [
  5747. {
  5748. name: "Normal",
  5749. height: math.unit(5 + 5 / 6, "feet"),
  5750. default: true
  5751. },
  5752. {
  5753. name: "Lamp",
  5754. height: math.unit(50, "feet")
  5755. },
  5756. {
  5757. name: "Lämp",
  5758. height: math.unit(300, "feet")
  5759. },
  5760. {
  5761. name: "The sun is a lamp",
  5762. height: math.unit(250000, "miles")
  5763. },
  5764. ]
  5765. ))
  5766. characterMakers.push(() => makeCharacter(
  5767. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5768. {
  5769. front: {
  5770. height: math.unit(6, "feet"),
  5771. weight: math.unit(50, "lbs"),
  5772. name: "Front",
  5773. image: {
  5774. source: "./media/characters/huoyan/front.svg"
  5775. }
  5776. },
  5777. side: {
  5778. height: math.unit(6, "feet"),
  5779. weight: math.unit(180, "lbs"),
  5780. name: "Side",
  5781. image: {
  5782. source: "./media/characters/huoyan/side.svg"
  5783. }
  5784. },
  5785. },
  5786. [
  5787. {
  5788. name: "Chef",
  5789. height: math.unit(9, "feet")
  5790. },
  5791. {
  5792. name: "Normal",
  5793. height: math.unit(65, "feet"),
  5794. default: true
  5795. },
  5796. {
  5797. name: "Macro",
  5798. height: math.unit(780, "feet")
  5799. },
  5800. {
  5801. name: "Flaming Mountain",
  5802. height: math.unit(4.8, "miles")
  5803. },
  5804. {
  5805. name: "Celestial",
  5806. height: math.unit(765000, "miles")
  5807. },
  5808. ]
  5809. ))
  5810. characterMakers.push(() => makeCharacter(
  5811. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5812. {
  5813. front: {
  5814. height: math.unit(5 + 3 / 4, "feet"),
  5815. weight: math.unit(120, "lbs"),
  5816. name: "Front",
  5817. image: {
  5818. source: "./media/characters/tails/front.svg"
  5819. }
  5820. }
  5821. },
  5822. [
  5823. {
  5824. name: "Normal",
  5825. height: math.unit(5 + 3 / 4, "feet"),
  5826. default: true
  5827. }
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5832. {
  5833. front: {
  5834. height: math.unit(4, "feet"),
  5835. weight: math.unit(50, "lbs"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/rainy/front.svg"
  5839. }
  5840. }
  5841. },
  5842. [
  5843. {
  5844. name: "Macro",
  5845. height: math.unit(800, "feet"),
  5846. default: true
  5847. }
  5848. ]
  5849. ))
  5850. characterMakers.push(() => makeCharacter(
  5851. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5852. {
  5853. front: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(150, "lbs"),
  5856. name: "Front",
  5857. image: {
  5858. source: "./media/characters/rainier/front.svg"
  5859. }
  5860. }
  5861. },
  5862. [
  5863. {
  5864. name: "Micro",
  5865. height: math.unit(2, "mm"),
  5866. default: true
  5867. }
  5868. ]
  5869. ))
  5870. characterMakers.push(() => makeCharacter(
  5871. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5872. {
  5873. front: {
  5874. height: math.unit(8 + 4/12, "feet"),
  5875. name: "Front",
  5876. image: {
  5877. source: "./media/characters/andy-renard/front.svg",
  5878. extra: 1839/1726,
  5879. bottom: 134/1973
  5880. }
  5881. },
  5882. back: {
  5883. height: math.unit(8 + 4/12, "feet"),
  5884. name: "Back",
  5885. image: {
  5886. source: "./media/characters/andy-renard/back.svg",
  5887. extra: 1838/1710,
  5888. bottom: 105/1943
  5889. }
  5890. },
  5891. },
  5892. [
  5893. {
  5894. name: "Tall",
  5895. height: math.unit(8 + 4/12, "feet")
  5896. },
  5897. {
  5898. name: "Mini Macro",
  5899. height: math.unit(15, "feet"),
  5900. default: true
  5901. },
  5902. {
  5903. name: "Macro",
  5904. height: math.unit(100, "feet")
  5905. },
  5906. {
  5907. name: "Mega Macro",
  5908. height: math.unit(1000, "feet")
  5909. },
  5910. {
  5911. name: "Giga Macro",
  5912. height: math.unit(10, "miles")
  5913. },
  5914. {
  5915. name: "God Macro",
  5916. height: math.unit(1, "multiverse")
  5917. },
  5918. ]
  5919. ))
  5920. characterMakers.push(() => makeCharacter(
  5921. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5922. {
  5923. front: {
  5924. height: math.unit(6, "feet"),
  5925. weight: math.unit(210, "lbs"),
  5926. name: "Front",
  5927. image: {
  5928. source: "./media/characters/cimmaron/front-sfw.svg",
  5929. extra: 701 / 676,
  5930. bottom: 0.046
  5931. }
  5932. },
  5933. back: {
  5934. height: math.unit(6, "feet"),
  5935. weight: math.unit(210, "lbs"),
  5936. name: "Back",
  5937. image: {
  5938. source: "./media/characters/cimmaron/back-sfw.svg",
  5939. extra: 701 / 676,
  5940. bottom: 0.046
  5941. }
  5942. },
  5943. frontNsfw: {
  5944. height: math.unit(6, "feet"),
  5945. weight: math.unit(210, "lbs"),
  5946. name: "Front (NSFW)",
  5947. image: {
  5948. source: "./media/characters/cimmaron/front-nsfw.svg",
  5949. extra: 701 / 676,
  5950. bottom: 0.046
  5951. }
  5952. },
  5953. backNsfw: {
  5954. height: math.unit(6, "feet"),
  5955. weight: math.unit(210, "lbs"),
  5956. name: "Back (NSFW)",
  5957. image: {
  5958. source: "./media/characters/cimmaron/back-nsfw.svg",
  5959. extra: 701 / 676,
  5960. bottom: 0.046
  5961. }
  5962. },
  5963. dick: {
  5964. height: math.unit(1.714, "feet"),
  5965. name: "Dick",
  5966. image: {
  5967. source: "./media/characters/cimmaron/dick.svg"
  5968. }
  5969. },
  5970. },
  5971. [
  5972. {
  5973. name: "Normal",
  5974. height: math.unit(6, "feet"),
  5975. default: true
  5976. },
  5977. {
  5978. name: "Macro Mayor",
  5979. height: math.unit(350, "meters")
  5980. },
  5981. ]
  5982. ))
  5983. characterMakers.push(() => makeCharacter(
  5984. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5985. {
  5986. front: {
  5987. height: math.unit(6, "feet"),
  5988. weight: math.unit(200, "lbs"),
  5989. name: "Front",
  5990. image: {
  5991. source: "./media/characters/akari/front.svg",
  5992. extra: 962 / 901,
  5993. bottom: 0.04
  5994. }
  5995. }
  5996. },
  5997. [
  5998. {
  5999. name: "Micro",
  6000. height: math.unit(5, "inches"),
  6001. default: true
  6002. },
  6003. {
  6004. name: "Normal",
  6005. height: math.unit(7, "feet")
  6006. },
  6007. ]
  6008. ))
  6009. characterMakers.push(() => makeCharacter(
  6010. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6011. {
  6012. front: {
  6013. height: math.unit(6, "feet"),
  6014. weight: math.unit(140, "lbs"),
  6015. name: "Front",
  6016. image: {
  6017. source: "./media/characters/cynosura/front.svg",
  6018. extra: 896 / 847
  6019. }
  6020. },
  6021. back: {
  6022. height: math.unit(6, "feet"),
  6023. weight: math.unit(140, "lbs"),
  6024. name: "Back",
  6025. image: {
  6026. source: "./media/characters/cynosura/back.svg",
  6027. extra: 1365 / 1250
  6028. }
  6029. },
  6030. },
  6031. [
  6032. {
  6033. name: "Micro",
  6034. height: math.unit(4, "inches")
  6035. },
  6036. {
  6037. name: "Normal",
  6038. height: math.unit(5.75, "feet"),
  6039. default: true
  6040. },
  6041. {
  6042. name: "Tall",
  6043. height: math.unit(10, "feet")
  6044. },
  6045. {
  6046. name: "Big",
  6047. height: math.unit(20, "feet")
  6048. },
  6049. {
  6050. name: "Macro",
  6051. height: math.unit(50, "feet")
  6052. },
  6053. ]
  6054. ))
  6055. characterMakers.push(() => makeCharacter(
  6056. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6057. {
  6058. front: {
  6059. height: math.unit(13 + 2/12, "feet"),
  6060. weight: math.unit(800, "kg"),
  6061. name: "Front",
  6062. image: {
  6063. source: "./media/characters/gin/front.svg",
  6064. extra: 1312/1191,
  6065. bottom: 45/1357
  6066. }
  6067. },
  6068. mouth: {
  6069. height: math.unit(2.39 * 1.8, "feet"),
  6070. name: "Mouth",
  6071. image: {
  6072. source: "./media/characters/gin/mouth.svg"
  6073. }
  6074. },
  6075. hand: {
  6076. height: math.unit(1.57 * 2.19, "feet"),
  6077. name: "Hand",
  6078. image: {
  6079. source: "./media/characters/gin/hand.svg"
  6080. }
  6081. },
  6082. foot: {
  6083. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6084. name: "Foot",
  6085. image: {
  6086. source: "./media/characters/gin/foot.svg"
  6087. }
  6088. },
  6089. sole: {
  6090. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6091. name: "Sole",
  6092. image: {
  6093. source: "./media/characters/gin/sole.svg"
  6094. }
  6095. },
  6096. },
  6097. [
  6098. {
  6099. name: "Very Small",
  6100. height: math.unit(13 + 2 / 12, "feet")
  6101. },
  6102. {
  6103. name: "Micro",
  6104. height: math.unit(600, "miles")
  6105. },
  6106. {
  6107. name: "Regular",
  6108. height: math.unit(20, "earths"),
  6109. default: true
  6110. },
  6111. {
  6112. name: "Macro",
  6113. height: math.unit(2.2, "solarradii")
  6114. },
  6115. {
  6116. name: "Teramacro",
  6117. height: math.unit(1.2, "galaxies")
  6118. },
  6119. {
  6120. name: "Omegamacro",
  6121. height: math.unit(200, "universes")
  6122. },
  6123. ]
  6124. ))
  6125. characterMakers.push(() => makeCharacter(
  6126. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6127. {
  6128. front: {
  6129. height: math.unit(6 + 1 / 6, "feet"),
  6130. weight: math.unit(178, "lbs"),
  6131. name: "Front",
  6132. image: {
  6133. source: "./media/characters/guy/front.svg"
  6134. }
  6135. }
  6136. },
  6137. [
  6138. {
  6139. name: "Normal",
  6140. height: math.unit(6 + 1 / 6, "feet"),
  6141. default: true
  6142. },
  6143. {
  6144. name: "Large",
  6145. height: math.unit(25 + 7 / 12, "feet")
  6146. },
  6147. {
  6148. name: "Macro",
  6149. height: math.unit(60 + 9 / 12, "feet")
  6150. },
  6151. {
  6152. name: "Macro+",
  6153. height: math.unit(246, "feet")
  6154. },
  6155. {
  6156. name: "Macro++",
  6157. height: math.unit(878, "feet")
  6158. }
  6159. ]
  6160. ))
  6161. characterMakers.push(() => makeCharacter(
  6162. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6163. {
  6164. front: {
  6165. height: math.unit(9, "feet"),
  6166. weight: math.unit(800, "lbs"),
  6167. name: "Front",
  6168. image: {
  6169. source: "./media/characters/tiberius/front.svg",
  6170. extra: 2295 / 2071
  6171. }
  6172. },
  6173. back: {
  6174. height: math.unit(9, "feet"),
  6175. weight: math.unit(800, "lbs"),
  6176. name: "Back",
  6177. image: {
  6178. source: "./media/characters/tiberius/back.svg",
  6179. extra: 2373 / 2160
  6180. }
  6181. },
  6182. },
  6183. [
  6184. {
  6185. name: "Normal",
  6186. height: math.unit(9, "feet"),
  6187. default: true
  6188. }
  6189. ]
  6190. ))
  6191. characterMakers.push(() => makeCharacter(
  6192. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6193. {
  6194. front: {
  6195. height: math.unit(6, "feet"),
  6196. weight: math.unit(600, "lbs"),
  6197. name: "Front",
  6198. image: {
  6199. source: "./media/characters/surgo/front.svg",
  6200. extra: 3591 / 2227
  6201. }
  6202. },
  6203. back: {
  6204. height: math.unit(6, "feet"),
  6205. weight: math.unit(600, "lbs"),
  6206. name: "Back",
  6207. image: {
  6208. source: "./media/characters/surgo/back.svg",
  6209. extra: 3557 / 2228
  6210. }
  6211. },
  6212. laying: {
  6213. height: math.unit(6 * 0.85, "feet"),
  6214. weight: math.unit(600, "lbs"),
  6215. name: "Laying",
  6216. image: {
  6217. source: "./media/characters/surgo/laying.svg"
  6218. }
  6219. },
  6220. },
  6221. [
  6222. {
  6223. name: "Normal",
  6224. height: math.unit(6, "feet"),
  6225. default: true
  6226. }
  6227. ]
  6228. ))
  6229. characterMakers.push(() => makeCharacter(
  6230. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6231. {
  6232. side: {
  6233. height: math.unit(6, "feet"),
  6234. weight: math.unit(150, "lbs"),
  6235. name: "Side",
  6236. image: {
  6237. source: "./media/characters/cibus/side.svg",
  6238. extra: 800 / 400
  6239. }
  6240. },
  6241. },
  6242. [
  6243. {
  6244. name: "Normal",
  6245. height: math.unit(6, "feet"),
  6246. default: true
  6247. }
  6248. ]
  6249. ))
  6250. characterMakers.push(() => makeCharacter(
  6251. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6252. {
  6253. front: {
  6254. height: math.unit(6, "feet"),
  6255. weight: math.unit(240, "lbs"),
  6256. name: "Front",
  6257. image: {
  6258. source: "./media/characters/nibbles/front.svg"
  6259. }
  6260. },
  6261. side: {
  6262. height: math.unit(6, "feet"),
  6263. weight: math.unit(240, "lbs"),
  6264. name: "Side",
  6265. image: {
  6266. source: "./media/characters/nibbles/side.svg"
  6267. }
  6268. },
  6269. },
  6270. [
  6271. {
  6272. name: "Normal",
  6273. height: math.unit(9, "feet"),
  6274. default: true
  6275. }
  6276. ]
  6277. ))
  6278. characterMakers.push(() => makeCharacter(
  6279. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6280. {
  6281. side: {
  6282. height: math.unit(5 + 1 / 6, "feet"),
  6283. weight: math.unit(130, "lbs"),
  6284. name: "Side",
  6285. image: {
  6286. source: "./media/characters/rikky/side.svg",
  6287. extra: 851 / 801
  6288. }
  6289. },
  6290. },
  6291. [
  6292. {
  6293. name: "Normal",
  6294. height: math.unit(5 + 1 / 6, "feet")
  6295. },
  6296. {
  6297. name: "Macro",
  6298. height: math.unit(152, "feet"),
  6299. default: true
  6300. },
  6301. {
  6302. name: "Megamacro",
  6303. height: math.unit(7, "miles")
  6304. }
  6305. ]
  6306. ))
  6307. characterMakers.push(() => makeCharacter(
  6308. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6309. {
  6310. side: {
  6311. height: math.unit(370, "cm"),
  6312. weight: math.unit(350, "lbs"),
  6313. name: "Side",
  6314. image: {
  6315. source: "./media/characters/malfressa/side.svg"
  6316. }
  6317. },
  6318. walking: {
  6319. height: math.unit(370, "cm"),
  6320. weight: math.unit(350, "lbs"),
  6321. name: "Walking",
  6322. image: {
  6323. source: "./media/characters/malfressa/walking.svg"
  6324. }
  6325. },
  6326. feral: {
  6327. height: math.unit(2500, "cm"),
  6328. weight: math.unit(100000, "lbs"),
  6329. name: "Feral",
  6330. image: {
  6331. source: "./media/characters/malfressa/feral.svg",
  6332. extra: 2108 / 837,
  6333. bottom: 0.02
  6334. }
  6335. },
  6336. },
  6337. [
  6338. {
  6339. name: "Normal",
  6340. height: math.unit(370, "cm")
  6341. },
  6342. {
  6343. name: "Macro",
  6344. height: math.unit(300, "meters"),
  6345. default: true
  6346. }
  6347. ]
  6348. ))
  6349. characterMakers.push(() => makeCharacter(
  6350. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6351. {
  6352. front: {
  6353. height: math.unit(6, "feet"),
  6354. weight: math.unit(60, "kg"),
  6355. name: "Front",
  6356. image: {
  6357. source: "./media/characters/jaro/front.svg",
  6358. extra: 845/817,
  6359. bottom: 45/890
  6360. }
  6361. },
  6362. back: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(60, "kg"),
  6365. name: "Back",
  6366. image: {
  6367. source: "./media/characters/jaro/back.svg",
  6368. extra: 847/817,
  6369. bottom: 34/881
  6370. }
  6371. },
  6372. },
  6373. [
  6374. {
  6375. name: "Micro",
  6376. height: math.unit(7, "inches")
  6377. },
  6378. {
  6379. name: "Normal",
  6380. height: math.unit(5.5, "feet"),
  6381. default: true
  6382. },
  6383. {
  6384. name: "Minimacro",
  6385. height: math.unit(20, "feet")
  6386. },
  6387. {
  6388. name: "Macro",
  6389. height: math.unit(200, "meters")
  6390. }
  6391. ]
  6392. ))
  6393. characterMakers.push(() => makeCharacter(
  6394. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6395. {
  6396. front: {
  6397. height: math.unit(6, "feet"),
  6398. weight: math.unit(195, "lb"),
  6399. name: "Front",
  6400. image: {
  6401. source: "./media/characters/rogue/front.svg"
  6402. }
  6403. },
  6404. },
  6405. [
  6406. {
  6407. name: "Macro",
  6408. height: math.unit(90, "feet"),
  6409. default: true
  6410. },
  6411. ]
  6412. ))
  6413. characterMakers.push(() => makeCharacter(
  6414. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6415. {
  6416. front: {
  6417. height: math.unit(5 + 8 / 12, "feet"),
  6418. weight: math.unit(140, "lb"),
  6419. name: "Front",
  6420. image: {
  6421. source: "./media/characters/piper/front.svg",
  6422. extra: 3948/3655,
  6423. bottom: 0/3948
  6424. }
  6425. },
  6426. },
  6427. [
  6428. {
  6429. name: "Micro",
  6430. height: math.unit(2, "inches")
  6431. },
  6432. {
  6433. name: "Normal",
  6434. height: math.unit(5 + 8 / 12, "feet")
  6435. },
  6436. {
  6437. name: "Macro",
  6438. height: math.unit(250, "feet"),
  6439. default: true
  6440. },
  6441. {
  6442. name: "Megamacro",
  6443. height: math.unit(7, "miles")
  6444. },
  6445. ]
  6446. ))
  6447. characterMakers.push(() => makeCharacter(
  6448. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6449. {
  6450. front: {
  6451. height: math.unit(6, "feet"),
  6452. weight: math.unit(220, "lb"),
  6453. name: "Front",
  6454. image: {
  6455. source: "./media/characters/gemini/front.svg"
  6456. }
  6457. },
  6458. back: {
  6459. height: math.unit(6, "feet"),
  6460. weight: math.unit(220, "lb"),
  6461. name: "Back",
  6462. image: {
  6463. source: "./media/characters/gemini/back.svg"
  6464. }
  6465. },
  6466. kneeling: {
  6467. height: math.unit(6 / 1.5, "feet"),
  6468. weight: math.unit(220, "lb"),
  6469. name: "Kneeling",
  6470. image: {
  6471. source: "./media/characters/gemini/kneeling.svg",
  6472. bottom: 0.02
  6473. }
  6474. },
  6475. },
  6476. [
  6477. {
  6478. name: "Macro",
  6479. height: math.unit(300, "meters"),
  6480. default: true
  6481. },
  6482. {
  6483. name: "Megamacro",
  6484. height: math.unit(6900, "meters")
  6485. },
  6486. ]
  6487. ))
  6488. characterMakers.push(() => makeCharacter(
  6489. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6490. {
  6491. anthro: {
  6492. height: math.unit(2.35, "meters"),
  6493. weight: math.unit(73, "kg"),
  6494. name: "Anthro",
  6495. image: {
  6496. source: "./media/characters/alicia/anthro.svg",
  6497. extra: 2571 / 2385,
  6498. bottom: 75 / 2648
  6499. }
  6500. },
  6501. paw: {
  6502. height: math.unit(1.32, "feet"),
  6503. name: "Paw",
  6504. image: {
  6505. source: "./media/characters/alicia/paw.svg"
  6506. }
  6507. },
  6508. feral: {
  6509. height: math.unit(1.69, "meters"),
  6510. weight: math.unit(73, "kg"),
  6511. name: "Feral",
  6512. image: {
  6513. source: "./media/characters/alicia/feral.svg",
  6514. extra: 2123 / 1715,
  6515. bottom: 222 / 2349
  6516. }
  6517. },
  6518. },
  6519. [
  6520. {
  6521. name: "Normal",
  6522. height: math.unit(2.35, "meters")
  6523. },
  6524. {
  6525. name: "Macro",
  6526. height: math.unit(60, "meters"),
  6527. default: true
  6528. },
  6529. {
  6530. name: "Megamacro",
  6531. height: math.unit(10000, "kilometers")
  6532. },
  6533. ]
  6534. ))
  6535. characterMakers.push(() => makeCharacter(
  6536. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6537. {
  6538. front: {
  6539. height: math.unit(7, "feet"),
  6540. weight: math.unit(250, "lbs"),
  6541. name: "Front",
  6542. image: {
  6543. source: "./media/characters/archy/front.svg"
  6544. }
  6545. }
  6546. },
  6547. [
  6548. {
  6549. name: "Micro",
  6550. height: math.unit(1, "inch")
  6551. },
  6552. {
  6553. name: "Shorty",
  6554. height: math.unit(5, "feet")
  6555. },
  6556. {
  6557. name: "Normal",
  6558. height: math.unit(7, "feet")
  6559. },
  6560. {
  6561. name: "Macro",
  6562. height: math.unit(600, "meters"),
  6563. default: true
  6564. },
  6565. {
  6566. name: "Megamacro",
  6567. height: math.unit(1, "mile")
  6568. },
  6569. ]
  6570. ))
  6571. characterMakers.push(() => makeCharacter(
  6572. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6573. {
  6574. front: {
  6575. height: math.unit(1.65, "meters"),
  6576. weight: math.unit(74, "kg"),
  6577. name: "Front",
  6578. image: {
  6579. source: "./media/characters/berri/front.svg",
  6580. extra: 857 / 837,
  6581. bottom: 18 / 877
  6582. }
  6583. },
  6584. bum: {
  6585. height: math.unit(1.46, "feet"),
  6586. name: "Bum",
  6587. image: {
  6588. source: "./media/characters/berri/bum.svg"
  6589. }
  6590. },
  6591. mouth: {
  6592. height: math.unit(0.44, "feet"),
  6593. name: "Mouth",
  6594. image: {
  6595. source: "./media/characters/berri/mouth.svg"
  6596. }
  6597. },
  6598. paw: {
  6599. height: math.unit(0.826, "feet"),
  6600. name: "Paw",
  6601. image: {
  6602. source: "./media/characters/berri/paw.svg"
  6603. }
  6604. },
  6605. },
  6606. [
  6607. {
  6608. name: "Normal",
  6609. height: math.unit(1.65, "meters")
  6610. },
  6611. {
  6612. name: "Macro",
  6613. height: math.unit(60, "m"),
  6614. default: true
  6615. },
  6616. {
  6617. name: "Megamacro",
  6618. height: math.unit(9.213, "km")
  6619. },
  6620. {
  6621. name: "Planet Eater",
  6622. height: math.unit(489, "megameters")
  6623. },
  6624. {
  6625. name: "Teramacro",
  6626. height: math.unit(2471635000000, "meters")
  6627. },
  6628. {
  6629. name: "Examacro",
  6630. height: math.unit(8.0624e+26, "meters")
  6631. }
  6632. ]
  6633. ))
  6634. characterMakers.push(() => makeCharacter(
  6635. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6636. {
  6637. front: {
  6638. height: math.unit(1.72, "meters"),
  6639. weight: math.unit(68, "kg"),
  6640. name: "Front",
  6641. image: {
  6642. source: "./media/characters/lexi/front.svg"
  6643. }
  6644. }
  6645. },
  6646. [
  6647. {
  6648. name: "Very Smol",
  6649. height: math.unit(10, "mm")
  6650. },
  6651. {
  6652. name: "Micro",
  6653. height: math.unit(6.8, "cm"),
  6654. default: true
  6655. },
  6656. {
  6657. name: "Normal",
  6658. height: math.unit(1.72, "m")
  6659. }
  6660. ]
  6661. ))
  6662. characterMakers.push(() => makeCharacter(
  6663. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6664. {
  6665. front: {
  6666. height: math.unit(1.69, "meters"),
  6667. weight: math.unit(68, "kg"),
  6668. name: "Front",
  6669. image: {
  6670. source: "./media/characters/martin/front.svg",
  6671. extra: 596 / 581
  6672. }
  6673. }
  6674. },
  6675. [
  6676. {
  6677. name: "Micro",
  6678. height: math.unit(6.85, "cm"),
  6679. default: true
  6680. },
  6681. {
  6682. name: "Normal",
  6683. height: math.unit(1.69, "m")
  6684. }
  6685. ]
  6686. ))
  6687. characterMakers.push(() => makeCharacter(
  6688. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6689. {
  6690. front: {
  6691. height: math.unit(1.69, "meters"),
  6692. weight: math.unit(68, "kg"),
  6693. name: "Front",
  6694. image: {
  6695. source: "./media/characters/juno/front.svg"
  6696. }
  6697. }
  6698. },
  6699. [
  6700. {
  6701. name: "Micro",
  6702. height: math.unit(7, "cm")
  6703. },
  6704. {
  6705. name: "Normal",
  6706. height: math.unit(1.89, "m")
  6707. },
  6708. {
  6709. name: "Macro",
  6710. height: math.unit(353, "meters"),
  6711. default: true
  6712. }
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6717. {
  6718. front: {
  6719. height: math.unit(1.93, "meters"),
  6720. weight: math.unit(83, "kg"),
  6721. name: "Front",
  6722. image: {
  6723. source: "./media/characters/samantha/front.svg"
  6724. }
  6725. },
  6726. frontClothed: {
  6727. height: math.unit(1.93, "meters"),
  6728. weight: math.unit(83, "kg"),
  6729. name: "Front (Clothed)",
  6730. image: {
  6731. source: "./media/characters/samantha/front-clothed.svg"
  6732. }
  6733. },
  6734. back: {
  6735. height: math.unit(1.93, "meters"),
  6736. weight: math.unit(83, "kg"),
  6737. name: "Back",
  6738. image: {
  6739. source: "./media/characters/samantha/back.svg"
  6740. }
  6741. },
  6742. },
  6743. [
  6744. {
  6745. name: "Normal",
  6746. height: math.unit(1.93, "m")
  6747. },
  6748. {
  6749. name: "Macro",
  6750. height: math.unit(74, "meters"),
  6751. default: true
  6752. },
  6753. {
  6754. name: "Macro+",
  6755. height: math.unit(223, "meters"),
  6756. },
  6757. {
  6758. name: "Megamacro",
  6759. height: math.unit(8381, "meters"),
  6760. },
  6761. {
  6762. name: "Megamacro+",
  6763. height: math.unit(12000, "kilometers")
  6764. },
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6769. {
  6770. front: {
  6771. height: math.unit(1.92, "meters"),
  6772. weight: math.unit(80, "kg"),
  6773. name: "Front",
  6774. image: {
  6775. source: "./media/characters/dr-clay/front.svg"
  6776. }
  6777. },
  6778. frontClothed: {
  6779. height: math.unit(1.92, "meters"),
  6780. weight: math.unit(80, "kg"),
  6781. name: "Front (Clothed)",
  6782. image: {
  6783. source: "./media/characters/dr-clay/front-clothed.svg"
  6784. }
  6785. }
  6786. },
  6787. [
  6788. {
  6789. name: "Normal",
  6790. height: math.unit(1.92, "m")
  6791. },
  6792. {
  6793. name: "Macro",
  6794. height: math.unit(214, "meters"),
  6795. default: true
  6796. },
  6797. {
  6798. name: "Macro+",
  6799. height: math.unit(12.237, "meters"),
  6800. },
  6801. {
  6802. name: "Megamacro",
  6803. height: math.unit(557, "megameters"),
  6804. },
  6805. {
  6806. name: "Unimaginable",
  6807. height: math.unit(120e9, "lightyears")
  6808. },
  6809. ]
  6810. ))
  6811. characterMakers.push(() => makeCharacter(
  6812. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6813. {
  6814. front: {
  6815. height: math.unit(2, "meters"),
  6816. weight: math.unit(80, "kg"),
  6817. name: "Front",
  6818. image: {
  6819. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6820. }
  6821. }
  6822. },
  6823. [
  6824. {
  6825. name: "Teramacro",
  6826. height: math.unit(500000, "lightyears"),
  6827. default: true
  6828. },
  6829. ]
  6830. ))
  6831. characterMakers.push(() => makeCharacter(
  6832. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6833. {
  6834. crux: {
  6835. height: math.unit(2, "meters"),
  6836. weight: math.unit(150, "kg"),
  6837. name: "Crux",
  6838. image: {
  6839. source: "./media/characters/vemus/crux.svg",
  6840. extra: 1074/936,
  6841. bottom: 23/1097
  6842. }
  6843. },
  6844. skunkTanuki: {
  6845. height: math.unit(2, "meters"),
  6846. weight: math.unit(150, "kg"),
  6847. name: "Skunk-Tanuki",
  6848. image: {
  6849. source: "./media/characters/vemus/skunk-tanuki.svg",
  6850. extra: 926/893,
  6851. bottom: 20/946
  6852. }
  6853. },
  6854. },
  6855. [
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(3.75, "meters"),
  6859. default: true
  6860. },
  6861. {
  6862. name: "Big",
  6863. height: math.unit(8, "meters")
  6864. },
  6865. {
  6866. name: "Macro",
  6867. height: math.unit(100, "meters")
  6868. },
  6869. {
  6870. name: "Macro+",
  6871. height: math.unit(1500, "meters")
  6872. },
  6873. {
  6874. name: "Stellar",
  6875. height: math.unit(14e8, "meters")
  6876. },
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6881. {
  6882. front: {
  6883. height: math.unit(2, "meters"),
  6884. weight: math.unit(70, "kg"),
  6885. name: "Front",
  6886. image: {
  6887. source: "./media/characters/beherit/front.svg",
  6888. extra: 1234/1109,
  6889. bottom: 55/1289
  6890. }
  6891. }
  6892. },
  6893. [
  6894. {
  6895. name: "Normal",
  6896. height: math.unit(6, "feet")
  6897. },
  6898. {
  6899. name: "Lorg",
  6900. height: math.unit(25, "feet"),
  6901. default: true
  6902. },
  6903. {
  6904. name: "Lorger",
  6905. height: math.unit(75, "feet")
  6906. },
  6907. {
  6908. name: "Macro",
  6909. height: math.unit(200, "meters")
  6910. },
  6911. ]
  6912. ))
  6913. characterMakers.push(() => makeCharacter(
  6914. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6915. {
  6916. front: {
  6917. height: math.unit(2, "meters"),
  6918. weight: math.unit(150, "kg"),
  6919. name: "Front",
  6920. image: {
  6921. source: "./media/characters/everett/front.svg",
  6922. extra: 1017/866,
  6923. bottom: 86/1103
  6924. }
  6925. },
  6926. paw: {
  6927. height: math.unit(2 / 3.6, "meters"),
  6928. name: "Paw",
  6929. image: {
  6930. source: "./media/characters/everett/paw.svg"
  6931. }
  6932. },
  6933. },
  6934. [
  6935. {
  6936. name: "Normal",
  6937. height: math.unit(15, "feet"),
  6938. default: true
  6939. },
  6940. {
  6941. name: "Lorg",
  6942. height: math.unit(70, "feet"),
  6943. default: true
  6944. },
  6945. {
  6946. name: "Lorger",
  6947. height: math.unit(250, "feet")
  6948. },
  6949. {
  6950. name: "Macro",
  6951. height: math.unit(500, "meters")
  6952. },
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(2, "meters"),
  6960. weight: math.unit(86, "kg"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/rose/front.svg",
  6964. extra: 1785/1636,
  6965. bottom: 30/1815
  6966. }
  6967. },
  6968. frontSporty: {
  6969. height: math.unit(2, "meters"),
  6970. weight: math.unit(86, "kg"),
  6971. name: "Front (Sporty)",
  6972. image: {
  6973. source: "./media/characters/rose/front-sporty.svg",
  6974. extra: 350/335,
  6975. bottom: 10/360
  6976. }
  6977. },
  6978. frontAlt: {
  6979. height: math.unit(1.6, "meters"),
  6980. weight: math.unit(86, "kg"),
  6981. name: "Front (Alt)",
  6982. image: {
  6983. source: "./media/characters/rose/front-alt.svg",
  6984. extra: 299/283,
  6985. bottom: 3/302
  6986. }
  6987. },
  6988. plush: {
  6989. height: math.unit(2, "meters"),
  6990. weight: math.unit(86/3, "kg"),
  6991. name: "Plush",
  6992. image: {
  6993. source: "./media/characters/rose/plush.svg",
  6994. extra: 361/337,
  6995. bottom: 11/372
  6996. }
  6997. },
  6998. },
  6999. [
  7000. {
  7001. name: "True Micro",
  7002. height: math.unit(9, "cm")
  7003. },
  7004. {
  7005. name: "Micro",
  7006. height: math.unit(16, "cm")
  7007. },
  7008. {
  7009. name: "Normal",
  7010. height: math.unit(1.85, "meters"),
  7011. default: true
  7012. },
  7013. {
  7014. name: "Mini-Macro",
  7015. height: math.unit(5, "meters")
  7016. },
  7017. {
  7018. name: "Macro",
  7019. height: math.unit(15, "meters")
  7020. },
  7021. {
  7022. name: "True Macro",
  7023. height: math.unit(40, "meters")
  7024. },
  7025. {
  7026. name: "City Scale",
  7027. height: math.unit(1, "km")
  7028. },
  7029. ]
  7030. ))
  7031. characterMakers.push(() => makeCharacter(
  7032. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7033. {
  7034. front: {
  7035. height: math.unit(2, "meters"),
  7036. weight: math.unit(350, "lbs"),
  7037. name: "Front",
  7038. image: {
  7039. source: "./media/characters/regal/front.svg"
  7040. }
  7041. },
  7042. back: {
  7043. height: math.unit(2, "meters"),
  7044. weight: math.unit(350, "lbs"),
  7045. name: "Back",
  7046. image: {
  7047. source: "./media/characters/regal/back.svg"
  7048. }
  7049. },
  7050. },
  7051. [
  7052. {
  7053. name: "Macro",
  7054. height: math.unit(350, "feet"),
  7055. default: true
  7056. }
  7057. ]
  7058. ))
  7059. characterMakers.push(() => makeCharacter(
  7060. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7061. {
  7062. front: {
  7063. height: math.unit(4 + 11 / 12, "feet"),
  7064. weight: math.unit(100, "lbs"),
  7065. name: "Front",
  7066. image: {
  7067. source: "./media/characters/opal/front.svg"
  7068. }
  7069. },
  7070. frontAlt: {
  7071. height: math.unit(4 + 11 / 12, "feet"),
  7072. weight: math.unit(100, "lbs"),
  7073. name: "Front (Alt)",
  7074. image: {
  7075. source: "./media/characters/opal/front-alt.svg"
  7076. }
  7077. },
  7078. },
  7079. [
  7080. {
  7081. name: "Small",
  7082. height: math.unit(4 + 11 / 12, "feet")
  7083. },
  7084. {
  7085. name: "Normal",
  7086. height: math.unit(20, "feet"),
  7087. default: true
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(120, "feet")
  7092. },
  7093. {
  7094. name: "Megamacro",
  7095. height: math.unit(80, "miles")
  7096. },
  7097. {
  7098. name: "True Size",
  7099. height: math.unit(100000, "lightyears")
  7100. },
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(6, "feet"),
  7108. weight: math.unit(200, "lbs"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/vector-wuff/front.svg"
  7112. }
  7113. }
  7114. },
  7115. [
  7116. {
  7117. name: "Normal",
  7118. height: math.unit(2.8, "meters")
  7119. },
  7120. {
  7121. name: "Macro",
  7122. height: math.unit(450, "meters"),
  7123. default: true
  7124. },
  7125. {
  7126. name: "Megamacro",
  7127. height: math.unit(15, "kilometers")
  7128. }
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(256, "lbs"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/dannik/front.svg"
  7140. }
  7141. }
  7142. },
  7143. [
  7144. {
  7145. name: "Macro",
  7146. height: math.unit(69.57, "meters"),
  7147. default: true
  7148. },
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7153. {
  7154. front: {
  7155. height: math.unit(6, "feet"),
  7156. weight: math.unit(120, "lbs"),
  7157. name: "Front",
  7158. image: {
  7159. source: "./media/characters/azura-saharah/front.svg"
  7160. }
  7161. },
  7162. back: {
  7163. height: math.unit(6, "feet"),
  7164. weight: math.unit(120, "lbs"),
  7165. name: "Back",
  7166. image: {
  7167. source: "./media/characters/azura-saharah/back.svg"
  7168. }
  7169. },
  7170. },
  7171. [
  7172. {
  7173. name: "Macro",
  7174. height: math.unit(100, "feet"),
  7175. default: true
  7176. },
  7177. ]
  7178. ))
  7179. characterMakers.push(() => makeCharacter(
  7180. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7181. {
  7182. side: {
  7183. height: math.unit(5 + 4 / 12, "feet"),
  7184. weight: math.unit(163, "lbs"),
  7185. name: "Side",
  7186. image: {
  7187. source: "./media/characters/kennedy/side.svg"
  7188. }
  7189. }
  7190. },
  7191. [
  7192. {
  7193. name: "Standard Doggo",
  7194. height: math.unit(5 + 4 / 12, "feet")
  7195. },
  7196. {
  7197. name: "Big Doggo",
  7198. height: math.unit(25 + 3 / 12, "feet"),
  7199. default: true
  7200. },
  7201. ]
  7202. ))
  7203. characterMakers.push(() => makeCharacter(
  7204. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7205. {
  7206. front: {
  7207. height: math.unit(5 + 5/12, "feet"),
  7208. weight: math.unit(100, "lbs"),
  7209. name: "Front",
  7210. image: {
  7211. source: "./media/characters/odios-de-lunar/front.svg",
  7212. extra: 1468/1323,
  7213. bottom: 22/1490
  7214. }
  7215. }
  7216. },
  7217. [
  7218. {
  7219. name: "Micro",
  7220. height: math.unit(3, "inches")
  7221. },
  7222. {
  7223. name: "Normal",
  7224. height: math.unit(5.5, "feet"),
  7225. default: true
  7226. },
  7227. {
  7228. name: "Macro",
  7229. height: math.unit(100, "feet")
  7230. },
  7231. ]
  7232. ))
  7233. characterMakers.push(() => makeCharacter(
  7234. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7235. {
  7236. back: {
  7237. height: math.unit(6, "feet"),
  7238. weight: math.unit(220, "lbs"),
  7239. name: "Back",
  7240. image: {
  7241. source: "./media/characters/mandake/back.svg"
  7242. }
  7243. }
  7244. },
  7245. [
  7246. {
  7247. name: "Normal",
  7248. height: math.unit(7, "feet"),
  7249. default: true
  7250. },
  7251. {
  7252. name: "Macro",
  7253. height: math.unit(78, "feet")
  7254. },
  7255. {
  7256. name: "Macro+",
  7257. height: math.unit(300, "meters")
  7258. },
  7259. {
  7260. name: "Macro++",
  7261. height: math.unit(2400, "feet")
  7262. },
  7263. {
  7264. name: "Megamacro",
  7265. height: math.unit(5167, "meters")
  7266. },
  7267. {
  7268. name: "Gigamacro",
  7269. height: math.unit(41769, "miles")
  7270. },
  7271. ]
  7272. ))
  7273. characterMakers.push(() => makeCharacter(
  7274. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7275. {
  7276. front: {
  7277. height: math.unit(6, "feet"),
  7278. weight: math.unit(120, "lbs"),
  7279. name: "Front",
  7280. image: {
  7281. source: "./media/characters/yozey/front.svg"
  7282. }
  7283. },
  7284. frontAlt: {
  7285. height: math.unit(6, "feet"),
  7286. weight: math.unit(120, "lbs"),
  7287. name: "Front (Alt)",
  7288. image: {
  7289. source: "./media/characters/yozey/front-alt.svg"
  7290. }
  7291. },
  7292. side: {
  7293. height: math.unit(6, "feet"),
  7294. weight: math.unit(120, "lbs"),
  7295. name: "Side",
  7296. image: {
  7297. source: "./media/characters/yozey/side.svg"
  7298. }
  7299. },
  7300. },
  7301. [
  7302. {
  7303. name: "Micro",
  7304. height: math.unit(3, "inches"),
  7305. default: true
  7306. },
  7307. {
  7308. name: "Normal",
  7309. height: math.unit(6, "feet")
  7310. }
  7311. ]
  7312. ))
  7313. characterMakers.push(() => makeCharacter(
  7314. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7315. {
  7316. front: {
  7317. height: math.unit(6, "feet"),
  7318. weight: math.unit(103, "lbs"),
  7319. name: "Front",
  7320. image: {
  7321. source: "./media/characters/valeska-voss/front.svg"
  7322. }
  7323. }
  7324. },
  7325. [
  7326. {
  7327. name: "Mini-Sized Sub",
  7328. height: math.unit(3.1, "inches")
  7329. },
  7330. {
  7331. name: "Mid-Sized Sub",
  7332. height: math.unit(6.2, "inches")
  7333. },
  7334. {
  7335. name: "Full-Sized Sub",
  7336. height: math.unit(9.3, "inches")
  7337. },
  7338. {
  7339. name: "Normal",
  7340. height: math.unit(5 + 2 / 12, "foot"),
  7341. default: true
  7342. },
  7343. ]
  7344. ))
  7345. characterMakers.push(() => makeCharacter(
  7346. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7347. {
  7348. front: {
  7349. height: math.unit(6, "feet"),
  7350. weight: math.unit(160, "lbs"),
  7351. name: "Front",
  7352. image: {
  7353. source: "./media/characters/gene-zeta/front.svg",
  7354. extra: 3006 / 2826,
  7355. bottom: 182 / 3188
  7356. }
  7357. }
  7358. },
  7359. [
  7360. {
  7361. name: "Micro",
  7362. height: math.unit(6, "inches")
  7363. },
  7364. {
  7365. name: "Normal",
  7366. height: math.unit(5 + 11 / 12, "foot"),
  7367. default: true
  7368. },
  7369. {
  7370. name: "Macro",
  7371. height: math.unit(140, "feet")
  7372. },
  7373. {
  7374. name: "Supercharged",
  7375. height: math.unit(2500, "feet")
  7376. },
  7377. ]
  7378. ))
  7379. characterMakers.push(() => makeCharacter(
  7380. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7381. {
  7382. front: {
  7383. height: math.unit(6, "feet"),
  7384. weight: math.unit(350, "lbs"),
  7385. name: "Front",
  7386. image: {
  7387. source: "./media/characters/razinox/front.svg",
  7388. extra: 1686 / 1548,
  7389. bottom: 28.2 / 1868
  7390. }
  7391. },
  7392. back: {
  7393. height: math.unit(6, "feet"),
  7394. weight: math.unit(350, "lbs"),
  7395. name: "Back",
  7396. image: {
  7397. source: "./media/characters/razinox/back.svg",
  7398. extra: 1660 / 1590,
  7399. bottom: 15 / 1665
  7400. }
  7401. },
  7402. },
  7403. [
  7404. {
  7405. name: "Normal",
  7406. height: math.unit(10 + 8 / 12, "foot")
  7407. },
  7408. {
  7409. name: "Minimacro",
  7410. height: math.unit(15, "foot")
  7411. },
  7412. {
  7413. name: "Macro",
  7414. height: math.unit(60, "foot"),
  7415. default: true
  7416. },
  7417. {
  7418. name: "Megamacro",
  7419. height: math.unit(5, "miles")
  7420. },
  7421. {
  7422. name: "Gigamacro",
  7423. height: math.unit(6000, "miles")
  7424. },
  7425. ]
  7426. ))
  7427. characterMakers.push(() => makeCharacter(
  7428. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7429. {
  7430. front: {
  7431. height: math.unit(6, "feet"),
  7432. weight: math.unit(150, "lbs"),
  7433. name: "Front",
  7434. image: {
  7435. source: "./media/characters/cobalt/front.svg"
  7436. }
  7437. }
  7438. },
  7439. [
  7440. {
  7441. name: "Normal",
  7442. height: math.unit(8 + 1 / 12, "foot")
  7443. },
  7444. {
  7445. name: "Macro",
  7446. height: math.unit(111, "foot"),
  7447. default: true
  7448. },
  7449. {
  7450. name: "Supracosmic",
  7451. height: math.unit(1e42, "feet")
  7452. },
  7453. ]
  7454. ))
  7455. characterMakers.push(() => makeCharacter(
  7456. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7457. {
  7458. front: {
  7459. height: math.unit(6, "feet"),
  7460. weight: math.unit(140, "lbs"),
  7461. name: "Front",
  7462. image: {
  7463. source: "./media/characters/amanda/front.svg"
  7464. }
  7465. }
  7466. },
  7467. [
  7468. {
  7469. name: "Micro",
  7470. height: math.unit(5, "inches"),
  7471. default: true
  7472. },
  7473. ]
  7474. ))
  7475. characterMakers.push(() => makeCharacter(
  7476. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7477. {
  7478. front: {
  7479. height: math.unit(2.75, "meters"),
  7480. weight: math.unit(1200, "lb"),
  7481. name: "Front",
  7482. image: {
  7483. source: "./media/characters/teal/front.svg",
  7484. extra: 2463 / 2320,
  7485. bottom: 166 / 2629
  7486. }
  7487. },
  7488. back: {
  7489. height: math.unit(2.75, "meters"),
  7490. weight: math.unit(1200, "lb"),
  7491. name: "Back",
  7492. image: {
  7493. source: "./media/characters/teal/back.svg",
  7494. extra: 2580 / 2489,
  7495. bottom: 151 / 2731
  7496. }
  7497. },
  7498. sitting: {
  7499. height: math.unit(1.9, "meters"),
  7500. weight: math.unit(1200, "lb"),
  7501. name: "Sitting",
  7502. image: {
  7503. source: "./media/characters/teal/sitting.svg",
  7504. extra: 623 / 590,
  7505. bottom: 121 / 744
  7506. }
  7507. },
  7508. standing: {
  7509. height: math.unit(2.75, "meters"),
  7510. weight: math.unit(1200, "lb"),
  7511. name: "Standing",
  7512. image: {
  7513. source: "./media/characters/teal/standing.svg",
  7514. extra: 923 / 893,
  7515. bottom: 60 / 983
  7516. }
  7517. },
  7518. stretching: {
  7519. height: math.unit(3.65, "meters"),
  7520. weight: math.unit(1200, "lb"),
  7521. name: "Stretching",
  7522. image: {
  7523. source: "./media/characters/teal/stretching.svg",
  7524. extra: 1276 / 1244,
  7525. bottom: 0 / 1276
  7526. }
  7527. },
  7528. legged: {
  7529. height: math.unit(1.3, "meters"),
  7530. weight: math.unit(100, "lb"),
  7531. name: "Legged",
  7532. image: {
  7533. source: "./media/characters/teal/legged.svg",
  7534. extra: 462 / 437,
  7535. bottom: 24 / 486
  7536. }
  7537. },
  7538. naga: {
  7539. height: math.unit(5.4, "meters"),
  7540. weight: math.unit(4000, "lb"),
  7541. name: "Naga",
  7542. image: {
  7543. source: "./media/characters/teal/naga.svg",
  7544. extra: 1902 / 1858,
  7545. bottom: 0 / 1902
  7546. }
  7547. },
  7548. hand: {
  7549. height: math.unit(0.52, "meters"),
  7550. name: "Hand",
  7551. image: {
  7552. source: "./media/characters/teal/hand.svg"
  7553. }
  7554. },
  7555. maw: {
  7556. height: math.unit(0.43, "meters"),
  7557. name: "Maw",
  7558. image: {
  7559. source: "./media/characters/teal/maw.svg"
  7560. }
  7561. },
  7562. slit: {
  7563. height: math.unit(0.25, "meters"),
  7564. name: "Slit",
  7565. image: {
  7566. source: "./media/characters/teal/slit.svg"
  7567. }
  7568. },
  7569. },
  7570. [
  7571. {
  7572. name: "Normal",
  7573. height: math.unit(2.75, "meters"),
  7574. default: true
  7575. },
  7576. {
  7577. name: "Macro",
  7578. height: math.unit(300, "feet")
  7579. },
  7580. {
  7581. name: "Macro+",
  7582. height: math.unit(2000, "feet")
  7583. },
  7584. ]
  7585. ))
  7586. characterMakers.push(() => makeCharacter(
  7587. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7588. {
  7589. frontCat: {
  7590. height: math.unit(6, "feet"),
  7591. weight: math.unit(180, "lbs"),
  7592. name: "Front (Cat)",
  7593. image: {
  7594. source: "./media/characters/ravin-amulet/front-cat.svg"
  7595. }
  7596. },
  7597. frontCatAlt: {
  7598. height: math.unit(6, "feet"),
  7599. weight: math.unit(180, "lbs"),
  7600. name: "Front (Alt, Cat)",
  7601. image: {
  7602. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7603. }
  7604. },
  7605. frontWerewolf: {
  7606. height: math.unit(6 * 1.2, "feet"),
  7607. weight: math.unit(225, "lbs"),
  7608. name: "Front (Werewolf)",
  7609. image: {
  7610. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7611. }
  7612. },
  7613. backWerewolf: {
  7614. height: math.unit(6 * 1.2, "feet"),
  7615. weight: math.unit(225, "lbs"),
  7616. name: "Back (Werewolf)",
  7617. image: {
  7618. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7619. }
  7620. },
  7621. },
  7622. [
  7623. {
  7624. name: "Nano",
  7625. height: math.unit(1, "micrometer")
  7626. },
  7627. {
  7628. name: "Micro",
  7629. height: math.unit(1, "inch")
  7630. },
  7631. {
  7632. name: "Normal",
  7633. height: math.unit(6, "feet"),
  7634. default: true
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(60, "feet")
  7639. }
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7644. {
  7645. front: {
  7646. height: math.unit(6, "feet"),
  7647. weight: math.unit(165, "lbs"),
  7648. name: "Front",
  7649. image: {
  7650. source: "./media/characters/fluoresce/front.svg"
  7651. }
  7652. }
  7653. },
  7654. [
  7655. {
  7656. name: "Micro",
  7657. height: math.unit(6, "cm")
  7658. },
  7659. {
  7660. name: "Normal",
  7661. height: math.unit(5 + 7 / 12, "feet"),
  7662. default: true
  7663. },
  7664. {
  7665. name: "Macro",
  7666. height: math.unit(56, "feet")
  7667. },
  7668. {
  7669. name: "Megamacro",
  7670. height: math.unit(1.9, "miles")
  7671. },
  7672. ]
  7673. ))
  7674. characterMakers.push(() => makeCharacter(
  7675. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7676. {
  7677. front: {
  7678. height: math.unit(9 + 6 / 12, "feet"),
  7679. weight: math.unit(523, "lbs"),
  7680. name: "Side",
  7681. image: {
  7682. source: "./media/characters/aurora/side.svg"
  7683. }
  7684. }
  7685. },
  7686. [
  7687. {
  7688. name: "Normal",
  7689. height: math.unit(9 + 6 / 12, "feet")
  7690. },
  7691. {
  7692. name: "Macro",
  7693. height: math.unit(96, "feet"),
  7694. default: true
  7695. },
  7696. {
  7697. name: "Macro+",
  7698. height: math.unit(243, "feet")
  7699. },
  7700. ]
  7701. ))
  7702. characterMakers.push(() => makeCharacter(
  7703. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7704. {
  7705. front: {
  7706. height: math.unit(194, "cm"),
  7707. weight: math.unit(90, "kg"),
  7708. name: "Front",
  7709. image: {
  7710. source: "./media/characters/ranek/front.svg"
  7711. }
  7712. },
  7713. side: {
  7714. height: math.unit(194, "cm"),
  7715. weight: math.unit(90, "kg"),
  7716. name: "Side",
  7717. image: {
  7718. source: "./media/characters/ranek/side.svg"
  7719. }
  7720. },
  7721. back: {
  7722. height: math.unit(194, "cm"),
  7723. weight: math.unit(90, "kg"),
  7724. name: "Back",
  7725. image: {
  7726. source: "./media/characters/ranek/back.svg"
  7727. }
  7728. },
  7729. feral: {
  7730. height: math.unit(30, "cm"),
  7731. weight: math.unit(1.6, "lbs"),
  7732. name: "Feral",
  7733. image: {
  7734. source: "./media/characters/ranek/feral.svg"
  7735. }
  7736. },
  7737. },
  7738. [
  7739. {
  7740. name: "Normal",
  7741. height: math.unit(194, "cm"),
  7742. default: true
  7743. },
  7744. {
  7745. name: "Macro",
  7746. height: math.unit(100, "meters")
  7747. },
  7748. ]
  7749. ))
  7750. characterMakers.push(() => makeCharacter(
  7751. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7752. {
  7753. front: {
  7754. height: math.unit(5 + 6 / 12, "feet"),
  7755. weight: math.unit(153, "lbs"),
  7756. name: "Front",
  7757. image: {
  7758. source: "./media/characters/andrew-cooper/front.svg"
  7759. }
  7760. },
  7761. },
  7762. [
  7763. {
  7764. name: "Nano",
  7765. height: math.unit(1, "mm")
  7766. },
  7767. {
  7768. name: "Micro",
  7769. height: math.unit(2, "inches")
  7770. },
  7771. {
  7772. name: "Normal",
  7773. height: math.unit(5 + 6 / 12, "feet"),
  7774. default: true
  7775. }
  7776. ]
  7777. ))
  7778. characterMakers.push(() => makeCharacter(
  7779. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7780. {
  7781. front: {
  7782. height: math.unit(6, "feet"),
  7783. weight: math.unit(180, "lbs"),
  7784. name: "Front",
  7785. image: {
  7786. source: "./media/characters/akane-sato/front.svg",
  7787. extra: 1219 / 1140
  7788. }
  7789. },
  7790. back: {
  7791. height: math.unit(6, "feet"),
  7792. weight: math.unit(180, "lbs"),
  7793. name: "Back",
  7794. image: {
  7795. source: "./media/characters/akane-sato/back.svg",
  7796. extra: 1219 / 1170
  7797. }
  7798. },
  7799. },
  7800. [
  7801. {
  7802. name: "Normal",
  7803. height: math.unit(2.5, "meters")
  7804. },
  7805. {
  7806. name: "Macro",
  7807. height: math.unit(250, "meters"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Megamacro",
  7812. height: math.unit(25, "km")
  7813. },
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(6, "feet"),
  7821. weight: math.unit(65, "kg"),
  7822. name: "Front",
  7823. image: {
  7824. source: "./media/characters/rook/front.svg",
  7825. extra: 960 / 950
  7826. }
  7827. }
  7828. },
  7829. [
  7830. {
  7831. name: "Normal",
  7832. height: math.unit(8.8, "feet")
  7833. },
  7834. {
  7835. name: "Macro",
  7836. height: math.unit(88, "feet"),
  7837. default: true
  7838. },
  7839. {
  7840. name: "Megamacro",
  7841. height: math.unit(8, "miles")
  7842. },
  7843. ]
  7844. ))
  7845. characterMakers.push(() => makeCharacter(
  7846. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7847. {
  7848. front: {
  7849. height: math.unit(12 + 2 / 12, "feet"),
  7850. weight: math.unit(808, "lbs"),
  7851. name: "Front",
  7852. image: {
  7853. source: "./media/characters/prodigy/front.svg"
  7854. }
  7855. }
  7856. },
  7857. [
  7858. {
  7859. name: "Normal",
  7860. height: math.unit(12 + 2 / 12, "feet"),
  7861. default: true
  7862. },
  7863. {
  7864. name: "Macro",
  7865. height: math.unit(143, "feet")
  7866. },
  7867. {
  7868. name: "Macro+",
  7869. height: math.unit(400, "feet")
  7870. },
  7871. ]
  7872. ))
  7873. characterMakers.push(() => makeCharacter(
  7874. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7875. {
  7876. front: {
  7877. height: math.unit(6, "feet"),
  7878. weight: math.unit(225, "lbs"),
  7879. name: "Front",
  7880. image: {
  7881. source: "./media/characters/daniel/front.svg"
  7882. }
  7883. },
  7884. leaning: {
  7885. height: math.unit(6, "feet"),
  7886. weight: math.unit(225, "lbs"),
  7887. name: "Leaning",
  7888. image: {
  7889. source: "./media/characters/daniel/leaning.svg"
  7890. }
  7891. },
  7892. },
  7893. [
  7894. {
  7895. name: "Macro",
  7896. height: math.unit(1000, "feet"),
  7897. default: true
  7898. },
  7899. ]
  7900. ))
  7901. characterMakers.push(() => makeCharacter(
  7902. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7903. {
  7904. front: {
  7905. height: math.unit(6, "feet"),
  7906. weight: math.unit(88, "lbs"),
  7907. name: "Front",
  7908. image: {
  7909. source: "./media/characters/chiros/front.svg",
  7910. extra: 306 / 226
  7911. }
  7912. },
  7913. side: {
  7914. height: math.unit(6, "feet"),
  7915. weight: math.unit(88, "lbs"),
  7916. name: "Side",
  7917. image: {
  7918. source: "./media/characters/chiros/side.svg",
  7919. extra: 306 / 226
  7920. }
  7921. },
  7922. },
  7923. [
  7924. {
  7925. name: "Normal",
  7926. height: math.unit(6, "cm"),
  7927. default: true
  7928. },
  7929. ]
  7930. ))
  7931. characterMakers.push(() => makeCharacter(
  7932. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7933. {
  7934. front: {
  7935. height: math.unit(6, "feet"),
  7936. weight: math.unit(100, "lbs"),
  7937. name: "Front",
  7938. image: {
  7939. source: "./media/characters/selka/front.svg",
  7940. extra: 947 / 887
  7941. }
  7942. }
  7943. },
  7944. [
  7945. {
  7946. name: "Normal",
  7947. height: math.unit(5, "cm"),
  7948. default: true
  7949. },
  7950. ]
  7951. ))
  7952. characterMakers.push(() => makeCharacter(
  7953. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7954. {
  7955. front: {
  7956. height: math.unit(8 + 3 / 12, "feet"),
  7957. weight: math.unit(424, "lbs"),
  7958. name: "Front",
  7959. image: {
  7960. source: "./media/characters/verin/front.svg",
  7961. extra: 1845 / 1550
  7962. }
  7963. },
  7964. frontArmored: {
  7965. height: math.unit(8 + 3 / 12, "feet"),
  7966. weight: math.unit(424, "lbs"),
  7967. name: "Front (Armored)",
  7968. image: {
  7969. source: "./media/characters/verin/front-armor.svg",
  7970. extra: 1845 / 1550,
  7971. bottom: 0.01
  7972. }
  7973. },
  7974. back: {
  7975. height: math.unit(8 + 3 / 12, "feet"),
  7976. weight: math.unit(424, "lbs"),
  7977. name: "Back",
  7978. image: {
  7979. source: "./media/characters/verin/back.svg",
  7980. bottom: 0.1,
  7981. extra: 1
  7982. }
  7983. },
  7984. foot: {
  7985. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7986. name: "Foot",
  7987. image: {
  7988. source: "./media/characters/verin/foot.svg"
  7989. }
  7990. },
  7991. },
  7992. [
  7993. {
  7994. name: "Normal",
  7995. height: math.unit(8 + 3 / 12, "feet")
  7996. },
  7997. {
  7998. name: "Minimacro",
  7999. height: math.unit(21, "feet"),
  8000. default: true
  8001. },
  8002. {
  8003. name: "Macro",
  8004. height: math.unit(626, "feet")
  8005. },
  8006. ]
  8007. ))
  8008. characterMakers.push(() => makeCharacter(
  8009. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8010. {
  8011. front: {
  8012. height: math.unit(2.718, "meters"),
  8013. weight: math.unit(150, "lbs"),
  8014. name: "Front",
  8015. image: {
  8016. source: "./media/characters/sovrim-terraquian/front.svg",
  8017. extra: 1752/1689,
  8018. bottom: 36/1788
  8019. }
  8020. },
  8021. back: {
  8022. height: math.unit(2.718, "meters"),
  8023. weight: math.unit(150, "lbs"),
  8024. name: "Back",
  8025. image: {
  8026. source: "./media/characters/sovrim-terraquian/back.svg",
  8027. extra: 1698/1657,
  8028. bottom: 58/1756
  8029. }
  8030. },
  8031. tongue: {
  8032. height: math.unit(2.865, "feet"),
  8033. name: "Tongue",
  8034. image: {
  8035. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8036. }
  8037. },
  8038. hand: {
  8039. height: math.unit(1.61, "feet"),
  8040. name: "Hand",
  8041. image: {
  8042. source: "./media/characters/sovrim-terraquian/hand.svg"
  8043. }
  8044. },
  8045. foot: {
  8046. height: math.unit(1.05, "feet"),
  8047. name: "Foot",
  8048. image: {
  8049. source: "./media/characters/sovrim-terraquian/foot.svg"
  8050. }
  8051. },
  8052. footAlt: {
  8053. height: math.unit(0.88, "feet"),
  8054. name: "Foot (Alt)",
  8055. image: {
  8056. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8057. }
  8058. },
  8059. },
  8060. [
  8061. {
  8062. name: "Micro",
  8063. height: math.unit(2, "inches")
  8064. },
  8065. {
  8066. name: "Small",
  8067. height: math.unit(1, "meter")
  8068. },
  8069. {
  8070. name: "Normal",
  8071. height: math.unit(Math.E, "meters"),
  8072. default: true
  8073. },
  8074. {
  8075. name: "Macro",
  8076. height: math.unit(20, "meters")
  8077. },
  8078. {
  8079. name: "Macro+",
  8080. height: math.unit(400, "meters")
  8081. },
  8082. ]
  8083. ))
  8084. characterMakers.push(() => makeCharacter(
  8085. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8086. {
  8087. front: {
  8088. height: math.unit(7, "feet"),
  8089. weight: math.unit(489, "lbs"),
  8090. name: "Front",
  8091. image: {
  8092. source: "./media/characters/reece-silvermane/front.svg",
  8093. bottom: 0.02,
  8094. extra: 1
  8095. }
  8096. },
  8097. },
  8098. [
  8099. {
  8100. name: "Macro",
  8101. height: math.unit(1.5, "miles"),
  8102. default: true
  8103. },
  8104. ]
  8105. ))
  8106. characterMakers.push(() => makeCharacter(
  8107. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8108. {
  8109. front: {
  8110. height: math.unit(6, "feet"),
  8111. weight: math.unit(78, "kg"),
  8112. name: "Front",
  8113. image: {
  8114. source: "./media/characters/kane/front.svg",
  8115. extra: 978 / 899
  8116. }
  8117. },
  8118. },
  8119. [
  8120. {
  8121. name: "Normal",
  8122. height: math.unit(2.1, "m"),
  8123. },
  8124. {
  8125. name: "Macro",
  8126. height: math.unit(1, "km"),
  8127. default: true
  8128. },
  8129. ]
  8130. ))
  8131. characterMakers.push(() => makeCharacter(
  8132. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8133. {
  8134. front: {
  8135. height: math.unit(6, "feet"),
  8136. weight: math.unit(200, "kg"),
  8137. name: "Front",
  8138. image: {
  8139. source: "./media/characters/tegon/front.svg",
  8140. bottom: 0.01,
  8141. extra: 1
  8142. }
  8143. },
  8144. },
  8145. [
  8146. {
  8147. name: "Micro",
  8148. height: math.unit(1, "inch")
  8149. },
  8150. {
  8151. name: "Normal",
  8152. height: math.unit(6 + 3 / 12, "feet"),
  8153. default: true
  8154. },
  8155. {
  8156. name: "Macro",
  8157. height: math.unit(300, "feet")
  8158. },
  8159. {
  8160. name: "Megamacro",
  8161. height: math.unit(69, "miles")
  8162. },
  8163. ]
  8164. ))
  8165. characterMakers.push(() => makeCharacter(
  8166. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8167. {
  8168. side: {
  8169. height: math.unit(6, "feet"),
  8170. weight: math.unit(2304, "lbs"),
  8171. name: "Side",
  8172. image: {
  8173. source: "./media/characters/arcturax/side.svg",
  8174. extra: 790 / 376,
  8175. bottom: 0.01
  8176. }
  8177. },
  8178. },
  8179. [
  8180. {
  8181. name: "Micro",
  8182. height: math.unit(2, "inch")
  8183. },
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(6, "feet")
  8187. },
  8188. {
  8189. name: "Macro",
  8190. height: math.unit(39, "feet"),
  8191. default: true
  8192. },
  8193. {
  8194. name: "Megamacro",
  8195. height: math.unit(7, "miles")
  8196. },
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(6, "feet"),
  8204. weight: math.unit(50, "lbs"),
  8205. name: "Front",
  8206. image: {
  8207. source: "./media/characters/sentri/front.svg",
  8208. extra: 1750 / 1570,
  8209. bottom: 0.025
  8210. }
  8211. },
  8212. frontAlt: {
  8213. height: math.unit(6, "feet"),
  8214. weight: math.unit(50, "lbs"),
  8215. name: "Front (Alt)",
  8216. image: {
  8217. source: "./media/characters/sentri/front-alt.svg",
  8218. extra: 1750 / 1570,
  8219. bottom: 0.025
  8220. }
  8221. },
  8222. },
  8223. [
  8224. {
  8225. name: "Normal",
  8226. height: math.unit(15, "feet"),
  8227. default: true
  8228. },
  8229. {
  8230. name: "Macro",
  8231. height: math.unit(2500, "feet")
  8232. }
  8233. ]
  8234. ))
  8235. characterMakers.push(() => makeCharacter(
  8236. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8237. {
  8238. front: {
  8239. height: math.unit(5 + 8 / 12, "feet"),
  8240. weight: math.unit(130, "lbs"),
  8241. name: "Front",
  8242. image: {
  8243. source: "./media/characters/corvin/front.svg",
  8244. extra: 1803 / 1629
  8245. }
  8246. },
  8247. frontShirt: {
  8248. height: math.unit(5 + 8 / 12, "feet"),
  8249. weight: math.unit(130, "lbs"),
  8250. name: "Front (Shirt)",
  8251. image: {
  8252. source: "./media/characters/corvin/front-shirt.svg",
  8253. extra: 1803 / 1629
  8254. }
  8255. },
  8256. frontPoncho: {
  8257. height: math.unit(5 + 8 / 12, "feet"),
  8258. weight: math.unit(130, "lbs"),
  8259. name: "Front (Poncho)",
  8260. image: {
  8261. source: "./media/characters/corvin/front-poncho.svg",
  8262. extra: 1803 / 1629
  8263. }
  8264. },
  8265. side: {
  8266. height: math.unit(5 + 8 / 12, "feet"),
  8267. weight: math.unit(130, "lbs"),
  8268. name: "Side",
  8269. image: {
  8270. source: "./media/characters/corvin/side.svg",
  8271. extra: 1012 / 945
  8272. }
  8273. },
  8274. back: {
  8275. height: math.unit(5 + 8 / 12, "feet"),
  8276. weight: math.unit(130, "lbs"),
  8277. name: "Back",
  8278. image: {
  8279. source: "./media/characters/corvin/back.svg",
  8280. extra: 1803 / 1629
  8281. }
  8282. },
  8283. },
  8284. [
  8285. {
  8286. name: "Micro",
  8287. height: math.unit(3, "inches")
  8288. },
  8289. {
  8290. name: "Normal",
  8291. height: math.unit(5 + 8 / 12, "feet")
  8292. },
  8293. {
  8294. name: "Macro",
  8295. height: math.unit(300, "feet"),
  8296. default: true
  8297. },
  8298. {
  8299. name: "Megamacro",
  8300. height: math.unit(500, "miles")
  8301. }
  8302. ]
  8303. ))
  8304. characterMakers.push(() => makeCharacter(
  8305. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8306. {
  8307. front: {
  8308. height: math.unit(6, "feet"),
  8309. weight: math.unit(135, "lbs"),
  8310. name: "Front",
  8311. image: {
  8312. source: "./media/characters/q/front.svg",
  8313. extra: 854 / 752,
  8314. bottom: 0.005
  8315. }
  8316. },
  8317. back: {
  8318. height: math.unit(6, "feet"),
  8319. weight: math.unit(130, "lbs"),
  8320. name: "Back",
  8321. image: {
  8322. source: "./media/characters/q/back.svg",
  8323. extra: 854 / 752
  8324. }
  8325. },
  8326. },
  8327. [
  8328. {
  8329. name: "Macro",
  8330. height: math.unit(90, "feet"),
  8331. default: true
  8332. },
  8333. {
  8334. name: "Extra Macro",
  8335. height: math.unit(300, "feet"),
  8336. },
  8337. {
  8338. name: "BIG WALF",
  8339. height: math.unit(750, "feet"),
  8340. },
  8341. ]
  8342. ))
  8343. characterMakers.push(() => makeCharacter(
  8344. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8345. {
  8346. front: {
  8347. height: math.unit(6, "feet"),
  8348. weight: math.unit(150, "lbs"),
  8349. name: "Front",
  8350. image: {
  8351. source: "./media/characters/carley/front.svg",
  8352. extra: 3927 / 3540,
  8353. bottom: 29.2 / 735
  8354. }
  8355. }
  8356. },
  8357. [
  8358. {
  8359. name: "Normal",
  8360. height: math.unit(6 + 3 / 12, "feet")
  8361. },
  8362. {
  8363. name: "Macro",
  8364. height: math.unit(185, "feet"),
  8365. default: true
  8366. },
  8367. {
  8368. name: "Megamacro",
  8369. height: math.unit(8, "miles"),
  8370. },
  8371. ]
  8372. ))
  8373. characterMakers.push(() => makeCharacter(
  8374. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8375. {
  8376. front: {
  8377. height: math.unit(3, "feet"),
  8378. weight: math.unit(28, "lbs"),
  8379. name: "Front",
  8380. image: {
  8381. source: "./media/characters/citrine/front.svg"
  8382. }
  8383. }
  8384. },
  8385. [
  8386. {
  8387. name: "Normal",
  8388. height: math.unit(3, "feet"),
  8389. default: true
  8390. }
  8391. ]
  8392. ))
  8393. characterMakers.push(() => makeCharacter(
  8394. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8395. {
  8396. front: {
  8397. height: math.unit(14, "feet"),
  8398. weight: math.unit(1450, "kg"),
  8399. capacity: math.unit(15, "people"),
  8400. name: "Front",
  8401. image: {
  8402. source: "./media/characters/aura-starwind/front.svg",
  8403. extra: 1440/1327,
  8404. bottom: 11/1451
  8405. }
  8406. },
  8407. side: {
  8408. height: math.unit(14, "feet"),
  8409. weight: math.unit(1450, "kg"),
  8410. capacity: math.unit(15, "people"),
  8411. name: "Side",
  8412. image: {
  8413. source: "./media/characters/aura-starwind/side.svg",
  8414. extra: 1654 / 1497
  8415. }
  8416. },
  8417. taur: {
  8418. height: math.unit(18, "feet"),
  8419. weight: math.unit(5500, "kg"),
  8420. capacity: math.unit(50, "people"),
  8421. name: "Taur",
  8422. image: {
  8423. source: "./media/characters/aura-starwind/taur.svg",
  8424. extra: 1760 / 1650
  8425. }
  8426. },
  8427. feral: {
  8428. height: math.unit(46, "feet"),
  8429. weight: math.unit(25000, "kg"),
  8430. capacity: math.unit(120, "people"),
  8431. name: "Feral",
  8432. image: {
  8433. source: "./media/characters/aura-starwind/feral.svg"
  8434. }
  8435. },
  8436. },
  8437. [
  8438. {
  8439. name: "Normal",
  8440. height: math.unit(14, "feet"),
  8441. default: true
  8442. },
  8443. {
  8444. name: "Macro",
  8445. height: math.unit(50, "meters")
  8446. },
  8447. {
  8448. name: "Megamacro",
  8449. height: math.unit(5000, "meters")
  8450. },
  8451. {
  8452. name: "Gigamacro",
  8453. height: math.unit(100000, "kilometers")
  8454. },
  8455. ]
  8456. ))
  8457. characterMakers.push(() => makeCharacter(
  8458. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8459. {
  8460. front: {
  8461. height: math.unit(2 + 7 / 12, "feet"),
  8462. weight: math.unit(32, "lbs"),
  8463. name: "Front",
  8464. image: {
  8465. source: "./media/characters/rivet/front.svg",
  8466. extra: 1716 / 1658,
  8467. bottom: 0.03
  8468. }
  8469. },
  8470. foot: {
  8471. height: math.unit(0.551, "feet"),
  8472. name: "Rivet's Foot",
  8473. image: {
  8474. source: "./media/characters/rivet/foot.svg"
  8475. },
  8476. rename: true
  8477. }
  8478. },
  8479. [
  8480. {
  8481. name: "Micro",
  8482. height: math.unit(1.5, "inches"),
  8483. },
  8484. {
  8485. name: "Normal",
  8486. height: math.unit(2 + 7 / 12, "feet"),
  8487. default: true
  8488. },
  8489. {
  8490. name: "Macro",
  8491. height: math.unit(85, "feet")
  8492. },
  8493. {
  8494. name: "Megamacro",
  8495. height: math.unit(2.2, "km")
  8496. }
  8497. ]
  8498. ))
  8499. characterMakers.push(() => makeCharacter(
  8500. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8501. {
  8502. front: {
  8503. height: math.unit(5 + 9 / 12, "feet"),
  8504. weight: math.unit(150, "lbs"),
  8505. name: "Front",
  8506. image: {
  8507. source: "./media/characters/coffee/front.svg",
  8508. extra: 3666 / 3032,
  8509. bottom: 0.04
  8510. }
  8511. },
  8512. foot: {
  8513. height: math.unit(1.29, "feet"),
  8514. name: "Foot",
  8515. image: {
  8516. source: "./media/characters/coffee/foot.svg"
  8517. }
  8518. },
  8519. },
  8520. [
  8521. {
  8522. name: "Micro",
  8523. height: math.unit(2, "inches"),
  8524. },
  8525. {
  8526. name: "Normal",
  8527. height: math.unit(5 + 9 / 12, "feet"),
  8528. default: true
  8529. },
  8530. {
  8531. name: "Macro",
  8532. height: math.unit(800, "feet")
  8533. },
  8534. {
  8535. name: "Megamacro",
  8536. height: math.unit(25, "miles")
  8537. }
  8538. ]
  8539. ))
  8540. characterMakers.push(() => makeCharacter(
  8541. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8542. {
  8543. front: {
  8544. height: math.unit(6, "feet"),
  8545. weight: math.unit(200, "lbs"),
  8546. name: "Front",
  8547. image: {
  8548. source: "./media/characters/chari-gal/front.svg",
  8549. extra: 1568 / 1385,
  8550. bottom: 0.047
  8551. }
  8552. },
  8553. gigantamax: {
  8554. height: math.unit(6 * 16, "feet"),
  8555. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8556. name: "Gigantamax",
  8557. image: {
  8558. source: "./media/characters/chari-gal/gigantamax.svg",
  8559. extra: 1124 / 888,
  8560. bottom: 0.03
  8561. }
  8562. },
  8563. },
  8564. [
  8565. {
  8566. name: "Normal",
  8567. height: math.unit(5 + 7 / 12, "feet")
  8568. },
  8569. {
  8570. name: "Macro",
  8571. height: math.unit(200, "feet"),
  8572. default: true
  8573. }
  8574. ]
  8575. ))
  8576. characterMakers.push(() => makeCharacter(
  8577. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8578. {
  8579. front: {
  8580. height: math.unit(6, "feet"),
  8581. weight: math.unit(150, "lbs"),
  8582. name: "Front",
  8583. image: {
  8584. source: "./media/characters/nova/front.svg",
  8585. extra: 5000 / 4722,
  8586. bottom: 0.02
  8587. }
  8588. }
  8589. },
  8590. [
  8591. {
  8592. name: "Micro-",
  8593. height: math.unit(0.8, "inches")
  8594. },
  8595. {
  8596. name: "Micro",
  8597. height: math.unit(2, "inches"),
  8598. default: true
  8599. },
  8600. ]
  8601. ))
  8602. characterMakers.push(() => makeCharacter(
  8603. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8604. {
  8605. front: {
  8606. height: math.unit(3 + 1 / 12, "feet"),
  8607. weight: math.unit(21.7, "lbs"),
  8608. name: "Front",
  8609. image: {
  8610. source: "./media/characters/argent/front.svg",
  8611. extra: 1471 / 1331,
  8612. bottom: 100.8 / 1575.5
  8613. }
  8614. }
  8615. },
  8616. [
  8617. {
  8618. name: "Micro",
  8619. height: math.unit(2, "inches")
  8620. },
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(3 + 1 / 12, "feet"),
  8624. default: true
  8625. },
  8626. {
  8627. name: "Macro",
  8628. height: math.unit(120, "feet")
  8629. },
  8630. ]
  8631. ))
  8632. characterMakers.push(() => makeCharacter(
  8633. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8634. {
  8635. lamp: {
  8636. height: math.unit(7 * 1559 / 989, "feet"),
  8637. name: "Magic Lamp",
  8638. image: {
  8639. source: "./media/characters/mira-al-cul/lamp.svg",
  8640. extra: 1617 / 1559
  8641. }
  8642. },
  8643. front: {
  8644. height: math.unit(7, "feet"),
  8645. name: "Front",
  8646. image: {
  8647. source: "./media/characters/mira-al-cul/front.svg",
  8648. extra: 1044 / 990
  8649. }
  8650. },
  8651. },
  8652. [
  8653. {
  8654. name: "Heavily Restricted",
  8655. height: math.unit(7 * 1559 / 989, "feet")
  8656. },
  8657. {
  8658. name: "Freshly Freed",
  8659. height: math.unit(50 * 1559 / 989, "feet")
  8660. },
  8661. {
  8662. name: "World Encompassing",
  8663. height: math.unit(10000 * 1559 / 989, "miles")
  8664. },
  8665. {
  8666. name: "Galactic",
  8667. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8668. },
  8669. {
  8670. name: "Palmed Universe",
  8671. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8672. default: true
  8673. },
  8674. {
  8675. name: "Multiversal Matriarch",
  8676. height: math.unit(8.87e10, "yottameters")
  8677. },
  8678. {
  8679. name: "Void Mother",
  8680. height: math.unit(3.14e110, "yottaparsecs")
  8681. },
  8682. {
  8683. name: "Toying with Transcendence",
  8684. height: math.unit(1e307, "meters")
  8685. },
  8686. ]
  8687. ))
  8688. characterMakers.push(() => makeCharacter(
  8689. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8690. {
  8691. front: {
  8692. height: math.unit(17 + 1 / 12, "feet"),
  8693. weight: math.unit(476.2 * 5, "lbs"),
  8694. name: "Front",
  8695. image: {
  8696. source: "./media/characters/kuro-shi-uchū/front.svg",
  8697. extra: 2329 / 1835,
  8698. bottom: 0.02
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Micro",
  8705. height: math.unit(2, "inches")
  8706. },
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(12, "meters")
  8710. },
  8711. {
  8712. name: "Planetary",
  8713. height: math.unit(0.00929, "AU"),
  8714. default: true
  8715. },
  8716. {
  8717. name: "Universal",
  8718. height: math.unit(20, "gigaparsecs")
  8719. },
  8720. ]
  8721. ))
  8722. characterMakers.push(() => makeCharacter(
  8723. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8724. {
  8725. front: {
  8726. height: math.unit(5 + 2 / 12, "feet"),
  8727. weight: math.unit(120, "lbs"),
  8728. name: "Front",
  8729. image: {
  8730. source: "./media/characters/katherine/front.svg",
  8731. extra: 2075 / 1969
  8732. }
  8733. },
  8734. dress: {
  8735. height: math.unit(5 + 2 / 12, "feet"),
  8736. weight: math.unit(120, "lbs"),
  8737. name: "Dress",
  8738. image: {
  8739. source: "./media/characters/katherine/dress.svg",
  8740. extra: 2258 / 2064
  8741. }
  8742. },
  8743. },
  8744. [
  8745. {
  8746. name: "Micro",
  8747. height: math.unit(1, "inches"),
  8748. default: true
  8749. },
  8750. {
  8751. name: "Normal",
  8752. height: math.unit(5 + 2 / 12, "feet")
  8753. },
  8754. {
  8755. name: "Macro",
  8756. height: math.unit(100, "meters")
  8757. },
  8758. {
  8759. name: "Megamacro",
  8760. height: math.unit(80, "miles")
  8761. },
  8762. ]
  8763. ))
  8764. characterMakers.push(() => makeCharacter(
  8765. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8766. {
  8767. front: {
  8768. height: math.unit(7 + 8 / 12, "feet"),
  8769. weight: math.unit(250, "lbs"),
  8770. name: "Front",
  8771. image: {
  8772. source: "./media/characters/yevis/front.svg",
  8773. extra: 1938 / 1755
  8774. }
  8775. }
  8776. },
  8777. [
  8778. {
  8779. name: "Mortal",
  8780. height: math.unit(7 + 8 / 12, "feet")
  8781. },
  8782. {
  8783. name: "Battle",
  8784. height: math.unit(25 + 11 / 12, "feet")
  8785. },
  8786. {
  8787. name: "Wrath",
  8788. height: math.unit(1654 + 11 / 12, "feet")
  8789. },
  8790. {
  8791. name: "Planet Destroyer",
  8792. height: math.unit(12000, "miles")
  8793. },
  8794. {
  8795. name: "Galaxy Conqueror",
  8796. height: math.unit(1.45, "zettameters"),
  8797. default: true
  8798. },
  8799. {
  8800. name: "Universal War",
  8801. height: math.unit(184, "gigaparsecs")
  8802. },
  8803. {
  8804. name: "Eternity War",
  8805. height: math.unit(1.98e55, "yottaparsecs")
  8806. },
  8807. ]
  8808. ))
  8809. characterMakers.push(() => makeCharacter(
  8810. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8811. {
  8812. front: {
  8813. height: math.unit(5 + 8 / 12, "feet"),
  8814. weight: math.unit(63, "kg"),
  8815. name: "Front",
  8816. image: {
  8817. source: "./media/characters/xavier/front.svg",
  8818. extra: 944 / 883
  8819. }
  8820. },
  8821. frontStretch: {
  8822. height: math.unit(5 + 8 / 12, "feet"),
  8823. weight: math.unit(63, "kg"),
  8824. name: "Stretching",
  8825. image: {
  8826. source: "./media/characters/xavier/front-stretch.svg",
  8827. extra: 962 / 820
  8828. }
  8829. },
  8830. },
  8831. [
  8832. {
  8833. name: "Normal",
  8834. height: math.unit(5 + 8 / 12, "feet")
  8835. },
  8836. {
  8837. name: "Macro",
  8838. height: math.unit(100, "meters"),
  8839. default: true
  8840. },
  8841. {
  8842. name: "McLargeHuge",
  8843. height: math.unit(10, "miles")
  8844. },
  8845. ]
  8846. ))
  8847. characterMakers.push(() => makeCharacter(
  8848. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8849. {
  8850. front: {
  8851. height: math.unit(5 + 5 / 12, "feet"),
  8852. weight: math.unit(150, "lb"),
  8853. name: "Front",
  8854. image: {
  8855. source: "./media/characters/joshii/front.svg",
  8856. extra: 765 / 653,
  8857. bottom: 51 / 816
  8858. }
  8859. },
  8860. foot: {
  8861. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8862. name: "Foot",
  8863. image: {
  8864. source: "./media/characters/joshii/foot.svg"
  8865. }
  8866. },
  8867. },
  8868. [
  8869. {
  8870. name: "Micro",
  8871. height: math.unit(2, "inches"),
  8872. default: true
  8873. },
  8874. {
  8875. name: "Normal",
  8876. height: math.unit(5 + 5 / 12, "feet")
  8877. },
  8878. {
  8879. name: "Macro",
  8880. height: math.unit(785, "feet")
  8881. },
  8882. {
  8883. name: "Megamacro",
  8884. height: math.unit(24.5, "miles")
  8885. },
  8886. ]
  8887. ))
  8888. characterMakers.push(() => makeCharacter(
  8889. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8890. {
  8891. front: {
  8892. height: math.unit(6, "feet"),
  8893. weight: math.unit(150, "lb"),
  8894. name: "Front",
  8895. image: {
  8896. source: "./media/characters/goddess-elizabeth/front.svg",
  8897. extra: 1800 / 1525,
  8898. bottom: 0.005
  8899. }
  8900. },
  8901. foot: {
  8902. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8903. name: "Foot",
  8904. image: {
  8905. source: "./media/characters/goddess-elizabeth/foot.svg"
  8906. }
  8907. },
  8908. mouth: {
  8909. height: math.unit(6, "feet"),
  8910. name: "Mouth",
  8911. image: {
  8912. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8913. }
  8914. },
  8915. },
  8916. [
  8917. {
  8918. name: "Micro",
  8919. height: math.unit(12, "feet")
  8920. },
  8921. {
  8922. name: "Normal",
  8923. height: math.unit(80, "miles"),
  8924. default: true
  8925. },
  8926. {
  8927. name: "Macro",
  8928. height: math.unit(15000, "parsecs")
  8929. },
  8930. ]
  8931. ))
  8932. characterMakers.push(() => makeCharacter(
  8933. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8934. {
  8935. front: {
  8936. height: math.unit(5 + 9 / 12, "feet"),
  8937. weight: math.unit(144, "lb"),
  8938. name: "Front",
  8939. image: {
  8940. source: "./media/characters/kara/front.svg"
  8941. }
  8942. },
  8943. feet: {
  8944. height: math.unit(6 / 6.765, "feet"),
  8945. name: "Kara's Feet",
  8946. rename: true,
  8947. image: {
  8948. source: "./media/characters/kara/feet.svg"
  8949. }
  8950. },
  8951. },
  8952. [
  8953. {
  8954. name: "Normal",
  8955. height: math.unit(5 + 9 / 12, "feet")
  8956. },
  8957. {
  8958. name: "Macro",
  8959. height: math.unit(174, "feet"),
  8960. default: true
  8961. },
  8962. ]
  8963. ))
  8964. characterMakers.push(() => makeCharacter(
  8965. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8966. {
  8967. front: {
  8968. height: math.unit(18, "feet"),
  8969. weight: math.unit(4050, "lb"),
  8970. name: "Front",
  8971. image: {
  8972. source: "./media/characters/tyrone/front.svg",
  8973. extra: 2405 / 2270,
  8974. bottom: 182 / 2587
  8975. }
  8976. },
  8977. },
  8978. [
  8979. {
  8980. name: "Normal",
  8981. height: math.unit(18, "feet"),
  8982. default: true
  8983. },
  8984. {
  8985. name: "Macro",
  8986. height: math.unit(300, "feet")
  8987. },
  8988. {
  8989. name: "Megamacro",
  8990. height: math.unit(15, "km")
  8991. },
  8992. {
  8993. name: "Gigamacro",
  8994. height: math.unit(500, "km")
  8995. },
  8996. {
  8997. name: "Teramacro",
  8998. height: math.unit(0.5, "gigameters")
  8999. },
  9000. {
  9001. name: "Omnimacro",
  9002. height: math.unit(1e252, "yottauniverse")
  9003. },
  9004. ]
  9005. ))
  9006. characterMakers.push(() => makeCharacter(
  9007. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9008. {
  9009. front: {
  9010. height: math.unit(7 + 8 / 12, "feet"),
  9011. weight: math.unit(120, "lb"),
  9012. name: "Front",
  9013. image: {
  9014. source: "./media/characters/danny/front.svg",
  9015. extra: 1490 / 1350
  9016. }
  9017. },
  9018. back: {
  9019. height: math.unit(7 + 8 / 12, "feet"),
  9020. weight: math.unit(120, "lb"),
  9021. name: "Back",
  9022. image: {
  9023. source: "./media/characters/danny/back.svg",
  9024. extra: 1490 / 1350
  9025. }
  9026. },
  9027. },
  9028. [
  9029. {
  9030. name: "Normal",
  9031. height: math.unit(7 + 8 / 12, "feet"),
  9032. default: true
  9033. },
  9034. ]
  9035. ))
  9036. characterMakers.push(() => makeCharacter(
  9037. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9038. {
  9039. front: {
  9040. height: math.unit(3.5, "inches"),
  9041. weight: math.unit(19, "grams"),
  9042. name: "Front",
  9043. image: {
  9044. source: "./media/characters/mallow/front.svg",
  9045. extra: 471 / 431
  9046. }
  9047. },
  9048. back: {
  9049. height: math.unit(3.5, "inches"),
  9050. weight: math.unit(19, "grams"),
  9051. name: "Back",
  9052. image: {
  9053. source: "./media/characters/mallow/back.svg",
  9054. extra: 471 / 431
  9055. }
  9056. },
  9057. },
  9058. [
  9059. {
  9060. name: "Normal",
  9061. height: math.unit(3.5, "inches"),
  9062. default: true
  9063. },
  9064. ]
  9065. ))
  9066. characterMakers.push(() => makeCharacter(
  9067. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9068. {
  9069. front: {
  9070. height: math.unit(9, "feet"),
  9071. weight: math.unit(230, "kg"),
  9072. name: "Front",
  9073. image: {
  9074. source: "./media/characters/starry-aqua/front.svg"
  9075. }
  9076. },
  9077. back: {
  9078. height: math.unit(9, "feet"),
  9079. weight: math.unit(230, "kg"),
  9080. name: "Back",
  9081. image: {
  9082. source: "./media/characters/starry-aqua/back.svg"
  9083. }
  9084. },
  9085. hand: {
  9086. height: math.unit(9 * 0.1168, "feet"),
  9087. name: "Hand",
  9088. image: {
  9089. source: "./media/characters/starry-aqua/hand.svg"
  9090. }
  9091. },
  9092. foot: {
  9093. height: math.unit(9 * 0.18, "feet"),
  9094. name: "Foot",
  9095. image: {
  9096. source: "./media/characters/starry-aqua/foot.svg"
  9097. }
  9098. }
  9099. },
  9100. [
  9101. {
  9102. name: "Micro",
  9103. height: math.unit(3, "inches")
  9104. },
  9105. {
  9106. name: "Normal",
  9107. height: math.unit(9, "feet")
  9108. },
  9109. {
  9110. name: "Macro",
  9111. height: math.unit(300, "feet"),
  9112. default: true
  9113. },
  9114. {
  9115. name: "Megamacro",
  9116. height: math.unit(3200, "feet")
  9117. }
  9118. ]
  9119. ))
  9120. characterMakers.push(() => makeCharacter(
  9121. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9122. {
  9123. front: {
  9124. height: math.unit(15, "feet"),
  9125. weight: math.unit(5026, "lb"),
  9126. name: "Front",
  9127. image: {
  9128. source: "./media/characters/luka-towers/front.svg",
  9129. extra: 1269/1133,
  9130. bottom: 51/1320
  9131. }
  9132. },
  9133. },
  9134. [
  9135. {
  9136. name: "Normal",
  9137. height: math.unit(15, "feet"),
  9138. default: true
  9139. },
  9140. {
  9141. name: "Minimacro",
  9142. height: math.unit(25, "feet")
  9143. },
  9144. {
  9145. name: "Macro",
  9146. height: math.unit(320, "feet")
  9147. },
  9148. {
  9149. name: "Megamacro",
  9150. height: math.unit(35000, "feet")
  9151. },
  9152. {
  9153. name: "Gigamacro",
  9154. height: math.unit(4000, "miles")
  9155. },
  9156. {
  9157. name: "Teramacro",
  9158. height: math.unit(15000, "miles")
  9159. },
  9160. ]
  9161. ))
  9162. characterMakers.push(() => makeCharacter(
  9163. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9164. {
  9165. front: {
  9166. height: math.unit(6, "feet"),
  9167. weight: math.unit(150, "lb"),
  9168. name: "Front",
  9169. image: {
  9170. source: "./media/characters/natalie-nightring/front.svg",
  9171. extra: 1,
  9172. bottom: 0.06
  9173. }
  9174. },
  9175. },
  9176. [
  9177. {
  9178. name: "Uh Oh",
  9179. height: math.unit(0.1, "mm")
  9180. },
  9181. {
  9182. name: "Small",
  9183. height: math.unit(3, "inches")
  9184. },
  9185. {
  9186. name: "Human Scale",
  9187. height: math.unit(6, "feet")
  9188. },
  9189. {
  9190. name: "Librarian",
  9191. height: math.unit(50, "feet"),
  9192. default: true
  9193. },
  9194. {
  9195. name: "Immense",
  9196. height: math.unit(200, "miles")
  9197. },
  9198. ]
  9199. ))
  9200. characterMakers.push(() => makeCharacter(
  9201. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9202. {
  9203. front: {
  9204. height: math.unit(6, "feet"),
  9205. weight: math.unit(180, "lbs"),
  9206. name: "Front",
  9207. image: {
  9208. source: "./media/characters/danni-rosie/front.svg",
  9209. extra: 1260 / 1128,
  9210. bottom: 0.022
  9211. }
  9212. },
  9213. },
  9214. [
  9215. {
  9216. name: "Micro",
  9217. height: math.unit(2, "inches"),
  9218. default: true
  9219. },
  9220. ]
  9221. ))
  9222. characterMakers.push(() => makeCharacter(
  9223. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9224. {
  9225. front: {
  9226. height: math.unit(5 + 9 / 12, "feet"),
  9227. weight: math.unit(220, "lb"),
  9228. name: "Front",
  9229. image: {
  9230. source: "./media/characters/samantha-kruse/front.svg",
  9231. extra: (985 / 935),
  9232. bottom: 0.03
  9233. }
  9234. },
  9235. frontUndressed: {
  9236. height: math.unit(5 + 9 / 12, "feet"),
  9237. weight: math.unit(220, "lb"),
  9238. name: "Front (Undressed)",
  9239. image: {
  9240. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9241. extra: (973 / 923),
  9242. bottom: 0.025
  9243. }
  9244. },
  9245. fat: {
  9246. height: math.unit(5 + 9 / 12, "feet"),
  9247. weight: math.unit(900, "lb"),
  9248. name: "Front (Fat)",
  9249. image: {
  9250. source: "./media/characters/samantha-kruse/fat.svg",
  9251. extra: 2688 / 2561
  9252. }
  9253. },
  9254. },
  9255. [
  9256. {
  9257. name: "Normal",
  9258. height: math.unit(5 + 9 / 12, "feet"),
  9259. default: true
  9260. }
  9261. ]
  9262. ))
  9263. characterMakers.push(() => makeCharacter(
  9264. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9265. {
  9266. back: {
  9267. height: math.unit(5 + 4 / 12, "feet"),
  9268. weight: math.unit(4963, "lb"),
  9269. name: "Back",
  9270. image: {
  9271. source: "./media/characters/amelia-rosie/back.svg",
  9272. extra: 1113 / 963,
  9273. bottom: 0.01
  9274. }
  9275. },
  9276. },
  9277. [
  9278. {
  9279. name: "Level 0",
  9280. height: math.unit(5 + 4 / 12, "feet")
  9281. },
  9282. {
  9283. name: "Level 1",
  9284. height: math.unit(164597, "feet"),
  9285. default: true
  9286. },
  9287. {
  9288. name: "Level 2",
  9289. height: math.unit(956243, "miles")
  9290. },
  9291. {
  9292. name: "Level 3",
  9293. height: math.unit(29421709423, "miles")
  9294. },
  9295. {
  9296. name: "Level 4",
  9297. height: math.unit(154, "lightyears")
  9298. },
  9299. {
  9300. name: "Level 5",
  9301. height: math.unit(4738272, "lightyears")
  9302. },
  9303. {
  9304. name: "Level 6",
  9305. height: math.unit(145787152896, "lightyears")
  9306. },
  9307. ]
  9308. ))
  9309. characterMakers.push(() => makeCharacter(
  9310. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9311. {
  9312. front: {
  9313. height: math.unit(5 + 11 / 12, "feet"),
  9314. weight: math.unit(65, "kg"),
  9315. name: "Front",
  9316. image: {
  9317. source: "./media/characters/rook-kitara/front.svg",
  9318. extra: 1347 / 1274,
  9319. bottom: 0.005
  9320. }
  9321. },
  9322. },
  9323. [
  9324. {
  9325. name: "Totally Unfair",
  9326. height: math.unit(1.8, "mm")
  9327. },
  9328. {
  9329. name: "Lap Rookie",
  9330. height: math.unit(1.4, "feet")
  9331. },
  9332. {
  9333. name: "Normal",
  9334. height: math.unit(5 + 11 / 12, "feet"),
  9335. default: true
  9336. },
  9337. {
  9338. name: "How Did This Happen",
  9339. height: math.unit(80, "miles")
  9340. }
  9341. ]
  9342. ))
  9343. characterMakers.push(() => makeCharacter(
  9344. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9345. {
  9346. front: {
  9347. height: math.unit(7, "feet"),
  9348. weight: math.unit(300, "lb"),
  9349. name: "Front",
  9350. image: {
  9351. source: "./media/characters/pisces/front.svg",
  9352. extra: 2255 / 2115,
  9353. bottom: 0.03
  9354. }
  9355. },
  9356. back: {
  9357. height: math.unit(7, "feet"),
  9358. weight: math.unit(300, "lb"),
  9359. name: "Back",
  9360. image: {
  9361. source: "./media/characters/pisces/back.svg",
  9362. extra: 2146 / 2055,
  9363. bottom: 0.04
  9364. }
  9365. },
  9366. },
  9367. [
  9368. {
  9369. name: "Normal",
  9370. height: math.unit(7, "feet"),
  9371. default: true
  9372. },
  9373. {
  9374. name: "Swimming Pool",
  9375. height: math.unit(12.2, "meters")
  9376. },
  9377. {
  9378. name: "Olympic Swimming Pool",
  9379. height: math.unit(56.3, "meters")
  9380. },
  9381. {
  9382. name: "Lake Superior",
  9383. height: math.unit(93900, "meters")
  9384. },
  9385. {
  9386. name: "Mediterranean Sea",
  9387. height: math.unit(644457, "meters")
  9388. },
  9389. {
  9390. name: "World's Oceans",
  9391. height: math.unit(4567491, "meters")
  9392. },
  9393. ]
  9394. ))
  9395. characterMakers.push(() => makeCharacter(
  9396. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9397. {
  9398. front: {
  9399. height: math.unit(2.3, "meters"),
  9400. weight: math.unit(120, "kg"),
  9401. name: "Front",
  9402. image: {
  9403. source: "./media/characters/zelas/front.svg"
  9404. }
  9405. },
  9406. side: {
  9407. height: math.unit(2.3, "meters"),
  9408. weight: math.unit(120, "kg"),
  9409. name: "Side",
  9410. image: {
  9411. source: "./media/characters/zelas/side.svg"
  9412. }
  9413. },
  9414. back: {
  9415. height: math.unit(2.3, "meters"),
  9416. weight: math.unit(120, "kg"),
  9417. name: "Back",
  9418. image: {
  9419. source: "./media/characters/zelas/back.svg"
  9420. }
  9421. },
  9422. foot: {
  9423. height: math.unit(1.116, "feet"),
  9424. name: "Foot",
  9425. image: {
  9426. source: "./media/characters/zelas/foot.svg"
  9427. }
  9428. },
  9429. },
  9430. [
  9431. {
  9432. name: "Normal",
  9433. height: math.unit(2.3, "meters")
  9434. },
  9435. {
  9436. name: "Macro",
  9437. height: math.unit(30, "meters"),
  9438. default: true
  9439. },
  9440. ]
  9441. ))
  9442. characterMakers.push(() => makeCharacter(
  9443. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9444. {
  9445. front: {
  9446. height: math.unit(1, "inch"),
  9447. weight: math.unit(0.21, "grams"),
  9448. name: "Front",
  9449. image: {
  9450. source: "./media/characters/talbot/front.svg",
  9451. extra: 594 / 544
  9452. }
  9453. },
  9454. },
  9455. [
  9456. {
  9457. name: "Micro",
  9458. height: math.unit(1, "inch"),
  9459. default: true
  9460. },
  9461. ]
  9462. ))
  9463. characterMakers.push(() => makeCharacter(
  9464. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9465. {
  9466. front: {
  9467. height: math.unit(3 + 3 / 12, "feet"),
  9468. weight: math.unit(51.8, "lb"),
  9469. name: "Front",
  9470. image: {
  9471. source: "./media/characters/fliss/front.svg",
  9472. extra: 840 / 640
  9473. }
  9474. },
  9475. },
  9476. [
  9477. {
  9478. name: "Teeny Tiny",
  9479. height: math.unit(1, "mm")
  9480. },
  9481. {
  9482. name: "Small",
  9483. height: math.unit(1, "inch"),
  9484. default: true
  9485. },
  9486. {
  9487. name: "Standard Sylveon",
  9488. height: math.unit(3 + 3 / 12, "feet")
  9489. },
  9490. {
  9491. name: "Large Nuisance",
  9492. height: math.unit(33, "feet")
  9493. },
  9494. {
  9495. name: "City Filler",
  9496. height: math.unit(3000, "feet")
  9497. },
  9498. {
  9499. name: "New Horizon",
  9500. height: math.unit(6000, "miles")
  9501. },
  9502. ]
  9503. ))
  9504. characterMakers.push(() => makeCharacter(
  9505. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9506. {
  9507. front: {
  9508. height: math.unit(5, "cm"),
  9509. weight: math.unit(1.94, "g"),
  9510. name: "Front",
  9511. image: {
  9512. source: "./media/characters/fleta/front.svg",
  9513. extra: 835 / 803
  9514. }
  9515. },
  9516. back: {
  9517. height: math.unit(5, "cm"),
  9518. weight: math.unit(1.94, "g"),
  9519. name: "Back",
  9520. image: {
  9521. source: "./media/characters/fleta/back.svg",
  9522. extra: 835 / 803
  9523. }
  9524. },
  9525. },
  9526. [
  9527. {
  9528. name: "Micro",
  9529. height: math.unit(5, "cm"),
  9530. default: true
  9531. },
  9532. ]
  9533. ))
  9534. characterMakers.push(() => makeCharacter(
  9535. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9536. {
  9537. front: {
  9538. height: math.unit(6, "feet"),
  9539. weight: math.unit(225, "lb"),
  9540. name: "Front",
  9541. image: {
  9542. source: "./media/characters/dominic/front.svg",
  9543. extra: 1770 / 1620,
  9544. bottom: 0.025
  9545. }
  9546. },
  9547. back: {
  9548. height: math.unit(6, "feet"),
  9549. weight: math.unit(225, "lb"),
  9550. name: "Back",
  9551. image: {
  9552. source: "./media/characters/dominic/back.svg",
  9553. extra: 1745 / 1620,
  9554. bottom: 0.065
  9555. }
  9556. },
  9557. },
  9558. [
  9559. {
  9560. name: "Nano",
  9561. height: math.unit(0.1, "mm")
  9562. },
  9563. {
  9564. name: "Micro-",
  9565. height: math.unit(1, "mm")
  9566. },
  9567. {
  9568. name: "Micro",
  9569. height: math.unit(4, "inches")
  9570. },
  9571. {
  9572. name: "Normal",
  9573. height: math.unit(6 + 4 / 12, "feet"),
  9574. default: true
  9575. },
  9576. {
  9577. name: "Macro",
  9578. height: math.unit(115, "feet")
  9579. },
  9580. {
  9581. name: "Macro+",
  9582. height: math.unit(955, "feet")
  9583. },
  9584. {
  9585. name: "Megamacro",
  9586. height: math.unit(8990, "feet")
  9587. },
  9588. {
  9589. name: "Gigmacro",
  9590. height: math.unit(9310, "miles")
  9591. },
  9592. {
  9593. name: "Teramacro",
  9594. height: math.unit(1567005010, "miles")
  9595. },
  9596. {
  9597. name: "Examacro",
  9598. height: math.unit(1425, "parsecs")
  9599. },
  9600. ]
  9601. ))
  9602. characterMakers.push(() => makeCharacter(
  9603. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9604. {
  9605. front: {
  9606. height: math.unit(400, "feet"),
  9607. weight: math.unit(44444444, "lb"),
  9608. name: "Front",
  9609. image: {
  9610. source: "./media/characters/major-colonel/front.svg"
  9611. }
  9612. },
  9613. back: {
  9614. height: math.unit(400, "feet"),
  9615. weight: math.unit(44444444, "lb"),
  9616. name: "Back",
  9617. image: {
  9618. source: "./media/characters/major-colonel/back.svg"
  9619. }
  9620. },
  9621. },
  9622. [
  9623. {
  9624. name: "Macro",
  9625. height: math.unit(400, "feet"),
  9626. default: true
  9627. },
  9628. ]
  9629. ))
  9630. characterMakers.push(() => makeCharacter(
  9631. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9632. {
  9633. catFront: {
  9634. height: math.unit(6, "feet"),
  9635. weight: math.unit(120, "lb"),
  9636. name: "Front (Cat Side)",
  9637. image: {
  9638. source: "./media/characters/axel-lycan/cat-front.svg",
  9639. extra: 430 / 402,
  9640. bottom: 43 / 472.35
  9641. }
  9642. },
  9643. catBack: {
  9644. height: math.unit(6, "feet"),
  9645. weight: math.unit(120, "lb"),
  9646. name: "Back (Cat Side)",
  9647. image: {
  9648. source: "./media/characters/axel-lycan/cat-back.svg",
  9649. extra: 447 / 419,
  9650. bottom: 23.3 / 469
  9651. }
  9652. },
  9653. wolfFront: {
  9654. height: math.unit(6, "feet"),
  9655. weight: math.unit(120, "lb"),
  9656. name: "Front (Wolf Side)",
  9657. image: {
  9658. source: "./media/characters/axel-lycan/wolf-front.svg",
  9659. extra: 485 / 456,
  9660. bottom: 19 / 504
  9661. }
  9662. },
  9663. wolfBack: {
  9664. height: math.unit(6, "feet"),
  9665. weight: math.unit(120, "lb"),
  9666. name: "Back (Wolf Side)",
  9667. image: {
  9668. source: "./media/characters/axel-lycan/wolf-back.svg",
  9669. extra: 475 / 438,
  9670. bottom: 39.2 / 514
  9671. }
  9672. },
  9673. },
  9674. [
  9675. {
  9676. name: "Macro",
  9677. height: math.unit(1, "km"),
  9678. default: true
  9679. },
  9680. ]
  9681. ))
  9682. characterMakers.push(() => makeCharacter(
  9683. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9684. {
  9685. front: {
  9686. height: math.unit(5 + 9 / 12, "feet"),
  9687. weight: math.unit(175, "lb"),
  9688. name: "Front",
  9689. image: {
  9690. source: "./media/characters/vanrel-hyena/front.svg",
  9691. extra: 1086 / 1010,
  9692. bottom: 0.04
  9693. }
  9694. },
  9695. },
  9696. [
  9697. {
  9698. name: "Normal",
  9699. height: math.unit(5 + 9 / 12, "feet"),
  9700. default: true
  9701. },
  9702. ]
  9703. ))
  9704. characterMakers.push(() => makeCharacter(
  9705. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9706. {
  9707. front: {
  9708. height: math.unit(6, "feet"),
  9709. weight: math.unit(103, "lb"),
  9710. name: "Front",
  9711. image: {
  9712. source: "./media/characters/abbott-absol/front.svg",
  9713. extra: 2010 / 1842
  9714. }
  9715. },
  9716. },
  9717. [
  9718. {
  9719. name: "Megamicro",
  9720. height: math.unit(0.1, "mm")
  9721. },
  9722. {
  9723. name: "Micro",
  9724. height: math.unit(1, "inch")
  9725. },
  9726. {
  9727. name: "Normal",
  9728. height: math.unit(6, "feet"),
  9729. default: true
  9730. },
  9731. ]
  9732. ))
  9733. characterMakers.push(() => makeCharacter(
  9734. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9735. {
  9736. front: {
  9737. height: math.unit(6, "feet"),
  9738. weight: math.unit(264, "lb"),
  9739. name: "Front",
  9740. image: {
  9741. source: "./media/characters/hector/front.svg",
  9742. extra: 2280 / 2130,
  9743. bottom: 0.07
  9744. }
  9745. },
  9746. },
  9747. [
  9748. {
  9749. name: "Normal",
  9750. height: math.unit(12.25, "foot"),
  9751. default: true
  9752. },
  9753. {
  9754. name: "Macro",
  9755. height: math.unit(160, "feet")
  9756. },
  9757. ]
  9758. ))
  9759. characterMakers.push(() => makeCharacter(
  9760. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9761. {
  9762. front: {
  9763. height: math.unit(6, "feet"),
  9764. weight: math.unit(150, "lb"),
  9765. name: "Front",
  9766. image: {
  9767. source: "./media/characters/sal/front.svg",
  9768. extra: 1846 / 1699,
  9769. bottom: 0.04
  9770. }
  9771. },
  9772. },
  9773. [
  9774. {
  9775. name: "Megamacro",
  9776. height: math.unit(10, "miles"),
  9777. default: true
  9778. },
  9779. ]
  9780. ))
  9781. characterMakers.push(() => makeCharacter(
  9782. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9783. {
  9784. front: {
  9785. height: math.unit(3, "meters"),
  9786. weight: math.unit(450, "kg"),
  9787. name: "front",
  9788. image: {
  9789. source: "./media/characters/ranger/front.svg",
  9790. extra: 2401 / 2243,
  9791. bottom: 0.05
  9792. }
  9793. },
  9794. },
  9795. [
  9796. {
  9797. name: "Normal",
  9798. height: math.unit(3, "meters"),
  9799. default: true
  9800. },
  9801. ]
  9802. ))
  9803. characterMakers.push(() => makeCharacter(
  9804. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9805. {
  9806. front: {
  9807. height: math.unit(14, "feet"),
  9808. weight: math.unit(800, "kg"),
  9809. name: "Front",
  9810. image: {
  9811. source: "./media/characters/theresa/front.svg",
  9812. extra: 3575 / 3346,
  9813. bottom: 0.03
  9814. }
  9815. },
  9816. },
  9817. [
  9818. {
  9819. name: "Normal",
  9820. height: math.unit(14, "feet"),
  9821. default: true
  9822. },
  9823. ]
  9824. ))
  9825. characterMakers.push(() => makeCharacter(
  9826. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9827. {
  9828. front: {
  9829. height: math.unit(6, "feet"),
  9830. weight: math.unit(3, "kg"),
  9831. name: "Front",
  9832. image: {
  9833. source: "./media/characters/ine/front.svg",
  9834. extra: 678 / 539,
  9835. bottom: 0.023
  9836. }
  9837. },
  9838. },
  9839. [
  9840. {
  9841. name: "Normal",
  9842. height: math.unit(2.265, "feet"),
  9843. default: true
  9844. },
  9845. ]
  9846. ))
  9847. characterMakers.push(() => makeCharacter(
  9848. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9849. {
  9850. front: {
  9851. height: math.unit(5, "feet"),
  9852. weight: math.unit(30, "kg"),
  9853. name: "Front",
  9854. image: {
  9855. source: "./media/characters/vial/front.svg",
  9856. extra: 1365 / 1277,
  9857. bottom: 0.04
  9858. }
  9859. },
  9860. },
  9861. [
  9862. {
  9863. name: "Normal",
  9864. height: math.unit(5, "feet"),
  9865. default: true
  9866. },
  9867. ]
  9868. ))
  9869. characterMakers.push(() => makeCharacter(
  9870. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9871. {
  9872. side: {
  9873. height: math.unit(3.4, "meters"),
  9874. weight: math.unit(1000, "lb"),
  9875. name: "Side",
  9876. image: {
  9877. source: "./media/characters/rovoska/side.svg",
  9878. extra: 4403 / 1515
  9879. }
  9880. },
  9881. },
  9882. [
  9883. {
  9884. name: "Normal",
  9885. height: math.unit(3.4, "meters"),
  9886. default: true
  9887. },
  9888. ]
  9889. ))
  9890. characterMakers.push(() => makeCharacter(
  9891. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9892. {
  9893. front: {
  9894. height: math.unit(8, "feet"),
  9895. weight: math.unit(315, "lb"),
  9896. name: "Front",
  9897. image: {
  9898. source: "./media/characters/gunner-rotthbauer/front.svg"
  9899. }
  9900. },
  9901. back: {
  9902. height: math.unit(8, "feet"),
  9903. weight: math.unit(315, "lb"),
  9904. name: "Back",
  9905. image: {
  9906. source: "./media/characters/gunner-rotthbauer/back.svg"
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Micro",
  9913. height: math.unit(3.5, "inches")
  9914. },
  9915. {
  9916. name: "Normal",
  9917. height: math.unit(8, "feet"),
  9918. default: true
  9919. },
  9920. {
  9921. name: "Macro",
  9922. height: math.unit(250, "feet")
  9923. },
  9924. {
  9925. name: "Megamacro",
  9926. height: math.unit(1, "AU")
  9927. },
  9928. ]
  9929. ))
  9930. characterMakers.push(() => makeCharacter(
  9931. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9932. {
  9933. front: {
  9934. height: math.unit(5 + 5 / 12, "feet"),
  9935. weight: math.unit(140, "lb"),
  9936. name: "Front",
  9937. image: {
  9938. source: "./media/characters/allatia/front.svg",
  9939. extra: 1227 / 1180,
  9940. bottom: 0.027
  9941. }
  9942. },
  9943. },
  9944. [
  9945. {
  9946. name: "Normal",
  9947. height: math.unit(5 + 5 / 12, "feet")
  9948. },
  9949. {
  9950. name: "Macro",
  9951. height: math.unit(250, "feet"),
  9952. default: true
  9953. },
  9954. {
  9955. name: "Megamacro",
  9956. height: math.unit(8, "miles")
  9957. }
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9962. {
  9963. front: {
  9964. height: math.unit(6, "feet"),
  9965. weight: math.unit(120, "lb"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/tene/front.svg",
  9969. extra: 1728 / 1578,
  9970. bottom: 0.022
  9971. }
  9972. },
  9973. stomping: {
  9974. height: math.unit(2.025, "meters"),
  9975. weight: math.unit(120, "lb"),
  9976. name: "Stomping",
  9977. image: {
  9978. source: "./media/characters/tene/stomping.svg",
  9979. extra: 938 / 873,
  9980. bottom: 0.01
  9981. }
  9982. },
  9983. sitting: {
  9984. height: math.unit(1, "meter"),
  9985. weight: math.unit(120, "lb"),
  9986. name: "Sitting",
  9987. image: {
  9988. source: "./media/characters/tene/sitting.svg",
  9989. extra: 437 / 415,
  9990. bottom: 0.1
  9991. }
  9992. },
  9993. feral: {
  9994. height: math.unit(3.9, "feet"),
  9995. weight: math.unit(250, "lb"),
  9996. name: "Feral",
  9997. image: {
  9998. source: "./media/characters/tene/feral.svg",
  9999. extra: 717 / 458,
  10000. bottom: 0.179
  10001. }
  10002. },
  10003. },
  10004. [
  10005. {
  10006. name: "Normal",
  10007. height: math.unit(6, "feet")
  10008. },
  10009. {
  10010. name: "Macro",
  10011. height: math.unit(300, "feet"),
  10012. default: true
  10013. },
  10014. {
  10015. name: "Megamacro",
  10016. height: math.unit(5, "miles")
  10017. },
  10018. ]
  10019. ))
  10020. characterMakers.push(() => makeCharacter(
  10021. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10022. {
  10023. side: {
  10024. height: math.unit(6, "feet"),
  10025. name: "Side",
  10026. image: {
  10027. source: "./media/characters/evander/side.svg",
  10028. extra: 877 / 477
  10029. }
  10030. },
  10031. },
  10032. [
  10033. {
  10034. name: "Normal",
  10035. height: math.unit(0.83, "meters"),
  10036. default: true
  10037. },
  10038. ]
  10039. ))
  10040. characterMakers.push(() => makeCharacter(
  10041. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10042. {
  10043. front: {
  10044. height: math.unit(12, "feet"),
  10045. weight: math.unit(1000, "lb"),
  10046. name: "Front",
  10047. image: {
  10048. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10049. extra: 1762 / 1611
  10050. }
  10051. },
  10052. back: {
  10053. height: math.unit(12, "feet"),
  10054. weight: math.unit(1000, "lb"),
  10055. name: "Back",
  10056. image: {
  10057. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10058. extra: 1762 / 1611
  10059. }
  10060. },
  10061. },
  10062. [
  10063. {
  10064. name: "Normal",
  10065. height: math.unit(12, "feet"),
  10066. default: true
  10067. },
  10068. {
  10069. name: "Kaiju",
  10070. height: math.unit(150, "feet")
  10071. },
  10072. ]
  10073. ))
  10074. characterMakers.push(() => makeCharacter(
  10075. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10076. {
  10077. front: {
  10078. height: math.unit(6, "feet"),
  10079. weight: math.unit(150, "lb"),
  10080. name: "Front",
  10081. image: {
  10082. source: "./media/characters/zero-alurus/front.svg"
  10083. }
  10084. },
  10085. back: {
  10086. height: math.unit(6, "feet"),
  10087. weight: math.unit(150, "lb"),
  10088. name: "Back",
  10089. image: {
  10090. source: "./media/characters/zero-alurus/back.svg"
  10091. }
  10092. },
  10093. },
  10094. [
  10095. {
  10096. name: "Normal",
  10097. height: math.unit(5 + 10 / 12, "feet")
  10098. },
  10099. {
  10100. name: "Macro",
  10101. height: math.unit(60, "feet"),
  10102. default: true
  10103. },
  10104. {
  10105. name: "Macro+",
  10106. height: math.unit(450, "feet")
  10107. },
  10108. ]
  10109. ))
  10110. characterMakers.push(() => makeCharacter(
  10111. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10112. {
  10113. front: {
  10114. height: math.unit(6, "feet"),
  10115. weight: math.unit(200, "lb"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/mega-shi/front.svg",
  10119. extra: 1279 / 1250,
  10120. bottom: 0.02
  10121. }
  10122. },
  10123. back: {
  10124. height: math.unit(6, "feet"),
  10125. weight: math.unit(200, "lb"),
  10126. name: "Back",
  10127. image: {
  10128. source: "./media/characters/mega-shi/back.svg",
  10129. extra: 1279 / 1250,
  10130. bottom: 0.02
  10131. }
  10132. },
  10133. },
  10134. [
  10135. {
  10136. name: "Micro",
  10137. height: math.unit(16 + 6 / 12, "feet")
  10138. },
  10139. {
  10140. name: "Third Dimension",
  10141. height: math.unit(40, "meters")
  10142. },
  10143. {
  10144. name: "Normal",
  10145. height: math.unit(660, "feet"),
  10146. default: true
  10147. },
  10148. {
  10149. name: "Megamacro",
  10150. height: math.unit(10, "miles")
  10151. },
  10152. {
  10153. name: "Planetary Launch",
  10154. height: math.unit(500, "miles")
  10155. },
  10156. {
  10157. name: "Interstellar",
  10158. height: math.unit(1e9, "miles")
  10159. },
  10160. {
  10161. name: "Leaving the Universe",
  10162. height: math.unit(1, "gigaparsec")
  10163. },
  10164. {
  10165. name: "Travelling Universes",
  10166. height: math.unit(30e15, "parsecs")
  10167. },
  10168. ]
  10169. ))
  10170. characterMakers.push(() => makeCharacter(
  10171. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10172. {
  10173. front: {
  10174. height: math.unit(5 + 4/12, "feet"),
  10175. weight: math.unit(120, "lb"),
  10176. name: "Front",
  10177. image: {
  10178. source: "./media/characters/odyssey/front.svg",
  10179. extra: 1747/1571,
  10180. bottom: 47/1794
  10181. }
  10182. },
  10183. side: {
  10184. height: math.unit(5.1, "feet"),
  10185. weight: math.unit(120, "lb"),
  10186. name: "Side",
  10187. image: {
  10188. source: "./media/characters/odyssey/side.svg",
  10189. extra: 1847/1619,
  10190. bottom: 47/1894
  10191. }
  10192. },
  10193. lounging: {
  10194. height: math.unit(1.464, "feet"),
  10195. weight: math.unit(120, "lb"),
  10196. name: "Lounging",
  10197. image: {
  10198. source: "./media/characters/odyssey/lounging.svg",
  10199. extra: 1235/837,
  10200. bottom: 551/1786
  10201. }
  10202. },
  10203. },
  10204. [
  10205. {
  10206. name: "Normal",
  10207. height: math.unit(5 + 4 / 12, "feet")
  10208. },
  10209. {
  10210. name: "Macro",
  10211. height: math.unit(1, "km")
  10212. },
  10213. {
  10214. name: "Megamacro",
  10215. height: math.unit(3000, "km")
  10216. },
  10217. {
  10218. name: "Gigamacro",
  10219. height: math.unit(1, "AU"),
  10220. default: true
  10221. },
  10222. {
  10223. name: "Omniversal",
  10224. height: math.unit(100e14, "lightyears")
  10225. },
  10226. ]
  10227. ))
  10228. characterMakers.push(() => makeCharacter(
  10229. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10230. {
  10231. front: {
  10232. height: math.unit(6, "feet"),
  10233. weight: math.unit(300, "lb"),
  10234. name: "Front",
  10235. image: {
  10236. source: "./media/characters/mekuto/front.svg",
  10237. extra: 921 / 832,
  10238. bottom: 0.03
  10239. }
  10240. },
  10241. hand: {
  10242. height: math.unit(6 / 10.24, "feet"),
  10243. name: "Hand",
  10244. image: {
  10245. source: "./media/characters/mekuto/hand.svg"
  10246. }
  10247. },
  10248. foot: {
  10249. height: math.unit(6 / 5.05, "feet"),
  10250. name: "Foot",
  10251. image: {
  10252. source: "./media/characters/mekuto/foot.svg"
  10253. }
  10254. },
  10255. },
  10256. [
  10257. {
  10258. name: "Minimicro",
  10259. height: math.unit(0.2, "inches")
  10260. },
  10261. {
  10262. name: "Micro",
  10263. height: math.unit(1.5, "inches")
  10264. },
  10265. {
  10266. name: "Normal",
  10267. height: math.unit(5 + 11 / 12, "feet"),
  10268. default: true
  10269. },
  10270. {
  10271. name: "Minimacro",
  10272. height: math.unit(17 + 9 / 12, "feet")
  10273. },
  10274. {
  10275. name: "Macro",
  10276. height: math.unit(177.5, "feet")
  10277. },
  10278. {
  10279. name: "Megamacro",
  10280. height: math.unit(152, "miles")
  10281. },
  10282. ]
  10283. ))
  10284. characterMakers.push(() => makeCharacter(
  10285. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10286. {
  10287. front: {
  10288. height: math.unit(6.5, "inches"),
  10289. weight: math.unit(13, "oz"),
  10290. name: "Front",
  10291. image: {
  10292. source: "./media/characters/dafydd-tomos/front.svg",
  10293. extra: 2990 / 2603,
  10294. bottom: 0.03
  10295. }
  10296. },
  10297. },
  10298. [
  10299. {
  10300. name: "Micro",
  10301. height: math.unit(6.5, "inches"),
  10302. default: true
  10303. },
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10308. {
  10309. front: {
  10310. height: math.unit(6, "feet"),
  10311. weight: math.unit(150, "lb"),
  10312. name: "Front",
  10313. image: {
  10314. source: "./media/characters/splinter/front.svg",
  10315. extra: 2990 / 2882,
  10316. bottom: 0.04
  10317. }
  10318. },
  10319. back: {
  10320. height: math.unit(6, "feet"),
  10321. weight: math.unit(150, "lb"),
  10322. name: "Back",
  10323. image: {
  10324. source: "./media/characters/splinter/back.svg",
  10325. extra: 2990 / 2882,
  10326. bottom: 0.04
  10327. }
  10328. },
  10329. },
  10330. [
  10331. {
  10332. name: "Normal",
  10333. height: math.unit(6, "feet")
  10334. },
  10335. {
  10336. name: "Macro",
  10337. height: math.unit(230, "meters"),
  10338. default: true
  10339. },
  10340. ]
  10341. ))
  10342. characterMakers.push(() => makeCharacter(
  10343. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10344. {
  10345. front: {
  10346. height: math.unit(4 + 10 / 12, "feet"),
  10347. weight: math.unit(480, "lb"),
  10348. name: "Front",
  10349. image: {
  10350. source: "./media/characters/snow-gabumon/front.svg",
  10351. extra: 1140 / 963,
  10352. bottom: 0.058
  10353. }
  10354. },
  10355. back: {
  10356. height: math.unit(4 + 10 / 12, "feet"),
  10357. weight: math.unit(480, "lb"),
  10358. name: "Back",
  10359. image: {
  10360. source: "./media/characters/snow-gabumon/back.svg",
  10361. extra: 1115 / 962,
  10362. bottom: 0.041
  10363. }
  10364. },
  10365. frontUndresed: {
  10366. height: math.unit(4 + 10 / 12, "feet"),
  10367. weight: math.unit(480, "lb"),
  10368. name: "Front (Undressed)",
  10369. image: {
  10370. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10371. extra: 1061 / 960,
  10372. bottom: 0.045
  10373. }
  10374. },
  10375. },
  10376. [
  10377. {
  10378. name: "Micro",
  10379. height: math.unit(1, "inch")
  10380. },
  10381. {
  10382. name: "Normal",
  10383. height: math.unit(4 + 10 / 12, "feet"),
  10384. default: true
  10385. },
  10386. {
  10387. name: "Macro",
  10388. height: math.unit(200, "feet")
  10389. },
  10390. {
  10391. name: "Megamacro",
  10392. height: math.unit(120, "miles")
  10393. },
  10394. {
  10395. name: "Gigamacro",
  10396. height: math.unit(9800, "miles")
  10397. },
  10398. ]
  10399. ))
  10400. characterMakers.push(() => makeCharacter(
  10401. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10402. {
  10403. front: {
  10404. height: math.unit(1.7, "meters"),
  10405. weight: math.unit(140, "lb"),
  10406. name: "Front",
  10407. image: {
  10408. source: "./media/characters/moody/front.svg",
  10409. extra: 3226 / 3007,
  10410. bottom: 0.087
  10411. }
  10412. },
  10413. },
  10414. [
  10415. {
  10416. name: "Micro",
  10417. height: math.unit(1, "mm")
  10418. },
  10419. {
  10420. name: "Normal",
  10421. height: math.unit(1.7, "meters"),
  10422. default: true
  10423. },
  10424. {
  10425. name: "Macro",
  10426. height: math.unit(80, "meters")
  10427. },
  10428. {
  10429. name: "Macro+",
  10430. height: math.unit(500, "meters")
  10431. },
  10432. ]
  10433. ))
  10434. characterMakers.push(() => makeCharacter(
  10435. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10436. {
  10437. front: {
  10438. height: math.unit(6, "feet"),
  10439. weight: math.unit(150, "lb"),
  10440. name: "Front",
  10441. image: {
  10442. source: "./media/characters/zyas/front.svg",
  10443. extra: 1180 / 1120,
  10444. bottom: 0.045
  10445. }
  10446. },
  10447. },
  10448. [
  10449. {
  10450. name: "Normal",
  10451. height: math.unit(10, "feet"),
  10452. default: true
  10453. },
  10454. {
  10455. name: "Macro",
  10456. height: math.unit(500, "feet")
  10457. },
  10458. {
  10459. name: "Megamacro",
  10460. height: math.unit(5, "miles")
  10461. },
  10462. {
  10463. name: "Teramacro",
  10464. height: math.unit(150000, "miles")
  10465. },
  10466. ]
  10467. ))
  10468. characterMakers.push(() => makeCharacter(
  10469. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10470. {
  10471. front: {
  10472. height: math.unit(6, "feet"),
  10473. weight: math.unit(150, "lb"),
  10474. name: "Front",
  10475. image: {
  10476. source: "./media/characters/cuon/front.svg",
  10477. extra: 1390 / 1320,
  10478. bottom: 0.008
  10479. }
  10480. },
  10481. },
  10482. [
  10483. {
  10484. name: "Micro",
  10485. height: math.unit(3, "inches")
  10486. },
  10487. {
  10488. name: "Normal",
  10489. height: math.unit(18 + 9 / 12, "feet"),
  10490. default: true
  10491. },
  10492. {
  10493. name: "Macro",
  10494. height: math.unit(360, "feet")
  10495. },
  10496. {
  10497. name: "Megamacro",
  10498. height: math.unit(360, "miles")
  10499. },
  10500. ]
  10501. ))
  10502. characterMakers.push(() => makeCharacter(
  10503. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10504. {
  10505. front: {
  10506. height: math.unit(2.4, "meters"),
  10507. weight: math.unit(70, "kg"),
  10508. name: "Front",
  10509. image: {
  10510. source: "./media/characters/nyanuxk/front.svg",
  10511. extra: 1172 / 1084,
  10512. bottom: 0.065
  10513. }
  10514. },
  10515. side: {
  10516. height: math.unit(2.4, "meters"),
  10517. weight: math.unit(70, "kg"),
  10518. name: "Side",
  10519. image: {
  10520. source: "./media/characters/nyanuxk/side.svg",
  10521. extra: 1190 / 1132,
  10522. bottom: 0.007
  10523. }
  10524. },
  10525. back: {
  10526. height: math.unit(2.4, "meters"),
  10527. weight: math.unit(70, "kg"),
  10528. name: "Back",
  10529. image: {
  10530. source: "./media/characters/nyanuxk/back.svg",
  10531. extra: 1200 / 1141,
  10532. bottom: 0.015
  10533. }
  10534. },
  10535. foot: {
  10536. height: math.unit(0.52, "meters"),
  10537. name: "Foot",
  10538. image: {
  10539. source: "./media/characters/nyanuxk/foot.svg"
  10540. }
  10541. },
  10542. },
  10543. [
  10544. {
  10545. name: "Micro",
  10546. height: math.unit(2, "cm")
  10547. },
  10548. {
  10549. name: "Normal",
  10550. height: math.unit(2.4, "meters"),
  10551. default: true
  10552. },
  10553. {
  10554. name: "Smaller Macro",
  10555. height: math.unit(120, "meters")
  10556. },
  10557. {
  10558. name: "Bigger Macro",
  10559. height: math.unit(1.2, "km")
  10560. },
  10561. {
  10562. name: "Megamacro",
  10563. height: math.unit(15, "kilometers")
  10564. },
  10565. {
  10566. name: "Gigamacro",
  10567. height: math.unit(2000, "km")
  10568. },
  10569. {
  10570. name: "Teramacro",
  10571. height: math.unit(500000, "km")
  10572. },
  10573. ]
  10574. ))
  10575. characterMakers.push(() => makeCharacter(
  10576. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10577. {
  10578. side: {
  10579. height: math.unit(6, "feet"),
  10580. name: "Side",
  10581. image: {
  10582. source: "./media/characters/ailbhe/side.svg",
  10583. extra: 757 / 464,
  10584. bottom: 0.041
  10585. }
  10586. },
  10587. },
  10588. [
  10589. {
  10590. name: "Normal",
  10591. height: math.unit(1.07, "meters"),
  10592. default: true
  10593. },
  10594. ]
  10595. ))
  10596. characterMakers.push(() => makeCharacter(
  10597. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10598. {
  10599. front: {
  10600. height: math.unit(6, "feet"),
  10601. weight: math.unit(120, "kg"),
  10602. name: "Front",
  10603. image: {
  10604. source: "./media/characters/zevulfius/front.svg",
  10605. extra: 965 / 903
  10606. }
  10607. },
  10608. side: {
  10609. height: math.unit(6, "feet"),
  10610. weight: math.unit(120, "kg"),
  10611. name: "Side",
  10612. image: {
  10613. source: "./media/characters/zevulfius/side.svg",
  10614. extra: 939 / 900
  10615. }
  10616. },
  10617. back: {
  10618. height: math.unit(6, "feet"),
  10619. weight: math.unit(120, "kg"),
  10620. name: "Back",
  10621. image: {
  10622. source: "./media/characters/zevulfius/back.svg",
  10623. extra: 918 / 854,
  10624. bottom: 0.005
  10625. }
  10626. },
  10627. foot: {
  10628. height: math.unit(6 / 3.72, "feet"),
  10629. name: "Foot",
  10630. image: {
  10631. source: "./media/characters/zevulfius/foot.svg"
  10632. }
  10633. },
  10634. },
  10635. [
  10636. {
  10637. name: "Macro",
  10638. height: math.unit(750, "meters")
  10639. },
  10640. {
  10641. name: "Megamacro",
  10642. height: math.unit(20, "km"),
  10643. default: true
  10644. },
  10645. {
  10646. name: "Gigamacro",
  10647. height: math.unit(2000, "km")
  10648. },
  10649. {
  10650. name: "Teramacro",
  10651. height: math.unit(250000, "km")
  10652. },
  10653. ]
  10654. ))
  10655. characterMakers.push(() => makeCharacter(
  10656. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10657. {
  10658. front: {
  10659. height: math.unit(100, "feet"),
  10660. weight: math.unit(350, "kg"),
  10661. name: "Front",
  10662. image: {
  10663. source: "./media/characters/rikes/front.svg",
  10664. extra: 1565 / 1483,
  10665. bottom: 0.017
  10666. }
  10667. },
  10668. },
  10669. [
  10670. {
  10671. name: "Macro",
  10672. height: math.unit(100, "feet"),
  10673. default: true
  10674. },
  10675. ]
  10676. ))
  10677. characterMakers.push(() => makeCharacter(
  10678. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10679. {
  10680. front: {
  10681. height: math.unit(8, "feet"),
  10682. weight: math.unit(356, "lb"),
  10683. name: "Front",
  10684. image: {
  10685. source: "./media/characters/adam-silver-mane/front.svg",
  10686. extra: 1036/937,
  10687. bottom: 63/1099
  10688. }
  10689. },
  10690. side: {
  10691. height: math.unit(8, "feet"),
  10692. weight: math.unit(356, "lb"),
  10693. name: "Side",
  10694. image: {
  10695. source: "./media/characters/adam-silver-mane/side.svg",
  10696. extra: 997/901,
  10697. bottom: 59/1056
  10698. }
  10699. },
  10700. frontNsfw: {
  10701. height: math.unit(8, "feet"),
  10702. weight: math.unit(356, "lb"),
  10703. name: "Front (NSFW)",
  10704. image: {
  10705. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10706. extra: 1036/937,
  10707. bottom: 63/1099
  10708. }
  10709. },
  10710. sideNsfw: {
  10711. height: math.unit(8, "feet"),
  10712. weight: math.unit(356, "lb"),
  10713. name: "Side (NSFW)",
  10714. image: {
  10715. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10716. extra: 997/901,
  10717. bottom: 59/1056
  10718. }
  10719. },
  10720. dick: {
  10721. height: math.unit(2.1, "feet"),
  10722. name: "Dick",
  10723. image: {
  10724. source: "./media/characters/adam-silver-mane/dick.svg"
  10725. }
  10726. },
  10727. taur: {
  10728. height: math.unit(16, "feet"),
  10729. weight: math.unit(1500, "kg"),
  10730. name: "Taur",
  10731. image: {
  10732. source: "./media/characters/adam-silver-mane/taur.svg",
  10733. extra: 1713 / 1571,
  10734. bottom: 0.01
  10735. }
  10736. },
  10737. },
  10738. [
  10739. {
  10740. name: "Normal",
  10741. height: math.unit(8, "feet")
  10742. },
  10743. {
  10744. name: "Minimacro",
  10745. height: math.unit(80, "feet")
  10746. },
  10747. {
  10748. name: "MDA",
  10749. height: math.unit(80, "meters")
  10750. },
  10751. {
  10752. name: "Macro",
  10753. height: math.unit(800, "feet"),
  10754. default: true
  10755. },
  10756. {
  10757. name: "Megamacro",
  10758. height: math.unit(8000, "feet")
  10759. },
  10760. {
  10761. name: "Gigamacro",
  10762. height: math.unit(800, "miles")
  10763. },
  10764. {
  10765. name: "Teramacro",
  10766. height: math.unit(80000, "miles")
  10767. },
  10768. {
  10769. name: "Celestial",
  10770. height: math.unit(8e6, "miles")
  10771. },
  10772. {
  10773. name: "Star Dragon",
  10774. height: math.unit(800000, "parsecs")
  10775. },
  10776. {
  10777. name: "Godly",
  10778. height: math.unit(800, "teraparsecs")
  10779. },
  10780. ]
  10781. ))
  10782. characterMakers.push(() => makeCharacter(
  10783. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10784. {
  10785. front: {
  10786. height: math.unit(6, "feet"),
  10787. weight: math.unit(150, "lb"),
  10788. name: "Front",
  10789. image: {
  10790. source: "./media/characters/ky'owin/front.svg",
  10791. extra: 3888 / 3068,
  10792. bottom: 0.015
  10793. }
  10794. },
  10795. },
  10796. [
  10797. {
  10798. name: "Normal",
  10799. height: math.unit(6 + 8 / 12, "feet")
  10800. },
  10801. {
  10802. name: "Large",
  10803. height: math.unit(68, "feet")
  10804. },
  10805. {
  10806. name: "Macro",
  10807. height: math.unit(132, "feet")
  10808. },
  10809. {
  10810. name: "Macro+",
  10811. height: math.unit(340, "feet")
  10812. },
  10813. {
  10814. name: "Macro++",
  10815. height: math.unit(680, "feet"),
  10816. default: true
  10817. },
  10818. {
  10819. name: "Megamacro",
  10820. height: math.unit(1, "mile")
  10821. },
  10822. {
  10823. name: "Megamacro+",
  10824. height: math.unit(10, "miles")
  10825. },
  10826. ]
  10827. ))
  10828. characterMakers.push(() => makeCharacter(
  10829. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10830. {
  10831. front: {
  10832. height: math.unit(4, "feet"),
  10833. weight: math.unit(50, "lb"),
  10834. name: "Front",
  10835. image: {
  10836. source: "./media/characters/mal/front.svg",
  10837. extra: 785 / 724,
  10838. bottom: 0.07
  10839. }
  10840. },
  10841. },
  10842. [
  10843. {
  10844. name: "Micro",
  10845. height: math.unit(4, "inches")
  10846. },
  10847. {
  10848. name: "Normal",
  10849. height: math.unit(4, "feet"),
  10850. default: true
  10851. },
  10852. {
  10853. name: "Macro",
  10854. height: math.unit(200, "feet")
  10855. },
  10856. ]
  10857. ))
  10858. characterMakers.push(() => makeCharacter(
  10859. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10860. {
  10861. front: {
  10862. height: math.unit(6, "feet"),
  10863. weight: math.unit(150, "lb"),
  10864. name: "Front",
  10865. image: {
  10866. source: "./media/characters/jordan-deware/front.svg",
  10867. extra: 1191 / 1012
  10868. }
  10869. },
  10870. },
  10871. [
  10872. {
  10873. name: "Nano",
  10874. height: math.unit(0.01, "mm")
  10875. },
  10876. {
  10877. name: "Minimicro",
  10878. height: math.unit(1, "mm")
  10879. },
  10880. {
  10881. name: "Micro",
  10882. height: math.unit(0.5, "inches")
  10883. },
  10884. {
  10885. name: "Normal",
  10886. height: math.unit(4, "feet"),
  10887. default: true
  10888. },
  10889. {
  10890. name: "Minimacro",
  10891. height: math.unit(40, "meters")
  10892. },
  10893. {
  10894. name: "Small Macro",
  10895. height: math.unit(400, "meters")
  10896. },
  10897. {
  10898. name: "Macro",
  10899. height: math.unit(4, "miles")
  10900. },
  10901. {
  10902. name: "Megamacro",
  10903. height: math.unit(40, "miles")
  10904. },
  10905. {
  10906. name: "Megamacro+",
  10907. height: math.unit(400, "miles")
  10908. },
  10909. {
  10910. name: "Gigamacro",
  10911. height: math.unit(400000, "miles")
  10912. },
  10913. ]
  10914. ))
  10915. characterMakers.push(() => makeCharacter(
  10916. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10917. {
  10918. side: {
  10919. height: math.unit(6, "feet"),
  10920. weight: math.unit(150, "lb"),
  10921. name: "Side",
  10922. image: {
  10923. source: "./media/characters/kimiko/side.svg",
  10924. extra: 600 / 358
  10925. }
  10926. },
  10927. },
  10928. [
  10929. {
  10930. name: "Normal",
  10931. height: math.unit(15, "feet"),
  10932. default: true
  10933. },
  10934. {
  10935. name: "Macro",
  10936. height: math.unit(220, "feet")
  10937. },
  10938. {
  10939. name: "Macro+",
  10940. height: math.unit(1450, "feet")
  10941. },
  10942. {
  10943. name: "Megamacro",
  10944. height: math.unit(11500, "feet")
  10945. },
  10946. {
  10947. name: "Gigamacro",
  10948. height: math.unit(9500, "miles")
  10949. },
  10950. {
  10951. name: "Teramacro",
  10952. height: math.unit(2208005005, "miles")
  10953. },
  10954. {
  10955. name: "Examacro",
  10956. height: math.unit(2750, "parsecs")
  10957. },
  10958. {
  10959. name: "Zettamacro",
  10960. height: math.unit(101500, "parsecs")
  10961. },
  10962. ]
  10963. ))
  10964. characterMakers.push(() => makeCharacter(
  10965. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10966. {
  10967. front: {
  10968. height: math.unit(6, "feet"),
  10969. weight: math.unit(70, "kg"),
  10970. name: "Front",
  10971. image: {
  10972. source: "./media/characters/andrew-sleepy/front.svg"
  10973. }
  10974. },
  10975. side: {
  10976. height: math.unit(6, "feet"),
  10977. weight: math.unit(70, "kg"),
  10978. name: "Side",
  10979. image: {
  10980. source: "./media/characters/andrew-sleepy/side.svg"
  10981. }
  10982. },
  10983. },
  10984. [
  10985. {
  10986. name: "Micro",
  10987. height: math.unit(1, "mm"),
  10988. default: true
  10989. },
  10990. ]
  10991. ))
  10992. characterMakers.push(() => makeCharacter(
  10993. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10994. {
  10995. front: {
  10996. height: math.unit(6, "feet"),
  10997. weight: math.unit(150, "lb"),
  10998. name: "Front",
  10999. image: {
  11000. source: "./media/characters/judio/front.svg",
  11001. extra: 1258 / 1110
  11002. }
  11003. },
  11004. },
  11005. [
  11006. {
  11007. name: "Normal",
  11008. height: math.unit(5 + 6 / 12, "feet")
  11009. },
  11010. {
  11011. name: "Macro",
  11012. height: math.unit(1000, "feet"),
  11013. default: true
  11014. },
  11015. {
  11016. name: "Megamacro",
  11017. height: math.unit(10, "miles")
  11018. },
  11019. ]
  11020. ))
  11021. characterMakers.push(() => makeCharacter(
  11022. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11023. {
  11024. front: {
  11025. height: math.unit(6, "feet"),
  11026. weight: math.unit(68, "kg"),
  11027. name: "Front",
  11028. image: {
  11029. source: "./media/characters/nomaxice/front.svg",
  11030. extra: 1498 / 1073,
  11031. bottom: 0.075
  11032. }
  11033. },
  11034. foot: {
  11035. height: math.unit(1.1, "feet"),
  11036. name: "Foot",
  11037. image: {
  11038. source: "./media/characters/nomaxice/foot.svg"
  11039. }
  11040. },
  11041. },
  11042. [
  11043. {
  11044. name: "Micro",
  11045. height: math.unit(8, "cm")
  11046. },
  11047. {
  11048. name: "Norm",
  11049. height: math.unit(1.82, "m")
  11050. },
  11051. {
  11052. name: "Norm+",
  11053. height: math.unit(8.8, "feet")
  11054. },
  11055. {
  11056. name: "Big",
  11057. height: math.unit(8, "meters"),
  11058. default: true
  11059. },
  11060. {
  11061. name: "Macro",
  11062. height: math.unit(18, "meters")
  11063. },
  11064. {
  11065. name: "Macro+",
  11066. height: math.unit(88, "meters")
  11067. },
  11068. ]
  11069. ))
  11070. characterMakers.push(() => makeCharacter(
  11071. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11072. {
  11073. front: {
  11074. height: math.unit(12, "feet"),
  11075. weight: math.unit(1.5, "tons"),
  11076. name: "Front",
  11077. image: {
  11078. source: "./media/characters/dydros/front.svg",
  11079. extra: 863 / 800,
  11080. bottom: 0.015
  11081. }
  11082. },
  11083. back: {
  11084. height: math.unit(12, "feet"),
  11085. weight: math.unit(1.5, "tons"),
  11086. name: "Back",
  11087. image: {
  11088. source: "./media/characters/dydros/back.svg",
  11089. extra: 900 / 843,
  11090. bottom: 0.005
  11091. }
  11092. },
  11093. },
  11094. [
  11095. {
  11096. name: "Normal",
  11097. height: math.unit(12, "feet"),
  11098. default: true
  11099. },
  11100. ]
  11101. ))
  11102. characterMakers.push(() => makeCharacter(
  11103. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11104. {
  11105. front: {
  11106. height: math.unit(6, "feet"),
  11107. weight: math.unit(100, "kg"),
  11108. name: "Front",
  11109. image: {
  11110. source: "./media/characters/riggi/front.svg",
  11111. extra: 5787 / 5303
  11112. }
  11113. },
  11114. hyper: {
  11115. height: math.unit(6 * 5 / 3, "feet"),
  11116. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11117. name: "Hyper",
  11118. image: {
  11119. source: "./media/characters/riggi/hyper.svg",
  11120. extra: 3595 / 3485
  11121. }
  11122. },
  11123. },
  11124. [
  11125. {
  11126. name: "Small Macro",
  11127. height: math.unit(50, "feet")
  11128. },
  11129. {
  11130. name: "Default",
  11131. height: math.unit(200, "feet"),
  11132. default: true
  11133. },
  11134. {
  11135. name: "Loom",
  11136. height: math.unit(10000, "feet")
  11137. },
  11138. {
  11139. name: "Cruising Altitude",
  11140. height: math.unit(30000, "feet")
  11141. },
  11142. {
  11143. name: "Megamacro",
  11144. height: math.unit(100, "miles")
  11145. },
  11146. {
  11147. name: "Continent Sized",
  11148. height: math.unit(2800, "miles")
  11149. },
  11150. {
  11151. name: "Earth Sized",
  11152. height: math.unit(8000, "miles")
  11153. },
  11154. ]
  11155. ))
  11156. characterMakers.push(() => makeCharacter(
  11157. { name: "Alexi", species: ["werewolf"], 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/alexi/front.svg",
  11165. extra: 3483 / 3291,
  11166. bottom: 0.04
  11167. }
  11168. },
  11169. back: {
  11170. height: math.unit(6, "feet"),
  11171. weight: math.unit(250, "lb"),
  11172. name: "Back",
  11173. image: {
  11174. source: "./media/characters/alexi/back.svg",
  11175. extra: 3533 / 3356,
  11176. bottom: 0.021
  11177. }
  11178. },
  11179. frontTransforming: {
  11180. height: math.unit(8.58, "feet"),
  11181. weight: math.unit(1300, "lb"),
  11182. name: "Transforming",
  11183. image: {
  11184. source: "./media/characters/alexi/front-transforming.svg",
  11185. extra: 437 / 409,
  11186. bottom: 19 / 458.66
  11187. }
  11188. },
  11189. frontTransformed: {
  11190. height: math.unit(12.5, "feet"),
  11191. weight: math.unit(4000, "lb"),
  11192. name: "Transformed",
  11193. image: {
  11194. source: "./media/characters/alexi/front-transformed.svg",
  11195. extra: 639 / 614,
  11196. bottom: 30.55 / 671
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Normal",
  11203. height: math.unit(14, "feet"),
  11204. default: true
  11205. },
  11206. {
  11207. name: "Minimacro",
  11208. height: math.unit(30, "meters")
  11209. },
  11210. {
  11211. name: "Macro",
  11212. height: math.unit(500, "meters")
  11213. },
  11214. {
  11215. name: "Megamacro",
  11216. height: math.unit(9000, "km")
  11217. },
  11218. {
  11219. name: "Teramacro",
  11220. height: math.unit(384000, "km")
  11221. },
  11222. ]
  11223. ))
  11224. characterMakers.push(() => makeCharacter(
  11225. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11226. {
  11227. front: {
  11228. height: math.unit(6, "feet"),
  11229. weight: math.unit(150, "lb"),
  11230. name: "Front",
  11231. image: {
  11232. source: "./media/characters/kayroo/front.svg",
  11233. extra: 1153 / 1038,
  11234. bottom: 0.06
  11235. }
  11236. },
  11237. foot: {
  11238. height: math.unit(6, "feet"),
  11239. weight: math.unit(150, "lb"),
  11240. name: "Foot",
  11241. image: {
  11242. source: "./media/characters/kayroo/foot.svg"
  11243. }
  11244. },
  11245. },
  11246. [
  11247. {
  11248. name: "Normal",
  11249. height: math.unit(8, "feet"),
  11250. default: true
  11251. },
  11252. {
  11253. name: "Minimacro",
  11254. height: math.unit(250, "feet")
  11255. },
  11256. {
  11257. name: "Macro",
  11258. height: math.unit(2800, "feet")
  11259. },
  11260. {
  11261. name: "Megamacro",
  11262. height: math.unit(5200, "feet")
  11263. },
  11264. {
  11265. name: "Gigamacro",
  11266. height: math.unit(27000, "feet")
  11267. },
  11268. {
  11269. name: "Omega",
  11270. height: math.unit(45000, "feet")
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11276. {
  11277. front: {
  11278. height: math.unit(18, "feet"),
  11279. weight: math.unit(5800, "lb"),
  11280. name: "Front",
  11281. image: {
  11282. source: "./media/characters/rhys/front.svg",
  11283. extra: 3386 / 3090,
  11284. bottom: 0.07
  11285. }
  11286. },
  11287. },
  11288. [
  11289. {
  11290. name: "Normal",
  11291. height: math.unit(18, "feet"),
  11292. default: true
  11293. },
  11294. {
  11295. name: "Working Size",
  11296. height: math.unit(200, "feet")
  11297. },
  11298. {
  11299. name: "Demolition Size",
  11300. height: math.unit(2000, "feet")
  11301. },
  11302. {
  11303. name: "Maximum Licensed Size",
  11304. height: math.unit(5, "miles")
  11305. },
  11306. {
  11307. name: "Maximum Observed Size",
  11308. height: math.unit(10, "yottameters")
  11309. },
  11310. ]
  11311. ))
  11312. characterMakers.push(() => makeCharacter(
  11313. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11314. {
  11315. front: {
  11316. height: math.unit(6, "feet"),
  11317. weight: math.unit(250, "lb"),
  11318. name: "Front",
  11319. image: {
  11320. source: "./media/characters/toto/front.svg",
  11321. extra: 527 / 479,
  11322. bottom: 0.05
  11323. }
  11324. },
  11325. },
  11326. [
  11327. {
  11328. name: "Micro",
  11329. height: math.unit(3, "feet")
  11330. },
  11331. {
  11332. name: "Normal",
  11333. height: math.unit(10, "feet")
  11334. },
  11335. {
  11336. name: "Macro",
  11337. height: math.unit(150, "feet"),
  11338. default: true
  11339. },
  11340. {
  11341. name: "Megamacro",
  11342. height: math.unit(1200, "feet")
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "King", species: ["lion"], tags: ["anthro"] },
  11348. {
  11349. back: {
  11350. height: math.unit(6, "feet"),
  11351. weight: math.unit(150, "lb"),
  11352. name: "Back",
  11353. image: {
  11354. source: "./media/characters/king/back.svg"
  11355. }
  11356. },
  11357. },
  11358. [
  11359. {
  11360. name: "Micro",
  11361. height: math.unit(2, "inches")
  11362. },
  11363. {
  11364. name: "Normal",
  11365. height: math.unit(8, "feet")
  11366. },
  11367. {
  11368. name: "Macro",
  11369. height: math.unit(200, "feet"),
  11370. default: true
  11371. },
  11372. {
  11373. name: "Megamacro",
  11374. height: math.unit(50, "miles")
  11375. },
  11376. ]
  11377. ))
  11378. characterMakers.push(() => makeCharacter(
  11379. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11380. {
  11381. front: {
  11382. height: math.unit(11, "feet"),
  11383. weight: math.unit(1400, "lb"),
  11384. name: "Front",
  11385. image: {
  11386. source: "./media/characters/cordite/front.svg",
  11387. extra: 1919/1827,
  11388. bottom: 40/1959
  11389. }
  11390. },
  11391. side: {
  11392. height: math.unit(11, "feet"),
  11393. weight: math.unit(1400, "lb"),
  11394. name: "Side",
  11395. image: {
  11396. source: "./media/characters/cordite/side.svg",
  11397. extra: 1908/1793,
  11398. bottom: 38/1946
  11399. }
  11400. },
  11401. back: {
  11402. height: math.unit(11, "feet"),
  11403. weight: math.unit(1400, "lb"),
  11404. name: "Back",
  11405. image: {
  11406. source: "./media/characters/cordite/back.svg",
  11407. extra: 1938/1837,
  11408. bottom: 10/1948
  11409. }
  11410. },
  11411. feral: {
  11412. height: math.unit(2, "feet"),
  11413. weight: math.unit(90, "lb"),
  11414. name: "Feral",
  11415. image: {
  11416. source: "./media/characters/cordite/feral.svg",
  11417. extra: 1260 / 755,
  11418. bottom: 0.05
  11419. }
  11420. },
  11421. },
  11422. [
  11423. {
  11424. name: "Normal",
  11425. height: math.unit(11, "feet"),
  11426. default: true
  11427. },
  11428. ]
  11429. ))
  11430. characterMakers.push(() => makeCharacter(
  11431. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11432. {
  11433. front: {
  11434. height: math.unit(6, "feet"),
  11435. weight: math.unit(150, "lb"),
  11436. name: "Front",
  11437. image: {
  11438. source: "./media/characters/pianostrong/front.svg",
  11439. extra: 6577 / 6254,
  11440. bottom: 0.02
  11441. }
  11442. },
  11443. side: {
  11444. height: math.unit(6, "feet"),
  11445. weight: math.unit(150, "lb"),
  11446. name: "Side",
  11447. image: {
  11448. source: "./media/characters/pianostrong/side.svg",
  11449. extra: 6106 / 5730
  11450. }
  11451. },
  11452. back: {
  11453. height: math.unit(6, "feet"),
  11454. weight: math.unit(150, "lb"),
  11455. name: "Back",
  11456. image: {
  11457. source: "./media/characters/pianostrong/back.svg",
  11458. extra: 6085 / 5733,
  11459. bottom: 0.01
  11460. }
  11461. },
  11462. },
  11463. [
  11464. {
  11465. name: "Macro",
  11466. height: math.unit(100, "feet")
  11467. },
  11468. {
  11469. name: "Macro+",
  11470. height: math.unit(300, "feet"),
  11471. default: true
  11472. },
  11473. {
  11474. name: "Macro++",
  11475. height: math.unit(1000, "feet")
  11476. },
  11477. ]
  11478. ))
  11479. characterMakers.push(() => makeCharacter(
  11480. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11481. {
  11482. front: {
  11483. height: math.unit(6, "feet"),
  11484. weight: math.unit(150, "lb"),
  11485. name: "Front",
  11486. image: {
  11487. source: "./media/characters/kona/front.svg",
  11488. extra: 2960 / 2629,
  11489. bottom: 0.005
  11490. }
  11491. },
  11492. },
  11493. [
  11494. {
  11495. name: "Normal",
  11496. height: math.unit(11 + 8 / 12, "feet")
  11497. },
  11498. {
  11499. name: "Macro",
  11500. height: math.unit(850, "feet"),
  11501. default: true
  11502. },
  11503. {
  11504. name: "Macro+",
  11505. height: math.unit(1.5, "km"),
  11506. default: true
  11507. },
  11508. {
  11509. name: "Megamacro",
  11510. height: math.unit(80, "miles")
  11511. },
  11512. {
  11513. name: "Gigamacro",
  11514. height: math.unit(3500, "miles")
  11515. },
  11516. ]
  11517. ))
  11518. characterMakers.push(() => makeCharacter(
  11519. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11520. {
  11521. side: {
  11522. height: math.unit(1.9, "meters"),
  11523. weight: math.unit(326, "kg"),
  11524. name: "Side",
  11525. image: {
  11526. source: "./media/characters/levi/side.svg",
  11527. extra: 1704 / 1334,
  11528. bottom: 0.02
  11529. }
  11530. },
  11531. },
  11532. [
  11533. {
  11534. name: "Normal",
  11535. height: math.unit(1.9, "meters"),
  11536. default: true
  11537. },
  11538. {
  11539. name: "Macro",
  11540. height: math.unit(20, "meters")
  11541. },
  11542. {
  11543. name: "Macro+",
  11544. height: math.unit(200, "meters")
  11545. },
  11546. {
  11547. name: "Megamacro",
  11548. height: math.unit(2, "km")
  11549. },
  11550. {
  11551. name: "Megamacro+",
  11552. height: math.unit(20, "km")
  11553. },
  11554. {
  11555. name: "Gigamacro",
  11556. height: math.unit(2500, "km")
  11557. },
  11558. {
  11559. name: "Gigamacro+",
  11560. height: math.unit(120000, "km")
  11561. },
  11562. {
  11563. name: "Teramacro",
  11564. height: math.unit(7.77e6, "km")
  11565. },
  11566. ]
  11567. ))
  11568. characterMakers.push(() => makeCharacter(
  11569. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11570. {
  11571. front: {
  11572. height: math.unit(6 + 4/12, "feet"),
  11573. weight: math.unit(190, "lb"),
  11574. name: "Front",
  11575. image: {
  11576. source: "./media/characters/bmc/front.svg",
  11577. extra: 1626/1472,
  11578. bottom: 79/1705
  11579. }
  11580. },
  11581. back: {
  11582. height: math.unit(6 + 4/12, "feet"),
  11583. weight: math.unit(190, "lb"),
  11584. name: "Back",
  11585. image: {
  11586. source: "./media/characters/bmc/back.svg",
  11587. extra: 1640/1479,
  11588. bottom: 45/1685
  11589. }
  11590. },
  11591. frontArmor: {
  11592. height: math.unit(6 + 4/12, "feet"),
  11593. weight: math.unit(190, "lb"),
  11594. name: "Front-armor",
  11595. image: {
  11596. source: "./media/characters/bmc/front-armor.svg",
  11597. extra: 1538/1468,
  11598. bottom: 79/1617
  11599. }
  11600. },
  11601. },
  11602. [
  11603. {
  11604. name: "Human-sized",
  11605. height: math.unit(6 + 4 / 12, "feet")
  11606. },
  11607. {
  11608. name: "Interactive Size",
  11609. height: math.unit(25, "feet")
  11610. },
  11611. {
  11612. name: "Small",
  11613. height: math.unit(250, "feet")
  11614. },
  11615. {
  11616. name: "Normal",
  11617. height: math.unit(1250, "feet"),
  11618. default: true
  11619. },
  11620. {
  11621. name: "Good Day",
  11622. height: math.unit(88, "miles")
  11623. },
  11624. {
  11625. name: "Largest Measured Size",
  11626. height: math.unit(105.960, "galaxies")
  11627. },
  11628. ]
  11629. ))
  11630. characterMakers.push(() => makeCharacter(
  11631. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11632. {
  11633. front: {
  11634. height: math.unit(20, "feet"),
  11635. weight: math.unit(2016, "kg"),
  11636. name: "Front",
  11637. image: {
  11638. source: "./media/characters/sven-the-kaiju/front.svg",
  11639. extra: 1277/1250,
  11640. bottom: 35/1312
  11641. }
  11642. },
  11643. mouth: {
  11644. height: math.unit(1.85, "feet"),
  11645. name: "Mouth",
  11646. image: {
  11647. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11648. }
  11649. },
  11650. },
  11651. [
  11652. {
  11653. name: "Fairy",
  11654. height: math.unit(6, "inches")
  11655. },
  11656. {
  11657. name: "Normal",
  11658. height: math.unit(20, "feet"),
  11659. default: true
  11660. },
  11661. {
  11662. name: "Rampage",
  11663. height: math.unit(200, "feet")
  11664. },
  11665. {
  11666. name: "Archfey Forest Guardian",
  11667. height: math.unit(1, "mile")
  11668. },
  11669. ]
  11670. ))
  11671. characterMakers.push(() => makeCharacter(
  11672. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11673. {
  11674. front: {
  11675. height: math.unit(4, "meters"),
  11676. weight: math.unit(2, "tons"),
  11677. name: "Front",
  11678. image: {
  11679. source: "./media/characters/marik/front.svg",
  11680. extra: 1057 / 1003,
  11681. bottom: 0.08
  11682. }
  11683. },
  11684. },
  11685. [
  11686. {
  11687. name: "Normal",
  11688. height: math.unit(4, "meters"),
  11689. default: true
  11690. },
  11691. {
  11692. name: "Macro",
  11693. height: math.unit(20, "meters")
  11694. },
  11695. {
  11696. name: "Megamacro",
  11697. height: math.unit(50, "km")
  11698. },
  11699. {
  11700. name: "Gigamacro",
  11701. height: math.unit(100, "km")
  11702. },
  11703. {
  11704. name: "Alpha Macro",
  11705. height: math.unit(7.88e7, "yottameters")
  11706. },
  11707. ]
  11708. ))
  11709. characterMakers.push(() => makeCharacter(
  11710. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11711. {
  11712. front: {
  11713. height: math.unit(6, "feet"),
  11714. weight: math.unit(110, "lb"),
  11715. name: "Front",
  11716. image: {
  11717. source: "./media/characters/mel/front.svg",
  11718. extra: 736 / 617,
  11719. bottom: 0.017
  11720. }
  11721. },
  11722. },
  11723. [
  11724. {
  11725. name: "Pico",
  11726. height: math.unit(3, "pm")
  11727. },
  11728. {
  11729. name: "Nano",
  11730. height: math.unit(3, "nm")
  11731. },
  11732. {
  11733. name: "Micro",
  11734. height: math.unit(0.3, "mm"),
  11735. default: true
  11736. },
  11737. {
  11738. name: "Micro+",
  11739. height: math.unit(3, "mm")
  11740. },
  11741. {
  11742. name: "Normal",
  11743. height: math.unit(5 + 10.5 / 12, "feet")
  11744. },
  11745. ]
  11746. ))
  11747. characterMakers.push(() => makeCharacter(
  11748. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11749. {
  11750. kaiju: {
  11751. height: math.unit(1.75, "meters"),
  11752. weight: math.unit(55, "kg"),
  11753. name: "Kaiju",
  11754. image: {
  11755. source: "./media/characters/lykonous/kaiju.svg",
  11756. extra: 1055 / 946,
  11757. bottom: 0.135
  11758. }
  11759. },
  11760. },
  11761. [
  11762. {
  11763. name: "Normal",
  11764. height: math.unit(2.5, "meters"),
  11765. default: true
  11766. },
  11767. {
  11768. name: "Kaiju Dragon",
  11769. height: math.unit(60, "meters")
  11770. },
  11771. {
  11772. name: "Mega Kaiju",
  11773. height: math.unit(120, "km")
  11774. },
  11775. {
  11776. name: "Giga Kaiju",
  11777. height: math.unit(200, "megameters")
  11778. },
  11779. {
  11780. name: "Terra Kaiju",
  11781. height: math.unit(400, "gigameters")
  11782. },
  11783. {
  11784. name: "Kaiju Dragon God",
  11785. height: math.unit(13000, "exaparsecs")
  11786. },
  11787. ]
  11788. ))
  11789. characterMakers.push(() => makeCharacter(
  11790. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11791. {
  11792. front: {
  11793. height: math.unit(6, "feet"),
  11794. weight: math.unit(150, "lb"),
  11795. name: "Front",
  11796. image: {
  11797. source: "./media/characters/blü/front.svg",
  11798. extra: 1883 / 1564,
  11799. bottom: 0.031
  11800. }
  11801. },
  11802. },
  11803. [
  11804. {
  11805. name: "Normal",
  11806. height: math.unit(13, "feet"),
  11807. default: true
  11808. },
  11809. {
  11810. name: "Big Boi",
  11811. height: math.unit(150, "meters")
  11812. },
  11813. {
  11814. name: "Mini Stomper",
  11815. height: math.unit(300, "meters")
  11816. },
  11817. {
  11818. name: "Macro",
  11819. height: math.unit(1000, "meters")
  11820. },
  11821. {
  11822. name: "Megamacro",
  11823. height: math.unit(11000, "meters")
  11824. },
  11825. {
  11826. name: "Gigamacro",
  11827. height: math.unit(11000, "km")
  11828. },
  11829. {
  11830. name: "Teramacro",
  11831. height: math.unit(420000, "km")
  11832. },
  11833. {
  11834. name: "Examacro",
  11835. height: math.unit(120, "parsecs")
  11836. },
  11837. {
  11838. name: "God Tho",
  11839. height: math.unit(98000000000, "parsecs")
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11845. {
  11846. taurFront: {
  11847. height: math.unit(6, "feet"),
  11848. weight: math.unit(200, "lb"),
  11849. name: "Taur (Front)",
  11850. image: {
  11851. source: "./media/characters/scales/taur-front.svg",
  11852. extra: 1,
  11853. bottom: 0.05
  11854. }
  11855. },
  11856. taurBack: {
  11857. height: math.unit(6, "feet"),
  11858. weight: math.unit(200, "lb"),
  11859. name: "Taur (Back)",
  11860. image: {
  11861. source: "./media/characters/scales/taur-back.svg",
  11862. extra: 1,
  11863. bottom: 0.08
  11864. }
  11865. },
  11866. anthro: {
  11867. height: math.unit(6 * 7 / 12, "feet"),
  11868. weight: math.unit(100, "lb"),
  11869. name: "Anthro",
  11870. image: {
  11871. source: "./media/characters/scales/anthro.svg",
  11872. extra: 1,
  11873. bottom: 0.06
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Normal",
  11880. height: math.unit(12, "feet"),
  11881. default: true
  11882. },
  11883. ]
  11884. ))
  11885. characterMakers.push(() => makeCharacter(
  11886. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11887. {
  11888. front: {
  11889. height: math.unit(6, "feet"),
  11890. weight: math.unit(150, "lb"),
  11891. name: "Front",
  11892. image: {
  11893. source: "./media/characters/koragos/front.svg",
  11894. extra: 841 / 794,
  11895. bottom: 0.035
  11896. }
  11897. },
  11898. back: {
  11899. height: math.unit(6, "feet"),
  11900. weight: math.unit(150, "lb"),
  11901. name: "Back",
  11902. image: {
  11903. source: "./media/characters/koragos/back.svg",
  11904. extra: 841 / 810,
  11905. bottom: 0.022
  11906. }
  11907. },
  11908. },
  11909. [
  11910. {
  11911. name: "Normal",
  11912. height: math.unit(6 + 11 / 12, "feet"),
  11913. default: true
  11914. },
  11915. {
  11916. name: "Macro",
  11917. height: math.unit(490, "feet")
  11918. },
  11919. {
  11920. name: "Megamacro",
  11921. height: math.unit(10, "miles")
  11922. },
  11923. {
  11924. name: "Gigamacro",
  11925. height: math.unit(50, "miles")
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11931. {
  11932. front: {
  11933. height: math.unit(6, "feet"),
  11934. weight: math.unit(250, "lb"),
  11935. name: "Front",
  11936. image: {
  11937. source: "./media/characters/xylrem/front.svg",
  11938. extra: 3323 / 3050,
  11939. bottom: 0.065
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Micro",
  11946. height: math.unit(4, "feet")
  11947. },
  11948. {
  11949. name: "Normal",
  11950. height: math.unit(16, "feet"),
  11951. default: true
  11952. },
  11953. {
  11954. name: "Macro",
  11955. height: math.unit(2720, "feet")
  11956. },
  11957. {
  11958. name: "Megamacro",
  11959. height: math.unit(25000, "miles")
  11960. },
  11961. ]
  11962. ))
  11963. characterMakers.push(() => makeCharacter(
  11964. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11965. {
  11966. front: {
  11967. height: math.unit(8, "feet"),
  11968. weight: math.unit(250, "kg"),
  11969. name: "Front",
  11970. image: {
  11971. source: "./media/characters/ikideru/front.svg",
  11972. extra: 930 / 870,
  11973. bottom: 0.087
  11974. }
  11975. },
  11976. back: {
  11977. height: math.unit(8, "feet"),
  11978. weight: math.unit(250, "kg"),
  11979. name: "Back",
  11980. image: {
  11981. source: "./media/characters/ikideru/back.svg",
  11982. extra: 919 / 852,
  11983. bottom: 0.055
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Rare",
  11990. height: math.unit(8, "feet"),
  11991. default: true
  11992. },
  11993. {
  11994. name: "Playful Loom",
  11995. height: math.unit(80, "feet")
  11996. },
  11997. {
  11998. name: "City Leaner",
  11999. height: math.unit(230, "feet")
  12000. },
  12001. {
  12002. name: "Megamacro",
  12003. height: math.unit(2500, "feet")
  12004. },
  12005. {
  12006. name: "Gigamacro",
  12007. height: math.unit(26400, "feet")
  12008. },
  12009. {
  12010. name: "Tectonic Shifter",
  12011. height: math.unit(1.7, "megameters")
  12012. },
  12013. {
  12014. name: "Planet Carer",
  12015. height: math.unit(21, "megameters")
  12016. },
  12017. {
  12018. name: "God",
  12019. height: math.unit(11157.22, "parsecs")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(6, "feet"),
  12028. weight: math.unit(120, "lb"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/neo/front.svg"
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Micro",
  12038. height: math.unit(2, "inches"),
  12039. default: true
  12040. },
  12041. {
  12042. name: "Human Size",
  12043. height: math.unit(5 + 8 / 12, "feet")
  12044. },
  12045. ]
  12046. ))
  12047. characterMakers.push(() => makeCharacter(
  12048. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12049. {
  12050. front: {
  12051. height: math.unit(13 + 10 / 12, "feet"),
  12052. weight: math.unit(5320, "lb"),
  12053. name: "Front",
  12054. image: {
  12055. source: "./media/characters/chauncey-chantz/front.svg",
  12056. extra: 1587 / 1435,
  12057. bottom: 0.02
  12058. }
  12059. },
  12060. },
  12061. [
  12062. {
  12063. name: "Normal",
  12064. height: math.unit(13 + 10 / 12, "feet"),
  12065. default: true
  12066. },
  12067. {
  12068. name: "Macro",
  12069. height: math.unit(45, "feet")
  12070. },
  12071. {
  12072. name: "Megamacro",
  12073. height: math.unit(250, "miles")
  12074. },
  12075. {
  12076. name: "Planetary",
  12077. height: math.unit(10000, "miles")
  12078. },
  12079. {
  12080. name: "Galactic",
  12081. height: math.unit(40000, "parsecs")
  12082. },
  12083. {
  12084. name: "Universal",
  12085. height: math.unit(1, "yottameter")
  12086. },
  12087. ]
  12088. ))
  12089. characterMakers.push(() => makeCharacter(
  12090. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12091. {
  12092. front: {
  12093. height: math.unit(6, "feet"),
  12094. weight: math.unit(150, "lb"),
  12095. name: "Front",
  12096. image: {
  12097. source: "./media/characters/epifox/front.svg",
  12098. extra: 1,
  12099. bottom: 0.075
  12100. }
  12101. },
  12102. },
  12103. [
  12104. {
  12105. name: "Micro",
  12106. height: math.unit(6, "inches")
  12107. },
  12108. {
  12109. name: "Normal",
  12110. height: math.unit(12, "feet"),
  12111. default: true
  12112. },
  12113. {
  12114. name: "Macro",
  12115. height: math.unit(3810, "feet")
  12116. },
  12117. {
  12118. name: "Megamacro",
  12119. height: math.unit(500, "miles")
  12120. },
  12121. ]
  12122. ))
  12123. characterMakers.push(() => makeCharacter(
  12124. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12125. {
  12126. front: {
  12127. height: math.unit(1.8796, "m"),
  12128. weight: math.unit(230, "lb"),
  12129. name: "Front",
  12130. image: {
  12131. source: "./media/characters/colin-t/front.svg",
  12132. extra: 1272 / 1193,
  12133. bottom: 0.07
  12134. }
  12135. },
  12136. },
  12137. [
  12138. {
  12139. name: "Micro",
  12140. height: math.unit(0.571, "meters")
  12141. },
  12142. {
  12143. name: "Normal",
  12144. height: math.unit(1.8796, "meters"),
  12145. default: true
  12146. },
  12147. {
  12148. name: "Tall",
  12149. height: math.unit(4, "meters")
  12150. },
  12151. {
  12152. name: "Macro",
  12153. height: math.unit(67.241, "meters")
  12154. },
  12155. {
  12156. name: "Megamacro",
  12157. height: math.unit(371.856, "meters")
  12158. },
  12159. {
  12160. name: "Planetary",
  12161. height: math.unit(12631.5689, "km")
  12162. },
  12163. ]
  12164. ))
  12165. characterMakers.push(() => makeCharacter(
  12166. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12167. {
  12168. front: {
  12169. height: math.unit(1.85, "meters"),
  12170. weight: math.unit(80, "kg"),
  12171. name: "Front",
  12172. image: {
  12173. source: "./media/characters/matvei/front.svg",
  12174. extra: 614 / 594,
  12175. bottom: 0.01
  12176. }
  12177. },
  12178. },
  12179. [
  12180. {
  12181. name: "Normal",
  12182. height: math.unit(1.85, "meters"),
  12183. default: true
  12184. },
  12185. ]
  12186. ))
  12187. characterMakers.push(() => makeCharacter(
  12188. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12189. {
  12190. front: {
  12191. height: math.unit(5 + 9 / 12, "feet"),
  12192. weight: math.unit(70, "lb"),
  12193. name: "Front",
  12194. image: {
  12195. source: "./media/characters/quincy/front.svg",
  12196. extra: 3041 / 2751
  12197. }
  12198. },
  12199. back: {
  12200. height: math.unit(5 + 9 / 12, "feet"),
  12201. weight: math.unit(70, "lb"),
  12202. name: "Back",
  12203. image: {
  12204. source: "./media/characters/quincy/back.svg",
  12205. extra: 3041 / 2751
  12206. }
  12207. },
  12208. flying: {
  12209. height: math.unit(5 + 4 / 12, "feet"),
  12210. weight: math.unit(70, "lb"),
  12211. name: "Flying",
  12212. image: {
  12213. source: "./media/characters/quincy/flying.svg",
  12214. extra: 1044 / 930
  12215. }
  12216. },
  12217. },
  12218. [
  12219. {
  12220. name: "Micro",
  12221. height: math.unit(3, "cm")
  12222. },
  12223. {
  12224. name: "Normal",
  12225. height: math.unit(5 + 9 / 12, "feet")
  12226. },
  12227. {
  12228. name: "Macro",
  12229. height: math.unit(200, "meters"),
  12230. default: true
  12231. },
  12232. {
  12233. name: "Megamacro",
  12234. height: math.unit(1000, "meters")
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(3 + 11/12, "feet"),
  12243. weight: math.unit(50, "lb"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/vanrel/front.svg",
  12247. extra: 1104/949,
  12248. bottom: 52/1156
  12249. }
  12250. },
  12251. back: {
  12252. height: math.unit(3 + 11/12, "feet"),
  12253. weight: math.unit(50, "lb"),
  12254. name: "Back",
  12255. image: {
  12256. source: "./media/characters/vanrel/back.svg",
  12257. extra: 1119/976,
  12258. bottom: 37/1156
  12259. }
  12260. },
  12261. tome: {
  12262. height: math.unit(1.35, "feet"),
  12263. weight: math.unit(10, "lb"),
  12264. name: "Vanrel's Tome",
  12265. rename: true,
  12266. image: {
  12267. source: "./media/characters/vanrel/tome.svg"
  12268. }
  12269. },
  12270. beans: {
  12271. height: math.unit(0.89, "feet"),
  12272. name: "Beans",
  12273. image: {
  12274. source: "./media/characters/vanrel/beans.svg"
  12275. }
  12276. },
  12277. },
  12278. [
  12279. {
  12280. name: "Normal",
  12281. height: math.unit(3 + 11/12, "feet"),
  12282. default: true
  12283. },
  12284. ]
  12285. ))
  12286. characterMakers.push(() => makeCharacter(
  12287. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12288. {
  12289. front: {
  12290. height: math.unit(7 + 5 / 12, "feet"),
  12291. name: "Front",
  12292. image: {
  12293. source: "./media/characters/kuiper-vanrel/front.svg",
  12294. extra: 1219/1169,
  12295. bottom: 69/1288
  12296. }
  12297. },
  12298. back: {
  12299. height: math.unit(7 + 5 / 12, "feet"),
  12300. name: "Back",
  12301. image: {
  12302. source: "./media/characters/kuiper-vanrel/back.svg",
  12303. extra: 1236/1193,
  12304. bottom: 27/1263
  12305. }
  12306. },
  12307. foot: {
  12308. height: math.unit(0.55, "meters"),
  12309. name: "Foot",
  12310. image: {
  12311. source: "./media/characters/kuiper-vanrel/foot.svg",
  12312. }
  12313. },
  12314. battle: {
  12315. height: math.unit(6.824, "feet"),
  12316. name: "Battle",
  12317. image: {
  12318. source: "./media/characters/kuiper-vanrel/battle.svg",
  12319. extra: 1466 / 1327,
  12320. bottom: 29 / 1492.5
  12321. }
  12322. },
  12323. meerkui: {
  12324. height: math.unit(18, "inches"),
  12325. name: "Meerkui",
  12326. image: {
  12327. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12328. extra: 1354/1289,
  12329. bottom: 69/1423
  12330. }
  12331. },
  12332. },
  12333. [
  12334. {
  12335. name: "Normal",
  12336. height: math.unit(7 + 5 / 12, "feet"),
  12337. default: true
  12338. },
  12339. ]
  12340. ))
  12341. characterMakers.push(() => makeCharacter(
  12342. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12343. {
  12344. front: {
  12345. height: math.unit(8 + 5 / 12, "feet"),
  12346. name: "Front",
  12347. image: {
  12348. source: "./media/characters/keset-vanrel/front.svg",
  12349. extra: 1231/1148,
  12350. bottom: 82/1313
  12351. }
  12352. },
  12353. back: {
  12354. height: math.unit(8 + 5 / 12, "feet"),
  12355. name: "Back",
  12356. image: {
  12357. source: "./media/characters/keset-vanrel/back.svg",
  12358. extra: 1240/1174,
  12359. bottom: 33/1273
  12360. }
  12361. },
  12362. hand: {
  12363. height: math.unit(0.6, "meters"),
  12364. name: "Hand",
  12365. image: {
  12366. source: "./media/characters/keset-vanrel/hand.svg"
  12367. }
  12368. },
  12369. foot: {
  12370. height: math.unit(0.94978, "meters"),
  12371. name: "Foot",
  12372. image: {
  12373. source: "./media/characters/keset-vanrel/foot.svg"
  12374. }
  12375. },
  12376. battle: {
  12377. height: math.unit(7.408, "feet"),
  12378. name: "Battle",
  12379. image: {
  12380. source: "./media/characters/keset-vanrel/battle.svg",
  12381. extra: 1890 / 1386,
  12382. bottom: 73.28 / 1970
  12383. }
  12384. },
  12385. },
  12386. [
  12387. {
  12388. name: "Normal",
  12389. height: math.unit(8 + 5 / 12, "feet"),
  12390. default: true
  12391. },
  12392. ]
  12393. ))
  12394. characterMakers.push(() => makeCharacter(
  12395. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12396. {
  12397. front: {
  12398. height: math.unit(6, "feet"),
  12399. weight: math.unit(150, "lb"),
  12400. name: "Front",
  12401. image: {
  12402. source: "./media/characters/neos/front.svg",
  12403. extra: 1696 / 992,
  12404. bottom: 0.14
  12405. }
  12406. },
  12407. },
  12408. [
  12409. {
  12410. name: "Normal",
  12411. height: math.unit(54, "cm"),
  12412. default: true
  12413. },
  12414. {
  12415. name: "Macro",
  12416. height: math.unit(100, "m")
  12417. },
  12418. {
  12419. name: "Megamacro",
  12420. height: math.unit(10, "km")
  12421. },
  12422. {
  12423. name: "Megamacro+",
  12424. height: math.unit(100, "km")
  12425. },
  12426. {
  12427. name: "Gigamacro",
  12428. height: math.unit(100, "Mm")
  12429. },
  12430. {
  12431. name: "Teramacro",
  12432. height: math.unit(100, "Gm")
  12433. },
  12434. {
  12435. name: "Examacro",
  12436. height: math.unit(100, "Em")
  12437. },
  12438. {
  12439. name: "Godly",
  12440. height: math.unit(10000, "Ym")
  12441. },
  12442. {
  12443. name: "Beyond Godly",
  12444. height: math.unit(25, "multiverses")
  12445. },
  12446. ]
  12447. ))
  12448. characterMakers.push(() => makeCharacter(
  12449. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12450. {
  12451. feminine: {
  12452. height: math.unit(5, "feet"),
  12453. weight: math.unit(100, "lb"),
  12454. name: "Feminine",
  12455. image: {
  12456. source: "./media/characters/sammy-mouse/feminine.svg",
  12457. extra: 2526 / 2425,
  12458. bottom: 0.123
  12459. }
  12460. },
  12461. masculine: {
  12462. height: math.unit(5, "feet"),
  12463. weight: math.unit(100, "lb"),
  12464. name: "Masculine",
  12465. image: {
  12466. source: "./media/characters/sammy-mouse/masculine.svg",
  12467. extra: 2526 / 2425,
  12468. bottom: 0.123
  12469. }
  12470. },
  12471. },
  12472. [
  12473. {
  12474. name: "Micro",
  12475. height: math.unit(5, "inches")
  12476. },
  12477. {
  12478. name: "Normal",
  12479. height: math.unit(5, "feet"),
  12480. default: true
  12481. },
  12482. {
  12483. name: "Macro",
  12484. height: math.unit(60, "feet")
  12485. },
  12486. ]
  12487. ))
  12488. characterMakers.push(() => makeCharacter(
  12489. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12490. {
  12491. front: {
  12492. height: math.unit(4, "feet"),
  12493. weight: math.unit(50, "lb"),
  12494. name: "Front",
  12495. image: {
  12496. source: "./media/characters/kole/front.svg",
  12497. extra: 1423 / 1303,
  12498. bottom: 0.025
  12499. }
  12500. },
  12501. back: {
  12502. height: math.unit(4, "feet"),
  12503. weight: math.unit(50, "lb"),
  12504. name: "Back",
  12505. image: {
  12506. source: "./media/characters/kole/back.svg",
  12507. extra: 1426 / 1280,
  12508. bottom: 0.02
  12509. }
  12510. },
  12511. },
  12512. [
  12513. {
  12514. name: "Normal",
  12515. height: math.unit(4, "feet"),
  12516. default: true
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12522. {
  12523. front: {
  12524. height: math.unit(2.5, "feet"),
  12525. weight: math.unit(32, "lb"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/rufran/front.svg",
  12529. extra: 1313/885,
  12530. bottom: 94/1407
  12531. }
  12532. },
  12533. side: {
  12534. height: math.unit(2.5, "feet"),
  12535. weight: math.unit(32, "lb"),
  12536. name: "Side",
  12537. image: {
  12538. source: "./media/characters/rufran/side.svg",
  12539. extra: 1109/852,
  12540. bottom: 118/1227
  12541. }
  12542. },
  12543. back: {
  12544. height: math.unit(2.5, "feet"),
  12545. weight: math.unit(32, "lb"),
  12546. name: "Back",
  12547. image: {
  12548. source: "./media/characters/rufran/back.svg",
  12549. extra: 1280/878,
  12550. bottom: 131/1411
  12551. }
  12552. },
  12553. mouth: {
  12554. height: math.unit(1.13, "feet"),
  12555. name: "Mouth",
  12556. image: {
  12557. source: "./media/characters/rufran/mouth.svg"
  12558. }
  12559. },
  12560. foot: {
  12561. height: math.unit(1.33, "feet"),
  12562. name: "Foot",
  12563. image: {
  12564. source: "./media/characters/rufran/foot.svg"
  12565. }
  12566. },
  12567. koboldFront: {
  12568. height: math.unit(2 + 6 / 12, "feet"),
  12569. weight: math.unit(20, "lb"),
  12570. name: "Front (Kobold)",
  12571. image: {
  12572. source: "./media/characters/rufran/kobold-front.svg",
  12573. extra: 2041 / 1839,
  12574. bottom: 0.055
  12575. }
  12576. },
  12577. koboldBack: {
  12578. height: math.unit(2 + 6 / 12, "feet"),
  12579. weight: math.unit(20, "lb"),
  12580. name: "Back (Kobold)",
  12581. image: {
  12582. source: "./media/characters/rufran/kobold-back.svg",
  12583. extra: 2054 / 1839,
  12584. bottom: 0.01
  12585. }
  12586. },
  12587. koboldHand: {
  12588. height: math.unit(0.2166, "meters"),
  12589. name: "Hand (Kobold)",
  12590. image: {
  12591. source: "./media/characters/rufran/kobold-hand.svg"
  12592. }
  12593. },
  12594. koboldFoot: {
  12595. height: math.unit(0.185, "meters"),
  12596. name: "Foot (Kobold)",
  12597. image: {
  12598. source: "./media/characters/rufran/kobold-foot.svg"
  12599. }
  12600. },
  12601. },
  12602. [
  12603. {
  12604. name: "Micro",
  12605. height: math.unit(1, "inch")
  12606. },
  12607. {
  12608. name: "Normal",
  12609. height: math.unit(2 + 6 / 12, "feet"),
  12610. default: true
  12611. },
  12612. {
  12613. name: "Big",
  12614. height: math.unit(60, "feet")
  12615. },
  12616. {
  12617. name: "Macro",
  12618. height: math.unit(325, "feet")
  12619. },
  12620. ]
  12621. ))
  12622. characterMakers.push(() => makeCharacter(
  12623. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12624. {
  12625. front: {
  12626. height: math.unit(0.3, "meters"),
  12627. weight: math.unit(3.5, "kg"),
  12628. name: "Front",
  12629. image: {
  12630. source: "./media/characters/chip/front.svg",
  12631. extra: 748 / 674
  12632. }
  12633. },
  12634. },
  12635. [
  12636. {
  12637. name: "Micro",
  12638. height: math.unit(1, "inch"),
  12639. default: true
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12645. {
  12646. side: {
  12647. height: math.unit(2.3, "meters"),
  12648. weight: math.unit(3500, "lb"),
  12649. name: "Side",
  12650. image: {
  12651. source: "./media/characters/torvid/side.svg",
  12652. extra: 1972 / 722,
  12653. bottom: 0.035
  12654. }
  12655. },
  12656. },
  12657. [
  12658. {
  12659. name: "Normal",
  12660. height: math.unit(2.3, "meters"),
  12661. default: true
  12662. },
  12663. ]
  12664. ))
  12665. characterMakers.push(() => makeCharacter(
  12666. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12667. {
  12668. front: {
  12669. height: math.unit(2, "meters"),
  12670. weight: math.unit(150.5, "kg"),
  12671. name: "Front",
  12672. image: {
  12673. source: "./media/characters/susan/front.svg",
  12674. extra: 693 / 635,
  12675. bottom: 0.05
  12676. }
  12677. },
  12678. },
  12679. [
  12680. {
  12681. name: "Megamacro",
  12682. height: math.unit(505, "miles"),
  12683. default: true
  12684. },
  12685. ]
  12686. ))
  12687. characterMakers.push(() => makeCharacter(
  12688. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12689. {
  12690. front: {
  12691. height: math.unit(6, "feet"),
  12692. weight: math.unit(150, "lb"),
  12693. name: "Front",
  12694. image: {
  12695. source: "./media/characters/raindrops/front.svg",
  12696. extra: 2655 / 2461,
  12697. bottom: 49 / 2705
  12698. }
  12699. },
  12700. back: {
  12701. height: math.unit(6, "feet"),
  12702. weight: math.unit(150, "lb"),
  12703. name: "Back",
  12704. image: {
  12705. source: "./media/characters/raindrops/back.svg",
  12706. extra: 2574 / 2400,
  12707. bottom: 65 / 2634
  12708. }
  12709. },
  12710. },
  12711. [
  12712. {
  12713. name: "Micro",
  12714. height: math.unit(6, "inches")
  12715. },
  12716. {
  12717. name: "Normal",
  12718. height: math.unit(6 + 2 / 12, "feet")
  12719. },
  12720. {
  12721. name: "Macro",
  12722. height: math.unit(131, "feet"),
  12723. default: true
  12724. },
  12725. {
  12726. name: "Megamacro",
  12727. height: math.unit(15, "miles")
  12728. },
  12729. {
  12730. name: "Gigamacro",
  12731. height: math.unit(4000, "miles")
  12732. },
  12733. {
  12734. name: "Teramacro",
  12735. height: math.unit(315000, "miles")
  12736. },
  12737. ]
  12738. ))
  12739. characterMakers.push(() => makeCharacter(
  12740. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12741. {
  12742. front: {
  12743. height: math.unit(2.794, "meters"),
  12744. weight: math.unit(325, "kg"),
  12745. name: "Front",
  12746. image: {
  12747. source: "./media/characters/tezwa/front.svg",
  12748. extra: 2083 / 1906,
  12749. bottom: 0.031
  12750. }
  12751. },
  12752. foot: {
  12753. height: math.unit(0.687, "meters"),
  12754. name: "Foot",
  12755. image: {
  12756. source: "./media/characters/tezwa/foot.svg"
  12757. }
  12758. },
  12759. },
  12760. [
  12761. {
  12762. name: "Normal",
  12763. height: math.unit(9 + 2 / 12, "feet"),
  12764. default: true
  12765. },
  12766. ]
  12767. ))
  12768. characterMakers.push(() => makeCharacter(
  12769. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12770. {
  12771. front: {
  12772. height: math.unit(58, "feet"),
  12773. weight: math.unit(89000, "lb"),
  12774. name: "Front",
  12775. image: {
  12776. source: "./media/characters/typhus/front.svg",
  12777. extra: 816 / 800,
  12778. bottom: 0.065
  12779. }
  12780. },
  12781. },
  12782. [
  12783. {
  12784. name: "Macro",
  12785. height: math.unit(58, "feet"),
  12786. default: true
  12787. },
  12788. ]
  12789. ))
  12790. characterMakers.push(() => makeCharacter(
  12791. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12792. {
  12793. front: {
  12794. height: math.unit(12, "feet"),
  12795. weight: math.unit(6, "tonnes"),
  12796. name: "Front",
  12797. image: {
  12798. source: "./media/characters/lyra-von-wulf/front.svg",
  12799. extra: 1,
  12800. bottom: 0.10
  12801. }
  12802. },
  12803. frontMecha: {
  12804. height: math.unit(12, "feet"),
  12805. weight: math.unit(12, "tonnes"),
  12806. name: "Front (Mecha)",
  12807. image: {
  12808. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12809. extra: 1,
  12810. bottom: 0.042
  12811. }
  12812. },
  12813. maw: {
  12814. height: math.unit(2.2, "feet"),
  12815. name: "Maw",
  12816. image: {
  12817. source: "./media/characters/lyra-von-wulf/maw.svg"
  12818. }
  12819. },
  12820. },
  12821. [
  12822. {
  12823. name: "Normal",
  12824. height: math.unit(12, "feet"),
  12825. default: true
  12826. },
  12827. {
  12828. name: "Classic",
  12829. height: math.unit(50, "feet")
  12830. },
  12831. {
  12832. name: "Macro",
  12833. height: math.unit(500, "feet")
  12834. },
  12835. {
  12836. name: "Megamacro",
  12837. height: math.unit(1, "mile")
  12838. },
  12839. {
  12840. name: "Gigamacro",
  12841. height: math.unit(400, "miles")
  12842. },
  12843. {
  12844. name: "Teramacro",
  12845. height: math.unit(22000, "miles")
  12846. },
  12847. {
  12848. name: "Solarmacro",
  12849. height: math.unit(8600000, "miles")
  12850. },
  12851. {
  12852. name: "Galactic",
  12853. height: math.unit(1057000, "lightyears")
  12854. },
  12855. ]
  12856. ))
  12857. characterMakers.push(() => makeCharacter(
  12858. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12859. {
  12860. front: {
  12861. height: math.unit(6 + 10 / 12, "feet"),
  12862. weight: math.unit(150, "lb"),
  12863. name: "Front",
  12864. image: {
  12865. source: "./media/characters/dixon/front.svg",
  12866. extra: 3361 / 3209,
  12867. bottom: 0.01
  12868. }
  12869. },
  12870. },
  12871. [
  12872. {
  12873. name: "Normal",
  12874. height: math.unit(6 + 10 / 12, "feet"),
  12875. default: true
  12876. },
  12877. {
  12878. name: "Big",
  12879. height: math.unit(12, "meters")
  12880. },
  12881. {
  12882. name: "Macro",
  12883. height: math.unit(500, "meters")
  12884. },
  12885. {
  12886. name: "Megamacro",
  12887. height: math.unit(2, "km")
  12888. },
  12889. ]
  12890. ))
  12891. characterMakers.push(() => makeCharacter(
  12892. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12893. {
  12894. front: {
  12895. height: math.unit(185, "cm"),
  12896. weight: math.unit(68, "kg"),
  12897. name: "Front",
  12898. image: {
  12899. source: "./media/characters/kauko/front.svg",
  12900. extra: 1455 / 1421,
  12901. bottom: 0.03
  12902. }
  12903. },
  12904. back: {
  12905. height: math.unit(185, "cm"),
  12906. weight: math.unit(68, "kg"),
  12907. name: "Back",
  12908. image: {
  12909. source: "./media/characters/kauko/back.svg",
  12910. extra: 1455 / 1421,
  12911. bottom: 0.004
  12912. }
  12913. },
  12914. },
  12915. [
  12916. {
  12917. name: "Normal",
  12918. height: math.unit(185, "cm"),
  12919. default: true
  12920. },
  12921. ]
  12922. ))
  12923. characterMakers.push(() => makeCharacter(
  12924. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12925. {
  12926. front: {
  12927. height: math.unit(6, "feet"),
  12928. weight: math.unit(150, "kg"),
  12929. name: "Front",
  12930. image: {
  12931. source: "./media/characters/varg/front.svg",
  12932. extra: 1108 / 1018,
  12933. bottom: 0.0375
  12934. }
  12935. },
  12936. },
  12937. [
  12938. {
  12939. name: "Normal",
  12940. height: math.unit(5, "meters")
  12941. },
  12942. {
  12943. name: "Macro",
  12944. height: math.unit(200, "meters")
  12945. },
  12946. {
  12947. name: "Megamacro",
  12948. height: math.unit(20, "kilometers")
  12949. },
  12950. {
  12951. name: "True Size",
  12952. height: math.unit(211, "km"),
  12953. default: true
  12954. },
  12955. {
  12956. name: "Gigamacro",
  12957. height: math.unit(1000, "km")
  12958. },
  12959. {
  12960. name: "Gigamacro+",
  12961. height: math.unit(8000, "km")
  12962. },
  12963. {
  12964. name: "Teramacro",
  12965. height: math.unit(1000000, "km")
  12966. },
  12967. ]
  12968. ))
  12969. characterMakers.push(() => makeCharacter(
  12970. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12971. {
  12972. front: {
  12973. height: math.unit(7 + 7 / 12, "feet"),
  12974. weight: math.unit(267, "lb"),
  12975. name: "Front",
  12976. image: {
  12977. source: "./media/characters/dayza/front.svg",
  12978. extra: 1262 / 1200,
  12979. bottom: 0.035
  12980. }
  12981. },
  12982. side: {
  12983. height: math.unit(7 + 7 / 12, "feet"),
  12984. weight: math.unit(267, "lb"),
  12985. name: "Side",
  12986. image: {
  12987. source: "./media/characters/dayza/side.svg",
  12988. extra: 1295 / 1245,
  12989. bottom: 0.05
  12990. }
  12991. },
  12992. back: {
  12993. height: math.unit(7 + 7 / 12, "feet"),
  12994. weight: math.unit(267, "lb"),
  12995. name: "Back",
  12996. image: {
  12997. source: "./media/characters/dayza/back.svg",
  12998. extra: 1241 / 1170
  12999. }
  13000. },
  13001. },
  13002. [
  13003. {
  13004. name: "Normal",
  13005. height: math.unit(7 + 7 / 12, "feet"),
  13006. default: true
  13007. },
  13008. {
  13009. name: "Macro",
  13010. height: math.unit(155, "feet")
  13011. },
  13012. ]
  13013. ))
  13014. characterMakers.push(() => makeCharacter(
  13015. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13016. {
  13017. front: {
  13018. height: math.unit(6 + 5 / 12, "feet"),
  13019. weight: math.unit(160, "lb"),
  13020. name: "Front",
  13021. image: {
  13022. source: "./media/characters/xanthos/front.svg",
  13023. extra: 1,
  13024. bottom: 0.04
  13025. }
  13026. },
  13027. back: {
  13028. height: math.unit(6 + 5 / 12, "feet"),
  13029. weight: math.unit(160, "lb"),
  13030. name: "Back",
  13031. image: {
  13032. source: "./media/characters/xanthos/back.svg",
  13033. extra: 1,
  13034. bottom: 0.03
  13035. }
  13036. },
  13037. hand: {
  13038. height: math.unit(0.928, "feet"),
  13039. name: "Hand",
  13040. image: {
  13041. source: "./media/characters/xanthos/hand.svg"
  13042. }
  13043. },
  13044. foot: {
  13045. height: math.unit(1.286, "feet"),
  13046. name: "Foot",
  13047. image: {
  13048. source: "./media/characters/xanthos/foot.svg"
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Normal",
  13055. height: math.unit(6 + 5 / 12, "feet"),
  13056. default: true
  13057. },
  13058. {
  13059. name: "Normal+",
  13060. height: math.unit(6, "meters")
  13061. },
  13062. {
  13063. name: "Macro",
  13064. height: math.unit(40, "feet")
  13065. },
  13066. {
  13067. name: "Macro+",
  13068. height: math.unit(200, "meters")
  13069. },
  13070. {
  13071. name: "Megamacro",
  13072. height: math.unit(20, "km")
  13073. },
  13074. {
  13075. name: "Megamacro+",
  13076. height: math.unit(100, "km")
  13077. },
  13078. {
  13079. name: "Gigamacro",
  13080. height: math.unit(200, "megameters")
  13081. },
  13082. {
  13083. name: "Gigamacro+",
  13084. height: math.unit(1.5, "gigameters")
  13085. },
  13086. ]
  13087. ))
  13088. characterMakers.push(() => makeCharacter(
  13089. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13090. {
  13091. front: {
  13092. height: math.unit(6 + 3 / 12, "feet"),
  13093. weight: math.unit(215, "lb"),
  13094. name: "Front",
  13095. image: {
  13096. source: "./media/characters/grynn/front.svg",
  13097. extra: 4627 / 4209,
  13098. bottom: 0.047
  13099. }
  13100. },
  13101. },
  13102. [
  13103. {
  13104. name: "Micro",
  13105. height: math.unit(6, "inches")
  13106. },
  13107. {
  13108. name: "Normal",
  13109. height: math.unit(6 + 3 / 12, "feet"),
  13110. default: true
  13111. },
  13112. {
  13113. name: "Big",
  13114. height: math.unit(104, "feet")
  13115. },
  13116. {
  13117. name: "Macro",
  13118. height: math.unit(944, "feet")
  13119. },
  13120. {
  13121. name: "Macro+",
  13122. height: math.unit(9480, "feet")
  13123. },
  13124. {
  13125. name: "Megamacro",
  13126. height: math.unit(78752, "feet")
  13127. },
  13128. {
  13129. name: "Megamacro+",
  13130. height: math.unit(630128, "feet")
  13131. },
  13132. {
  13133. name: "Megamacro++",
  13134. height: math.unit(3150695, "feet")
  13135. },
  13136. ]
  13137. ))
  13138. characterMakers.push(() => makeCharacter(
  13139. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13140. {
  13141. front: {
  13142. height: math.unit(7 + 5 / 12, "feet"),
  13143. weight: math.unit(450, "lb"),
  13144. name: "Front",
  13145. image: {
  13146. source: "./media/characters/mocha-aura/front.svg",
  13147. extra: 1907 / 1817,
  13148. bottom: 0.04
  13149. }
  13150. },
  13151. back: {
  13152. height: math.unit(7 + 5 / 12, "feet"),
  13153. weight: math.unit(450, "lb"),
  13154. name: "Back",
  13155. image: {
  13156. source: "./media/characters/mocha-aura/back.svg",
  13157. extra: 1900 / 1825,
  13158. bottom: 0.045
  13159. }
  13160. },
  13161. },
  13162. [
  13163. {
  13164. name: "Nano",
  13165. height: math.unit(1, "nm")
  13166. },
  13167. {
  13168. name: "Megamicro",
  13169. height: math.unit(1, "mm")
  13170. },
  13171. {
  13172. name: "Micro",
  13173. height: math.unit(3, "inches")
  13174. },
  13175. {
  13176. name: "Normal",
  13177. height: math.unit(7 + 5 / 12, "feet"),
  13178. default: true
  13179. },
  13180. {
  13181. name: "Macro",
  13182. height: math.unit(30, "feet")
  13183. },
  13184. {
  13185. name: "Megamacro",
  13186. height: math.unit(3500, "feet")
  13187. },
  13188. {
  13189. name: "Teramacro",
  13190. height: math.unit(500000, "miles")
  13191. },
  13192. {
  13193. name: "Petamacro",
  13194. height: math.unit(50000000000000000, "parsecs")
  13195. },
  13196. ]
  13197. ))
  13198. characterMakers.push(() => makeCharacter(
  13199. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13200. {
  13201. front: {
  13202. height: math.unit(6, "feet"),
  13203. weight: math.unit(150, "lb"),
  13204. name: "Front",
  13205. image: {
  13206. source: "./media/characters/ilisha-devya/front.svg",
  13207. extra: 1053/1049,
  13208. bottom: 270/1323
  13209. }
  13210. },
  13211. back: {
  13212. height: math.unit(6, "feet"),
  13213. weight: math.unit(150, "lb"),
  13214. name: "Back",
  13215. image: {
  13216. source: "./media/characters/ilisha-devya/back.svg",
  13217. extra: 1131/1128,
  13218. bottom: 39/1170
  13219. }
  13220. },
  13221. },
  13222. [
  13223. {
  13224. name: "Macro",
  13225. height: math.unit(500, "feet"),
  13226. default: true
  13227. },
  13228. {
  13229. name: "Megamacro",
  13230. height: math.unit(10, "miles")
  13231. },
  13232. {
  13233. name: "Gigamacro",
  13234. height: math.unit(100000, "miles")
  13235. },
  13236. {
  13237. name: "Examacro",
  13238. height: math.unit(1e9, "lightyears")
  13239. },
  13240. {
  13241. name: "Omniversal",
  13242. height: math.unit(1e33, "lightyears")
  13243. },
  13244. {
  13245. name: "Beyond Infinite",
  13246. height: math.unit(1e100, "lightyears")
  13247. },
  13248. ]
  13249. ))
  13250. characterMakers.push(() => makeCharacter(
  13251. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13252. {
  13253. Side: {
  13254. height: math.unit(6, "feet"),
  13255. weight: math.unit(150, "lb"),
  13256. name: "Side",
  13257. image: {
  13258. source: "./media/characters/mira/side.svg",
  13259. extra: 900 / 799,
  13260. bottom: 0.02
  13261. }
  13262. },
  13263. },
  13264. [
  13265. {
  13266. name: "Human Size",
  13267. height: math.unit(6, "feet")
  13268. },
  13269. {
  13270. name: "Macro",
  13271. height: math.unit(100, "feet"),
  13272. default: true
  13273. },
  13274. {
  13275. name: "Megamacro",
  13276. height: math.unit(10, "miles")
  13277. },
  13278. {
  13279. name: "Gigamacro",
  13280. height: math.unit(25000, "miles")
  13281. },
  13282. {
  13283. name: "Teramacro",
  13284. height: math.unit(300, "AU")
  13285. },
  13286. {
  13287. name: "Full Size",
  13288. height: math.unit(4.5e10, "lightyears")
  13289. },
  13290. ]
  13291. ))
  13292. characterMakers.push(() => makeCharacter(
  13293. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13294. {
  13295. front: {
  13296. height: math.unit(6, "feet"),
  13297. weight: math.unit(150, "lb"),
  13298. name: "Front",
  13299. image: {
  13300. source: "./media/characters/holly/front.svg",
  13301. extra: 639 / 606
  13302. }
  13303. },
  13304. back: {
  13305. height: math.unit(6, "feet"),
  13306. weight: math.unit(150, "lb"),
  13307. name: "Back",
  13308. image: {
  13309. source: "./media/characters/holly/back.svg",
  13310. extra: 623 / 598
  13311. }
  13312. },
  13313. frontWorking: {
  13314. height: math.unit(6, "feet"),
  13315. weight: math.unit(150, "lb"),
  13316. name: "Front (Working)",
  13317. image: {
  13318. source: "./media/characters/holly/front-working.svg",
  13319. extra: 607 / 577,
  13320. bottom: 0.048
  13321. }
  13322. },
  13323. },
  13324. [
  13325. {
  13326. name: "Normal",
  13327. height: math.unit(12 + 3 / 12, "feet"),
  13328. default: true
  13329. },
  13330. ]
  13331. ))
  13332. characterMakers.push(() => makeCharacter(
  13333. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13334. {
  13335. front: {
  13336. height: math.unit(6, "feet"),
  13337. weight: math.unit(150, "lb"),
  13338. name: "Front",
  13339. image: {
  13340. source: "./media/characters/porter/front.svg",
  13341. extra: 1,
  13342. bottom: 0.01
  13343. }
  13344. },
  13345. frontRobes: {
  13346. height: math.unit(6, "feet"),
  13347. weight: math.unit(150, "lb"),
  13348. name: "Front (Robes)",
  13349. image: {
  13350. source: "./media/characters/porter/front-robes.svg",
  13351. extra: 1.01,
  13352. bottom: 0.01
  13353. }
  13354. },
  13355. },
  13356. [
  13357. {
  13358. name: "Normal",
  13359. height: math.unit(11 + 9 / 12, "feet"),
  13360. default: true
  13361. },
  13362. ]
  13363. ))
  13364. characterMakers.push(() => makeCharacter(
  13365. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13366. {
  13367. legendary: {
  13368. height: math.unit(6, "feet"),
  13369. weight: math.unit(150, "lb"),
  13370. name: "Legendary",
  13371. image: {
  13372. source: "./media/characters/lucy/legendary.svg",
  13373. extra: 1355 / 1100,
  13374. bottom: 0.045
  13375. }
  13376. },
  13377. },
  13378. [
  13379. {
  13380. name: "Legendary",
  13381. height: math.unit(86882 * 2, "miles"),
  13382. default: true
  13383. },
  13384. ]
  13385. ))
  13386. characterMakers.push(() => makeCharacter(
  13387. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13388. {
  13389. front: {
  13390. height: math.unit(6, "feet"),
  13391. weight: math.unit(150, "lb"),
  13392. name: "Front",
  13393. image: {
  13394. source: "./media/characters/drusilla/front.svg",
  13395. extra: 678 / 635,
  13396. bottom: 0.03
  13397. }
  13398. },
  13399. back: {
  13400. height: math.unit(6, "feet"),
  13401. weight: math.unit(150, "lb"),
  13402. name: "Back",
  13403. image: {
  13404. source: "./media/characters/drusilla/back.svg",
  13405. extra: 678 / 635,
  13406. bottom: 0.005
  13407. }
  13408. },
  13409. },
  13410. [
  13411. {
  13412. name: "Macro",
  13413. height: math.unit(100, "feet")
  13414. },
  13415. {
  13416. name: "Canon Height",
  13417. height: math.unit(2000, "feet"),
  13418. default: true
  13419. },
  13420. ]
  13421. ))
  13422. characterMakers.push(() => makeCharacter(
  13423. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13424. {
  13425. front: {
  13426. height: math.unit(6, "feet"),
  13427. weight: math.unit(180, "lb"),
  13428. name: "Front",
  13429. image: {
  13430. source: "./media/characters/renard-thatch/front.svg",
  13431. extra: 2411 / 2275,
  13432. bottom: 0.01
  13433. }
  13434. },
  13435. frontPosing: {
  13436. height: math.unit(6, "feet"),
  13437. weight: math.unit(180, "lb"),
  13438. name: "Front (Posing)",
  13439. image: {
  13440. source: "./media/characters/renard-thatch/front-posing.svg",
  13441. extra: 2381 / 2261,
  13442. bottom: 0.01
  13443. }
  13444. },
  13445. back: {
  13446. height: math.unit(6, "feet"),
  13447. weight: math.unit(180, "lb"),
  13448. name: "Back",
  13449. image: {
  13450. source: "./media/characters/renard-thatch/back.svg",
  13451. extra: 2428 / 2288
  13452. }
  13453. },
  13454. },
  13455. [
  13456. {
  13457. name: "Micro",
  13458. height: math.unit(3, "inches")
  13459. },
  13460. {
  13461. name: "Default",
  13462. height: math.unit(6, "feet"),
  13463. default: true
  13464. },
  13465. {
  13466. name: "Macro",
  13467. height: math.unit(75, "feet")
  13468. },
  13469. ]
  13470. ))
  13471. characterMakers.push(() => makeCharacter(
  13472. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13473. {
  13474. front: {
  13475. height: math.unit(1450, "feet"),
  13476. weight: math.unit(1.21e6, "tons"),
  13477. name: "Front",
  13478. image: {
  13479. source: "./media/characters/sekvra/front.svg",
  13480. extra: 1193/1190,
  13481. bottom: 78/1271
  13482. }
  13483. },
  13484. side: {
  13485. height: math.unit(1450, "feet"),
  13486. weight: math.unit(1.21e6, "tons"),
  13487. name: "Side",
  13488. image: {
  13489. source: "./media/characters/sekvra/side.svg",
  13490. extra: 1193/1190,
  13491. bottom: 52/1245
  13492. }
  13493. },
  13494. back: {
  13495. height: math.unit(1450, "feet"),
  13496. weight: math.unit(1.21e6, "tons"),
  13497. name: "Back",
  13498. image: {
  13499. source: "./media/characters/sekvra/back.svg",
  13500. extra: 1219/1216,
  13501. bottom: 21/1240
  13502. }
  13503. },
  13504. frontClothed: {
  13505. height: math.unit(1450, "feet"),
  13506. weight: math.unit(1.21e6, "tons"),
  13507. name: "Front (Clothed)",
  13508. image: {
  13509. source: "./media/characters/sekvra/front-clothed.svg",
  13510. extra: 1192/1189,
  13511. bottom: 79/1271
  13512. }
  13513. },
  13514. },
  13515. [
  13516. {
  13517. name: "Macro",
  13518. height: math.unit(1450, "feet"),
  13519. default: true
  13520. },
  13521. {
  13522. name: "Megamacro",
  13523. height: math.unit(15000, "feet")
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13529. {
  13530. front: {
  13531. height: math.unit(6, "feet"),
  13532. weight: math.unit(150, "lb"),
  13533. name: "Front",
  13534. image: {
  13535. source: "./media/characters/carmine/front.svg",
  13536. extra: 1,
  13537. bottom: 0.035
  13538. }
  13539. },
  13540. frontArmor: {
  13541. height: math.unit(6, "feet"),
  13542. weight: math.unit(150, "lb"),
  13543. name: "Front (Armor)",
  13544. image: {
  13545. source: "./media/characters/carmine/front-armor.svg",
  13546. extra: 1,
  13547. bottom: 0.035
  13548. }
  13549. },
  13550. },
  13551. [
  13552. {
  13553. name: "Large",
  13554. height: math.unit(1, "mile")
  13555. },
  13556. {
  13557. name: "Huge",
  13558. height: math.unit(40, "miles"),
  13559. default: true
  13560. },
  13561. {
  13562. name: "Colossal",
  13563. height: math.unit(2500, "miles")
  13564. },
  13565. ]
  13566. ))
  13567. characterMakers.push(() => makeCharacter(
  13568. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13569. {
  13570. front: {
  13571. height: math.unit(6, "feet"),
  13572. weight: math.unit(150, "lb"),
  13573. name: "Front",
  13574. image: {
  13575. source: "./media/characters/elyssia/front.svg",
  13576. extra: 2201 / 2035,
  13577. bottom: 0.05
  13578. }
  13579. },
  13580. frontClothed: {
  13581. height: math.unit(6, "feet"),
  13582. weight: math.unit(150, "lb"),
  13583. name: "Front (Clothed)",
  13584. image: {
  13585. source: "./media/characters/elyssia/front-clothed.svg",
  13586. extra: 2201 / 2035,
  13587. bottom: 0.05
  13588. }
  13589. },
  13590. back: {
  13591. height: math.unit(6, "feet"),
  13592. weight: math.unit(150, "lb"),
  13593. name: "Back",
  13594. image: {
  13595. source: "./media/characters/elyssia/back.svg",
  13596. extra: 2201 / 2035,
  13597. bottom: 0.013
  13598. }
  13599. },
  13600. },
  13601. [
  13602. {
  13603. name: "Smaller",
  13604. height: math.unit(150, "feet")
  13605. },
  13606. {
  13607. name: "Standard",
  13608. height: math.unit(1400, "feet"),
  13609. default: true
  13610. },
  13611. {
  13612. name: "Distracted",
  13613. height: math.unit(15000, "feet")
  13614. },
  13615. ]
  13616. ))
  13617. characterMakers.push(() => makeCharacter(
  13618. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13619. {
  13620. front: {
  13621. height: math.unit(7 + 4/12, "feet"),
  13622. weight: math.unit(690, "lb"),
  13623. name: "Front",
  13624. image: {
  13625. source: "./media/characters/geno-maxwell/front.svg",
  13626. extra: 984/856,
  13627. bottom: 87/1071
  13628. }
  13629. },
  13630. back: {
  13631. height: math.unit(7 + 4/12, "feet"),
  13632. weight: math.unit(690, "lb"),
  13633. name: "Back",
  13634. image: {
  13635. source: "./media/characters/geno-maxwell/back.svg",
  13636. extra: 981/854,
  13637. bottom: 57/1038
  13638. }
  13639. },
  13640. frontCostume: {
  13641. height: math.unit(7 + 4/12, "feet"),
  13642. weight: math.unit(690, "lb"),
  13643. name: "Front (Costume)",
  13644. image: {
  13645. source: "./media/characters/geno-maxwell/front-costume.svg",
  13646. extra: 984/856,
  13647. bottom: 87/1071
  13648. }
  13649. },
  13650. backcostume: {
  13651. height: math.unit(7 + 4/12, "feet"),
  13652. weight: math.unit(690, "lb"),
  13653. name: "Back (Costume)",
  13654. image: {
  13655. source: "./media/characters/geno-maxwell/back-costume.svg",
  13656. extra: 981/854,
  13657. bottom: 57/1038
  13658. }
  13659. },
  13660. },
  13661. [
  13662. {
  13663. name: "Micro",
  13664. height: math.unit(3, "inches")
  13665. },
  13666. {
  13667. name: "Normal",
  13668. height: math.unit(7 + 4 / 12, "feet"),
  13669. default: true
  13670. },
  13671. {
  13672. name: "Macro",
  13673. height: math.unit(220, "feet")
  13674. },
  13675. {
  13676. name: "Megamacro",
  13677. height: math.unit(11, "miles")
  13678. },
  13679. ]
  13680. ))
  13681. characterMakers.push(() => makeCharacter(
  13682. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13683. {
  13684. front: {
  13685. height: math.unit(7 + 4/12, "feet"),
  13686. weight: math.unit(750, "lb"),
  13687. name: "Front",
  13688. image: {
  13689. source: "./media/characters/regena-maxwell/front.svg",
  13690. extra: 984/856,
  13691. bottom: 87/1071
  13692. }
  13693. },
  13694. back: {
  13695. height: math.unit(7 + 4/12, "feet"),
  13696. weight: math.unit(750, "lb"),
  13697. name: "Back",
  13698. image: {
  13699. source: "./media/characters/regena-maxwell/back.svg",
  13700. extra: 981/854,
  13701. bottom: 57/1038
  13702. }
  13703. },
  13704. frontCostume: {
  13705. height: math.unit(7 + 4/12, "feet"),
  13706. weight: math.unit(750, "lb"),
  13707. name: "Front (Costume)",
  13708. image: {
  13709. source: "./media/characters/regena-maxwell/front-costume.svg",
  13710. extra: 984/856,
  13711. bottom: 87/1071
  13712. }
  13713. },
  13714. backcostume: {
  13715. height: math.unit(7 + 4/12, "feet"),
  13716. weight: math.unit(750, "lb"),
  13717. name: "Back (Costume)",
  13718. image: {
  13719. source: "./media/characters/regena-maxwell/back-costume.svg",
  13720. extra: 981/854,
  13721. bottom: 57/1038
  13722. }
  13723. },
  13724. },
  13725. [
  13726. {
  13727. name: "Normal",
  13728. height: math.unit(7 + 4 / 12, "feet"),
  13729. default: true
  13730. },
  13731. {
  13732. name: "Macro",
  13733. height: math.unit(220, "feet")
  13734. },
  13735. {
  13736. name: "Megamacro",
  13737. height: math.unit(11, "miles")
  13738. },
  13739. ]
  13740. ))
  13741. characterMakers.push(() => makeCharacter(
  13742. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13743. {
  13744. front: {
  13745. height: math.unit(6, "feet"),
  13746. weight: math.unit(150, "lb"),
  13747. name: "Front",
  13748. image: {
  13749. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13750. extra: 860 / 690,
  13751. bottom: 0.03
  13752. }
  13753. },
  13754. },
  13755. [
  13756. {
  13757. name: "Normal",
  13758. height: math.unit(1.7, "meters"),
  13759. default: true
  13760. },
  13761. ]
  13762. ))
  13763. characterMakers.push(() => makeCharacter(
  13764. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13765. {
  13766. front: {
  13767. height: math.unit(6, "feet"),
  13768. weight: math.unit(150, "lb"),
  13769. name: "Front",
  13770. image: {
  13771. source: "./media/characters/quilly/front.svg",
  13772. extra: 890 / 776
  13773. }
  13774. },
  13775. },
  13776. [
  13777. {
  13778. name: "Gigamacro",
  13779. height: math.unit(404090, "miles"),
  13780. default: true
  13781. },
  13782. ]
  13783. ))
  13784. characterMakers.push(() => makeCharacter(
  13785. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13786. {
  13787. front: {
  13788. height: math.unit(7 + 8 / 12, "feet"),
  13789. weight: math.unit(350, "lb"),
  13790. name: "Front",
  13791. image: {
  13792. source: "./media/characters/tempest/front.svg",
  13793. extra: 1175 / 1086,
  13794. bottom: 0.02
  13795. }
  13796. },
  13797. },
  13798. [
  13799. {
  13800. name: "Normal",
  13801. height: math.unit(7 + 8 / 12, "feet"),
  13802. default: true
  13803. },
  13804. ]
  13805. ))
  13806. characterMakers.push(() => makeCharacter(
  13807. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13808. {
  13809. side: {
  13810. height: math.unit(4 + 5 / 12, "feet"),
  13811. weight: math.unit(80, "lb"),
  13812. name: "Side",
  13813. image: {
  13814. source: "./media/characters/rodger/side.svg",
  13815. extra: 1235 / 1118
  13816. }
  13817. },
  13818. },
  13819. [
  13820. {
  13821. name: "Micro",
  13822. height: math.unit(1, "inch")
  13823. },
  13824. {
  13825. name: "Normal",
  13826. height: math.unit(4 + 5 / 12, "feet"),
  13827. default: true
  13828. },
  13829. {
  13830. name: "Macro",
  13831. height: math.unit(120, "feet")
  13832. },
  13833. ]
  13834. ))
  13835. characterMakers.push(() => makeCharacter(
  13836. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13837. {
  13838. front: {
  13839. height: math.unit(6, "feet"),
  13840. weight: math.unit(150, "lb"),
  13841. name: "Front",
  13842. image: {
  13843. source: "./media/characters/danyel/front.svg",
  13844. extra: 1185 / 1123,
  13845. bottom: 0.05
  13846. }
  13847. },
  13848. },
  13849. [
  13850. {
  13851. name: "Shrunken",
  13852. height: math.unit(0.5, "mm")
  13853. },
  13854. {
  13855. name: "Micro",
  13856. height: math.unit(1, "mm"),
  13857. default: true
  13858. },
  13859. {
  13860. name: "Upsized",
  13861. height: math.unit(5 + 5 / 12, "feet")
  13862. },
  13863. ]
  13864. ))
  13865. characterMakers.push(() => makeCharacter(
  13866. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13867. {
  13868. front: {
  13869. height: math.unit(5 + 6 / 12, "feet"),
  13870. weight: math.unit(200, "lb"),
  13871. name: "Front",
  13872. image: {
  13873. source: "./media/characters/vivian-bijoux/front.svg",
  13874. extra: 1217/1209,
  13875. bottom: 76/1293
  13876. }
  13877. },
  13878. back: {
  13879. height: math.unit(5 + 6 / 12, "feet"),
  13880. weight: math.unit(200, "lb"),
  13881. name: "Back",
  13882. image: {
  13883. source: "./media/characters/vivian-bijoux/back.svg",
  13884. extra: 1214/1208,
  13885. bottom: 51/1265
  13886. }
  13887. },
  13888. dressed: {
  13889. height: math.unit(5 + 6 / 12, "feet"),
  13890. weight: math.unit(200, "lb"),
  13891. name: "Dressed",
  13892. image: {
  13893. source: "./media/characters/vivian-bijoux/dressed.svg",
  13894. extra: 1217/1209,
  13895. bottom: 76/1293
  13896. }
  13897. },
  13898. },
  13899. [
  13900. {
  13901. name: "Normal",
  13902. height: math.unit(5 + 6 / 12, "feet"),
  13903. default: true
  13904. },
  13905. {
  13906. name: "Bad Dream",
  13907. height: math.unit(500, "feet")
  13908. },
  13909. {
  13910. name: "Nightmare",
  13911. height: math.unit(500, "miles")
  13912. },
  13913. ]
  13914. ))
  13915. characterMakers.push(() => makeCharacter(
  13916. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13917. {
  13918. front: {
  13919. height: math.unit(6 + 1 / 12, "feet"),
  13920. weight: math.unit(260, "lb"),
  13921. name: "Front",
  13922. image: {
  13923. source: "./media/characters/zeta/front.svg",
  13924. extra: 1968 / 1889,
  13925. bottom: 0.06
  13926. }
  13927. },
  13928. back: {
  13929. height: math.unit(6 + 1 / 12, "feet"),
  13930. weight: math.unit(260, "lb"),
  13931. name: "Back",
  13932. image: {
  13933. source: "./media/characters/zeta/back.svg",
  13934. extra: 1944 / 1858,
  13935. bottom: 0.03
  13936. }
  13937. },
  13938. hand: {
  13939. height: math.unit(1.112, "feet"),
  13940. name: "Hand",
  13941. image: {
  13942. source: "./media/characters/zeta/hand.svg"
  13943. }
  13944. },
  13945. foot: {
  13946. height: math.unit(1.48, "feet"),
  13947. name: "Foot",
  13948. image: {
  13949. source: "./media/characters/zeta/foot.svg"
  13950. }
  13951. },
  13952. },
  13953. [
  13954. {
  13955. name: "Micro",
  13956. height: math.unit(6, "inches")
  13957. },
  13958. {
  13959. name: "Normal",
  13960. height: math.unit(6 + 1 / 12, "feet"),
  13961. default: true
  13962. },
  13963. {
  13964. name: "Macro",
  13965. height: math.unit(20, "feet")
  13966. },
  13967. ]
  13968. ))
  13969. characterMakers.push(() => makeCharacter(
  13970. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13971. {
  13972. front: {
  13973. height: math.unit(6, "feet"),
  13974. weight: math.unit(150, "lb"),
  13975. name: "Front",
  13976. image: {
  13977. source: "./media/characters/jamie-larsen/front.svg",
  13978. extra: 962 / 933,
  13979. bottom: 0.02
  13980. }
  13981. },
  13982. back: {
  13983. height: math.unit(6, "feet"),
  13984. weight: math.unit(150, "lb"),
  13985. name: "Back",
  13986. image: {
  13987. source: "./media/characters/jamie-larsen/back.svg",
  13988. extra: 997 / 946
  13989. }
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Macro",
  13995. height: math.unit(28 + 7 / 12, "feet"),
  13996. default: true
  13997. },
  13998. {
  13999. name: "Macro+",
  14000. height: math.unit(180, "feet")
  14001. },
  14002. {
  14003. name: "Megamacro",
  14004. height: math.unit(10, "miles")
  14005. },
  14006. {
  14007. name: "Gigamacro",
  14008. height: math.unit(200000, "miles")
  14009. },
  14010. ]
  14011. ))
  14012. characterMakers.push(() => makeCharacter(
  14013. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14014. {
  14015. front: {
  14016. height: math.unit(6, "feet"),
  14017. weight: math.unit(120, "lb"),
  14018. name: "Front",
  14019. image: {
  14020. source: "./media/characters/vance/front.svg",
  14021. extra: 1980 / 1890,
  14022. bottom: 0.09
  14023. }
  14024. },
  14025. back: {
  14026. height: math.unit(6, "feet"),
  14027. weight: math.unit(120, "lb"),
  14028. name: "Back",
  14029. image: {
  14030. source: "./media/characters/vance/back.svg",
  14031. extra: 2081 / 1994,
  14032. bottom: 0.014
  14033. }
  14034. },
  14035. hand: {
  14036. height: math.unit(0.88, "feet"),
  14037. name: "Hand",
  14038. image: {
  14039. source: "./media/characters/vance/hand.svg"
  14040. }
  14041. },
  14042. foot: {
  14043. height: math.unit(0.64, "feet"),
  14044. name: "Foot",
  14045. image: {
  14046. source: "./media/characters/vance/foot.svg"
  14047. }
  14048. },
  14049. },
  14050. [
  14051. {
  14052. name: "Small",
  14053. height: math.unit(90, "feet"),
  14054. default: true
  14055. },
  14056. {
  14057. name: "Macro",
  14058. height: math.unit(100, "meters")
  14059. },
  14060. {
  14061. name: "Megamacro",
  14062. height: math.unit(15, "miles")
  14063. },
  14064. ]
  14065. ))
  14066. characterMakers.push(() => makeCharacter(
  14067. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14068. {
  14069. front: {
  14070. height: math.unit(6, "feet"),
  14071. weight: math.unit(180, "lb"),
  14072. name: "Front",
  14073. image: {
  14074. source: "./media/characters/xochitl/front.svg",
  14075. extra: 2297 / 2261,
  14076. bottom: 0.065
  14077. }
  14078. },
  14079. back: {
  14080. height: math.unit(6, "feet"),
  14081. weight: math.unit(180, "lb"),
  14082. name: "Back",
  14083. image: {
  14084. source: "./media/characters/xochitl/back.svg",
  14085. extra: 2386 / 2354,
  14086. bottom: 0.01
  14087. }
  14088. },
  14089. foot: {
  14090. height: math.unit(6 / 5 * 1.15, "feet"),
  14091. weight: math.unit(150, "lb"),
  14092. name: "Foot",
  14093. image: {
  14094. source: "./media/characters/xochitl/foot.svg"
  14095. }
  14096. },
  14097. },
  14098. [
  14099. {
  14100. name: "Macro",
  14101. height: math.unit(80, "feet")
  14102. },
  14103. {
  14104. name: "Macro+",
  14105. height: math.unit(400, "feet"),
  14106. default: true
  14107. },
  14108. {
  14109. name: "Gigamacro",
  14110. height: math.unit(80000, "miles")
  14111. },
  14112. {
  14113. name: "Gigamacro+",
  14114. height: math.unit(400000, "miles")
  14115. },
  14116. {
  14117. name: "Teramacro",
  14118. height: math.unit(300, "AU")
  14119. },
  14120. ]
  14121. ))
  14122. characterMakers.push(() => makeCharacter(
  14123. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14124. {
  14125. front: {
  14126. height: math.unit(6, "feet"),
  14127. weight: math.unit(150, "lb"),
  14128. name: "Front",
  14129. image: {
  14130. source: "./media/characters/vincent/front.svg",
  14131. extra: 1130 / 1080,
  14132. bottom: 0.055
  14133. }
  14134. },
  14135. beak: {
  14136. height: math.unit(6 * 0.1, "feet"),
  14137. name: "Beak",
  14138. image: {
  14139. source: "./media/characters/vincent/beak.svg"
  14140. }
  14141. },
  14142. hand: {
  14143. height: math.unit(6 * 0.85, "feet"),
  14144. weight: math.unit(150, "lb"),
  14145. name: "Hand",
  14146. image: {
  14147. source: "./media/characters/vincent/hand.svg"
  14148. }
  14149. },
  14150. foot: {
  14151. height: math.unit(6 * 0.19, "feet"),
  14152. weight: math.unit(150, "lb"),
  14153. name: "Foot",
  14154. image: {
  14155. source: "./media/characters/vincent/foot.svg"
  14156. }
  14157. },
  14158. },
  14159. [
  14160. {
  14161. name: "Base",
  14162. height: math.unit(6 + 5 / 12, "feet"),
  14163. default: true
  14164. },
  14165. {
  14166. name: "Macro",
  14167. height: math.unit(300, "feet")
  14168. },
  14169. {
  14170. name: "Megamacro",
  14171. height: math.unit(2, "miles")
  14172. },
  14173. {
  14174. name: "Gigamacro",
  14175. height: math.unit(1000, "miles")
  14176. },
  14177. ]
  14178. ))
  14179. characterMakers.push(() => makeCharacter(
  14180. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14181. {
  14182. front: {
  14183. height: math.unit(2, "meters"),
  14184. weight: math.unit(500, "kg"),
  14185. name: "Front",
  14186. image: {
  14187. source: "./media/characters/coatl/front.svg",
  14188. extra: 3948 / 3500,
  14189. bottom: 0.082
  14190. }
  14191. },
  14192. },
  14193. [
  14194. {
  14195. name: "Normal",
  14196. height: math.unit(4, "meters")
  14197. },
  14198. {
  14199. name: "Macro",
  14200. height: math.unit(100, "meters"),
  14201. default: true
  14202. },
  14203. {
  14204. name: "Macro+",
  14205. height: math.unit(300, "meters")
  14206. },
  14207. {
  14208. name: "Megamacro",
  14209. height: math.unit(3, "gigameters")
  14210. },
  14211. {
  14212. name: "Megamacro+",
  14213. height: math.unit(300, "terameters")
  14214. },
  14215. {
  14216. name: "Megamacro++",
  14217. height: math.unit(3, "lightyears")
  14218. },
  14219. ]
  14220. ))
  14221. characterMakers.push(() => makeCharacter(
  14222. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14223. {
  14224. front: {
  14225. height: math.unit(6, "feet"),
  14226. weight: math.unit(50, "kg"),
  14227. name: "front",
  14228. image: {
  14229. source: "./media/characters/shiroryu/front.svg",
  14230. extra: 1990 / 1935
  14231. }
  14232. },
  14233. },
  14234. [
  14235. {
  14236. name: "Mortal Mingling",
  14237. height: math.unit(3, "meters")
  14238. },
  14239. {
  14240. name: "Kaiju-ish",
  14241. height: math.unit(250, "meters")
  14242. },
  14243. {
  14244. name: "Somewhat Godly",
  14245. height: math.unit(400, "km"),
  14246. default: true
  14247. },
  14248. {
  14249. name: "Planetary",
  14250. height: math.unit(300, "megameters")
  14251. },
  14252. {
  14253. name: "Galaxy-dwarfing",
  14254. height: math.unit(450, "kiloparsecs")
  14255. },
  14256. {
  14257. name: "Universe Eater",
  14258. height: math.unit(150, "gigaparsecs")
  14259. },
  14260. {
  14261. name: "Almost Immeasurable",
  14262. height: math.unit(1.3e266, "yottaparsecs")
  14263. },
  14264. ]
  14265. ))
  14266. characterMakers.push(() => makeCharacter(
  14267. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14268. {
  14269. front: {
  14270. height: math.unit(6, "feet"),
  14271. weight: math.unit(150, "lb"),
  14272. name: "Front",
  14273. image: {
  14274. source: "./media/characters/umeko/front.svg",
  14275. extra: 1,
  14276. bottom: 0.019
  14277. }
  14278. },
  14279. frontArmored: {
  14280. height: math.unit(6, "feet"),
  14281. weight: math.unit(150, "lb"),
  14282. name: "Front (Armored)",
  14283. image: {
  14284. source: "./media/characters/umeko/front-armored.svg",
  14285. extra: 1,
  14286. bottom: 0.021
  14287. }
  14288. },
  14289. },
  14290. [
  14291. {
  14292. name: "Macro",
  14293. height: math.unit(220, "feet"),
  14294. default: true
  14295. },
  14296. {
  14297. name: "Guardian Dragon",
  14298. height: math.unit(50, "miles")
  14299. },
  14300. {
  14301. name: "Cosmic",
  14302. height: math.unit(800000, "miles")
  14303. },
  14304. ]
  14305. ))
  14306. characterMakers.push(() => makeCharacter(
  14307. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14308. {
  14309. front: {
  14310. height: math.unit(6, "feet"),
  14311. weight: math.unit(150, "lb"),
  14312. name: "Front",
  14313. image: {
  14314. source: "./media/characters/cassidy/front.svg",
  14315. extra: 810/808,
  14316. bottom: 41/851
  14317. }
  14318. },
  14319. },
  14320. [
  14321. {
  14322. name: "Canon Height",
  14323. height: math.unit(120, "feet"),
  14324. default: true
  14325. },
  14326. {
  14327. name: "Macro+",
  14328. height: math.unit(400, "feet")
  14329. },
  14330. {
  14331. name: "Macro++",
  14332. height: math.unit(4000, "feet")
  14333. },
  14334. {
  14335. name: "Megamacro",
  14336. height: math.unit(3, "miles")
  14337. },
  14338. ]
  14339. ))
  14340. characterMakers.push(() => makeCharacter(
  14341. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14342. {
  14343. front: {
  14344. height: math.unit(6, "feet"),
  14345. weight: math.unit(150, "lb"),
  14346. name: "Front",
  14347. image: {
  14348. source: "./media/characters/isaac/front.svg",
  14349. extra: 896 / 815,
  14350. bottom: 0.11
  14351. }
  14352. },
  14353. },
  14354. [
  14355. {
  14356. name: "Human Size",
  14357. height: math.unit(8, "feet"),
  14358. default: true
  14359. },
  14360. {
  14361. name: "Macro",
  14362. height: math.unit(400, "feet")
  14363. },
  14364. {
  14365. name: "Megamacro",
  14366. height: math.unit(50, "miles")
  14367. },
  14368. {
  14369. name: "Canon Height",
  14370. height: math.unit(200, "AU")
  14371. },
  14372. ]
  14373. ))
  14374. characterMakers.push(() => makeCharacter(
  14375. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14376. {
  14377. front: {
  14378. height: math.unit(6, "feet"),
  14379. weight: math.unit(72, "kg"),
  14380. name: "Front",
  14381. image: {
  14382. source: "./media/characters/sleekit/front.svg",
  14383. extra: 4693 / 4487,
  14384. bottom: 0.012
  14385. }
  14386. },
  14387. },
  14388. [
  14389. {
  14390. name: "Minimum Height",
  14391. height: math.unit(10, "meters")
  14392. },
  14393. {
  14394. name: "Smaller",
  14395. height: math.unit(25, "meters")
  14396. },
  14397. {
  14398. name: "Larger",
  14399. height: math.unit(38, "meters"),
  14400. default: true
  14401. },
  14402. {
  14403. name: "Maximum height",
  14404. height: math.unit(100, "meters")
  14405. },
  14406. ]
  14407. ))
  14408. characterMakers.push(() => makeCharacter(
  14409. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14410. {
  14411. front: {
  14412. height: math.unit(6, "feet"),
  14413. weight: math.unit(150, "lb"),
  14414. name: "Front",
  14415. image: {
  14416. source: "./media/characters/nillia/front.svg",
  14417. extra: 2195 / 2037,
  14418. bottom: 0.005
  14419. }
  14420. },
  14421. back: {
  14422. height: math.unit(6, "feet"),
  14423. weight: math.unit(150, "lb"),
  14424. name: "Back",
  14425. image: {
  14426. source: "./media/characters/nillia/back.svg",
  14427. extra: 2195 / 2037,
  14428. bottom: 0.005
  14429. }
  14430. },
  14431. },
  14432. [
  14433. {
  14434. name: "Canon Height",
  14435. height: math.unit(489, "feet"),
  14436. default: true
  14437. }
  14438. ]
  14439. ))
  14440. characterMakers.push(() => makeCharacter(
  14441. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14442. {
  14443. front: {
  14444. height: math.unit(6, "feet"),
  14445. weight: math.unit(150, "lb"),
  14446. name: "Front",
  14447. image: {
  14448. source: "./media/characters/mesmyriza/front.svg",
  14449. extra: 2067 / 1784,
  14450. bottom: 0.035
  14451. }
  14452. },
  14453. foot: {
  14454. height: math.unit(6 / (250 / 35), "feet"),
  14455. name: "Foot",
  14456. image: {
  14457. source: "./media/characters/mesmyriza/foot.svg"
  14458. }
  14459. },
  14460. },
  14461. [
  14462. {
  14463. name: "Macro",
  14464. height: math.unit(457, "meters"),
  14465. default: true
  14466. },
  14467. {
  14468. name: "Megamacro",
  14469. height: math.unit(8, "megameters")
  14470. },
  14471. ]
  14472. ))
  14473. characterMakers.push(() => makeCharacter(
  14474. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14475. {
  14476. front: {
  14477. height: math.unit(6, "feet"),
  14478. weight: math.unit(250, "lb"),
  14479. name: "Front",
  14480. image: {
  14481. source: "./media/characters/saudade/front.svg",
  14482. extra: 1172 / 1139,
  14483. bottom: 0.035
  14484. }
  14485. },
  14486. },
  14487. [
  14488. {
  14489. name: "Micro",
  14490. height: math.unit(3, "inches")
  14491. },
  14492. {
  14493. name: "Normal",
  14494. height: math.unit(6, "feet"),
  14495. default: true
  14496. },
  14497. {
  14498. name: "Macro",
  14499. height: math.unit(50, "feet")
  14500. },
  14501. {
  14502. name: "Megamacro",
  14503. height: math.unit(2800, "feet")
  14504. },
  14505. ]
  14506. ))
  14507. characterMakers.push(() => makeCharacter(
  14508. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14509. {
  14510. front: {
  14511. height: math.unit(5 + 4 / 12, "feet"),
  14512. weight: math.unit(100, "lb"),
  14513. name: "Front",
  14514. image: {
  14515. source: "./media/characters/keireer/front.svg",
  14516. extra: 716 / 666,
  14517. bottom: 0.05
  14518. }
  14519. },
  14520. },
  14521. [
  14522. {
  14523. name: "Normal",
  14524. height: math.unit(5 + 4 / 12, "feet"),
  14525. default: true
  14526. },
  14527. ]
  14528. ))
  14529. characterMakers.push(() => makeCharacter(
  14530. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14531. {
  14532. front: {
  14533. height: math.unit(6, "feet"),
  14534. weight: math.unit(90, "kg"),
  14535. name: "Front",
  14536. image: {
  14537. source: "./media/characters/mirja/front.svg",
  14538. extra: 1789 / 1683,
  14539. bottom: 0.05
  14540. }
  14541. },
  14542. frontDressed: {
  14543. height: math.unit(6, "feet"),
  14544. weight: math.unit(90, "lb"),
  14545. name: "Front (Dressed)",
  14546. image: {
  14547. source: "./media/characters/mirja/front-dressed.svg",
  14548. extra: 1789 / 1683,
  14549. bottom: 0.05
  14550. }
  14551. },
  14552. back: {
  14553. height: math.unit(6, "feet"),
  14554. weight: math.unit(90, "lb"),
  14555. name: "Back",
  14556. image: {
  14557. source: "./media/characters/mirja/back.svg",
  14558. extra: 953 / 917,
  14559. bottom: 0.017
  14560. }
  14561. },
  14562. },
  14563. [
  14564. {
  14565. name: "\"Incognito\"",
  14566. height: math.unit(3, "meters")
  14567. },
  14568. {
  14569. name: "Strolling Size",
  14570. height: math.unit(15, "km")
  14571. },
  14572. {
  14573. name: "Larger Strolling Size",
  14574. height: math.unit(400, "km")
  14575. },
  14576. {
  14577. name: "Preferred Size",
  14578. height: math.unit(5000, "km")
  14579. },
  14580. {
  14581. name: "True Size",
  14582. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14583. default: true
  14584. },
  14585. ]
  14586. ))
  14587. characterMakers.push(() => makeCharacter(
  14588. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14589. {
  14590. front: {
  14591. height: math.unit(15, "feet"),
  14592. weight: math.unit(880, "kg"),
  14593. name: "Front",
  14594. image: {
  14595. source: "./media/characters/nightraver/front.svg",
  14596. extra: 2444 / 2160,
  14597. bottom: 0.027
  14598. }
  14599. },
  14600. back: {
  14601. height: math.unit(15, "feet"),
  14602. weight: math.unit(880, "kg"),
  14603. name: "Back",
  14604. image: {
  14605. source: "./media/characters/nightraver/back.svg",
  14606. extra: 2309 / 2180,
  14607. bottom: 0.005
  14608. }
  14609. },
  14610. sole: {
  14611. height: math.unit(2.878, "feet"),
  14612. name: "Sole",
  14613. image: {
  14614. source: "./media/characters/nightraver/sole.svg"
  14615. }
  14616. },
  14617. foot: {
  14618. height: math.unit(2.285, "feet"),
  14619. name: "Foot",
  14620. image: {
  14621. source: "./media/characters/nightraver/foot.svg"
  14622. }
  14623. },
  14624. maw: {
  14625. height: math.unit(2.67, "feet"),
  14626. name: "Maw",
  14627. image: {
  14628. source: "./media/characters/nightraver/maw.svg"
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Micro",
  14635. height: math.unit(1, "cm")
  14636. },
  14637. {
  14638. name: "Normal",
  14639. height: math.unit(15, "feet"),
  14640. default: true
  14641. },
  14642. {
  14643. name: "Macro",
  14644. height: math.unit(300, "feet")
  14645. },
  14646. {
  14647. name: "Megamacro",
  14648. height: math.unit(300, "miles")
  14649. },
  14650. {
  14651. name: "Gigamacro",
  14652. height: math.unit(10000, "miles")
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14658. {
  14659. side: {
  14660. height: math.unit(2, "inches"),
  14661. weight: math.unit(5, "grams"),
  14662. name: "Side",
  14663. image: {
  14664. source: "./media/characters/arc/side.svg"
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Micro",
  14671. height: math.unit(2, "inches"),
  14672. default: true
  14673. },
  14674. ]
  14675. ))
  14676. characterMakers.push(() => makeCharacter(
  14677. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14678. {
  14679. front: {
  14680. height: math.unit(1.1938, "meters"),
  14681. weight: math.unit(54, "kg"),
  14682. name: "Front",
  14683. image: {
  14684. source: "./media/characters/nebula-shahar/front.svg",
  14685. extra: 1642 / 1436,
  14686. bottom: 0.06
  14687. }
  14688. },
  14689. },
  14690. [
  14691. {
  14692. name: "Megamicro",
  14693. height: math.unit(0.3, "mm")
  14694. },
  14695. {
  14696. name: "Micro",
  14697. height: math.unit(3, "cm")
  14698. },
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(138, "cm"),
  14702. default: true
  14703. },
  14704. {
  14705. name: "Macro",
  14706. height: math.unit(30, "m")
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14712. {
  14713. front: {
  14714. height: math.unit(5.24, "feet"),
  14715. weight: math.unit(150, "lb"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/shayla/front.svg",
  14719. extra: 1512 / 1414,
  14720. bottom: 0.01
  14721. }
  14722. },
  14723. back: {
  14724. height: math.unit(5.24, "feet"),
  14725. weight: math.unit(150, "lb"),
  14726. name: "Back",
  14727. image: {
  14728. source: "./media/characters/shayla/back.svg",
  14729. extra: 1512 / 1414
  14730. }
  14731. },
  14732. hand: {
  14733. height: math.unit(0.7781496062992126, "feet"),
  14734. name: "Hand",
  14735. image: {
  14736. source: "./media/characters/shayla/hand.svg"
  14737. }
  14738. },
  14739. foot: {
  14740. height: math.unit(1.4206036745406823, "feet"),
  14741. name: "Foot",
  14742. image: {
  14743. source: "./media/characters/shayla/foot.svg"
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Micro",
  14750. height: math.unit(0.32, "feet")
  14751. },
  14752. {
  14753. name: "Normal",
  14754. height: math.unit(5.24, "feet"),
  14755. default: true
  14756. },
  14757. {
  14758. name: "Macro",
  14759. height: math.unit(492.12, "feet")
  14760. },
  14761. {
  14762. name: "Megamacro",
  14763. height: math.unit(186.41, "miles")
  14764. },
  14765. ]
  14766. ))
  14767. characterMakers.push(() => makeCharacter(
  14768. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14769. {
  14770. front: {
  14771. height: math.unit(2.2, "m"),
  14772. weight: math.unit(120, "kg"),
  14773. name: "Front",
  14774. image: {
  14775. source: "./media/characters/pia-jr/front.svg",
  14776. extra: 1000 / 970,
  14777. bottom: 0.035
  14778. }
  14779. },
  14780. hand: {
  14781. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14782. name: "Hand",
  14783. image: {
  14784. source: "./media/characters/pia-jr/hand.svg"
  14785. }
  14786. },
  14787. paw: {
  14788. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14789. name: "Paw",
  14790. image: {
  14791. source: "./media/characters/pia-jr/paw.svg"
  14792. }
  14793. },
  14794. },
  14795. [
  14796. {
  14797. name: "Micro",
  14798. height: math.unit(1.2, "cm")
  14799. },
  14800. {
  14801. name: "Normal",
  14802. height: math.unit(2.2, "m"),
  14803. default: true
  14804. },
  14805. {
  14806. name: "Macro",
  14807. height: math.unit(180, "m")
  14808. },
  14809. {
  14810. name: "Megamacro",
  14811. height: math.unit(420, "km")
  14812. },
  14813. ]
  14814. ))
  14815. characterMakers.push(() => makeCharacter(
  14816. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14817. {
  14818. front: {
  14819. height: math.unit(2, "m"),
  14820. weight: math.unit(115, "kg"),
  14821. name: "Front",
  14822. image: {
  14823. source: "./media/characters/pia-sr/front.svg",
  14824. extra: 760 / 730,
  14825. bottom: 0.015
  14826. }
  14827. },
  14828. back: {
  14829. height: math.unit(2, "m"),
  14830. weight: math.unit(115, "kg"),
  14831. name: "Back",
  14832. image: {
  14833. source: "./media/characters/pia-sr/back.svg",
  14834. extra: 760 / 730,
  14835. bottom: 0.01
  14836. }
  14837. },
  14838. hand: {
  14839. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14840. name: "Hand",
  14841. image: {
  14842. source: "./media/characters/pia-sr/hand.svg"
  14843. }
  14844. },
  14845. foot: {
  14846. height: math.unit(1.83, "feet"),
  14847. name: "Foot",
  14848. image: {
  14849. source: "./media/characters/pia-sr/foot.svg"
  14850. }
  14851. },
  14852. },
  14853. [
  14854. {
  14855. name: "Micro",
  14856. height: math.unit(88, "mm")
  14857. },
  14858. {
  14859. name: "Normal",
  14860. height: math.unit(2, "m"),
  14861. default: true
  14862. },
  14863. {
  14864. name: "Macro",
  14865. height: math.unit(200, "m")
  14866. },
  14867. {
  14868. name: "Megamacro",
  14869. height: math.unit(420, "km")
  14870. },
  14871. ]
  14872. ))
  14873. characterMakers.push(() => makeCharacter(
  14874. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14875. {
  14876. front: {
  14877. height: math.unit(8 + 2 / 12, "feet"),
  14878. weight: math.unit(300, "lb"),
  14879. name: "Front",
  14880. image: {
  14881. source: "./media/characters/kibibyte/front.svg",
  14882. extra: 2221 / 2098,
  14883. bottom: 0.04
  14884. }
  14885. },
  14886. },
  14887. [
  14888. {
  14889. name: "Normal",
  14890. height: math.unit(8 + 2 / 12, "feet"),
  14891. default: true
  14892. },
  14893. {
  14894. name: "Socialable Macro",
  14895. height: math.unit(50, "feet")
  14896. },
  14897. {
  14898. name: "Macro",
  14899. height: math.unit(300, "feet")
  14900. },
  14901. {
  14902. name: "Megamacro",
  14903. height: math.unit(500, "miles")
  14904. },
  14905. ]
  14906. ))
  14907. characterMakers.push(() => makeCharacter(
  14908. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14909. {
  14910. front: {
  14911. height: math.unit(6, "feet"),
  14912. weight: math.unit(150, "lb"),
  14913. name: "Front",
  14914. image: {
  14915. source: "./media/characters/felix/front.svg",
  14916. extra: 762 / 722,
  14917. bottom: 0.02
  14918. }
  14919. },
  14920. frontClothed: {
  14921. height: math.unit(6, "feet"),
  14922. weight: math.unit(150, "lb"),
  14923. name: "Front (Clothed)",
  14924. image: {
  14925. source: "./media/characters/felix/front-clothed.svg",
  14926. extra: 762 / 722,
  14927. bottom: 0.02
  14928. }
  14929. },
  14930. },
  14931. [
  14932. {
  14933. name: "Normal",
  14934. height: math.unit(6 + 8 / 12, "feet"),
  14935. default: true
  14936. },
  14937. {
  14938. name: "Macro",
  14939. height: math.unit(2600, "feet")
  14940. },
  14941. {
  14942. name: "Megamacro",
  14943. height: math.unit(450, "miles")
  14944. },
  14945. ]
  14946. ))
  14947. characterMakers.push(() => makeCharacter(
  14948. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14949. {
  14950. front: {
  14951. height: math.unit(6 + 1 / 12, "feet"),
  14952. weight: math.unit(250, "lb"),
  14953. name: "Front",
  14954. image: {
  14955. source: "./media/characters/tobo/front.svg",
  14956. extra: 608 / 586,
  14957. bottom: 0.023
  14958. }
  14959. },
  14960. back: {
  14961. height: math.unit(6 + 1 / 12, "feet"),
  14962. weight: math.unit(250, "lb"),
  14963. name: "Back",
  14964. image: {
  14965. source: "./media/characters/tobo/back.svg",
  14966. extra: 608 / 586
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Nano",
  14973. height: math.unit(2, "nm")
  14974. },
  14975. {
  14976. name: "Megamicro",
  14977. height: math.unit(0.1, "mm")
  14978. },
  14979. {
  14980. name: "Micro",
  14981. height: math.unit(1, "inch"),
  14982. default: true
  14983. },
  14984. {
  14985. name: "Human-sized",
  14986. height: math.unit(6 + 1 / 12, "feet")
  14987. },
  14988. {
  14989. name: "Macro",
  14990. height: math.unit(250, "feet")
  14991. },
  14992. {
  14993. name: "Megamacro",
  14994. height: math.unit(75, "miles")
  14995. },
  14996. {
  14997. name: "Texas-sized",
  14998. height: math.unit(750, "miles")
  14999. },
  15000. {
  15001. name: "Teramacro",
  15002. height: math.unit(50000, "miles")
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15008. {
  15009. front: {
  15010. height: math.unit(6, "feet"),
  15011. weight: math.unit(269, "lb"),
  15012. name: "Front",
  15013. image: {
  15014. source: "./media/characters/danny-kapowsky/front.svg",
  15015. extra: 766 / 736,
  15016. bottom: 0.044
  15017. }
  15018. },
  15019. back: {
  15020. height: math.unit(6, "feet"),
  15021. weight: math.unit(269, "lb"),
  15022. name: "Back",
  15023. image: {
  15024. source: "./media/characters/danny-kapowsky/back.svg",
  15025. extra: 797 / 760,
  15026. bottom: 0.025
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Macro",
  15033. height: math.unit(150, "feet"),
  15034. default: true
  15035. },
  15036. {
  15037. name: "Macro+",
  15038. height: math.unit(200, "feet")
  15039. },
  15040. {
  15041. name: "Macro++",
  15042. height: math.unit(300, "feet")
  15043. },
  15044. {
  15045. name: "Macro+++",
  15046. height: math.unit(400, "feet")
  15047. },
  15048. ]
  15049. ))
  15050. characterMakers.push(() => makeCharacter(
  15051. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15052. {
  15053. side: {
  15054. height: math.unit(6, "feet"),
  15055. weight: math.unit(170, "lb"),
  15056. name: "Side",
  15057. image: {
  15058. source: "./media/characters/finn/side.svg",
  15059. extra: 1953 / 1807,
  15060. bottom: 0.057
  15061. }
  15062. },
  15063. },
  15064. [
  15065. {
  15066. name: "Megamacro",
  15067. height: math.unit(14445, "feet"),
  15068. default: true
  15069. },
  15070. ]
  15071. ))
  15072. characterMakers.push(() => makeCharacter(
  15073. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15074. {
  15075. front: {
  15076. height: math.unit(5 + 6 / 12, "feet"),
  15077. weight: math.unit(125, "lb"),
  15078. name: "Front",
  15079. image: {
  15080. source: "./media/characters/roy/front.svg",
  15081. extra: 1,
  15082. bottom: 0.11
  15083. }
  15084. },
  15085. },
  15086. [
  15087. {
  15088. name: "Micro",
  15089. height: math.unit(3, "inches"),
  15090. default: true
  15091. },
  15092. {
  15093. name: "Normal",
  15094. height: math.unit(5 + 6 / 12, "feet")
  15095. },
  15096. {
  15097. name: "Lesser Macro",
  15098. height: math.unit(60, "feet")
  15099. },
  15100. {
  15101. name: "Greater Macro",
  15102. height: math.unit(120, "feet")
  15103. },
  15104. ]
  15105. ))
  15106. characterMakers.push(() => makeCharacter(
  15107. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15108. {
  15109. front: {
  15110. height: math.unit(6, "feet"),
  15111. weight: math.unit(100, "lb"),
  15112. name: "Front",
  15113. image: {
  15114. source: "./media/characters/aevsivs/front.svg",
  15115. extra: 1,
  15116. bottom: 0.03
  15117. }
  15118. },
  15119. back: {
  15120. height: math.unit(6, "feet"),
  15121. weight: math.unit(100, "lb"),
  15122. name: "Back",
  15123. image: {
  15124. source: "./media/characters/aevsivs/back.svg"
  15125. }
  15126. },
  15127. },
  15128. [
  15129. {
  15130. name: "Micro",
  15131. height: math.unit(2, "inches"),
  15132. default: true
  15133. },
  15134. {
  15135. name: "Normal",
  15136. height: math.unit(5, "feet")
  15137. },
  15138. ]
  15139. ))
  15140. characterMakers.push(() => makeCharacter(
  15141. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15142. {
  15143. front: {
  15144. height: math.unit(5 + 7 / 12, "feet"),
  15145. weight: math.unit(159, "lb"),
  15146. name: "Front",
  15147. image: {
  15148. source: "./media/characters/hildegard/front.svg",
  15149. extra: 289 / 269,
  15150. bottom: 7.63 / 297.8
  15151. }
  15152. },
  15153. back: {
  15154. height: math.unit(5 + 7 / 12, "feet"),
  15155. weight: math.unit(159, "lb"),
  15156. name: "Back",
  15157. image: {
  15158. source: "./media/characters/hildegard/back.svg",
  15159. extra: 280 / 260,
  15160. bottom: 2.3 / 282
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Normal",
  15167. height: math.unit(5 + 7 / 12, "feet"),
  15168. default: true
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15174. {
  15175. bernard: {
  15176. height: math.unit(2 + 7 / 12, "feet"),
  15177. weight: math.unit(66, "lb"),
  15178. name: "Bernard",
  15179. rename: true,
  15180. image: {
  15181. source: "./media/characters/bernard-wilder/bernard.svg",
  15182. extra: 192 / 128,
  15183. bottom: 0.05
  15184. }
  15185. },
  15186. wilder: {
  15187. height: math.unit(5 + 8 / 12, "feet"),
  15188. weight: math.unit(143, "lb"),
  15189. name: "Wilder",
  15190. rename: true,
  15191. image: {
  15192. source: "./media/characters/bernard-wilder/wilder.svg",
  15193. extra: 361 / 312,
  15194. bottom: 0.02
  15195. }
  15196. },
  15197. },
  15198. [
  15199. {
  15200. name: "Normal",
  15201. height: math.unit(2 + 7 / 12, "feet"),
  15202. default: true
  15203. },
  15204. ]
  15205. ))
  15206. characterMakers.push(() => makeCharacter(
  15207. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15208. {
  15209. anthro: {
  15210. height: math.unit(6 + 1 / 12, "feet"),
  15211. weight: math.unit(155, "lb"),
  15212. name: "Anthro",
  15213. image: {
  15214. source: "./media/characters/hearth/anthro.svg",
  15215. extra: 1178/1136,
  15216. bottom: 28/1206
  15217. }
  15218. },
  15219. feral: {
  15220. height: math.unit(3.78, "feet"),
  15221. weight: math.unit(35, "kg"),
  15222. name: "Feral",
  15223. image: {
  15224. source: "./media/characters/hearth/feral.svg",
  15225. extra: 153 / 135,
  15226. bottom: 0.03
  15227. }
  15228. },
  15229. },
  15230. [
  15231. {
  15232. name: "Normal",
  15233. height: math.unit(6 + 1 / 12, "feet"),
  15234. default: true
  15235. },
  15236. ]
  15237. ))
  15238. characterMakers.push(() => makeCharacter(
  15239. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15240. {
  15241. front: {
  15242. height: math.unit(6, "feet"),
  15243. weight: math.unit(182, "lb"),
  15244. name: "Front",
  15245. image: {
  15246. source: "./media/characters/ingrid/front.svg",
  15247. extra: 294 / 268,
  15248. bottom: 0.027
  15249. }
  15250. },
  15251. },
  15252. [
  15253. {
  15254. name: "Normal",
  15255. height: math.unit(6, "feet"),
  15256. default: true
  15257. },
  15258. ]
  15259. ))
  15260. characterMakers.push(() => makeCharacter(
  15261. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15262. {
  15263. eevee: {
  15264. height: math.unit(2 + 10 / 12, "feet"),
  15265. weight: math.unit(86, "lb"),
  15266. name: "Malgam",
  15267. image: {
  15268. source: "./media/characters/malgam/eevee.svg",
  15269. extra: 952/784,
  15270. bottom: 38/990
  15271. }
  15272. },
  15273. sylveon: {
  15274. height: math.unit(4, "feet"),
  15275. weight: math.unit(101, "lb"),
  15276. name: "Future Malgam",
  15277. rename: true,
  15278. image: {
  15279. source: "./media/characters/malgam/sylveon.svg",
  15280. extra: 371 / 325,
  15281. bottom: 0.015
  15282. }
  15283. },
  15284. gigantamax: {
  15285. height: math.unit(50, "feet"),
  15286. name: "Gigantamax Malgam",
  15287. rename: true,
  15288. image: {
  15289. source: "./media/characters/malgam/gigantamax.svg"
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Normal",
  15296. height: math.unit(2 + 10 / 12, "feet"),
  15297. default: true
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(5 + 11 / 12, "feet"),
  15306. weight: math.unit(188, "lb"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/fleur/front.svg",
  15310. extra: 309 / 283,
  15311. bottom: 0.007
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(5 + 11 / 12, "feet"),
  15319. default: true
  15320. },
  15321. ]
  15322. ))
  15323. characterMakers.push(() => makeCharacter(
  15324. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15325. {
  15326. front: {
  15327. height: math.unit(5 + 4 / 12, "feet"),
  15328. weight: math.unit(122, "lb"),
  15329. name: "Front",
  15330. image: {
  15331. source: "./media/characters/jude/front.svg",
  15332. extra: 288 / 273,
  15333. bottom: 0.03
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(5 + 4 / 12, "feet"),
  15341. default: true
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15347. {
  15348. front: {
  15349. height: math.unit(5 + 11 / 12, "feet"),
  15350. weight: math.unit(190, "lb"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/seara/front.svg",
  15354. extra: 1,
  15355. bottom: 0.05
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Normal",
  15362. height: math.unit(5 + 11 / 12, "feet"),
  15363. default: true
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15369. {
  15370. front: {
  15371. height: math.unit(16 + 5 / 12, "feet"),
  15372. weight: math.unit(524, "lb"),
  15373. name: "Front",
  15374. image: {
  15375. source: "./media/characters/caspian/front.svg",
  15376. extra: 1,
  15377. bottom: 0.04
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Normal",
  15384. height: math.unit(16 + 5 / 12, "feet"),
  15385. default: true
  15386. },
  15387. ]
  15388. ))
  15389. characterMakers.push(() => makeCharacter(
  15390. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15391. {
  15392. front: {
  15393. height: math.unit(5 + 7 / 12, "feet"),
  15394. weight: math.unit(170, "lb"),
  15395. name: "Front",
  15396. image: {
  15397. source: "./media/characters/mika/front.svg",
  15398. extra: 1,
  15399. bottom: 0.016
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Normal",
  15406. height: math.unit(5 + 7 / 12, "feet"),
  15407. default: true
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(6 + 2 / 12, "feet"),
  15416. weight: math.unit(268, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/sol/front.svg",
  15420. extra: 247 / 231,
  15421. bottom: 0.05
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(6 + 2 / 12, "feet"),
  15429. default: true
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15435. {
  15436. buizel: {
  15437. height: math.unit(2 + 5 / 12, "feet"),
  15438. weight: math.unit(87, "lb"),
  15439. name: "Buizel",
  15440. image: {
  15441. source: "./media/characters/umiko/buizel.svg",
  15442. extra: 172 / 157,
  15443. bottom: 0.01
  15444. }
  15445. },
  15446. floatzel: {
  15447. height: math.unit(5 + 9 / 12, "feet"),
  15448. weight: math.unit(250, "lb"),
  15449. name: "Floatzel",
  15450. image: {
  15451. source: "./media/characters/umiko/floatzel.svg",
  15452. extra: 262 / 248
  15453. }
  15454. },
  15455. },
  15456. [
  15457. {
  15458. name: "Normal",
  15459. height: math.unit(2 + 5 / 12, "feet"),
  15460. default: true
  15461. },
  15462. ]
  15463. ))
  15464. characterMakers.push(() => makeCharacter(
  15465. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15466. {
  15467. front: {
  15468. height: math.unit(6 + 2 / 12, "feet"),
  15469. weight: math.unit(146, "lb"),
  15470. name: "Front",
  15471. image: {
  15472. source: "./media/characters/iliac/front.svg",
  15473. extra: 389 / 365,
  15474. bottom: 0.035
  15475. }
  15476. },
  15477. },
  15478. [
  15479. {
  15480. name: "Normal",
  15481. height: math.unit(6 + 2 / 12, "feet"),
  15482. default: true
  15483. },
  15484. ]
  15485. ))
  15486. characterMakers.push(() => makeCharacter(
  15487. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15488. {
  15489. front: {
  15490. height: math.unit(6, "feet"),
  15491. weight: math.unit(170, "lb"),
  15492. name: "Front",
  15493. image: {
  15494. source: "./media/characters/topaz/front.svg",
  15495. extra: 317 / 303,
  15496. bottom: 0.055
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Normal",
  15503. height: math.unit(6, "feet"),
  15504. default: true
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15510. {
  15511. front: {
  15512. height: math.unit(5 + 11 / 12, "feet"),
  15513. weight: math.unit(144, "lb"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/gabriel/front.svg",
  15517. extra: 285 / 262,
  15518. bottom: 0.004
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Normal",
  15525. height: math.unit(5 + 11 / 12, "feet"),
  15526. default: true
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15532. {
  15533. side: {
  15534. height: math.unit(6 + 5 / 12, "feet"),
  15535. weight: math.unit(300, "lb"),
  15536. name: "Side",
  15537. image: {
  15538. source: "./media/characters/tempest-suicune/side.svg",
  15539. extra: 195 / 154,
  15540. bottom: 0.04
  15541. }
  15542. },
  15543. },
  15544. [
  15545. {
  15546. name: "Normal",
  15547. height: math.unit(6 + 5 / 12, "feet"),
  15548. default: true
  15549. },
  15550. ]
  15551. ))
  15552. characterMakers.push(() => makeCharacter(
  15553. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15554. {
  15555. front: {
  15556. height: math.unit(7 + 2 / 12, "feet"),
  15557. weight: math.unit(322, "lb"),
  15558. name: "Front",
  15559. image: {
  15560. source: "./media/characters/vulcan/front.svg",
  15561. extra: 154 / 147,
  15562. bottom: 0.04
  15563. }
  15564. },
  15565. },
  15566. [
  15567. {
  15568. name: "Normal",
  15569. height: math.unit(7 + 2 / 12, "feet"),
  15570. default: true
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(5 + 10 / 12, "feet"),
  15579. weight: math.unit(264, "lb"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/gault/front.svg",
  15583. extra: 161 / 140,
  15584. bottom: 0.028
  15585. }
  15586. },
  15587. },
  15588. [
  15589. {
  15590. name: "Normal",
  15591. height: math.unit(5 + 10 / 12, "feet"),
  15592. default: true
  15593. },
  15594. ]
  15595. ))
  15596. characterMakers.push(() => makeCharacter(
  15597. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15598. {
  15599. front: {
  15600. height: math.unit(6, "feet"),
  15601. weight: math.unit(150, "lb"),
  15602. name: "Front",
  15603. image: {
  15604. source: "./media/characters/shard/front.svg",
  15605. extra: 273 / 238,
  15606. bottom: 0.02
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Normal",
  15613. height: math.unit(3 + 6 / 12, "feet"),
  15614. default: true
  15615. },
  15616. ]
  15617. ))
  15618. characterMakers.push(() => makeCharacter(
  15619. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15620. {
  15621. front: {
  15622. height: math.unit(5 + 11 / 12, "feet"),
  15623. weight: math.unit(146, "lb"),
  15624. name: "Front",
  15625. image: {
  15626. source: "./media/characters/ashe/front.svg",
  15627. extra: 400 / 373,
  15628. bottom: 0.01
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Normal",
  15635. height: math.unit(5 + 11 / 12, "feet"),
  15636. default: true
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15642. {
  15643. front: {
  15644. height: math.unit(5 + 5 / 12, "feet"),
  15645. weight: math.unit(135, "lb"),
  15646. name: "Front",
  15647. image: {
  15648. source: "./media/characters/beatrix/front.svg",
  15649. extra: 392 / 379,
  15650. bottom: 0.01
  15651. }
  15652. },
  15653. },
  15654. [
  15655. {
  15656. name: "Normal",
  15657. height: math.unit(6, "feet"),
  15658. default: true
  15659. },
  15660. ]
  15661. ))
  15662. characterMakers.push(() => makeCharacter(
  15663. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15664. {
  15665. front: {
  15666. height: math.unit(6 + 2/12, "feet"),
  15667. weight: math.unit(135, "lb"),
  15668. name: "Front",
  15669. image: {
  15670. source: "./media/characters/ignatius/front.svg",
  15671. extra: 1380/1259,
  15672. bottom: 27/1407
  15673. }
  15674. },
  15675. },
  15676. [
  15677. {
  15678. name: "Normal",
  15679. height: math.unit(6 + 2/12, "feet"),
  15680. default: true
  15681. },
  15682. ]
  15683. ))
  15684. characterMakers.push(() => makeCharacter(
  15685. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15686. {
  15687. front: {
  15688. height: math.unit(6 + 2 / 12, "feet"),
  15689. weight: math.unit(138, "lb"),
  15690. name: "Front",
  15691. image: {
  15692. source: "./media/characters/mei-li/front.svg",
  15693. extra: 237 / 229,
  15694. bottom: 0.03
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Normal",
  15701. height: math.unit(6 + 2 / 12, "feet"),
  15702. default: true
  15703. },
  15704. ]
  15705. ))
  15706. characterMakers.push(() => makeCharacter(
  15707. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15708. {
  15709. front: {
  15710. height: math.unit(2 + 4 / 12, "feet"),
  15711. weight: math.unit(62, "lb"),
  15712. name: "Front",
  15713. image: {
  15714. source: "./media/characters/puru/front.svg",
  15715. extra: 206 / 149,
  15716. bottom: 0.06
  15717. }
  15718. },
  15719. },
  15720. [
  15721. {
  15722. name: "Normal",
  15723. height: math.unit(2 + 4 / 12, "feet"),
  15724. default: true
  15725. },
  15726. ]
  15727. ))
  15728. characterMakers.push(() => makeCharacter(
  15729. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15730. {
  15731. anthro: {
  15732. height: math.unit(5 + 8/12, "feet"),
  15733. weight: math.unit(200, "lb"),
  15734. energyNeed: math.unit(2000, "kcal"),
  15735. name: "Anthro",
  15736. image: {
  15737. source: "./media/characters/kee/anthro.svg",
  15738. extra: 3251/3184,
  15739. bottom: 250/3501
  15740. }
  15741. },
  15742. taur: {
  15743. height: math.unit(11, "feet"),
  15744. weight: math.unit(500, "lb"),
  15745. energyNeed: math.unit(5000, "kcal"),
  15746. name: "Taur",
  15747. image: {
  15748. source: "./media/characters/kee/taur.svg",
  15749. extra: 1362/1320,
  15750. bottom: 83/1445
  15751. }
  15752. },
  15753. },
  15754. [
  15755. {
  15756. name: "Normal",
  15757. height: math.unit(5 + 8/12, "feet"),
  15758. default: true
  15759. },
  15760. {
  15761. name: "Macro",
  15762. height: math.unit(35, "feet")
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15768. {
  15769. anthro: {
  15770. height: math.unit(7, "feet"),
  15771. weight: math.unit(190, "lb"),
  15772. name: "Anthro",
  15773. image: {
  15774. source: "./media/characters/cobalt-dracha/anthro.svg",
  15775. extra: 231 / 225,
  15776. bottom: 0.04
  15777. }
  15778. },
  15779. feral: {
  15780. height: math.unit(9 + 7 / 12, "feet"),
  15781. weight: math.unit(294, "lb"),
  15782. name: "Feral",
  15783. image: {
  15784. source: "./media/characters/cobalt-dracha/feral.svg",
  15785. extra: 692 / 633,
  15786. bottom: 0.05
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Normal",
  15793. height: math.unit(7, "feet"),
  15794. default: true
  15795. },
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15800. {
  15801. fallen: {
  15802. height: math.unit(11 + 8 / 12, "feet"),
  15803. weight: math.unit(485, "lb"),
  15804. name: "Java (Fallen)",
  15805. rename: true,
  15806. image: {
  15807. source: "./media/characters/java/fallen.svg",
  15808. extra: 226 / 208,
  15809. bottom: 0.005
  15810. }
  15811. },
  15812. godkin: {
  15813. height: math.unit(10 + 6 / 12, "feet"),
  15814. weight: math.unit(328, "lb"),
  15815. name: "Java (Godkin)",
  15816. rename: true,
  15817. image: {
  15818. source: "./media/characters/java/godkin.svg",
  15819. extra: 1104/1068,
  15820. bottom: 36/1140
  15821. }
  15822. },
  15823. },
  15824. [
  15825. {
  15826. name: "Normal",
  15827. height: math.unit(11 + 8 / 12, "feet"),
  15828. default: true
  15829. },
  15830. ]
  15831. ))
  15832. characterMakers.push(() => makeCharacter(
  15833. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15834. {
  15835. front: {
  15836. height: math.unit(5 + 9 / 12, "feet"),
  15837. weight: math.unit(170, "lb"),
  15838. name: "Front",
  15839. image: {
  15840. source: "./media/characters/purna/front.svg",
  15841. extra: 239 / 229,
  15842. bottom: 0.01
  15843. }
  15844. },
  15845. },
  15846. [
  15847. {
  15848. name: "Normal",
  15849. height: math.unit(5 + 9 / 12, "feet"),
  15850. default: true
  15851. },
  15852. ]
  15853. ))
  15854. characterMakers.push(() => makeCharacter(
  15855. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15856. {
  15857. front: {
  15858. height: math.unit(5 + 9 / 12, "feet"),
  15859. weight: math.unit(142, "lb"),
  15860. name: "Front",
  15861. image: {
  15862. source: "./media/characters/kuva/front.svg",
  15863. extra: 281 / 271,
  15864. bottom: 0.006
  15865. }
  15866. },
  15867. },
  15868. [
  15869. {
  15870. name: "Normal",
  15871. height: math.unit(5 + 9 / 12, "feet"),
  15872. default: true
  15873. },
  15874. ]
  15875. ))
  15876. characterMakers.push(() => makeCharacter(
  15877. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15878. {
  15879. anthro: {
  15880. height: math.unit(9 + 2 / 12, "feet"),
  15881. weight: math.unit(270, "lb"),
  15882. name: "Anthro",
  15883. image: {
  15884. source: "./media/characters/embra/anthro.svg",
  15885. extra: 200 / 187,
  15886. bottom: 0.02
  15887. }
  15888. },
  15889. feral: {
  15890. height: math.unit(18 + 8 / 12, "feet"),
  15891. weight: math.unit(576, "lb"),
  15892. name: "Feral",
  15893. image: {
  15894. source: "./media/characters/embra/feral.svg",
  15895. extra: 152 / 137,
  15896. bottom: 0.037
  15897. }
  15898. },
  15899. },
  15900. [
  15901. {
  15902. name: "Normal",
  15903. height: math.unit(9 + 2 / 12, "feet"),
  15904. default: true
  15905. },
  15906. ]
  15907. ))
  15908. characterMakers.push(() => makeCharacter(
  15909. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15910. {
  15911. anthro: {
  15912. height: math.unit(10 + 9 / 12, "feet"),
  15913. weight: math.unit(224, "lb"),
  15914. name: "Anthro",
  15915. image: {
  15916. source: "./media/characters/grottos/anthro.svg",
  15917. extra: 350 / 332,
  15918. bottom: 0.045
  15919. }
  15920. },
  15921. feral: {
  15922. height: math.unit(20 + 7 / 12, "feet"),
  15923. weight: math.unit(629, "lb"),
  15924. name: "Feral",
  15925. image: {
  15926. source: "./media/characters/grottos/feral.svg",
  15927. extra: 207 / 190,
  15928. bottom: 0.05
  15929. }
  15930. },
  15931. },
  15932. [
  15933. {
  15934. name: "Normal",
  15935. height: math.unit(10 + 9 / 12, "feet"),
  15936. default: true
  15937. },
  15938. ]
  15939. ))
  15940. characterMakers.push(() => makeCharacter(
  15941. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15942. {
  15943. anthro: {
  15944. height: math.unit(9 + 6 / 12, "feet"),
  15945. weight: math.unit(298, "lb"),
  15946. name: "Anthro",
  15947. image: {
  15948. source: "./media/characters/frifna/anthro.svg",
  15949. extra: 282 / 269,
  15950. bottom: 0.015
  15951. }
  15952. },
  15953. feral: {
  15954. height: math.unit(16 + 2 / 12, "feet"),
  15955. weight: math.unit(624, "lb"),
  15956. name: "Feral",
  15957. image: {
  15958. source: "./media/characters/frifna/feral.svg"
  15959. }
  15960. },
  15961. },
  15962. [
  15963. {
  15964. name: "Normal",
  15965. height: math.unit(9 + 6 / 12, "feet"),
  15966. default: true
  15967. },
  15968. ]
  15969. ))
  15970. characterMakers.push(() => makeCharacter(
  15971. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15972. {
  15973. front: {
  15974. height: math.unit(6 + 2 / 12, "feet"),
  15975. weight: math.unit(168, "lb"),
  15976. name: "Front",
  15977. image: {
  15978. source: "./media/characters/elise/front.svg",
  15979. extra: 276 / 271
  15980. }
  15981. },
  15982. },
  15983. [
  15984. {
  15985. name: "Normal",
  15986. height: math.unit(6 + 2 / 12, "feet"),
  15987. default: true
  15988. },
  15989. ]
  15990. ))
  15991. characterMakers.push(() => makeCharacter(
  15992. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15993. {
  15994. front: {
  15995. height: math.unit(5 + 10 / 12, "feet"),
  15996. weight: math.unit(210, "lb"),
  15997. name: "Front",
  15998. image: {
  15999. source: "./media/characters/glade/front.svg",
  16000. extra: 258 / 247,
  16001. bottom: 0.008
  16002. }
  16003. },
  16004. },
  16005. [
  16006. {
  16007. name: "Normal",
  16008. height: math.unit(5 + 10 / 12, "feet"),
  16009. default: true
  16010. },
  16011. ]
  16012. ))
  16013. characterMakers.push(() => makeCharacter(
  16014. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16015. {
  16016. front: {
  16017. height: math.unit(5 + 10 / 12, "feet"),
  16018. weight: math.unit(129, "lb"),
  16019. name: "Front",
  16020. image: {
  16021. source: "./media/characters/rina/front.svg",
  16022. extra: 266 / 255,
  16023. bottom: 0.005
  16024. }
  16025. },
  16026. },
  16027. [
  16028. {
  16029. name: "Normal",
  16030. height: math.unit(5 + 10 / 12, "feet"),
  16031. default: true
  16032. },
  16033. ]
  16034. ))
  16035. characterMakers.push(() => makeCharacter(
  16036. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16037. {
  16038. front: {
  16039. height: math.unit(6 + 1 / 12, "feet"),
  16040. weight: math.unit(192, "lb"),
  16041. name: "Front",
  16042. image: {
  16043. source: "./media/characters/veronica/front.svg",
  16044. extra: 319 / 309,
  16045. bottom: 0.005
  16046. }
  16047. },
  16048. },
  16049. [
  16050. {
  16051. name: "Normal",
  16052. height: math.unit(6 + 1 / 12, "feet"),
  16053. default: true
  16054. },
  16055. ]
  16056. ))
  16057. characterMakers.push(() => makeCharacter(
  16058. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16059. {
  16060. front: {
  16061. height: math.unit(9 + 3 / 12, "feet"),
  16062. weight: math.unit(1100, "lb"),
  16063. name: "Front",
  16064. image: {
  16065. source: "./media/characters/braxton/front.svg",
  16066. extra: 1057 / 984,
  16067. bottom: 0.05
  16068. }
  16069. },
  16070. },
  16071. [
  16072. {
  16073. name: "Normal",
  16074. height: math.unit(9 + 3 / 12, "feet")
  16075. },
  16076. {
  16077. name: "Giant",
  16078. height: math.unit(300, "feet"),
  16079. default: true
  16080. },
  16081. {
  16082. name: "Macro",
  16083. height: math.unit(700, "feet")
  16084. },
  16085. {
  16086. name: "Megamacro",
  16087. height: math.unit(6000, "feet")
  16088. },
  16089. ]
  16090. ))
  16091. characterMakers.push(() => makeCharacter(
  16092. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16093. {
  16094. front: {
  16095. height: math.unit(6 + 7 / 12, "feet"),
  16096. weight: math.unit(150, "lb"),
  16097. name: "Front",
  16098. image: {
  16099. source: "./media/characters/blue-feyonics/front.svg",
  16100. extra: 1403 / 1306,
  16101. bottom: 0.047
  16102. }
  16103. },
  16104. },
  16105. [
  16106. {
  16107. name: "Normal",
  16108. height: math.unit(6 + 7 / 12, "feet"),
  16109. default: true
  16110. },
  16111. ]
  16112. ))
  16113. characterMakers.push(() => makeCharacter(
  16114. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16115. {
  16116. front: {
  16117. height: math.unit(1.8, "meters"),
  16118. weight: math.unit(60, "kg"),
  16119. name: "Front",
  16120. image: {
  16121. source: "./media/characters/maxwell/front.svg",
  16122. extra: 2060 / 1873
  16123. }
  16124. },
  16125. },
  16126. [
  16127. {
  16128. name: "Micro",
  16129. height: math.unit(1, "mm")
  16130. },
  16131. {
  16132. name: "Normal",
  16133. height: math.unit(1.8, "meter"),
  16134. default: true
  16135. },
  16136. {
  16137. name: "Macro",
  16138. height: math.unit(30, "meters")
  16139. },
  16140. {
  16141. name: "Megamacro",
  16142. height: math.unit(10, "km")
  16143. },
  16144. ]
  16145. ))
  16146. characterMakers.push(() => makeCharacter(
  16147. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16148. {
  16149. front: {
  16150. height: math.unit(6, "feet"),
  16151. weight: math.unit(150, "lb"),
  16152. name: "Front",
  16153. image: {
  16154. source: "./media/characters/jack/front.svg",
  16155. extra: 1754 / 1640,
  16156. bottom: 0.01
  16157. }
  16158. },
  16159. },
  16160. [
  16161. {
  16162. name: "Normal",
  16163. height: math.unit(80000, "feet"),
  16164. default: true
  16165. },
  16166. {
  16167. name: "Max size",
  16168. height: math.unit(10, "lightyears")
  16169. },
  16170. ]
  16171. ))
  16172. characterMakers.push(() => makeCharacter(
  16173. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16174. {
  16175. urban: {
  16176. height: math.unit(5, "feet"),
  16177. weight: math.unit(240, "lb"),
  16178. name: "Urban",
  16179. image: {
  16180. source: "./media/characters/cafat/urban.svg",
  16181. extra: 1223/1126,
  16182. bottom: 205/1428
  16183. }
  16184. },
  16185. summer: {
  16186. height: math.unit(5, "feet"),
  16187. weight: math.unit(240, "lb"),
  16188. name: "Summer",
  16189. image: {
  16190. source: "./media/characters/cafat/summer.svg",
  16191. extra: 1223/1126,
  16192. bottom: 205/1428
  16193. }
  16194. },
  16195. winter: {
  16196. height: math.unit(5, "feet"),
  16197. weight: math.unit(240, "lb"),
  16198. name: "Winter",
  16199. image: {
  16200. source: "./media/characters/cafat/winter.svg",
  16201. extra: 1223/1126,
  16202. bottom: 205/1428
  16203. }
  16204. },
  16205. lingerie: {
  16206. height: math.unit(5, "feet"),
  16207. weight: math.unit(240, "lb"),
  16208. name: "Lingerie",
  16209. image: {
  16210. source: "./media/characters/cafat/lingerie.svg",
  16211. extra: 1223/1126,
  16212. bottom: 205/1428
  16213. }
  16214. },
  16215. upright: {
  16216. height: math.unit(6.3, "feet"),
  16217. weight: math.unit(240, "lb"),
  16218. name: "Upright",
  16219. image: {
  16220. source: "./media/characters/cafat/upright.svg",
  16221. bottom: 0.01
  16222. }
  16223. },
  16224. uprightFull: {
  16225. height: math.unit(6.3, "feet"),
  16226. weight: math.unit(240, "lb"),
  16227. name: "Upright (Full)",
  16228. image: {
  16229. source: "./media/characters/cafat/upright-full.svg",
  16230. bottom: 0.01
  16231. }
  16232. },
  16233. },
  16234. [
  16235. {
  16236. name: "Small",
  16237. height: math.unit(5, "feet"),
  16238. default: true
  16239. },
  16240. {
  16241. name: "Large",
  16242. height: math.unit(13, "feet")
  16243. },
  16244. ]
  16245. ))
  16246. characterMakers.push(() => makeCharacter(
  16247. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16248. {
  16249. front: {
  16250. height: math.unit(6, "feet"),
  16251. weight: math.unit(150, "lb"),
  16252. name: "Front",
  16253. image: {
  16254. source: "./media/characters/verin-raharra/front.svg",
  16255. extra: 5019 / 4835,
  16256. bottom: 0.023
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Normal",
  16263. height: math.unit(7 + 5 / 12, "feet"),
  16264. default: true
  16265. },
  16266. {
  16267. name: "Upsized",
  16268. height: math.unit(20, "feet")
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16274. {
  16275. front: {
  16276. height: math.unit(7, "feet"),
  16277. weight: math.unit(230, "lb"),
  16278. name: "Front",
  16279. image: {
  16280. source: "./media/characters/nakata/front.svg",
  16281. extra: 1.005,
  16282. bottom: 0.01
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(7, "feet"),
  16290. default: true
  16291. },
  16292. {
  16293. name: "Big",
  16294. height: math.unit(14, "feet")
  16295. },
  16296. {
  16297. name: "Macro",
  16298. height: math.unit(400, "feet")
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16304. {
  16305. front: {
  16306. height: math.unit(4.91, "feet"),
  16307. weight: math.unit(100, "lb"),
  16308. name: "Front",
  16309. image: {
  16310. source: "./media/characters/lily/front.svg",
  16311. extra: 1585 / 1415,
  16312. bottom: 0.02
  16313. }
  16314. },
  16315. },
  16316. [
  16317. {
  16318. name: "Normal",
  16319. height: math.unit(4.91, "feet"),
  16320. default: true
  16321. },
  16322. ]
  16323. ))
  16324. characterMakers.push(() => makeCharacter(
  16325. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16326. {
  16327. laying: {
  16328. height: math.unit(4 + 4 / 12, "feet"),
  16329. weight: math.unit(600, "lb"),
  16330. name: "Laying",
  16331. image: {
  16332. source: "./media/characters/sheila/laying.svg",
  16333. extra: 1333 / 1265,
  16334. bottom: 0.16
  16335. }
  16336. },
  16337. },
  16338. [
  16339. {
  16340. name: "Normal",
  16341. height: math.unit(4 + 4 / 12, "feet"),
  16342. default: true
  16343. },
  16344. ]
  16345. ))
  16346. characterMakers.push(() => makeCharacter(
  16347. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16348. {
  16349. front: {
  16350. height: math.unit(6, "feet"),
  16351. weight: math.unit(190, "lb"),
  16352. name: "Front",
  16353. image: {
  16354. source: "./media/characters/sax/front.svg",
  16355. extra: 1187 / 973,
  16356. bottom: 0.042
  16357. }
  16358. },
  16359. },
  16360. [
  16361. {
  16362. name: "Micro",
  16363. height: math.unit(4, "inches"),
  16364. default: true
  16365. },
  16366. ]
  16367. ))
  16368. characterMakers.push(() => makeCharacter(
  16369. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16370. {
  16371. front: {
  16372. height: math.unit(6, "feet"),
  16373. weight: math.unit(150, "lb"),
  16374. name: "Front",
  16375. image: {
  16376. source: "./media/characters/pandora/front.svg",
  16377. extra: 2720 / 2556,
  16378. bottom: 0.015
  16379. }
  16380. },
  16381. back: {
  16382. height: math.unit(6, "feet"),
  16383. weight: math.unit(150, "lb"),
  16384. name: "Back",
  16385. image: {
  16386. source: "./media/characters/pandora/back.svg",
  16387. extra: 2720 / 2556,
  16388. bottom: 0.01
  16389. }
  16390. },
  16391. beans: {
  16392. height: math.unit(6 / 8, "feet"),
  16393. name: "Beans",
  16394. image: {
  16395. source: "./media/characters/pandora/beans.svg"
  16396. }
  16397. },
  16398. collar: {
  16399. height: math.unit(0.31, "feet"),
  16400. name: "Collar",
  16401. image: {
  16402. source: "./media/characters/pandora/collar.svg"
  16403. }
  16404. },
  16405. skirt: {
  16406. height: math.unit(6, "feet"),
  16407. weight: math.unit(150, "lb"),
  16408. name: "Skirt",
  16409. image: {
  16410. source: "./media/characters/pandora/skirt.svg",
  16411. extra: 1622 / 1525,
  16412. bottom: 0.015
  16413. }
  16414. },
  16415. hoodie: {
  16416. height: math.unit(6, "feet"),
  16417. weight: math.unit(150, "lb"),
  16418. name: "Hoodie",
  16419. image: {
  16420. source: "./media/characters/pandora/hoodie.svg",
  16421. extra: 1622 / 1525,
  16422. bottom: 0.015
  16423. }
  16424. },
  16425. casual: {
  16426. height: math.unit(6, "feet"),
  16427. weight: math.unit(150, "lb"),
  16428. name: "Casual",
  16429. image: {
  16430. source: "./media/characters/pandora/casual.svg",
  16431. extra: 1622 / 1525,
  16432. bottom: 0.015
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Normal",
  16439. height: math.unit(6, "feet")
  16440. },
  16441. {
  16442. name: "Big Steppy",
  16443. height: math.unit(1, "km"),
  16444. default: true
  16445. },
  16446. {
  16447. name: "Galactic Steppy",
  16448. height: math.unit(2, "gigameters")
  16449. },
  16450. ]
  16451. ))
  16452. characterMakers.push(() => makeCharacter(
  16453. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16454. {
  16455. side: {
  16456. height: math.unit(10, "feet"),
  16457. weight: math.unit(800, "kg"),
  16458. name: "Side",
  16459. image: {
  16460. source: "./media/characters/venio-darcony/side.svg",
  16461. extra: 1373 / 1003,
  16462. bottom: 0.037
  16463. }
  16464. },
  16465. front: {
  16466. height: math.unit(19, "feet"),
  16467. weight: math.unit(800, "kg"),
  16468. name: "Front",
  16469. image: {
  16470. source: "./media/characters/venio-darcony/front.svg"
  16471. }
  16472. },
  16473. back: {
  16474. height: math.unit(19, "feet"),
  16475. weight: math.unit(800, "kg"),
  16476. name: "Back",
  16477. image: {
  16478. source: "./media/characters/venio-darcony/back.svg"
  16479. }
  16480. },
  16481. sideNsfw: {
  16482. height: math.unit(10, "feet"),
  16483. weight: math.unit(800, "kg"),
  16484. name: "Side (NSFW)",
  16485. image: {
  16486. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16487. extra: 1373 / 1003,
  16488. bottom: 0.037
  16489. }
  16490. },
  16491. frontNsfw: {
  16492. height: math.unit(19, "feet"),
  16493. weight: math.unit(800, "kg"),
  16494. name: "Front (NSFW)",
  16495. image: {
  16496. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16497. }
  16498. },
  16499. backNsfw: {
  16500. height: math.unit(19, "feet"),
  16501. weight: math.unit(800, "kg"),
  16502. name: "Back (NSFW)",
  16503. image: {
  16504. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16505. }
  16506. },
  16507. sideArmored: {
  16508. height: math.unit(10, "feet"),
  16509. weight: math.unit(800, "kg"),
  16510. name: "Side (Armored)",
  16511. image: {
  16512. source: "./media/characters/venio-darcony/side-armored.svg",
  16513. extra: 1373 / 1003,
  16514. bottom: 0.037
  16515. }
  16516. },
  16517. frontArmored: {
  16518. height: math.unit(19, "feet"),
  16519. weight: math.unit(900, "kg"),
  16520. name: "Front (Armored)",
  16521. image: {
  16522. source: "./media/characters/venio-darcony/front-armored.svg"
  16523. }
  16524. },
  16525. backArmored: {
  16526. height: math.unit(19, "feet"),
  16527. weight: math.unit(900, "kg"),
  16528. name: "Back (Armored)",
  16529. image: {
  16530. source: "./media/characters/venio-darcony/back-armored.svg"
  16531. }
  16532. },
  16533. sword: {
  16534. height: math.unit(10, "feet"),
  16535. weight: math.unit(50, "lb"),
  16536. name: "Sword",
  16537. image: {
  16538. source: "./media/characters/venio-darcony/sword.svg"
  16539. }
  16540. },
  16541. },
  16542. [
  16543. {
  16544. name: "Normal",
  16545. height: math.unit(10, "feet")
  16546. },
  16547. {
  16548. name: "Macro",
  16549. height: math.unit(130, "feet"),
  16550. default: true
  16551. },
  16552. {
  16553. name: "Macro+",
  16554. height: math.unit(240, "feet")
  16555. },
  16556. ]
  16557. ))
  16558. characterMakers.push(() => makeCharacter(
  16559. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16560. {
  16561. front: {
  16562. height: math.unit(6, "feet"),
  16563. weight: math.unit(150, "lb"),
  16564. name: "Front",
  16565. image: {
  16566. source: "./media/characters/veski/front.svg",
  16567. extra: 1299 / 1225,
  16568. bottom: 0.04
  16569. }
  16570. },
  16571. back: {
  16572. height: math.unit(6, "feet"),
  16573. weight: math.unit(150, "lb"),
  16574. name: "Back",
  16575. image: {
  16576. source: "./media/characters/veski/back.svg",
  16577. extra: 1299 / 1225,
  16578. bottom: 0.008
  16579. }
  16580. },
  16581. maw: {
  16582. height: math.unit(1.5 * 1.21, "feet"),
  16583. name: "Maw",
  16584. image: {
  16585. source: "./media/characters/veski/maw.svg"
  16586. }
  16587. },
  16588. },
  16589. [
  16590. {
  16591. name: "Macro",
  16592. height: math.unit(2, "km"),
  16593. default: true
  16594. },
  16595. ]
  16596. ))
  16597. characterMakers.push(() => makeCharacter(
  16598. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16599. {
  16600. front: {
  16601. height: math.unit(5 + 7 / 12, "feet"),
  16602. name: "Front",
  16603. image: {
  16604. source: "./media/characters/isabelle/front.svg",
  16605. extra: 2130 / 1976,
  16606. bottom: 0.05
  16607. }
  16608. },
  16609. },
  16610. [
  16611. {
  16612. name: "Supermicro",
  16613. height: math.unit(10, "micrometers")
  16614. },
  16615. {
  16616. name: "Micro",
  16617. height: math.unit(1, "inch")
  16618. },
  16619. {
  16620. name: "Tiny",
  16621. height: math.unit(5, "inches")
  16622. },
  16623. {
  16624. name: "Standard",
  16625. height: math.unit(5 + 7 / 12, "inches")
  16626. },
  16627. {
  16628. name: "Macro",
  16629. height: math.unit(80, "meters"),
  16630. default: true
  16631. },
  16632. {
  16633. name: "Megamacro",
  16634. height: math.unit(250, "meters")
  16635. },
  16636. {
  16637. name: "Gigamacro",
  16638. height: math.unit(5, "km")
  16639. },
  16640. {
  16641. name: "Cosmic",
  16642. height: math.unit(2.5e6, "miles")
  16643. },
  16644. ]
  16645. ))
  16646. characterMakers.push(() => makeCharacter(
  16647. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16648. {
  16649. front: {
  16650. height: math.unit(6, "feet"),
  16651. weight: math.unit(150, "lb"),
  16652. name: "Front",
  16653. image: {
  16654. source: "./media/characters/hanzo/front.svg",
  16655. extra: 374 / 344,
  16656. bottom: 0.02
  16657. }
  16658. },
  16659. },
  16660. [
  16661. {
  16662. name: "Normal",
  16663. height: math.unit(8, "feet"),
  16664. default: true
  16665. },
  16666. ]
  16667. ))
  16668. characterMakers.push(() => makeCharacter(
  16669. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16670. {
  16671. front: {
  16672. height: math.unit(7, "feet"),
  16673. weight: math.unit(130, "lb"),
  16674. name: "Front",
  16675. image: {
  16676. source: "./media/characters/anna/front.svg",
  16677. extra: 169 / 145,
  16678. bottom: 0.06
  16679. }
  16680. },
  16681. full: {
  16682. height: math.unit(4.96, "feet"),
  16683. weight: math.unit(220, "lb"),
  16684. name: "Full",
  16685. image: {
  16686. source: "./media/characters/anna/full.svg",
  16687. extra: 138 / 114,
  16688. bottom: 0.15
  16689. }
  16690. },
  16691. tongue: {
  16692. height: math.unit(2.53, "feet"),
  16693. name: "Tongue",
  16694. image: {
  16695. source: "./media/characters/anna/tongue.svg"
  16696. }
  16697. },
  16698. },
  16699. [
  16700. {
  16701. name: "Normal",
  16702. height: math.unit(7, "feet"),
  16703. default: true
  16704. },
  16705. ]
  16706. ))
  16707. characterMakers.push(() => makeCharacter(
  16708. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16709. {
  16710. front: {
  16711. height: math.unit(7, "feet"),
  16712. weight: math.unit(150, "lb"),
  16713. name: "Front",
  16714. image: {
  16715. source: "./media/characters/ian-corvid/front.svg",
  16716. extra: 150 / 142,
  16717. bottom: 0.02
  16718. }
  16719. },
  16720. back: {
  16721. height: math.unit(7, "feet"),
  16722. weight: math.unit(150, "lb"),
  16723. name: "Back",
  16724. image: {
  16725. source: "./media/characters/ian-corvid/back.svg",
  16726. extra: 150 / 143,
  16727. bottom: 0.01
  16728. }
  16729. },
  16730. stomping: {
  16731. height: math.unit(7, "feet"),
  16732. weight: math.unit(150, "lb"),
  16733. name: "Stomping",
  16734. image: {
  16735. source: "./media/characters/ian-corvid/stomping.svg",
  16736. extra: 76 / 72
  16737. }
  16738. },
  16739. sitting: {
  16740. height: math.unit(7 / 1.8, "feet"),
  16741. weight: math.unit(150, "lb"),
  16742. name: "Sitting",
  16743. image: {
  16744. source: "./media/characters/ian-corvid/sitting.svg",
  16745. extra: 1400 / 1269,
  16746. bottom: 0.15
  16747. }
  16748. },
  16749. },
  16750. [
  16751. {
  16752. name: "Tiny Microw",
  16753. height: math.unit(1, "inch")
  16754. },
  16755. {
  16756. name: "Microw",
  16757. height: math.unit(6, "inches")
  16758. },
  16759. {
  16760. name: "Crow",
  16761. height: math.unit(7 + 1 / 12, "feet"),
  16762. default: true
  16763. },
  16764. {
  16765. name: "Macrow",
  16766. height: math.unit(176, "feet")
  16767. },
  16768. ]
  16769. ))
  16770. characterMakers.push(() => makeCharacter(
  16771. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16772. {
  16773. front: {
  16774. height: math.unit(5 + 7 / 12, "feet"),
  16775. weight: math.unit(147, "lb"),
  16776. name: "Front",
  16777. image: {
  16778. source: "./media/characters/natalie-kellon/front.svg",
  16779. extra: 1214 / 1141,
  16780. bottom: 0.02
  16781. }
  16782. },
  16783. },
  16784. [
  16785. {
  16786. name: "Micro",
  16787. height: math.unit(1 / 16, "inch")
  16788. },
  16789. {
  16790. name: "Tiny",
  16791. height: math.unit(4, "inches")
  16792. },
  16793. {
  16794. name: "Normal",
  16795. height: math.unit(5 + 7 / 12, "feet"),
  16796. default: true
  16797. },
  16798. {
  16799. name: "Amazon",
  16800. height: math.unit(12, "feet")
  16801. },
  16802. {
  16803. name: "Giantess",
  16804. height: math.unit(160, "meters")
  16805. },
  16806. {
  16807. name: "Titaness",
  16808. height: math.unit(800, "meters")
  16809. },
  16810. ]
  16811. ))
  16812. characterMakers.push(() => makeCharacter(
  16813. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16814. {
  16815. front: {
  16816. height: math.unit(6, "feet"),
  16817. weight: math.unit(150, "lb"),
  16818. name: "Front",
  16819. image: {
  16820. source: "./media/characters/alluria/front.svg",
  16821. extra: 806 / 738,
  16822. bottom: 0.01
  16823. }
  16824. },
  16825. side: {
  16826. height: math.unit(6, "feet"),
  16827. weight: math.unit(150, "lb"),
  16828. name: "Side",
  16829. image: {
  16830. source: "./media/characters/alluria/side.svg",
  16831. extra: 800 / 750,
  16832. }
  16833. },
  16834. back: {
  16835. height: math.unit(6, "feet"),
  16836. weight: math.unit(150, "lb"),
  16837. name: "Back",
  16838. image: {
  16839. source: "./media/characters/alluria/back.svg",
  16840. extra: 806 / 738,
  16841. }
  16842. },
  16843. frontMaid: {
  16844. height: math.unit(6, "feet"),
  16845. weight: math.unit(150, "lb"),
  16846. name: "Front (Maid)",
  16847. image: {
  16848. source: "./media/characters/alluria/front-maid.svg",
  16849. extra: 806 / 738,
  16850. bottom: 0.01
  16851. }
  16852. },
  16853. sideMaid: {
  16854. height: math.unit(6, "feet"),
  16855. weight: math.unit(150, "lb"),
  16856. name: "Side (Maid)",
  16857. image: {
  16858. source: "./media/characters/alluria/side-maid.svg",
  16859. extra: 800 / 750,
  16860. bottom: 0.005
  16861. }
  16862. },
  16863. backMaid: {
  16864. height: math.unit(6, "feet"),
  16865. weight: math.unit(150, "lb"),
  16866. name: "Back (Maid)",
  16867. image: {
  16868. source: "./media/characters/alluria/back-maid.svg",
  16869. extra: 806 / 738,
  16870. }
  16871. },
  16872. },
  16873. [
  16874. {
  16875. name: "Micro",
  16876. height: math.unit(6, "inches"),
  16877. default: true
  16878. },
  16879. ]
  16880. ))
  16881. characterMakers.push(() => makeCharacter(
  16882. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16883. {
  16884. front: {
  16885. height: math.unit(6, "feet"),
  16886. weight: math.unit(150, "lb"),
  16887. name: "Front",
  16888. image: {
  16889. source: "./media/characters/kyle/front.svg",
  16890. extra: 1069 / 962,
  16891. bottom: 77.228 / 1727.45
  16892. }
  16893. },
  16894. },
  16895. [
  16896. {
  16897. name: "Macro",
  16898. height: math.unit(150, "feet"),
  16899. default: true
  16900. },
  16901. ]
  16902. ))
  16903. characterMakers.push(() => makeCharacter(
  16904. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16905. {
  16906. front: {
  16907. height: math.unit(6, "feet"),
  16908. weight: math.unit(300, "lb"),
  16909. name: "Front",
  16910. image: {
  16911. source: "./media/characters/duncan/front.svg",
  16912. extra: 1650 / 1482,
  16913. bottom: 0.05
  16914. }
  16915. },
  16916. },
  16917. [
  16918. {
  16919. name: "Macro",
  16920. height: math.unit(100, "feet"),
  16921. default: true
  16922. },
  16923. ]
  16924. ))
  16925. characterMakers.push(() => makeCharacter(
  16926. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16927. {
  16928. front: {
  16929. height: math.unit(5 + 4 / 12, "feet"),
  16930. weight: math.unit(220, "lb"),
  16931. name: "Front",
  16932. image: {
  16933. source: "./media/characters/memory/front.svg",
  16934. extra: 3641 / 3545,
  16935. bottom: 0.03
  16936. }
  16937. },
  16938. back: {
  16939. height: math.unit(5 + 4 / 12, "feet"),
  16940. weight: math.unit(220, "lb"),
  16941. name: "Back",
  16942. image: {
  16943. source: "./media/characters/memory/back.svg",
  16944. extra: 3641 / 3545,
  16945. bottom: 0.025
  16946. }
  16947. },
  16948. frontSkirt: {
  16949. height: math.unit(5 + 4 / 12, "feet"),
  16950. weight: math.unit(220, "lb"),
  16951. name: "Front (Skirt)",
  16952. image: {
  16953. source: "./media/characters/memory/front-skirt.svg",
  16954. extra: 3641 / 3545,
  16955. bottom: 0.03
  16956. }
  16957. },
  16958. frontDress: {
  16959. height: math.unit(5 + 4 / 12, "feet"),
  16960. weight: math.unit(220, "lb"),
  16961. name: "Front (Dress)",
  16962. image: {
  16963. source: "./media/characters/memory/front-dress.svg",
  16964. extra: 3641 / 3545,
  16965. bottom: 0.03
  16966. }
  16967. },
  16968. },
  16969. [
  16970. {
  16971. name: "Micro",
  16972. height: math.unit(6, "inches"),
  16973. default: true
  16974. },
  16975. {
  16976. name: "Normal",
  16977. height: math.unit(5 + 4 / 12, "feet")
  16978. },
  16979. ]
  16980. ))
  16981. characterMakers.push(() => makeCharacter(
  16982. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16983. {
  16984. front: {
  16985. height: math.unit(4 + 11 / 12, "feet"),
  16986. weight: math.unit(100, "lb"),
  16987. name: "Front",
  16988. image: {
  16989. source: "./media/characters/luno/front.svg",
  16990. extra: 1535 / 1487,
  16991. bottom: 0.03
  16992. }
  16993. },
  16994. },
  16995. [
  16996. {
  16997. name: "Micro",
  16998. height: math.unit(3, "inches")
  16999. },
  17000. {
  17001. name: "Normal",
  17002. height: math.unit(4 + 11 / 12, "feet"),
  17003. default: true
  17004. },
  17005. {
  17006. name: "Macro",
  17007. height: math.unit(300, "feet")
  17008. },
  17009. {
  17010. name: "Megamacro",
  17011. height: math.unit(700, "miles")
  17012. },
  17013. ]
  17014. ))
  17015. characterMakers.push(() => makeCharacter(
  17016. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17017. {
  17018. front: {
  17019. height: math.unit(6 + 2 / 12, "feet"),
  17020. weight: math.unit(170, "lb"),
  17021. name: "Front",
  17022. image: {
  17023. source: "./media/characters/jamesy/front.svg",
  17024. extra: 440 / 382,
  17025. bottom: 0.005
  17026. }
  17027. },
  17028. },
  17029. [
  17030. {
  17031. name: "Micro",
  17032. height: math.unit(3, "inches")
  17033. },
  17034. {
  17035. name: "Normal",
  17036. height: math.unit(6 + 2 / 12, "feet"),
  17037. default: true
  17038. },
  17039. {
  17040. name: "Macro",
  17041. height: math.unit(300, "feet")
  17042. },
  17043. {
  17044. name: "Megamacro",
  17045. height: math.unit(700, "miles")
  17046. },
  17047. ]
  17048. ))
  17049. characterMakers.push(() => makeCharacter(
  17050. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17051. {
  17052. front: {
  17053. height: math.unit(6, "feet"),
  17054. weight: math.unit(160, "lb"),
  17055. name: "Front",
  17056. image: {
  17057. source: "./media/characters/mark/front.svg",
  17058. extra: 3300 / 3100,
  17059. bottom: 136.42 / 3440.47
  17060. }
  17061. },
  17062. },
  17063. [
  17064. {
  17065. name: "Macro",
  17066. height: math.unit(120, "meters")
  17067. },
  17068. {
  17069. name: "Bigger Macro",
  17070. height: math.unit(350, "meters")
  17071. },
  17072. {
  17073. name: "Megamacro",
  17074. height: math.unit(8, "km"),
  17075. default: true
  17076. },
  17077. {
  17078. name: "Continental",
  17079. height: math.unit(4550, "km")
  17080. },
  17081. {
  17082. name: "Planetary",
  17083. height: math.unit(65000, "km")
  17084. },
  17085. ]
  17086. ))
  17087. characterMakers.push(() => makeCharacter(
  17088. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17089. {
  17090. front: {
  17091. height: math.unit(6, "feet"),
  17092. weight: math.unit(400, "lb"),
  17093. name: "Front",
  17094. image: {
  17095. source: "./media/characters/mac/front.svg",
  17096. extra: 1048 / 987.7,
  17097. bottom: 60 / 1107.6,
  17098. }
  17099. },
  17100. },
  17101. [
  17102. {
  17103. name: "Macro",
  17104. height: math.unit(500, "feet"),
  17105. default: true
  17106. },
  17107. ]
  17108. ))
  17109. characterMakers.push(() => makeCharacter(
  17110. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17111. {
  17112. front: {
  17113. height: math.unit(5 + 2 / 12, "feet"),
  17114. weight: math.unit(190, "lb"),
  17115. name: "Front",
  17116. image: {
  17117. source: "./media/characters/bari/front.svg",
  17118. extra: 3156 / 2880,
  17119. bottom: 0.03
  17120. }
  17121. },
  17122. back: {
  17123. height: math.unit(5 + 2 / 12, "feet"),
  17124. weight: math.unit(190, "lb"),
  17125. name: "Back",
  17126. image: {
  17127. source: "./media/characters/bari/back.svg",
  17128. extra: 3260 / 2834,
  17129. bottom: 0.025
  17130. }
  17131. },
  17132. frontPlush: {
  17133. height: math.unit(5 + 2 / 12, "feet"),
  17134. weight: math.unit(190, "lb"),
  17135. name: "Front (Plush)",
  17136. image: {
  17137. source: "./media/characters/bari/front-plush.svg",
  17138. extra: 1112 / 1061,
  17139. bottom: 0.002
  17140. }
  17141. },
  17142. },
  17143. [
  17144. {
  17145. name: "Micro",
  17146. height: math.unit(3, "inches")
  17147. },
  17148. {
  17149. name: "Normal",
  17150. height: math.unit(5 + 2 / 12, "feet"),
  17151. default: true
  17152. },
  17153. {
  17154. name: "Macro",
  17155. height: math.unit(20, "feet")
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17161. {
  17162. front: {
  17163. height: math.unit(6 + 1 / 12, "feet"),
  17164. weight: math.unit(275, "lb"),
  17165. name: "Front",
  17166. image: {
  17167. source: "./media/characters/hunter-misha-raven/front.svg"
  17168. }
  17169. },
  17170. },
  17171. [
  17172. {
  17173. name: "Mortal",
  17174. height: math.unit(6 + 1 / 12, "feet")
  17175. },
  17176. {
  17177. name: "Divine",
  17178. height: math.unit(1.12134e34, "parsecs"),
  17179. default: true
  17180. },
  17181. ]
  17182. ))
  17183. characterMakers.push(() => makeCharacter(
  17184. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17185. {
  17186. front: {
  17187. height: math.unit(6 + 3 / 12, "feet"),
  17188. weight: math.unit(220, "lb"),
  17189. name: "Front",
  17190. image: {
  17191. source: "./media/characters/max-calore/front.svg",
  17192. extra: 1700 / 1648,
  17193. bottom: 0.01
  17194. }
  17195. },
  17196. back: {
  17197. height: math.unit(6 + 3 / 12, "feet"),
  17198. weight: math.unit(220, "lb"),
  17199. name: "Back",
  17200. image: {
  17201. source: "./media/characters/max-calore/back.svg",
  17202. extra: 1700 / 1648,
  17203. bottom: 0.01
  17204. }
  17205. },
  17206. },
  17207. [
  17208. {
  17209. name: "Normal",
  17210. height: math.unit(6 + 3 / 12, "feet"),
  17211. default: true
  17212. },
  17213. ]
  17214. ))
  17215. characterMakers.push(() => makeCharacter(
  17216. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17217. {
  17218. side: {
  17219. height: math.unit(2 + 8 / 12, "feet"),
  17220. weight: math.unit(99, "lb"),
  17221. name: "Side",
  17222. image: {
  17223. source: "./media/characters/aspen/side.svg",
  17224. extra: 152 / 138,
  17225. bottom: 0.032
  17226. }
  17227. },
  17228. },
  17229. [
  17230. {
  17231. name: "Normal",
  17232. height: math.unit(2 + 8 / 12, "feet"),
  17233. default: true
  17234. },
  17235. ]
  17236. ))
  17237. characterMakers.push(() => makeCharacter(
  17238. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17239. {
  17240. side: {
  17241. height: math.unit(3 + 2 / 12, "feet"),
  17242. weight: math.unit(224, "lb"),
  17243. name: "Side",
  17244. image: {
  17245. source: "./media/characters/sheila-feral-wolf/side.svg",
  17246. extra: 179 / 166,
  17247. bottom: 0.03
  17248. }
  17249. },
  17250. },
  17251. [
  17252. {
  17253. name: "Normal",
  17254. height: math.unit(3 + 2 / 12, "feet"),
  17255. default: true
  17256. },
  17257. ]
  17258. ))
  17259. characterMakers.push(() => makeCharacter(
  17260. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17261. {
  17262. side: {
  17263. height: math.unit(1 + 9 / 12, "feet"),
  17264. weight: math.unit(38, "lb"),
  17265. name: "Side",
  17266. image: {
  17267. source: "./media/characters/michelle/side.svg",
  17268. extra: 147 / 136.7,
  17269. bottom: 0.03
  17270. }
  17271. },
  17272. },
  17273. [
  17274. {
  17275. name: "Normal",
  17276. height: math.unit(1 + 9 / 12, "feet"),
  17277. default: true
  17278. },
  17279. ]
  17280. ))
  17281. characterMakers.push(() => makeCharacter(
  17282. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17283. {
  17284. front: {
  17285. height: math.unit(1.54, "feet"),
  17286. weight: math.unit(50, "lb"),
  17287. name: "Front",
  17288. image: {
  17289. source: "./media/characters/nino/front.svg"
  17290. }
  17291. },
  17292. },
  17293. [
  17294. {
  17295. name: "Normal",
  17296. height: math.unit(1.54, "feet"),
  17297. default: true
  17298. },
  17299. ]
  17300. ))
  17301. characterMakers.push(() => makeCharacter(
  17302. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17303. {
  17304. front: {
  17305. height: math.unit(1.49, "feet"),
  17306. weight: math.unit(45, "lb"),
  17307. name: "Front",
  17308. image: {
  17309. source: "./media/characters/viola/front.svg"
  17310. }
  17311. },
  17312. },
  17313. [
  17314. {
  17315. name: "Normal",
  17316. height: math.unit(1.49, "feet"),
  17317. default: true
  17318. },
  17319. ]
  17320. ))
  17321. characterMakers.push(() => makeCharacter(
  17322. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17323. {
  17324. front: {
  17325. height: math.unit(6 + 5 / 12, "feet"),
  17326. weight: math.unit(580, "lb"),
  17327. name: "Front",
  17328. image: {
  17329. source: "./media/characters/atlas/front.svg",
  17330. extra: 298.5 / 290,
  17331. bottom: 0.015
  17332. }
  17333. },
  17334. },
  17335. [
  17336. {
  17337. name: "Normal",
  17338. height: math.unit(6 + 5 / 12, "feet"),
  17339. default: true
  17340. },
  17341. ]
  17342. ))
  17343. characterMakers.push(() => makeCharacter(
  17344. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17345. {
  17346. side: {
  17347. height: math.unit(1 + 10 / 12, "feet"),
  17348. weight: math.unit(25, "lb"),
  17349. name: "Side",
  17350. image: {
  17351. source: "./media/characters/davy/side.svg",
  17352. extra: 200 / 170,
  17353. bottom: 0.01
  17354. }
  17355. },
  17356. },
  17357. [
  17358. {
  17359. name: "Normal",
  17360. height: math.unit(1 + 10 / 12, "feet"),
  17361. default: true
  17362. },
  17363. ]
  17364. ))
  17365. characterMakers.push(() => makeCharacter(
  17366. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17367. {
  17368. side: {
  17369. height: math.unit(4 + 8 / 12, "feet"),
  17370. weight: math.unit(166, "lb"),
  17371. name: "Side",
  17372. image: {
  17373. source: "./media/characters/fiona/side.svg",
  17374. extra: 232 / 220,
  17375. bottom: 0.03
  17376. }
  17377. },
  17378. },
  17379. [
  17380. {
  17381. name: "Normal",
  17382. height: math.unit(4 + 8 / 12, "feet"),
  17383. default: true
  17384. },
  17385. ]
  17386. ))
  17387. characterMakers.push(() => makeCharacter(
  17388. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17389. {
  17390. front: {
  17391. height: math.unit(3, "feet"),
  17392. weight: math.unit(100, "lb"),
  17393. name: "Front",
  17394. image: {
  17395. source: "./media/characters/lyla/front.svg",
  17396. bottom: 0.1
  17397. }
  17398. },
  17399. },
  17400. [
  17401. {
  17402. name: "Normal",
  17403. height: math.unit(3, "feet"),
  17404. default: true
  17405. },
  17406. ]
  17407. ))
  17408. characterMakers.push(() => makeCharacter(
  17409. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17410. {
  17411. side: {
  17412. height: math.unit(1.8, "feet"),
  17413. weight: math.unit(44, "lb"),
  17414. name: "Side",
  17415. image: {
  17416. source: "./media/characters/perseus/side.svg",
  17417. bottom: 0.21
  17418. }
  17419. },
  17420. },
  17421. [
  17422. {
  17423. name: "Normal",
  17424. height: math.unit(1.8, "feet"),
  17425. default: true
  17426. },
  17427. ]
  17428. ))
  17429. characterMakers.push(() => makeCharacter(
  17430. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17431. {
  17432. side: {
  17433. height: math.unit(4 + 2 / 12, "feet"),
  17434. weight: math.unit(20, "lb"),
  17435. name: "Side",
  17436. image: {
  17437. source: "./media/characters/remus/side.svg"
  17438. }
  17439. },
  17440. },
  17441. [
  17442. {
  17443. name: "Normal",
  17444. height: math.unit(4 + 2 / 12, "feet"),
  17445. default: true
  17446. },
  17447. ]
  17448. ))
  17449. characterMakers.push(() => makeCharacter(
  17450. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17451. {
  17452. front: {
  17453. height: math.unit(4 + 11 / 12, "feet"),
  17454. weight: math.unit(114, "lb"),
  17455. name: "Front",
  17456. image: {
  17457. source: "./media/characters/raf/front.svg",
  17458. extra: 1504/1339,
  17459. bottom: 26/1530
  17460. }
  17461. },
  17462. side: {
  17463. height: math.unit(4 + 11 / 12, "feet"),
  17464. weight: math.unit(114, "lb"),
  17465. name: "Side",
  17466. image: {
  17467. source: "./media/characters/raf/side.svg",
  17468. extra: 1466/1316,
  17469. bottom: 29/1495
  17470. }
  17471. },
  17472. },
  17473. [
  17474. {
  17475. name: "Micro",
  17476. height: math.unit(2, "inches")
  17477. },
  17478. {
  17479. name: "Normal",
  17480. height: math.unit(4 + 11 / 12, "feet"),
  17481. default: true
  17482. },
  17483. {
  17484. name: "Macro",
  17485. height: math.unit(70, "feet")
  17486. },
  17487. ]
  17488. ))
  17489. characterMakers.push(() => makeCharacter(
  17490. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17491. {
  17492. front: {
  17493. height: math.unit(1.5, "meters"),
  17494. weight: math.unit(68, "kg"),
  17495. name: "Front",
  17496. image: {
  17497. source: "./media/characters/liam-einarr/front.svg",
  17498. extra: 2822 / 2666
  17499. }
  17500. },
  17501. back: {
  17502. height: math.unit(1.5, "meters"),
  17503. weight: math.unit(68, "kg"),
  17504. name: "Back",
  17505. image: {
  17506. source: "./media/characters/liam-einarr/back.svg",
  17507. extra: 2822 / 2666,
  17508. bottom: 0.015
  17509. }
  17510. },
  17511. },
  17512. [
  17513. {
  17514. name: "Normal",
  17515. height: math.unit(1.5, "meters"),
  17516. default: true
  17517. },
  17518. {
  17519. name: "Macro",
  17520. height: math.unit(150, "meters")
  17521. },
  17522. {
  17523. name: "Megamacro",
  17524. height: math.unit(35, "km")
  17525. },
  17526. ]
  17527. ))
  17528. characterMakers.push(() => makeCharacter(
  17529. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17530. {
  17531. front: {
  17532. height: math.unit(6, "feet"),
  17533. weight: math.unit(75, "kg"),
  17534. name: "Front",
  17535. image: {
  17536. source: "./media/characters/linda/front.svg",
  17537. extra: 930 / 874,
  17538. bottom: 0.004
  17539. }
  17540. },
  17541. },
  17542. [
  17543. {
  17544. name: "Normal",
  17545. height: math.unit(6, "feet"),
  17546. default: true
  17547. },
  17548. ]
  17549. ))
  17550. characterMakers.push(() => makeCharacter(
  17551. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17552. {
  17553. front: {
  17554. height: math.unit(6 + 8 / 12, "feet"),
  17555. weight: math.unit(220, "lb"),
  17556. name: "Front",
  17557. image: {
  17558. source: "./media/characters/caylex/front.svg",
  17559. extra: 821 / 772,
  17560. bottom: 0.07
  17561. }
  17562. },
  17563. back: {
  17564. height: math.unit(6 + 8 / 12, "feet"),
  17565. weight: math.unit(220, "lb"),
  17566. name: "Back",
  17567. image: {
  17568. source: "./media/characters/caylex/back.svg",
  17569. extra: 821 / 772,
  17570. bottom: 0.022
  17571. }
  17572. },
  17573. hand: {
  17574. height: math.unit(1.25, "feet"),
  17575. name: "Hand",
  17576. image: {
  17577. source: "./media/characters/caylex/hand.svg"
  17578. }
  17579. },
  17580. foot: {
  17581. height: math.unit(1.6, "feet"),
  17582. name: "Foot",
  17583. image: {
  17584. source: "./media/characters/caylex/foot.svg"
  17585. }
  17586. },
  17587. armored: {
  17588. height: math.unit(6 + 8 / 12, "feet"),
  17589. weight: math.unit(250, "lb"),
  17590. name: "Armored",
  17591. image: {
  17592. source: "./media/characters/caylex/armored.svg",
  17593. extra: 1420 / 1310,
  17594. bottom: 0.045
  17595. }
  17596. },
  17597. },
  17598. [
  17599. {
  17600. name: "Normal",
  17601. height: math.unit(6 + 8 / 12, "feet"),
  17602. default: true
  17603. },
  17604. {
  17605. name: "Normal+",
  17606. height: math.unit(12, "feet")
  17607. },
  17608. ]
  17609. ))
  17610. characterMakers.push(() => makeCharacter(
  17611. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17612. {
  17613. front: {
  17614. height: math.unit(7 + 6 / 12, "feet"),
  17615. weight: math.unit(288, "lb"),
  17616. name: "Front",
  17617. image: {
  17618. source: "./media/characters/alana/front.svg",
  17619. extra: 679 / 653,
  17620. bottom: 22.5 / 701
  17621. }
  17622. },
  17623. },
  17624. [
  17625. {
  17626. name: "Normal",
  17627. height: math.unit(7 + 6 / 12, "feet")
  17628. },
  17629. {
  17630. name: "Large",
  17631. height: math.unit(50, "feet")
  17632. },
  17633. {
  17634. name: "Macro",
  17635. height: math.unit(100, "feet"),
  17636. default: true
  17637. },
  17638. {
  17639. name: "Macro+",
  17640. height: math.unit(200, "feet")
  17641. },
  17642. ]
  17643. ))
  17644. characterMakers.push(() => makeCharacter(
  17645. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17646. {
  17647. front: {
  17648. height: math.unit(6 + 1 / 12, "feet"),
  17649. weight: math.unit(210, "lb"),
  17650. name: "Front",
  17651. image: {
  17652. source: "./media/characters/hasani/front.svg",
  17653. extra: 244 / 232,
  17654. bottom: 0.01
  17655. }
  17656. },
  17657. back: {
  17658. height: math.unit(6 + 1 / 12, "feet"),
  17659. weight: math.unit(210, "lb"),
  17660. name: "Back",
  17661. image: {
  17662. source: "./media/characters/hasani/back.svg",
  17663. extra: 244 / 232,
  17664. bottom: 0.01
  17665. }
  17666. },
  17667. },
  17668. [
  17669. {
  17670. name: "Normal",
  17671. height: math.unit(6 + 1 / 12, "feet")
  17672. },
  17673. {
  17674. name: "Macro",
  17675. height: math.unit(175, "feet"),
  17676. default: true
  17677. },
  17678. ]
  17679. ))
  17680. characterMakers.push(() => makeCharacter(
  17681. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17682. {
  17683. front: {
  17684. height: math.unit(1.82, "meters"),
  17685. weight: math.unit(140, "lb"),
  17686. name: "Front",
  17687. image: {
  17688. source: "./media/characters/nita/front.svg",
  17689. extra: 2473 / 2363,
  17690. bottom: 0.01
  17691. }
  17692. },
  17693. },
  17694. [
  17695. {
  17696. name: "Normal",
  17697. height: math.unit(1.82, "m")
  17698. },
  17699. {
  17700. name: "Macro",
  17701. height: math.unit(300, "m")
  17702. },
  17703. {
  17704. name: "Mistake Canon",
  17705. height: math.unit(0.5, "miles"),
  17706. default: true
  17707. },
  17708. {
  17709. name: "Big Mistake",
  17710. height: math.unit(13, "miles")
  17711. },
  17712. {
  17713. name: "Playing God",
  17714. height: math.unit(2450, "miles")
  17715. },
  17716. ]
  17717. ))
  17718. characterMakers.push(() => makeCharacter(
  17719. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17720. {
  17721. front: {
  17722. height: math.unit(4, "feet"),
  17723. weight: math.unit(120, "lb"),
  17724. name: "Front",
  17725. image: {
  17726. source: "./media/characters/shiriko/front.svg",
  17727. extra: 970/934,
  17728. bottom: 5/975
  17729. }
  17730. },
  17731. },
  17732. [
  17733. {
  17734. name: "Normal",
  17735. height: math.unit(4, "feet"),
  17736. default: true
  17737. },
  17738. ]
  17739. ))
  17740. characterMakers.push(() => makeCharacter(
  17741. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17742. {
  17743. front: {
  17744. height: math.unit(6, "feet"),
  17745. name: "front",
  17746. image: {
  17747. source: "./media/characters/deja/front.svg",
  17748. extra: 926 / 840,
  17749. bottom: 0.07
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Planck Length",
  17756. height: math.unit(1.6e-35, "meters")
  17757. },
  17758. {
  17759. name: "Normal",
  17760. height: math.unit(30.48, "meters"),
  17761. default: true
  17762. },
  17763. {
  17764. name: "Universal",
  17765. height: math.unit(8.8e26, "meters")
  17766. },
  17767. ]
  17768. ))
  17769. characterMakers.push(() => makeCharacter(
  17770. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17771. {
  17772. side: {
  17773. height: math.unit(8, "feet"),
  17774. weight: math.unit(6300, "lb"),
  17775. name: "Side",
  17776. image: {
  17777. source: "./media/characters/anima/side.svg",
  17778. bottom: 0.035
  17779. }
  17780. },
  17781. },
  17782. [
  17783. {
  17784. name: "Normal",
  17785. height: math.unit(8, "feet"),
  17786. default: true
  17787. },
  17788. ]
  17789. ))
  17790. characterMakers.push(() => makeCharacter(
  17791. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17792. {
  17793. front: {
  17794. height: math.unit(8, "feet"),
  17795. weight: math.unit(350, "lb"),
  17796. name: "Front",
  17797. image: {
  17798. source: "./media/characters/bianca/front.svg",
  17799. extra: 234 / 225,
  17800. bottom: 0.03
  17801. }
  17802. },
  17803. },
  17804. [
  17805. {
  17806. name: "Normal",
  17807. height: math.unit(8, "feet"),
  17808. default: true
  17809. },
  17810. ]
  17811. ))
  17812. characterMakers.push(() => makeCharacter(
  17813. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17814. {
  17815. front: {
  17816. height: math.unit(6, "feet"),
  17817. weight: math.unit(150, "lb"),
  17818. name: "Front",
  17819. image: {
  17820. source: "./media/characters/adinia/front.svg",
  17821. extra: 1845 / 1672,
  17822. bottom: 0.02
  17823. }
  17824. },
  17825. back: {
  17826. height: math.unit(6, "feet"),
  17827. weight: math.unit(150, "lb"),
  17828. name: "Back",
  17829. image: {
  17830. source: "./media/characters/adinia/back.svg",
  17831. extra: 1845 / 1672,
  17832. bottom: 0.002
  17833. }
  17834. },
  17835. },
  17836. [
  17837. {
  17838. name: "Normal",
  17839. height: math.unit(11 + 5 / 12, "feet"),
  17840. default: true
  17841. },
  17842. ]
  17843. ))
  17844. characterMakers.push(() => makeCharacter(
  17845. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17846. {
  17847. front: {
  17848. height: math.unit(3, "meters"),
  17849. weight: math.unit(200, "kg"),
  17850. name: "Front",
  17851. image: {
  17852. source: "./media/characters/lykasa/front.svg",
  17853. extra: 1076 / 976,
  17854. bottom: 0.06
  17855. }
  17856. },
  17857. },
  17858. [
  17859. {
  17860. name: "Normal",
  17861. height: math.unit(3, "meters")
  17862. },
  17863. {
  17864. name: "Kaiju",
  17865. height: math.unit(120, "meters"),
  17866. default: true
  17867. },
  17868. {
  17869. name: "Mega Kaiju",
  17870. height: math.unit(240, "km")
  17871. },
  17872. {
  17873. name: "Giga Kaiju",
  17874. height: math.unit(400, "megameters")
  17875. },
  17876. {
  17877. name: "Tera Kaiju",
  17878. height: math.unit(800, "gigameters")
  17879. },
  17880. {
  17881. name: "Kaiju Dragon Goddess",
  17882. height: math.unit(26, "zettaparsecs")
  17883. },
  17884. ]
  17885. ))
  17886. characterMakers.push(() => makeCharacter(
  17887. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17888. {
  17889. side: {
  17890. height: math.unit(283 / 124 * 6, "feet"),
  17891. weight: math.unit(35000, "lb"),
  17892. name: "Side",
  17893. image: {
  17894. source: "./media/characters/malfaren/side.svg",
  17895. extra: 1310/529,
  17896. bottom: 24/1334
  17897. }
  17898. },
  17899. front: {
  17900. height: math.unit(22.36, "feet"),
  17901. weight: math.unit(35000, "lb"),
  17902. name: "Front",
  17903. image: {
  17904. source: "./media/characters/malfaren/front.svg",
  17905. extra: 1237/1115,
  17906. bottom: 32/1269
  17907. }
  17908. },
  17909. maw: {
  17910. height: math.unit(6.9, "feet"),
  17911. name: "Maw",
  17912. image: {
  17913. source: "./media/characters/malfaren/maw.svg"
  17914. }
  17915. },
  17916. dick: {
  17917. height: math.unit(6.19, "feet"),
  17918. name: "Dick",
  17919. image: {
  17920. source: "./media/characters/malfaren/dick.svg"
  17921. }
  17922. },
  17923. eye: {
  17924. height: math.unit(0.69, "feet"),
  17925. name: "Eye",
  17926. image: {
  17927. source: "./media/characters/malfaren/eye.svg"
  17928. }
  17929. },
  17930. },
  17931. [
  17932. {
  17933. name: "Big",
  17934. height: math.unit(283 / 162 * 6, "feet"),
  17935. },
  17936. {
  17937. name: "Bigger",
  17938. height: math.unit(283 / 124 * 6, "feet")
  17939. },
  17940. {
  17941. name: "Massive",
  17942. height: math.unit(283 / 92 * 6, "feet"),
  17943. default: true
  17944. },
  17945. {
  17946. name: "👀💦",
  17947. height: math.unit(283 / 73 * 6, "feet"),
  17948. },
  17949. ]
  17950. ))
  17951. characterMakers.push(() => makeCharacter(
  17952. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17953. {
  17954. front: {
  17955. height: math.unit(1.7, "m"),
  17956. weight: math.unit(70, "kg"),
  17957. name: "Front",
  17958. image: {
  17959. source: "./media/characters/kernel/front.svg",
  17960. extra: 222 / 210,
  17961. bottom: 0.007
  17962. }
  17963. },
  17964. },
  17965. [
  17966. {
  17967. name: "Nano",
  17968. height: math.unit(17, "micrometers")
  17969. },
  17970. {
  17971. name: "Micro",
  17972. height: math.unit(1.7, "mm")
  17973. },
  17974. {
  17975. name: "Small",
  17976. height: math.unit(1.7, "cm")
  17977. },
  17978. {
  17979. name: "Normal",
  17980. height: math.unit(1.7, "m"),
  17981. default: true
  17982. },
  17983. ]
  17984. ))
  17985. characterMakers.push(() => makeCharacter(
  17986. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17987. {
  17988. front: {
  17989. height: math.unit(1.75, "meters"),
  17990. weight: math.unit(65, "kg"),
  17991. name: "Front",
  17992. image: {
  17993. source: "./media/characters/jayne-folest/front.svg",
  17994. extra: 2115 / 2007,
  17995. bottom: 0.02
  17996. }
  17997. },
  17998. back: {
  17999. height: math.unit(1.75, "meters"),
  18000. weight: math.unit(65, "kg"),
  18001. name: "Back",
  18002. image: {
  18003. source: "./media/characters/jayne-folest/back.svg",
  18004. extra: 2115 / 2007,
  18005. bottom: 0.005
  18006. }
  18007. },
  18008. frontClothed: {
  18009. height: math.unit(1.75, "meters"),
  18010. weight: math.unit(65, "kg"),
  18011. name: "Front (Clothed)",
  18012. image: {
  18013. source: "./media/characters/jayne-folest/front-clothed.svg",
  18014. extra: 2115 / 2007,
  18015. bottom: 0.035
  18016. }
  18017. },
  18018. hand: {
  18019. height: math.unit(1 / 1.260, "feet"),
  18020. name: "Hand",
  18021. image: {
  18022. source: "./media/characters/jayne-folest/hand.svg"
  18023. }
  18024. },
  18025. foot: {
  18026. height: math.unit(1 / 0.918, "feet"),
  18027. name: "Foot",
  18028. image: {
  18029. source: "./media/characters/jayne-folest/foot.svg"
  18030. }
  18031. },
  18032. },
  18033. [
  18034. {
  18035. name: "Micro",
  18036. height: math.unit(4, "cm")
  18037. },
  18038. {
  18039. name: "Normal",
  18040. height: math.unit(1.75, "meters")
  18041. },
  18042. {
  18043. name: "Macro",
  18044. height: math.unit(47.5, "meters"),
  18045. default: true
  18046. },
  18047. ]
  18048. ))
  18049. characterMakers.push(() => makeCharacter(
  18050. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18051. {
  18052. front: {
  18053. height: math.unit(180, "cm"),
  18054. weight: math.unit(70, "kg"),
  18055. name: "Front",
  18056. image: {
  18057. source: "./media/characters/algier/front.svg",
  18058. extra: 596 / 572,
  18059. bottom: 0.04
  18060. }
  18061. },
  18062. back: {
  18063. height: math.unit(180, "cm"),
  18064. weight: math.unit(70, "kg"),
  18065. name: "Back",
  18066. image: {
  18067. source: "./media/characters/algier/back.svg",
  18068. extra: 596 / 572,
  18069. bottom: 0.025
  18070. }
  18071. },
  18072. frontdressed: {
  18073. height: math.unit(180, "cm"),
  18074. weight: math.unit(150, "kg"),
  18075. name: "Front-dressed",
  18076. image: {
  18077. source: "./media/characters/algier/front-dressed.svg",
  18078. extra: 596 / 572,
  18079. bottom: 0.038
  18080. }
  18081. },
  18082. },
  18083. [
  18084. {
  18085. name: "Micro",
  18086. height: math.unit(5, "cm")
  18087. },
  18088. {
  18089. name: "Normal",
  18090. height: math.unit(180, "cm"),
  18091. default: true
  18092. },
  18093. {
  18094. name: "Macro",
  18095. height: math.unit(64, "m")
  18096. },
  18097. ]
  18098. ))
  18099. characterMakers.push(() => makeCharacter(
  18100. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18101. {
  18102. upright: {
  18103. height: math.unit(7, "feet"),
  18104. weight: math.unit(300, "lb"),
  18105. name: "Upright",
  18106. image: {
  18107. source: "./media/characters/pretzel/upright.svg",
  18108. extra: 534 / 522,
  18109. bottom: 0.065
  18110. }
  18111. },
  18112. sprawling: {
  18113. height: math.unit(3.75, "feet"),
  18114. weight: math.unit(300, "lb"),
  18115. name: "Sprawling",
  18116. image: {
  18117. source: "./media/characters/pretzel/sprawling.svg",
  18118. extra: 314 / 281,
  18119. bottom: 0.1
  18120. }
  18121. },
  18122. tongue: {
  18123. height: math.unit(2, "feet"),
  18124. name: "Tongue",
  18125. image: {
  18126. source: "./media/characters/pretzel/tongue.svg"
  18127. }
  18128. },
  18129. },
  18130. [
  18131. {
  18132. name: "Normal",
  18133. height: math.unit(7, "feet"),
  18134. default: true
  18135. },
  18136. {
  18137. name: "Oversized",
  18138. height: math.unit(15, "feet")
  18139. },
  18140. {
  18141. name: "Huge",
  18142. height: math.unit(30, "feet")
  18143. },
  18144. {
  18145. name: "Macro",
  18146. height: math.unit(250, "feet")
  18147. },
  18148. ]
  18149. ))
  18150. characterMakers.push(() => makeCharacter(
  18151. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18152. {
  18153. sideFront: {
  18154. height: math.unit(5 + 2 / 12, "feet"),
  18155. weight: math.unit(120, "lb"),
  18156. name: "Front Side",
  18157. image: {
  18158. source: "./media/characters/roxi/side-front.svg",
  18159. extra: 2924 / 2717,
  18160. bottom: 0.08
  18161. }
  18162. },
  18163. sideBack: {
  18164. height: math.unit(5 + 2 / 12, "feet"),
  18165. weight: math.unit(120, "lb"),
  18166. name: "Back Side",
  18167. image: {
  18168. source: "./media/characters/roxi/side-back.svg",
  18169. extra: 2904 / 2693,
  18170. bottom: 0.06
  18171. }
  18172. },
  18173. front: {
  18174. height: math.unit(5 + 2 / 12, "feet"),
  18175. weight: math.unit(120, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/roxi/front.svg",
  18179. extra: 2028 / 1907,
  18180. bottom: 0.01
  18181. }
  18182. },
  18183. frontAlt: {
  18184. height: math.unit(5 + 2 / 12, "feet"),
  18185. weight: math.unit(120, "lb"),
  18186. name: "Front (Alt)",
  18187. image: {
  18188. source: "./media/characters/roxi/front-alt.svg",
  18189. extra: 1828 / 1798,
  18190. bottom: 0.01
  18191. }
  18192. },
  18193. sitting: {
  18194. height: math.unit(2.8, "feet"),
  18195. weight: math.unit(120, "lb"),
  18196. name: "Sitting",
  18197. image: {
  18198. source: "./media/characters/roxi/sitting.svg",
  18199. extra: 2660 / 2462,
  18200. bottom: 0.1
  18201. }
  18202. },
  18203. },
  18204. [
  18205. {
  18206. name: "Normal",
  18207. height: math.unit(5 + 2 / 12, "feet"),
  18208. default: true
  18209. },
  18210. ]
  18211. ))
  18212. characterMakers.push(() => makeCharacter(
  18213. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18214. {
  18215. side: {
  18216. height: math.unit(55, "feet"),
  18217. weight: math.unit(153, "tons"),
  18218. name: "Side",
  18219. image: {
  18220. source: "./media/characters/shadow/side.svg",
  18221. extra: 701 / 628,
  18222. bottom: 0.02
  18223. }
  18224. },
  18225. flying: {
  18226. height: math.unit(145, "feet"),
  18227. weight: math.unit(153, "tons"),
  18228. name: "Flying",
  18229. image: {
  18230. source: "./media/characters/shadow/flying.svg"
  18231. }
  18232. },
  18233. },
  18234. [
  18235. {
  18236. name: "Normal",
  18237. height: math.unit(55, "feet"),
  18238. default: true
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(6, "feet"),
  18247. weight: math.unit(200, "lb"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/marcie/front.svg",
  18251. extra: 960 / 876,
  18252. bottom: 58 / 1017.87
  18253. }
  18254. },
  18255. },
  18256. [
  18257. {
  18258. name: "Macro",
  18259. height: math.unit(1, "mile"),
  18260. default: true
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18266. {
  18267. front: {
  18268. height: math.unit(7, "feet"),
  18269. weight: math.unit(200, "lb"),
  18270. name: "Front",
  18271. image: {
  18272. source: "./media/characters/kachina/front.svg",
  18273. extra: 1290.68 / 1119,
  18274. bottom: 36.5 / 1327.18
  18275. }
  18276. },
  18277. },
  18278. [
  18279. {
  18280. name: "Normal",
  18281. height: math.unit(7, "feet"),
  18282. default: true
  18283. },
  18284. ]
  18285. ))
  18286. characterMakers.push(() => makeCharacter(
  18287. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18288. {
  18289. looking: {
  18290. height: math.unit(2, "meters"),
  18291. weight: math.unit(300, "kg"),
  18292. name: "Looking",
  18293. image: {
  18294. source: "./media/characters/kash/looking.svg",
  18295. extra: 474 / 344,
  18296. bottom: 0.03
  18297. }
  18298. },
  18299. side: {
  18300. height: math.unit(2, "meters"),
  18301. weight: math.unit(300, "kg"),
  18302. name: "Side",
  18303. image: {
  18304. source: "./media/characters/kash/side.svg",
  18305. extra: 302 / 251,
  18306. bottom: 0.03
  18307. }
  18308. },
  18309. front: {
  18310. height: math.unit(2, "meters"),
  18311. weight: math.unit(300, "kg"),
  18312. name: "Front",
  18313. image: {
  18314. source: "./media/characters/kash/front.svg",
  18315. extra: 495 / 360,
  18316. bottom: 0.015
  18317. }
  18318. },
  18319. },
  18320. [
  18321. {
  18322. name: "Normal",
  18323. height: math.unit(2, "meters"),
  18324. default: true
  18325. },
  18326. {
  18327. name: "Big",
  18328. height: math.unit(3, "meters")
  18329. },
  18330. {
  18331. name: "Large",
  18332. height: math.unit(5, "meters")
  18333. },
  18334. ]
  18335. ))
  18336. characterMakers.push(() => makeCharacter(
  18337. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18338. {
  18339. feeding: {
  18340. height: math.unit(6.7, "feet"),
  18341. weight: math.unit(350, "lb"),
  18342. name: "Feeding",
  18343. image: {
  18344. source: "./media/characters/lalim/feeding.svg",
  18345. }
  18346. },
  18347. },
  18348. [
  18349. {
  18350. name: "Normal",
  18351. height: math.unit(6.7, "feet"),
  18352. default: true
  18353. },
  18354. ]
  18355. ))
  18356. characterMakers.push(() => makeCharacter(
  18357. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18358. {
  18359. front: {
  18360. height: math.unit(9.5, "feet"),
  18361. weight: math.unit(600, "lb"),
  18362. name: "Front",
  18363. image: {
  18364. source: "./media/characters/de'vout/front.svg",
  18365. extra: 1443 / 1328,
  18366. bottom: 0.025
  18367. }
  18368. },
  18369. back: {
  18370. height: math.unit(9.5, "feet"),
  18371. weight: math.unit(600, "lb"),
  18372. name: "Back",
  18373. image: {
  18374. source: "./media/characters/de'vout/back.svg",
  18375. extra: 1443 / 1328
  18376. }
  18377. },
  18378. frontDressed: {
  18379. height: math.unit(9.5, "feet"),
  18380. weight: math.unit(600, "lb"),
  18381. name: "Front (Dressed",
  18382. image: {
  18383. source: "./media/characters/de'vout/front-dressed.svg",
  18384. extra: 1443 / 1328,
  18385. bottom: 0.025
  18386. }
  18387. },
  18388. backDressed: {
  18389. height: math.unit(9.5, "feet"),
  18390. weight: math.unit(600, "lb"),
  18391. name: "Back (Dressed",
  18392. image: {
  18393. source: "./media/characters/de'vout/back-dressed.svg",
  18394. extra: 1443 / 1328
  18395. }
  18396. },
  18397. },
  18398. [
  18399. {
  18400. name: "Normal",
  18401. height: math.unit(9.5, "feet"),
  18402. default: true
  18403. },
  18404. ]
  18405. ))
  18406. characterMakers.push(() => makeCharacter(
  18407. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18408. {
  18409. front: {
  18410. height: math.unit(8, "feet"),
  18411. weight: math.unit(225, "lb"),
  18412. name: "Front",
  18413. image: {
  18414. source: "./media/characters/talana/front.svg",
  18415. extra: 1410 / 1300,
  18416. bottom: 0.015
  18417. }
  18418. },
  18419. frontDressed: {
  18420. height: math.unit(8, "feet"),
  18421. weight: math.unit(225, "lb"),
  18422. name: "Front (Dressed",
  18423. image: {
  18424. source: "./media/characters/talana/front-dressed.svg",
  18425. extra: 1410 / 1300,
  18426. bottom: 0.015
  18427. }
  18428. },
  18429. },
  18430. [
  18431. {
  18432. name: "Normal",
  18433. height: math.unit(8, "feet"),
  18434. default: true
  18435. },
  18436. ]
  18437. ))
  18438. characterMakers.push(() => makeCharacter(
  18439. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18440. {
  18441. side: {
  18442. height: math.unit(7.2, "feet"),
  18443. weight: math.unit(150, "lb"),
  18444. name: "Side",
  18445. image: {
  18446. source: "./media/characters/xeauvok/side.svg",
  18447. extra: 1975 / 1523,
  18448. bottom: 0.07
  18449. }
  18450. },
  18451. },
  18452. [
  18453. {
  18454. name: "Normal",
  18455. height: math.unit(7.2, "feet"),
  18456. default: true
  18457. },
  18458. ]
  18459. ))
  18460. characterMakers.push(() => makeCharacter(
  18461. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18462. {
  18463. side: {
  18464. height: math.unit(10, "feet"),
  18465. weight: math.unit(900, "kg"),
  18466. name: "Side",
  18467. image: {
  18468. source: "./media/characters/zara/side.svg",
  18469. extra: 504 / 498
  18470. }
  18471. },
  18472. },
  18473. [
  18474. {
  18475. name: "Normal",
  18476. height: math.unit(10, "feet"),
  18477. default: true
  18478. },
  18479. ]
  18480. ))
  18481. characterMakers.push(() => makeCharacter(
  18482. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18483. {
  18484. side: {
  18485. height: math.unit(6, "feet"),
  18486. weight: math.unit(150, "lb"),
  18487. name: "Side",
  18488. image: {
  18489. source: "./media/characters/richard-dragon/side.svg",
  18490. extra: 845 / 340,
  18491. bottom: 0.017
  18492. }
  18493. },
  18494. maw: {
  18495. height: math.unit(2.97, "feet"),
  18496. name: "Maw",
  18497. image: {
  18498. source: "./media/characters/richard-dragon/maw.svg"
  18499. }
  18500. },
  18501. },
  18502. [
  18503. ]
  18504. ))
  18505. characterMakers.push(() => makeCharacter(
  18506. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18507. {
  18508. front: {
  18509. height: math.unit(4, "feet"),
  18510. weight: math.unit(100, "lb"),
  18511. name: "Front",
  18512. image: {
  18513. source: "./media/characters/richard-smeargle/front.svg",
  18514. extra: 2952 / 2820,
  18515. bottom: 0.028
  18516. }
  18517. },
  18518. },
  18519. [
  18520. {
  18521. name: "Normal",
  18522. height: math.unit(4, "feet"),
  18523. default: true
  18524. },
  18525. {
  18526. name: "Dynamax",
  18527. height: math.unit(20, "meters")
  18528. },
  18529. ]
  18530. ))
  18531. characterMakers.push(() => makeCharacter(
  18532. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18533. {
  18534. front: {
  18535. height: math.unit(6, "feet"),
  18536. weight: math.unit(110, "lb"),
  18537. name: "Front",
  18538. image: {
  18539. source: "./media/characters/klay/front.svg",
  18540. extra: 962 / 883,
  18541. bottom: 0.04
  18542. }
  18543. },
  18544. back: {
  18545. height: math.unit(6, "feet"),
  18546. weight: math.unit(110, "lb"),
  18547. name: "Back",
  18548. image: {
  18549. source: "./media/characters/klay/back.svg",
  18550. extra: 962 / 883
  18551. }
  18552. },
  18553. beans: {
  18554. height: math.unit(1.15, "feet"),
  18555. name: "Beans",
  18556. image: {
  18557. source: "./media/characters/klay/beans.svg"
  18558. }
  18559. },
  18560. },
  18561. [
  18562. {
  18563. name: "Micro",
  18564. height: math.unit(6, "inches")
  18565. },
  18566. {
  18567. name: "Mini",
  18568. height: math.unit(3, "feet")
  18569. },
  18570. {
  18571. name: "Normal",
  18572. height: math.unit(6, "feet"),
  18573. default: true
  18574. },
  18575. {
  18576. name: "Big",
  18577. height: math.unit(25, "feet")
  18578. },
  18579. {
  18580. name: "Macro",
  18581. height: math.unit(100, "feet")
  18582. },
  18583. {
  18584. name: "Megamacro",
  18585. height: math.unit(400, "feet")
  18586. },
  18587. ]
  18588. ))
  18589. characterMakers.push(() => makeCharacter(
  18590. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18591. {
  18592. front: {
  18593. height: math.unit(6, "feet"),
  18594. weight: math.unit(160, "lb"),
  18595. name: "Front",
  18596. image: {
  18597. source: "./media/characters/marcus/front.svg",
  18598. extra: 734 / 676,
  18599. bottom: 0.03
  18600. }
  18601. },
  18602. },
  18603. [
  18604. {
  18605. name: "Little",
  18606. height: math.unit(6, "feet")
  18607. },
  18608. {
  18609. name: "Normal",
  18610. height: math.unit(110, "feet"),
  18611. default: true
  18612. },
  18613. {
  18614. name: "Macro",
  18615. height: math.unit(250, "feet")
  18616. },
  18617. {
  18618. name: "Megamacro",
  18619. height: math.unit(1000, "feet")
  18620. },
  18621. ]
  18622. ))
  18623. characterMakers.push(() => makeCharacter(
  18624. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18625. {
  18626. front: {
  18627. height: math.unit(7, "feet"),
  18628. weight: math.unit(275, "lb"),
  18629. name: "Front",
  18630. image: {
  18631. source: "./media/characters/claude-delroute/front.svg",
  18632. extra: 902/827,
  18633. bottom: 26/928
  18634. }
  18635. },
  18636. side: {
  18637. height: math.unit(7, "feet"),
  18638. weight: math.unit(275, "lb"),
  18639. name: "Side",
  18640. image: {
  18641. source: "./media/characters/claude-delroute/side.svg",
  18642. extra: 908/853,
  18643. bottom: 16/924
  18644. }
  18645. },
  18646. back: {
  18647. height: math.unit(7, "feet"),
  18648. weight: math.unit(275, "lb"),
  18649. name: "Back",
  18650. image: {
  18651. source: "./media/characters/claude-delroute/back.svg",
  18652. extra: 911/829,
  18653. bottom: 18/929
  18654. }
  18655. },
  18656. maw: {
  18657. height: math.unit(0.6407, "meters"),
  18658. name: "Maw",
  18659. image: {
  18660. source: "./media/characters/claude-delroute/maw.svg"
  18661. }
  18662. },
  18663. },
  18664. [
  18665. {
  18666. name: "Normal",
  18667. height: math.unit(7, "feet"),
  18668. default: true
  18669. },
  18670. {
  18671. name: "Lorge",
  18672. height: math.unit(20, "feet")
  18673. },
  18674. ]
  18675. ))
  18676. characterMakers.push(() => makeCharacter(
  18677. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18678. {
  18679. front: {
  18680. height: math.unit(8 + 4 / 12, "feet"),
  18681. weight: math.unit(600, "lb"),
  18682. name: "Front",
  18683. image: {
  18684. source: "./media/characters/dragonien/front.svg",
  18685. extra: 100 / 94,
  18686. bottom: 3.3 / 103.3445
  18687. }
  18688. },
  18689. back: {
  18690. height: math.unit(8 + 4 / 12, "feet"),
  18691. weight: math.unit(600, "lb"),
  18692. name: "Back",
  18693. image: {
  18694. source: "./media/characters/dragonien/back.svg",
  18695. extra: 776 / 746,
  18696. bottom: 6.4 / 782.0616
  18697. }
  18698. },
  18699. foot: {
  18700. height: math.unit(1.54, "feet"),
  18701. name: "Foot",
  18702. image: {
  18703. source: "./media/characters/dragonien/foot.svg",
  18704. }
  18705. },
  18706. },
  18707. [
  18708. {
  18709. name: "Normal",
  18710. height: math.unit(8 + 4 / 12, "feet"),
  18711. default: true
  18712. },
  18713. {
  18714. name: "Macro",
  18715. height: math.unit(200, "feet")
  18716. },
  18717. {
  18718. name: "Megamacro",
  18719. height: math.unit(1, "mile")
  18720. },
  18721. {
  18722. name: "Gigamacro",
  18723. height: math.unit(1000, "miles")
  18724. },
  18725. ]
  18726. ))
  18727. characterMakers.push(() => makeCharacter(
  18728. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18729. {
  18730. front: {
  18731. height: math.unit(5 + 2 / 12, "feet"),
  18732. weight: math.unit(110, "lb"),
  18733. name: "Front",
  18734. image: {
  18735. source: "./media/characters/desta/front.svg",
  18736. extra: 767 / 726,
  18737. bottom: 11.7 / 779
  18738. }
  18739. },
  18740. back: {
  18741. height: math.unit(5 + 2 / 12, "feet"),
  18742. weight: math.unit(110, "lb"),
  18743. name: "Back",
  18744. image: {
  18745. source: "./media/characters/desta/back.svg",
  18746. extra: 777 / 728,
  18747. bottom: 6 / 784
  18748. }
  18749. },
  18750. frontAlt: {
  18751. height: math.unit(5 + 2 / 12, "feet"),
  18752. weight: math.unit(110, "lb"),
  18753. name: "Front",
  18754. image: {
  18755. source: "./media/characters/desta/front-alt.svg",
  18756. extra: 1482 / 1417
  18757. }
  18758. },
  18759. side: {
  18760. height: math.unit(5 + 2 / 12, "feet"),
  18761. weight: math.unit(110, "lb"),
  18762. name: "Side",
  18763. image: {
  18764. source: "./media/characters/desta/side.svg",
  18765. extra: 2579 / 2491,
  18766. bottom: 0.053
  18767. }
  18768. },
  18769. },
  18770. [
  18771. {
  18772. name: "Micro",
  18773. height: math.unit(6, "inches")
  18774. },
  18775. {
  18776. name: "Normal",
  18777. height: math.unit(5 + 2 / 12, "feet"),
  18778. default: true
  18779. },
  18780. {
  18781. name: "Macro",
  18782. height: math.unit(62, "feet")
  18783. },
  18784. {
  18785. name: "Megamacro",
  18786. height: math.unit(1800, "feet")
  18787. },
  18788. ]
  18789. ))
  18790. characterMakers.push(() => makeCharacter(
  18791. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18792. {
  18793. front: {
  18794. height: math.unit(10, "feet"),
  18795. weight: math.unit(700, "lb"),
  18796. name: "Front",
  18797. image: {
  18798. source: "./media/characters/storm-alystar/front.svg",
  18799. extra: 2112 / 1898,
  18800. bottom: 0.034
  18801. }
  18802. },
  18803. },
  18804. [
  18805. {
  18806. name: "Micro",
  18807. height: math.unit(3.5, "inches")
  18808. },
  18809. {
  18810. name: "Normal",
  18811. height: math.unit(10, "feet"),
  18812. default: true
  18813. },
  18814. {
  18815. name: "Macro",
  18816. height: math.unit(400, "feet")
  18817. },
  18818. {
  18819. name: "Deific",
  18820. height: math.unit(60, "miles")
  18821. },
  18822. ]
  18823. ))
  18824. characterMakers.push(() => makeCharacter(
  18825. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18826. {
  18827. front: {
  18828. height: math.unit(2.35, "meters"),
  18829. weight: math.unit(119, "kg"),
  18830. name: "Front",
  18831. image: {
  18832. source: "./media/characters/ilia/front.svg",
  18833. extra: 1285 / 1255,
  18834. bottom: 0.06
  18835. }
  18836. },
  18837. },
  18838. [
  18839. {
  18840. name: "Normal",
  18841. height: math.unit(2.35, "meters")
  18842. },
  18843. {
  18844. name: "Macro",
  18845. height: math.unit(140, "meters"),
  18846. default: true
  18847. },
  18848. {
  18849. name: "Megamacro",
  18850. height: math.unit(100, "miles")
  18851. },
  18852. ]
  18853. ))
  18854. characterMakers.push(() => makeCharacter(
  18855. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18856. {
  18857. front: {
  18858. height: math.unit(6 + 5 / 12, "feet"),
  18859. weight: math.unit(190, "lb"),
  18860. name: "Front",
  18861. image: {
  18862. source: "./media/characters/kingdead/front.svg",
  18863. extra: 1228 / 1177
  18864. }
  18865. },
  18866. },
  18867. [
  18868. {
  18869. name: "Micro",
  18870. height: math.unit(7, "inches")
  18871. },
  18872. {
  18873. name: "Normal",
  18874. height: math.unit(6 + 5 / 12, "feet")
  18875. },
  18876. {
  18877. name: "Macro",
  18878. height: math.unit(150, "feet"),
  18879. default: true
  18880. },
  18881. {
  18882. name: "Megamacro",
  18883. height: math.unit(200, "miles")
  18884. },
  18885. ]
  18886. ))
  18887. characterMakers.push(() => makeCharacter(
  18888. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18889. {
  18890. front: {
  18891. height: math.unit(8, "feet"),
  18892. weight: math.unit(600, "lb"),
  18893. name: "Front",
  18894. image: {
  18895. source: "./media/characters/kyrehx/front.svg",
  18896. extra: 1195 / 1095,
  18897. bottom: 0.034
  18898. }
  18899. },
  18900. },
  18901. [
  18902. {
  18903. name: "Micro",
  18904. height: math.unit(2, "inches")
  18905. },
  18906. {
  18907. name: "Normal",
  18908. height: math.unit(8, "feet"),
  18909. default: true
  18910. },
  18911. {
  18912. name: "Macro",
  18913. height: math.unit(255, "feet")
  18914. },
  18915. ]
  18916. ))
  18917. characterMakers.push(() => makeCharacter(
  18918. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18919. {
  18920. front: {
  18921. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18922. weight: math.unit(184, "lb"),
  18923. name: "Front",
  18924. image: {
  18925. source: "./media/characters/xang/front.svg",
  18926. extra: 845 / 755
  18927. }
  18928. },
  18929. },
  18930. [
  18931. {
  18932. name: "Normal",
  18933. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18934. default: true
  18935. },
  18936. {
  18937. name: "Macro",
  18938. height: math.unit(0.935 * 146, "feet")
  18939. },
  18940. {
  18941. name: "Megamacro",
  18942. height: math.unit(0.935 * 3, "miles")
  18943. },
  18944. ]
  18945. ))
  18946. characterMakers.push(() => makeCharacter(
  18947. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18948. {
  18949. frontDressed: {
  18950. height: math.unit(5 + 7 / 12, "feet"),
  18951. weight: math.unit(140, "lb"),
  18952. name: "Front (Dressed)",
  18953. image: {
  18954. source: "./media/characters/doc-weardno/front-dressed.svg",
  18955. extra: 263 / 234
  18956. }
  18957. },
  18958. backDressed: {
  18959. height: math.unit(5 + 7 / 12, "feet"),
  18960. weight: math.unit(140, "lb"),
  18961. name: "Back (Dressed)",
  18962. image: {
  18963. source: "./media/characters/doc-weardno/back-dressed.svg",
  18964. extra: 266 / 238
  18965. }
  18966. },
  18967. front: {
  18968. height: math.unit(5 + 7 / 12, "feet"),
  18969. weight: math.unit(140, "lb"),
  18970. name: "Front",
  18971. image: {
  18972. source: "./media/characters/doc-weardno/front.svg",
  18973. extra: 254 / 233
  18974. }
  18975. },
  18976. },
  18977. [
  18978. {
  18979. name: "Micro",
  18980. height: math.unit(3, "inches")
  18981. },
  18982. {
  18983. name: "Normal",
  18984. height: math.unit(5 + 7 / 12, "feet"),
  18985. default: true
  18986. },
  18987. {
  18988. name: "Macro",
  18989. height: math.unit(25, "feet")
  18990. },
  18991. {
  18992. name: "Megamacro",
  18993. height: math.unit(2, "miles")
  18994. },
  18995. ]
  18996. ))
  18997. characterMakers.push(() => makeCharacter(
  18998. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18999. {
  19000. front: {
  19001. height: math.unit(6 + 2 / 12, "feet"),
  19002. weight: math.unit(153, "lb"),
  19003. name: "Front",
  19004. image: {
  19005. source: "./media/characters/seth-whilst/front.svg",
  19006. bottom: 0.07
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Micro",
  19013. height: math.unit(5, "inches")
  19014. },
  19015. {
  19016. name: "Normal",
  19017. height: math.unit(6 + 2 / 12, "feet"),
  19018. default: true
  19019. },
  19020. ]
  19021. ))
  19022. characterMakers.push(() => makeCharacter(
  19023. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19024. {
  19025. front: {
  19026. height: math.unit(3, "inches"),
  19027. weight: math.unit(8, "grams"),
  19028. name: "Front",
  19029. image: {
  19030. source: "./media/characters/pocket-jabari/front.svg",
  19031. extra: 1024 / 974,
  19032. bottom: 0.039
  19033. }
  19034. },
  19035. },
  19036. [
  19037. {
  19038. name: "Minimicro",
  19039. height: math.unit(8, "mm")
  19040. },
  19041. {
  19042. name: "Micro",
  19043. height: math.unit(3, "inches"),
  19044. default: true
  19045. },
  19046. {
  19047. name: "Normal",
  19048. height: math.unit(3, "feet")
  19049. },
  19050. ]
  19051. ))
  19052. characterMakers.push(() => makeCharacter(
  19053. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19054. {
  19055. front: {
  19056. height: math.unit(15, "feet"),
  19057. weight: math.unit(3280, "lb"),
  19058. name: "Front",
  19059. image: {
  19060. source: "./media/characters/sapphy/front.svg",
  19061. extra: 671 / 577,
  19062. bottom: 0.085
  19063. }
  19064. },
  19065. back: {
  19066. height: math.unit(15, "feet"),
  19067. weight: math.unit(3280, "lb"),
  19068. name: "Back",
  19069. image: {
  19070. source: "./media/characters/sapphy/back.svg",
  19071. extra: 631 / 607,
  19072. bottom: 0.045
  19073. }
  19074. },
  19075. },
  19076. [
  19077. {
  19078. name: "Normal",
  19079. height: math.unit(15, "feet")
  19080. },
  19081. {
  19082. name: "Casual Macro",
  19083. height: math.unit(120, "feet")
  19084. },
  19085. {
  19086. name: "Macro",
  19087. height: math.unit(2150, "feet"),
  19088. default: true
  19089. },
  19090. {
  19091. name: "Megamacro",
  19092. height: math.unit(8, "miles")
  19093. },
  19094. {
  19095. name: "Galaxy Mom",
  19096. height: math.unit(6, "megalightyears")
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19102. {
  19103. front: {
  19104. height: math.unit(6, "feet"),
  19105. weight: math.unit(170, "lb"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/kiro/front.svg",
  19109. extra: 1064 / 1012,
  19110. bottom: 0.052
  19111. }
  19112. },
  19113. },
  19114. [
  19115. {
  19116. name: "Micro",
  19117. height: math.unit(6, "inches")
  19118. },
  19119. {
  19120. name: "Normal",
  19121. height: math.unit(6, "feet"),
  19122. default: true
  19123. },
  19124. {
  19125. name: "Macro",
  19126. height: math.unit(72, "feet")
  19127. },
  19128. ]
  19129. ))
  19130. characterMakers.push(() => makeCharacter(
  19131. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19132. {
  19133. front: {
  19134. height: math.unit(5 + 9 / 12, "feet"),
  19135. weight: math.unit(175, "lb"),
  19136. name: "Front",
  19137. image: {
  19138. source: "./media/characters/irishfox/front.svg",
  19139. extra: 1912 / 1680,
  19140. bottom: 0.02
  19141. }
  19142. },
  19143. },
  19144. [
  19145. {
  19146. name: "Nano",
  19147. height: math.unit(1, "mm")
  19148. },
  19149. {
  19150. name: "Micro",
  19151. height: math.unit(2, "inches")
  19152. },
  19153. {
  19154. name: "Normal",
  19155. height: math.unit(5 + 9 / 12, "feet"),
  19156. default: true
  19157. },
  19158. {
  19159. name: "Macro",
  19160. height: math.unit(45, "feet")
  19161. },
  19162. ]
  19163. ))
  19164. characterMakers.push(() => makeCharacter(
  19165. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19166. {
  19167. front: {
  19168. height: math.unit(6 + 1 / 12, "feet"),
  19169. weight: math.unit(75, "lb"),
  19170. name: "Front",
  19171. image: {
  19172. source: "./media/characters/aronai-sieyes/front.svg",
  19173. extra: 1532/1450,
  19174. bottom: 42/1574
  19175. }
  19176. },
  19177. side: {
  19178. height: math.unit(6 + 1 / 12, "feet"),
  19179. weight: math.unit(75, "lb"),
  19180. name: "Side",
  19181. image: {
  19182. source: "./media/characters/aronai-sieyes/side.svg",
  19183. extra: 1422/1365,
  19184. bottom: 148/1570
  19185. }
  19186. },
  19187. back: {
  19188. height: math.unit(6 + 1 / 12, "feet"),
  19189. weight: math.unit(75, "lb"),
  19190. name: "Back",
  19191. image: {
  19192. source: "./media/characters/aronai-sieyes/back.svg",
  19193. extra: 1526/1464,
  19194. bottom: 51/1577
  19195. }
  19196. },
  19197. dressed: {
  19198. height: math.unit(6 + 1 / 12, "feet"),
  19199. weight: math.unit(75, "lb"),
  19200. name: "Dressed",
  19201. image: {
  19202. source: "./media/characters/aronai-sieyes/dressed.svg",
  19203. extra: 1559/1483,
  19204. bottom: 39/1598
  19205. }
  19206. },
  19207. slit: {
  19208. height: math.unit(1.3, "feet"),
  19209. name: "Slit",
  19210. image: {
  19211. source: "./media/characters/aronai-sieyes/slit.svg"
  19212. }
  19213. },
  19214. slitSpread: {
  19215. height: math.unit(0.9, "feet"),
  19216. name: "Slit (Spread)",
  19217. image: {
  19218. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19219. }
  19220. },
  19221. rump: {
  19222. height: math.unit(1.3, "feet"),
  19223. name: "Rump",
  19224. image: {
  19225. source: "./media/characters/aronai-sieyes/rump.svg"
  19226. }
  19227. },
  19228. maw: {
  19229. height: math.unit(1.25, "feet"),
  19230. name: "Maw",
  19231. image: {
  19232. source: "./media/characters/aronai-sieyes/maw.svg"
  19233. }
  19234. },
  19235. feral: {
  19236. height: math.unit(18, "feet"),
  19237. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19238. name: "Feral",
  19239. image: {
  19240. source: "./media/characters/aronai-sieyes/feral.svg",
  19241. extra: 1530 / 1240,
  19242. bottom: 0.035
  19243. }
  19244. },
  19245. },
  19246. [
  19247. {
  19248. name: "Micro",
  19249. height: math.unit(2, "inches")
  19250. },
  19251. {
  19252. name: "Normal",
  19253. height: math.unit(6 + 1 / 12, "feet"),
  19254. default: true
  19255. }
  19256. ]
  19257. ))
  19258. characterMakers.push(() => makeCharacter(
  19259. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19260. {
  19261. front: {
  19262. height: math.unit(12, "feet"),
  19263. weight: math.unit(410, "kg"),
  19264. name: "Front",
  19265. image: {
  19266. source: "./media/characters/xuna/front.svg",
  19267. extra: 2184 / 1980
  19268. }
  19269. },
  19270. side: {
  19271. height: math.unit(12, "feet"),
  19272. weight: math.unit(410, "kg"),
  19273. name: "Side",
  19274. image: {
  19275. source: "./media/characters/xuna/side.svg",
  19276. extra: 2184 / 1980
  19277. }
  19278. },
  19279. back: {
  19280. height: math.unit(12, "feet"),
  19281. weight: math.unit(410, "kg"),
  19282. name: "Back",
  19283. image: {
  19284. source: "./media/characters/xuna/back.svg",
  19285. extra: 2184 / 1980
  19286. }
  19287. },
  19288. },
  19289. [
  19290. {
  19291. name: "Nano glow",
  19292. height: math.unit(10, "nm")
  19293. },
  19294. {
  19295. name: "Micro floof",
  19296. height: math.unit(0.3, "m")
  19297. },
  19298. {
  19299. name: "Huggable softy boi",
  19300. height: math.unit(3.6576, "m"),
  19301. default: true
  19302. },
  19303. {
  19304. name: "Admirable floof",
  19305. height: math.unit(80, "meters")
  19306. },
  19307. {
  19308. name: "Gentle macro",
  19309. height: math.unit(300, "meters")
  19310. },
  19311. {
  19312. name: "Very careful floof",
  19313. height: math.unit(3200, "meters")
  19314. },
  19315. {
  19316. name: "The mega floof",
  19317. height: math.unit(36000, "meters")
  19318. },
  19319. {
  19320. name: "Giga-fur-Wicker",
  19321. height: math.unit(4800000, "meters")
  19322. },
  19323. {
  19324. name: "Licky world",
  19325. height: math.unit(20000000, "meters")
  19326. },
  19327. {
  19328. name: "Floofy cyan sun",
  19329. height: math.unit(1500000000, "meters")
  19330. },
  19331. {
  19332. name: "Milky Wicker",
  19333. height: math.unit(1000000000000000000000, "meters")
  19334. },
  19335. {
  19336. name: "The observing Wicker",
  19337. height: math.unit(999999999999999999999999999, "meters")
  19338. },
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19343. {
  19344. front: {
  19345. height: math.unit(5 + 9 / 12, "feet"),
  19346. weight: math.unit(150, "lb"),
  19347. name: "Front",
  19348. image: {
  19349. source: "./media/characters/arokha-sieyes/front.svg",
  19350. extra: 1425 / 1284,
  19351. bottom: 0.05
  19352. }
  19353. },
  19354. },
  19355. [
  19356. {
  19357. name: "Normal",
  19358. height: math.unit(5 + 9 / 12, "feet")
  19359. },
  19360. {
  19361. name: "Macro",
  19362. height: math.unit(30, "meters"),
  19363. default: true
  19364. },
  19365. ]
  19366. ))
  19367. characterMakers.push(() => makeCharacter(
  19368. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19369. {
  19370. front: {
  19371. height: math.unit(6, "feet"),
  19372. weight: math.unit(180, "lb"),
  19373. name: "Front",
  19374. image: {
  19375. source: "./media/characters/arokh-sieyes/front.svg",
  19376. extra: 1830 / 1769,
  19377. bottom: 0.01
  19378. }
  19379. },
  19380. },
  19381. [
  19382. {
  19383. name: "Normal",
  19384. height: math.unit(6, "feet")
  19385. },
  19386. {
  19387. name: "Macro",
  19388. height: math.unit(30, "meters"),
  19389. default: true
  19390. },
  19391. ]
  19392. ))
  19393. characterMakers.push(() => makeCharacter(
  19394. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19395. {
  19396. side: {
  19397. height: math.unit(13 + 1 / 12, "feet"),
  19398. weight: math.unit(8.5, "tonnes"),
  19399. name: "Side",
  19400. image: {
  19401. source: "./media/characters/goldeneye/side.svg",
  19402. extra: 1182 / 778,
  19403. bottom: 0.067
  19404. }
  19405. },
  19406. paw: {
  19407. height: math.unit(3.4, "feet"),
  19408. name: "Paw",
  19409. image: {
  19410. source: "./media/characters/goldeneye/paw.svg"
  19411. }
  19412. },
  19413. },
  19414. [
  19415. {
  19416. name: "Normal",
  19417. height: math.unit(13 + 1 / 12, "feet"),
  19418. default: true
  19419. },
  19420. ]
  19421. ))
  19422. characterMakers.push(() => makeCharacter(
  19423. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19424. {
  19425. front: {
  19426. height: math.unit(6 + 1 / 12, "feet"),
  19427. weight: math.unit(210, "lb"),
  19428. name: "Front",
  19429. image: {
  19430. source: "./media/characters/leonardo-lycheborne/front.svg",
  19431. extra: 776/723,
  19432. bottom: 34/810
  19433. }
  19434. },
  19435. side: {
  19436. height: math.unit(6 + 1 / 12, "feet"),
  19437. weight: math.unit(210, "lb"),
  19438. name: "Side",
  19439. image: {
  19440. source: "./media/characters/leonardo-lycheborne/side.svg",
  19441. extra: 780/728,
  19442. bottom: 12/792
  19443. }
  19444. },
  19445. back: {
  19446. height: math.unit(6 + 1 / 12, "feet"),
  19447. weight: math.unit(210, "lb"),
  19448. name: "Back",
  19449. image: {
  19450. source: "./media/characters/leonardo-lycheborne/back.svg",
  19451. extra: 775/721,
  19452. bottom: 17/792
  19453. }
  19454. },
  19455. hand: {
  19456. height: math.unit(1.08, "feet"),
  19457. name: "Hand",
  19458. image: {
  19459. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19460. }
  19461. },
  19462. foot: {
  19463. height: math.unit(1.32, "feet"),
  19464. name: "Foot",
  19465. image: {
  19466. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19467. }
  19468. },
  19469. maw: {
  19470. height: math.unit(1, "feet"),
  19471. name: "Maw",
  19472. image: {
  19473. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19474. }
  19475. },
  19476. were: {
  19477. height: math.unit(20, "feet"),
  19478. weight: math.unit(7800, "lb"),
  19479. name: "Were",
  19480. image: {
  19481. source: "./media/characters/leonardo-lycheborne/were.svg",
  19482. extra: 1224/1165,
  19483. bottom: 72/1296
  19484. }
  19485. },
  19486. feral: {
  19487. height: math.unit(7.5, "feet"),
  19488. weight: math.unit(600, "lb"),
  19489. name: "Feral",
  19490. image: {
  19491. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19492. extra: 797/702,
  19493. bottom: 139/936
  19494. }
  19495. },
  19496. taur: {
  19497. height: math.unit(11, "feet"),
  19498. weight: math.unit(3300, "lb"),
  19499. name: "Taur",
  19500. image: {
  19501. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19502. extra: 1271/1197,
  19503. bottom: 47/1318
  19504. }
  19505. },
  19506. barghest: {
  19507. height: math.unit(11, "feet"),
  19508. weight: math.unit(1300, "lb"),
  19509. name: "Barghest",
  19510. image: {
  19511. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19512. extra: 1291/1204,
  19513. bottom: 37/1328
  19514. }
  19515. },
  19516. dick: {
  19517. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19518. name: "Dick",
  19519. image: {
  19520. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19521. }
  19522. },
  19523. dickWere: {
  19524. height: math.unit((20) / 3.8, "feet"),
  19525. name: "Dick (Were)",
  19526. image: {
  19527. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19528. }
  19529. },
  19530. },
  19531. [
  19532. {
  19533. name: "Normal",
  19534. height: math.unit(6 + 1 / 12, "feet"),
  19535. default: true
  19536. },
  19537. ]
  19538. ))
  19539. characterMakers.push(() => makeCharacter(
  19540. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19541. {
  19542. front: {
  19543. height: math.unit(10, "feet"),
  19544. weight: math.unit(350, "lb"),
  19545. name: "Front",
  19546. image: {
  19547. source: "./media/characters/jet/front.svg",
  19548. extra: 2050 / 1980,
  19549. bottom: 0.013
  19550. }
  19551. },
  19552. back: {
  19553. height: math.unit(10, "feet"),
  19554. weight: math.unit(350, "lb"),
  19555. name: "Back",
  19556. image: {
  19557. source: "./media/characters/jet/back.svg",
  19558. extra: 2050 / 1980,
  19559. bottom: 0.013
  19560. }
  19561. },
  19562. },
  19563. [
  19564. {
  19565. name: "Micro",
  19566. height: math.unit(6, "inches")
  19567. },
  19568. {
  19569. name: "Normal",
  19570. height: math.unit(10, "feet"),
  19571. default: true
  19572. },
  19573. {
  19574. name: "Macro",
  19575. height: math.unit(100, "feet")
  19576. },
  19577. ]
  19578. ))
  19579. characterMakers.push(() => makeCharacter(
  19580. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19581. {
  19582. front: {
  19583. height: math.unit(15, "feet"),
  19584. weight: math.unit(2800, "lb"),
  19585. name: "Front",
  19586. image: {
  19587. source: "./media/characters/tanarath/front.svg",
  19588. extra: 2392 / 2220,
  19589. bottom: 0.03
  19590. }
  19591. },
  19592. back: {
  19593. height: math.unit(15, "feet"),
  19594. weight: math.unit(2800, "lb"),
  19595. name: "Back",
  19596. image: {
  19597. source: "./media/characters/tanarath/back.svg",
  19598. extra: 2392 / 2220,
  19599. bottom: 0.03
  19600. }
  19601. },
  19602. },
  19603. [
  19604. {
  19605. name: "Normal",
  19606. height: math.unit(15, "feet"),
  19607. default: true
  19608. },
  19609. ]
  19610. ))
  19611. characterMakers.push(() => makeCharacter(
  19612. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19613. {
  19614. front: {
  19615. height: math.unit(7 + 1 / 12, "feet"),
  19616. weight: math.unit(175, "lb"),
  19617. name: "Front",
  19618. image: {
  19619. source: "./media/characters/patty-cattybatty/front.svg",
  19620. extra: 908 / 874,
  19621. bottom: 0.025
  19622. }
  19623. },
  19624. },
  19625. [
  19626. {
  19627. name: "Micro",
  19628. height: math.unit(1, "inch")
  19629. },
  19630. {
  19631. name: "Normal",
  19632. height: math.unit(7 + 1 / 12, "feet")
  19633. },
  19634. {
  19635. name: "Mini Macro",
  19636. height: math.unit(155, "feet")
  19637. },
  19638. {
  19639. name: "Macro",
  19640. height: math.unit(1077, "feet")
  19641. },
  19642. {
  19643. name: "Mega Macro",
  19644. height: math.unit(47650, "feet"),
  19645. default: true
  19646. },
  19647. {
  19648. name: "Giga Macro",
  19649. height: math.unit(440, "miles")
  19650. },
  19651. {
  19652. name: "Tera Macro",
  19653. height: math.unit(8700, "miles")
  19654. },
  19655. {
  19656. name: "Planetary Macro",
  19657. height: math.unit(32700, "miles")
  19658. },
  19659. {
  19660. name: "Solar Macro",
  19661. height: math.unit(550000, "miles")
  19662. },
  19663. {
  19664. name: "Celestial Macro",
  19665. height: math.unit(2.5, "AU")
  19666. },
  19667. ]
  19668. ))
  19669. characterMakers.push(() => makeCharacter(
  19670. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19671. {
  19672. front: {
  19673. height: math.unit(4 + 5 / 12, "feet"),
  19674. weight: math.unit(90, "lb"),
  19675. name: "Front",
  19676. image: {
  19677. source: "./media/characters/cappu/front.svg",
  19678. extra: 1247 / 1152,
  19679. bottom: 0.012
  19680. }
  19681. },
  19682. },
  19683. [
  19684. {
  19685. name: "Normal",
  19686. height: math.unit(4 + 5 / 12, "feet"),
  19687. default: true
  19688. },
  19689. ]
  19690. ))
  19691. characterMakers.push(() => makeCharacter(
  19692. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19693. {
  19694. frontDressed: {
  19695. height: math.unit(70, "cm"),
  19696. weight: math.unit(6, "kg"),
  19697. name: "Front (Dressed)",
  19698. image: {
  19699. source: "./media/characters/sebi/front-dressed.svg",
  19700. extra: 713.5 / 686.5,
  19701. bottom: 0.003
  19702. }
  19703. },
  19704. front: {
  19705. height: math.unit(70, "cm"),
  19706. weight: math.unit(5, "kg"),
  19707. name: "Front",
  19708. image: {
  19709. source: "./media/characters/sebi/front.svg",
  19710. extra: 713.5 / 686.5,
  19711. bottom: 0.003
  19712. }
  19713. }
  19714. },
  19715. [
  19716. {
  19717. name: "Normal",
  19718. height: math.unit(70, "cm"),
  19719. default: true
  19720. },
  19721. {
  19722. name: "Macro",
  19723. height: math.unit(8, "meters")
  19724. },
  19725. ]
  19726. ))
  19727. characterMakers.push(() => makeCharacter(
  19728. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19729. {
  19730. front: {
  19731. height: math.unit(6, "feet"),
  19732. weight: math.unit(150, "lb"),
  19733. name: "Front",
  19734. image: {
  19735. source: "./media/characters/typhek/front.svg",
  19736. extra: 1948 / 1929,
  19737. bottom: 0.025
  19738. }
  19739. },
  19740. side: {
  19741. height: math.unit(6, "feet"),
  19742. weight: math.unit(150, "lb"),
  19743. name: "Side",
  19744. image: {
  19745. source: "./media/characters/typhek/side.svg",
  19746. extra: 2034 / 2010,
  19747. bottom: 0.003
  19748. }
  19749. },
  19750. back: {
  19751. height: math.unit(6, "feet"),
  19752. weight: math.unit(150, "lb"),
  19753. name: "Back",
  19754. image: {
  19755. source: "./media/characters/typhek/back.svg",
  19756. extra: 2005 / 1978,
  19757. bottom: 0.004
  19758. }
  19759. },
  19760. palm: {
  19761. height: math.unit(1.2, "feet"),
  19762. name: "Palm",
  19763. image: {
  19764. source: "./media/characters/typhek/palm.svg"
  19765. }
  19766. },
  19767. fist: {
  19768. height: math.unit(1.1, "feet"),
  19769. name: "Fist",
  19770. image: {
  19771. source: "./media/characters/typhek/fist.svg"
  19772. }
  19773. },
  19774. foot: {
  19775. height: math.unit(1.57, "feet"),
  19776. name: "Foot",
  19777. image: {
  19778. source: "./media/characters/typhek/foot.svg"
  19779. }
  19780. },
  19781. sole: {
  19782. height: math.unit(2.05, "feet"),
  19783. name: "Sole",
  19784. image: {
  19785. source: "./media/characters/typhek/sole.svg"
  19786. }
  19787. },
  19788. },
  19789. [
  19790. {
  19791. name: "Macro",
  19792. height: math.unit(40, "stories"),
  19793. default: true
  19794. },
  19795. {
  19796. name: "Megamacro",
  19797. height: math.unit(1, "mile")
  19798. },
  19799. {
  19800. name: "Gigamacro",
  19801. height: math.unit(4000, "solarradii")
  19802. },
  19803. {
  19804. name: "Universal",
  19805. height: math.unit(1.1, "universes")
  19806. }
  19807. ]
  19808. ))
  19809. characterMakers.push(() => makeCharacter(
  19810. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19811. {
  19812. side: {
  19813. height: math.unit(5 + 7 / 12, "feet"),
  19814. weight: math.unit(150, "lb"),
  19815. name: "Side",
  19816. image: {
  19817. source: "./media/characters/kassy/side.svg",
  19818. extra: 1280 / 1225,
  19819. bottom: 0.002
  19820. }
  19821. },
  19822. front: {
  19823. height: math.unit(5 + 7 / 12, "feet"),
  19824. weight: math.unit(150, "lb"),
  19825. name: "Front",
  19826. image: {
  19827. source: "./media/characters/kassy/front.svg",
  19828. extra: 1280 / 1225,
  19829. bottom: 0.025
  19830. }
  19831. },
  19832. back: {
  19833. height: math.unit(5 + 7 / 12, "feet"),
  19834. weight: math.unit(150, "lb"),
  19835. name: "Back",
  19836. image: {
  19837. source: "./media/characters/kassy/back.svg",
  19838. extra: 1280 / 1225,
  19839. bottom: 0.002
  19840. }
  19841. },
  19842. foot: {
  19843. height: math.unit(1.266, "feet"),
  19844. name: "Foot",
  19845. image: {
  19846. source: "./media/characters/kassy/foot.svg"
  19847. }
  19848. },
  19849. },
  19850. [
  19851. {
  19852. name: "Normal",
  19853. height: math.unit(5 + 7 / 12, "feet")
  19854. },
  19855. {
  19856. name: "Macro",
  19857. height: math.unit(137, "feet"),
  19858. default: true
  19859. },
  19860. {
  19861. name: "Megamacro",
  19862. height: math.unit(1, "mile")
  19863. },
  19864. ]
  19865. ))
  19866. characterMakers.push(() => makeCharacter(
  19867. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19868. {
  19869. front: {
  19870. height: math.unit(6 + 1 / 12, "feet"),
  19871. weight: math.unit(200, "lb"),
  19872. name: "Front",
  19873. image: {
  19874. source: "./media/characters/neil/front.svg",
  19875. extra: 1326 / 1250,
  19876. bottom: 0.023
  19877. }
  19878. },
  19879. },
  19880. [
  19881. {
  19882. name: "Normal",
  19883. height: math.unit(6 + 1 / 12, "feet"),
  19884. default: true
  19885. },
  19886. {
  19887. name: "Macro",
  19888. height: math.unit(200, "feet")
  19889. },
  19890. ]
  19891. ))
  19892. characterMakers.push(() => makeCharacter(
  19893. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19894. {
  19895. front: {
  19896. height: math.unit(5 + 9 / 12, "feet"),
  19897. weight: math.unit(190, "lb"),
  19898. name: "Front",
  19899. image: {
  19900. source: "./media/characters/atticus/front.svg",
  19901. extra: 2934 / 2785,
  19902. bottom: 0.025
  19903. }
  19904. },
  19905. },
  19906. [
  19907. {
  19908. name: "Normal",
  19909. height: math.unit(5 + 9 / 12, "feet"),
  19910. default: true
  19911. },
  19912. {
  19913. name: "Macro",
  19914. height: math.unit(180, "feet")
  19915. },
  19916. ]
  19917. ))
  19918. characterMakers.push(() => makeCharacter(
  19919. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19920. {
  19921. side: {
  19922. height: math.unit(9, "feet"),
  19923. weight: math.unit(650, "lb"),
  19924. name: "Side",
  19925. image: {
  19926. source: "./media/characters/milo/side.svg",
  19927. extra: 2644 / 2310,
  19928. bottom: 0.032
  19929. }
  19930. },
  19931. },
  19932. [
  19933. {
  19934. name: "Normal",
  19935. height: math.unit(9, "feet"),
  19936. default: true
  19937. },
  19938. {
  19939. name: "Macro",
  19940. height: math.unit(300, "feet")
  19941. },
  19942. ]
  19943. ))
  19944. characterMakers.push(() => makeCharacter(
  19945. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19946. {
  19947. side: {
  19948. height: math.unit(8, "meters"),
  19949. weight: math.unit(90000, "kg"),
  19950. name: "Side",
  19951. image: {
  19952. source: "./media/characters/ijzer/side.svg",
  19953. extra: 2756 / 1600,
  19954. bottom: 0.01
  19955. }
  19956. },
  19957. },
  19958. [
  19959. {
  19960. name: "Small",
  19961. height: math.unit(3, "meters")
  19962. },
  19963. {
  19964. name: "Normal",
  19965. height: math.unit(8, "meters"),
  19966. default: true
  19967. },
  19968. {
  19969. name: "Normal+",
  19970. height: math.unit(10, "meters")
  19971. },
  19972. {
  19973. name: "Bigger",
  19974. height: math.unit(24, "meters")
  19975. },
  19976. {
  19977. name: "Huge",
  19978. height: math.unit(80, "meters")
  19979. },
  19980. ]
  19981. ))
  19982. characterMakers.push(() => makeCharacter(
  19983. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19984. {
  19985. front: {
  19986. height: math.unit(6 + 2 / 12, "feet"),
  19987. weight: math.unit(153, "lb"),
  19988. name: "Front",
  19989. image: {
  19990. source: "./media/characters/luca-cervicum/front.svg",
  19991. extra: 370 / 327,
  19992. bottom: 0.015
  19993. }
  19994. },
  19995. back: {
  19996. height: math.unit(6 + 2 / 12, "feet"),
  19997. weight: math.unit(153, "lb"),
  19998. name: "Back",
  19999. image: {
  20000. source: "./media/characters/luca-cervicum/back.svg",
  20001. extra: 367 / 333,
  20002. bottom: 0.005
  20003. }
  20004. },
  20005. frontGear: {
  20006. height: math.unit(6 + 2 / 12, "feet"),
  20007. weight: math.unit(173, "lb"),
  20008. name: "Front (Gear)",
  20009. image: {
  20010. source: "./media/characters/luca-cervicum/front-gear.svg",
  20011. extra: 377 / 333,
  20012. bottom: 0.006
  20013. }
  20014. },
  20015. },
  20016. [
  20017. {
  20018. name: "Normal",
  20019. height: math.unit(6 + 2 / 12, "feet"),
  20020. default: true
  20021. },
  20022. ]
  20023. ))
  20024. characterMakers.push(() => makeCharacter(
  20025. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20026. {
  20027. front: {
  20028. height: math.unit(6 + 1 / 12, "feet"),
  20029. weight: math.unit(304, "lb"),
  20030. name: "Front",
  20031. image: {
  20032. source: "./media/characters/oliver/front.svg",
  20033. extra: 157 / 143,
  20034. bottom: 0.08
  20035. }
  20036. },
  20037. },
  20038. [
  20039. {
  20040. name: "Normal",
  20041. height: math.unit(6 + 1 / 12, "feet"),
  20042. default: true
  20043. },
  20044. ]
  20045. ))
  20046. characterMakers.push(() => makeCharacter(
  20047. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20048. {
  20049. front: {
  20050. height: math.unit(5 + 7 / 12, "feet"),
  20051. weight: math.unit(140, "lb"),
  20052. name: "Front",
  20053. image: {
  20054. source: "./media/characters/shane/front.svg",
  20055. extra: 304 / 289,
  20056. bottom: 0.005
  20057. }
  20058. },
  20059. },
  20060. [
  20061. {
  20062. name: "Normal",
  20063. height: math.unit(5 + 7 / 12, "feet"),
  20064. default: true
  20065. },
  20066. ]
  20067. ))
  20068. characterMakers.push(() => makeCharacter(
  20069. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20070. {
  20071. front: {
  20072. height: math.unit(5 + 9 / 12, "feet"),
  20073. weight: math.unit(178, "lb"),
  20074. name: "Front",
  20075. image: {
  20076. source: "./media/characters/shin/front.svg",
  20077. extra: 159 / 151,
  20078. bottom: 0.015
  20079. }
  20080. },
  20081. },
  20082. [
  20083. {
  20084. name: "Normal",
  20085. height: math.unit(5 + 9 / 12, "feet"),
  20086. default: true
  20087. },
  20088. ]
  20089. ))
  20090. characterMakers.push(() => makeCharacter(
  20091. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20092. {
  20093. front: {
  20094. height: math.unit(5 + 10 / 12, "feet"),
  20095. weight: math.unit(168, "lb"),
  20096. name: "Front",
  20097. image: {
  20098. source: "./media/characters/xerxes/front.svg",
  20099. extra: 282 / 260,
  20100. bottom: 0.045
  20101. }
  20102. },
  20103. },
  20104. [
  20105. {
  20106. name: "Normal",
  20107. height: math.unit(5 + 10 / 12, "feet"),
  20108. default: true
  20109. },
  20110. ]
  20111. ))
  20112. characterMakers.push(() => makeCharacter(
  20113. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20114. {
  20115. front: {
  20116. height: math.unit(6 + 7 / 12, "feet"),
  20117. weight: math.unit(208, "lb"),
  20118. name: "Front",
  20119. image: {
  20120. source: "./media/characters/chaska/front.svg",
  20121. extra: 332 / 319,
  20122. bottom: 0.015
  20123. }
  20124. },
  20125. },
  20126. [
  20127. {
  20128. name: "Normal",
  20129. height: math.unit(6 + 7 / 12, "feet"),
  20130. default: true
  20131. },
  20132. ]
  20133. ))
  20134. characterMakers.push(() => makeCharacter(
  20135. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20136. {
  20137. front: {
  20138. height: math.unit(5 + 8 / 12, "feet"),
  20139. weight: math.unit(208, "lb"),
  20140. name: "Front",
  20141. image: {
  20142. source: "./media/characters/enuk/front.svg",
  20143. extra: 437 / 406,
  20144. bottom: 0.02
  20145. }
  20146. },
  20147. },
  20148. [
  20149. {
  20150. name: "Normal",
  20151. height: math.unit(5 + 8 / 12, "feet"),
  20152. default: true
  20153. },
  20154. ]
  20155. ))
  20156. characterMakers.push(() => makeCharacter(
  20157. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20158. {
  20159. front: {
  20160. height: math.unit(5 + 10 / 12, "feet"),
  20161. weight: math.unit(252, "lb"),
  20162. name: "Front",
  20163. image: {
  20164. source: "./media/characters/bruun/front.svg",
  20165. extra: 197 / 187,
  20166. bottom: 0.012
  20167. }
  20168. },
  20169. },
  20170. [
  20171. {
  20172. name: "Normal",
  20173. height: math.unit(5 + 10 / 12, "feet"),
  20174. default: true
  20175. },
  20176. ]
  20177. ))
  20178. characterMakers.push(() => makeCharacter(
  20179. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20180. {
  20181. front: {
  20182. height: math.unit(6 + 10 / 12, "feet"),
  20183. weight: math.unit(255, "lb"),
  20184. name: "Front",
  20185. image: {
  20186. source: "./media/characters/alexeev/front.svg",
  20187. extra: 213 / 200,
  20188. bottom: 0.05
  20189. }
  20190. },
  20191. },
  20192. [
  20193. {
  20194. name: "Normal",
  20195. height: math.unit(6 + 10 / 12, "feet"),
  20196. default: true
  20197. },
  20198. ]
  20199. ))
  20200. characterMakers.push(() => makeCharacter(
  20201. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20202. {
  20203. front: {
  20204. height: math.unit(2 + 8 / 12, "feet"),
  20205. weight: math.unit(22, "lb"),
  20206. name: "Front",
  20207. image: {
  20208. source: "./media/characters/evelyn/front.svg",
  20209. extra: 208 / 180
  20210. }
  20211. },
  20212. },
  20213. [
  20214. {
  20215. name: "Normal",
  20216. height: math.unit(2 + 8 / 12, "feet"),
  20217. default: true
  20218. },
  20219. ]
  20220. ))
  20221. characterMakers.push(() => makeCharacter(
  20222. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20223. {
  20224. front: {
  20225. height: math.unit(5 + 9 / 12, "feet"),
  20226. weight: math.unit(139, "lb"),
  20227. name: "Front",
  20228. image: {
  20229. source: "./media/characters/inca/front.svg",
  20230. extra: 294 / 291,
  20231. bottom: 0.03
  20232. }
  20233. },
  20234. },
  20235. [
  20236. {
  20237. name: "Normal",
  20238. height: math.unit(5 + 9 / 12, "feet"),
  20239. default: true
  20240. },
  20241. ]
  20242. ))
  20243. characterMakers.push(() => makeCharacter(
  20244. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20245. {
  20246. front: {
  20247. height: math.unit(6 + 3 / 12, "feet"),
  20248. weight: math.unit(185, "lb"),
  20249. name: "Front",
  20250. image: {
  20251. source: "./media/characters/mera/front.svg",
  20252. extra: 291 / 277,
  20253. bottom: 0.03
  20254. }
  20255. },
  20256. },
  20257. [
  20258. {
  20259. name: "Normal",
  20260. height: math.unit(6 + 3 / 12, "feet"),
  20261. default: true
  20262. },
  20263. ]
  20264. ))
  20265. characterMakers.push(() => makeCharacter(
  20266. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20267. {
  20268. front: {
  20269. height: math.unit(6 + 7 / 12, "feet"),
  20270. weight: math.unit(160, "lb"),
  20271. name: "Front",
  20272. image: {
  20273. source: "./media/characters/ceres/front.svg",
  20274. extra: 1023 / 950,
  20275. bottom: 0.027
  20276. }
  20277. },
  20278. back: {
  20279. height: math.unit(6 + 7 / 12, "feet"),
  20280. weight: math.unit(160, "lb"),
  20281. name: "Back",
  20282. image: {
  20283. source: "./media/characters/ceres/back.svg",
  20284. extra: 1023 / 950
  20285. }
  20286. },
  20287. },
  20288. [
  20289. {
  20290. name: "Normal",
  20291. height: math.unit(6 + 7 / 12, "feet"),
  20292. default: true
  20293. },
  20294. ]
  20295. ))
  20296. characterMakers.push(() => makeCharacter(
  20297. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20298. {
  20299. front: {
  20300. height: math.unit(5 + 10 / 12, "feet"),
  20301. weight: math.unit(150, "lb"),
  20302. name: "Front",
  20303. image: {
  20304. source: "./media/characters/kris/front.svg",
  20305. extra: 885 / 803,
  20306. bottom: 0.03
  20307. }
  20308. },
  20309. },
  20310. [
  20311. {
  20312. name: "Normal",
  20313. height: math.unit(5 + 10 / 12, "feet"),
  20314. default: true
  20315. },
  20316. ]
  20317. ))
  20318. characterMakers.push(() => makeCharacter(
  20319. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20320. {
  20321. front: {
  20322. height: math.unit(7, "feet"),
  20323. weight: math.unit(120, "kg"),
  20324. name: "Front",
  20325. image: {
  20326. source: "./media/characters/taluthus/front.svg",
  20327. extra: 903 / 833,
  20328. bottom: 0.015
  20329. }
  20330. },
  20331. },
  20332. [
  20333. {
  20334. name: "Normal",
  20335. height: math.unit(7, "feet"),
  20336. default: true
  20337. },
  20338. {
  20339. name: "Macro",
  20340. height: math.unit(300, "feet")
  20341. },
  20342. ]
  20343. ))
  20344. characterMakers.push(() => makeCharacter(
  20345. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20346. {
  20347. front: {
  20348. height: math.unit(5 + 9 / 12, "feet"),
  20349. weight: math.unit(145, "lb"),
  20350. name: "Front",
  20351. image: {
  20352. source: "./media/characters/dawn/front.svg",
  20353. extra: 2094 / 2016,
  20354. bottom: 0.025
  20355. }
  20356. },
  20357. back: {
  20358. height: math.unit(5 + 9 / 12, "feet"),
  20359. weight: math.unit(160, "lb"),
  20360. name: "Back",
  20361. image: {
  20362. source: "./media/characters/dawn/back.svg",
  20363. extra: 2112 / 2080,
  20364. bottom: 0.005
  20365. }
  20366. },
  20367. },
  20368. [
  20369. {
  20370. name: "Normal",
  20371. height: math.unit(6 + 7 / 12, "feet"),
  20372. default: true
  20373. },
  20374. ]
  20375. ))
  20376. characterMakers.push(() => makeCharacter(
  20377. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20378. {
  20379. anthro: {
  20380. height: math.unit(8 + 3 / 12, "feet"),
  20381. weight: math.unit(450, "lb"),
  20382. name: "Anthro",
  20383. image: {
  20384. source: "./media/characters/arador/anthro.svg",
  20385. extra: 1835 / 1718,
  20386. bottom: 0.025
  20387. }
  20388. },
  20389. feral: {
  20390. height: math.unit(4, "feet"),
  20391. weight: math.unit(200, "lb"),
  20392. name: "Feral",
  20393. image: {
  20394. source: "./media/characters/arador/feral.svg",
  20395. extra: 1683 / 1514,
  20396. bottom: 0.07
  20397. }
  20398. },
  20399. },
  20400. [
  20401. {
  20402. name: "Normal",
  20403. height: math.unit(8 + 3 / 12, "feet")
  20404. },
  20405. {
  20406. name: "Macro",
  20407. height: math.unit(82.5, "feet"),
  20408. default: true
  20409. },
  20410. ]
  20411. ))
  20412. characterMakers.push(() => makeCharacter(
  20413. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20414. {
  20415. front: {
  20416. height: math.unit(5 + 10 / 12, "feet"),
  20417. weight: math.unit(125, "lb"),
  20418. name: "Front",
  20419. image: {
  20420. source: "./media/characters/dharsi/front.svg",
  20421. extra: 716 / 630,
  20422. bottom: 0.035
  20423. }
  20424. },
  20425. },
  20426. [
  20427. {
  20428. name: "Nano",
  20429. height: math.unit(100, "nm")
  20430. },
  20431. {
  20432. name: "Micro",
  20433. height: math.unit(2, "inches")
  20434. },
  20435. {
  20436. name: "Normal",
  20437. height: math.unit(5 + 10 / 12, "feet"),
  20438. default: true
  20439. },
  20440. {
  20441. name: "Macro",
  20442. height: math.unit(1000, "feet")
  20443. },
  20444. {
  20445. name: "Megamacro",
  20446. height: math.unit(10, "miles")
  20447. },
  20448. {
  20449. name: "Gigamacro",
  20450. height: math.unit(3000, "miles")
  20451. },
  20452. {
  20453. name: "Teramacro",
  20454. height: math.unit(500000, "miles")
  20455. },
  20456. {
  20457. name: "Teramacro+",
  20458. height: math.unit(30, "galaxies")
  20459. },
  20460. ]
  20461. ))
  20462. characterMakers.push(() => makeCharacter(
  20463. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20464. {
  20465. front: {
  20466. height: math.unit(6, "feet"),
  20467. weight: math.unit(150, "lb"),
  20468. name: "Front",
  20469. image: {
  20470. source: "./media/characters/deathy/front.svg",
  20471. extra: 1552 / 1463,
  20472. bottom: 0.025
  20473. }
  20474. },
  20475. side: {
  20476. height: math.unit(6, "feet"),
  20477. weight: math.unit(150, "lb"),
  20478. name: "Side",
  20479. image: {
  20480. source: "./media/characters/deathy/side.svg",
  20481. extra: 1604 / 1455,
  20482. bottom: 0.025
  20483. }
  20484. },
  20485. back: {
  20486. height: math.unit(6, "feet"),
  20487. weight: math.unit(150, "lb"),
  20488. name: "Back",
  20489. image: {
  20490. source: "./media/characters/deathy/back.svg",
  20491. extra: 1580 / 1463,
  20492. bottom: 0.005
  20493. }
  20494. },
  20495. },
  20496. [
  20497. {
  20498. name: "Micro",
  20499. height: math.unit(5, "millimeters")
  20500. },
  20501. {
  20502. name: "Normal",
  20503. height: math.unit(6 + 5 / 12, "feet"),
  20504. default: true
  20505. },
  20506. ]
  20507. ))
  20508. characterMakers.push(() => makeCharacter(
  20509. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20510. {
  20511. front: {
  20512. height: math.unit(16, "feet"),
  20513. weight: math.unit(4000, "lb"),
  20514. name: "Front",
  20515. image: {
  20516. source: "./media/characters/juniper/front.svg",
  20517. bottom: 0.04
  20518. }
  20519. },
  20520. },
  20521. [
  20522. {
  20523. name: "Normal",
  20524. height: math.unit(16, "feet"),
  20525. default: true
  20526. },
  20527. ]
  20528. ))
  20529. characterMakers.push(() => makeCharacter(
  20530. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20531. {
  20532. front: {
  20533. height: math.unit(6, "feet"),
  20534. weight: math.unit(150, "lb"),
  20535. name: "Front",
  20536. image: {
  20537. source: "./media/characters/hipster/front.svg",
  20538. extra: 1312 / 1209,
  20539. bottom: 0.025
  20540. }
  20541. },
  20542. back: {
  20543. height: math.unit(6, "feet"),
  20544. weight: math.unit(150, "lb"),
  20545. name: "Back",
  20546. image: {
  20547. source: "./media/characters/hipster/back.svg",
  20548. extra: 1281 / 1196,
  20549. bottom: 0.01
  20550. }
  20551. },
  20552. },
  20553. [
  20554. {
  20555. name: "Micro",
  20556. height: math.unit(1, "mm")
  20557. },
  20558. {
  20559. name: "Normal",
  20560. height: math.unit(4, "inches"),
  20561. default: true
  20562. },
  20563. {
  20564. name: "Macro",
  20565. height: math.unit(500, "feet")
  20566. },
  20567. {
  20568. name: "Megamacro",
  20569. height: math.unit(1000, "miles")
  20570. },
  20571. ]
  20572. ))
  20573. characterMakers.push(() => makeCharacter(
  20574. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20575. {
  20576. front: {
  20577. height: math.unit(6, "feet"),
  20578. weight: math.unit(150, "lb"),
  20579. name: "Front",
  20580. image: {
  20581. source: "./media/characters/tendirmuldr/front.svg",
  20582. extra: 1878 / 1772,
  20583. bottom: 0.015
  20584. }
  20585. },
  20586. },
  20587. [
  20588. {
  20589. name: "Megamacro",
  20590. height: math.unit(1500, "miles"),
  20591. default: true
  20592. },
  20593. ]
  20594. ))
  20595. characterMakers.push(() => makeCharacter(
  20596. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20597. {
  20598. front: {
  20599. height: math.unit(14, "feet"),
  20600. weight: math.unit(12000, "lb"),
  20601. name: "Front",
  20602. image: {
  20603. source: "./media/characters/mort/front.svg",
  20604. extra: 365 / 318,
  20605. bottom: 0.01
  20606. }
  20607. },
  20608. side: {
  20609. height: math.unit(14, "feet"),
  20610. weight: math.unit(12000, "lb"),
  20611. name: "Side",
  20612. image: {
  20613. source: "./media/characters/mort/side.svg",
  20614. extra: 365 / 318,
  20615. bottom: 0.052
  20616. },
  20617. default: true
  20618. },
  20619. back: {
  20620. height: math.unit(14, "feet"),
  20621. weight: math.unit(12000, "lb"),
  20622. name: "Back",
  20623. image: {
  20624. source: "./media/characters/mort/back.svg",
  20625. extra: 371 / 332,
  20626. bottom: 0.18
  20627. }
  20628. },
  20629. },
  20630. [
  20631. {
  20632. name: "Normal",
  20633. height: math.unit(14, "feet"),
  20634. default: true
  20635. },
  20636. ]
  20637. ))
  20638. characterMakers.push(() => makeCharacter(
  20639. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20640. {
  20641. front: {
  20642. height: math.unit(8, "feet"),
  20643. weight: math.unit(1, "ton"),
  20644. name: "Front",
  20645. image: {
  20646. source: "./media/characters/lycoa/front.svg",
  20647. extra: 1875 / 1789,
  20648. bottom: 0.022
  20649. }
  20650. },
  20651. back: {
  20652. height: math.unit(8, "feet"),
  20653. weight: math.unit(1, "ton"),
  20654. name: "Back",
  20655. image: {
  20656. source: "./media/characters/lycoa/back.svg",
  20657. extra: 1835 / 1781,
  20658. bottom: 0.03
  20659. }
  20660. },
  20661. head: {
  20662. height: math.unit(2.1, "feet"),
  20663. name: "Head",
  20664. image: {
  20665. source: "./media/characters/lycoa/head.svg"
  20666. }
  20667. },
  20668. tailmaw: {
  20669. height: math.unit(1.9, "feet"),
  20670. name: "Tailmaw",
  20671. image: {
  20672. source: "./media/characters/lycoa/tailmaw.svg"
  20673. }
  20674. },
  20675. tentacles: {
  20676. height: math.unit(2.1, "feet"),
  20677. name: "Tentacles",
  20678. image: {
  20679. source: "./media/characters/lycoa/tentacles.svg"
  20680. }
  20681. },
  20682. dick: {
  20683. height: math.unit(1.73, "feet"),
  20684. name: "Dick",
  20685. image: {
  20686. source: "./media/characters/lycoa/dick.svg"
  20687. }
  20688. },
  20689. },
  20690. [
  20691. {
  20692. name: "Normal",
  20693. height: math.unit(8, "feet"),
  20694. default: true
  20695. },
  20696. {
  20697. name: "Macro",
  20698. height: math.unit(30, "feet")
  20699. },
  20700. ]
  20701. ))
  20702. characterMakers.push(() => makeCharacter(
  20703. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20704. {
  20705. front: {
  20706. height: math.unit(4 + 2 / 12, "feet"),
  20707. weight: math.unit(70, "lb"),
  20708. name: "Front",
  20709. image: {
  20710. source: "./media/characters/naldara/front.svg",
  20711. extra: 841 / 720,
  20712. bottom: 0.04
  20713. }
  20714. },
  20715. naga: {
  20716. height: math.unit(23, "feet"),
  20717. weight: math.unit(15000, "kg"),
  20718. name: "Naga",
  20719. image: {
  20720. source: "./media/characters/naldara/naga.svg",
  20721. extra: 3290 / 2959,
  20722. bottom: 124 / 3432
  20723. }
  20724. },
  20725. },
  20726. [
  20727. {
  20728. name: "Normal",
  20729. height: math.unit(4 + 2 / 12, "feet"),
  20730. default: true
  20731. },
  20732. ]
  20733. ))
  20734. characterMakers.push(() => makeCharacter(
  20735. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20736. {
  20737. front: {
  20738. height: math.unit(13 + 7 / 12, "feet"),
  20739. weight: math.unit(1500, "lb"),
  20740. name: "Front",
  20741. image: {
  20742. source: "./media/characters/briar/front.svg",
  20743. extra: 626 / 596,
  20744. bottom: 0.08
  20745. }
  20746. },
  20747. },
  20748. [
  20749. {
  20750. name: "Normal",
  20751. height: math.unit(13 + 7 / 12, "feet"),
  20752. default: true
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20758. {
  20759. side: {
  20760. height: math.unit(10, "feet"),
  20761. weight: math.unit(500, "lb"),
  20762. name: "Side",
  20763. image: {
  20764. source: "./media/characters/vanguard/side.svg",
  20765. extra: 502 / 425,
  20766. bottom: 0.087
  20767. }
  20768. },
  20769. },
  20770. [
  20771. {
  20772. name: "Normal",
  20773. height: math.unit(10, "feet"),
  20774. default: true
  20775. },
  20776. ]
  20777. ))
  20778. characterMakers.push(() => makeCharacter(
  20779. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20780. {
  20781. front: {
  20782. height: math.unit(7.5, "feet"),
  20783. weight: math.unit(2, "lb"),
  20784. name: "Front",
  20785. image: {
  20786. source: "./media/characters/artemis/front.svg",
  20787. extra: 1192 / 1075,
  20788. bottom: 0.07
  20789. }
  20790. },
  20791. frontNsfw: {
  20792. height: math.unit(7.5, "feet"),
  20793. weight: math.unit(2, "lb"),
  20794. name: "Front (NSFW)",
  20795. image: {
  20796. source: "./media/characters/artemis/front-nsfw.svg",
  20797. extra: 1192 / 1075,
  20798. bottom: 0.07
  20799. }
  20800. },
  20801. frontNsfwer: {
  20802. height: math.unit(7.5, "feet"),
  20803. weight: math.unit(2, "lb"),
  20804. name: "Front (NSFW-er)",
  20805. image: {
  20806. source: "./media/characters/artemis/front-nsfwer.svg",
  20807. extra: 1192 / 1075,
  20808. bottom: 0.07
  20809. }
  20810. },
  20811. side: {
  20812. height: math.unit(7.5, "feet"),
  20813. weight: math.unit(2, "lb"),
  20814. name: "Side",
  20815. image: {
  20816. source: "./media/characters/artemis/side.svg",
  20817. extra: 1192 / 1075,
  20818. bottom: 0.07
  20819. }
  20820. },
  20821. sideNsfw: {
  20822. height: math.unit(7.5, "feet"),
  20823. weight: math.unit(2, "lb"),
  20824. name: "Side (NSFW)",
  20825. image: {
  20826. source: "./media/characters/artemis/side-nsfw.svg",
  20827. extra: 1192 / 1075,
  20828. bottom: 0.07
  20829. }
  20830. },
  20831. sideNsfwer: {
  20832. height: math.unit(7.5, "feet"),
  20833. weight: math.unit(2, "lb"),
  20834. name: "Side (NSFW-er)",
  20835. image: {
  20836. source: "./media/characters/artemis/side-nsfwer.svg",
  20837. extra: 1192 / 1075,
  20838. bottom: 0.07
  20839. }
  20840. },
  20841. maw: {
  20842. height: math.unit(1.1, "feet"),
  20843. name: "Maw",
  20844. image: {
  20845. source: "./media/characters/artemis/maw.svg"
  20846. }
  20847. },
  20848. stomach: {
  20849. height: math.unit(0.95, "feet"),
  20850. name: "Stomach",
  20851. image: {
  20852. source: "./media/characters/artemis/stomach.svg"
  20853. }
  20854. },
  20855. dickCanine: {
  20856. height: math.unit(1, "feet"),
  20857. name: "Dick (Canine)",
  20858. image: {
  20859. source: "./media/characters/artemis/dick-canine.svg"
  20860. }
  20861. },
  20862. dickEquine: {
  20863. height: math.unit(0.85, "feet"),
  20864. name: "Dick (Equine)",
  20865. image: {
  20866. source: "./media/characters/artemis/dick-equine.svg"
  20867. }
  20868. },
  20869. dickExotic: {
  20870. height: math.unit(0.85, "feet"),
  20871. name: "Dick (Exotic)",
  20872. image: {
  20873. source: "./media/characters/artemis/dick-exotic.svg"
  20874. }
  20875. },
  20876. },
  20877. [
  20878. {
  20879. name: "Normal",
  20880. height: math.unit(7.5, "feet"),
  20881. default: true
  20882. },
  20883. {
  20884. name: "Enlarged",
  20885. height: math.unit(12, "feet")
  20886. },
  20887. ]
  20888. ))
  20889. characterMakers.push(() => makeCharacter(
  20890. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20891. {
  20892. front: {
  20893. height: math.unit(5 + 3 / 12, "feet"),
  20894. weight: math.unit(160, "lb"),
  20895. name: "Front",
  20896. image: {
  20897. source: "./media/characters/kira/front.svg",
  20898. extra: 906 / 786,
  20899. bottom: 0.01
  20900. }
  20901. },
  20902. back: {
  20903. height: math.unit(5 + 3 / 12, "feet"),
  20904. weight: math.unit(160, "lb"),
  20905. name: "Back",
  20906. image: {
  20907. source: "./media/characters/kira/back.svg",
  20908. extra: 882 / 757,
  20909. bottom: 0.005
  20910. }
  20911. },
  20912. frontDressed: {
  20913. height: math.unit(5 + 3 / 12, "feet"),
  20914. weight: math.unit(160, "lb"),
  20915. name: "Front (Dressed)",
  20916. image: {
  20917. source: "./media/characters/kira/front-dressed.svg",
  20918. extra: 906 / 786,
  20919. bottom: 0.01
  20920. }
  20921. },
  20922. beans: {
  20923. height: math.unit(0.92, "feet"),
  20924. name: "Beans",
  20925. image: {
  20926. source: "./media/characters/kira/beans.svg"
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Normal",
  20933. height: math.unit(5 + 3 / 12, "feet"),
  20934. default: true
  20935. },
  20936. ]
  20937. ))
  20938. characterMakers.push(() => makeCharacter(
  20939. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20940. {
  20941. front: {
  20942. height: math.unit(5 + 4 / 12, "feet"),
  20943. weight: math.unit(145, "lb"),
  20944. name: "Front",
  20945. image: {
  20946. source: "./media/characters/scramble/front.svg",
  20947. extra: 763 / 727,
  20948. bottom: 0.05
  20949. }
  20950. },
  20951. back: {
  20952. height: math.unit(5 + 4 / 12, "feet"),
  20953. weight: math.unit(145, "lb"),
  20954. name: "Back",
  20955. image: {
  20956. source: "./media/characters/scramble/back.svg",
  20957. extra: 826 / 737,
  20958. bottom: 0.002
  20959. }
  20960. },
  20961. },
  20962. [
  20963. {
  20964. name: "Normal",
  20965. height: math.unit(5 + 4 / 12, "feet"),
  20966. default: true
  20967. },
  20968. ]
  20969. ))
  20970. characterMakers.push(() => makeCharacter(
  20971. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20972. {
  20973. side: {
  20974. height: math.unit(6 + 2 / 12, "feet"),
  20975. weight: math.unit(190, "lb"),
  20976. name: "Side",
  20977. image: {
  20978. source: "./media/characters/biscuit/side.svg",
  20979. extra: 858 / 791,
  20980. bottom: 0.044
  20981. }
  20982. },
  20983. },
  20984. [
  20985. {
  20986. name: "Normal",
  20987. height: math.unit(6 + 2 / 12, "feet"),
  20988. default: true
  20989. },
  20990. ]
  20991. ))
  20992. characterMakers.push(() => makeCharacter(
  20993. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20994. {
  20995. front: {
  20996. height: math.unit(5 + 2 / 12, "feet"),
  20997. weight: math.unit(120, "lb"),
  20998. name: "Front",
  20999. image: {
  21000. source: "./media/characters/poffin/front.svg",
  21001. extra: 786 / 680,
  21002. bottom: 0.005
  21003. }
  21004. },
  21005. },
  21006. [
  21007. {
  21008. name: "Normal",
  21009. height: math.unit(5 + 2 / 12, "feet"),
  21010. default: true
  21011. },
  21012. ]
  21013. ))
  21014. characterMakers.push(() => makeCharacter(
  21015. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21016. {
  21017. front: {
  21018. height: math.unit(6 + 3 / 12, "feet"),
  21019. weight: math.unit(519, "lb"),
  21020. name: "Front",
  21021. image: {
  21022. source: "./media/characters/dhari/front.svg",
  21023. extra: 1048 / 946,
  21024. bottom: 0.015
  21025. }
  21026. },
  21027. back: {
  21028. height: math.unit(6 + 3 / 12, "feet"),
  21029. weight: math.unit(519, "lb"),
  21030. name: "Back",
  21031. image: {
  21032. source: "./media/characters/dhari/back.svg",
  21033. extra: 1048 / 931,
  21034. bottom: 0.005
  21035. }
  21036. },
  21037. frontDressed: {
  21038. height: math.unit(6 + 3 / 12, "feet"),
  21039. weight: math.unit(519, "lb"),
  21040. name: "Front (Dressed)",
  21041. image: {
  21042. source: "./media/characters/dhari/front-dressed.svg",
  21043. extra: 1713 / 1546,
  21044. bottom: 0.02
  21045. }
  21046. },
  21047. backDressed: {
  21048. height: math.unit(6 + 3 / 12, "feet"),
  21049. weight: math.unit(519, "lb"),
  21050. name: "Back (Dressed)",
  21051. image: {
  21052. source: "./media/characters/dhari/back-dressed.svg",
  21053. extra: 1699 / 1537,
  21054. bottom: 0.01
  21055. }
  21056. },
  21057. maw: {
  21058. height: math.unit(0.95, "feet"),
  21059. name: "Maw",
  21060. image: {
  21061. source: "./media/characters/dhari/maw.svg"
  21062. }
  21063. },
  21064. wereFront: {
  21065. height: math.unit(12 + 8 / 12, "feet"),
  21066. weight: math.unit(4000, "lb"),
  21067. name: "Front (Were)",
  21068. image: {
  21069. source: "./media/characters/dhari/were-front.svg",
  21070. extra: 1065 / 969,
  21071. bottom: 0.015
  21072. }
  21073. },
  21074. wereBack: {
  21075. height: math.unit(12 + 8 / 12, "feet"),
  21076. weight: math.unit(4000, "lb"),
  21077. name: "Back (Were)",
  21078. image: {
  21079. source: "./media/characters/dhari/were-back.svg",
  21080. extra: 1065 / 969,
  21081. bottom: 0.012
  21082. }
  21083. },
  21084. wereMaw: {
  21085. height: math.unit(0.625, "meters"),
  21086. name: "Maw (Were)",
  21087. image: {
  21088. source: "./media/characters/dhari/were-maw.svg"
  21089. }
  21090. },
  21091. },
  21092. [
  21093. {
  21094. name: "Normal",
  21095. height: math.unit(6 + 3 / 12, "feet"),
  21096. default: true
  21097. },
  21098. ]
  21099. ))
  21100. characterMakers.push(() => makeCharacter(
  21101. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21102. {
  21103. anthro: {
  21104. height: math.unit(5 + 7 / 12, "feet"),
  21105. weight: math.unit(175, "lb"),
  21106. name: "Anthro",
  21107. image: {
  21108. source: "./media/characters/rena-dyne/anthro.svg",
  21109. extra: 1849 / 1785,
  21110. bottom: 0.005
  21111. }
  21112. },
  21113. taur: {
  21114. height: math.unit(15 + 6 / 12, "feet"),
  21115. weight: math.unit(8000, "lb"),
  21116. name: "Taur",
  21117. image: {
  21118. source: "./media/characters/rena-dyne/taur.svg",
  21119. extra: 2315 / 2234,
  21120. bottom: 0.033
  21121. }
  21122. },
  21123. },
  21124. [
  21125. {
  21126. name: "Normal",
  21127. height: math.unit(5 + 7 / 12, "feet"),
  21128. default: true
  21129. },
  21130. ]
  21131. ))
  21132. characterMakers.push(() => makeCharacter(
  21133. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21134. {
  21135. front: {
  21136. height: math.unit(8, "feet"),
  21137. weight: math.unit(600, "lb"),
  21138. name: "Front",
  21139. image: {
  21140. source: "./media/characters/weremeep/front.svg",
  21141. extra: 967 / 862,
  21142. bottom: 0.01
  21143. }
  21144. },
  21145. },
  21146. [
  21147. {
  21148. name: "Normal",
  21149. height: math.unit(8, "feet"),
  21150. default: true
  21151. },
  21152. {
  21153. name: "Lorg",
  21154. height: math.unit(12, "feet")
  21155. },
  21156. {
  21157. name: "Oh Lawd She Comin'",
  21158. height: math.unit(20, "feet")
  21159. },
  21160. ]
  21161. ))
  21162. characterMakers.push(() => makeCharacter(
  21163. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21164. {
  21165. front: {
  21166. height: math.unit(4, "feet"),
  21167. weight: math.unit(90, "lb"),
  21168. name: "Front",
  21169. image: {
  21170. source: "./media/characters/reza/front.svg",
  21171. extra: 1183 / 1111,
  21172. bottom: 0.017
  21173. }
  21174. },
  21175. back: {
  21176. height: math.unit(4, "feet"),
  21177. weight: math.unit(90, "lb"),
  21178. name: "Back",
  21179. image: {
  21180. source: "./media/characters/reza/back.svg",
  21181. extra: 1183 / 1111,
  21182. bottom: 0.01
  21183. }
  21184. },
  21185. drake: {
  21186. height: math.unit(30, "feet"),
  21187. weight: math.unit(246960, "lb"),
  21188. name: "Drake",
  21189. image: {
  21190. source: "./media/characters/reza/drake.svg",
  21191. extra: 2350 / 2024,
  21192. bottom: 60.7 / 2403
  21193. }
  21194. },
  21195. },
  21196. [
  21197. {
  21198. name: "Normal",
  21199. height: math.unit(4, "feet"),
  21200. default: true
  21201. },
  21202. ]
  21203. ))
  21204. characterMakers.push(() => makeCharacter(
  21205. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21206. {
  21207. side: {
  21208. height: math.unit(15, "feet"),
  21209. weight: math.unit(14, "tons"),
  21210. name: "Side",
  21211. image: {
  21212. source: "./media/characters/athea/side.svg",
  21213. extra: 960 / 540,
  21214. bottom: 0.003
  21215. }
  21216. },
  21217. sitting: {
  21218. height: math.unit(6 * 2.85, "feet"),
  21219. weight: math.unit(14, "tons"),
  21220. name: "Sitting",
  21221. image: {
  21222. source: "./media/characters/athea/sitting.svg",
  21223. extra: 621 / 581,
  21224. bottom: 0.075
  21225. }
  21226. },
  21227. maw: {
  21228. height: math.unit(7.59498031496063, "feet"),
  21229. name: "Maw",
  21230. image: {
  21231. source: "./media/characters/athea/maw.svg"
  21232. }
  21233. },
  21234. },
  21235. [
  21236. {
  21237. name: "Lap Cat",
  21238. height: math.unit(2.5, "feet")
  21239. },
  21240. {
  21241. name: "Minimacro",
  21242. height: math.unit(15, "feet"),
  21243. default: true
  21244. },
  21245. {
  21246. name: "Macro",
  21247. height: math.unit(120, "feet")
  21248. },
  21249. {
  21250. name: "Macro+",
  21251. height: math.unit(640, "feet")
  21252. },
  21253. {
  21254. name: "Colossus",
  21255. height: math.unit(2.2, "miles")
  21256. },
  21257. ]
  21258. ))
  21259. characterMakers.push(() => makeCharacter(
  21260. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21261. {
  21262. front: {
  21263. height: math.unit(8 + 8 / 12, "feet"),
  21264. weight: math.unit(130, "kg"),
  21265. name: "Front",
  21266. image: {
  21267. source: "./media/characters/seroko/front.svg",
  21268. extra: 1385 / 1280,
  21269. bottom: 0.025
  21270. }
  21271. },
  21272. back: {
  21273. height: math.unit(8 + 8 / 12, "feet"),
  21274. weight: math.unit(130, "kg"),
  21275. name: "Back",
  21276. image: {
  21277. source: "./media/characters/seroko/back.svg",
  21278. extra: 1369 / 1238,
  21279. bottom: 0.018
  21280. }
  21281. },
  21282. frontDressed: {
  21283. height: math.unit(8 + 8 / 12, "feet"),
  21284. weight: math.unit(130, "kg"),
  21285. name: "Front (Dressed)",
  21286. image: {
  21287. source: "./media/characters/seroko/front-dressed.svg",
  21288. extra: 1366 / 1275,
  21289. bottom: 0.03
  21290. }
  21291. },
  21292. },
  21293. [
  21294. {
  21295. name: "Normal",
  21296. height: math.unit(8 + 8 / 12, "feet"),
  21297. default: true
  21298. },
  21299. ]
  21300. ))
  21301. characterMakers.push(() => makeCharacter(
  21302. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21303. {
  21304. front: {
  21305. height: math.unit(5.5, "feet"),
  21306. weight: math.unit(160, "lb"),
  21307. name: "Front",
  21308. image: {
  21309. source: "./media/characters/quatzi/front.svg",
  21310. extra: 2346 / 2242,
  21311. bottom: 0.015
  21312. }
  21313. },
  21314. },
  21315. [
  21316. {
  21317. name: "Normal",
  21318. height: math.unit(5.5, "feet"),
  21319. default: true
  21320. },
  21321. {
  21322. name: "Big",
  21323. height: math.unit(7.7, "feet")
  21324. },
  21325. ]
  21326. ))
  21327. characterMakers.push(() => makeCharacter(
  21328. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21329. {
  21330. front: {
  21331. height: math.unit(5 + 11 / 12, "feet"),
  21332. weight: math.unit(180, "lb"),
  21333. name: "Front",
  21334. image: {
  21335. source: "./media/characters/sen/front.svg",
  21336. extra: 1321 / 1254,
  21337. bottom: 0.015
  21338. }
  21339. },
  21340. side: {
  21341. height: math.unit(5 + 11 / 12, "feet"),
  21342. weight: math.unit(180, "lb"),
  21343. name: "Side",
  21344. image: {
  21345. source: "./media/characters/sen/side.svg",
  21346. extra: 1321 / 1254,
  21347. bottom: 0.007
  21348. }
  21349. },
  21350. back: {
  21351. height: math.unit(5 + 11 / 12, "feet"),
  21352. weight: math.unit(180, "lb"),
  21353. name: "Back",
  21354. image: {
  21355. source: "./media/characters/sen/back.svg",
  21356. extra: 1321 / 1254
  21357. }
  21358. },
  21359. },
  21360. [
  21361. {
  21362. name: "Normal",
  21363. height: math.unit(5 + 11 / 12, "feet"),
  21364. default: true
  21365. },
  21366. ]
  21367. ))
  21368. characterMakers.push(() => makeCharacter(
  21369. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21370. {
  21371. front: {
  21372. height: math.unit(166.6, "cm"),
  21373. weight: math.unit(66.6, "kg"),
  21374. name: "Front",
  21375. image: {
  21376. source: "./media/characters/fruity/front.svg",
  21377. extra: 1510 / 1386,
  21378. bottom: 0.04
  21379. }
  21380. },
  21381. back: {
  21382. height: math.unit(166.6, "cm"),
  21383. weight: math.unit(66.6, "lb"),
  21384. name: "Back",
  21385. image: {
  21386. source: "./media/characters/fruity/back.svg",
  21387. extra: 1563 / 1435,
  21388. bottom: 0.005
  21389. }
  21390. },
  21391. },
  21392. [
  21393. {
  21394. name: "Normal",
  21395. height: math.unit(166.6, "cm"),
  21396. default: true
  21397. },
  21398. {
  21399. name: "Demonic",
  21400. height: math.unit(166.6, "feet")
  21401. },
  21402. ]
  21403. ))
  21404. characterMakers.push(() => makeCharacter(
  21405. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21406. {
  21407. side: {
  21408. height: math.unit(10, "feet"),
  21409. weight: math.unit(500, "lb"),
  21410. name: "Side",
  21411. image: {
  21412. source: "./media/characters/zost/side.svg",
  21413. extra: 966 / 880,
  21414. bottom: 0.075
  21415. }
  21416. },
  21417. mawFront: {
  21418. height: math.unit(1.08, "meters"),
  21419. name: "Maw (Front)",
  21420. image: {
  21421. source: "./media/characters/zost/maw-front.svg"
  21422. }
  21423. },
  21424. mawSide: {
  21425. height: math.unit(2.66, "feet"),
  21426. name: "Maw (Side)",
  21427. image: {
  21428. source: "./media/characters/zost/maw-side.svg"
  21429. }
  21430. },
  21431. },
  21432. [
  21433. {
  21434. name: "Normal",
  21435. height: math.unit(10, "feet"),
  21436. default: true
  21437. },
  21438. ]
  21439. ))
  21440. characterMakers.push(() => makeCharacter(
  21441. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21442. {
  21443. front: {
  21444. height: math.unit(5 + 4 / 12, "feet"),
  21445. weight: math.unit(120, "lb"),
  21446. name: "Front",
  21447. image: {
  21448. source: "./media/characters/luci/front.svg",
  21449. extra: 1985 / 1884,
  21450. bottom: 0.04
  21451. }
  21452. },
  21453. back: {
  21454. height: math.unit(5 + 4 / 12, "feet"),
  21455. weight: math.unit(120, "lb"),
  21456. name: "Back",
  21457. image: {
  21458. source: "./media/characters/luci/back.svg",
  21459. extra: 1892 / 1791,
  21460. bottom: 0.002
  21461. }
  21462. },
  21463. },
  21464. [
  21465. {
  21466. name: "Normal",
  21467. height: math.unit(5 + 4 / 12, "feet"),
  21468. default: true
  21469. },
  21470. ]
  21471. ))
  21472. characterMakers.push(() => makeCharacter(
  21473. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21474. {
  21475. front: {
  21476. height: math.unit(1500, "feet"),
  21477. weight: math.unit(3.8e6, "tons"),
  21478. name: "Front",
  21479. image: {
  21480. source: "./media/characters/2th/front.svg",
  21481. extra: 3489 / 3350,
  21482. bottom: 0.1
  21483. }
  21484. },
  21485. foot: {
  21486. height: math.unit(461, "feet"),
  21487. name: "Foot",
  21488. image: {
  21489. source: "./media/characters/2th/foot.svg"
  21490. }
  21491. },
  21492. },
  21493. [
  21494. {
  21495. name: "\"Micro\"",
  21496. height: math.unit(15 + 7 / 12, "feet")
  21497. },
  21498. {
  21499. name: "Normal",
  21500. height: math.unit(1500, "feet"),
  21501. default: true
  21502. },
  21503. {
  21504. name: "Macro",
  21505. height: math.unit(5000, "feet")
  21506. },
  21507. {
  21508. name: "Megamacro",
  21509. height: math.unit(15, "miles")
  21510. },
  21511. {
  21512. name: "Gigamacro",
  21513. height: math.unit(4000, "miles")
  21514. },
  21515. {
  21516. name: "Galactic",
  21517. height: math.unit(50, "AU")
  21518. },
  21519. ]
  21520. ))
  21521. characterMakers.push(() => makeCharacter(
  21522. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21523. {
  21524. front: {
  21525. height: math.unit(5 + 6 / 12, "feet"),
  21526. weight: math.unit(220, "lb"),
  21527. name: "Front",
  21528. image: {
  21529. source: "./media/characters/amethyst/front.svg",
  21530. extra: 2078 / 2040,
  21531. bottom: 0.045
  21532. }
  21533. },
  21534. back: {
  21535. height: math.unit(5 + 6 / 12, "feet"),
  21536. weight: math.unit(220, "lb"),
  21537. name: "Back",
  21538. image: {
  21539. source: "./media/characters/amethyst/back.svg",
  21540. extra: 2021 / 1989,
  21541. bottom: 0.02
  21542. }
  21543. },
  21544. },
  21545. [
  21546. {
  21547. name: "Normal",
  21548. height: math.unit(5 + 6 / 12, "feet"),
  21549. default: true
  21550. },
  21551. ]
  21552. ))
  21553. characterMakers.push(() => makeCharacter(
  21554. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21555. {
  21556. front: {
  21557. height: math.unit(4 + 11 / 12, "feet"),
  21558. weight: math.unit(120, "lb"),
  21559. name: "Front",
  21560. image: {
  21561. source: "./media/characters/yumi-akiyama/front.svg",
  21562. extra: 1327 / 1235,
  21563. bottom: 0.02
  21564. }
  21565. },
  21566. back: {
  21567. height: math.unit(4 + 11 / 12, "feet"),
  21568. weight: math.unit(120, "lb"),
  21569. name: "Back",
  21570. image: {
  21571. source: "./media/characters/yumi-akiyama/back.svg",
  21572. extra: 1287 / 1245,
  21573. bottom: 0.002
  21574. }
  21575. },
  21576. },
  21577. [
  21578. {
  21579. name: "Galactic",
  21580. height: math.unit(50, "galaxies"),
  21581. default: true
  21582. },
  21583. {
  21584. name: "Universal",
  21585. height: math.unit(100, "universes")
  21586. },
  21587. ]
  21588. ))
  21589. characterMakers.push(() => makeCharacter(
  21590. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21591. {
  21592. front: {
  21593. height: math.unit(8, "feet"),
  21594. weight: math.unit(500, "lb"),
  21595. name: "Front",
  21596. image: {
  21597. source: "./media/characters/rifter-yrmori/front.svg",
  21598. extra: 1180 / 1125,
  21599. bottom: 0.02
  21600. }
  21601. },
  21602. back: {
  21603. height: math.unit(8, "feet"),
  21604. weight: math.unit(500, "lb"),
  21605. name: "Back",
  21606. image: {
  21607. source: "./media/characters/rifter-yrmori/back.svg",
  21608. extra: 1190 / 1145,
  21609. bottom: 0.001
  21610. }
  21611. },
  21612. wings: {
  21613. height: math.unit(7.75, "feet"),
  21614. weight: math.unit(500, "lb"),
  21615. name: "Wings",
  21616. image: {
  21617. source: "./media/characters/rifter-yrmori/wings.svg",
  21618. extra: 1357 / 1285
  21619. }
  21620. },
  21621. maw: {
  21622. height: math.unit(0.8, "feet"),
  21623. name: "Maw",
  21624. image: {
  21625. source: "./media/characters/rifter-yrmori/maw.svg"
  21626. }
  21627. },
  21628. mawfront: {
  21629. height: math.unit(1.45, "feet"),
  21630. name: "Maw (Front)",
  21631. image: {
  21632. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21633. }
  21634. },
  21635. },
  21636. [
  21637. {
  21638. name: "Normal",
  21639. height: math.unit(8, "feet"),
  21640. default: true
  21641. },
  21642. {
  21643. name: "Macro",
  21644. height: math.unit(42, "meters")
  21645. },
  21646. ]
  21647. ))
  21648. characterMakers.push(() => makeCharacter(
  21649. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21650. {
  21651. were: {
  21652. height: math.unit(25 + 6 / 12, "feet"),
  21653. weight: math.unit(10000, "lb"),
  21654. name: "Were",
  21655. image: {
  21656. source: "./media/characters/tahajin/were.svg",
  21657. extra: 801 / 770,
  21658. bottom: 0.042
  21659. }
  21660. },
  21661. aquatic: {
  21662. height: math.unit(6 + 4 / 12, "feet"),
  21663. weight: math.unit(160, "lb"),
  21664. name: "Aquatic",
  21665. image: {
  21666. source: "./media/characters/tahajin/aquatic.svg",
  21667. extra: 572 / 542,
  21668. bottom: 0.04
  21669. }
  21670. },
  21671. chow: {
  21672. height: math.unit(8 + 11 / 12, "feet"),
  21673. weight: math.unit(450, "lb"),
  21674. name: "Chow",
  21675. image: {
  21676. source: "./media/characters/tahajin/chow.svg",
  21677. extra: 660 / 640,
  21678. bottom: 0.015
  21679. }
  21680. },
  21681. demiNaga: {
  21682. height: math.unit(6 + 8 / 12, "feet"),
  21683. weight: math.unit(300, "lb"),
  21684. name: "Demi Naga",
  21685. image: {
  21686. source: "./media/characters/tahajin/demi-naga.svg",
  21687. extra: 643 / 615,
  21688. bottom: 0.1
  21689. }
  21690. },
  21691. data: {
  21692. height: math.unit(5, "inches"),
  21693. weight: math.unit(0.1, "lb"),
  21694. name: "Data",
  21695. image: {
  21696. source: "./media/characters/tahajin/data.svg"
  21697. }
  21698. },
  21699. fluu: {
  21700. height: math.unit(5 + 7 / 12, "feet"),
  21701. weight: math.unit(140, "lb"),
  21702. name: "Fluu",
  21703. image: {
  21704. source: "./media/characters/tahajin/fluu.svg",
  21705. extra: 628 / 592,
  21706. bottom: 0.02
  21707. }
  21708. },
  21709. starWarrior: {
  21710. height: math.unit(4 + 5 / 12, "feet"),
  21711. weight: math.unit(50, "lb"),
  21712. name: "Star Warrior",
  21713. image: {
  21714. source: "./media/characters/tahajin/star-warrior.svg"
  21715. }
  21716. },
  21717. },
  21718. [
  21719. {
  21720. name: "Normal",
  21721. height: math.unit(25 + 6 / 12, "feet"),
  21722. default: true
  21723. },
  21724. ]
  21725. ))
  21726. characterMakers.push(() => makeCharacter(
  21727. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21728. {
  21729. front: {
  21730. height: math.unit(8, "feet"),
  21731. weight: math.unit(350, "lb"),
  21732. name: "Front",
  21733. image: {
  21734. source: "./media/characters/gabira/front.svg",
  21735. extra: 608 / 580,
  21736. bottom: 0.03
  21737. }
  21738. },
  21739. back: {
  21740. height: math.unit(8, "feet"),
  21741. weight: math.unit(350, "lb"),
  21742. name: "Back",
  21743. image: {
  21744. source: "./media/characters/gabira/back.svg",
  21745. extra: 608 / 580,
  21746. bottom: 0.03
  21747. }
  21748. },
  21749. },
  21750. [
  21751. {
  21752. name: "Normal",
  21753. height: math.unit(8, "feet"),
  21754. default: true
  21755. },
  21756. ]
  21757. ))
  21758. characterMakers.push(() => makeCharacter(
  21759. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21760. {
  21761. front: {
  21762. height: math.unit(5 + 3 / 12, "feet"),
  21763. weight: math.unit(137, "lb"),
  21764. name: "Front",
  21765. image: {
  21766. source: "./media/characters/sasha-katraine/front.svg",
  21767. bottom: 0.045
  21768. }
  21769. },
  21770. },
  21771. [
  21772. {
  21773. name: "Micro",
  21774. height: math.unit(5, "inches")
  21775. },
  21776. {
  21777. name: "Normal",
  21778. height: math.unit(5 + 3 / 12, "feet"),
  21779. default: true
  21780. },
  21781. ]
  21782. ))
  21783. characterMakers.push(() => makeCharacter(
  21784. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21785. {
  21786. side: {
  21787. height: math.unit(4, "inches"),
  21788. weight: math.unit(200, "grams"),
  21789. name: "Side",
  21790. image: {
  21791. source: "./media/characters/der/side.svg",
  21792. extra: 719 / 400,
  21793. bottom: 30.6 / 749.9187
  21794. }
  21795. },
  21796. },
  21797. [
  21798. {
  21799. name: "Micro",
  21800. height: math.unit(4, "inches"),
  21801. default: true
  21802. },
  21803. ]
  21804. ))
  21805. characterMakers.push(() => makeCharacter(
  21806. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21807. {
  21808. side: {
  21809. height: math.unit(30, "meters"),
  21810. weight: math.unit(700, "tonnes"),
  21811. name: "Side",
  21812. image: {
  21813. source: "./media/characters/fixerdragon/side.svg",
  21814. extra: (1293.0514 - 116.03) / 1106.86,
  21815. bottom: 116.03 / 1293.0514
  21816. }
  21817. },
  21818. },
  21819. [
  21820. {
  21821. name: "Planck",
  21822. height: math.unit(1.6e-35, "meters")
  21823. },
  21824. {
  21825. name: "Micro",
  21826. height: math.unit(0.4, "meters")
  21827. },
  21828. {
  21829. name: "Normal",
  21830. height: math.unit(30, "meters"),
  21831. default: true
  21832. },
  21833. {
  21834. name: "Megamacro",
  21835. height: math.unit(1.2, "megameters")
  21836. },
  21837. {
  21838. name: "Teramacro",
  21839. height: math.unit(130, "terameters")
  21840. },
  21841. {
  21842. name: "Yottamacro",
  21843. height: math.unit(6200, "yottameters")
  21844. },
  21845. ]
  21846. ));
  21847. characterMakers.push(() => makeCharacter(
  21848. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21849. {
  21850. front: {
  21851. height: math.unit(8, "feet"),
  21852. weight: math.unit(250, "lb"),
  21853. name: "Front",
  21854. image: {
  21855. source: "./media/characters/kite/front.svg",
  21856. extra: 2796 / 2659,
  21857. bottom: 0.002
  21858. }
  21859. },
  21860. },
  21861. [
  21862. {
  21863. name: "Normal",
  21864. height: math.unit(8, "feet"),
  21865. default: true
  21866. },
  21867. {
  21868. name: "Macro",
  21869. height: math.unit(360, "feet")
  21870. },
  21871. {
  21872. name: "Megamacro",
  21873. height: math.unit(1500, "feet")
  21874. },
  21875. ]
  21876. ))
  21877. characterMakers.push(() => makeCharacter(
  21878. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21879. {
  21880. front: {
  21881. height: math.unit(5 + 11/12, "feet"),
  21882. weight: math.unit(170, "lb"),
  21883. name: "Front",
  21884. image: {
  21885. source: "./media/characters/poojawa-vynar/front.svg",
  21886. extra: 1735/1585,
  21887. bottom: 96/1831
  21888. }
  21889. },
  21890. back: {
  21891. height: math.unit(5 + 11/12, "feet"),
  21892. weight: math.unit(170, "lb"),
  21893. name: "Back",
  21894. image: {
  21895. source: "./media/characters/poojawa-vynar/back.svg",
  21896. extra: 1749/1607,
  21897. bottom: 28/1777
  21898. }
  21899. },
  21900. male: {
  21901. height: math.unit(5 + 11/12, "feet"),
  21902. weight: math.unit(170, "lb"),
  21903. name: "Male",
  21904. image: {
  21905. source: "./media/characters/poojawa-vynar/male.svg",
  21906. extra: 1855/1713,
  21907. bottom: 63/1918
  21908. }
  21909. },
  21910. taur: {
  21911. height: math.unit(5 + 11/12, "feet"),
  21912. weight: math.unit(170, "lb"),
  21913. name: "Taur",
  21914. image: {
  21915. source: "./media/characters/poojawa-vynar/taur.svg",
  21916. extra: 1151/1059,
  21917. bottom: 356/1507
  21918. }
  21919. },
  21920. frontDressed: {
  21921. height: math.unit(5 + 11/12, "feet"),
  21922. weight: math.unit(170, "lb"),
  21923. name: "Front (Dressed)",
  21924. image: {
  21925. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21926. extra: 1735/1585,
  21927. bottom: 96/1831
  21928. }
  21929. },
  21930. backDressed: {
  21931. height: math.unit(5 + 11/12, "feet"),
  21932. weight: math.unit(170, "lb"),
  21933. name: "Back (Dressed)",
  21934. image: {
  21935. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21936. extra: 1749/1607,
  21937. bottom: 28/1777
  21938. }
  21939. },
  21940. maleDressed: {
  21941. height: math.unit(5 + 11/12, "feet"),
  21942. weight: math.unit(170, "lb"),
  21943. name: "Male (Dressed)",
  21944. image: {
  21945. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21946. extra: 1855/1713,
  21947. bottom: 63/1918
  21948. }
  21949. },
  21950. taurDressed: {
  21951. height: math.unit(5 + 11/12, "feet"),
  21952. weight: math.unit(170, "lb"),
  21953. name: "Taur (Dressed)",
  21954. image: {
  21955. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21956. extra: 1151/1059,
  21957. bottom: 356/1507
  21958. }
  21959. },
  21960. maw: {
  21961. height: math.unit(1.46, "feet"),
  21962. name: "Maw",
  21963. image: {
  21964. source: "./media/characters/poojawa-vynar/maw.svg"
  21965. }
  21966. },
  21967. head: {
  21968. height: math.unit(2.34, "feet"),
  21969. name: "Head",
  21970. image: {
  21971. source: "./media/characters/poojawa-vynar/head.svg"
  21972. }
  21973. },
  21974. paw: {
  21975. height: math.unit(1.61, "feet"),
  21976. name: "Paw",
  21977. image: {
  21978. source: "./media/characters/poojawa-vynar/paw.svg"
  21979. }
  21980. },
  21981. pawToering: {
  21982. height: math.unit(1.72, "feet"),
  21983. name: "Paw (Toering)",
  21984. image: {
  21985. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21986. }
  21987. },
  21988. toering: {
  21989. height: math.unit(2.9, "inches"),
  21990. name: "Toering",
  21991. image: {
  21992. source: "./media/characters/poojawa-vynar/toering.svg"
  21993. }
  21994. },
  21995. shaft: {
  21996. height: math.unit(0.625, "feet"),
  21997. name: "Shaft",
  21998. image: {
  21999. source: "./media/characters/poojawa-vynar/shaft.svg"
  22000. }
  22001. },
  22002. spade: {
  22003. height: math.unit(0.42, "feet"),
  22004. name: "Spade",
  22005. image: {
  22006. source: "./media/characters/poojawa-vynar/spade.svg"
  22007. }
  22008. },
  22009. },
  22010. [
  22011. {
  22012. name: "Shortstack",
  22013. height: math.unit(4, "feet")
  22014. },
  22015. {
  22016. name: "Normal",
  22017. height: math.unit(5 + 11 / 12, "feet"),
  22018. default: true
  22019. },
  22020. {
  22021. name: "Tauric",
  22022. height: math.unit(4, "meters")
  22023. },
  22024. ]
  22025. ))
  22026. characterMakers.push(() => makeCharacter(
  22027. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22028. {
  22029. front: {
  22030. height: math.unit(293, "meters"),
  22031. weight: math.unit(70400, "tons"),
  22032. name: "Front",
  22033. image: {
  22034. source: "./media/characters/violette/front.svg",
  22035. extra: 1227 / 1180,
  22036. bottom: 0.005
  22037. }
  22038. },
  22039. back: {
  22040. height: math.unit(293, "meters"),
  22041. weight: math.unit(70400, "tons"),
  22042. name: "Back",
  22043. image: {
  22044. source: "./media/characters/violette/back.svg",
  22045. extra: 1227 / 1180,
  22046. bottom: 0.005
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Macro",
  22053. height: math.unit(293, "meters"),
  22054. default: true
  22055. },
  22056. ]
  22057. ))
  22058. characterMakers.push(() => makeCharacter(
  22059. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22060. {
  22061. front: {
  22062. height: math.unit(1050, "feet"),
  22063. weight: math.unit(200000, "tons"),
  22064. name: "Front",
  22065. image: {
  22066. source: "./media/characters/alessandra/front.svg",
  22067. extra: 960 / 912,
  22068. bottom: 0.06
  22069. }
  22070. },
  22071. },
  22072. [
  22073. {
  22074. name: "Macro",
  22075. height: math.unit(1050, "feet")
  22076. },
  22077. {
  22078. name: "Macro+",
  22079. height: math.unit(900, "meters"),
  22080. default: true
  22081. },
  22082. ]
  22083. ))
  22084. characterMakers.push(() => makeCharacter(
  22085. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22086. {
  22087. front: {
  22088. height: math.unit(5, "feet"),
  22089. weight: math.unit(187, "lb"),
  22090. name: "Front",
  22091. image: {
  22092. source: "./media/characters/person/front.svg",
  22093. extra: 3087 / 2945,
  22094. bottom: 91 / 3181
  22095. }
  22096. },
  22097. },
  22098. [
  22099. {
  22100. name: "Micro",
  22101. height: math.unit(3, "inches")
  22102. },
  22103. {
  22104. name: "Normal",
  22105. height: math.unit(5, "feet"),
  22106. default: true
  22107. },
  22108. {
  22109. name: "Macro",
  22110. height: math.unit(90, "feet")
  22111. },
  22112. {
  22113. name: "Max Size",
  22114. height: math.unit(280, "feet")
  22115. },
  22116. ]
  22117. ))
  22118. characterMakers.push(() => makeCharacter(
  22119. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22120. {
  22121. front: {
  22122. height: math.unit(4.5, "meters"),
  22123. weight: math.unit(3200, "lb"),
  22124. name: "Front",
  22125. image: {
  22126. source: "./media/characters/ty/front.svg",
  22127. extra: 1038 / 960,
  22128. bottom: 31.156 / 1068
  22129. }
  22130. },
  22131. back: {
  22132. height: math.unit(4.5, "meters"),
  22133. weight: math.unit(3200, "lb"),
  22134. name: "Back",
  22135. image: {
  22136. source: "./media/characters/ty/back.svg",
  22137. extra: 1044 / 966,
  22138. bottom: 7.48 / 1049
  22139. }
  22140. },
  22141. },
  22142. [
  22143. {
  22144. name: "Normal",
  22145. height: math.unit(4.5, "meters"),
  22146. default: true
  22147. },
  22148. ]
  22149. ))
  22150. characterMakers.push(() => makeCharacter(
  22151. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22152. {
  22153. front: {
  22154. height: math.unit(5 + 4 / 12, "feet"),
  22155. weight: math.unit(115, "lb"),
  22156. name: "Front",
  22157. image: {
  22158. source: "./media/characters/rocky/front.svg",
  22159. extra: 1012 / 975,
  22160. bottom: 54 / 1066
  22161. }
  22162. },
  22163. },
  22164. [
  22165. {
  22166. name: "Normal",
  22167. height: math.unit(5 + 4 / 12, "feet"),
  22168. default: true
  22169. },
  22170. ]
  22171. ))
  22172. characterMakers.push(() => makeCharacter(
  22173. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22174. {
  22175. upright: {
  22176. height: math.unit(6, "meters"),
  22177. weight: math.unit(4000, "kg"),
  22178. name: "Upright",
  22179. image: {
  22180. source: "./media/characters/ruin/upright.svg",
  22181. extra: 668 / 661,
  22182. bottom: 42 / 799.8396
  22183. }
  22184. },
  22185. },
  22186. [
  22187. {
  22188. name: "Normal",
  22189. height: math.unit(6, "meters"),
  22190. default: true
  22191. },
  22192. ]
  22193. ))
  22194. characterMakers.push(() => makeCharacter(
  22195. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22196. {
  22197. front: {
  22198. height: math.unit(5, "feet"),
  22199. weight: math.unit(106, "lb"),
  22200. name: "Front",
  22201. image: {
  22202. source: "./media/characters/robin/front.svg",
  22203. extra: 862 / 799,
  22204. bottom: 42.4 / 914.8856
  22205. }
  22206. },
  22207. },
  22208. [
  22209. {
  22210. name: "Normal",
  22211. height: math.unit(5, "feet"),
  22212. default: true
  22213. },
  22214. ]
  22215. ))
  22216. characterMakers.push(() => makeCharacter(
  22217. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22218. {
  22219. side: {
  22220. height: math.unit(3, "feet"),
  22221. weight: math.unit(225, "lb"),
  22222. name: "Side",
  22223. image: {
  22224. source: "./media/characters/saian/side.svg",
  22225. extra: 566 / 356,
  22226. bottom: 79.7 / 643
  22227. }
  22228. },
  22229. maw: {
  22230. height: math.unit(2.85, "feet"),
  22231. name: "Maw",
  22232. image: {
  22233. source: "./media/characters/saian/maw.svg"
  22234. }
  22235. },
  22236. },
  22237. [
  22238. {
  22239. name: "Normal",
  22240. height: math.unit(3, "feet"),
  22241. default: true
  22242. },
  22243. ]
  22244. ))
  22245. characterMakers.push(() => makeCharacter(
  22246. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22247. {
  22248. side: {
  22249. height: math.unit(8, "feet"),
  22250. weight: math.unit(300, "lb"),
  22251. name: "Side",
  22252. image: {
  22253. source: "./media/characters/equus-silvermane/side.svg",
  22254. extra: 2176 / 2050,
  22255. bottom: 65.7 / 2245
  22256. }
  22257. },
  22258. front: {
  22259. height: math.unit(8, "feet"),
  22260. weight: math.unit(300, "lb"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/equus-silvermane/front.svg",
  22264. extra: 4633 / 4400,
  22265. bottom: 71.3 / 4706.915
  22266. }
  22267. },
  22268. sideStepping: {
  22269. height: math.unit(8, "feet"),
  22270. weight: math.unit(300, "lb"),
  22271. name: "Side (Stepping)",
  22272. image: {
  22273. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22274. extra: 1968 / 1860,
  22275. bottom: 16.4 / 1989
  22276. }
  22277. },
  22278. },
  22279. [
  22280. {
  22281. name: "Normal",
  22282. height: math.unit(8, "feet")
  22283. },
  22284. {
  22285. name: "Minimacro",
  22286. height: math.unit(75, "feet"),
  22287. default: true
  22288. },
  22289. {
  22290. name: "Macro",
  22291. height: math.unit(150, "feet")
  22292. },
  22293. {
  22294. name: "Macro+",
  22295. height: math.unit(1000, "feet")
  22296. },
  22297. {
  22298. name: "Megamacro",
  22299. height: math.unit(1, "mile")
  22300. },
  22301. ]
  22302. ))
  22303. characterMakers.push(() => makeCharacter(
  22304. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22305. {
  22306. side: {
  22307. height: math.unit(20, "feet"),
  22308. weight: math.unit(30000, "kg"),
  22309. name: "Side",
  22310. image: {
  22311. source: "./media/characters/windar/side.svg",
  22312. extra: 1491 / 1248,
  22313. bottom: 82.56 / 1568
  22314. }
  22315. },
  22316. },
  22317. [
  22318. {
  22319. name: "Normal",
  22320. height: math.unit(20, "feet"),
  22321. default: true
  22322. },
  22323. ]
  22324. ))
  22325. characterMakers.push(() => makeCharacter(
  22326. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22327. {
  22328. side: {
  22329. height: math.unit(15.66, "feet"),
  22330. weight: math.unit(150, "lb"),
  22331. name: "Side",
  22332. image: {
  22333. source: "./media/characters/melody/side.svg",
  22334. extra: 1097 / 944,
  22335. bottom: 11.8 / 1109
  22336. }
  22337. },
  22338. sideOutfit: {
  22339. height: math.unit(15.66, "feet"),
  22340. weight: math.unit(150, "lb"),
  22341. name: "Side (Outfit)",
  22342. image: {
  22343. source: "./media/characters/melody/side-outfit.svg",
  22344. extra: 1097 / 944,
  22345. bottom: 11.8 / 1109
  22346. }
  22347. },
  22348. },
  22349. [
  22350. {
  22351. name: "Normal",
  22352. height: math.unit(15.66, "feet"),
  22353. default: true
  22354. },
  22355. ]
  22356. ))
  22357. characterMakers.push(() => makeCharacter(
  22358. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22359. {
  22360. front: {
  22361. height: math.unit(8, "feet"),
  22362. weight: math.unit(325, "lb"),
  22363. name: "Front",
  22364. image: {
  22365. source: "./media/characters/windera/front.svg",
  22366. extra: 3180 / 2845,
  22367. bottom: 178 / 3365
  22368. }
  22369. },
  22370. },
  22371. [
  22372. {
  22373. name: "Normal",
  22374. height: math.unit(8, "feet"),
  22375. default: true
  22376. },
  22377. ]
  22378. ))
  22379. characterMakers.push(() => makeCharacter(
  22380. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22381. {
  22382. front: {
  22383. height: math.unit(28.75, "feet"),
  22384. weight: math.unit(2000, "kg"),
  22385. name: "Front",
  22386. image: {
  22387. source: "./media/characters/sonear/front.svg",
  22388. extra: 1041.1 / 964.9,
  22389. bottom: 53.7 / 1096.6
  22390. }
  22391. },
  22392. },
  22393. [
  22394. {
  22395. name: "Normal",
  22396. height: math.unit(28.75, "feet"),
  22397. default: true
  22398. },
  22399. ]
  22400. ))
  22401. characterMakers.push(() => makeCharacter(
  22402. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22403. {
  22404. side: {
  22405. height: math.unit(25.5, "feet"),
  22406. weight: math.unit(23000, "kg"),
  22407. name: "Side",
  22408. image: {
  22409. source: "./media/characters/kanara/side.svg"
  22410. }
  22411. },
  22412. },
  22413. [
  22414. {
  22415. name: "Normal",
  22416. height: math.unit(25.5, "feet"),
  22417. default: true
  22418. },
  22419. ]
  22420. ))
  22421. characterMakers.push(() => makeCharacter(
  22422. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22423. {
  22424. side: {
  22425. height: math.unit(10, "feet"),
  22426. weight: math.unit(1000, "kg"),
  22427. name: "Side",
  22428. image: {
  22429. source: "./media/characters/ereus/side.svg",
  22430. extra: 1157 / 959,
  22431. bottom: 153 / 1312.5
  22432. }
  22433. },
  22434. },
  22435. [
  22436. {
  22437. name: "Normal",
  22438. height: math.unit(10, "feet"),
  22439. default: true
  22440. },
  22441. ]
  22442. ))
  22443. characterMakers.push(() => makeCharacter(
  22444. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22445. {
  22446. side: {
  22447. height: math.unit(4.5, "feet"),
  22448. weight: math.unit(500, "lb"),
  22449. name: "Side",
  22450. image: {
  22451. source: "./media/characters/e-ter/side.svg",
  22452. extra: 1550 / 1248,
  22453. bottom: 146 / 1694
  22454. }
  22455. },
  22456. },
  22457. [
  22458. {
  22459. name: "Normal",
  22460. height: math.unit(4.5, "feet"),
  22461. default: true
  22462. },
  22463. ]
  22464. ))
  22465. characterMakers.push(() => makeCharacter(
  22466. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22467. {
  22468. side: {
  22469. height: math.unit(9.7, "feet"),
  22470. weight: math.unit(4000, "kg"),
  22471. name: "Side",
  22472. image: {
  22473. source: "./media/characters/yamie/side.svg"
  22474. }
  22475. },
  22476. },
  22477. [
  22478. {
  22479. name: "Normal",
  22480. height: math.unit(9.7, "feet"),
  22481. default: true
  22482. },
  22483. ]
  22484. ))
  22485. characterMakers.push(() => makeCharacter(
  22486. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22487. {
  22488. front: {
  22489. height: math.unit(50, "feet"),
  22490. weight: math.unit(50000, "kg"),
  22491. name: "Front",
  22492. image: {
  22493. source: "./media/characters/anders/front.svg",
  22494. extra: 570 / 539,
  22495. bottom: 14.7 / 586.7
  22496. }
  22497. },
  22498. },
  22499. [
  22500. {
  22501. name: "Large",
  22502. height: math.unit(50, "feet")
  22503. },
  22504. {
  22505. name: "Macro",
  22506. height: math.unit(2000, "feet"),
  22507. default: true
  22508. },
  22509. {
  22510. name: "Megamacro",
  22511. height: math.unit(12, "miles")
  22512. },
  22513. ]
  22514. ))
  22515. characterMakers.push(() => makeCharacter(
  22516. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22517. {
  22518. front: {
  22519. height: math.unit(7 + 2 / 12, "feet"),
  22520. weight: math.unit(300, "lb"),
  22521. name: "Front",
  22522. image: {
  22523. source: "./media/characters/reban/front.svg",
  22524. extra: 1287/1212,
  22525. bottom: 148/1435
  22526. }
  22527. },
  22528. head: {
  22529. height: math.unit(1.95, "feet"),
  22530. name: "Head",
  22531. image: {
  22532. source: "./media/characters/reban/head.svg"
  22533. }
  22534. },
  22535. maw: {
  22536. height: math.unit(0.95, "feet"),
  22537. name: "Maw",
  22538. image: {
  22539. source: "./media/characters/reban/maw.svg"
  22540. }
  22541. },
  22542. foot: {
  22543. height: math.unit(1.65, "feet"),
  22544. name: "Foot",
  22545. image: {
  22546. source: "./media/characters/reban/foot.svg"
  22547. }
  22548. },
  22549. dick: {
  22550. height: math.unit(7 / 5, "feet"),
  22551. name: "Dick",
  22552. image: {
  22553. source: "./media/characters/reban/dick.svg"
  22554. }
  22555. },
  22556. },
  22557. [
  22558. {
  22559. name: "Natural Height",
  22560. height: math.unit(7 + 2 / 12, "feet")
  22561. },
  22562. {
  22563. name: "Macro",
  22564. height: math.unit(500, "feet"),
  22565. default: true
  22566. },
  22567. {
  22568. name: "Canon Height",
  22569. height: math.unit(50, "AU")
  22570. },
  22571. ]
  22572. ))
  22573. characterMakers.push(() => makeCharacter(
  22574. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22575. {
  22576. front: {
  22577. height: math.unit(6, "feet"),
  22578. weight: math.unit(150, "lb"),
  22579. name: "Front",
  22580. image: {
  22581. source: "./media/characters/terrance-keayes/front.svg",
  22582. extra: 1.005,
  22583. bottom: 151 / 1615
  22584. }
  22585. },
  22586. side: {
  22587. height: math.unit(6, "feet"),
  22588. weight: math.unit(150, "lb"),
  22589. name: "Side",
  22590. image: {
  22591. source: "./media/characters/terrance-keayes/side.svg",
  22592. extra: 1.005,
  22593. bottom: 129.4 / 1544
  22594. }
  22595. },
  22596. back: {
  22597. height: math.unit(6, "feet"),
  22598. weight: math.unit(150, "lb"),
  22599. name: "Back",
  22600. image: {
  22601. source: "./media/characters/terrance-keayes/back.svg",
  22602. extra: 1.005,
  22603. bottom: 58.4 / 1557.3
  22604. }
  22605. },
  22606. dick: {
  22607. height: math.unit(6 * 0.208, "feet"),
  22608. name: "Dick",
  22609. image: {
  22610. source: "./media/characters/terrance-keayes/dick.svg"
  22611. }
  22612. },
  22613. },
  22614. [
  22615. {
  22616. name: "Canon Height",
  22617. height: math.unit(35, "miles"),
  22618. default: true
  22619. },
  22620. ]
  22621. ))
  22622. characterMakers.push(() => makeCharacter(
  22623. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22624. {
  22625. front: {
  22626. height: math.unit(6, "feet"),
  22627. weight: math.unit(150, "lb"),
  22628. name: "Front",
  22629. image: {
  22630. source: "./media/characters/ofelia/front.svg",
  22631. extra: 1130/1117,
  22632. bottom: 91/1221
  22633. }
  22634. },
  22635. back: {
  22636. height: math.unit(6, "feet"),
  22637. weight: math.unit(150, "lb"),
  22638. name: "Back",
  22639. image: {
  22640. source: "./media/characters/ofelia/back.svg",
  22641. extra: 1172/1159,
  22642. bottom: 28/1200
  22643. }
  22644. },
  22645. maw: {
  22646. height: math.unit(1, "feet"),
  22647. name: "Maw",
  22648. image: {
  22649. source: "./media/characters/ofelia/maw.svg"
  22650. }
  22651. },
  22652. foot: {
  22653. height: math.unit(1.949, "feet"),
  22654. name: "Foot",
  22655. image: {
  22656. source: "./media/characters/ofelia/foot.svg"
  22657. }
  22658. },
  22659. },
  22660. [
  22661. {
  22662. name: "Canon Height",
  22663. height: math.unit(2000, "miles"),
  22664. default: true
  22665. },
  22666. ]
  22667. ))
  22668. characterMakers.push(() => makeCharacter(
  22669. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22670. {
  22671. front: {
  22672. height: math.unit(6, "feet"),
  22673. weight: math.unit(150, "lb"),
  22674. name: "Front",
  22675. image: {
  22676. source: "./media/characters/samuel/front.svg",
  22677. extra: 265 / 258,
  22678. bottom: 2 / 266.1566
  22679. }
  22680. },
  22681. },
  22682. [
  22683. {
  22684. name: "Macro",
  22685. height: math.unit(100, "feet"),
  22686. default: true
  22687. },
  22688. {
  22689. name: "Full Size",
  22690. height: math.unit(1000, "miles")
  22691. },
  22692. ]
  22693. ))
  22694. characterMakers.push(() => makeCharacter(
  22695. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22696. {
  22697. front: {
  22698. height: math.unit(6, "feet"),
  22699. weight: math.unit(300, "lb"),
  22700. name: "Front",
  22701. image: {
  22702. source: "./media/characters/beishir-kiel/front.svg",
  22703. extra: 569 / 547,
  22704. bottom: 41.9 / 609
  22705. }
  22706. },
  22707. maw: {
  22708. height: math.unit(6 * 0.202, "feet"),
  22709. name: "Maw",
  22710. image: {
  22711. source: "./media/characters/beishir-kiel/maw.svg"
  22712. }
  22713. },
  22714. },
  22715. [
  22716. {
  22717. name: "Macro",
  22718. height: math.unit(300, "feet"),
  22719. default: true
  22720. },
  22721. ]
  22722. ))
  22723. characterMakers.push(() => makeCharacter(
  22724. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22725. {
  22726. front: {
  22727. height: math.unit(5 + 7/12, "feet"),
  22728. weight: math.unit(120, "lb"),
  22729. name: "Front",
  22730. image: {
  22731. source: "./media/characters/logan-grey/front.svg",
  22732. extra: 1836/1738,
  22733. bottom: 108/1944
  22734. }
  22735. },
  22736. back: {
  22737. height: math.unit(5 + 7/12, "feet"),
  22738. weight: math.unit(120, "lb"),
  22739. name: "Back",
  22740. image: {
  22741. source: "./media/characters/logan-grey/back.svg",
  22742. extra: 1880/1794,
  22743. bottom: 24/1904
  22744. }
  22745. },
  22746. frontSfw: {
  22747. height: math.unit(5 + 7/12, "feet"),
  22748. weight: math.unit(120, "lb"),
  22749. name: "Front (SFW)",
  22750. image: {
  22751. source: "./media/characters/logan-grey/front-sfw.svg",
  22752. extra: 1836/1738,
  22753. bottom: 108/1944
  22754. }
  22755. },
  22756. backSfw: {
  22757. height: math.unit(5 + 7/12, "feet"),
  22758. weight: math.unit(120, "lb"),
  22759. name: "Back (SFW)",
  22760. image: {
  22761. source: "./media/characters/logan-grey/back-sfw.svg",
  22762. extra: 1880/1794,
  22763. bottom: 24/1904
  22764. }
  22765. },
  22766. hands: {
  22767. height: math.unit(0.84, "feet"),
  22768. name: "Hands",
  22769. image: {
  22770. source: "./media/characters/logan-grey/hands.svg"
  22771. }
  22772. },
  22773. paws: {
  22774. height: math.unit(0.72, "feet"),
  22775. name: "Paws",
  22776. image: {
  22777. source: "./media/characters/logan-grey/paws.svg"
  22778. }
  22779. },
  22780. cock: {
  22781. height: math.unit(1.45, "feet"),
  22782. name: "Cock",
  22783. image: {
  22784. source: "./media/characters/logan-grey/cock.svg"
  22785. }
  22786. },
  22787. cockAlt: {
  22788. height: math.unit(1.437, "feet"),
  22789. name: "Cock (alt)",
  22790. image: {
  22791. source: "./media/characters/logan-grey/cock-alt.svg"
  22792. }
  22793. },
  22794. },
  22795. [
  22796. {
  22797. name: "Normal",
  22798. height: math.unit(5 + 8 / 12, "feet")
  22799. },
  22800. {
  22801. name: "The 500 Foot Femboy",
  22802. height: math.unit(500, "feet"),
  22803. default: true
  22804. },
  22805. {
  22806. name: "Megmacro",
  22807. height: math.unit(20, "miles")
  22808. },
  22809. ]
  22810. ))
  22811. characterMakers.push(() => makeCharacter(
  22812. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22813. {
  22814. front: {
  22815. height: math.unit(8 + 2 / 12, "feet"),
  22816. weight: math.unit(275, "lb"),
  22817. name: "Front",
  22818. image: {
  22819. source: "./media/characters/draganta/front.svg",
  22820. extra: 1177 / 1135,
  22821. bottom: 33.46 / 1212.1
  22822. }
  22823. },
  22824. },
  22825. [
  22826. {
  22827. name: "Normal",
  22828. height: math.unit(8 + 6 / 12, "feet"),
  22829. default: true
  22830. },
  22831. {
  22832. name: "Macro",
  22833. height: math.unit(150, "feet")
  22834. },
  22835. {
  22836. name: "Megamacro",
  22837. height: math.unit(1000, "miles")
  22838. },
  22839. ]
  22840. ))
  22841. characterMakers.push(() => makeCharacter(
  22842. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22843. {
  22844. front: {
  22845. height: math.unit(1.72, "m"),
  22846. weight: math.unit(80, "lb"),
  22847. name: "Front",
  22848. image: {
  22849. source: "./media/characters/voski/front.svg",
  22850. extra: 2076.22 / 2022.4,
  22851. bottom: 102.7 / 2177.3866
  22852. }
  22853. },
  22854. frontNsfw: {
  22855. height: math.unit(1.72, "m"),
  22856. weight: math.unit(80, "lb"),
  22857. name: "Front (NSFW)",
  22858. image: {
  22859. source: "./media/characters/voski/front-nsfw.svg",
  22860. extra: 2076.22 / 2022.4,
  22861. bottom: 102.7 / 2177.3866
  22862. }
  22863. },
  22864. back: {
  22865. height: math.unit(1.72, "m"),
  22866. weight: math.unit(80, "lb"),
  22867. name: "Back",
  22868. image: {
  22869. source: "./media/characters/voski/back.svg",
  22870. extra: 2104 / 2051,
  22871. bottom: 10.45 / 2113.63
  22872. }
  22873. },
  22874. },
  22875. [
  22876. {
  22877. name: "Normal",
  22878. height: math.unit(1.72, "m")
  22879. },
  22880. {
  22881. name: "Macro",
  22882. height: math.unit(55, "m"),
  22883. default: true
  22884. },
  22885. {
  22886. name: "Macro+",
  22887. height: math.unit(300, "m")
  22888. },
  22889. {
  22890. name: "Macro++",
  22891. height: math.unit(700, "m")
  22892. },
  22893. {
  22894. name: "Macro+++",
  22895. height: math.unit(4500, "m")
  22896. },
  22897. {
  22898. name: "Macro++++",
  22899. height: math.unit(45, "km")
  22900. },
  22901. {
  22902. name: "Macro+++++",
  22903. height: math.unit(1220, "km")
  22904. },
  22905. ]
  22906. ))
  22907. characterMakers.push(() => makeCharacter(
  22908. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22909. {
  22910. front: {
  22911. height: math.unit(2.3, "m"),
  22912. weight: math.unit(304, "kg"),
  22913. name: "Front",
  22914. image: {
  22915. source: "./media/characters/icowom-lee/front.svg",
  22916. extra: 985 / 955,
  22917. bottom: 25.4 / 1012
  22918. }
  22919. },
  22920. fronttentacles: {
  22921. height: math.unit(2.3, "m"),
  22922. weight: math.unit(304, "kg"),
  22923. name: "Front-tentacles",
  22924. image: {
  22925. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22926. extra: 985 / 955,
  22927. bottom: 25.4 / 1012
  22928. }
  22929. },
  22930. back: {
  22931. height: math.unit(2.3, "m"),
  22932. weight: math.unit(304, "kg"),
  22933. name: "Back",
  22934. image: {
  22935. source: "./media/characters/icowom-lee/back.svg",
  22936. extra: 975 / 954,
  22937. bottom: 9.5 / 985
  22938. }
  22939. },
  22940. backtentacles: {
  22941. height: math.unit(2.3, "m"),
  22942. weight: math.unit(304, "kg"),
  22943. name: "Back-tentacles",
  22944. image: {
  22945. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22946. extra: 975 / 954,
  22947. bottom: 9.5 / 985
  22948. }
  22949. },
  22950. frontDressed: {
  22951. height: math.unit(2.3, "m"),
  22952. weight: math.unit(304, "kg"),
  22953. name: "Front (Dressed)",
  22954. image: {
  22955. source: "./media/characters/icowom-lee/front-dressed.svg",
  22956. extra: 3076 / 2933,
  22957. bottom: 51.4 / 3125.1889
  22958. }
  22959. },
  22960. rump: {
  22961. height: math.unit(0.776, "meters"),
  22962. name: "Rump",
  22963. image: {
  22964. source: "./media/characters/icowom-lee/rump.svg"
  22965. }
  22966. },
  22967. genitals: {
  22968. height: math.unit(0.78, "meters"),
  22969. name: "Genitals",
  22970. image: {
  22971. source: "./media/characters/icowom-lee/genitals.svg"
  22972. }
  22973. },
  22974. },
  22975. [
  22976. {
  22977. name: "Normal",
  22978. height: math.unit(2.3, "meters"),
  22979. default: true
  22980. },
  22981. {
  22982. name: "Macro",
  22983. height: math.unit(94, "meters"),
  22984. default: true
  22985. },
  22986. ]
  22987. ))
  22988. characterMakers.push(() => makeCharacter(
  22989. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22990. {
  22991. front: {
  22992. height: math.unit(22, "meters"),
  22993. weight: math.unit(21000, "kg"),
  22994. name: "Front",
  22995. image: {
  22996. source: "./media/characters/shock-diamond/front.svg",
  22997. extra: 2204 / 2053,
  22998. bottom: 65 / 2239.47
  22999. }
  23000. },
  23001. frontNude: {
  23002. height: math.unit(22, "meters"),
  23003. weight: math.unit(21000, "kg"),
  23004. name: "Front (Nude)",
  23005. image: {
  23006. source: "./media/characters/shock-diamond/front-nude.svg",
  23007. extra: 2514 / 2285,
  23008. bottom: 13 / 2527.56
  23009. }
  23010. },
  23011. },
  23012. [
  23013. {
  23014. name: "Normal",
  23015. height: math.unit(3, "meters")
  23016. },
  23017. {
  23018. name: "Macro",
  23019. height: math.unit(22, "meters"),
  23020. default: true
  23021. },
  23022. ]
  23023. ))
  23024. characterMakers.push(() => makeCharacter(
  23025. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23026. {
  23027. front: {
  23028. height: math.unit(5 + 4 / 12, "feet"),
  23029. weight: math.unit(120, "lb"),
  23030. name: "Front",
  23031. image: {
  23032. source: "./media/characters/rory/front.svg",
  23033. extra: 1318/1241,
  23034. bottom: 42/1360
  23035. }
  23036. },
  23037. back: {
  23038. height: math.unit(5 + 4 / 12, "feet"),
  23039. weight: math.unit(120, "lb"),
  23040. name: "Back",
  23041. image: {
  23042. source: "./media/characters/rory/back.svg",
  23043. extra: 1318/1241,
  23044. bottom: 42/1360
  23045. }
  23046. },
  23047. butt: {
  23048. height: math.unit(1.74, "feet"),
  23049. name: "Butt",
  23050. image: {
  23051. source: "./media/characters/rory/butt.svg"
  23052. }
  23053. },
  23054. dick: {
  23055. height: math.unit(1.02, "feet"),
  23056. name: "Dick",
  23057. image: {
  23058. source: "./media/characters/rory/dick.svg"
  23059. }
  23060. },
  23061. paws: {
  23062. height: math.unit(1, "feet"),
  23063. name: "Paws",
  23064. image: {
  23065. source: "./media/characters/rory/paws.svg"
  23066. }
  23067. },
  23068. frontAlt: {
  23069. height: math.unit(5 + 4 / 12, "feet"),
  23070. weight: math.unit(120, "lb"),
  23071. name: "Front (Alt)",
  23072. image: {
  23073. source: "./media/characters/rory/front-alt.svg",
  23074. extra: 589 / 556,
  23075. bottom: 45.7 / 635.76
  23076. }
  23077. },
  23078. frontAltNude: {
  23079. height: math.unit(5 + 4 / 12, "feet"),
  23080. weight: math.unit(120, "lb"),
  23081. name: "Front (Alt, Nude)",
  23082. image: {
  23083. source: "./media/characters/rory/front-alt-nude.svg",
  23084. extra: 589 / 556,
  23085. bottom: 45.7 / 635.76
  23086. }
  23087. },
  23088. side: {
  23089. height: math.unit(5 + 4 / 12, "feet"),
  23090. weight: math.unit(120, "lb"),
  23091. name: "Side",
  23092. image: {
  23093. source: "./media/characters/rory/side.svg",
  23094. extra: 597 / 564,
  23095. bottom: 55 / 653
  23096. }
  23097. },
  23098. backAlt: {
  23099. height: math.unit(5 + 4 / 12, "feet"),
  23100. weight: math.unit(120, "lb"),
  23101. name: "Back (Alt)",
  23102. image: {
  23103. source: "./media/characters/rory/back-alt.svg",
  23104. extra: 620 / 585,
  23105. bottom: 8.86 / 630.43
  23106. }
  23107. },
  23108. dickAlt: {
  23109. height: math.unit(0.86, "feet"),
  23110. name: "Dick (Alt)",
  23111. image: {
  23112. source: "./media/characters/rory/dick-alt.svg"
  23113. }
  23114. },
  23115. },
  23116. [
  23117. {
  23118. name: "Normal",
  23119. height: math.unit(5 + 4 / 12, "feet"),
  23120. default: true
  23121. },
  23122. {
  23123. name: "Macro",
  23124. height: math.unit(100, "feet")
  23125. },
  23126. {
  23127. name: "Macro+",
  23128. height: math.unit(140, "feet")
  23129. },
  23130. {
  23131. name: "Macro++",
  23132. height: math.unit(300, "feet")
  23133. },
  23134. ]
  23135. ))
  23136. characterMakers.push(() => makeCharacter(
  23137. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23138. {
  23139. front: {
  23140. height: math.unit(5 + 9 / 12, "feet"),
  23141. weight: math.unit(190, "lb"),
  23142. name: "Front",
  23143. image: {
  23144. source: "./media/characters/sprisk/front.svg",
  23145. extra: 1225 / 1180,
  23146. bottom: 42.7 / 1266.4
  23147. }
  23148. },
  23149. frontNsfw: {
  23150. height: math.unit(5 + 9 / 12, "feet"),
  23151. weight: math.unit(190, "lb"),
  23152. name: "Front (NSFW)",
  23153. image: {
  23154. source: "./media/characters/sprisk/front-nsfw.svg",
  23155. extra: 1225 / 1180,
  23156. bottom: 42.7 / 1266.4
  23157. }
  23158. },
  23159. back: {
  23160. height: math.unit(5 + 9 / 12, "feet"),
  23161. weight: math.unit(190, "lb"),
  23162. name: "Back",
  23163. image: {
  23164. source: "./media/characters/sprisk/back.svg",
  23165. extra: 1247 / 1200,
  23166. bottom: 5.6 / 1253.04
  23167. }
  23168. },
  23169. },
  23170. [
  23171. {
  23172. name: "Tiny",
  23173. height: math.unit(2, "inches")
  23174. },
  23175. {
  23176. name: "Normal",
  23177. height: math.unit(5 + 9 / 12, "feet"),
  23178. default: true
  23179. },
  23180. {
  23181. name: "Mini Macro",
  23182. height: math.unit(18, "feet")
  23183. },
  23184. {
  23185. name: "Macro",
  23186. height: math.unit(100, "feet")
  23187. },
  23188. {
  23189. name: "MACRO",
  23190. height: math.unit(50, "miles")
  23191. },
  23192. {
  23193. name: "M A C R O",
  23194. height: math.unit(300, "miles")
  23195. },
  23196. ]
  23197. ))
  23198. characterMakers.push(() => makeCharacter(
  23199. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23200. {
  23201. side: {
  23202. height: math.unit(15.6, "meters"),
  23203. weight: math.unit(700000, "kg"),
  23204. name: "Side",
  23205. image: {
  23206. source: "./media/characters/bunsen/side.svg",
  23207. extra: 1644 / 358
  23208. }
  23209. },
  23210. foot: {
  23211. height: math.unit(1.611 * 1644 / 358, "meter"),
  23212. name: "Foot",
  23213. image: {
  23214. source: "./media/characters/bunsen/foot.svg"
  23215. }
  23216. },
  23217. },
  23218. [
  23219. {
  23220. name: "Small",
  23221. height: math.unit(10, "feet")
  23222. },
  23223. {
  23224. name: "Normal",
  23225. height: math.unit(15.6, "meters"),
  23226. default: true
  23227. },
  23228. ]
  23229. ))
  23230. characterMakers.push(() => makeCharacter(
  23231. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23232. {
  23233. front: {
  23234. height: math.unit(4 + 11 / 12, "feet"),
  23235. weight: math.unit(140, "lb"),
  23236. name: "Front",
  23237. image: {
  23238. source: "./media/characters/sesh/front.svg",
  23239. extra: 3420 / 3231,
  23240. bottom: 72 / 3949.5
  23241. }
  23242. },
  23243. },
  23244. [
  23245. {
  23246. name: "Normal",
  23247. height: math.unit(4 + 11 / 12, "feet")
  23248. },
  23249. {
  23250. name: "Grown",
  23251. height: math.unit(15, "feet"),
  23252. default: true
  23253. },
  23254. {
  23255. name: "Macro",
  23256. height: math.unit(1500, "feet")
  23257. },
  23258. {
  23259. name: "Megamacro",
  23260. height: math.unit(30, "miles")
  23261. },
  23262. {
  23263. name: "Continental",
  23264. height: math.unit(3000, "miles")
  23265. },
  23266. {
  23267. name: "Gravity Mass",
  23268. height: math.unit(300000, "miles")
  23269. },
  23270. {
  23271. name: "Planet Buster",
  23272. height: math.unit(30000000, "miles")
  23273. },
  23274. {
  23275. name: "Big",
  23276. height: math.unit(3000000000, "miles")
  23277. },
  23278. ]
  23279. ))
  23280. characterMakers.push(() => makeCharacter(
  23281. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23282. {
  23283. front: {
  23284. height: math.unit(9, "feet"),
  23285. weight: math.unit(350, "lb"),
  23286. name: "Front",
  23287. image: {
  23288. source: "./media/characters/pepper/front.svg",
  23289. extra: 1448 / 1312,
  23290. bottom: 9.4 / 1457.88
  23291. }
  23292. },
  23293. back: {
  23294. height: math.unit(9, "feet"),
  23295. weight: math.unit(350, "lb"),
  23296. name: "Back",
  23297. image: {
  23298. source: "./media/characters/pepper/back.svg",
  23299. extra: 1423 / 1300,
  23300. bottom: 4.6 / 1429
  23301. }
  23302. },
  23303. maw: {
  23304. height: math.unit(0.932, "feet"),
  23305. name: "Maw",
  23306. image: {
  23307. source: "./media/characters/pepper/maw.svg"
  23308. }
  23309. },
  23310. },
  23311. [
  23312. {
  23313. name: "Normal",
  23314. height: math.unit(9, "feet"),
  23315. default: true
  23316. },
  23317. ]
  23318. ))
  23319. characterMakers.push(() => makeCharacter(
  23320. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23321. {
  23322. front: {
  23323. height: math.unit(6, "feet"),
  23324. weight: math.unit(150, "lb"),
  23325. name: "Front",
  23326. image: {
  23327. source: "./media/characters/maelstrom/front.svg",
  23328. extra: 2100 / 1883,
  23329. bottom: 94 / 2196.7
  23330. }
  23331. },
  23332. },
  23333. [
  23334. {
  23335. name: "Less Kaiju",
  23336. height: math.unit(200, "feet")
  23337. },
  23338. {
  23339. name: "Kaiju",
  23340. height: math.unit(400, "feet"),
  23341. default: true
  23342. },
  23343. {
  23344. name: "Kaiju-er",
  23345. height: math.unit(600, "feet")
  23346. },
  23347. ]
  23348. ))
  23349. characterMakers.push(() => makeCharacter(
  23350. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23351. {
  23352. front: {
  23353. height: math.unit(6 + 5 / 12, "feet"),
  23354. weight: math.unit(180, "lb"),
  23355. name: "Front",
  23356. image: {
  23357. source: "./media/characters/lexir/front.svg",
  23358. extra: 180 / 172,
  23359. bottom: 12 / 192
  23360. }
  23361. },
  23362. back: {
  23363. height: math.unit(6 + 5 / 12, "feet"),
  23364. weight: math.unit(180, "lb"),
  23365. name: "Back",
  23366. image: {
  23367. source: "./media/characters/lexir/back.svg",
  23368. extra: 183.84 / 175.5,
  23369. bottom: 3.1 / 187
  23370. }
  23371. },
  23372. },
  23373. [
  23374. {
  23375. name: "Very Smal",
  23376. height: math.unit(1, "nm")
  23377. },
  23378. {
  23379. name: "Normal",
  23380. height: math.unit(6 + 5 / 12, "feet"),
  23381. default: true
  23382. },
  23383. {
  23384. name: "Macro",
  23385. height: math.unit(1, "mile")
  23386. },
  23387. {
  23388. name: "Megamacro",
  23389. height: math.unit(50, "miles")
  23390. },
  23391. ]
  23392. ))
  23393. characterMakers.push(() => makeCharacter(
  23394. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23395. {
  23396. front: {
  23397. height: math.unit(1.5, "meters"),
  23398. weight: math.unit(100, "lb"),
  23399. name: "Front",
  23400. image: {
  23401. source: "./media/characters/maksio/front.svg",
  23402. extra: 1549 / 1531,
  23403. bottom: 123.7 / 1674.5429
  23404. }
  23405. },
  23406. back: {
  23407. height: math.unit(1.5, "meters"),
  23408. weight: math.unit(100, "lb"),
  23409. name: "Back",
  23410. image: {
  23411. source: "./media/characters/maksio/back.svg",
  23412. extra: 1541 / 1509,
  23413. bottom: 97 / 1639
  23414. }
  23415. },
  23416. hand: {
  23417. height: math.unit(0.621, "feet"),
  23418. name: "Hand",
  23419. image: {
  23420. source: "./media/characters/maksio/hand.svg"
  23421. }
  23422. },
  23423. foot: {
  23424. height: math.unit(1.611, "feet"),
  23425. name: "Foot",
  23426. image: {
  23427. source: "./media/characters/maksio/foot.svg"
  23428. }
  23429. },
  23430. },
  23431. [
  23432. {
  23433. name: "Shrunken",
  23434. height: math.unit(10, "cm")
  23435. },
  23436. {
  23437. name: "Normal",
  23438. height: math.unit(150, "cm"),
  23439. default: true
  23440. },
  23441. ]
  23442. ))
  23443. characterMakers.push(() => makeCharacter(
  23444. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23445. {
  23446. front: {
  23447. height: math.unit(100, "feet"),
  23448. name: "Front",
  23449. image: {
  23450. source: "./media/characters/erza-bear/front.svg",
  23451. extra: 2449 / 2390,
  23452. bottom: 46 / 2494
  23453. }
  23454. },
  23455. back: {
  23456. height: math.unit(100, "feet"),
  23457. name: "Back",
  23458. image: {
  23459. source: "./media/characters/erza-bear/back.svg",
  23460. extra: 2489 / 2430,
  23461. bottom: 85.4 / 2480
  23462. }
  23463. },
  23464. tail: {
  23465. height: math.unit(42, "feet"),
  23466. name: "Tail",
  23467. image: {
  23468. source: "./media/characters/erza-bear/tail.svg"
  23469. }
  23470. },
  23471. tongue: {
  23472. height: math.unit(8, "feet"),
  23473. name: "Tongue",
  23474. image: {
  23475. source: "./media/characters/erza-bear/tongue.svg"
  23476. }
  23477. },
  23478. dick: {
  23479. height: math.unit(10.5, "feet"),
  23480. name: "Dick",
  23481. image: {
  23482. source: "./media/characters/erza-bear/dick.svg"
  23483. }
  23484. },
  23485. dickVertical: {
  23486. height: math.unit(16.9, "feet"),
  23487. name: "Dick (Vertical)",
  23488. image: {
  23489. source: "./media/characters/erza-bear/dick-vertical.svg"
  23490. }
  23491. },
  23492. },
  23493. [
  23494. {
  23495. name: "Macro",
  23496. height: math.unit(100, "feet"),
  23497. default: true
  23498. },
  23499. ]
  23500. ))
  23501. characterMakers.push(() => makeCharacter(
  23502. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23503. {
  23504. front: {
  23505. height: math.unit(172, "cm"),
  23506. weight: math.unit(73, "kg"),
  23507. name: "Front",
  23508. image: {
  23509. source: "./media/characters/violet-flor/front.svg",
  23510. extra: 1530 / 1442,
  23511. bottom: 61.9 / 1588.8
  23512. }
  23513. },
  23514. back: {
  23515. height: math.unit(180, "cm"),
  23516. weight: math.unit(73, "kg"),
  23517. name: "Back",
  23518. image: {
  23519. source: "./media/characters/violet-flor/back.svg",
  23520. extra: 1692 / 1630,
  23521. bottom: 20 / 1712
  23522. }
  23523. },
  23524. },
  23525. [
  23526. {
  23527. name: "Normal",
  23528. height: math.unit(172, "cm"),
  23529. default: true
  23530. },
  23531. ]
  23532. ))
  23533. characterMakers.push(() => makeCharacter(
  23534. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23535. {
  23536. front: {
  23537. height: math.unit(6, "feet"),
  23538. weight: math.unit(220, "lb"),
  23539. name: "Front",
  23540. image: {
  23541. source: "./media/characters/lynn-rhea/front.svg",
  23542. extra: 310 / 273
  23543. }
  23544. },
  23545. back: {
  23546. height: math.unit(6, "feet"),
  23547. weight: math.unit(220, "lb"),
  23548. name: "Back",
  23549. image: {
  23550. source: "./media/characters/lynn-rhea/back.svg",
  23551. extra: 310 / 273
  23552. }
  23553. },
  23554. dicks: {
  23555. height: math.unit(0.9, "feet"),
  23556. name: "Dicks",
  23557. image: {
  23558. source: "./media/characters/lynn-rhea/dicks.svg"
  23559. }
  23560. },
  23561. slit: {
  23562. height: math.unit(0.4, "feet"),
  23563. name: "Slit",
  23564. image: {
  23565. source: "./media/characters/lynn-rhea/slit.svg"
  23566. }
  23567. },
  23568. },
  23569. [
  23570. {
  23571. name: "Micro",
  23572. height: math.unit(1, "inch")
  23573. },
  23574. {
  23575. name: "Macro",
  23576. height: math.unit(60, "feet"),
  23577. default: true
  23578. },
  23579. {
  23580. name: "Megamacro",
  23581. height: math.unit(2, "miles")
  23582. },
  23583. {
  23584. name: "Gigamacro",
  23585. height: math.unit(3, "earths")
  23586. },
  23587. {
  23588. name: "Galactic",
  23589. height: math.unit(0.8, "galaxies")
  23590. },
  23591. ]
  23592. ))
  23593. characterMakers.push(() => makeCharacter(
  23594. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23595. {
  23596. front: {
  23597. height: math.unit(1600, "feet"),
  23598. weight: math.unit(85758785169, "kg"),
  23599. name: "Front",
  23600. image: {
  23601. source: "./media/characters/valathos/front.svg",
  23602. extra: 1451 / 1339
  23603. }
  23604. },
  23605. },
  23606. [
  23607. {
  23608. name: "Macro",
  23609. height: math.unit(1600, "feet"),
  23610. default: true
  23611. },
  23612. ]
  23613. ))
  23614. characterMakers.push(() => makeCharacter(
  23615. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23616. {
  23617. front: {
  23618. height: math.unit(7 + 5 / 12, "feet"),
  23619. weight: math.unit(300, "lb"),
  23620. name: "Front",
  23621. image: {
  23622. source: "./media/characters/azula/front.svg",
  23623. extra: 3208 / 2880,
  23624. bottom: 80.2 / 3277
  23625. }
  23626. },
  23627. back: {
  23628. height: math.unit(7 + 5 / 12, "feet"),
  23629. weight: math.unit(300, "lb"),
  23630. name: "Back",
  23631. image: {
  23632. source: "./media/characters/azula/back.svg",
  23633. extra: 3169 / 2822,
  23634. bottom: 150.6 / 3321
  23635. }
  23636. },
  23637. },
  23638. [
  23639. {
  23640. name: "Normal",
  23641. height: math.unit(7 + 5 / 12, "feet"),
  23642. default: true
  23643. },
  23644. {
  23645. name: "Big",
  23646. height: math.unit(20, "feet")
  23647. },
  23648. ]
  23649. ))
  23650. characterMakers.push(() => makeCharacter(
  23651. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23652. {
  23653. front: {
  23654. height: math.unit(5 + 1 / 12, "feet"),
  23655. weight: math.unit(110, "lb"),
  23656. name: "Front",
  23657. image: {
  23658. source: "./media/characters/rupert/front.svg",
  23659. extra: 1549 / 1495,
  23660. bottom: 54.2 / 1604.4
  23661. }
  23662. },
  23663. },
  23664. [
  23665. {
  23666. name: "Normal",
  23667. height: math.unit(5 + 1 / 12, "feet"),
  23668. default: true
  23669. },
  23670. ]
  23671. ))
  23672. characterMakers.push(() => makeCharacter(
  23673. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23674. {
  23675. front: {
  23676. height: math.unit(8 + 4 / 12, "feet"),
  23677. weight: math.unit(350, "lb"),
  23678. name: "Front",
  23679. image: {
  23680. source: "./media/characters/sheera-castellar/front.svg",
  23681. extra: 1957 / 1894,
  23682. bottom: 26.97 / 1975.017
  23683. }
  23684. },
  23685. side: {
  23686. height: math.unit(8 + 4 / 12, "feet"),
  23687. weight: math.unit(350, "lb"),
  23688. name: "Side",
  23689. image: {
  23690. source: "./media/characters/sheera-castellar/side.svg",
  23691. extra: 1957 / 1894
  23692. }
  23693. },
  23694. back: {
  23695. height: math.unit(8 + 4 / 12, "feet"),
  23696. weight: math.unit(350, "lb"),
  23697. name: "Back",
  23698. image: {
  23699. source: "./media/characters/sheera-castellar/back.svg",
  23700. extra: 1957 / 1894
  23701. }
  23702. },
  23703. angled: {
  23704. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23705. weight: math.unit(350, "lb"),
  23706. name: "Angled",
  23707. image: {
  23708. source: "./media/characters/sheera-castellar/angled.svg",
  23709. extra: 1807 / 1707,
  23710. bottom: 68 / 1875
  23711. }
  23712. },
  23713. genitals: {
  23714. height: math.unit(2.2, "feet"),
  23715. name: "Genitals",
  23716. image: {
  23717. source: "./media/characters/sheera-castellar/genitals.svg"
  23718. }
  23719. },
  23720. taur: {
  23721. height: math.unit(10 + 6/12, "feet"),
  23722. name: "Taur",
  23723. image: {
  23724. source: "./media/characters/sheera-castellar/taur.svg",
  23725. extra: 2017/1909,
  23726. bottom: 185/2202
  23727. }
  23728. },
  23729. },
  23730. [
  23731. {
  23732. name: "Normal",
  23733. height: math.unit(8 + 4 / 12, "feet")
  23734. },
  23735. {
  23736. name: "Macro",
  23737. height: math.unit(150, "feet"),
  23738. default: true
  23739. },
  23740. {
  23741. name: "Macro+",
  23742. height: math.unit(800, "feet")
  23743. },
  23744. ]
  23745. ))
  23746. characterMakers.push(() => makeCharacter(
  23747. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23748. {
  23749. front: {
  23750. height: math.unit(6, "feet"),
  23751. weight: math.unit(150, "lb"),
  23752. name: "Front",
  23753. image: {
  23754. source: "./media/characters/jaipur/front.svg",
  23755. extra: 3860 / 3731,
  23756. bottom: 287 / 4140
  23757. }
  23758. },
  23759. back: {
  23760. height: math.unit(6, "feet"),
  23761. weight: math.unit(150, "lb"),
  23762. name: "Back",
  23763. image: {
  23764. source: "./media/characters/jaipur/back.svg",
  23765. extra: 4060 / 3930,
  23766. bottom: 151 / 4200
  23767. }
  23768. },
  23769. },
  23770. [
  23771. {
  23772. name: "Normal",
  23773. height: math.unit(1.85, "meters"),
  23774. default: true
  23775. },
  23776. {
  23777. name: "Macro",
  23778. height: math.unit(150, "meters")
  23779. },
  23780. {
  23781. name: "Macro+",
  23782. height: math.unit(0.5, "miles")
  23783. },
  23784. {
  23785. name: "Macro++",
  23786. height: math.unit(2.5, "miles")
  23787. },
  23788. {
  23789. name: "Macro+++",
  23790. height: math.unit(12, "miles")
  23791. },
  23792. {
  23793. name: "Macro++++",
  23794. height: math.unit(120, "miles")
  23795. },
  23796. {
  23797. name: "Macro+++++",
  23798. height: math.unit(1200, "miles")
  23799. },
  23800. ]
  23801. ))
  23802. characterMakers.push(() => makeCharacter(
  23803. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23804. {
  23805. front: {
  23806. height: math.unit(6, "feet"),
  23807. weight: math.unit(150, "lb"),
  23808. name: "Front",
  23809. image: {
  23810. source: "./media/characters/sheila-wolf/front.svg",
  23811. extra: 1931 / 1808,
  23812. bottom: 29.5 / 1960
  23813. }
  23814. },
  23815. dick: {
  23816. height: math.unit(1.464, "feet"),
  23817. name: "Dick",
  23818. image: {
  23819. source: "./media/characters/sheila-wolf/dick.svg"
  23820. }
  23821. },
  23822. muzzle: {
  23823. height: math.unit(0.513, "feet"),
  23824. name: "Muzzle",
  23825. image: {
  23826. source: "./media/characters/sheila-wolf/muzzle.svg"
  23827. }
  23828. },
  23829. },
  23830. [
  23831. {
  23832. name: "Macro",
  23833. height: math.unit(70, "feet"),
  23834. default: true
  23835. },
  23836. ]
  23837. ))
  23838. characterMakers.push(() => makeCharacter(
  23839. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23840. {
  23841. front: {
  23842. height: math.unit(32, "meters"),
  23843. weight: math.unit(300000, "kg"),
  23844. name: "Front",
  23845. image: {
  23846. source: "./media/characters/almor/front.svg",
  23847. extra: 1408 / 1322,
  23848. bottom: 94.6 / 1506.5
  23849. }
  23850. },
  23851. },
  23852. [
  23853. {
  23854. name: "Macro",
  23855. height: math.unit(32, "meters"),
  23856. default: true
  23857. },
  23858. ]
  23859. ))
  23860. characterMakers.push(() => makeCharacter(
  23861. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23862. {
  23863. front: {
  23864. height: math.unit(7, "feet"),
  23865. weight: math.unit(200, "lb"),
  23866. name: "Front",
  23867. image: {
  23868. source: "./media/characters/silver/front.svg",
  23869. extra: 472.1 / 450.5,
  23870. bottom: 26.5 / 499.424
  23871. }
  23872. },
  23873. },
  23874. [
  23875. {
  23876. name: "Normal",
  23877. height: math.unit(7, "feet"),
  23878. default: true
  23879. },
  23880. {
  23881. name: "Macro",
  23882. height: math.unit(800, "feet")
  23883. },
  23884. {
  23885. name: "Megamacro",
  23886. height: math.unit(250, "miles")
  23887. },
  23888. ]
  23889. ))
  23890. characterMakers.push(() => makeCharacter(
  23891. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23892. {
  23893. front: {
  23894. height: math.unit(6, "feet"),
  23895. weight: math.unit(150, "lb"),
  23896. name: "Front",
  23897. image: {
  23898. source: "./media/characters/pliskin/front.svg",
  23899. extra: 1469 / 1359,
  23900. bottom: 70 / 1540
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Micro",
  23907. height: math.unit(3, "inches")
  23908. },
  23909. {
  23910. name: "Normal",
  23911. height: math.unit(5 + 11 / 12, "feet"),
  23912. default: true
  23913. },
  23914. {
  23915. name: "Macro",
  23916. height: math.unit(120, "feet")
  23917. },
  23918. ]
  23919. ))
  23920. characterMakers.push(() => makeCharacter(
  23921. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23922. {
  23923. front: {
  23924. height: math.unit(6, "feet"),
  23925. weight: math.unit(150, "lb"),
  23926. name: "Front",
  23927. image: {
  23928. source: "./media/characters/sammy/front.svg",
  23929. extra: 1193 / 1089,
  23930. bottom: 30.5 / 1226
  23931. }
  23932. },
  23933. },
  23934. [
  23935. {
  23936. name: "Macro",
  23937. height: math.unit(1700, "feet"),
  23938. default: true
  23939. },
  23940. {
  23941. name: "Examacro",
  23942. height: math.unit(2.5e9, "lightyears")
  23943. },
  23944. ]
  23945. ))
  23946. characterMakers.push(() => makeCharacter(
  23947. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23948. {
  23949. front: {
  23950. height: math.unit(21, "meters"),
  23951. weight: math.unit(12, "tonnes"),
  23952. name: "Front",
  23953. image: {
  23954. source: "./media/characters/kuru/front.svg",
  23955. extra: 4301 / 3785,
  23956. bottom: 371.3 / 4691
  23957. }
  23958. },
  23959. },
  23960. [
  23961. {
  23962. name: "Macro",
  23963. height: math.unit(21, "meters"),
  23964. default: true
  23965. },
  23966. ]
  23967. ))
  23968. characterMakers.push(() => makeCharacter(
  23969. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23970. {
  23971. front: {
  23972. height: math.unit(23, "meters"),
  23973. weight: math.unit(12.2, "tonnes"),
  23974. name: "Front",
  23975. image: {
  23976. source: "./media/characters/rakka/front.svg",
  23977. extra: 4670 / 4169,
  23978. bottom: 301 / 4968.7
  23979. }
  23980. },
  23981. },
  23982. [
  23983. {
  23984. name: "Macro",
  23985. height: math.unit(23, "meters"),
  23986. default: true
  23987. },
  23988. ]
  23989. ))
  23990. characterMakers.push(() => makeCharacter(
  23991. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23992. {
  23993. front: {
  23994. height: math.unit(6, "feet"),
  23995. weight: math.unit(150, "lb"),
  23996. name: "Front",
  23997. image: {
  23998. source: "./media/characters/rhys-feline/front.svg",
  23999. extra: 2488 / 2308,
  24000. bottom: 35.67 / 2519.19
  24001. }
  24002. },
  24003. },
  24004. [
  24005. {
  24006. name: "Really Small",
  24007. height: math.unit(1, "nm")
  24008. },
  24009. {
  24010. name: "Micro",
  24011. height: math.unit(4, "inches")
  24012. },
  24013. {
  24014. name: "Normal",
  24015. height: math.unit(4 + 10 / 12, "feet"),
  24016. default: true
  24017. },
  24018. {
  24019. name: "Macro",
  24020. height: math.unit(100, "feet")
  24021. },
  24022. {
  24023. name: "Megamacto",
  24024. height: math.unit(50, "miles")
  24025. },
  24026. ]
  24027. ))
  24028. characterMakers.push(() => makeCharacter(
  24029. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24030. {
  24031. side: {
  24032. height: math.unit(30, "feet"),
  24033. weight: math.unit(35000, "kg"),
  24034. name: "Side",
  24035. image: {
  24036. source: "./media/characters/alydar/side.svg",
  24037. extra: 234 / 222,
  24038. bottom: 6.5 / 241
  24039. }
  24040. },
  24041. front: {
  24042. height: math.unit(30, "feet"),
  24043. weight: math.unit(35000, "kg"),
  24044. name: "Front",
  24045. image: {
  24046. source: "./media/characters/alydar/front.svg",
  24047. extra: 223.37 / 210.2,
  24048. bottom: 22.3 / 246.76
  24049. }
  24050. },
  24051. top: {
  24052. height: math.unit(64.54, "feet"),
  24053. weight: math.unit(35000, "kg"),
  24054. name: "Top",
  24055. image: {
  24056. source: "./media/characters/alydar/top.svg"
  24057. }
  24058. },
  24059. anthro: {
  24060. height: math.unit(30, "feet"),
  24061. weight: math.unit(9000, "kg"),
  24062. name: "Anthro",
  24063. image: {
  24064. source: "./media/characters/alydar/anthro.svg",
  24065. extra: 432 / 421,
  24066. bottom: 7.18 / 440
  24067. }
  24068. },
  24069. maw: {
  24070. height: math.unit(11.693, "feet"),
  24071. name: "Maw",
  24072. image: {
  24073. source: "./media/characters/alydar/maw.svg"
  24074. }
  24075. },
  24076. head: {
  24077. height: math.unit(11.693, "feet"),
  24078. name: "Head",
  24079. image: {
  24080. source: "./media/characters/alydar/head.svg"
  24081. }
  24082. },
  24083. headAlt: {
  24084. height: math.unit(12.861, "feet"),
  24085. name: "Head (Alt)",
  24086. image: {
  24087. source: "./media/characters/alydar/head-alt.svg"
  24088. }
  24089. },
  24090. wing: {
  24091. height: math.unit(20.712, "feet"),
  24092. name: "Wing",
  24093. image: {
  24094. source: "./media/characters/alydar/wing.svg"
  24095. }
  24096. },
  24097. wingFeather: {
  24098. height: math.unit(9.662, "feet"),
  24099. name: "Wing Feather",
  24100. image: {
  24101. source: "./media/characters/alydar/wing-feather.svg"
  24102. }
  24103. },
  24104. countourFeather: {
  24105. height: math.unit(4.154, "feet"),
  24106. name: "Contour Feather",
  24107. image: {
  24108. source: "./media/characters/alydar/contour-feather.svg"
  24109. }
  24110. },
  24111. },
  24112. [
  24113. {
  24114. name: "Diplomatic",
  24115. height: math.unit(13, "feet"),
  24116. default: true
  24117. },
  24118. {
  24119. name: "Small",
  24120. height: math.unit(30, "feet")
  24121. },
  24122. {
  24123. name: "Normal",
  24124. height: math.unit(95, "feet"),
  24125. default: true
  24126. },
  24127. {
  24128. name: "Large",
  24129. height: math.unit(285, "feet")
  24130. },
  24131. {
  24132. name: "Incomprehensible",
  24133. height: math.unit(450, "megameters")
  24134. },
  24135. ]
  24136. ))
  24137. characterMakers.push(() => makeCharacter(
  24138. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24139. {
  24140. side: {
  24141. height: math.unit(11, "feet"),
  24142. weight: math.unit(1750, "kg"),
  24143. name: "Side",
  24144. image: {
  24145. source: "./media/characters/selicia/side.svg",
  24146. extra: 440 / 396,
  24147. bottom: 24.8 / 465.979
  24148. }
  24149. },
  24150. maw: {
  24151. height: math.unit(4.665, "feet"),
  24152. name: "Maw",
  24153. image: {
  24154. source: "./media/characters/selicia/maw.svg"
  24155. }
  24156. },
  24157. },
  24158. [
  24159. {
  24160. name: "Normal",
  24161. height: math.unit(11, "feet"),
  24162. default: true
  24163. },
  24164. ]
  24165. ))
  24166. characterMakers.push(() => makeCharacter(
  24167. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24168. {
  24169. side: {
  24170. height: math.unit(2 + 6 / 12, "feet"),
  24171. weight: math.unit(30, "lb"),
  24172. name: "Side",
  24173. image: {
  24174. source: "./media/characters/layla/side.svg",
  24175. extra: 244 / 188,
  24176. bottom: 18.2 / 262.1
  24177. }
  24178. },
  24179. back: {
  24180. height: math.unit(2 + 6 / 12, "feet"),
  24181. weight: math.unit(30, "lb"),
  24182. name: "Back",
  24183. image: {
  24184. source: "./media/characters/layla/back.svg",
  24185. extra: 308 / 241.5,
  24186. bottom: 8.9 / 316.8
  24187. }
  24188. },
  24189. cumming: {
  24190. height: math.unit(2 + 6 / 12, "feet"),
  24191. weight: math.unit(30, "lb"),
  24192. name: "Cumming",
  24193. image: {
  24194. source: "./media/characters/layla/cumming.svg",
  24195. extra: 342 / 279,
  24196. bottom: 595 / 938
  24197. }
  24198. },
  24199. dickFlaccid: {
  24200. height: math.unit(2.595, "feet"),
  24201. name: "Flaccid Genitals",
  24202. image: {
  24203. source: "./media/characters/layla/dick-flaccid.svg"
  24204. }
  24205. },
  24206. dickErect: {
  24207. height: math.unit(2.359, "feet"),
  24208. name: "Erect Genitals",
  24209. image: {
  24210. source: "./media/characters/layla/dick-erect.svg"
  24211. }
  24212. },
  24213. dragon: {
  24214. height: math.unit(40, "feet"),
  24215. name: "Dragon",
  24216. image: {
  24217. source: "./media/characters/layla/dragon.svg",
  24218. extra: 610/535,
  24219. bottom: 367/977
  24220. }
  24221. },
  24222. taur: {
  24223. height: math.unit(30, "feet"),
  24224. name: "Taur",
  24225. image: {
  24226. source: "./media/characters/layla/taur.svg",
  24227. extra: 1268/1199,
  24228. bottom: 112/1380
  24229. }
  24230. },
  24231. },
  24232. [
  24233. {
  24234. name: "Micro",
  24235. height: math.unit(1, "inch")
  24236. },
  24237. {
  24238. name: "Small",
  24239. height: math.unit(1, "foot")
  24240. },
  24241. {
  24242. name: "Normal",
  24243. height: math.unit(2 + 6 / 12, "feet"),
  24244. default: true
  24245. },
  24246. {
  24247. name: "Macro",
  24248. height: math.unit(200, "feet")
  24249. },
  24250. {
  24251. name: "Megamacro",
  24252. height: math.unit(1000, "miles")
  24253. },
  24254. {
  24255. name: "Planetary",
  24256. height: math.unit(8000, "miles")
  24257. },
  24258. {
  24259. name: "True Layla",
  24260. height: math.unit(200000 * 7, "multiverses")
  24261. },
  24262. ]
  24263. ))
  24264. characterMakers.push(() => makeCharacter(
  24265. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24266. {
  24267. back: {
  24268. height: math.unit(10.5, "feet"),
  24269. weight: math.unit(800, "lb"),
  24270. name: "Back",
  24271. image: {
  24272. source: "./media/characters/knox/back.svg",
  24273. extra: 1486 / 1089,
  24274. bottom: 107 / 1601.4
  24275. }
  24276. },
  24277. side: {
  24278. height: math.unit(10.5, "feet"),
  24279. weight: math.unit(800, "lb"),
  24280. name: "Side",
  24281. image: {
  24282. source: "./media/characters/knox/side.svg",
  24283. extra: 244 / 218,
  24284. bottom: 14 / 260
  24285. }
  24286. },
  24287. },
  24288. [
  24289. {
  24290. name: "Compact",
  24291. height: math.unit(10.5, "feet"),
  24292. default: true
  24293. },
  24294. {
  24295. name: "Dynamax",
  24296. height: math.unit(210, "feet")
  24297. },
  24298. {
  24299. name: "Full Macro",
  24300. height: math.unit(850, "feet")
  24301. },
  24302. ]
  24303. ))
  24304. characterMakers.push(() => makeCharacter(
  24305. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24306. {
  24307. front: {
  24308. height: math.unit(28, "feet"),
  24309. weight: math.unit(10500, "lb"),
  24310. name: "Front",
  24311. image: {
  24312. source: "./media/characters/kayda/front.svg",
  24313. extra: 1536 / 1428,
  24314. bottom: 68.7 / 1603
  24315. }
  24316. },
  24317. back: {
  24318. height: math.unit(28, "feet"),
  24319. weight: math.unit(10500, "lb"),
  24320. name: "Back",
  24321. image: {
  24322. source: "./media/characters/kayda/back.svg",
  24323. extra: 1557 / 1464,
  24324. bottom: 39.5 / 1597.49
  24325. }
  24326. },
  24327. dick: {
  24328. height: math.unit(3.858, "feet"),
  24329. name: "Dick",
  24330. image: {
  24331. source: "./media/characters/kayda/dick.svg"
  24332. }
  24333. },
  24334. },
  24335. [
  24336. {
  24337. name: "Macro",
  24338. height: math.unit(28, "feet"),
  24339. default: true
  24340. },
  24341. ]
  24342. ))
  24343. characterMakers.push(() => makeCharacter(
  24344. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24345. {
  24346. front: {
  24347. height: math.unit(10 + 11 / 12, "feet"),
  24348. weight: math.unit(1400, "lb"),
  24349. name: "Front",
  24350. image: {
  24351. source: "./media/characters/brian/front.svg",
  24352. extra: 737 / 692,
  24353. bottom: 55.4 / 785
  24354. }
  24355. },
  24356. },
  24357. [
  24358. {
  24359. name: "Normal",
  24360. height: math.unit(10 + 11 / 12, "feet"),
  24361. default: true
  24362. },
  24363. ]
  24364. ))
  24365. characterMakers.push(() => makeCharacter(
  24366. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24367. {
  24368. front: {
  24369. height: math.unit(5 + 8 / 12, "feet"),
  24370. weight: math.unit(140, "lb"),
  24371. name: "Front",
  24372. image: {
  24373. source: "./media/characters/khemri/front.svg",
  24374. extra: 4780 / 4059,
  24375. bottom: 80.1 / 4859.25
  24376. }
  24377. },
  24378. },
  24379. [
  24380. {
  24381. name: "Micro",
  24382. height: math.unit(6, "inches")
  24383. },
  24384. {
  24385. name: "Normal",
  24386. height: math.unit(5 + 8 / 12, "feet"),
  24387. default: true
  24388. },
  24389. ]
  24390. ))
  24391. characterMakers.push(() => makeCharacter(
  24392. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24393. {
  24394. front: {
  24395. height: math.unit(13, "feet"),
  24396. weight: math.unit(1700, "lb"),
  24397. name: "Front",
  24398. image: {
  24399. source: "./media/characters/felix-braveheart/front.svg",
  24400. extra: 1222 / 1157,
  24401. bottom: 53.2 / 1280
  24402. }
  24403. },
  24404. back: {
  24405. height: math.unit(13, "feet"),
  24406. weight: math.unit(1700, "lb"),
  24407. name: "Back",
  24408. image: {
  24409. source: "./media/characters/felix-braveheart/back.svg",
  24410. extra: 1277 / 1203,
  24411. bottom: 50.2 / 1327
  24412. }
  24413. },
  24414. feral: {
  24415. height: math.unit(6, "feet"),
  24416. weight: math.unit(400, "lb"),
  24417. name: "Feral",
  24418. image: {
  24419. source: "./media/characters/felix-braveheart/feral.svg",
  24420. extra: 682 / 625,
  24421. bottom: 6.9 / 688
  24422. }
  24423. },
  24424. },
  24425. [
  24426. {
  24427. name: "Normal",
  24428. height: math.unit(13, "feet"),
  24429. default: true
  24430. },
  24431. ]
  24432. ))
  24433. characterMakers.push(() => makeCharacter(
  24434. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24435. {
  24436. side: {
  24437. height: math.unit(5 + 11 / 12, "feet"),
  24438. weight: math.unit(1400, "lb"),
  24439. name: "Side",
  24440. image: {
  24441. source: "./media/characters/shadow-blade/side.svg",
  24442. extra: 1726 / 1267,
  24443. bottom: 58.4 / 1785
  24444. }
  24445. },
  24446. },
  24447. [
  24448. {
  24449. name: "Normal",
  24450. height: math.unit(5 + 11 / 12, "feet"),
  24451. default: true
  24452. },
  24453. ]
  24454. ))
  24455. characterMakers.push(() => makeCharacter(
  24456. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24457. {
  24458. front: {
  24459. height: math.unit(1 + 6 / 12, "feet"),
  24460. weight: math.unit(25, "lb"),
  24461. name: "Front",
  24462. image: {
  24463. source: "./media/characters/karla-halldor/front.svg",
  24464. extra: 1459 / 1383,
  24465. bottom: 12 / 1472
  24466. }
  24467. },
  24468. },
  24469. [
  24470. {
  24471. name: "Normal",
  24472. height: math.unit(1 + 6 / 12, "feet"),
  24473. default: true
  24474. },
  24475. ]
  24476. ))
  24477. characterMakers.push(() => makeCharacter(
  24478. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24479. {
  24480. front: {
  24481. height: math.unit(6 + 2 / 12, "feet"),
  24482. weight: math.unit(160, "lb"),
  24483. name: "Front",
  24484. image: {
  24485. source: "./media/characters/ariam/front.svg",
  24486. extra: 1073/976,
  24487. bottom: 52/1125
  24488. }
  24489. },
  24490. back: {
  24491. height: math.unit(6 + 2/12, "feet"),
  24492. weight: math.unit(160, "lb"),
  24493. name: "Back",
  24494. image: {
  24495. source: "./media/characters/ariam/back.svg",
  24496. extra: 1103/1023,
  24497. bottom: 9/1112
  24498. }
  24499. },
  24500. dressed: {
  24501. height: math.unit(6 + 2/12, "feet"),
  24502. weight: math.unit(160, "lb"),
  24503. name: "Dressed",
  24504. image: {
  24505. source: "./media/characters/ariam/dressed.svg",
  24506. extra: 1099/1009,
  24507. bottom: 25/1124
  24508. }
  24509. },
  24510. squatting: {
  24511. height: math.unit(4.1, "feet"),
  24512. weight: math.unit(160, "lb"),
  24513. name: "Squatting",
  24514. image: {
  24515. source: "./media/characters/ariam/squatting.svg",
  24516. extra: 2617 / 2112,
  24517. bottom: 61.2 / 2681,
  24518. }
  24519. },
  24520. },
  24521. [
  24522. {
  24523. name: "Normal",
  24524. height: math.unit(6 + 2 / 12, "feet"),
  24525. default: true
  24526. },
  24527. {
  24528. name: "Normal+",
  24529. height: math.unit(4, "meters")
  24530. },
  24531. {
  24532. name: "Macro",
  24533. height: math.unit(50, "meters")
  24534. },
  24535. {
  24536. name: "Macro+",
  24537. height: math.unit(100, "meters")
  24538. },
  24539. {
  24540. name: "Megamacro",
  24541. height: math.unit(20, "km")
  24542. },
  24543. {
  24544. name: "Caretaker",
  24545. height: math.unit(444, "megameters")
  24546. },
  24547. ]
  24548. ))
  24549. characterMakers.push(() => makeCharacter(
  24550. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24551. {
  24552. front: {
  24553. height: math.unit(1.67, "meters"),
  24554. weight: math.unit(140, "lb"),
  24555. name: "Front",
  24556. image: {
  24557. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24558. extra: 438 / 410,
  24559. bottom: 0.75 / 439
  24560. }
  24561. },
  24562. },
  24563. [
  24564. {
  24565. name: "Shrunken",
  24566. height: math.unit(7.6, "cm")
  24567. },
  24568. {
  24569. name: "Human Scale",
  24570. height: math.unit(1.67, "meters")
  24571. },
  24572. {
  24573. name: "Wolxi Scale",
  24574. height: math.unit(36.7, "meters"),
  24575. default: true
  24576. },
  24577. ]
  24578. ))
  24579. characterMakers.push(() => makeCharacter(
  24580. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24581. {
  24582. front: {
  24583. height: math.unit(1.73, "meters"),
  24584. weight: math.unit(240, "lb"),
  24585. name: "Front",
  24586. image: {
  24587. source: "./media/characters/izue-two-mothers/front.svg",
  24588. extra: 469 / 437,
  24589. bottom: 1.24 / 470.6
  24590. }
  24591. },
  24592. },
  24593. [
  24594. {
  24595. name: "Shrunken",
  24596. height: math.unit(7.86, "cm")
  24597. },
  24598. {
  24599. name: "Human Scale",
  24600. height: math.unit(1.73, "meters")
  24601. },
  24602. {
  24603. name: "Wolxi Scale",
  24604. height: math.unit(38, "meters"),
  24605. default: true
  24606. },
  24607. ]
  24608. ))
  24609. characterMakers.push(() => makeCharacter(
  24610. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24611. {
  24612. front: {
  24613. height: math.unit(1.55, "meters"),
  24614. weight: math.unit(120, "lb"),
  24615. name: "Front",
  24616. image: {
  24617. source: "./media/characters/teeku-love-shack/front.svg",
  24618. extra: 387 / 362,
  24619. bottom: 1.51 / 388
  24620. }
  24621. },
  24622. },
  24623. [
  24624. {
  24625. name: "Shrunken",
  24626. height: math.unit(7, "cm")
  24627. },
  24628. {
  24629. name: "Human Scale",
  24630. height: math.unit(1.55, "meters")
  24631. },
  24632. {
  24633. name: "Wolxi Scale",
  24634. height: math.unit(34.1, "meters"),
  24635. default: true
  24636. },
  24637. ]
  24638. ))
  24639. characterMakers.push(() => makeCharacter(
  24640. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24641. {
  24642. front: {
  24643. height: math.unit(1.83, "meters"),
  24644. weight: math.unit(135, "lb"),
  24645. name: "Front",
  24646. image: {
  24647. source: "./media/characters/dejma-the-red/front.svg",
  24648. extra: 480 / 458,
  24649. bottom: 1.8 / 482
  24650. }
  24651. },
  24652. },
  24653. [
  24654. {
  24655. name: "Shrunken",
  24656. height: math.unit(8.3, "cm")
  24657. },
  24658. {
  24659. name: "Human Scale",
  24660. height: math.unit(1.83, "meters")
  24661. },
  24662. {
  24663. name: "Wolxi Scale",
  24664. height: math.unit(40, "meters"),
  24665. default: true
  24666. },
  24667. ]
  24668. ))
  24669. characterMakers.push(() => makeCharacter(
  24670. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24671. {
  24672. front: {
  24673. height: math.unit(1.78, "meters"),
  24674. weight: math.unit(65, "kg"),
  24675. name: "Front",
  24676. image: {
  24677. source: "./media/characters/aki/front.svg",
  24678. extra: 452 / 415
  24679. }
  24680. },
  24681. frontNsfw: {
  24682. height: math.unit(1.78, "meters"),
  24683. weight: math.unit(65, "kg"),
  24684. name: "Front (NSFW)",
  24685. image: {
  24686. source: "./media/characters/aki/front-nsfw.svg",
  24687. extra: 452 / 415
  24688. }
  24689. },
  24690. back: {
  24691. height: math.unit(1.78, "meters"),
  24692. weight: math.unit(65, "kg"),
  24693. name: "Back",
  24694. image: {
  24695. source: "./media/characters/aki/back.svg",
  24696. extra: 452 / 415
  24697. }
  24698. },
  24699. rump: {
  24700. height: math.unit(2.05, "feet"),
  24701. name: "Rump",
  24702. image: {
  24703. source: "./media/characters/aki/rump.svg"
  24704. }
  24705. },
  24706. dick: {
  24707. height: math.unit(0.95, "feet"),
  24708. name: "Dick",
  24709. image: {
  24710. source: "./media/characters/aki/dick.svg"
  24711. }
  24712. },
  24713. },
  24714. [
  24715. {
  24716. name: "Micro",
  24717. height: math.unit(15, "cm")
  24718. },
  24719. {
  24720. name: "Normal",
  24721. height: math.unit(178, "cm"),
  24722. default: true
  24723. },
  24724. {
  24725. name: "Macro",
  24726. height: math.unit(214, "m")
  24727. },
  24728. {
  24729. name: "Macro+",
  24730. height: math.unit(534, "m")
  24731. },
  24732. ]
  24733. ))
  24734. characterMakers.push(() => makeCharacter(
  24735. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24736. {
  24737. front: {
  24738. height: math.unit(5 + 5 / 12, "feet"),
  24739. weight: math.unit(120, "lb"),
  24740. name: "Front",
  24741. image: {
  24742. source: "./media/characters/ari/front.svg",
  24743. extra: 714.5 / 682,
  24744. bottom: 8 / 722.5
  24745. }
  24746. },
  24747. },
  24748. [
  24749. {
  24750. name: "Normal",
  24751. height: math.unit(5 + 5 / 12, "feet")
  24752. },
  24753. {
  24754. name: "Macro",
  24755. height: math.unit(100, "feet"),
  24756. default: true
  24757. },
  24758. {
  24759. name: "Megamacro",
  24760. height: math.unit(100, "miles")
  24761. },
  24762. {
  24763. name: "Gigamacro",
  24764. height: math.unit(80000, "miles")
  24765. },
  24766. ]
  24767. ))
  24768. characterMakers.push(() => makeCharacter(
  24769. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24770. {
  24771. side: {
  24772. height: math.unit(9, "feet"),
  24773. weight: math.unit(400, "kg"),
  24774. name: "Side",
  24775. image: {
  24776. source: "./media/characters/bolt/side.svg",
  24777. extra: 1126 / 896,
  24778. bottom: 60 / 1187.3,
  24779. }
  24780. },
  24781. },
  24782. [
  24783. {
  24784. name: "Micro",
  24785. height: math.unit(5, "inches")
  24786. },
  24787. {
  24788. name: "Normal",
  24789. height: math.unit(9, "feet"),
  24790. default: true
  24791. },
  24792. {
  24793. name: "Macro",
  24794. height: math.unit(700, "feet")
  24795. },
  24796. {
  24797. name: "Max Size",
  24798. height: math.unit(1.52e22, "yottameters")
  24799. },
  24800. ]
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24804. {
  24805. front: {
  24806. height: math.unit(4.53, "meters"),
  24807. weight: math.unit(3, "tons"),
  24808. name: "Front",
  24809. image: {
  24810. source: "./media/characters/draekon-sylviar/front.svg",
  24811. extra: 1228 / 1068,
  24812. bottom: 41 / 1270
  24813. }
  24814. },
  24815. tail: {
  24816. height: math.unit(1.772, "meter"),
  24817. name: "Tail",
  24818. image: {
  24819. source: "./media/characters/draekon-sylviar/tail.svg"
  24820. }
  24821. },
  24822. head: {
  24823. height: math.unit(1.331, "meter"),
  24824. name: "Head",
  24825. image: {
  24826. source: "./media/characters/draekon-sylviar/head.svg"
  24827. }
  24828. },
  24829. hand: {
  24830. height: math.unit(0.564, "meter"),
  24831. name: "Hand",
  24832. image: {
  24833. source: "./media/characters/draekon-sylviar/hand.svg"
  24834. }
  24835. },
  24836. foot: {
  24837. height: math.unit(0.621, "meter"),
  24838. name: "Foot",
  24839. image: {
  24840. source: "./media/characters/draekon-sylviar/foot.svg",
  24841. bottom: 32 / 324
  24842. }
  24843. },
  24844. dick: {
  24845. height: math.unit(61, "cm"),
  24846. name: "Dick",
  24847. image: {
  24848. source: "./media/characters/draekon-sylviar/dick.svg"
  24849. }
  24850. },
  24851. dickseparated: {
  24852. height: math.unit(61, "cm"),
  24853. name: "Dick-separated",
  24854. image: {
  24855. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24856. }
  24857. },
  24858. },
  24859. [
  24860. {
  24861. name: "Small",
  24862. height: math.unit(4.53 / 2, "meters"),
  24863. default: true
  24864. },
  24865. {
  24866. name: "Normal",
  24867. height: math.unit(4.53, "meters"),
  24868. default: true
  24869. },
  24870. {
  24871. name: "Large",
  24872. height: math.unit(4.53 * 2, "meters"),
  24873. },
  24874. ]
  24875. ))
  24876. characterMakers.push(() => makeCharacter(
  24877. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24878. {
  24879. front: {
  24880. height: math.unit(6 + 2 / 12, "feet"),
  24881. weight: math.unit(180, "lb"),
  24882. name: "Front",
  24883. image: {
  24884. source: "./media/characters/brawler/front.svg",
  24885. extra: 3301 / 3027,
  24886. bottom: 138 / 3439
  24887. }
  24888. },
  24889. },
  24890. [
  24891. {
  24892. name: "Normal",
  24893. height: math.unit(6 + 2 / 12, "feet"),
  24894. default: true
  24895. },
  24896. ]
  24897. ))
  24898. characterMakers.push(() => makeCharacter(
  24899. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24900. {
  24901. front: {
  24902. height: math.unit(11, "feet"),
  24903. weight: math.unit(1000, "lb"),
  24904. name: "Front",
  24905. image: {
  24906. source: "./media/characters/alex/front.svg",
  24907. bottom: 44.5 / 620
  24908. }
  24909. },
  24910. },
  24911. [
  24912. {
  24913. name: "Micro",
  24914. height: math.unit(5, "inches")
  24915. },
  24916. {
  24917. name: "Normal",
  24918. height: math.unit(11, "feet"),
  24919. default: true
  24920. },
  24921. {
  24922. name: "Macro",
  24923. height: math.unit(9.5e9, "feet")
  24924. },
  24925. {
  24926. name: "Max Size",
  24927. height: math.unit(1.4e283, "yottameters")
  24928. },
  24929. ]
  24930. ))
  24931. characterMakers.push(() => makeCharacter(
  24932. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24933. {
  24934. female: {
  24935. height: math.unit(29.9, "m"),
  24936. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24937. name: "Female",
  24938. image: {
  24939. source: "./media/characters/zenari/female.svg",
  24940. extra: 3281.6 / 3217,
  24941. bottom: 72.2 / 3353
  24942. }
  24943. },
  24944. male: {
  24945. height: math.unit(27.7, "m"),
  24946. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24947. name: "Male",
  24948. image: {
  24949. source: "./media/characters/zenari/male.svg",
  24950. extra: 3008 / 2991,
  24951. bottom: 54.6 / 3069
  24952. }
  24953. },
  24954. },
  24955. [
  24956. {
  24957. name: "Macro",
  24958. height: math.unit(29.7, "meters"),
  24959. default: true
  24960. },
  24961. ]
  24962. ))
  24963. characterMakers.push(() => makeCharacter(
  24964. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24965. {
  24966. female: {
  24967. height: math.unit(23.8, "m"),
  24968. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24969. name: "Female",
  24970. image: {
  24971. source: "./media/characters/mactarian/female.svg",
  24972. extra: 2662 / 2569,
  24973. bottom: 73 / 2736
  24974. }
  24975. },
  24976. male: {
  24977. height: math.unit(23.8, "m"),
  24978. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24979. name: "Male",
  24980. image: {
  24981. source: "./media/characters/mactarian/male.svg",
  24982. extra: 2673 / 2600,
  24983. bottom: 76 / 2750
  24984. }
  24985. },
  24986. },
  24987. [
  24988. {
  24989. name: "Macro",
  24990. height: math.unit(23.8, "meters"),
  24991. default: true
  24992. },
  24993. ]
  24994. ))
  24995. characterMakers.push(() => makeCharacter(
  24996. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24997. {
  24998. female: {
  24999. height: math.unit(19.3, "m"),
  25000. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25001. name: "Female",
  25002. image: {
  25003. source: "./media/characters/umok/female.svg",
  25004. extra: 2186 / 2078,
  25005. bottom: 87 / 2277
  25006. }
  25007. },
  25008. male: {
  25009. height: math.unit(19.5, "m"),
  25010. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25011. name: "Male",
  25012. image: {
  25013. source: "./media/characters/umok/male.svg",
  25014. extra: 2233 / 2140,
  25015. bottom: 24.4 / 2258
  25016. }
  25017. },
  25018. },
  25019. [
  25020. {
  25021. name: "Macro",
  25022. height: math.unit(19.3, "meters"),
  25023. default: true
  25024. },
  25025. ]
  25026. ))
  25027. characterMakers.push(() => makeCharacter(
  25028. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25029. {
  25030. female: {
  25031. height: math.unit(26.15, "m"),
  25032. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25033. name: "Female",
  25034. image: {
  25035. source: "./media/characters/joraxian/female.svg",
  25036. extra: 2912 / 2824,
  25037. bottom: 36 / 2956
  25038. }
  25039. },
  25040. male: {
  25041. height: math.unit(25.4, "m"),
  25042. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25043. name: "Male",
  25044. image: {
  25045. source: "./media/characters/joraxian/male.svg",
  25046. extra: 2877 / 2721,
  25047. bottom: 82 / 2967
  25048. }
  25049. },
  25050. },
  25051. [
  25052. {
  25053. name: "Macro",
  25054. height: math.unit(26.15, "meters"),
  25055. default: true
  25056. },
  25057. ]
  25058. ))
  25059. characterMakers.push(() => makeCharacter(
  25060. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25061. {
  25062. female: {
  25063. height: math.unit(21.6, "m"),
  25064. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25065. name: "Female",
  25066. image: {
  25067. source: "./media/characters/sthara/female.svg",
  25068. extra: 2516 / 2347,
  25069. bottom: 21.5 / 2537
  25070. }
  25071. },
  25072. male: {
  25073. height: math.unit(24, "m"),
  25074. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25075. name: "Male",
  25076. image: {
  25077. source: "./media/characters/sthara/male.svg",
  25078. extra: 2732 / 2607,
  25079. bottom: 23 / 2732
  25080. }
  25081. },
  25082. },
  25083. [
  25084. {
  25085. name: "Macro",
  25086. height: math.unit(21.6, "meters"),
  25087. default: true
  25088. },
  25089. ]
  25090. ))
  25091. characterMakers.push(() => makeCharacter(
  25092. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25093. {
  25094. front: {
  25095. height: math.unit(6 + 4 / 12, "feet"),
  25096. weight: math.unit(175, "lb"),
  25097. name: "Front",
  25098. image: {
  25099. source: "./media/characters/luka-bryzant/front.svg",
  25100. extra: 311 / 289,
  25101. bottom: 4 / 315
  25102. }
  25103. },
  25104. back: {
  25105. height: math.unit(6 + 4 / 12, "feet"),
  25106. weight: math.unit(175, "lb"),
  25107. name: "Back",
  25108. image: {
  25109. source: "./media/characters/luka-bryzant/back.svg",
  25110. extra: 311 / 289,
  25111. bottom: 3.8 / 313.7
  25112. }
  25113. },
  25114. },
  25115. [
  25116. {
  25117. name: "Micro",
  25118. height: math.unit(10, "inches")
  25119. },
  25120. {
  25121. name: "Normal",
  25122. height: math.unit(6 + 4 / 12, "feet"),
  25123. default: true
  25124. },
  25125. {
  25126. name: "Large",
  25127. height: math.unit(12, "feet")
  25128. },
  25129. ]
  25130. ))
  25131. characterMakers.push(() => makeCharacter(
  25132. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25133. {
  25134. front: {
  25135. height: math.unit(5 + 7 / 12, "feet"),
  25136. weight: math.unit(185, "lb"),
  25137. name: "Front",
  25138. image: {
  25139. source: "./media/characters/aman-aquila/front.svg",
  25140. extra: 1013 / 976,
  25141. bottom: 45.6 / 1057
  25142. }
  25143. },
  25144. side: {
  25145. height: math.unit(5 + 7 / 12, "feet"),
  25146. weight: math.unit(185, "lb"),
  25147. name: "Side",
  25148. image: {
  25149. source: "./media/characters/aman-aquila/side.svg",
  25150. extra: 1054 / 1011,
  25151. bottom: 15 / 1070
  25152. }
  25153. },
  25154. back: {
  25155. height: math.unit(5 + 7 / 12, "feet"),
  25156. weight: math.unit(185, "lb"),
  25157. name: "Back",
  25158. image: {
  25159. source: "./media/characters/aman-aquila/back.svg",
  25160. extra: 1026 / 970,
  25161. bottom: 12 / 1039
  25162. }
  25163. },
  25164. head: {
  25165. height: math.unit(1.211, "feet"),
  25166. name: "Head",
  25167. image: {
  25168. source: "./media/characters/aman-aquila/head.svg",
  25169. }
  25170. },
  25171. },
  25172. [
  25173. {
  25174. name: "Minimicro",
  25175. height: math.unit(0.057, "inches")
  25176. },
  25177. {
  25178. name: "Micro",
  25179. height: math.unit(7, "inches")
  25180. },
  25181. {
  25182. name: "Mini",
  25183. height: math.unit(3 + 7 / 12, "feet")
  25184. },
  25185. {
  25186. name: "Normal",
  25187. height: math.unit(5 + 7 / 12, "feet"),
  25188. default: true
  25189. },
  25190. {
  25191. name: "Macro",
  25192. height: math.unit(157 + 7 / 12, "feet")
  25193. },
  25194. {
  25195. name: "Megamacro",
  25196. height: math.unit(1557 + 7 / 12, "feet")
  25197. },
  25198. {
  25199. name: "Gigamacro",
  25200. height: math.unit(15557 + 7 / 12, "feet")
  25201. },
  25202. ]
  25203. ))
  25204. characterMakers.push(() => makeCharacter(
  25205. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25206. {
  25207. front: {
  25208. height: math.unit(3 + 2 / 12, "inches"),
  25209. weight: math.unit(0.3, "ounces"),
  25210. name: "Front",
  25211. image: {
  25212. source: "./media/characters/hiphae/front.svg",
  25213. extra: 1931 / 1683,
  25214. bottom: 24 / 1955
  25215. }
  25216. },
  25217. },
  25218. [
  25219. {
  25220. name: "Normal",
  25221. height: math.unit(3 + 1 / 2, "inches"),
  25222. default: true
  25223. },
  25224. ]
  25225. ))
  25226. characterMakers.push(() => makeCharacter(
  25227. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25228. {
  25229. front: {
  25230. height: math.unit(5 + 10 / 12, "feet"),
  25231. weight: math.unit(165, "lb"),
  25232. name: "Front",
  25233. image: {
  25234. source: "./media/characters/nicky/front.svg",
  25235. extra: 3144 / 2886,
  25236. bottom: 45.6 / 3192
  25237. }
  25238. },
  25239. back: {
  25240. height: math.unit(5 + 10 / 12, "feet"),
  25241. weight: math.unit(165, "lb"),
  25242. name: "Back",
  25243. image: {
  25244. source: "./media/characters/nicky/back.svg",
  25245. extra: 3055 / 2804,
  25246. bottom: 28.4 / 3087
  25247. }
  25248. },
  25249. frontclothed: {
  25250. height: math.unit(5 + 10 / 12, "feet"),
  25251. weight: math.unit(165, "lb"),
  25252. name: "Front-clothed",
  25253. image: {
  25254. source: "./media/characters/nicky/front-clothed.svg",
  25255. extra: 3184.9 / 2926.9,
  25256. bottom: 86.5 / 3239.9
  25257. }
  25258. },
  25259. foot: {
  25260. height: math.unit(1.16, "feet"),
  25261. name: "Foot",
  25262. image: {
  25263. source: "./media/characters/nicky/foot.svg"
  25264. }
  25265. },
  25266. feet: {
  25267. height: math.unit(1.34, "feet"),
  25268. name: "Feet",
  25269. image: {
  25270. source: "./media/characters/nicky/feet.svg"
  25271. }
  25272. },
  25273. maw: {
  25274. height: math.unit(0.9, "feet"),
  25275. name: "Maw",
  25276. image: {
  25277. source: "./media/characters/nicky/maw.svg"
  25278. }
  25279. },
  25280. },
  25281. [
  25282. {
  25283. name: "Normal",
  25284. height: math.unit(5 + 10 / 12, "feet"),
  25285. default: true
  25286. },
  25287. {
  25288. name: "Macro",
  25289. height: math.unit(60, "feet")
  25290. },
  25291. {
  25292. name: "Megamacro",
  25293. height: math.unit(1, "mile")
  25294. },
  25295. ]
  25296. ))
  25297. characterMakers.push(() => makeCharacter(
  25298. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25299. {
  25300. side: {
  25301. height: math.unit(10, "feet"),
  25302. weight: math.unit(600, "lb"),
  25303. name: "Side",
  25304. image: {
  25305. source: "./media/characters/blair/side.svg",
  25306. bottom: 16.6 / 475,
  25307. extra: 458 / 431
  25308. }
  25309. },
  25310. },
  25311. [
  25312. {
  25313. name: "Micro",
  25314. height: math.unit(8, "inches")
  25315. },
  25316. {
  25317. name: "Normal",
  25318. height: math.unit(10, "feet"),
  25319. default: true
  25320. },
  25321. {
  25322. name: "Macro",
  25323. height: math.unit(180, "feet")
  25324. },
  25325. ]
  25326. ))
  25327. characterMakers.push(() => makeCharacter(
  25328. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25329. {
  25330. front: {
  25331. height: math.unit(5 + 4 / 12, "feet"),
  25332. weight: math.unit(125, "lb"),
  25333. name: "Front",
  25334. image: {
  25335. source: "./media/characters/fisher/front.svg",
  25336. extra: 444 / 390,
  25337. bottom: 2 / 444.8
  25338. }
  25339. },
  25340. },
  25341. [
  25342. {
  25343. name: "Micro",
  25344. height: math.unit(4, "inches")
  25345. },
  25346. {
  25347. name: "Normal",
  25348. height: math.unit(5 + 4 / 12, "feet"),
  25349. default: true
  25350. },
  25351. {
  25352. name: "Macro",
  25353. height: math.unit(100, "feet")
  25354. },
  25355. ]
  25356. ))
  25357. characterMakers.push(() => makeCharacter(
  25358. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25359. {
  25360. front: {
  25361. height: math.unit(6.71, "feet"),
  25362. weight: math.unit(200, "lb"),
  25363. capacity: math.unit(1000000, "people"),
  25364. name: "Front",
  25365. image: {
  25366. source: "./media/characters/gliss/front.svg",
  25367. extra: 2347 / 2231,
  25368. bottom: 113 / 2462
  25369. }
  25370. },
  25371. hammerspaceSize: {
  25372. height: math.unit(6.71 * 717, "feet"),
  25373. weight: math.unit(200, "lb"),
  25374. capacity: math.unit(1000000, "people"),
  25375. name: "Hammerspace Size",
  25376. image: {
  25377. source: "./media/characters/gliss/front.svg",
  25378. extra: 2347 / 2231,
  25379. bottom: 113 / 2462
  25380. }
  25381. },
  25382. },
  25383. [
  25384. {
  25385. name: "Normal",
  25386. height: math.unit(6.71, "feet"),
  25387. default: true
  25388. },
  25389. ]
  25390. ))
  25391. characterMakers.push(() => makeCharacter(
  25392. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25393. {
  25394. side: {
  25395. height: math.unit(1.44, "m"),
  25396. weight: math.unit(80, "kg"),
  25397. name: "Side",
  25398. image: {
  25399. source: "./media/characters/dune-anderson/side.svg",
  25400. bottom: 49 / 1426
  25401. }
  25402. },
  25403. },
  25404. [
  25405. {
  25406. name: "Wolf-sized",
  25407. height: math.unit(1.44, "meters")
  25408. },
  25409. {
  25410. name: "Normal",
  25411. height: math.unit(5.05, "meters"),
  25412. default: true
  25413. },
  25414. {
  25415. name: "Big",
  25416. height: math.unit(14.4, "meters")
  25417. },
  25418. {
  25419. name: "Huge",
  25420. height: math.unit(144, "meters")
  25421. },
  25422. ]
  25423. ))
  25424. characterMakers.push(() => makeCharacter(
  25425. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25426. {
  25427. front: {
  25428. height: math.unit(7, "feet"),
  25429. weight: math.unit(425, "lb"),
  25430. name: "Front",
  25431. image: {
  25432. source: "./media/characters/hind/front.svg",
  25433. extra: 2091 / 1860,
  25434. bottom: 129 / 2220
  25435. }
  25436. },
  25437. back: {
  25438. height: math.unit(7, "feet"),
  25439. weight: math.unit(425, "lb"),
  25440. name: "Back",
  25441. image: {
  25442. source: "./media/characters/hind/back.svg",
  25443. extra: 2091 / 1860,
  25444. bottom: 24.6 / 2309
  25445. }
  25446. },
  25447. tail: {
  25448. height: math.unit(2.8, "feet"),
  25449. name: "Tail",
  25450. image: {
  25451. source: "./media/characters/hind/tail.svg"
  25452. }
  25453. },
  25454. head: {
  25455. height: math.unit(2.55, "feet"),
  25456. name: "Head",
  25457. image: {
  25458. source: "./media/characters/hind/head.svg"
  25459. }
  25460. },
  25461. },
  25462. [
  25463. {
  25464. name: "XS",
  25465. height: math.unit(0.7, "feet")
  25466. },
  25467. {
  25468. name: "Normal",
  25469. height: math.unit(7, "feet"),
  25470. default: true
  25471. },
  25472. {
  25473. name: "XL",
  25474. height: math.unit(70, "feet")
  25475. },
  25476. ]
  25477. ))
  25478. characterMakers.push(() => makeCharacter(
  25479. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25480. {
  25481. front: {
  25482. height: math.unit(2.1, "meters"),
  25483. weight: math.unit(150, "lb"),
  25484. name: "Front",
  25485. image: {
  25486. source: "./media/characters/tharquench-sizestealer/front.svg",
  25487. extra: 1605/1470,
  25488. bottom: 36/1641
  25489. }
  25490. },
  25491. frontAlt: {
  25492. height: math.unit(2.1, "meters"),
  25493. weight: math.unit(150, "lb"),
  25494. name: "Front (Alt)",
  25495. image: {
  25496. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25497. extra: 2318 / 2063,
  25498. bottom: 93.4 / 2410
  25499. }
  25500. },
  25501. },
  25502. [
  25503. {
  25504. name: "Nano",
  25505. height: math.unit(1, "mm")
  25506. },
  25507. {
  25508. name: "Micro",
  25509. height: math.unit(1, "cm")
  25510. },
  25511. {
  25512. name: "Normal",
  25513. height: math.unit(2.1, "meters"),
  25514. default: true
  25515. },
  25516. ]
  25517. ))
  25518. characterMakers.push(() => makeCharacter(
  25519. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25520. {
  25521. front: {
  25522. height: math.unit(7 + 5 / 12, "feet"),
  25523. weight: math.unit(357, "lb"),
  25524. name: "Front",
  25525. image: {
  25526. source: "./media/characters/solex-draconov/front.svg",
  25527. extra: 1993 / 1865,
  25528. bottom: 117 / 2111
  25529. }
  25530. },
  25531. },
  25532. [
  25533. {
  25534. name: "Natural Height",
  25535. height: math.unit(7 + 5 / 12, "feet"),
  25536. default: true
  25537. },
  25538. {
  25539. name: "Macro",
  25540. height: math.unit(350, "feet")
  25541. },
  25542. {
  25543. name: "Macro+",
  25544. height: math.unit(1000, "feet")
  25545. },
  25546. {
  25547. name: "Megamacro",
  25548. height: math.unit(20, "km")
  25549. },
  25550. {
  25551. name: "Megamacro+",
  25552. height: math.unit(1000, "km")
  25553. },
  25554. {
  25555. name: "Gigamacro",
  25556. height: math.unit(2.5, "Gm")
  25557. },
  25558. {
  25559. name: "Teramacro",
  25560. height: math.unit(15, "Tm")
  25561. },
  25562. {
  25563. name: "Galactic",
  25564. height: math.unit(30, "Zm")
  25565. },
  25566. {
  25567. name: "Universal",
  25568. height: math.unit(21000, "Ym")
  25569. },
  25570. {
  25571. name: "Omniversal",
  25572. height: math.unit(9.861e50, "Ym")
  25573. },
  25574. {
  25575. name: "Existential",
  25576. height: math.unit(1e300, "meters")
  25577. },
  25578. ]
  25579. ))
  25580. characterMakers.push(() => makeCharacter(
  25581. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25582. {
  25583. side: {
  25584. height: math.unit(25, "feet"),
  25585. weight: math.unit(90000, "lb"),
  25586. name: "Side",
  25587. image: {
  25588. source: "./media/characters/mandarax/side.svg",
  25589. extra: 614 / 332,
  25590. bottom: 55 / 630
  25591. }
  25592. },
  25593. head: {
  25594. height: math.unit(11.4, "feet"),
  25595. name: "Head",
  25596. image: {
  25597. source: "./media/characters/mandarax/head.svg"
  25598. }
  25599. },
  25600. belly: {
  25601. height: math.unit(33, "feet"),
  25602. name: "Belly",
  25603. capacity: math.unit(500, "people"),
  25604. image: {
  25605. source: "./media/characters/mandarax/belly.svg"
  25606. }
  25607. },
  25608. dick: {
  25609. height: math.unit(8.46, "feet"),
  25610. name: "Dick",
  25611. image: {
  25612. source: "./media/characters/mandarax/dick.svg"
  25613. }
  25614. },
  25615. top: {
  25616. height: math.unit(28, "meters"),
  25617. name: "Top",
  25618. image: {
  25619. source: "./media/characters/mandarax/top.svg"
  25620. }
  25621. },
  25622. },
  25623. [
  25624. {
  25625. name: "Normal",
  25626. height: math.unit(25, "feet"),
  25627. default: true
  25628. },
  25629. ]
  25630. ))
  25631. characterMakers.push(() => makeCharacter(
  25632. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25633. {
  25634. front: {
  25635. height: math.unit(5, "feet"),
  25636. weight: math.unit(90, "lb"),
  25637. name: "Front",
  25638. image: {
  25639. source: "./media/characters/pixil/front.svg",
  25640. extra: 2000 / 1618,
  25641. bottom: 12.3 / 2011
  25642. }
  25643. },
  25644. },
  25645. [
  25646. {
  25647. name: "Normal",
  25648. height: math.unit(5, "feet"),
  25649. default: true
  25650. },
  25651. {
  25652. name: "Megamacro",
  25653. height: math.unit(10, "miles"),
  25654. },
  25655. ]
  25656. ))
  25657. characterMakers.push(() => makeCharacter(
  25658. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25659. {
  25660. front: {
  25661. height: math.unit(7 + 2 / 12, "feet"),
  25662. weight: math.unit(200, "lb"),
  25663. name: "Front",
  25664. image: {
  25665. source: "./media/characters/angel/front.svg",
  25666. extra: 1830 / 1737,
  25667. bottom: 22.6 / 1854,
  25668. }
  25669. },
  25670. },
  25671. [
  25672. {
  25673. name: "Normal",
  25674. height: math.unit(7 + 2 / 12, "feet"),
  25675. default: true
  25676. },
  25677. {
  25678. name: "Macro",
  25679. height: math.unit(1000, "feet")
  25680. },
  25681. {
  25682. name: "Megamacro",
  25683. height: math.unit(2, "miles")
  25684. },
  25685. {
  25686. name: "Gigamacro",
  25687. height: math.unit(20, "earths")
  25688. },
  25689. ]
  25690. ))
  25691. characterMakers.push(() => makeCharacter(
  25692. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25693. {
  25694. front: {
  25695. height: math.unit(5, "feet"),
  25696. weight: math.unit(180, "lb"),
  25697. name: "Front",
  25698. image: {
  25699. source: "./media/characters/mekana/front.svg",
  25700. extra: 1671 / 1605,
  25701. bottom: 3.5 / 1691
  25702. }
  25703. },
  25704. side: {
  25705. height: math.unit(5, "feet"),
  25706. weight: math.unit(180, "lb"),
  25707. name: "Side",
  25708. image: {
  25709. source: "./media/characters/mekana/side.svg",
  25710. extra: 1671 / 1605,
  25711. bottom: 3.5 / 1691
  25712. }
  25713. },
  25714. back: {
  25715. height: math.unit(5, "feet"),
  25716. weight: math.unit(180, "lb"),
  25717. name: "Back",
  25718. image: {
  25719. source: "./media/characters/mekana/back.svg",
  25720. extra: 1671 / 1605,
  25721. bottom: 3.5 / 1691
  25722. }
  25723. },
  25724. },
  25725. [
  25726. {
  25727. name: "Normal",
  25728. height: math.unit(5, "feet"),
  25729. default: true
  25730. },
  25731. ]
  25732. ))
  25733. characterMakers.push(() => makeCharacter(
  25734. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25735. {
  25736. front: {
  25737. height: math.unit(4 + 6 / 12, "feet"),
  25738. weight: math.unit(80, "lb"),
  25739. name: "Front",
  25740. image: {
  25741. source: "./media/characters/pixie/front.svg",
  25742. extra: 1924 / 1825,
  25743. bottom: 22.4 / 1946
  25744. }
  25745. },
  25746. },
  25747. [
  25748. {
  25749. name: "Normal",
  25750. height: math.unit(4 + 6 / 12, "feet"),
  25751. default: true
  25752. },
  25753. {
  25754. name: "Macro",
  25755. height: math.unit(40, "feet")
  25756. },
  25757. ]
  25758. ))
  25759. characterMakers.push(() => makeCharacter(
  25760. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25761. {
  25762. front: {
  25763. height: math.unit(2.1, "meters"),
  25764. weight: math.unit(200, "lb"),
  25765. name: "Front",
  25766. image: {
  25767. source: "./media/characters/the-lascivious/front.svg",
  25768. extra: 1 / 0.893,
  25769. bottom: 3.5 / 573.7
  25770. }
  25771. },
  25772. },
  25773. [
  25774. {
  25775. name: "Human Scale",
  25776. height: math.unit(2.1, "meters")
  25777. },
  25778. {
  25779. name: "Wolxi Scale",
  25780. height: math.unit(46.2, "m"),
  25781. default: true
  25782. },
  25783. {
  25784. name: "Boinker of Buildings",
  25785. height: math.unit(10, "km")
  25786. },
  25787. {
  25788. name: "Shagger of Skyscrapers",
  25789. height: math.unit(40, "km")
  25790. },
  25791. {
  25792. name: "Banger of Boroughs",
  25793. height: math.unit(4000, "km")
  25794. },
  25795. {
  25796. name: "Screwer of States",
  25797. height: math.unit(100000, "km")
  25798. },
  25799. {
  25800. name: "Pounder of Planets",
  25801. height: math.unit(2000000, "km")
  25802. },
  25803. ]
  25804. ))
  25805. characterMakers.push(() => makeCharacter(
  25806. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25807. {
  25808. front: {
  25809. height: math.unit(6, "feet"),
  25810. weight: math.unit(150, "lb"),
  25811. name: "Front",
  25812. image: {
  25813. source: "./media/characters/aj/front.svg",
  25814. extra: 2039 / 1562,
  25815. bottom: 40 / 2079
  25816. }
  25817. },
  25818. },
  25819. [
  25820. {
  25821. name: "Normal",
  25822. height: math.unit(11 + 6 / 12, "feet"),
  25823. default: true
  25824. },
  25825. {
  25826. name: "Megamacro",
  25827. height: math.unit(60, "megameters")
  25828. },
  25829. ]
  25830. ))
  25831. characterMakers.push(() => makeCharacter(
  25832. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25833. {
  25834. side: {
  25835. height: math.unit(31 + 8 / 12, "feet"),
  25836. weight: math.unit(75000, "kg"),
  25837. name: "Side",
  25838. image: {
  25839. source: "./media/characters/koros/side.svg",
  25840. extra: 1442 / 1297,
  25841. bottom: 122.7 / 1562
  25842. }
  25843. },
  25844. dicksKingsCrown: {
  25845. height: math.unit(6, "feet"),
  25846. name: "Dicks (King's Crown)",
  25847. image: {
  25848. source: "./media/characters/koros/dicks-kings-crown.svg"
  25849. }
  25850. },
  25851. dicksTailSet: {
  25852. height: math.unit(3, "feet"),
  25853. name: "Dicks (Tail Set)",
  25854. image: {
  25855. source: "./media/characters/koros/dicks-tail-set.svg"
  25856. }
  25857. },
  25858. dickCumming: {
  25859. height: math.unit(7.98, "feet"),
  25860. name: "Dick (Cumming)",
  25861. image: {
  25862. source: "./media/characters/koros/dick-cumming.svg"
  25863. }
  25864. },
  25865. dicksBack: {
  25866. height: math.unit(5.9, "feet"),
  25867. name: "Dicks (Back)",
  25868. image: {
  25869. source: "./media/characters/koros/dicks-back.svg"
  25870. }
  25871. },
  25872. dicksFront: {
  25873. height: math.unit(3.72, "feet"),
  25874. name: "Dicks (Front)",
  25875. image: {
  25876. source: "./media/characters/koros/dicks-front.svg"
  25877. }
  25878. },
  25879. dicksPeeking: {
  25880. height: math.unit(3.0, "feet"),
  25881. name: "Dicks (Peeking)",
  25882. image: {
  25883. source: "./media/characters/koros/dicks-peeking.svg"
  25884. }
  25885. },
  25886. eye: {
  25887. height: math.unit(1.7, "feet"),
  25888. name: "Eye",
  25889. image: {
  25890. source: "./media/characters/koros/eye.svg"
  25891. }
  25892. },
  25893. headFront: {
  25894. height: math.unit(11.69, "feet"),
  25895. name: "Head (Front)",
  25896. image: {
  25897. source: "./media/characters/koros/head-front.svg"
  25898. }
  25899. },
  25900. headSide: {
  25901. height: math.unit(14, "feet"),
  25902. name: "Head (Side)",
  25903. image: {
  25904. source: "./media/characters/koros/head-side.svg"
  25905. }
  25906. },
  25907. leg: {
  25908. height: math.unit(17, "feet"),
  25909. name: "Leg",
  25910. image: {
  25911. source: "./media/characters/koros/leg.svg"
  25912. }
  25913. },
  25914. mawSide: {
  25915. height: math.unit(12.8, "feet"),
  25916. name: "Maw (Side)",
  25917. image: {
  25918. source: "./media/characters/koros/maw-side.svg"
  25919. }
  25920. },
  25921. mawSpitting: {
  25922. height: math.unit(17, "feet"),
  25923. name: "Maw (Spitting)",
  25924. image: {
  25925. source: "./media/characters/koros/maw-spitting.svg"
  25926. }
  25927. },
  25928. slit: {
  25929. height: math.unit(2.8, "feet"),
  25930. name: "Slit",
  25931. image: {
  25932. source: "./media/characters/koros/slit.svg"
  25933. }
  25934. },
  25935. stomach: {
  25936. height: math.unit(6.8, "feet"),
  25937. capacity: math.unit(20, "people"),
  25938. name: "Stomach",
  25939. image: {
  25940. source: "./media/characters/koros/stomach.svg"
  25941. }
  25942. },
  25943. wingspanBottom: {
  25944. height: math.unit(114, "feet"),
  25945. name: "Wingspan (Bottom)",
  25946. image: {
  25947. source: "./media/characters/koros/wingspan-bottom.svg"
  25948. }
  25949. },
  25950. wingspanTop: {
  25951. height: math.unit(104, "feet"),
  25952. name: "Wingspan (Top)",
  25953. image: {
  25954. source: "./media/characters/koros/wingspan-top.svg"
  25955. }
  25956. },
  25957. },
  25958. [
  25959. {
  25960. name: "Normal",
  25961. height: math.unit(31 + 8 / 12, "feet"),
  25962. default: true
  25963. },
  25964. ]
  25965. ))
  25966. characterMakers.push(() => makeCharacter(
  25967. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25968. {
  25969. front: {
  25970. height: math.unit(18 + 5 / 12, "feet"),
  25971. weight: math.unit(3750, "kg"),
  25972. name: "Front",
  25973. image: {
  25974. source: "./media/characters/vexx/front.svg",
  25975. extra: 426 / 396,
  25976. bottom: 31.5 / 458
  25977. }
  25978. },
  25979. maw: {
  25980. height: math.unit(6, "feet"),
  25981. name: "Maw",
  25982. image: {
  25983. source: "./media/characters/vexx/maw.svg"
  25984. }
  25985. },
  25986. },
  25987. [
  25988. {
  25989. name: "Normal",
  25990. height: math.unit(18 + 5 / 12, "feet"),
  25991. default: true
  25992. },
  25993. ]
  25994. ))
  25995. characterMakers.push(() => makeCharacter(
  25996. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25997. {
  25998. front: {
  25999. height: math.unit(17 + 6 / 12, "feet"),
  26000. weight: math.unit(150, "lb"),
  26001. name: "Front",
  26002. image: {
  26003. source: "./media/characters/baadra/front.svg",
  26004. extra: 3137 / 2890,
  26005. bottom: 168.4 / 3305
  26006. }
  26007. },
  26008. back: {
  26009. height: math.unit(17 + 6 / 12, "feet"),
  26010. weight: math.unit(150, "lb"),
  26011. name: "Back",
  26012. image: {
  26013. source: "./media/characters/baadra/back.svg",
  26014. extra: 3142 / 2890,
  26015. bottom: 220 / 3371
  26016. }
  26017. },
  26018. head: {
  26019. height: math.unit(5.45, "feet"),
  26020. name: "Head",
  26021. image: {
  26022. source: "./media/characters/baadra/head.svg"
  26023. }
  26024. },
  26025. headAngry: {
  26026. height: math.unit(4.95, "feet"),
  26027. name: "Head (Angry)",
  26028. image: {
  26029. source: "./media/characters/baadra/head-angry.svg"
  26030. }
  26031. },
  26032. headOpen: {
  26033. height: math.unit(6, "feet"),
  26034. name: "Head (Open)",
  26035. image: {
  26036. source: "./media/characters/baadra/head-open.svg"
  26037. }
  26038. },
  26039. },
  26040. [
  26041. {
  26042. name: "Normal",
  26043. height: math.unit(17 + 6 / 12, "feet"),
  26044. default: true
  26045. },
  26046. ]
  26047. ))
  26048. characterMakers.push(() => makeCharacter(
  26049. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26050. {
  26051. front: {
  26052. height: math.unit(7 + 3 / 12, "feet"),
  26053. weight: math.unit(180, "lb"),
  26054. name: "Front",
  26055. image: {
  26056. source: "./media/characters/juri/front.svg",
  26057. extra: 1401 / 1237,
  26058. bottom: 18.5 / 1418
  26059. }
  26060. },
  26061. side: {
  26062. height: math.unit(7 + 3 / 12, "feet"),
  26063. weight: math.unit(180, "lb"),
  26064. name: "Side",
  26065. image: {
  26066. source: "./media/characters/juri/side.svg",
  26067. extra: 1424 / 1242,
  26068. bottom: 18.5 / 1447
  26069. }
  26070. },
  26071. sitting: {
  26072. height: math.unit(6, "feet"),
  26073. weight: math.unit(180, "lb"),
  26074. name: "Sitting",
  26075. image: {
  26076. source: "./media/characters/juri/sitting.svg",
  26077. extra: 1270 / 1143,
  26078. bottom: 100 / 1343
  26079. }
  26080. },
  26081. back: {
  26082. height: math.unit(7 + 3 / 12, "feet"),
  26083. weight: math.unit(180, "lb"),
  26084. name: "Back",
  26085. image: {
  26086. source: "./media/characters/juri/back.svg",
  26087. extra: 1377 / 1240,
  26088. bottom: 23.7 / 1405
  26089. }
  26090. },
  26091. maw: {
  26092. height: math.unit(2.8, "feet"),
  26093. name: "Maw",
  26094. image: {
  26095. source: "./media/characters/juri/maw.svg"
  26096. }
  26097. },
  26098. stomach: {
  26099. height: math.unit(0.89, "feet"),
  26100. capacity: math.unit(4, "liters"),
  26101. name: "Stomach",
  26102. image: {
  26103. source: "./media/characters/juri/stomach.svg"
  26104. }
  26105. },
  26106. },
  26107. [
  26108. {
  26109. name: "Normal",
  26110. height: math.unit(7 + 3 / 12, "feet"),
  26111. default: true
  26112. },
  26113. ]
  26114. ))
  26115. characterMakers.push(() => makeCharacter(
  26116. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26117. {
  26118. fox: {
  26119. height: math.unit(5 + 6 / 12, "feet"),
  26120. weight: math.unit(140, "lb"),
  26121. name: "Fox",
  26122. image: {
  26123. source: "./media/characters/maxene-sita/fox.svg",
  26124. extra: 146 / 138,
  26125. bottom: 2.1 / 148.19
  26126. }
  26127. },
  26128. foxLaying: {
  26129. height: math.unit(1.70, "feet"),
  26130. weight: math.unit(140, "lb"),
  26131. name: "Fox (Laying)",
  26132. image: {
  26133. source: "./media/characters/maxene-sita/fox-laying.svg",
  26134. extra: 910 / 572,
  26135. bottom: 71 / 981
  26136. }
  26137. },
  26138. kitsune: {
  26139. height: math.unit(10, "feet"),
  26140. weight: math.unit(800, "lb"),
  26141. name: "Kitsune",
  26142. image: {
  26143. source: "./media/characters/maxene-sita/kitsune.svg",
  26144. extra: 185 / 176,
  26145. bottom: 4.7 / 189.9
  26146. }
  26147. },
  26148. hellhound: {
  26149. height: math.unit(10, "feet"),
  26150. weight: math.unit(700, "lb"),
  26151. name: "Hellhound",
  26152. image: {
  26153. source: "./media/characters/maxene-sita/hellhound.svg",
  26154. extra: 1600 / 1545,
  26155. bottom: 81 / 1681
  26156. }
  26157. },
  26158. },
  26159. [
  26160. {
  26161. name: "Normal",
  26162. height: math.unit(5 + 6 / 12, "feet"),
  26163. default: true
  26164. },
  26165. ]
  26166. ))
  26167. characterMakers.push(() => makeCharacter(
  26168. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26169. {
  26170. front: {
  26171. height: math.unit(3 + 4 / 12, "feet"),
  26172. weight: math.unit(70, "lb"),
  26173. name: "Front",
  26174. image: {
  26175. source: "./media/characters/maia/front.svg",
  26176. extra: 227 / 219.5,
  26177. bottom: 40 / 267
  26178. }
  26179. },
  26180. back: {
  26181. height: math.unit(3 + 4 / 12, "feet"),
  26182. weight: math.unit(70, "lb"),
  26183. name: "Back",
  26184. image: {
  26185. source: "./media/characters/maia/back.svg",
  26186. extra: 237 / 225
  26187. }
  26188. },
  26189. },
  26190. [
  26191. {
  26192. name: "Normal",
  26193. height: math.unit(3 + 4 / 12, "feet"),
  26194. default: true
  26195. },
  26196. ]
  26197. ))
  26198. characterMakers.push(() => makeCharacter(
  26199. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26200. {
  26201. front: {
  26202. height: math.unit(5 + 10 / 12, "feet"),
  26203. weight: math.unit(197, "lb"),
  26204. name: "Front",
  26205. image: {
  26206. source: "./media/characters/jabaro/front.svg",
  26207. extra: 225 / 216,
  26208. bottom: 5.06 / 230
  26209. }
  26210. },
  26211. back: {
  26212. height: math.unit(5 + 10 / 12, "feet"),
  26213. weight: math.unit(197, "lb"),
  26214. name: "Back",
  26215. image: {
  26216. source: "./media/characters/jabaro/back.svg",
  26217. extra: 225 / 219,
  26218. bottom: 1.9 / 227
  26219. }
  26220. },
  26221. },
  26222. [
  26223. {
  26224. name: "Normal",
  26225. height: math.unit(5 + 10 / 12, "feet"),
  26226. default: true
  26227. },
  26228. ]
  26229. ))
  26230. characterMakers.push(() => makeCharacter(
  26231. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26232. {
  26233. front: {
  26234. height: math.unit(5 + 8 / 12, "feet"),
  26235. weight: math.unit(139, "lb"),
  26236. name: "Front",
  26237. image: {
  26238. source: "./media/characters/risa/front.svg",
  26239. extra: 270 / 260,
  26240. bottom: 11.2 / 282
  26241. }
  26242. },
  26243. back: {
  26244. height: math.unit(5 + 8 / 12, "feet"),
  26245. weight: math.unit(139, "lb"),
  26246. name: "Back",
  26247. image: {
  26248. source: "./media/characters/risa/back.svg",
  26249. extra: 264 / 255,
  26250. bottom: 4 / 268
  26251. }
  26252. },
  26253. },
  26254. [
  26255. {
  26256. name: "Normal",
  26257. height: math.unit(5 + 8 / 12, "feet"),
  26258. default: true
  26259. },
  26260. ]
  26261. ))
  26262. characterMakers.push(() => makeCharacter(
  26263. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26264. {
  26265. front: {
  26266. height: math.unit(2 + 11 / 12, "feet"),
  26267. weight: math.unit(30, "lb"),
  26268. name: "Front",
  26269. image: {
  26270. source: "./media/characters/weatley/front.svg",
  26271. bottom: 10.7 / 414,
  26272. extra: 403.5 / 362
  26273. }
  26274. },
  26275. back: {
  26276. height: math.unit(2 + 11 / 12, "feet"),
  26277. weight: math.unit(30, "lb"),
  26278. name: "Back",
  26279. image: {
  26280. source: "./media/characters/weatley/back.svg",
  26281. bottom: 10.7 / 414,
  26282. extra: 403.5 / 362
  26283. }
  26284. },
  26285. },
  26286. [
  26287. {
  26288. name: "Normal",
  26289. height: math.unit(2 + 11 / 12, "feet"),
  26290. default: true
  26291. },
  26292. ]
  26293. ))
  26294. characterMakers.push(() => makeCharacter(
  26295. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26296. {
  26297. front: {
  26298. height: math.unit(5 + 2 / 12, "feet"),
  26299. weight: math.unit(50, "kg"),
  26300. name: "Front",
  26301. image: {
  26302. source: "./media/characters/mercury-crescent/front.svg",
  26303. extra: 1088 / 1033,
  26304. bottom: 18.9 / 1109
  26305. }
  26306. },
  26307. },
  26308. [
  26309. {
  26310. name: "Normal",
  26311. height: math.unit(5 + 2 / 12, "feet"),
  26312. default: true
  26313. },
  26314. ]
  26315. ))
  26316. characterMakers.push(() => makeCharacter(
  26317. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26318. {
  26319. front: {
  26320. height: math.unit(2, "feet"),
  26321. weight: math.unit(15, "kg"),
  26322. name: "Front",
  26323. image: {
  26324. source: "./media/characters/diamond-jones/front.svg",
  26325. extra: 727/723,
  26326. bottom: 46/773
  26327. }
  26328. },
  26329. },
  26330. [
  26331. {
  26332. name: "Normal",
  26333. height: math.unit(2, "feet"),
  26334. default: true
  26335. },
  26336. ]
  26337. ))
  26338. characterMakers.push(() => makeCharacter(
  26339. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26340. {
  26341. front: {
  26342. height: math.unit(3, "feet"),
  26343. weight: math.unit(30, "kg"),
  26344. name: "Front",
  26345. image: {
  26346. source: "./media/characters/sweet-bit/front.svg",
  26347. extra: 675 / 567,
  26348. bottom: 27.7 / 703
  26349. }
  26350. },
  26351. },
  26352. [
  26353. {
  26354. name: "Normal",
  26355. height: math.unit(3, "feet"),
  26356. default: true
  26357. },
  26358. ]
  26359. ))
  26360. characterMakers.push(() => makeCharacter(
  26361. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26362. {
  26363. side: {
  26364. height: math.unit(9.178, "feet"),
  26365. weight: math.unit(500, "lb"),
  26366. name: "Side",
  26367. image: {
  26368. source: "./media/characters/umbrazen/side.svg",
  26369. extra: 1730 / 1473,
  26370. bottom: 34.6 / 1765
  26371. }
  26372. },
  26373. },
  26374. [
  26375. {
  26376. name: "Normal",
  26377. height: math.unit(9.178, "feet"),
  26378. default: true
  26379. },
  26380. ]
  26381. ))
  26382. characterMakers.push(() => makeCharacter(
  26383. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26384. {
  26385. front: {
  26386. height: math.unit(10, "feet"),
  26387. weight: math.unit(750, "lb"),
  26388. name: "Front",
  26389. image: {
  26390. source: "./media/characters/arlist/front.svg",
  26391. extra: 961 / 778,
  26392. bottom: 6.2 / 986
  26393. }
  26394. },
  26395. },
  26396. [
  26397. {
  26398. name: "Normal",
  26399. height: math.unit(10, "feet"),
  26400. default: true
  26401. },
  26402. ]
  26403. ))
  26404. characterMakers.push(() => makeCharacter(
  26405. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26406. {
  26407. front: {
  26408. height: math.unit(5 + 1 / 12, "feet"),
  26409. weight: math.unit(110, "lb"),
  26410. name: "Front",
  26411. image: {
  26412. source: "./media/characters/aradel/front.svg",
  26413. extra: 324 / 303,
  26414. bottom: 3.6 / 329.4
  26415. }
  26416. },
  26417. },
  26418. [
  26419. {
  26420. name: "Normal",
  26421. height: math.unit(5 + 1 / 12, "feet"),
  26422. default: true
  26423. },
  26424. ]
  26425. ))
  26426. characterMakers.push(() => makeCharacter(
  26427. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26428. {
  26429. front: {
  26430. height: math.unit(3 + 8 / 12, "feet"),
  26431. weight: math.unit(50, "lb"),
  26432. name: "Front",
  26433. image: {
  26434. source: "./media/characters/serryn/front.svg",
  26435. extra: 1792 / 1656,
  26436. bottom: 43.5 / 1840
  26437. }
  26438. },
  26439. },
  26440. [
  26441. {
  26442. name: "Normal",
  26443. height: math.unit(3 + 8 / 12, "feet"),
  26444. default: true
  26445. },
  26446. ]
  26447. ))
  26448. characterMakers.push(() => makeCharacter(
  26449. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26450. {
  26451. front: {
  26452. height: math.unit(7 + 10 / 12, "feet"),
  26453. weight: math.unit(255, "lb"),
  26454. name: "Front",
  26455. image: {
  26456. source: "./media/characters/xavier-thyme/front.svg",
  26457. extra: 3733 / 3642,
  26458. bottom: 131 / 3869
  26459. }
  26460. },
  26461. frontRaven: {
  26462. height: math.unit(7 + 10 / 12, "feet"),
  26463. weight: math.unit(255, "lb"),
  26464. name: "Front (Raven)",
  26465. image: {
  26466. source: "./media/characters/xavier-thyme/front-raven.svg",
  26467. extra: 4385 / 3642,
  26468. bottom: 131 / 4517
  26469. }
  26470. },
  26471. },
  26472. [
  26473. {
  26474. name: "Normal",
  26475. height: math.unit(7 + 10 / 12, "feet"),
  26476. default: true
  26477. },
  26478. ]
  26479. ))
  26480. characterMakers.push(() => makeCharacter(
  26481. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26482. {
  26483. front: {
  26484. height: math.unit(1.6, "m"),
  26485. weight: math.unit(50, "kg"),
  26486. name: "Front",
  26487. image: {
  26488. source: "./media/characters/kiki/front.svg",
  26489. extra: 4682 / 3610,
  26490. bottom: 115 / 4777
  26491. }
  26492. },
  26493. },
  26494. [
  26495. {
  26496. name: "Normal",
  26497. height: math.unit(1.6, "meters"),
  26498. default: true
  26499. },
  26500. ]
  26501. ))
  26502. characterMakers.push(() => makeCharacter(
  26503. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26504. {
  26505. front: {
  26506. height: math.unit(50, "m"),
  26507. weight: math.unit(500, "tonnes"),
  26508. name: "Front",
  26509. image: {
  26510. source: "./media/characters/ryoko/front.svg",
  26511. extra: 4632 / 3926,
  26512. bottom: 193 / 4823
  26513. }
  26514. },
  26515. },
  26516. [
  26517. {
  26518. name: "Normal",
  26519. height: math.unit(50, "meters"),
  26520. default: true
  26521. },
  26522. ]
  26523. ))
  26524. characterMakers.push(() => makeCharacter(
  26525. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26526. {
  26527. front: {
  26528. height: math.unit(30, "m"),
  26529. weight: math.unit(22, "tonnes"),
  26530. name: "Front",
  26531. image: {
  26532. source: "./media/characters/elio/front.svg",
  26533. extra: 4582 / 3720,
  26534. bottom: 236 / 4828
  26535. }
  26536. },
  26537. },
  26538. [
  26539. {
  26540. name: "Normal",
  26541. height: math.unit(30, "meters"),
  26542. default: true
  26543. },
  26544. ]
  26545. ))
  26546. characterMakers.push(() => makeCharacter(
  26547. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26548. {
  26549. front: {
  26550. height: math.unit(6 + 3 / 12, "feet"),
  26551. weight: math.unit(120, "lb"),
  26552. name: "Front",
  26553. image: {
  26554. source: "./media/characters/azura/front.svg",
  26555. extra: 1149 / 1135,
  26556. bottom: 45 / 1194
  26557. }
  26558. },
  26559. frontClothed: {
  26560. height: math.unit(6 + 3 / 12, "feet"),
  26561. weight: math.unit(120, "lb"),
  26562. name: "Front (Clothed)",
  26563. image: {
  26564. source: "./media/characters/azura/front-clothed.svg",
  26565. extra: 1149 / 1135,
  26566. bottom: 45 / 1194
  26567. }
  26568. },
  26569. },
  26570. [
  26571. {
  26572. name: "Normal",
  26573. height: math.unit(6 + 3 / 12, "feet"),
  26574. default: true
  26575. },
  26576. {
  26577. name: "Macro",
  26578. height: math.unit(20 + 6 / 12, "feet")
  26579. },
  26580. {
  26581. name: "Megamacro",
  26582. height: math.unit(12, "miles")
  26583. },
  26584. {
  26585. name: "Gigamacro",
  26586. height: math.unit(10000, "miles")
  26587. },
  26588. {
  26589. name: "Teramacro",
  26590. height: math.unit(900000, "miles")
  26591. },
  26592. ]
  26593. ))
  26594. characterMakers.push(() => makeCharacter(
  26595. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26596. {
  26597. front: {
  26598. height: math.unit(12, "feet"),
  26599. weight: math.unit(1, "ton"),
  26600. capacity: math.unit(660000, "gallons"),
  26601. name: "Front",
  26602. image: {
  26603. source: "./media/characters/zeus/front.svg",
  26604. extra: 5005 / 4717,
  26605. bottom: 363 / 5388
  26606. }
  26607. },
  26608. },
  26609. [
  26610. {
  26611. name: "Normal",
  26612. height: math.unit(12, "feet")
  26613. },
  26614. {
  26615. name: "Preferred Size",
  26616. height: math.unit(0.5, "miles"),
  26617. default: true
  26618. },
  26619. {
  26620. name: "Giga Horse",
  26621. height: math.unit(300, "miles")
  26622. },
  26623. {
  26624. name: "Riding Planets",
  26625. height: math.unit(30, "megameters")
  26626. },
  26627. {
  26628. name: "Cosmic Giant",
  26629. height: math.unit(3, "zettameters")
  26630. },
  26631. {
  26632. name: "Breeding God",
  26633. height: math.unit(9.92e22, "yottameters")
  26634. },
  26635. ]
  26636. ))
  26637. characterMakers.push(() => makeCharacter(
  26638. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26639. {
  26640. side: {
  26641. height: math.unit(9, "feet"),
  26642. weight: math.unit(1500, "kg"),
  26643. name: "Side",
  26644. image: {
  26645. source: "./media/characters/fang/side.svg",
  26646. extra: 924 / 866,
  26647. bottom: 47.5 / 972.3
  26648. }
  26649. },
  26650. },
  26651. [
  26652. {
  26653. name: "Normal",
  26654. height: math.unit(9, "feet"),
  26655. default: true
  26656. },
  26657. {
  26658. name: "Macro",
  26659. height: math.unit(75 + 6 / 12, "feet")
  26660. },
  26661. {
  26662. name: "Teramacro",
  26663. height: math.unit(50000, "miles")
  26664. },
  26665. ]
  26666. ))
  26667. characterMakers.push(() => makeCharacter(
  26668. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26669. {
  26670. front: {
  26671. height: math.unit(10, "feet"),
  26672. weight: math.unit(2, "tons"),
  26673. name: "Front",
  26674. image: {
  26675. source: "./media/characters/rekhit/front.svg",
  26676. extra: 2796 / 2590,
  26677. bottom: 225 / 3022
  26678. }
  26679. },
  26680. },
  26681. [
  26682. {
  26683. name: "Normal",
  26684. height: math.unit(10, "feet"),
  26685. default: true
  26686. },
  26687. {
  26688. name: "Macro",
  26689. height: math.unit(500, "feet")
  26690. },
  26691. ]
  26692. ))
  26693. characterMakers.push(() => makeCharacter(
  26694. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26695. {
  26696. front: {
  26697. height: math.unit(7 + 6.451 / 12, "feet"),
  26698. weight: math.unit(310, "lb"),
  26699. name: "Front",
  26700. image: {
  26701. source: "./media/characters/dahlia-verrick/front.svg",
  26702. extra: 1488 / 1365,
  26703. bottom: 6.2 / 1495
  26704. }
  26705. },
  26706. back: {
  26707. height: math.unit(7 + 6.451 / 12, "feet"),
  26708. weight: math.unit(310, "lb"),
  26709. name: "Back",
  26710. image: {
  26711. source: "./media/characters/dahlia-verrick/back.svg",
  26712. extra: 1472 / 1351,
  26713. bottom: 5.28 / 1477
  26714. }
  26715. },
  26716. frontBusiness: {
  26717. height: math.unit(7 + 6.451 / 12, "feet"),
  26718. weight: math.unit(200, "lb"),
  26719. name: "Front (Business)",
  26720. image: {
  26721. source: "./media/characters/dahlia-verrick/front-business.svg",
  26722. extra: 1478 / 1381,
  26723. bottom: 5.5 / 1484
  26724. }
  26725. },
  26726. frontCasual: {
  26727. height: math.unit(7 + 6.451 / 12, "feet"),
  26728. weight: math.unit(200, "lb"),
  26729. name: "Front (Casual)",
  26730. image: {
  26731. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26732. extra: 1478 / 1381,
  26733. bottom: 5.5 / 1484
  26734. }
  26735. },
  26736. },
  26737. [
  26738. {
  26739. name: "Travel-Sized",
  26740. height: math.unit(7.45, "inches")
  26741. },
  26742. {
  26743. name: "Normal",
  26744. height: math.unit(7 + 6.451 / 12, "feet"),
  26745. default: true
  26746. },
  26747. {
  26748. name: "Hitting the Town",
  26749. height: math.unit(37 + 8 / 12, "feet")
  26750. },
  26751. {
  26752. name: "Stomp in the Suburbs",
  26753. height: math.unit(964 + 9.728 / 12, "feet")
  26754. },
  26755. {
  26756. name: "Sit on the City",
  26757. height: math.unit(61747 + 10.592 / 12, "feet")
  26758. },
  26759. {
  26760. name: "Glomp the Globe",
  26761. height: math.unit(252919327 + 4.832 / 12, "feet")
  26762. },
  26763. ]
  26764. ))
  26765. characterMakers.push(() => makeCharacter(
  26766. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26767. {
  26768. front: {
  26769. height: math.unit(6 + 4 / 12, "feet"),
  26770. weight: math.unit(320, "lb"),
  26771. name: "Front",
  26772. image: {
  26773. source: "./media/characters/balina-mahigan/front.svg",
  26774. extra: 447 / 428,
  26775. bottom: 18 / 466
  26776. }
  26777. },
  26778. back: {
  26779. height: math.unit(6 + 4 / 12, "feet"),
  26780. weight: math.unit(320, "lb"),
  26781. name: "Back",
  26782. image: {
  26783. source: "./media/characters/balina-mahigan/back.svg",
  26784. extra: 445 / 428,
  26785. bottom: 4.07 / 448
  26786. }
  26787. },
  26788. arm: {
  26789. height: math.unit(1.88, "feet"),
  26790. name: "Arm",
  26791. image: {
  26792. source: "./media/characters/balina-mahigan/arm.svg"
  26793. }
  26794. },
  26795. backPort: {
  26796. height: math.unit(0.685, "feet"),
  26797. name: "Back Port",
  26798. image: {
  26799. source: "./media/characters/balina-mahigan/back-port.svg"
  26800. }
  26801. },
  26802. hoofpaw: {
  26803. height: math.unit(1.41, "feet"),
  26804. name: "Hoofpaw",
  26805. image: {
  26806. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26807. }
  26808. },
  26809. leftHandBack: {
  26810. height: math.unit(0.938, "feet"),
  26811. name: "Left Hand (Back)",
  26812. image: {
  26813. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26814. }
  26815. },
  26816. leftHandFront: {
  26817. height: math.unit(0.938, "feet"),
  26818. name: "Left Hand (Front)",
  26819. image: {
  26820. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26821. }
  26822. },
  26823. rightHandBack: {
  26824. height: math.unit(0.95, "feet"),
  26825. name: "Right Hand (Back)",
  26826. image: {
  26827. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26828. }
  26829. },
  26830. rightHandFront: {
  26831. height: math.unit(0.95, "feet"),
  26832. name: "Right Hand (Front)",
  26833. image: {
  26834. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26835. }
  26836. },
  26837. },
  26838. [
  26839. {
  26840. name: "Normal",
  26841. height: math.unit(6 + 4 / 12, "feet"),
  26842. default: true
  26843. },
  26844. ]
  26845. ))
  26846. characterMakers.push(() => makeCharacter(
  26847. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26848. {
  26849. front: {
  26850. height: math.unit(6, "feet"),
  26851. weight: math.unit(320, "lb"),
  26852. name: "Front",
  26853. image: {
  26854. source: "./media/characters/balina-mejeri/front.svg",
  26855. extra: 517 / 488,
  26856. bottom: 44.2 / 561
  26857. }
  26858. },
  26859. },
  26860. [
  26861. {
  26862. name: "Normal",
  26863. height: math.unit(6 + 4 / 12, "feet")
  26864. },
  26865. {
  26866. name: "Business",
  26867. height: math.unit(155, "feet"),
  26868. default: true
  26869. },
  26870. ]
  26871. ))
  26872. characterMakers.push(() => makeCharacter(
  26873. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26874. {
  26875. kneeling: {
  26876. height: math.unit(6 + 4 / 12, "feet"),
  26877. weight: math.unit(300 * 20, "lb"),
  26878. name: "Kneeling",
  26879. image: {
  26880. source: "./media/characters/balbarian/kneeling.svg",
  26881. extra: 922 / 862,
  26882. bottom: 42.4 / 965
  26883. }
  26884. },
  26885. },
  26886. [
  26887. {
  26888. name: "Normal",
  26889. height: math.unit(6 + 4 / 12, "feet")
  26890. },
  26891. {
  26892. name: "Treasured",
  26893. height: math.unit(18 + 9 / 12, "feet"),
  26894. default: true
  26895. },
  26896. {
  26897. name: "Macro",
  26898. height: math.unit(900, "feet")
  26899. },
  26900. ]
  26901. ))
  26902. characterMakers.push(() => makeCharacter(
  26903. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26904. {
  26905. front: {
  26906. height: math.unit(6 + 4 / 12, "feet"),
  26907. weight: math.unit(325, "lb"),
  26908. name: "Front",
  26909. image: {
  26910. source: "./media/characters/balina-amarini/front.svg",
  26911. extra: 415 / 403,
  26912. bottom: 19 / 433.4
  26913. }
  26914. },
  26915. back: {
  26916. height: math.unit(6 + 4 / 12, "feet"),
  26917. weight: math.unit(325, "lb"),
  26918. name: "Back",
  26919. image: {
  26920. source: "./media/characters/balina-amarini/back.svg",
  26921. extra: 415 / 403,
  26922. bottom: 13.5 / 432
  26923. }
  26924. },
  26925. overdrive: {
  26926. height: math.unit(6 + 4 / 12, "feet"),
  26927. weight: math.unit(400, "lb"),
  26928. name: "Overdrive",
  26929. image: {
  26930. source: "./media/characters/balina-amarini/overdrive.svg",
  26931. extra: 269 / 259,
  26932. bottom: 12 / 282
  26933. }
  26934. },
  26935. },
  26936. [
  26937. {
  26938. name: "Boom",
  26939. height: math.unit(9 + 10 / 12, "feet"),
  26940. default: true
  26941. },
  26942. {
  26943. name: "Macro",
  26944. height: math.unit(280, "feet")
  26945. },
  26946. ]
  26947. ))
  26948. characterMakers.push(() => makeCharacter(
  26949. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26950. {
  26951. goddess: {
  26952. height: math.unit(600, "feet"),
  26953. weight: math.unit(2000000, "tons"),
  26954. name: "Goddess",
  26955. image: {
  26956. source: "./media/characters/lady-kubwa/goddess.svg",
  26957. extra: 1240.5 / 1223,
  26958. bottom: 22 / 1263
  26959. }
  26960. },
  26961. goddesser: {
  26962. height: math.unit(900, "feet"),
  26963. weight: math.unit(20000000, "lb"),
  26964. name: "Goddess-er",
  26965. image: {
  26966. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26967. extra: 899 / 888,
  26968. bottom: 12.6 / 912
  26969. }
  26970. },
  26971. },
  26972. [
  26973. {
  26974. name: "Macro",
  26975. height: math.unit(600, "feet"),
  26976. default: true
  26977. },
  26978. {
  26979. name: "Megamacro",
  26980. height: math.unit(250, "miles")
  26981. },
  26982. ]
  26983. ))
  26984. characterMakers.push(() => makeCharacter(
  26985. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26986. {
  26987. front: {
  26988. height: math.unit(7 + 7 / 12, "feet"),
  26989. weight: math.unit(250, "lb"),
  26990. name: "Front",
  26991. image: {
  26992. source: "./media/characters/tala-grovehorn/front.svg",
  26993. extra: 2636 / 2525,
  26994. bottom: 147 / 2781
  26995. }
  26996. },
  26997. back: {
  26998. height: math.unit(7 + 7 / 12, "feet"),
  26999. weight: math.unit(250, "lb"),
  27000. name: "Back",
  27001. image: {
  27002. source: "./media/characters/tala-grovehorn/back.svg",
  27003. extra: 2635 / 2539,
  27004. bottom: 100 / 2732.8
  27005. }
  27006. },
  27007. mouth: {
  27008. height: math.unit(1.15, "feet"),
  27009. name: "Mouth",
  27010. image: {
  27011. source: "./media/characters/tala-grovehorn/mouth.svg"
  27012. }
  27013. },
  27014. dick: {
  27015. height: math.unit(2.36, "feet"),
  27016. name: "Dick",
  27017. image: {
  27018. source: "./media/characters/tala-grovehorn/dick.svg"
  27019. }
  27020. },
  27021. slit: {
  27022. height: math.unit(0.61, "feet"),
  27023. name: "Slit",
  27024. image: {
  27025. source: "./media/characters/tala-grovehorn/slit.svg"
  27026. }
  27027. },
  27028. },
  27029. [
  27030. ]
  27031. ))
  27032. characterMakers.push(() => makeCharacter(
  27033. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27034. {
  27035. front: {
  27036. height: math.unit(7 + 7 / 12, "feet"),
  27037. weight: math.unit(225, "lb"),
  27038. name: "Front",
  27039. image: {
  27040. source: "./media/characters/epona/front.svg",
  27041. extra: 2445 / 2290,
  27042. bottom: 251 / 2696
  27043. }
  27044. },
  27045. back: {
  27046. height: math.unit(7 + 7 / 12, "feet"),
  27047. weight: math.unit(225, "lb"),
  27048. name: "Back",
  27049. image: {
  27050. source: "./media/characters/epona/back.svg",
  27051. extra: 2546 / 2408,
  27052. bottom: 44 / 2589
  27053. }
  27054. },
  27055. genitals: {
  27056. height: math.unit(1.5, "feet"),
  27057. name: "Genitals",
  27058. image: {
  27059. source: "./media/characters/epona/genitals.svg"
  27060. }
  27061. },
  27062. },
  27063. [
  27064. {
  27065. name: "Normal",
  27066. height: math.unit(7 + 7 / 12, "feet"),
  27067. default: true
  27068. },
  27069. ]
  27070. ))
  27071. characterMakers.push(() => makeCharacter(
  27072. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27073. {
  27074. front: {
  27075. height: math.unit(7, "feet"),
  27076. weight: math.unit(518, "lb"),
  27077. name: "Front",
  27078. image: {
  27079. source: "./media/characters/avia-bloodbourn/front.svg",
  27080. extra: 1466 / 1350,
  27081. bottom: 65 / 1527
  27082. }
  27083. },
  27084. },
  27085. [
  27086. ]
  27087. ))
  27088. characterMakers.push(() => makeCharacter(
  27089. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27090. {
  27091. front: {
  27092. height: math.unit(9.35, "feet"),
  27093. weight: math.unit(600, "lb"),
  27094. name: "Front",
  27095. image: {
  27096. source: "./media/characters/amera/front.svg",
  27097. extra: 891 / 818,
  27098. bottom: 30 / 922.7
  27099. }
  27100. },
  27101. back: {
  27102. height: math.unit(9.35, "feet"),
  27103. weight: math.unit(600, "lb"),
  27104. name: "Back",
  27105. image: {
  27106. source: "./media/characters/amera/back.svg",
  27107. extra: 876 / 824,
  27108. bottom: 6.8 / 884
  27109. }
  27110. },
  27111. dick: {
  27112. height: math.unit(2.14, "feet"),
  27113. name: "Dick",
  27114. image: {
  27115. source: "./media/characters/amera/dick.svg"
  27116. }
  27117. },
  27118. },
  27119. [
  27120. {
  27121. name: "Normal",
  27122. height: math.unit(9.35, "feet"),
  27123. default: true
  27124. },
  27125. ]
  27126. ))
  27127. characterMakers.push(() => makeCharacter(
  27128. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27129. {
  27130. kneeling: {
  27131. height: math.unit(3 + 4 / 12, "feet"),
  27132. weight: math.unit(90, "lb"),
  27133. name: "Kneeling",
  27134. image: {
  27135. source: "./media/characters/rosewen/kneeling.svg",
  27136. extra: 1835 / 1571,
  27137. bottom: 27.7 / 1862
  27138. }
  27139. },
  27140. },
  27141. [
  27142. {
  27143. name: "Normal",
  27144. height: math.unit(3 + 4 / 12, "feet"),
  27145. default: true
  27146. },
  27147. ]
  27148. ))
  27149. characterMakers.push(() => makeCharacter(
  27150. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27151. {
  27152. front: {
  27153. height: math.unit(5 + 10 / 12, "feet"),
  27154. weight: math.unit(200, "lb"),
  27155. name: "Front",
  27156. image: {
  27157. source: "./media/characters/sabah/front.svg",
  27158. extra: 849 / 763,
  27159. bottom: 33.9 / 881
  27160. }
  27161. },
  27162. },
  27163. [
  27164. {
  27165. name: "Normal",
  27166. height: math.unit(5 + 10 / 12, "feet"),
  27167. default: true
  27168. },
  27169. ]
  27170. ))
  27171. characterMakers.push(() => makeCharacter(
  27172. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27173. {
  27174. front: {
  27175. height: math.unit(3 + 5 / 12, "feet"),
  27176. weight: math.unit(40, "kg"),
  27177. name: "Front",
  27178. image: {
  27179. source: "./media/characters/purple-flame/front.svg",
  27180. extra: 1577 / 1412,
  27181. bottom: 97 / 1694
  27182. }
  27183. },
  27184. frontDressed: {
  27185. height: math.unit(3 + 5 / 12, "feet"),
  27186. weight: math.unit(40, "kg"),
  27187. name: "Front (Dressed)",
  27188. image: {
  27189. source: "./media/characters/purple-flame/front-dressed.svg",
  27190. extra: 1577 / 1412,
  27191. bottom: 97 / 1694
  27192. }
  27193. },
  27194. headphones: {
  27195. height: math.unit(0.85, "feet"),
  27196. name: "Headphones",
  27197. image: {
  27198. source: "./media/characters/purple-flame/headphones.svg"
  27199. }
  27200. },
  27201. },
  27202. [
  27203. {
  27204. name: "Really Small",
  27205. height: math.unit(5, "cm")
  27206. },
  27207. {
  27208. name: "Micro",
  27209. height: math.unit(1 + 5 / 12, "feet")
  27210. },
  27211. {
  27212. name: "Normal",
  27213. height: math.unit(3 + 5 / 12, "feet"),
  27214. default: true
  27215. },
  27216. {
  27217. name: "Minimacro",
  27218. height: math.unit(125, "feet")
  27219. },
  27220. {
  27221. name: "Macro",
  27222. height: math.unit(0.5, "miles")
  27223. },
  27224. {
  27225. name: "Megamacro",
  27226. height: math.unit(50, "miles")
  27227. },
  27228. {
  27229. name: "Gigantic",
  27230. height: math.unit(750, "miles")
  27231. },
  27232. {
  27233. name: "Planetary",
  27234. height: math.unit(15000, "miles")
  27235. },
  27236. ]
  27237. ))
  27238. characterMakers.push(() => makeCharacter(
  27239. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27240. {
  27241. front: {
  27242. height: math.unit(14, "feet"),
  27243. weight: math.unit(959, "lb"),
  27244. name: "Front",
  27245. image: {
  27246. source: "./media/characters/arsenal/front.svg",
  27247. extra: 2357 / 2157,
  27248. bottom: 93 / 2458
  27249. }
  27250. },
  27251. },
  27252. [
  27253. {
  27254. name: "Normal",
  27255. height: math.unit(14, "feet"),
  27256. default: true
  27257. },
  27258. ]
  27259. ))
  27260. characterMakers.push(() => makeCharacter(
  27261. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27262. {
  27263. front: {
  27264. height: math.unit(6, "feet"),
  27265. weight: math.unit(150, "lb"),
  27266. name: "Front",
  27267. image: {
  27268. source: "./media/characters/adira/front.svg",
  27269. extra: 1078 / 1029,
  27270. bottom: 87 / 1166
  27271. }
  27272. },
  27273. },
  27274. [
  27275. {
  27276. name: "Micro",
  27277. height: math.unit(4, "inches"),
  27278. default: true
  27279. },
  27280. {
  27281. name: "Macro",
  27282. height: math.unit(50, "feet")
  27283. },
  27284. ]
  27285. ))
  27286. characterMakers.push(() => makeCharacter(
  27287. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27288. {
  27289. front: {
  27290. height: math.unit(16, "feet"),
  27291. weight: math.unit(1000, "lb"),
  27292. name: "Front",
  27293. image: {
  27294. source: "./media/characters/grim/front.svg",
  27295. extra: 622 / 614,
  27296. bottom: 18.1 / 642
  27297. }
  27298. },
  27299. back: {
  27300. height: math.unit(16, "feet"),
  27301. weight: math.unit(1000, "lb"),
  27302. name: "Back",
  27303. image: {
  27304. source: "./media/characters/grim/back.svg",
  27305. extra: 610.6 / 602,
  27306. bottom: 40.8 / 652
  27307. }
  27308. },
  27309. hunched: {
  27310. height: math.unit(9.75, "feet"),
  27311. weight: math.unit(1000, "lb"),
  27312. name: "Hunched",
  27313. image: {
  27314. source: "./media/characters/grim/hunched.svg",
  27315. extra: 304 / 297,
  27316. bottom: 35.4 / 394
  27317. }
  27318. },
  27319. },
  27320. [
  27321. {
  27322. name: "Normal",
  27323. height: math.unit(16, "feet"),
  27324. default: true
  27325. },
  27326. ]
  27327. ))
  27328. characterMakers.push(() => makeCharacter(
  27329. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27330. {
  27331. front: {
  27332. height: math.unit(2.3, "meters"),
  27333. weight: math.unit(300, "lb"),
  27334. name: "Front",
  27335. image: {
  27336. source: "./media/characters/sinja/front-sfw.svg",
  27337. extra: 1393 / 1294,
  27338. bottom: 70 / 1463
  27339. }
  27340. },
  27341. frontNsfw: {
  27342. height: math.unit(2.3, "meters"),
  27343. weight: math.unit(300, "lb"),
  27344. name: "Front (NSFW)",
  27345. image: {
  27346. source: "./media/characters/sinja/front-nsfw.svg",
  27347. extra: 1393 / 1294,
  27348. bottom: 70 / 1463
  27349. }
  27350. },
  27351. back: {
  27352. height: math.unit(2.3, "meters"),
  27353. weight: math.unit(300, "lb"),
  27354. name: "Back",
  27355. image: {
  27356. source: "./media/characters/sinja/back.svg",
  27357. extra: 1393 / 1294,
  27358. bottom: 70 / 1463
  27359. }
  27360. },
  27361. head: {
  27362. height: math.unit(1.771, "feet"),
  27363. name: "Head",
  27364. image: {
  27365. source: "./media/characters/sinja/head.svg"
  27366. }
  27367. },
  27368. slit: {
  27369. height: math.unit(0.8, "feet"),
  27370. name: "Slit",
  27371. image: {
  27372. source: "./media/characters/sinja/slit.svg"
  27373. }
  27374. },
  27375. },
  27376. [
  27377. {
  27378. name: "Normal",
  27379. height: math.unit(2.3, "meters")
  27380. },
  27381. {
  27382. name: "Macro",
  27383. height: math.unit(91, "meters"),
  27384. default: true
  27385. },
  27386. {
  27387. name: "Megamacro",
  27388. height: math.unit(91440, "meters")
  27389. },
  27390. {
  27391. name: "Gigamacro",
  27392. height: math.unit(60960000, "meters")
  27393. },
  27394. {
  27395. name: "Teramacro",
  27396. height: math.unit(9144000000, "meters")
  27397. },
  27398. ]
  27399. ))
  27400. characterMakers.push(() => makeCharacter(
  27401. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27402. {
  27403. front: {
  27404. height: math.unit(1.7, "meters"),
  27405. weight: math.unit(130, "lb"),
  27406. name: "Front",
  27407. image: {
  27408. source: "./media/characters/kyu/front.svg",
  27409. extra: 415 / 395,
  27410. bottom: 5 / 420
  27411. }
  27412. },
  27413. head: {
  27414. height: math.unit(1.75, "feet"),
  27415. name: "Head",
  27416. image: {
  27417. source: "./media/characters/kyu/head.svg"
  27418. }
  27419. },
  27420. foot: {
  27421. height: math.unit(0.81, "feet"),
  27422. name: "Foot",
  27423. image: {
  27424. source: "./media/characters/kyu/foot.svg"
  27425. }
  27426. },
  27427. },
  27428. [
  27429. {
  27430. name: "Normal",
  27431. height: math.unit(1.7, "meters")
  27432. },
  27433. {
  27434. name: "Macro",
  27435. height: math.unit(131, "feet"),
  27436. default: true
  27437. },
  27438. {
  27439. name: "Megamacro",
  27440. height: math.unit(91440, "meters")
  27441. },
  27442. {
  27443. name: "Gigamacro",
  27444. height: math.unit(60960000, "meters")
  27445. },
  27446. {
  27447. name: "Teramacro",
  27448. height: math.unit(9144000000, "meters")
  27449. },
  27450. ]
  27451. ))
  27452. characterMakers.push(() => makeCharacter(
  27453. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27454. {
  27455. front: {
  27456. height: math.unit(7 + 1 / 12, "feet"),
  27457. weight: math.unit(250, "lb"),
  27458. name: "Front",
  27459. image: {
  27460. source: "./media/characters/joey/front.svg",
  27461. extra: 1791 / 1537,
  27462. bottom: 28 / 1816
  27463. }
  27464. },
  27465. },
  27466. [
  27467. {
  27468. name: "Micro",
  27469. height: math.unit(3, "inches")
  27470. },
  27471. {
  27472. name: "Normal",
  27473. height: math.unit(7 + 1 / 12, "feet"),
  27474. default: true
  27475. },
  27476. ]
  27477. ))
  27478. characterMakers.push(() => makeCharacter(
  27479. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27480. {
  27481. front: {
  27482. height: math.unit(165, "cm"),
  27483. weight: math.unit(140, "lb"),
  27484. name: "Front",
  27485. image: {
  27486. source: "./media/characters/sam-evans/front.svg",
  27487. extra: 3417 / 3230,
  27488. bottom: 41.3 / 3417
  27489. }
  27490. },
  27491. frontSixTails: {
  27492. height: math.unit(165, "cm"),
  27493. weight: math.unit(140, "lb"),
  27494. name: "Front-six-tails",
  27495. image: {
  27496. source: "./media/characters/sam-evans/front-six-tails.svg",
  27497. extra: 3417 / 3230,
  27498. bottom: 41.3 / 3417
  27499. }
  27500. },
  27501. back: {
  27502. height: math.unit(165, "cm"),
  27503. weight: math.unit(140, "lb"),
  27504. name: "Back",
  27505. image: {
  27506. source: "./media/characters/sam-evans/back.svg",
  27507. extra: 3227 / 3032,
  27508. bottom: 6.8 / 3234
  27509. }
  27510. },
  27511. face: {
  27512. height: math.unit(0.68, "feet"),
  27513. name: "Face",
  27514. image: {
  27515. source: "./media/characters/sam-evans/face.svg"
  27516. }
  27517. },
  27518. },
  27519. [
  27520. {
  27521. name: "Normal",
  27522. height: math.unit(165, "cm"),
  27523. default: true
  27524. },
  27525. {
  27526. name: "Macro",
  27527. height: math.unit(100, "meters")
  27528. },
  27529. {
  27530. name: "Macro+",
  27531. height: math.unit(800, "meters")
  27532. },
  27533. {
  27534. name: "Macro++",
  27535. height: math.unit(3, "km")
  27536. },
  27537. {
  27538. name: "Macro+++",
  27539. height: math.unit(30, "km")
  27540. },
  27541. ]
  27542. ))
  27543. characterMakers.push(() => makeCharacter(
  27544. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27545. {
  27546. front: {
  27547. height: math.unit(10, "feet"),
  27548. weight: math.unit(750, "lb"),
  27549. name: "Front",
  27550. image: {
  27551. source: "./media/characters/juliet-a/front.svg",
  27552. extra: 1766 / 1720,
  27553. bottom: 43 / 1809
  27554. }
  27555. },
  27556. back: {
  27557. height: math.unit(10, "feet"),
  27558. weight: math.unit(750, "lb"),
  27559. name: "Back",
  27560. image: {
  27561. source: "./media/characters/juliet-a/back.svg",
  27562. extra: 1781 / 1734,
  27563. bottom: 35 / 1810,
  27564. }
  27565. },
  27566. },
  27567. [
  27568. {
  27569. name: "Normal",
  27570. height: math.unit(10, "feet"),
  27571. default: true
  27572. },
  27573. {
  27574. name: "Dragon Form",
  27575. height: math.unit(250, "feet")
  27576. },
  27577. {
  27578. name: "Macro",
  27579. height: math.unit(1000, "feet")
  27580. },
  27581. {
  27582. name: "Megamacro",
  27583. height: math.unit(10000, "feet")
  27584. }
  27585. ]
  27586. ))
  27587. characterMakers.push(() => makeCharacter(
  27588. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27589. {
  27590. regular: {
  27591. height: math.unit(7 + 3 / 12, "feet"),
  27592. weight: math.unit(260, "lb"),
  27593. name: "Regular",
  27594. image: {
  27595. source: "./media/characters/wild/regular.svg",
  27596. extra: 97.45 / 92,
  27597. bottom: 6.8 / 104.3
  27598. }
  27599. },
  27600. biggums: {
  27601. height: math.unit(8 + 6 / 12, "feet"),
  27602. weight: math.unit(425, "lb"),
  27603. name: "Biggums",
  27604. image: {
  27605. source: "./media/characters/wild/biggums.svg",
  27606. extra: 97.45 / 92,
  27607. bottom: 7.5 / 132.34
  27608. }
  27609. },
  27610. mawRegular: {
  27611. height: math.unit(1.24, "feet"),
  27612. name: "Maw (Regular)",
  27613. image: {
  27614. source: "./media/characters/wild/maw.svg"
  27615. }
  27616. },
  27617. mawBiggums: {
  27618. height: math.unit(1.47, "feet"),
  27619. name: "Maw (Biggums)",
  27620. image: {
  27621. source: "./media/characters/wild/maw.svg"
  27622. }
  27623. },
  27624. },
  27625. [
  27626. {
  27627. name: "Normal",
  27628. height: math.unit(7 + 3 / 12, "feet"),
  27629. default: true
  27630. },
  27631. ]
  27632. ))
  27633. characterMakers.push(() => makeCharacter(
  27634. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27635. {
  27636. front: {
  27637. height: math.unit(2.5, "meters"),
  27638. weight: math.unit(200, "kg"),
  27639. name: "Front",
  27640. image: {
  27641. source: "./media/characters/vidar/front.svg",
  27642. extra: 2994 / 2795,
  27643. bottom: 56 / 3061
  27644. }
  27645. },
  27646. back: {
  27647. height: math.unit(2.5, "meters"),
  27648. weight: math.unit(200, "kg"),
  27649. name: "Back",
  27650. image: {
  27651. source: "./media/characters/vidar/back.svg",
  27652. extra: 3131 / 2928,
  27653. bottom: 13.5 / 3141.5
  27654. }
  27655. },
  27656. feral: {
  27657. height: math.unit(2.5, "meters"),
  27658. weight: math.unit(2000, "kg"),
  27659. name: "Feral",
  27660. image: {
  27661. source: "./media/characters/vidar/feral.svg",
  27662. extra: 2790 / 1765,
  27663. bottom: 6 / 2796
  27664. }
  27665. },
  27666. },
  27667. [
  27668. {
  27669. name: "Normal",
  27670. height: math.unit(2.5, "meters"),
  27671. default: true
  27672. },
  27673. {
  27674. name: "Macro",
  27675. height: math.unit(100, "meters")
  27676. },
  27677. ]
  27678. ))
  27679. characterMakers.push(() => makeCharacter(
  27680. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27681. {
  27682. front: {
  27683. height: math.unit(5 + 9 / 12, "feet"),
  27684. weight: math.unit(120, "lb"),
  27685. name: "Front",
  27686. image: {
  27687. source: "./media/characters/ash/front.svg",
  27688. extra: 2189 / 1961,
  27689. bottom: 5.2 / 2194
  27690. }
  27691. },
  27692. },
  27693. [
  27694. {
  27695. name: "Normal",
  27696. height: math.unit(5 + 9 / 12, "feet"),
  27697. default: true
  27698. },
  27699. ]
  27700. ))
  27701. characterMakers.push(() => makeCharacter(
  27702. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27703. {
  27704. front: {
  27705. height: math.unit(9, "feet"),
  27706. weight: math.unit(10000, "lb"),
  27707. name: "Front",
  27708. image: {
  27709. source: "./media/characters/gygabite/front.svg",
  27710. bottom: 31.7 / 537.8,
  27711. extra: 505 / 370
  27712. }
  27713. },
  27714. },
  27715. [
  27716. {
  27717. name: "Normal",
  27718. height: math.unit(9, "feet"),
  27719. default: true
  27720. },
  27721. ]
  27722. ))
  27723. characterMakers.push(() => makeCharacter(
  27724. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27725. {
  27726. front: {
  27727. height: math.unit(12, "feet"),
  27728. weight: math.unit(35000, "lb"),
  27729. name: "Front",
  27730. image: {
  27731. source: "./media/characters/p0tat0/front.svg",
  27732. extra: 1065 / 921,
  27733. bottom: 55.7 / 1121.25
  27734. }
  27735. },
  27736. },
  27737. [
  27738. {
  27739. name: "Normal",
  27740. height: math.unit(12, "feet"),
  27741. default: true
  27742. },
  27743. ]
  27744. ))
  27745. characterMakers.push(() => makeCharacter(
  27746. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27747. {
  27748. side: {
  27749. height: math.unit(6.5, "feet"),
  27750. weight: math.unit(800, "lb"),
  27751. name: "Side",
  27752. image: {
  27753. source: "./media/characters/dusk/side.svg",
  27754. extra: 615 / 373,
  27755. bottom: 53 / 664
  27756. }
  27757. },
  27758. sitting: {
  27759. height: math.unit(7, "feet"),
  27760. weight: math.unit(800, "lb"),
  27761. name: "Sitting",
  27762. image: {
  27763. source: "./media/characters/dusk/sitting.svg",
  27764. extra: 753 / 425,
  27765. bottom: 33 / 774
  27766. }
  27767. },
  27768. head: {
  27769. height: math.unit(6.1, "feet"),
  27770. name: "Head",
  27771. image: {
  27772. source: "./media/characters/dusk/head.svg"
  27773. }
  27774. },
  27775. },
  27776. [
  27777. {
  27778. name: "Normal",
  27779. height: math.unit(7, "feet"),
  27780. default: true
  27781. },
  27782. ]
  27783. ))
  27784. characterMakers.push(() => makeCharacter(
  27785. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27786. {
  27787. front: {
  27788. height: math.unit(15, "feet"),
  27789. weight: math.unit(7000, "lb"),
  27790. name: "Front",
  27791. image: {
  27792. source: "./media/characters/jay-direwolf/front.svg",
  27793. extra: 1810 / 1732,
  27794. bottom: 66 / 1892
  27795. }
  27796. },
  27797. },
  27798. [
  27799. {
  27800. name: "Normal",
  27801. height: math.unit(15, "feet"),
  27802. default: true
  27803. },
  27804. ]
  27805. ))
  27806. characterMakers.push(() => makeCharacter(
  27807. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27808. {
  27809. front: {
  27810. height: math.unit(4 + 9 / 12, "feet"),
  27811. weight: math.unit(130, "lb"),
  27812. name: "Front",
  27813. image: {
  27814. source: "./media/characters/anchovie/front.svg",
  27815. extra: 382 / 350,
  27816. bottom: 25 / 409
  27817. }
  27818. },
  27819. back: {
  27820. height: math.unit(4 + 9 / 12, "feet"),
  27821. weight: math.unit(130, "lb"),
  27822. name: "Back",
  27823. image: {
  27824. source: "./media/characters/anchovie/back.svg",
  27825. extra: 385 / 352,
  27826. bottom: 16.6 / 402
  27827. }
  27828. },
  27829. frontDressed: {
  27830. height: math.unit(4 + 9 / 12, "feet"),
  27831. weight: math.unit(130, "lb"),
  27832. name: "Front (Dressed)",
  27833. image: {
  27834. source: "./media/characters/anchovie/front-dressed.svg",
  27835. extra: 382 / 350,
  27836. bottom: 25 / 409
  27837. }
  27838. },
  27839. backDressed: {
  27840. height: math.unit(4 + 9 / 12, "feet"),
  27841. weight: math.unit(130, "lb"),
  27842. name: "Back (Dressed)",
  27843. image: {
  27844. source: "./media/characters/anchovie/back-dressed.svg",
  27845. extra: 385 / 352,
  27846. bottom: 16.6 / 402
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Micro",
  27853. height: math.unit(6.4, "inches")
  27854. },
  27855. {
  27856. name: "Normal",
  27857. height: math.unit(4 + 9 / 12, "feet"),
  27858. default: true
  27859. },
  27860. ]
  27861. ))
  27862. characterMakers.push(() => makeCharacter(
  27863. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27864. {
  27865. front: {
  27866. height: math.unit(2, "meters"),
  27867. weight: math.unit(180, "lb"),
  27868. name: "Front",
  27869. image: {
  27870. source: "./media/characters/acidrenamon/front.svg",
  27871. extra: 987 / 890,
  27872. bottom: 22.8 / 1009
  27873. }
  27874. },
  27875. back: {
  27876. height: math.unit(2, "meters"),
  27877. weight: math.unit(180, "lb"),
  27878. name: "Back",
  27879. image: {
  27880. source: "./media/characters/acidrenamon/back.svg",
  27881. extra: 983 / 891,
  27882. bottom: 8.4 / 992
  27883. }
  27884. },
  27885. head: {
  27886. height: math.unit(1.92, "feet"),
  27887. name: "Head",
  27888. image: {
  27889. source: "./media/characters/acidrenamon/head.svg"
  27890. }
  27891. },
  27892. rump: {
  27893. height: math.unit(1.72, "feet"),
  27894. name: "Rump",
  27895. image: {
  27896. source: "./media/characters/acidrenamon/rump.svg"
  27897. }
  27898. },
  27899. tail: {
  27900. height: math.unit(4.2, "feet"),
  27901. name: "Tail",
  27902. image: {
  27903. source: "./media/characters/acidrenamon/tail.svg"
  27904. }
  27905. },
  27906. },
  27907. [
  27908. {
  27909. name: "Normal",
  27910. height: math.unit(2, "meters"),
  27911. default: true
  27912. },
  27913. {
  27914. name: "Minimacro",
  27915. height: math.unit(7, "meters")
  27916. },
  27917. {
  27918. name: "Macro",
  27919. height: math.unit(200, "meters")
  27920. },
  27921. {
  27922. name: "Gigamacro",
  27923. height: math.unit(0.2, "earths")
  27924. },
  27925. ]
  27926. ))
  27927. characterMakers.push(() => makeCharacter(
  27928. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27929. {
  27930. front: {
  27931. height: math.unit(152, "feet"),
  27932. name: "Front",
  27933. image: {
  27934. source: "./media/characters/kenzie-lee/front.svg",
  27935. extra: 1869/1774,
  27936. bottom: 128/1997
  27937. }
  27938. },
  27939. side: {
  27940. height: math.unit(86, "feet"),
  27941. name: "Side",
  27942. image: {
  27943. source: "./media/characters/kenzie-lee/side.svg",
  27944. extra: 930/815,
  27945. bottom: 177/1107
  27946. }
  27947. },
  27948. paw: {
  27949. height: math.unit(15, "feet"),
  27950. name: "Paw",
  27951. image: {
  27952. source: "./media/characters/kenzie-lee/paw.svg"
  27953. }
  27954. },
  27955. },
  27956. [
  27957. {
  27958. name: "Micro",
  27959. height: math.unit(1.5, "inches")
  27960. },
  27961. {
  27962. name: "Normal",
  27963. height: math.unit(152, "feet"),
  27964. default: true
  27965. },
  27966. {
  27967. name: "Megamacro",
  27968. height: math.unit(7, "miles")
  27969. },
  27970. {
  27971. name: "Gigamacro",
  27972. height: math.unit(8000, "miles")
  27973. },
  27974. ]
  27975. ))
  27976. characterMakers.push(() => makeCharacter(
  27977. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27978. {
  27979. side: {
  27980. height: math.unit(6, "feet"),
  27981. weight: math.unit(150, "lb"),
  27982. name: "Side",
  27983. image: {
  27984. source: "./media/characters/withers/side.svg",
  27985. extra: 1830 / 1728,
  27986. bottom: 96 / 1927
  27987. }
  27988. },
  27989. front: {
  27990. height: math.unit(6, "feet"),
  27991. weight: math.unit(150, "lb"),
  27992. name: "Front",
  27993. image: {
  27994. source: "./media/characters/withers/front.svg",
  27995. extra: 1514 / 1438,
  27996. bottom: 118 / 1632
  27997. }
  27998. },
  27999. },
  28000. [
  28001. {
  28002. name: "Macro",
  28003. height: math.unit(168, "feet"),
  28004. default: true
  28005. },
  28006. {
  28007. name: "Megamacro",
  28008. height: math.unit(15, "miles")
  28009. }
  28010. ]
  28011. ))
  28012. characterMakers.push(() => makeCharacter(
  28013. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28014. {
  28015. front: {
  28016. height: math.unit(6 + 7 / 12, "feet"),
  28017. weight: math.unit(250, "lb"),
  28018. name: "Front",
  28019. image: {
  28020. source: "./media/characters/nemoskii/front.svg",
  28021. extra: 2270 / 1734,
  28022. bottom: 86 / 2354
  28023. }
  28024. },
  28025. back: {
  28026. height: math.unit(6 + 7 / 12, "feet"),
  28027. weight: math.unit(250, "lb"),
  28028. name: "Back",
  28029. image: {
  28030. source: "./media/characters/nemoskii/back.svg",
  28031. extra: 1845 / 1788,
  28032. bottom: 10.5 / 1852
  28033. }
  28034. },
  28035. head: {
  28036. height: math.unit(1.31, "feet"),
  28037. name: "Head",
  28038. image: {
  28039. source: "./media/characters/nemoskii/head.svg"
  28040. }
  28041. },
  28042. },
  28043. [
  28044. {
  28045. name: "Micro",
  28046. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28047. },
  28048. {
  28049. name: "Normal",
  28050. height: math.unit(6 + 7 / 12, "feet"),
  28051. default: true
  28052. },
  28053. {
  28054. name: "Macro",
  28055. height: math.unit((6 + 7 / 12) * 150, "feet")
  28056. },
  28057. {
  28058. name: "Macro+",
  28059. height: math.unit((6 + 7 / 12) * 500, "feet")
  28060. },
  28061. {
  28062. name: "Megamacro",
  28063. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28064. },
  28065. ]
  28066. ))
  28067. characterMakers.push(() => makeCharacter(
  28068. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28069. {
  28070. front: {
  28071. height: math.unit(1, "mile"),
  28072. weight: math.unit(265261.9, "lb"),
  28073. name: "Front",
  28074. image: {
  28075. source: "./media/characters/shui/front.svg",
  28076. extra: 1633 / 1564,
  28077. bottom: 91.5 / 1726
  28078. }
  28079. },
  28080. },
  28081. [
  28082. {
  28083. name: "Macro",
  28084. height: math.unit(1, "mile"),
  28085. default: true
  28086. },
  28087. ]
  28088. ))
  28089. characterMakers.push(() => makeCharacter(
  28090. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28091. {
  28092. front: {
  28093. height: math.unit(12 + 6 / 12, "feet"),
  28094. weight: math.unit(1342, "lb"),
  28095. name: "Front",
  28096. image: {
  28097. source: "./media/characters/arokh-takakura/front.svg",
  28098. extra: 1089 / 1043,
  28099. bottom: 77.4 / 1176.7
  28100. }
  28101. },
  28102. back: {
  28103. height: math.unit(12 + 6 / 12, "feet"),
  28104. weight: math.unit(1342, "lb"),
  28105. name: "Back",
  28106. image: {
  28107. source: "./media/characters/arokh-takakura/back.svg",
  28108. extra: 1046 / 1019,
  28109. bottom: 102 / 1150
  28110. }
  28111. },
  28112. },
  28113. [
  28114. {
  28115. name: "Big",
  28116. height: math.unit(12 + 6 / 12, "feet"),
  28117. default: true
  28118. },
  28119. ]
  28120. ))
  28121. characterMakers.push(() => makeCharacter(
  28122. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28123. {
  28124. front: {
  28125. height: math.unit(5 + 6 / 12, "feet"),
  28126. weight: math.unit(150, "lb"),
  28127. name: "Front",
  28128. image: {
  28129. source: "./media/characters/theo/front.svg",
  28130. extra: 1184 / 1131,
  28131. bottom: 7.4 / 1191
  28132. }
  28133. },
  28134. },
  28135. [
  28136. {
  28137. name: "Micro",
  28138. height: math.unit(5, "inches")
  28139. },
  28140. {
  28141. name: "Normal",
  28142. height: math.unit(5 + 6 / 12, "feet"),
  28143. default: true
  28144. },
  28145. ]
  28146. ))
  28147. characterMakers.push(() => makeCharacter(
  28148. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28149. {
  28150. front: {
  28151. height: math.unit(5 + 9 / 12, "feet"),
  28152. weight: math.unit(130, "lb"),
  28153. name: "Front",
  28154. image: {
  28155. source: "./media/characters/cecelia-swift/front.svg",
  28156. extra: 502 / 484,
  28157. bottom: 23 / 523
  28158. }
  28159. },
  28160. back: {
  28161. height: math.unit(5 + 9 / 12, "feet"),
  28162. weight: math.unit(130, "lb"),
  28163. name: "Back",
  28164. image: {
  28165. source: "./media/characters/cecelia-swift/back.svg",
  28166. extra: 499 / 485,
  28167. bottom: 12 / 511
  28168. }
  28169. },
  28170. head: {
  28171. height: math.unit(0.90, "feet"),
  28172. name: "Head",
  28173. image: {
  28174. source: "./media/characters/cecelia-swift/head.svg"
  28175. }
  28176. },
  28177. rump: {
  28178. height: math.unit(1.75, "feet"),
  28179. name: "Rump",
  28180. image: {
  28181. source: "./media/characters/cecelia-swift/rump.svg"
  28182. }
  28183. },
  28184. },
  28185. [
  28186. {
  28187. name: "Normal",
  28188. height: math.unit(5 + 9 / 12, "feet"),
  28189. default: true
  28190. },
  28191. {
  28192. name: "Big",
  28193. height: math.unit(50, "feet")
  28194. },
  28195. {
  28196. name: "Macro",
  28197. height: math.unit(100, "feet")
  28198. },
  28199. {
  28200. name: "Macro+",
  28201. height: math.unit(500, "feet")
  28202. },
  28203. {
  28204. name: "Macro++",
  28205. height: math.unit(1000, "feet")
  28206. },
  28207. ]
  28208. ))
  28209. characterMakers.push(() => makeCharacter(
  28210. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28211. {
  28212. front: {
  28213. height: math.unit(6, "feet"),
  28214. weight: math.unit(150, "lb"),
  28215. name: "Front",
  28216. image: {
  28217. source: "./media/characters/kaunan/front.svg",
  28218. extra: 2890 / 2523,
  28219. bottom: 49 / 2939
  28220. }
  28221. },
  28222. },
  28223. [
  28224. {
  28225. name: "Macro",
  28226. height: math.unit(150, "feet"),
  28227. default: true
  28228. },
  28229. ]
  28230. ))
  28231. characterMakers.push(() => makeCharacter(
  28232. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28233. {
  28234. front: {
  28235. height: math.unit(175, "cm"),
  28236. weight: math.unit(60, "kg"),
  28237. name: "Front",
  28238. image: {
  28239. source: "./media/characters/fei/front.svg",
  28240. extra: 1873/1723,
  28241. bottom: 53/1926
  28242. }
  28243. },
  28244. },
  28245. [
  28246. {
  28247. name: "Mortal",
  28248. height: math.unit(175, "cm")
  28249. },
  28250. {
  28251. name: "Normal",
  28252. height: math.unit(3500, "m"),
  28253. default: true
  28254. },
  28255. {
  28256. name: "Stroll",
  28257. height: math.unit(17.5, "km")
  28258. },
  28259. {
  28260. name: "Showoff",
  28261. height: math.unit(175, "km")
  28262. },
  28263. ]
  28264. ))
  28265. characterMakers.push(() => makeCharacter(
  28266. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28267. {
  28268. front: {
  28269. height: math.unit(7, "feet"),
  28270. weight: math.unit(1000, "kg"),
  28271. name: "Front",
  28272. image: {
  28273. source: "./media/characters/edrax/front.svg",
  28274. extra: 2838 / 2550,
  28275. bottom: 130 / 2968
  28276. }
  28277. },
  28278. },
  28279. [
  28280. {
  28281. name: "Small",
  28282. height: math.unit(7, "feet")
  28283. },
  28284. {
  28285. name: "Normal",
  28286. height: math.unit(1500, "meters")
  28287. },
  28288. {
  28289. name: "Mega",
  28290. height: math.unit(12000000, "km"),
  28291. default: true
  28292. },
  28293. {
  28294. name: "Megamacro",
  28295. height: math.unit(10600000, "lightyears")
  28296. },
  28297. {
  28298. name: "Hypermacro",
  28299. height: math.unit(256, "yottameters")
  28300. },
  28301. ]
  28302. ))
  28303. characterMakers.push(() => makeCharacter(
  28304. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28305. {
  28306. front: {
  28307. height: math.unit(10, "feet"),
  28308. weight: math.unit(750, "lb"),
  28309. name: "Front",
  28310. image: {
  28311. source: "./media/characters/clove/front.svg",
  28312. extra: 1918/1751,
  28313. bottom: 52/1970
  28314. }
  28315. },
  28316. back: {
  28317. height: math.unit(10, "feet"),
  28318. weight: math.unit(750, "lb"),
  28319. name: "Back",
  28320. image: {
  28321. source: "./media/characters/clove/back.svg",
  28322. extra: 1912/1747,
  28323. bottom: 50/1962
  28324. }
  28325. },
  28326. },
  28327. [
  28328. {
  28329. name: "Normal",
  28330. height: math.unit(10, "feet"),
  28331. default: true
  28332. },
  28333. ]
  28334. ))
  28335. characterMakers.push(() => makeCharacter(
  28336. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28337. {
  28338. front: {
  28339. height: math.unit(4, "feet"),
  28340. weight: math.unit(50, "lb"),
  28341. name: "Front",
  28342. image: {
  28343. source: "./media/characters/alex-rabbit/front.svg",
  28344. extra: 507 / 458,
  28345. bottom: 18.5 / 527
  28346. }
  28347. },
  28348. back: {
  28349. height: math.unit(4, "feet"),
  28350. weight: math.unit(50, "lb"),
  28351. name: "Back",
  28352. image: {
  28353. source: "./media/characters/alex-rabbit/back.svg",
  28354. extra: 502 / 460,
  28355. bottom: 18.9 / 521
  28356. }
  28357. },
  28358. },
  28359. [
  28360. {
  28361. name: "Normal",
  28362. height: math.unit(4, "feet"),
  28363. default: true
  28364. },
  28365. ]
  28366. ))
  28367. characterMakers.push(() => makeCharacter(
  28368. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28369. {
  28370. front: {
  28371. height: math.unit(1 + 3 / 12, "feet"),
  28372. weight: math.unit(80, "lb"),
  28373. name: "Front",
  28374. image: {
  28375. source: "./media/characters/zander-rose/front.svg",
  28376. extra: 916 / 797,
  28377. bottom: 17 / 933
  28378. }
  28379. },
  28380. back: {
  28381. height: math.unit(1 + 3 / 12, "feet"),
  28382. weight: math.unit(80, "lb"),
  28383. name: "Back",
  28384. image: {
  28385. source: "./media/characters/zander-rose/back.svg",
  28386. extra: 903 / 779,
  28387. bottom: 31 / 934
  28388. }
  28389. },
  28390. },
  28391. [
  28392. {
  28393. name: "Normal",
  28394. height: math.unit(1 + 3 / 12, "feet"),
  28395. default: true
  28396. },
  28397. ]
  28398. ))
  28399. characterMakers.push(() => makeCharacter(
  28400. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28401. {
  28402. anthro: {
  28403. height: math.unit(6, "feet"),
  28404. weight: math.unit(150, "lb"),
  28405. name: "Anthro",
  28406. image: {
  28407. source: "./media/characters/razz/anthro.svg",
  28408. extra: 1437 / 1343,
  28409. bottom: 48 / 1485
  28410. }
  28411. },
  28412. feral: {
  28413. height: math.unit(6, "feet"),
  28414. weight: math.unit(150, "lb"),
  28415. name: "Feral",
  28416. image: {
  28417. source: "./media/characters/razz/feral.svg",
  28418. extra: 2569 / 1385,
  28419. bottom: 95 / 2664
  28420. }
  28421. },
  28422. },
  28423. [
  28424. {
  28425. name: "Normal",
  28426. height: math.unit(6, "feet"),
  28427. default: true
  28428. },
  28429. ]
  28430. ))
  28431. characterMakers.push(() => makeCharacter(
  28432. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28433. {
  28434. front: {
  28435. height: math.unit(9 + 4 / 12, "feet"),
  28436. weight: math.unit(500, "lb"),
  28437. name: "Front",
  28438. image: {
  28439. source: "./media/characters/morrigan/front.svg",
  28440. extra: 2707 / 2579,
  28441. bottom: 156 / 2863
  28442. }
  28443. },
  28444. },
  28445. [
  28446. {
  28447. name: "Normal",
  28448. height: math.unit(9 + 4 / 12, "feet"),
  28449. default: true
  28450. },
  28451. ]
  28452. ))
  28453. characterMakers.push(() => makeCharacter(
  28454. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28455. {
  28456. front: {
  28457. height: math.unit(5, "stories"),
  28458. weight: math.unit(4000, "lb"),
  28459. name: "Front",
  28460. image: {
  28461. source: "./media/characters/jenene/front.svg",
  28462. extra: 1780 / 1710,
  28463. bottom: 57 / 1837
  28464. }
  28465. },
  28466. },
  28467. [
  28468. {
  28469. name: "Normal",
  28470. height: math.unit(5, "stories"),
  28471. default: true
  28472. },
  28473. ]
  28474. ))
  28475. characterMakers.push(() => makeCharacter(
  28476. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28477. {
  28478. taurSfw: {
  28479. height: math.unit(10, "meters"),
  28480. weight: math.unit(17500, "kg"),
  28481. name: "Taur",
  28482. image: {
  28483. source: "./media/characters/faey/taur-sfw.svg",
  28484. extra: 1200 / 968,
  28485. bottom: 41 / 1241
  28486. }
  28487. },
  28488. chestmaw: {
  28489. height: math.unit(2.01, "meters"),
  28490. name: "Chestmaw",
  28491. image: {
  28492. source: "./media/characters/faey/chestmaw.svg"
  28493. }
  28494. },
  28495. foot: {
  28496. height: math.unit(2.43, "meters"),
  28497. name: "Foot",
  28498. image: {
  28499. source: "./media/characters/faey/foot.svg"
  28500. }
  28501. },
  28502. jaws: {
  28503. height: math.unit(1.66, "meters"),
  28504. name: "Jaws",
  28505. image: {
  28506. source: "./media/characters/faey/jaws.svg"
  28507. }
  28508. },
  28509. tongues: {
  28510. height: math.unit(2.01, "meters"),
  28511. name: "Tongues",
  28512. image: {
  28513. source: "./media/characters/faey/tongues.svg"
  28514. }
  28515. },
  28516. },
  28517. [
  28518. {
  28519. name: "Small",
  28520. height: math.unit(10, "meters"),
  28521. default: true
  28522. },
  28523. {
  28524. name: "Big",
  28525. height: math.unit(500000, "km")
  28526. },
  28527. ]
  28528. ))
  28529. characterMakers.push(() => makeCharacter(
  28530. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28531. {
  28532. front: {
  28533. height: math.unit(7, "feet"),
  28534. weight: math.unit(275, "lb"),
  28535. name: "Front",
  28536. image: {
  28537. source: "./media/characters/roku/front.svg",
  28538. extra: 903 / 878,
  28539. bottom: 37 / 940
  28540. }
  28541. },
  28542. },
  28543. [
  28544. {
  28545. name: "Normal",
  28546. height: math.unit(7, "feet"),
  28547. default: true
  28548. },
  28549. {
  28550. name: "Macro",
  28551. height: math.unit(500, "feet")
  28552. },
  28553. {
  28554. name: "Megamacro",
  28555. height: math.unit(200, "miles")
  28556. },
  28557. ]
  28558. ))
  28559. characterMakers.push(() => makeCharacter(
  28560. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28561. {
  28562. front: {
  28563. height: math.unit(6 + 2 / 12, "feet"),
  28564. weight: math.unit(150, "lb"),
  28565. name: "Front",
  28566. image: {
  28567. source: "./media/characters/lira/front.svg",
  28568. extra: 1727 / 1605,
  28569. bottom: 26 / 1753
  28570. }
  28571. },
  28572. back: {
  28573. height: math.unit(6 + 2 / 12, "feet"),
  28574. weight: math.unit(150, "lb"),
  28575. name: "Back",
  28576. image: {
  28577. source: "./media/characters/lira/back.svg",
  28578. extra: 1713/1621,
  28579. bottom: 20/1733
  28580. }
  28581. },
  28582. hand: {
  28583. height: math.unit(0.75, "feet"),
  28584. name: "Hand",
  28585. image: {
  28586. source: "./media/characters/lira/hand.svg"
  28587. }
  28588. },
  28589. maw: {
  28590. height: math.unit(0.65, "feet"),
  28591. name: "Maw",
  28592. image: {
  28593. source: "./media/characters/lira/maw.svg"
  28594. }
  28595. },
  28596. pawDigi: {
  28597. height: math.unit(1.6, "feet"),
  28598. name: "Paw Digi",
  28599. image: {
  28600. source: "./media/characters/lira/paw-digi.svg"
  28601. }
  28602. },
  28603. pawPlanti: {
  28604. height: math.unit(1.4, "feet"),
  28605. name: "Paw Planti",
  28606. image: {
  28607. source: "./media/characters/lira/paw-planti.svg"
  28608. }
  28609. },
  28610. },
  28611. [
  28612. {
  28613. name: "Normal",
  28614. height: math.unit(6 + 2 / 12, "feet"),
  28615. default: true
  28616. },
  28617. {
  28618. name: "Macro",
  28619. height: math.unit(100, "feet")
  28620. },
  28621. {
  28622. name: "Macro²",
  28623. height: math.unit(1600, "feet")
  28624. },
  28625. {
  28626. name: "Planetary",
  28627. height: math.unit(20, "earths")
  28628. },
  28629. ]
  28630. ))
  28631. characterMakers.push(() => makeCharacter(
  28632. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28633. {
  28634. front: {
  28635. height: math.unit(6, "feet"),
  28636. weight: math.unit(150, "lb"),
  28637. name: "Front",
  28638. image: {
  28639. source: "./media/characters/hadjet/front.svg",
  28640. extra: 1480 / 1346,
  28641. bottom: 26 / 1506
  28642. }
  28643. },
  28644. frontNsfw: {
  28645. height: math.unit(6, "feet"),
  28646. weight: math.unit(150, "lb"),
  28647. name: "Front (NSFW)",
  28648. image: {
  28649. source: "./media/characters/hadjet/front-nsfw.svg",
  28650. extra: 1440 / 1358,
  28651. bottom: 52 / 1492
  28652. }
  28653. },
  28654. },
  28655. [
  28656. {
  28657. name: "Macro",
  28658. height: math.unit(10, "stories"),
  28659. default: true
  28660. },
  28661. {
  28662. name: "Megamacro",
  28663. height: math.unit(1.5, "miles")
  28664. },
  28665. {
  28666. name: "Megamacro+",
  28667. height: math.unit(5, "miles")
  28668. },
  28669. ]
  28670. ))
  28671. characterMakers.push(() => makeCharacter(
  28672. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28673. {
  28674. side: {
  28675. height: math.unit(106, "feet"),
  28676. weight: math.unit(500, "tonnes"),
  28677. name: "Side",
  28678. image: {
  28679. source: "./media/characters/kodran/side.svg",
  28680. extra: 553 / 480,
  28681. bottom: 33 / 586
  28682. }
  28683. },
  28684. front: {
  28685. height: math.unit(132, "feet"),
  28686. weight: math.unit(500, "tonnes"),
  28687. name: "Front",
  28688. image: {
  28689. source: "./media/characters/kodran/front.svg",
  28690. extra: 667 / 643,
  28691. bottom: 42 / 709
  28692. }
  28693. },
  28694. flying: {
  28695. height: math.unit(350, "feet"),
  28696. weight: math.unit(500, "tonnes"),
  28697. name: "Flying",
  28698. image: {
  28699. source: "./media/characters/kodran/flying.svg"
  28700. }
  28701. },
  28702. foot: {
  28703. height: math.unit(33, "feet"),
  28704. name: "Foot",
  28705. image: {
  28706. source: "./media/characters/kodran/foot.svg"
  28707. }
  28708. },
  28709. footFront: {
  28710. height: math.unit(19, "feet"),
  28711. name: "Foot (Front)",
  28712. image: {
  28713. source: "./media/characters/kodran/foot-front.svg",
  28714. extra: 261 / 261,
  28715. bottom: 91 / 352
  28716. }
  28717. },
  28718. headFront: {
  28719. height: math.unit(53, "feet"),
  28720. name: "Head (Front)",
  28721. image: {
  28722. source: "./media/characters/kodran/head-front.svg"
  28723. }
  28724. },
  28725. headSide: {
  28726. height: math.unit(65, "feet"),
  28727. name: "Head (Side)",
  28728. image: {
  28729. source: "./media/characters/kodran/head-side.svg"
  28730. }
  28731. },
  28732. throat: {
  28733. height: math.unit(79, "feet"),
  28734. name: "Throat",
  28735. image: {
  28736. source: "./media/characters/kodran/throat.svg"
  28737. }
  28738. },
  28739. },
  28740. [
  28741. {
  28742. name: "Large",
  28743. height: math.unit(106, "feet"),
  28744. default: true
  28745. },
  28746. ]
  28747. ))
  28748. characterMakers.push(() => makeCharacter(
  28749. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28750. {
  28751. side: {
  28752. height: math.unit(11, "feet"),
  28753. weight: math.unit(150, "lb"),
  28754. name: "Side",
  28755. image: {
  28756. source: "./media/characters/pyxaron/side.svg",
  28757. extra: 305 / 195,
  28758. bottom: 17 / 322
  28759. }
  28760. },
  28761. },
  28762. [
  28763. {
  28764. name: "Normal",
  28765. height: math.unit(11, "feet"),
  28766. default: true
  28767. },
  28768. ]
  28769. ))
  28770. characterMakers.push(() => makeCharacter(
  28771. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28772. {
  28773. front: {
  28774. height: math.unit(6, "feet"),
  28775. weight: math.unit(150, "lb"),
  28776. name: "Front",
  28777. image: {
  28778. source: "./media/characters/meep/front.svg",
  28779. extra: 88 / 80,
  28780. bottom: 6 / 94
  28781. }
  28782. },
  28783. },
  28784. [
  28785. {
  28786. name: "Fun Sized",
  28787. height: math.unit(2, "inches"),
  28788. default: true
  28789. },
  28790. {
  28791. name: "Friend Sized",
  28792. height: math.unit(8, "inches")
  28793. },
  28794. ]
  28795. ))
  28796. characterMakers.push(() => makeCharacter(
  28797. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28798. {
  28799. front: {
  28800. height: math.unit(15, "feet"),
  28801. weight: math.unit(2500, "lb"),
  28802. name: "Front",
  28803. image: {
  28804. source: "./media/characters/holly-rabbit/front.svg",
  28805. extra: 1433 / 1233,
  28806. bottom: 125 / 1558
  28807. }
  28808. },
  28809. dick: {
  28810. height: math.unit(4.6, "feet"),
  28811. name: "Dick",
  28812. image: {
  28813. source: "./media/characters/holly-rabbit/dick.svg"
  28814. }
  28815. },
  28816. },
  28817. [
  28818. {
  28819. name: "Normal",
  28820. height: math.unit(15, "feet"),
  28821. default: true
  28822. },
  28823. {
  28824. name: "Macro",
  28825. height: math.unit(250, "feet")
  28826. },
  28827. {
  28828. name: "Macro+",
  28829. height: math.unit(2500, "feet")
  28830. },
  28831. ]
  28832. ))
  28833. characterMakers.push(() => makeCharacter(
  28834. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28835. {
  28836. front: {
  28837. height: math.unit(3.02, "meters"),
  28838. weight: math.unit(500, "kg"),
  28839. name: "Front",
  28840. image: {
  28841. source: "./media/characters/drena/front.svg",
  28842. extra: 282 / 243,
  28843. bottom: 8 / 290
  28844. }
  28845. },
  28846. side: {
  28847. height: math.unit(3.02, "meters"),
  28848. weight: math.unit(500, "kg"),
  28849. name: "Side",
  28850. image: {
  28851. source: "./media/characters/drena/side.svg",
  28852. extra: 280 / 245,
  28853. bottom: 10 / 290
  28854. }
  28855. },
  28856. back: {
  28857. height: math.unit(3.02, "meters"),
  28858. weight: math.unit(500, "kg"),
  28859. name: "Back",
  28860. image: {
  28861. source: "./media/characters/drena/back.svg",
  28862. extra: 278 / 243,
  28863. bottom: 2 / 280
  28864. }
  28865. },
  28866. foot: {
  28867. height: math.unit(0.75, "meters"),
  28868. name: "Foot",
  28869. image: {
  28870. source: "./media/characters/drena/foot.svg"
  28871. }
  28872. },
  28873. maw: {
  28874. height: math.unit(0.82, "meters"),
  28875. name: "Maw",
  28876. image: {
  28877. source: "./media/characters/drena/maw.svg"
  28878. }
  28879. },
  28880. rump: {
  28881. height: math.unit(0.93, "meters"),
  28882. name: "Rump",
  28883. image: {
  28884. source: "./media/characters/drena/rump.svg"
  28885. }
  28886. },
  28887. },
  28888. [
  28889. {
  28890. name: "Normal",
  28891. height: math.unit(3.02, "meters"),
  28892. default: true
  28893. },
  28894. ]
  28895. ))
  28896. characterMakers.push(() => makeCharacter(
  28897. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28898. {
  28899. front: {
  28900. height: math.unit(6 + 4 / 12, "feet"),
  28901. weight: math.unit(250, "lb"),
  28902. name: "Front",
  28903. image: {
  28904. source: "./media/characters/remmyzilla/front.svg",
  28905. extra: 4033 / 3588,
  28906. bottom: 123 / 4156
  28907. }
  28908. },
  28909. back: {
  28910. height: math.unit(6 + 4 / 12, "feet"),
  28911. weight: math.unit(250, "lb"),
  28912. name: "Back",
  28913. image: {
  28914. source: "./media/characters/remmyzilla/back.svg",
  28915. extra: 2687 / 2555,
  28916. bottom: 48 / 2735
  28917. }
  28918. },
  28919. paw: {
  28920. height: math.unit(1.73, "feet"),
  28921. name: "Paw",
  28922. image: {
  28923. source: "./media/characters/remmyzilla/paw.svg"
  28924. }
  28925. },
  28926. maw: {
  28927. height: math.unit(1.73, "feet"),
  28928. name: "Maw",
  28929. image: {
  28930. source: "./media/characters/remmyzilla/maw.svg"
  28931. }
  28932. },
  28933. },
  28934. [
  28935. {
  28936. name: "Normal",
  28937. height: math.unit(6 + 4 / 12, "feet")
  28938. },
  28939. {
  28940. name: "Minimacro",
  28941. height: math.unit(12 + 8 / 12, "feet")
  28942. },
  28943. {
  28944. name: "Normal",
  28945. height: math.unit(640, "feet"),
  28946. default: true
  28947. },
  28948. {
  28949. name: "Megamacro",
  28950. height: math.unit(6400, "feet")
  28951. },
  28952. {
  28953. name: "Gigamacro",
  28954. height: math.unit(64000, "miles")
  28955. },
  28956. ]
  28957. ))
  28958. characterMakers.push(() => makeCharacter(
  28959. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28960. {
  28961. front: {
  28962. height: math.unit(2.5, "meters"),
  28963. weight: math.unit(300, "lb"),
  28964. name: "Front",
  28965. image: {
  28966. source: "./media/characters/lawrence/front.svg",
  28967. extra: 357 / 335,
  28968. bottom: 30 / 387
  28969. }
  28970. },
  28971. back: {
  28972. height: math.unit(2.5, "meters"),
  28973. weight: math.unit(300, "lb"),
  28974. name: "Back",
  28975. image: {
  28976. source: "./media/characters/lawrence/back.svg",
  28977. extra: 357 / 338,
  28978. bottom: 16 / 373
  28979. }
  28980. },
  28981. head: {
  28982. height: math.unit(0.9, "meter"),
  28983. name: "Head",
  28984. image: {
  28985. source: "./media/characters/lawrence/head.svg"
  28986. }
  28987. },
  28988. maw: {
  28989. height: math.unit(0.7, "meter"),
  28990. name: "Maw",
  28991. image: {
  28992. source: "./media/characters/lawrence/maw.svg"
  28993. }
  28994. },
  28995. footBottom: {
  28996. height: math.unit(0.5, "meter"),
  28997. name: "Foot (Bottom)",
  28998. image: {
  28999. source: "./media/characters/lawrence/foot-bottom.svg"
  29000. }
  29001. },
  29002. footTop: {
  29003. height: math.unit(0.5, "meter"),
  29004. name: "Foot (Top)",
  29005. image: {
  29006. source: "./media/characters/lawrence/foot-top.svg"
  29007. }
  29008. },
  29009. },
  29010. [
  29011. {
  29012. name: "Normal",
  29013. height: math.unit(2.5, "meters"),
  29014. default: true
  29015. },
  29016. {
  29017. name: "Macro",
  29018. height: math.unit(95, "meters")
  29019. },
  29020. {
  29021. name: "Megamacro",
  29022. height: math.unit(150, "km")
  29023. },
  29024. ]
  29025. ))
  29026. characterMakers.push(() => makeCharacter(
  29027. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29028. {
  29029. front: {
  29030. height: math.unit(4.2, "meters"),
  29031. name: "Front",
  29032. image: {
  29033. source: "./media/characters/sydney/front.svg",
  29034. extra: 1323 / 1277,
  29035. bottom: 111 / 1434
  29036. }
  29037. },
  29038. },
  29039. [
  29040. {
  29041. name: "Normal",
  29042. height: math.unit(4.2, "meters"),
  29043. default: true
  29044. },
  29045. ]
  29046. ))
  29047. characterMakers.push(() => makeCharacter(
  29048. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29049. {
  29050. back: {
  29051. height: math.unit(201, "feet"),
  29052. name: "Back",
  29053. image: {
  29054. source: "./media/characters/jessica/back.svg",
  29055. extra: 273 / 259,
  29056. bottom: 7 / 280
  29057. }
  29058. },
  29059. },
  29060. [
  29061. {
  29062. name: "Normal",
  29063. height: math.unit(201, "feet"),
  29064. default: true
  29065. },
  29066. {
  29067. name: "Megamacro",
  29068. height: math.unit(8, "miles")
  29069. },
  29070. ]
  29071. ))
  29072. characterMakers.push(() => makeCharacter(
  29073. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29074. {
  29075. side: {
  29076. height: math.unit(5.6, "m"),
  29077. weight: math.unit(8000, "kg"),
  29078. name: "Side",
  29079. image: {
  29080. source: "./media/characters/victoria/side.svg",
  29081. extra: 1542/1229,
  29082. bottom: 124/1666
  29083. }
  29084. },
  29085. maw: {
  29086. height: math.unit(7.14, "feet"),
  29087. name: "Maw",
  29088. image: {
  29089. source: "./media/characters/victoria/maw.svg"
  29090. }
  29091. },
  29092. },
  29093. [
  29094. {
  29095. name: "Normal",
  29096. height: math.unit(5.6, "m"),
  29097. default: true
  29098. },
  29099. ]
  29100. ))
  29101. characterMakers.push(() => makeCharacter(
  29102. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29103. {
  29104. front: {
  29105. height: math.unit(5 + 6 / 12, "feet"),
  29106. name: "Front",
  29107. image: {
  29108. source: "./media/characters/cat/front.svg",
  29109. extra: 1449/1295,
  29110. bottom: 34/1483
  29111. },
  29112. form: "cat",
  29113. default: true
  29114. },
  29115. back: {
  29116. height: math.unit(5 + 6 / 12, "feet"),
  29117. name: "Back",
  29118. image: {
  29119. source: "./media/characters/cat/back.svg",
  29120. extra: 1466/1301,
  29121. bottom: 19/1485
  29122. },
  29123. form: "cat"
  29124. },
  29125. taur: {
  29126. height: math.unit(7, "feet"),
  29127. name: "Taur",
  29128. image: {
  29129. source: "./media/characters/cat/taur.svg",
  29130. extra: 1389/1233,
  29131. bottom: 83/1472
  29132. },
  29133. form: "taur",
  29134. default: true
  29135. },
  29136. lucarioFront: {
  29137. height: math.unit(4, "feet"),
  29138. name: "Lucario (Front)",
  29139. image: {
  29140. source: "./media/characters/cat/lucario-front.svg",
  29141. extra: 1149/1019,
  29142. bottom: 84/1233
  29143. },
  29144. form: "lucario",
  29145. default: true
  29146. },
  29147. lucarioBack: {
  29148. height: math.unit(4, "feet"),
  29149. name: "Lucario (Back)",
  29150. image: {
  29151. source: "./media/characters/cat/lucario-back.svg",
  29152. extra: 1190/1059,
  29153. bottom: 33/1223
  29154. },
  29155. form: "lucario"
  29156. },
  29157. megaLucario: {
  29158. height: math.unit(4, "feet"),
  29159. name: "Mega Lucario",
  29160. image: {
  29161. source: "./media/characters/cat/mega-lucario.svg",
  29162. extra: 1515 / 1319,
  29163. bottom: 63 / 1578
  29164. },
  29165. form: "lucario"
  29166. },
  29167. nickit: {
  29168. height: math.unit(2, "feet"),
  29169. name: "Nickit",
  29170. image: {
  29171. source: "./media/characters/cat/nickit.svg",
  29172. extra: 1980 / 1585,
  29173. bottom: 102 / 2082
  29174. },
  29175. form: "nickit",
  29176. default: true
  29177. },
  29178. lopunnyFront: {
  29179. height: math.unit(5, "feet"),
  29180. name: "Lopunny (Front)",
  29181. image: {
  29182. source: "./media/characters/cat/lopunny-front.svg",
  29183. extra: 1782 / 1469,
  29184. bottom: 38 / 1820
  29185. },
  29186. form: "lopunny",
  29187. default: true
  29188. },
  29189. lopunnyBack: {
  29190. height: math.unit(5, "feet"),
  29191. name: "Lopunny (Back)",
  29192. image: {
  29193. source: "./media/characters/cat/lopunny-back.svg",
  29194. extra: 1660 / 1490,
  29195. bottom: 25 / 1685
  29196. },
  29197. form: "lopunny"
  29198. },
  29199. },
  29200. [
  29201. {
  29202. name: "Really small",
  29203. height: math.unit(1, "nm")
  29204. },
  29205. {
  29206. name: "Micro",
  29207. height: math.unit(5, "inches")
  29208. },
  29209. {
  29210. name: "Normal",
  29211. height: math.unit(5 + 6 / 12, "feet"),
  29212. default: true
  29213. },
  29214. {
  29215. name: "Macro",
  29216. height: math.unit(50, "feet")
  29217. },
  29218. {
  29219. name: "Macro+",
  29220. height: math.unit(150, "feet")
  29221. },
  29222. {
  29223. name: "Megamacro",
  29224. height: math.unit(100, "miles")
  29225. },
  29226. ]
  29227. ))
  29228. characterMakers.push(() => makeCharacter(
  29229. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29230. {
  29231. front: {
  29232. height: math.unit(63.4, "meters"),
  29233. weight: math.unit(3.28349e+6, "kilograms"),
  29234. name: "Front",
  29235. image: {
  29236. source: "./media/characters/kirina-violet/front.svg",
  29237. extra: 2812 / 2725,
  29238. bottom: 0 / 2812
  29239. }
  29240. },
  29241. back: {
  29242. height: math.unit(63.4, "meters"),
  29243. weight: math.unit(3.28349e+6, "kilograms"),
  29244. name: "Back",
  29245. image: {
  29246. source: "./media/characters/kirina-violet/back.svg",
  29247. extra: 2812 / 2725,
  29248. bottom: 0 / 2812
  29249. }
  29250. },
  29251. mouth: {
  29252. height: math.unit(4.35, "meters"),
  29253. name: "Mouth",
  29254. image: {
  29255. source: "./media/characters/kirina-violet/mouth.svg"
  29256. }
  29257. },
  29258. paw: {
  29259. height: math.unit(5.6, "meters"),
  29260. name: "Paw",
  29261. image: {
  29262. source: "./media/characters/kirina-violet/paw.svg"
  29263. }
  29264. },
  29265. tail: {
  29266. height: math.unit(18, "meters"),
  29267. name: "Tail",
  29268. image: {
  29269. source: "./media/characters/kirina-violet/tail.svg"
  29270. }
  29271. },
  29272. },
  29273. [
  29274. {
  29275. name: "Macro",
  29276. height: math.unit(63.4, "meters"),
  29277. default: true
  29278. },
  29279. ]
  29280. ))
  29281. characterMakers.push(() => makeCharacter(
  29282. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29283. {
  29284. front: {
  29285. height: math.unit(75, "feet"),
  29286. name: "Front",
  29287. image: {
  29288. source: "./media/characters/cat-gigachu/front.svg",
  29289. extra: 1239/1027,
  29290. bottom: 32/1271
  29291. }
  29292. },
  29293. back: {
  29294. height: math.unit(75, "feet"),
  29295. name: "Back",
  29296. image: {
  29297. source: "./media/characters/cat-gigachu/back.svg",
  29298. extra: 1229/1030,
  29299. bottom: 9/1238
  29300. }
  29301. },
  29302. },
  29303. [
  29304. {
  29305. name: "Dynamax",
  29306. height: math.unit(75, "feet"),
  29307. default: true
  29308. },
  29309. ]
  29310. ))
  29311. characterMakers.push(() => makeCharacter(
  29312. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29313. {
  29314. front: {
  29315. height: math.unit(6, "feet"),
  29316. weight: math.unit(150, "lb"),
  29317. name: "Front",
  29318. image: {
  29319. source: "./media/characters/sfaiyan/front.svg",
  29320. extra: 999 / 978,
  29321. bottom: 5 / 1004
  29322. }
  29323. },
  29324. },
  29325. [
  29326. {
  29327. name: "Normal",
  29328. height: math.unit(1.82, "meters")
  29329. },
  29330. {
  29331. name: "Giant",
  29332. height: math.unit(2.27, "km"),
  29333. default: true
  29334. },
  29335. ]
  29336. ))
  29337. characterMakers.push(() => makeCharacter(
  29338. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29339. {
  29340. front: {
  29341. height: math.unit(179, "cm"),
  29342. weight: math.unit(100, "kg"),
  29343. name: "Front",
  29344. image: {
  29345. source: "./media/characters/raunehkeli/front.svg",
  29346. extra: 1934 / 1926,
  29347. bottom: 0 / 1934
  29348. }
  29349. },
  29350. },
  29351. [
  29352. {
  29353. name: "Normal",
  29354. height: math.unit(179, "cm")
  29355. },
  29356. {
  29357. name: "Maximum",
  29358. height: math.unit(575, "meters"),
  29359. default: true
  29360. },
  29361. ]
  29362. ))
  29363. characterMakers.push(() => makeCharacter(
  29364. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29365. {
  29366. front: {
  29367. height: math.unit(6, "feet"),
  29368. weight: math.unit(150, "lb"),
  29369. name: "Front",
  29370. image: {
  29371. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29372. extra: 2625 / 2518,
  29373. bottom: 60 / 2685
  29374. }
  29375. },
  29376. },
  29377. [
  29378. {
  29379. name: "Normal",
  29380. height: math.unit(6 + 2 / 12, "feet")
  29381. },
  29382. {
  29383. name: "Macro",
  29384. height: math.unit(1180, "feet"),
  29385. default: true
  29386. },
  29387. ]
  29388. ))
  29389. characterMakers.push(() => makeCharacter(
  29390. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29391. {
  29392. front: {
  29393. height: math.unit(5 + 6 / 12, "feet"),
  29394. weight: math.unit(108, "lb"),
  29395. name: "Front",
  29396. image: {
  29397. source: "./media/characters/lilith-zott/front.svg",
  29398. extra: 2510 / 2238,
  29399. bottom: 100 / 2610
  29400. }
  29401. },
  29402. frontDressed: {
  29403. height: math.unit(5 + 6 / 12, "feet"),
  29404. weight: math.unit(108, "lb"),
  29405. name: "Front (Dressed)",
  29406. image: {
  29407. source: "./media/characters/lilith-zott/front-dressed.svg",
  29408. extra: 2510 / 2238,
  29409. bottom: 100 / 2610
  29410. }
  29411. },
  29412. },
  29413. [
  29414. {
  29415. name: "Normal",
  29416. height: math.unit(5 + 6 / 12, "feet")
  29417. },
  29418. {
  29419. name: "Macro",
  29420. height: math.unit(1030, "feet"),
  29421. default: true
  29422. },
  29423. ]
  29424. ))
  29425. characterMakers.push(() => makeCharacter(
  29426. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29427. {
  29428. front: {
  29429. height: math.unit(6, "feet"),
  29430. weight: math.unit(150, "lb"),
  29431. name: "Front",
  29432. image: {
  29433. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29434. extra: 2567 / 2435,
  29435. bottom: 39 / 2606
  29436. }
  29437. },
  29438. frontSuper: {
  29439. height: math.unit(6, "feet"),
  29440. name: "Front (Super)",
  29441. image: {
  29442. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29443. extra: 2567 / 2435,
  29444. bottom: 39 / 2606
  29445. }
  29446. },
  29447. },
  29448. [
  29449. {
  29450. name: "Normal",
  29451. height: math.unit(5 + 10 / 12, "feet")
  29452. },
  29453. {
  29454. name: "Macro",
  29455. height: math.unit(1100, "feet"),
  29456. default: true
  29457. },
  29458. ]
  29459. ))
  29460. characterMakers.push(() => makeCharacter(
  29461. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29462. {
  29463. front: {
  29464. height: math.unit(100, "miles"),
  29465. name: "Front",
  29466. image: {
  29467. source: "./media/characters/sona/front.svg",
  29468. extra: 2433 / 2201,
  29469. bottom: 53 / 2486
  29470. }
  29471. },
  29472. foot: {
  29473. height: math.unit(16.1, "miles"),
  29474. name: "Foot",
  29475. image: {
  29476. source: "./media/characters/sona/foot.svg"
  29477. }
  29478. },
  29479. },
  29480. [
  29481. {
  29482. name: "Macro",
  29483. height: math.unit(100, "miles"),
  29484. default: true
  29485. },
  29486. ]
  29487. ))
  29488. characterMakers.push(() => makeCharacter(
  29489. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29490. {
  29491. front: {
  29492. height: math.unit(6, "feet"),
  29493. weight: math.unit(150, "lb"),
  29494. name: "Front",
  29495. image: {
  29496. source: "./media/characters/bailey/front.svg",
  29497. extra: 1778 / 1724,
  29498. bottom: 30 / 1808
  29499. }
  29500. },
  29501. },
  29502. [
  29503. {
  29504. name: "Micro",
  29505. height: math.unit(4, "inches")
  29506. },
  29507. {
  29508. name: "Normal",
  29509. height: math.unit(5 + 5 / 12, "feet"),
  29510. default: true
  29511. },
  29512. {
  29513. name: "Macro",
  29514. height: math.unit(250, "feet")
  29515. },
  29516. {
  29517. name: "Megamacro",
  29518. height: math.unit(100, "miles")
  29519. },
  29520. ]
  29521. ))
  29522. characterMakers.push(() => makeCharacter(
  29523. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29524. {
  29525. front: {
  29526. height: math.unit(5 + 2 / 12, "feet"),
  29527. weight: math.unit(120, "lb"),
  29528. name: "Front",
  29529. image: {
  29530. source: "./media/characters/snaps/front.svg",
  29531. extra: 2370 / 2177,
  29532. bottom: 48 / 2418
  29533. }
  29534. },
  29535. back: {
  29536. height: math.unit(5 + 2 / 12, "feet"),
  29537. weight: math.unit(120, "lb"),
  29538. name: "Back",
  29539. image: {
  29540. source: "./media/characters/snaps/back.svg",
  29541. extra: 2408 / 2258,
  29542. bottom: 15 / 2423
  29543. }
  29544. },
  29545. },
  29546. [
  29547. {
  29548. name: "Micro",
  29549. height: math.unit(9, "inches")
  29550. },
  29551. {
  29552. name: "Normal",
  29553. height: math.unit(5 + 2 / 12, "feet"),
  29554. default: true
  29555. },
  29556. {
  29557. name: "Mini Macro",
  29558. height: math.unit(10, "feet")
  29559. },
  29560. ]
  29561. ))
  29562. characterMakers.push(() => makeCharacter(
  29563. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29564. {
  29565. front: {
  29566. height: math.unit(1.8, "meters"),
  29567. weight: math.unit(85, "kg"),
  29568. name: "Front",
  29569. image: {
  29570. source: "./media/characters/azteck/front.svg",
  29571. extra: 2815 / 2625,
  29572. bottom: 89 / 2904
  29573. }
  29574. },
  29575. back: {
  29576. height: math.unit(1.8, "meters"),
  29577. weight: math.unit(85, "kg"),
  29578. name: "Back",
  29579. image: {
  29580. source: "./media/characters/azteck/back.svg",
  29581. extra: 2856 / 2648,
  29582. bottom: 85 / 2941
  29583. }
  29584. },
  29585. frontDressed: {
  29586. height: math.unit(1.8, "meters"),
  29587. weight: math.unit(85, "kg"),
  29588. name: "Front (Dressed)",
  29589. image: {
  29590. source: "./media/characters/azteck/front-dressed.svg",
  29591. extra: 2147 / 2003,
  29592. bottom: 68 / 2215
  29593. }
  29594. },
  29595. head: {
  29596. height: math.unit(0.47, "meters"),
  29597. weight: math.unit(85, "kg"),
  29598. name: "Head",
  29599. image: {
  29600. source: "./media/characters/azteck/head.svg"
  29601. }
  29602. },
  29603. },
  29604. [
  29605. {
  29606. name: "Bite sized",
  29607. height: math.unit(16, "cm")
  29608. },
  29609. {
  29610. name: "Normal",
  29611. height: math.unit(1.8, "meters"),
  29612. default: true
  29613. },
  29614. ]
  29615. ))
  29616. characterMakers.push(() => makeCharacter(
  29617. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29618. {
  29619. front: {
  29620. height: math.unit(6, "feet"),
  29621. weight: math.unit(150, "lb"),
  29622. name: "Front",
  29623. image: {
  29624. source: "./media/characters/pidge/front.svg",
  29625. extra: 620 / 588,
  29626. bottom: 9 / 629
  29627. }
  29628. },
  29629. back: {
  29630. height: math.unit(6, "feet"),
  29631. weight: math.unit(150, "lb"),
  29632. name: "Back",
  29633. image: {
  29634. source: "./media/characters/pidge/back.svg",
  29635. extra: 620 / 588,
  29636. bottom: 9 / 629
  29637. }
  29638. },
  29639. },
  29640. [
  29641. {
  29642. name: "Macro",
  29643. height: math.unit(1, "mile"),
  29644. default: true
  29645. },
  29646. ]
  29647. ))
  29648. characterMakers.push(() => makeCharacter(
  29649. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29650. {
  29651. front: {
  29652. height: math.unit(6, "feet"),
  29653. weight: math.unit(150, "lb"),
  29654. name: "Front",
  29655. image: {
  29656. source: "./media/characters/en/front.svg",
  29657. extra: 1697 / 1563,
  29658. bottom: 103 / 1800
  29659. }
  29660. },
  29661. back: {
  29662. height: math.unit(6, "feet"),
  29663. weight: math.unit(150, "lb"),
  29664. name: "Back",
  29665. image: {
  29666. source: "./media/characters/en/back.svg",
  29667. extra: 1700 / 1570,
  29668. bottom: 51 / 1751
  29669. }
  29670. },
  29671. frontDressed: {
  29672. height: math.unit(6, "feet"),
  29673. weight: math.unit(150, "lb"),
  29674. name: "Front (Dressed)",
  29675. image: {
  29676. source: "./media/characters/en/front-dressed.svg",
  29677. extra: 1697 / 1563,
  29678. bottom: 103 / 1800
  29679. }
  29680. },
  29681. backDressed: {
  29682. height: math.unit(6, "feet"),
  29683. weight: math.unit(150, "lb"),
  29684. name: "Back (Dressed)",
  29685. image: {
  29686. source: "./media/characters/en/back-dressed.svg",
  29687. extra: 1700 / 1570,
  29688. bottom: 51 / 1751
  29689. }
  29690. },
  29691. },
  29692. [
  29693. {
  29694. name: "Macro",
  29695. height: math.unit(210, "feet"),
  29696. default: true
  29697. },
  29698. ]
  29699. ))
  29700. characterMakers.push(() => makeCharacter(
  29701. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29702. {
  29703. front: {
  29704. height: math.unit(6, "feet"),
  29705. weight: math.unit(150, "lb"),
  29706. name: "Front",
  29707. image: {
  29708. source: "./media/characters/haze-orris/front.svg",
  29709. extra: 3975 / 3525,
  29710. bottom: 137 / 4112
  29711. }
  29712. },
  29713. },
  29714. [
  29715. {
  29716. name: "Micro",
  29717. height: math.unit(150, "mm"),
  29718. default: true
  29719. },
  29720. ]
  29721. ))
  29722. characterMakers.push(() => makeCharacter(
  29723. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29724. {
  29725. front: {
  29726. height: math.unit(6, "feet"),
  29727. weight: math.unit(150, "lb"),
  29728. name: "Front",
  29729. image: {
  29730. source: "./media/characters/casselene-yaro/front.svg",
  29731. extra: 4721 / 4541,
  29732. bottom: 82 / 4803
  29733. }
  29734. },
  29735. back: {
  29736. height: math.unit(6, "feet"),
  29737. weight: math.unit(150, "lb"),
  29738. name: "Back",
  29739. image: {
  29740. source: "./media/characters/casselene-yaro/back.svg",
  29741. extra: 4569 / 4377,
  29742. bottom: 69 / 4638
  29743. }
  29744. },
  29745. frontDressed: {
  29746. height: math.unit(6, "feet"),
  29747. weight: math.unit(150, "lb"),
  29748. name: "Front-dressed",
  29749. image: {
  29750. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29751. extra: 4721 / 4541,
  29752. bottom: 82 / 4803
  29753. }
  29754. },
  29755. },
  29756. [
  29757. {
  29758. name: "Macro",
  29759. height: math.unit(190, "feet"),
  29760. default: true
  29761. },
  29762. ]
  29763. ))
  29764. characterMakers.push(() => makeCharacter(
  29765. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29766. {
  29767. front: {
  29768. height: math.unit(6, "feet"),
  29769. weight: math.unit(150, "lb"),
  29770. name: "Front",
  29771. image: {
  29772. source: "./media/characters/myra-rue-delore/front.svg",
  29773. extra: 1340 / 1308,
  29774. bottom: 67 / 1407
  29775. }
  29776. },
  29777. back: {
  29778. height: math.unit(6, "feet"),
  29779. weight: math.unit(150, "lb"),
  29780. name: "Back",
  29781. image: {
  29782. source: "./media/characters/myra-rue-delore/back.svg",
  29783. extra: 1341 / 1310,
  29784. bottom: 40 / 1381
  29785. }
  29786. },
  29787. frontDressed: {
  29788. height: math.unit(6, "feet"),
  29789. weight: math.unit(150, "lb"),
  29790. name: "Front (Dressed)",
  29791. image: {
  29792. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29793. extra: 1340 / 1308,
  29794. bottom: 67 / 1407
  29795. }
  29796. },
  29797. },
  29798. [
  29799. {
  29800. name: "Macro",
  29801. height: math.unit(150, "feet"),
  29802. default: true
  29803. },
  29804. ]
  29805. ))
  29806. characterMakers.push(() => makeCharacter(
  29807. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29808. {
  29809. front: {
  29810. height: math.unit(10, "feet"),
  29811. weight: math.unit(15015, "lb"),
  29812. name: "Front",
  29813. image: {
  29814. source: "./media/characters/fem!plat/front.svg",
  29815. extra: 2799 / 2604,
  29816. bottom: 149 / 2948
  29817. }
  29818. },
  29819. },
  29820. [
  29821. {
  29822. name: "Normal",
  29823. height: math.unit(10, "feet"),
  29824. default: true
  29825. },
  29826. {
  29827. name: "Macro",
  29828. height: math.unit(100, "feet")
  29829. },
  29830. {
  29831. name: "Megamacro",
  29832. height: math.unit(1000, "feet")
  29833. },
  29834. ]
  29835. ))
  29836. characterMakers.push(() => makeCharacter(
  29837. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29838. {
  29839. front: {
  29840. height: math.unit(15 + 5 / 12, "feet"),
  29841. weight: math.unit(4600, "lb"),
  29842. name: "Front",
  29843. image: {
  29844. source: "./media/characters/neapolitan-ananassa/front.svg",
  29845. extra: 2903 / 2736,
  29846. bottom: 0 / 2903
  29847. }
  29848. },
  29849. side: {
  29850. height: math.unit(15 + 5 / 12, "feet"),
  29851. weight: math.unit(4600, "lb"),
  29852. name: "Side",
  29853. image: {
  29854. source: "./media/characters/neapolitan-ananassa/side.svg",
  29855. extra: 2925 / 2719,
  29856. bottom: 0 / 2925
  29857. }
  29858. },
  29859. back: {
  29860. height: math.unit(15 + 5 / 12, "feet"),
  29861. weight: math.unit(4600, "lb"),
  29862. name: "Back",
  29863. image: {
  29864. source: "./media/characters/neapolitan-ananassa/back.svg",
  29865. extra: 2903 / 2736,
  29866. bottom: 0 / 2903
  29867. }
  29868. },
  29869. },
  29870. [
  29871. {
  29872. name: "Normal",
  29873. height: math.unit(15 + 5 / 12, "feet"),
  29874. default: true
  29875. },
  29876. {
  29877. name: "Post-Millenium",
  29878. height: math.unit(35 + 5 / 12, "feet")
  29879. },
  29880. {
  29881. name: "Post-Era",
  29882. height: math.unit(450 + 5 / 12, "feet")
  29883. },
  29884. ]
  29885. ))
  29886. characterMakers.push(() => makeCharacter(
  29887. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29888. {
  29889. front: {
  29890. height: math.unit(300, "meters"),
  29891. weight: math.unit(125000, "tonnes"),
  29892. name: "Front",
  29893. image: {
  29894. source: "./media/characters/pazuzu/front.svg",
  29895. extra: 877 / 794,
  29896. bottom: 47 / 924
  29897. }
  29898. },
  29899. },
  29900. [
  29901. {
  29902. name: "Macro",
  29903. height: math.unit(300, "meters"),
  29904. default: true
  29905. },
  29906. ]
  29907. ))
  29908. characterMakers.push(() => makeCharacter(
  29909. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29910. {
  29911. side: {
  29912. height: math.unit(10 + 7 / 12, "feet"),
  29913. weight: math.unit(2.5, "tons"),
  29914. name: "Side",
  29915. image: {
  29916. source: "./media/characters/aasha/side.svg",
  29917. extra: 1345 / 1245,
  29918. bottom: 111 / 1456
  29919. }
  29920. },
  29921. back: {
  29922. height: math.unit(10 + 7 / 12, "feet"),
  29923. weight: math.unit(2.5, "tons"),
  29924. name: "Back",
  29925. image: {
  29926. source: "./media/characters/aasha/back.svg",
  29927. extra: 1133 / 1057,
  29928. bottom: 257 / 1390
  29929. }
  29930. },
  29931. },
  29932. [
  29933. {
  29934. name: "Normal",
  29935. height: math.unit(10 + 7 / 12, "feet"),
  29936. default: true
  29937. },
  29938. ]
  29939. ))
  29940. characterMakers.push(() => makeCharacter(
  29941. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29942. {
  29943. front: {
  29944. height: math.unit(6 + 3 / 12, "feet"),
  29945. name: "Front",
  29946. image: {
  29947. source: "./media/characters/nevan/front.svg",
  29948. extra: 704 / 704,
  29949. bottom: 28 / 732
  29950. }
  29951. },
  29952. back: {
  29953. height: math.unit(6 + 3 / 12, "feet"),
  29954. name: "Back",
  29955. image: {
  29956. source: "./media/characters/nevan/back.svg",
  29957. extra: 714 / 714,
  29958. bottom: 21 / 735
  29959. }
  29960. },
  29961. frontFlaccid: {
  29962. height: math.unit(6 + 3 / 12, "feet"),
  29963. name: "Front (Flaccid)",
  29964. image: {
  29965. source: "./media/characters/nevan/front-flaccid.svg",
  29966. extra: 704 / 704,
  29967. bottom: 28 / 732
  29968. }
  29969. },
  29970. frontErect: {
  29971. height: math.unit(6 + 3 / 12, "feet"),
  29972. name: "Front (Erect)",
  29973. image: {
  29974. source: "./media/characters/nevan/front-erect.svg",
  29975. extra: 704 / 704,
  29976. bottom: 28 / 732
  29977. }
  29978. },
  29979. backFlaccid: {
  29980. height: math.unit(6 + 3 / 12, "feet"),
  29981. name: "Back (Flaccid)",
  29982. image: {
  29983. source: "./media/characters/nevan/back-flaccid.svg",
  29984. extra: 714 / 714,
  29985. bottom: 21 / 735
  29986. }
  29987. },
  29988. },
  29989. [
  29990. {
  29991. name: "Normal",
  29992. height: math.unit(6 + 3 / 12, "feet"),
  29993. default: true
  29994. },
  29995. ]
  29996. ))
  29997. characterMakers.push(() => makeCharacter(
  29998. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29999. {
  30000. front: {
  30001. height: math.unit(4, "feet"),
  30002. name: "Front",
  30003. image: {
  30004. source: "./media/characters/arhan/front.svg",
  30005. extra: 3368 / 3133,
  30006. bottom: 0 / 3368
  30007. }
  30008. },
  30009. side: {
  30010. height: math.unit(4, "feet"),
  30011. name: "Side",
  30012. image: {
  30013. source: "./media/characters/arhan/side.svg",
  30014. extra: 3347 / 3105,
  30015. bottom: 0 / 3347
  30016. }
  30017. },
  30018. tongue: {
  30019. height: math.unit(1.42, "feet"),
  30020. name: "Tongue",
  30021. image: {
  30022. source: "./media/characters/arhan/tongue.svg"
  30023. }
  30024. },
  30025. head: {
  30026. height: math.unit(0.85, "feet"),
  30027. name: "Head",
  30028. image: {
  30029. source: "./media/characters/arhan/head.svg"
  30030. }
  30031. },
  30032. },
  30033. [
  30034. {
  30035. name: "Normal",
  30036. height: math.unit(4, "feet"),
  30037. default: true
  30038. },
  30039. ]
  30040. ))
  30041. characterMakers.push(() => makeCharacter(
  30042. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30043. {
  30044. front: {
  30045. height: math.unit(5 + 7.5 / 12, "feet"),
  30046. weight: math.unit(120, "lb"),
  30047. name: "Front",
  30048. image: {
  30049. source: "./media/characters/digi-duncan/front.svg",
  30050. extra: 330 / 326,
  30051. bottom: 16 / 346
  30052. }
  30053. },
  30054. side: {
  30055. height: math.unit(5 + 7.5 / 12, "feet"),
  30056. weight: math.unit(120, "lb"),
  30057. name: "Side",
  30058. image: {
  30059. source: "./media/characters/digi-duncan/side.svg",
  30060. extra: 341 / 337,
  30061. bottom: 1 / 342
  30062. }
  30063. },
  30064. back: {
  30065. height: math.unit(5 + 7.5 / 12, "feet"),
  30066. weight: math.unit(120, "lb"),
  30067. name: "Back",
  30068. image: {
  30069. source: "./media/characters/digi-duncan/back.svg",
  30070. extra: 330 / 326,
  30071. bottom: 12 / 342
  30072. }
  30073. },
  30074. },
  30075. [
  30076. {
  30077. name: "Speck",
  30078. height: math.unit(0.25, "mm")
  30079. },
  30080. {
  30081. name: "Micro",
  30082. height: math.unit(5, "mm")
  30083. },
  30084. {
  30085. name: "Tiny",
  30086. height: math.unit(0.5, "inches"),
  30087. default: true
  30088. },
  30089. {
  30090. name: "Human",
  30091. height: math.unit(5 + 7.5 / 12, "feet")
  30092. },
  30093. {
  30094. name: "Minigiant",
  30095. height: math.unit(8 + 5.25, "feet")
  30096. },
  30097. {
  30098. name: "Giant",
  30099. height: math.unit(2000, "feet")
  30100. },
  30101. {
  30102. name: "Mega",
  30103. height: math.unit(371.1, "miles")
  30104. },
  30105. ]
  30106. ))
  30107. characterMakers.push(() => makeCharacter(
  30108. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30109. {
  30110. front: {
  30111. height: math.unit(2, "meters"),
  30112. weight: math.unit(350, "kg"),
  30113. name: "Front",
  30114. image: {
  30115. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30116. extra: 898 / 838,
  30117. bottom: 9 / 907
  30118. }
  30119. },
  30120. },
  30121. [
  30122. {
  30123. name: "Micro",
  30124. height: math.unit(8, "meters")
  30125. },
  30126. {
  30127. name: "Normal",
  30128. height: math.unit(50, "meters"),
  30129. default: true
  30130. },
  30131. {
  30132. name: "Macro",
  30133. height: math.unit(500, "meters")
  30134. },
  30135. ]
  30136. ))
  30137. characterMakers.push(() => makeCharacter(
  30138. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30139. {
  30140. front: {
  30141. height: math.unit(6 + 6 / 12, "feet"),
  30142. name: "Front",
  30143. image: {
  30144. source: "./media/characters/khardesh/front.svg",
  30145. extra: 1788/1596,
  30146. bottom: 66/1854
  30147. }
  30148. },
  30149. back: {
  30150. height: math.unit(6 + 6 / 12, "feet"),
  30151. name: "Back",
  30152. image: {
  30153. source: "./media/characters/khardesh/back.svg",
  30154. extra: 1781/1584,
  30155. bottom: 68/1849
  30156. }
  30157. },
  30158. },
  30159. [
  30160. {
  30161. name: "Normal",
  30162. height: math.unit(6 + 6 / 12, "feet"),
  30163. default: true
  30164. },
  30165. {
  30166. name: "Normal+",
  30167. height: math.unit(4, "meters")
  30168. },
  30169. {
  30170. name: "Macro",
  30171. height: math.unit(50, "meters")
  30172. },
  30173. {
  30174. name: "Macro+",
  30175. height: math.unit(100, "meters")
  30176. },
  30177. {
  30178. name: "Megamacro",
  30179. height: math.unit(20, "km")
  30180. },
  30181. ]
  30182. ))
  30183. characterMakers.push(() => makeCharacter(
  30184. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30185. {
  30186. front: {
  30187. height: math.unit(6, "feet"),
  30188. weight: math.unit(150, "lb"),
  30189. name: "Front",
  30190. image: {
  30191. source: "./media/characters/kosho/front.svg",
  30192. extra: 1847 / 1847,
  30193. bottom: 86 / 1933
  30194. }
  30195. },
  30196. },
  30197. [
  30198. {
  30199. name: "Second-stage micro",
  30200. height: math.unit(0.5, "inches")
  30201. },
  30202. {
  30203. name: "First-stage micro",
  30204. height: math.unit(6, "inches")
  30205. },
  30206. {
  30207. name: "Normal",
  30208. height: math.unit(6, "feet"),
  30209. default: true
  30210. },
  30211. {
  30212. name: "First-stage macro",
  30213. height: math.unit(72, "feet")
  30214. },
  30215. {
  30216. name: "Second-stage macro",
  30217. height: math.unit(864, "feet")
  30218. },
  30219. ]
  30220. ))
  30221. characterMakers.push(() => makeCharacter(
  30222. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30223. {
  30224. normal: {
  30225. height: math.unit(4 + 6 / 12, "feet"),
  30226. name: "Normal",
  30227. image: {
  30228. source: "./media/characters/hydra/normal.svg",
  30229. extra: 2833 / 2634,
  30230. bottom: 68 / 2901
  30231. }
  30232. },
  30233. smol: {
  30234. height: math.unit(0.705, "inches"),
  30235. name: "Smol",
  30236. image: {
  30237. source: "./media/characters/hydra/smol.svg",
  30238. extra: 2715 / 2540,
  30239. bottom: 0 / 2715
  30240. }
  30241. },
  30242. },
  30243. [
  30244. {
  30245. name: "Normal",
  30246. height: math.unit(4 + 6 / 12, "feet"),
  30247. default: true
  30248. }
  30249. ]
  30250. ))
  30251. characterMakers.push(() => makeCharacter(
  30252. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30253. {
  30254. front: {
  30255. height: math.unit(0.6, "cm"),
  30256. name: "Front",
  30257. image: {
  30258. source: "./media/characters/daz/front.svg",
  30259. extra: 1682 / 1164,
  30260. bottom: 42 / 1724
  30261. }
  30262. },
  30263. },
  30264. [
  30265. {
  30266. name: "Normal",
  30267. height: math.unit(0.6, "cm"),
  30268. default: true
  30269. },
  30270. ]
  30271. ))
  30272. characterMakers.push(() => makeCharacter(
  30273. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30274. {
  30275. front: {
  30276. height: math.unit(6, "feet"),
  30277. weight: math.unit(235, "lb"),
  30278. name: "Front",
  30279. image: {
  30280. source: "./media/characters/theo-pangolin/front.svg",
  30281. extra: 1996 / 1969,
  30282. bottom: 115 / 2111
  30283. }
  30284. },
  30285. back: {
  30286. height: math.unit(6, "feet"),
  30287. weight: math.unit(235, "lb"),
  30288. name: "Back",
  30289. image: {
  30290. source: "./media/characters/theo-pangolin/back.svg",
  30291. extra: 1979 / 1979,
  30292. bottom: 40 / 2019
  30293. }
  30294. },
  30295. feral: {
  30296. height: math.unit(2, "feet"),
  30297. weight: math.unit(30, "lb"),
  30298. name: "Feral",
  30299. image: {
  30300. source: "./media/characters/theo-pangolin/feral.svg",
  30301. extra: 803 / 791,
  30302. bottom: 181 / 984
  30303. }
  30304. },
  30305. footFive: {
  30306. height: math.unit(1.43, "feet"),
  30307. name: "Foot (Five Toes)",
  30308. image: {
  30309. source: "./media/characters/theo-pangolin/foot-five.svg"
  30310. }
  30311. },
  30312. footFour: {
  30313. height: math.unit(1.43, "feet"),
  30314. name: "Foot (Four Toes)",
  30315. image: {
  30316. source: "./media/characters/theo-pangolin/foot-four.svg"
  30317. }
  30318. },
  30319. handFour: {
  30320. height: math.unit(0.81, "feet"),
  30321. name: "Hand (Four Fingers)",
  30322. image: {
  30323. source: "./media/characters/theo-pangolin/hand-four.svg"
  30324. }
  30325. },
  30326. handThree: {
  30327. height: math.unit(0.81, "feet"),
  30328. name: "Hand (Three Fingers)",
  30329. image: {
  30330. source: "./media/characters/theo-pangolin/hand-three.svg"
  30331. }
  30332. },
  30333. headFront: {
  30334. height: math.unit(1.37, "feet"),
  30335. name: "Head (Front)",
  30336. image: {
  30337. source: "./media/characters/theo-pangolin/head-front.svg"
  30338. }
  30339. },
  30340. headSide: {
  30341. height: math.unit(1.43, "feet"),
  30342. name: "Head (Side)",
  30343. image: {
  30344. source: "./media/characters/theo-pangolin/head-side.svg"
  30345. }
  30346. },
  30347. tongue: {
  30348. height: math.unit(2.29, "feet"),
  30349. name: "Tongue",
  30350. image: {
  30351. source: "./media/characters/theo-pangolin/tongue.svg"
  30352. }
  30353. },
  30354. },
  30355. [
  30356. {
  30357. name: "Normal",
  30358. height: math.unit(6, "feet")
  30359. },
  30360. {
  30361. name: "Macro",
  30362. height: math.unit(400, "feet"),
  30363. default: true
  30364. },
  30365. ]
  30366. ))
  30367. characterMakers.push(() => makeCharacter(
  30368. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30369. {
  30370. front: {
  30371. height: math.unit(6, "inches"),
  30372. weight: math.unit(0.036, "kg"),
  30373. name: "Front",
  30374. image: {
  30375. source: "./media/characters/renée/front.svg",
  30376. extra: 900 / 886,
  30377. bottom: 8 / 908
  30378. }
  30379. },
  30380. },
  30381. [
  30382. {
  30383. name: "Nano",
  30384. height: math.unit(1, "nm")
  30385. },
  30386. {
  30387. name: "Micro",
  30388. height: math.unit(1, "mm")
  30389. },
  30390. {
  30391. name: "Normal",
  30392. height: math.unit(6, "inches")
  30393. },
  30394. {
  30395. name: "Macro",
  30396. height: math.unit(2000, "feet"),
  30397. default: true
  30398. },
  30399. {
  30400. name: "Megamacro",
  30401. height: math.unit(2, "km")
  30402. },
  30403. {
  30404. name: "Gigamacro",
  30405. height: math.unit(2000, "km")
  30406. },
  30407. {
  30408. name: "Teramacro",
  30409. height: math.unit(250000, "km")
  30410. },
  30411. ]
  30412. ))
  30413. characterMakers.push(() => makeCharacter(
  30414. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30415. {
  30416. front: {
  30417. height: math.unit(4, "meters"),
  30418. weight: math.unit(150, "kg"),
  30419. name: "Front",
  30420. image: {
  30421. source: "./media/characters/caledvwlch/front.svg",
  30422. extra: 1760 / 1551,
  30423. bottom: 28 / 1788
  30424. }
  30425. },
  30426. side: {
  30427. height: math.unit(4, "meters"),
  30428. weight: math.unit(150, "kg"),
  30429. name: "Side",
  30430. image: {
  30431. source: "./media/characters/caledvwlch/side.svg",
  30432. extra: 1605 / 1536,
  30433. bottom: 31 / 1636
  30434. }
  30435. },
  30436. back: {
  30437. height: math.unit(4, "meters"),
  30438. weight: math.unit(150, "kg"),
  30439. name: "Back",
  30440. image: {
  30441. source: "./media/characters/caledvwlch/back.svg",
  30442. extra: 1635 / 1565,
  30443. bottom: 27 / 1662
  30444. }
  30445. },
  30446. },
  30447. [
  30448. {
  30449. name: "\"Incognito\"",
  30450. height: math.unit(4, "meters")
  30451. },
  30452. {
  30453. name: "Small rampage",
  30454. height: math.unit(600, "meters")
  30455. },
  30456. {
  30457. name: "Mega",
  30458. height: math.unit(30, "km")
  30459. },
  30460. {
  30461. name: "Home-size",
  30462. height: math.unit(50, "km"),
  30463. default: true
  30464. },
  30465. {
  30466. name: "Giga",
  30467. height: math.unit(300, "km")
  30468. },
  30469. {
  30470. name: "Lounging",
  30471. height: math.unit(11000, "km")
  30472. },
  30473. {
  30474. name: "Planet snacking",
  30475. height: math.unit(2000000, "km")
  30476. },
  30477. ]
  30478. ))
  30479. characterMakers.push(() => makeCharacter(
  30480. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30481. {
  30482. front: {
  30483. height: math.unit(6, "feet"),
  30484. weight: math.unit(215, "lb"),
  30485. name: "Front",
  30486. image: {
  30487. source: "./media/characters/sapphire-svell/front.svg",
  30488. extra: 495 / 455,
  30489. bottom: 20 / 515
  30490. }
  30491. },
  30492. back: {
  30493. height: math.unit(6, "feet"),
  30494. weight: math.unit(216, "lb"),
  30495. name: "Back",
  30496. image: {
  30497. source: "./media/characters/sapphire-svell/back.svg",
  30498. extra: 497 / 477,
  30499. bottom: 7 / 504
  30500. }
  30501. },
  30502. maw: {
  30503. height: math.unit(1.57, "feet"),
  30504. name: "Maw",
  30505. image: {
  30506. source: "./media/characters/sapphire-svell/maw.svg"
  30507. }
  30508. },
  30509. foot: {
  30510. height: math.unit(1.07, "feet"),
  30511. name: "Foot",
  30512. image: {
  30513. source: "./media/characters/sapphire-svell/foot.svg"
  30514. }
  30515. },
  30516. toering: {
  30517. height: math.unit(1.7, "inch"),
  30518. name: "Toering",
  30519. image: {
  30520. source: "./media/characters/sapphire-svell/toering.svg"
  30521. }
  30522. },
  30523. },
  30524. [
  30525. {
  30526. name: "Normal",
  30527. height: math.unit(300, "feet"),
  30528. default: true
  30529. },
  30530. {
  30531. name: "Augmented",
  30532. height: math.unit(1250, "feet")
  30533. },
  30534. {
  30535. name: "Unleashed",
  30536. height: math.unit(3000, "feet")
  30537. },
  30538. ]
  30539. ))
  30540. characterMakers.push(() => makeCharacter(
  30541. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30542. {
  30543. side: {
  30544. height: math.unit(2 + 3 / 12, "feet"),
  30545. weight: math.unit(110, "lb"),
  30546. name: "Side",
  30547. image: {
  30548. source: "./media/characters/glitch-flux/side.svg",
  30549. extra: 997 / 805,
  30550. bottom: 20 / 1017
  30551. }
  30552. },
  30553. },
  30554. [
  30555. {
  30556. name: "Normal",
  30557. height: math.unit(2 + 3 / 12, "feet"),
  30558. default: true
  30559. },
  30560. ]
  30561. ))
  30562. characterMakers.push(() => makeCharacter(
  30563. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30564. {
  30565. front: {
  30566. height: math.unit(4, "meters"),
  30567. name: "Front",
  30568. image: {
  30569. source: "./media/characters/mid/front.svg",
  30570. extra: 507 / 476,
  30571. bottom: 17 / 524
  30572. }
  30573. },
  30574. back: {
  30575. height: math.unit(4, "meters"),
  30576. name: "Back",
  30577. image: {
  30578. source: "./media/characters/mid/back.svg",
  30579. extra: 519 / 487,
  30580. bottom: 7 / 526
  30581. }
  30582. },
  30583. stuck: {
  30584. height: math.unit(2.2, "meters"),
  30585. name: "Stuck",
  30586. image: {
  30587. source: "./media/characters/mid/stuck.svg",
  30588. extra: 1951 / 1869,
  30589. bottom: 88 / 2039
  30590. }
  30591. }
  30592. },
  30593. [
  30594. {
  30595. name: "Normal",
  30596. height: math.unit(4, "meters"),
  30597. default: true
  30598. },
  30599. {
  30600. name: "Big",
  30601. height: math.unit(10, "meters")
  30602. },
  30603. {
  30604. name: "Macro",
  30605. height: math.unit(800, "meters")
  30606. },
  30607. {
  30608. name: "Megamacro",
  30609. height: math.unit(100, "km")
  30610. },
  30611. {
  30612. name: "Overgrown",
  30613. height: math.unit(1, "parsec")
  30614. },
  30615. ]
  30616. ))
  30617. characterMakers.push(() => makeCharacter(
  30618. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30619. {
  30620. front: {
  30621. height: math.unit(2.5, "meters"),
  30622. weight: math.unit(225, "kg"),
  30623. name: "Front",
  30624. image: {
  30625. source: "./media/characters/iris/front.svg",
  30626. extra: 3348 / 3251,
  30627. bottom: 205 / 3553
  30628. }
  30629. },
  30630. maw: {
  30631. height: math.unit(0.56, "meter"),
  30632. name: "Maw",
  30633. image: {
  30634. source: "./media/characters/iris/maw.svg"
  30635. }
  30636. },
  30637. },
  30638. [
  30639. {
  30640. name: "Mewter cat",
  30641. height: math.unit(1.2, "meters")
  30642. },
  30643. {
  30644. name: "Minimacro",
  30645. height: math.unit(2.5, "meters"),
  30646. default: true
  30647. },
  30648. {
  30649. name: "Macro",
  30650. height: math.unit(180, "meters")
  30651. },
  30652. {
  30653. name: "Megamacro",
  30654. height: math.unit(2746, "meters")
  30655. },
  30656. ]
  30657. ))
  30658. characterMakers.push(() => makeCharacter(
  30659. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30660. {
  30661. front: {
  30662. height: math.unit(6, "feet"),
  30663. weight: math.unit(135, "lb"),
  30664. name: "Front",
  30665. image: {
  30666. source: "./media/characters/axel/front.svg",
  30667. extra: 908 / 908,
  30668. bottom: 58 / 966
  30669. }
  30670. },
  30671. side: {
  30672. height: math.unit(6, "feet"),
  30673. weight: math.unit(135, "lb"),
  30674. name: "Side",
  30675. image: {
  30676. source: "./media/characters/axel/side.svg",
  30677. extra: 958 / 958,
  30678. bottom: 11 / 969
  30679. }
  30680. },
  30681. back: {
  30682. height: math.unit(6, "feet"),
  30683. weight: math.unit(135, "lb"),
  30684. name: "Back",
  30685. image: {
  30686. source: "./media/characters/axel/back.svg",
  30687. extra: 887 / 887,
  30688. bottom: 34 / 921
  30689. }
  30690. },
  30691. head: {
  30692. height: math.unit(1.07, "feet"),
  30693. name: "Head",
  30694. image: {
  30695. source: "./media/characters/axel/head.svg"
  30696. }
  30697. },
  30698. beak: {
  30699. height: math.unit(1.4, "feet"),
  30700. name: "Beak",
  30701. image: {
  30702. source: "./media/characters/axel/beak.svg"
  30703. }
  30704. },
  30705. beakSide: {
  30706. height: math.unit(1.4, "feet"),
  30707. name: "Beak Side",
  30708. image: {
  30709. source: "./media/characters/axel/beak-side.svg"
  30710. }
  30711. },
  30712. sheath: {
  30713. height: math.unit(0.5, "feet"),
  30714. name: "Sheath",
  30715. image: {
  30716. source: "./media/characters/axel/sheath.svg"
  30717. }
  30718. },
  30719. dick: {
  30720. height: math.unit(0.98, "feet"),
  30721. name: "Dick",
  30722. image: {
  30723. source: "./media/characters/axel/dick.svg"
  30724. }
  30725. },
  30726. },
  30727. [
  30728. {
  30729. name: "Macro",
  30730. height: math.unit(68, "meters"),
  30731. default: true
  30732. },
  30733. ]
  30734. ))
  30735. characterMakers.push(() => makeCharacter(
  30736. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30737. {
  30738. front: {
  30739. height: math.unit(3.5, "meters"),
  30740. weight: math.unit(1200, "kg"),
  30741. name: "Front",
  30742. image: {
  30743. source: "./media/characters/joanna/front.svg",
  30744. extra: 1596 / 1488,
  30745. bottom: 29 / 1625
  30746. }
  30747. },
  30748. back: {
  30749. height: math.unit(3.5, "meters"),
  30750. weight: math.unit(1200, "kg"),
  30751. name: "Back",
  30752. image: {
  30753. source: "./media/characters/joanna/back.svg",
  30754. extra: 1594 / 1495,
  30755. bottom: 26 / 1620
  30756. }
  30757. },
  30758. frontShorts: {
  30759. height: math.unit(3.5, "meters"),
  30760. weight: math.unit(1200, "kg"),
  30761. name: "Front (Shorts)",
  30762. image: {
  30763. source: "./media/characters/joanna/front-shorts.svg",
  30764. extra: 1596 / 1488,
  30765. bottom: 29 / 1625
  30766. }
  30767. },
  30768. frontBiker: {
  30769. height: math.unit(3.5, "meters"),
  30770. weight: math.unit(1200, "kg"),
  30771. name: "Front (Biker)",
  30772. image: {
  30773. source: "./media/characters/joanna/front-biker.svg",
  30774. extra: 1596 / 1488,
  30775. bottom: 29 / 1625
  30776. }
  30777. },
  30778. backBiker: {
  30779. height: math.unit(3.5, "meters"),
  30780. weight: math.unit(1200, "kg"),
  30781. name: "Back (Biker)",
  30782. image: {
  30783. source: "./media/characters/joanna/back-biker.svg",
  30784. extra: 1594 / 1495,
  30785. bottom: 88 / 1682
  30786. }
  30787. },
  30788. bikeLeft: {
  30789. height: math.unit(2.4, "meters"),
  30790. weight: math.unit(1600, "kg"),
  30791. name: "Bike (Left)",
  30792. image: {
  30793. source: "./media/characters/joanna/bike-left.svg",
  30794. extra: 720 / 720,
  30795. bottom: 8 / 728
  30796. }
  30797. },
  30798. bikeRight: {
  30799. height: math.unit(2.4, "meters"),
  30800. weight: math.unit(1600, "kg"),
  30801. name: "Bike (Right)",
  30802. image: {
  30803. source: "./media/characters/joanna/bike-right.svg",
  30804. extra: 720 / 720,
  30805. bottom: 8 / 728
  30806. }
  30807. },
  30808. },
  30809. [
  30810. {
  30811. name: "Incognito",
  30812. height: math.unit(3.5, "meters")
  30813. },
  30814. {
  30815. name: "Casual Big",
  30816. height: math.unit(200, "meters")
  30817. },
  30818. {
  30819. name: "Macro",
  30820. height: math.unit(600, "meters")
  30821. },
  30822. {
  30823. name: "Original",
  30824. height: math.unit(20, "km"),
  30825. default: true
  30826. },
  30827. {
  30828. name: "Giga",
  30829. height: math.unit(400, "km")
  30830. },
  30831. {
  30832. name: "Lounging",
  30833. height: math.unit(1500, "km")
  30834. },
  30835. {
  30836. name: "Planetary",
  30837. height: math.unit(200000, "km")
  30838. },
  30839. ]
  30840. ))
  30841. characterMakers.push(() => makeCharacter(
  30842. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30843. {
  30844. front: {
  30845. height: math.unit(6, "feet"),
  30846. weight: math.unit(150, "lb"),
  30847. name: "Front",
  30848. image: {
  30849. source: "./media/characters/hugo-sigil/front.svg",
  30850. extra: 522 / 500,
  30851. bottom: 2 / 524
  30852. }
  30853. },
  30854. back: {
  30855. height: math.unit(6, "feet"),
  30856. weight: math.unit(150, "lb"),
  30857. name: "Back",
  30858. image: {
  30859. source: "./media/characters/hugo-sigil/back.svg",
  30860. extra: 519 / 495,
  30861. bottom: 5 / 524
  30862. }
  30863. },
  30864. maw: {
  30865. height: math.unit(1.4, "feet"),
  30866. weight: math.unit(150, "lb"),
  30867. name: "Maw",
  30868. image: {
  30869. source: "./media/characters/hugo-sigil/maw.svg"
  30870. }
  30871. },
  30872. feet: {
  30873. height: math.unit(1.56, "feet"),
  30874. weight: math.unit(150, "lb"),
  30875. name: "Feet",
  30876. image: {
  30877. source: "./media/characters/hugo-sigil/feet.svg",
  30878. extra: 177 / 177,
  30879. bottom: 12 / 189
  30880. }
  30881. },
  30882. },
  30883. [
  30884. {
  30885. name: "Normal",
  30886. height: math.unit(6, "feet")
  30887. },
  30888. {
  30889. name: "Macro",
  30890. height: math.unit(200, "feet"),
  30891. default: true
  30892. },
  30893. ]
  30894. ))
  30895. characterMakers.push(() => makeCharacter(
  30896. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30897. {
  30898. front: {
  30899. height: math.unit(6, "feet"),
  30900. weight: math.unit(150, "lb"),
  30901. name: "Front",
  30902. image: {
  30903. source: "./media/characters/peri/front.svg",
  30904. extra: 2354 / 2233,
  30905. bottom: 49 / 2403
  30906. }
  30907. },
  30908. },
  30909. [
  30910. {
  30911. name: "Really Small",
  30912. height: math.unit(1, "nm")
  30913. },
  30914. {
  30915. name: "Micro",
  30916. height: math.unit(4, "inches")
  30917. },
  30918. {
  30919. name: "Normal",
  30920. height: math.unit(7, "inches"),
  30921. default: true
  30922. },
  30923. {
  30924. name: "Macro",
  30925. height: math.unit(400, "feet")
  30926. },
  30927. {
  30928. name: "Megamacro",
  30929. height: math.unit(100, "miles")
  30930. },
  30931. ]
  30932. ))
  30933. characterMakers.push(() => makeCharacter(
  30934. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30935. {
  30936. frontSlim: {
  30937. height: math.unit(7, "feet"),
  30938. name: "Front (Slim)",
  30939. image: {
  30940. source: "./media/characters/issilora/front-slim.svg",
  30941. extra: 529 / 449,
  30942. bottom: 53 / 582
  30943. }
  30944. },
  30945. sideSlim: {
  30946. height: math.unit(7, "feet"),
  30947. name: "Side (Slim)",
  30948. image: {
  30949. source: "./media/characters/issilora/side-slim.svg",
  30950. extra: 570 / 480,
  30951. bottom: 30 / 600
  30952. }
  30953. },
  30954. backSlim: {
  30955. height: math.unit(7, "feet"),
  30956. name: "Back (Slim)",
  30957. image: {
  30958. source: "./media/characters/issilora/back-slim.svg",
  30959. extra: 537 / 455,
  30960. bottom: 46 / 583
  30961. }
  30962. },
  30963. frontBuff: {
  30964. height: math.unit(7, "feet"),
  30965. name: "Front (Buff)",
  30966. image: {
  30967. source: "./media/characters/issilora/front-buff.svg",
  30968. extra: 2310 / 2035,
  30969. bottom: 335 / 2645
  30970. }
  30971. },
  30972. head: {
  30973. height: math.unit(1.94, "feet"),
  30974. name: "Head",
  30975. image: {
  30976. source: "./media/characters/issilora/head.svg"
  30977. }
  30978. },
  30979. },
  30980. [
  30981. {
  30982. name: "Minimum",
  30983. height: math.unit(7, "feet")
  30984. },
  30985. {
  30986. name: "Comfortable",
  30987. height: math.unit(17, "feet")
  30988. },
  30989. {
  30990. name: "Fun Size",
  30991. height: math.unit(47, "feet")
  30992. },
  30993. {
  30994. name: "Natural Macro",
  30995. height: math.unit(137, "feet"),
  30996. default: true
  30997. },
  30998. {
  30999. name: "Maximum Kaiju",
  31000. height: math.unit(397, "feet")
  31001. },
  31002. ]
  31003. ))
  31004. characterMakers.push(() => makeCharacter(
  31005. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31006. {
  31007. front: {
  31008. height: math.unit(50 + 9/12, "feet"),
  31009. weight: math.unit(32.8, "tons"),
  31010. name: "Front",
  31011. image: {
  31012. source: "./media/characters/irb'iiritaahn/front.svg",
  31013. extra: 1878/1826,
  31014. bottom: 326/2204
  31015. }
  31016. },
  31017. back: {
  31018. height: math.unit(50 + 9/12, "feet"),
  31019. weight: math.unit(32.8, "tons"),
  31020. name: "Back",
  31021. image: {
  31022. source: "./media/characters/irb'iiritaahn/back.svg",
  31023. extra: 2052/2018,
  31024. bottom: 152/2204
  31025. }
  31026. },
  31027. head: {
  31028. height: math.unit(12.86, "feet"),
  31029. name: "Head",
  31030. image: {
  31031. source: "./media/characters/irb'iiritaahn/head.svg"
  31032. }
  31033. },
  31034. maw: {
  31035. height: math.unit(9.66, "feet"),
  31036. name: "Maw",
  31037. image: {
  31038. source: "./media/characters/irb'iiritaahn/maw.svg"
  31039. }
  31040. },
  31041. frontDick: {
  31042. height: math.unit(8.78461, "feet"),
  31043. name: "Front Dick",
  31044. image: {
  31045. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31046. }
  31047. },
  31048. rearDick: {
  31049. height: math.unit(8.78461, "feet"),
  31050. name: "Rear Dick",
  31051. image: {
  31052. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31053. }
  31054. },
  31055. rearDickUnfolded: {
  31056. height: math.unit(8.78, "feet"),
  31057. name: "Rear Dick (Unfolded)",
  31058. image: {
  31059. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31060. }
  31061. },
  31062. wings: {
  31063. height: math.unit(43, "feet"),
  31064. name: "Wings",
  31065. image: {
  31066. source: "./media/characters/irb'iiritaahn/wings.svg"
  31067. }
  31068. },
  31069. },
  31070. [
  31071. {
  31072. name: "Macro",
  31073. height: math.unit(50 + 9/12, "feet"),
  31074. default: true
  31075. },
  31076. ]
  31077. ))
  31078. characterMakers.push(() => makeCharacter(
  31079. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31080. {
  31081. front: {
  31082. height: math.unit(205, "cm"),
  31083. weight: math.unit(102, "kg"),
  31084. name: "Front",
  31085. image: {
  31086. source: "./media/characters/irbisgreif/front.svg",
  31087. extra: 785/706,
  31088. bottom: 13/798
  31089. }
  31090. },
  31091. back: {
  31092. height: math.unit(205, "cm"),
  31093. weight: math.unit(102, "kg"),
  31094. name: "Back",
  31095. image: {
  31096. source: "./media/characters/irbisgreif/back.svg",
  31097. extra: 713/701,
  31098. bottom: 26/739
  31099. }
  31100. },
  31101. frontDressed: {
  31102. height: math.unit(216, "cm"),
  31103. weight: math.unit(102, "kg"),
  31104. name: "Front-dressed",
  31105. image: {
  31106. source: "./media/characters/irbisgreif/front-dressed.svg",
  31107. extra: 902/776,
  31108. bottom: 14/916
  31109. }
  31110. },
  31111. sideDressed: {
  31112. height: math.unit(195, "cm"),
  31113. weight: math.unit(102, "kg"),
  31114. name: "Side-dressed",
  31115. image: {
  31116. source: "./media/characters/irbisgreif/side-dressed.svg",
  31117. extra: 788/688,
  31118. bottom: 21/809
  31119. }
  31120. },
  31121. backDressed: {
  31122. height: math.unit(216, "cm"),
  31123. weight: math.unit(102, "kg"),
  31124. name: "Back-dressed",
  31125. image: {
  31126. source: "./media/characters/irbisgreif/back-dressed.svg",
  31127. extra: 901/783,
  31128. bottom: 10/911
  31129. }
  31130. },
  31131. dick: {
  31132. height: math.unit(0.49, "feet"),
  31133. name: "Dick",
  31134. image: {
  31135. source: "./media/characters/irbisgreif/dick.svg"
  31136. }
  31137. },
  31138. wingTop: {
  31139. height: math.unit(1.93 , "feet"),
  31140. name: "Wing-top",
  31141. image: {
  31142. source: "./media/characters/irbisgreif/wing-top.svg"
  31143. }
  31144. },
  31145. wingBottom: {
  31146. height: math.unit(1.93 , "feet"),
  31147. name: "Wing-bottom",
  31148. image: {
  31149. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31150. }
  31151. },
  31152. },
  31153. [
  31154. {
  31155. name: "Normal",
  31156. height: math.unit(216, "cm"),
  31157. default: true
  31158. },
  31159. ]
  31160. ))
  31161. characterMakers.push(() => makeCharacter(
  31162. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31163. {
  31164. front: {
  31165. height: math.unit(6, "feet"),
  31166. weight: math.unit(150, "lb"),
  31167. name: "Front",
  31168. image: {
  31169. source: "./media/characters/pride/front.svg",
  31170. extra: 1299/1230,
  31171. bottom: 18/1317
  31172. }
  31173. },
  31174. },
  31175. [
  31176. {
  31177. name: "Normal",
  31178. height: math.unit(7, "feet")
  31179. },
  31180. {
  31181. name: "Mini-macro",
  31182. height: math.unit(11, "feet")
  31183. },
  31184. {
  31185. name: "Macro",
  31186. height: math.unit(15, "meters"),
  31187. default: true
  31188. },
  31189. {
  31190. name: "Macro+",
  31191. height: math.unit(40, "meters")
  31192. },
  31193. ]
  31194. ))
  31195. characterMakers.push(() => makeCharacter(
  31196. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31197. {
  31198. front: {
  31199. height: math.unit(4 + 2 / 12, "feet"),
  31200. weight: math.unit(95, "lb"),
  31201. name: "Front",
  31202. image: {
  31203. source: "./media/characters/vaelophis-nyx/front.svg",
  31204. extra: 2532/2330,
  31205. bottom: 0/2532
  31206. }
  31207. },
  31208. back: {
  31209. height: math.unit(4 + 2 / 12, "feet"),
  31210. weight: math.unit(95, "lb"),
  31211. name: "Back",
  31212. image: {
  31213. source: "./media/characters/vaelophis-nyx/back.svg",
  31214. extra: 2484/2361,
  31215. bottom: 0/2484
  31216. }
  31217. },
  31218. feralSide: {
  31219. height: math.unit(2 + 1/12, "feet"),
  31220. weight: math.unit(20, "lb"),
  31221. name: "Feral (Side)",
  31222. image: {
  31223. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31224. extra: 1721/1581,
  31225. bottom: 70/1791
  31226. }
  31227. },
  31228. feralLazing: {
  31229. height: math.unit(1.08, "feet"),
  31230. weight: math.unit(20, "lb"),
  31231. name: "Feral (Lazing)",
  31232. image: {
  31233. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31234. extra: 822/822,
  31235. bottom: 248/1070
  31236. }
  31237. },
  31238. ear: {
  31239. height: math.unit(0.416, "feet"),
  31240. name: "Ear",
  31241. image: {
  31242. source: "./media/characters/vaelophis-nyx/ear.svg"
  31243. }
  31244. },
  31245. eye: {
  31246. height: math.unit(0.0748, "feet"),
  31247. name: "Eye",
  31248. image: {
  31249. source: "./media/characters/vaelophis-nyx/eye.svg"
  31250. }
  31251. },
  31252. mouth: {
  31253. height: math.unit(0.378, "feet"),
  31254. name: "Mouth",
  31255. image: {
  31256. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31257. }
  31258. },
  31259. spade: {
  31260. height: math.unit(0.55, "feet"),
  31261. name: "Spade",
  31262. image: {
  31263. source: "./media/characters/vaelophis-nyx/spade.svg"
  31264. }
  31265. },
  31266. },
  31267. [
  31268. {
  31269. name: "Normal",
  31270. height: math.unit(4 + 2/12, "feet"),
  31271. default: true
  31272. },
  31273. ]
  31274. ))
  31275. characterMakers.push(() => makeCharacter(
  31276. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31277. {
  31278. front: {
  31279. height: math.unit(7, "feet"),
  31280. weight: math.unit(231, "lb"),
  31281. name: "Front",
  31282. image: {
  31283. source: "./media/characters/flux/front.svg",
  31284. extra: 919/871,
  31285. bottom: 0/919
  31286. }
  31287. },
  31288. back: {
  31289. height: math.unit(7, "feet"),
  31290. weight: math.unit(231, "lb"),
  31291. name: "Back",
  31292. image: {
  31293. source: "./media/characters/flux/back.svg",
  31294. extra: 1040/992,
  31295. bottom: 0/1040
  31296. }
  31297. },
  31298. frontDressed: {
  31299. height: math.unit(7, "feet"),
  31300. weight: math.unit(231, "lb"),
  31301. name: "Front (Dressed)",
  31302. image: {
  31303. source: "./media/characters/flux/front-dressed.svg",
  31304. extra: 919/871,
  31305. bottom: 0/919
  31306. }
  31307. },
  31308. feralSide: {
  31309. height: math.unit(5, "feet"),
  31310. weight: math.unit(150, "lb"),
  31311. name: "Feral (Side)",
  31312. image: {
  31313. source: "./media/characters/flux/feral-side.svg",
  31314. extra: 598/528,
  31315. bottom: 28/626
  31316. }
  31317. },
  31318. head: {
  31319. height: math.unit(1.585, "feet"),
  31320. name: "Head",
  31321. image: {
  31322. source: "./media/characters/flux/head.svg"
  31323. }
  31324. },
  31325. headSide: {
  31326. height: math.unit(1.74, "feet"),
  31327. name: "Head (Side)",
  31328. image: {
  31329. source: "./media/characters/flux/head-side.svg"
  31330. }
  31331. },
  31332. headSideFire: {
  31333. height: math.unit(1.76, "feet"),
  31334. name: "Head (Side, Fire)",
  31335. image: {
  31336. source: "./media/characters/flux/head-side-fire.svg"
  31337. }
  31338. },
  31339. },
  31340. [
  31341. {
  31342. name: "Normal",
  31343. height: math.unit(7, "feet"),
  31344. default: true
  31345. },
  31346. ]
  31347. ))
  31348. characterMakers.push(() => makeCharacter(
  31349. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31350. {
  31351. front: {
  31352. height: math.unit(9, "feet"),
  31353. weight: math.unit(1012, "lb"),
  31354. name: "Front",
  31355. image: {
  31356. source: "./media/characters/ulfra-lupae/front.svg",
  31357. extra: 1083/1011,
  31358. bottom: 67/1150
  31359. }
  31360. },
  31361. },
  31362. [
  31363. {
  31364. name: "Micro",
  31365. height: math.unit(6, "inches")
  31366. },
  31367. {
  31368. name: "Socializing",
  31369. height: math.unit(6 + 5/12, "feet")
  31370. },
  31371. {
  31372. name: "Normal",
  31373. height: math.unit(9, "feet"),
  31374. default: true
  31375. },
  31376. {
  31377. name: "Macro",
  31378. height: math.unit(150, "feet")
  31379. },
  31380. ]
  31381. ))
  31382. characterMakers.push(() => makeCharacter(
  31383. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31384. {
  31385. front: {
  31386. height: math.unit(5 + 2/12, "feet"),
  31387. weight: math.unit(120, "lb"),
  31388. name: "Front",
  31389. image: {
  31390. source: "./media/characters/timber/front.svg",
  31391. extra: 2814/2705,
  31392. bottom: 181/2995
  31393. }
  31394. },
  31395. },
  31396. [
  31397. {
  31398. name: "Normal",
  31399. height: math.unit(5 + 2/12, "feet"),
  31400. default: true
  31401. },
  31402. ]
  31403. ))
  31404. characterMakers.push(() => makeCharacter(
  31405. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31406. {
  31407. front: {
  31408. height: math.unit(5 + 7/12, "feet"),
  31409. weight: math.unit(220, "lb"),
  31410. name: "Front",
  31411. image: {
  31412. source: "./media/characters/nicki/front.svg",
  31413. extra: 453/419,
  31414. bottom: 7/460
  31415. }
  31416. },
  31417. frontAlt: {
  31418. height: math.unit(5 + 7/12, "feet"),
  31419. weight: math.unit(220, "lb"),
  31420. name: "Front-alt",
  31421. image: {
  31422. source: "./media/characters/nicki/front-alt.svg",
  31423. extra: 435/411,
  31424. bottom: 12/447
  31425. }
  31426. },
  31427. back: {
  31428. height: math.unit(5 + 7/12, "feet"),
  31429. weight: math.unit(220, "lb"),
  31430. name: "Back",
  31431. image: {
  31432. source: "./media/characters/nicki/back.svg",
  31433. extra: 440/413,
  31434. bottom: 19/459
  31435. }
  31436. },
  31437. taur: {
  31438. height: math.unit(7 + 6/12, "feet"),
  31439. weight: math.unit(700, "lb"),
  31440. name: "Taur",
  31441. image: {
  31442. source: "./media/characters/nicki/taur.svg",
  31443. extra: 975/773,
  31444. bottom: 0/975
  31445. }
  31446. },
  31447. frontNsfw: {
  31448. height: math.unit(5 + 7/12, "feet"),
  31449. weight: math.unit(220, "lb"),
  31450. name: "Front (NSFW)",
  31451. image: {
  31452. source: "./media/characters/nicki/front-nsfw.svg",
  31453. extra: 453/419,
  31454. bottom: 7/460
  31455. }
  31456. },
  31457. frontNsfwAlt: {
  31458. height: math.unit(5 + 7/12, "feet"),
  31459. weight: math.unit(220, "lb"),
  31460. name: "Front (Alt, NSFW)",
  31461. image: {
  31462. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31463. extra: 435/411,
  31464. bottom: 12/447
  31465. }
  31466. },
  31467. backNsfw: {
  31468. height: math.unit(5 + 7/12, "feet"),
  31469. weight: math.unit(220, "lb"),
  31470. name: "Back (NSFW)",
  31471. image: {
  31472. source: "./media/characters/nicki/back-nsfw.svg",
  31473. extra: 440/413,
  31474. bottom: 19/459
  31475. }
  31476. },
  31477. head: {
  31478. height: math.unit(2.1, "feet"),
  31479. name: "Head",
  31480. image: {
  31481. source: "./media/characters/nicki/head.svg"
  31482. }
  31483. },
  31484. paw: {
  31485. height: math.unit(1.88, "feet"),
  31486. name: "Paw",
  31487. image: {
  31488. source: "./media/characters/nicki/paw.svg"
  31489. }
  31490. },
  31491. },
  31492. [
  31493. {
  31494. name: "Normal",
  31495. height: math.unit(5 + 7/12, "feet"),
  31496. default: true
  31497. },
  31498. ]
  31499. ))
  31500. characterMakers.push(() => makeCharacter(
  31501. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31502. {
  31503. front: {
  31504. height: math.unit(7 + 10/12, "feet"),
  31505. weight: math.unit(3.5, "tons"),
  31506. name: "Front",
  31507. image: {
  31508. source: "./media/characters/lee/front.svg",
  31509. extra: 1773/1615,
  31510. bottom: 86/1859
  31511. }
  31512. },
  31513. hand: {
  31514. height: math.unit(1.78, "feet"),
  31515. name: "Hand",
  31516. image: {
  31517. source: "./media/characters/lee/hand.svg"
  31518. }
  31519. },
  31520. maw: {
  31521. height: math.unit(1.18, "feet"),
  31522. name: "Maw",
  31523. image: {
  31524. source: "./media/characters/lee/maw.svg"
  31525. }
  31526. },
  31527. },
  31528. [
  31529. {
  31530. name: "Normal",
  31531. height: math.unit(7 + 10/12, "feet"),
  31532. default: true
  31533. },
  31534. ]
  31535. ))
  31536. characterMakers.push(() => makeCharacter(
  31537. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31538. {
  31539. front: {
  31540. height: math.unit(9, "feet"),
  31541. name: "Front",
  31542. image: {
  31543. source: "./media/characters/guti/front.svg",
  31544. extra: 4551/4355,
  31545. bottom: 123/4674
  31546. }
  31547. },
  31548. tongue: {
  31549. height: math.unit(1, "feet"),
  31550. name: "Tongue",
  31551. image: {
  31552. source: "./media/characters/guti/tongue.svg"
  31553. }
  31554. },
  31555. paw: {
  31556. height: math.unit(1.18, "feet"),
  31557. name: "Paw",
  31558. image: {
  31559. source: "./media/characters/guti/paw.svg"
  31560. }
  31561. },
  31562. },
  31563. [
  31564. {
  31565. name: "Normal",
  31566. height: math.unit(9, "feet"),
  31567. default: true
  31568. },
  31569. ]
  31570. ))
  31571. characterMakers.push(() => makeCharacter(
  31572. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31573. {
  31574. side: {
  31575. height: math.unit(5, "meters"),
  31576. name: "Side",
  31577. image: {
  31578. source: "./media/characters/vesper/side.svg",
  31579. extra: 1605/1518,
  31580. bottom: 0/1605
  31581. }
  31582. },
  31583. },
  31584. [
  31585. {
  31586. name: "Small",
  31587. height: math.unit(5, "meters")
  31588. },
  31589. {
  31590. name: "Sage",
  31591. height: math.unit(100, "meters"),
  31592. default: true
  31593. },
  31594. {
  31595. name: "Fun Size",
  31596. height: math.unit(600, "meters")
  31597. },
  31598. {
  31599. name: "Goddess",
  31600. height: math.unit(20000, "km")
  31601. },
  31602. {
  31603. name: "Maximum",
  31604. height: math.unit(5, "galaxies")
  31605. },
  31606. ]
  31607. ))
  31608. characterMakers.push(() => makeCharacter(
  31609. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31610. {
  31611. front: {
  31612. height: math.unit(6 + 3/12, "feet"),
  31613. weight: math.unit(190, "lb"),
  31614. name: "Front",
  31615. image: {
  31616. source: "./media/characters/gawain/front.svg",
  31617. extra: 2222/2139,
  31618. bottom: 90/2312
  31619. }
  31620. },
  31621. back: {
  31622. height: math.unit(6 + 3/12, "feet"),
  31623. weight: math.unit(190, "lb"),
  31624. name: "Back",
  31625. image: {
  31626. source: "./media/characters/gawain/back.svg",
  31627. extra: 2199/2111,
  31628. bottom: 73/2272
  31629. }
  31630. },
  31631. },
  31632. [
  31633. {
  31634. name: "Normal",
  31635. height: math.unit(6 + 3/12, "feet"),
  31636. default: true
  31637. },
  31638. ]
  31639. ))
  31640. characterMakers.push(() => makeCharacter(
  31641. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31642. {
  31643. side: {
  31644. height: math.unit(3.5, "meters"),
  31645. weight: math.unit(16000, "lb"),
  31646. name: "Side",
  31647. image: {
  31648. source: "./media/characters/dascalti/side.svg",
  31649. extra: 392/273,
  31650. bottom: 47/439
  31651. }
  31652. },
  31653. breath: {
  31654. height: math.unit(7.4, "feet"),
  31655. name: "Breath",
  31656. image: {
  31657. source: "./media/characters/dascalti/breath.svg"
  31658. }
  31659. },
  31660. fed: {
  31661. height: math.unit(3.6, "meters"),
  31662. weight: math.unit(16000, "lb"),
  31663. name: "Fed",
  31664. image: {
  31665. source: "./media/characters/dascalti/fed.svg",
  31666. extra: 1419/820,
  31667. bottom: 95/1514
  31668. }
  31669. },
  31670. },
  31671. [
  31672. {
  31673. name: "Normal",
  31674. height: math.unit(3.5, "meters"),
  31675. default: true
  31676. },
  31677. ]
  31678. ))
  31679. characterMakers.push(() => makeCharacter(
  31680. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31681. {
  31682. front: {
  31683. height: math.unit(3 + 5/12, "feet"),
  31684. name: "Front",
  31685. image: {
  31686. source: "./media/characters/mauve/front.svg",
  31687. extra: 1126/1033,
  31688. bottom: 65/1191
  31689. }
  31690. },
  31691. side: {
  31692. height: math.unit(3 + 5/12, "feet"),
  31693. name: "Side",
  31694. image: {
  31695. source: "./media/characters/mauve/side.svg",
  31696. extra: 1089/1001,
  31697. bottom: 29/1118
  31698. }
  31699. },
  31700. back: {
  31701. height: math.unit(3 + 5/12, "feet"),
  31702. name: "Back",
  31703. image: {
  31704. source: "./media/characters/mauve/back.svg",
  31705. extra: 1173/1053,
  31706. bottom: 109/1282
  31707. }
  31708. },
  31709. },
  31710. [
  31711. {
  31712. name: "Normal",
  31713. height: math.unit(3 + 5/12, "feet"),
  31714. default: true
  31715. },
  31716. ]
  31717. ))
  31718. characterMakers.push(() => makeCharacter(
  31719. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31720. {
  31721. front: {
  31722. height: math.unit(6 + 3/12, "feet"),
  31723. weight: math.unit(430, "lb"),
  31724. name: "Front",
  31725. image: {
  31726. source: "./media/characters/carlos/front.svg",
  31727. extra: 1964/1913,
  31728. bottom: 70/2034
  31729. }
  31730. },
  31731. },
  31732. [
  31733. {
  31734. name: "Normal",
  31735. height: math.unit(6 + 3/12, "feet"),
  31736. default: true
  31737. },
  31738. ]
  31739. ))
  31740. characterMakers.push(() => makeCharacter(
  31741. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31742. {
  31743. back: {
  31744. height: math.unit(5 + 10/12, "feet"),
  31745. weight: math.unit(200, "lb"),
  31746. name: "Back",
  31747. image: {
  31748. source: "./media/characters/jax/back.svg",
  31749. extra: 764/739,
  31750. bottom: 25/789
  31751. }
  31752. },
  31753. },
  31754. [
  31755. {
  31756. name: "Normal",
  31757. height: math.unit(5 + 10/12, "feet"),
  31758. default: true
  31759. },
  31760. ]
  31761. ))
  31762. characterMakers.push(() => makeCharacter(
  31763. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31764. {
  31765. front: {
  31766. height: math.unit(8, "feet"),
  31767. weight: math.unit(250, "lb"),
  31768. name: "Front",
  31769. image: {
  31770. source: "./media/characters/eikthynir/front.svg",
  31771. extra: 1332/1166,
  31772. bottom: 82/1414
  31773. }
  31774. },
  31775. back: {
  31776. height: math.unit(8, "feet"),
  31777. weight: math.unit(250, "lb"),
  31778. name: "Back",
  31779. image: {
  31780. source: "./media/characters/eikthynir/back.svg",
  31781. extra: 1342/1190,
  31782. bottom: 19/1361
  31783. }
  31784. },
  31785. dick: {
  31786. height: math.unit(2.35, "feet"),
  31787. name: "Dick",
  31788. image: {
  31789. source: "./media/characters/eikthynir/dick.svg"
  31790. }
  31791. },
  31792. },
  31793. [
  31794. {
  31795. name: "Normal",
  31796. height: math.unit(8, "feet"),
  31797. default: true
  31798. },
  31799. ]
  31800. ))
  31801. characterMakers.push(() => makeCharacter(
  31802. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31803. {
  31804. front: {
  31805. height: math.unit(99, "meters"),
  31806. weight: math.unit(13000, "tons"),
  31807. name: "Front",
  31808. image: {
  31809. source: "./media/characters/zlmos/front.svg",
  31810. extra: 2202/1992,
  31811. bottom: 315/2517
  31812. }
  31813. },
  31814. },
  31815. [
  31816. {
  31817. name: "Macro",
  31818. height: math.unit(99, "meters"),
  31819. default: true
  31820. },
  31821. ]
  31822. ))
  31823. characterMakers.push(() => makeCharacter(
  31824. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31825. {
  31826. front: {
  31827. height: math.unit(6 + 5/12, "feet"),
  31828. name: "Front",
  31829. image: {
  31830. source: "./media/characters/purri/front.svg",
  31831. extra: 1698/1610,
  31832. bottom: 32/1730
  31833. }
  31834. },
  31835. frontAlt: {
  31836. height: math.unit(6 + 5/12, "feet"),
  31837. name: "Front (Alt)",
  31838. image: {
  31839. source: "./media/characters/purri/front-alt.svg",
  31840. extra: 450/420,
  31841. bottom: 26/476
  31842. }
  31843. },
  31844. boots: {
  31845. height: math.unit(5.5, "feet"),
  31846. name: "Boots",
  31847. image: {
  31848. source: "./media/characters/purri/boots.svg",
  31849. extra: 905/853,
  31850. bottom: 18/923
  31851. }
  31852. },
  31853. lying: {
  31854. height: math.unit(2, "feet"),
  31855. name: "Lying",
  31856. image: {
  31857. source: "./media/characters/purri/lying.svg",
  31858. extra: 940/843,
  31859. bottom: 146/1086
  31860. }
  31861. },
  31862. devious: {
  31863. height: math.unit(1.77, "feet"),
  31864. name: "Devious",
  31865. image: {
  31866. source: "./media/characters/purri/devious.svg",
  31867. extra: 1440/1155,
  31868. bottom: 147/1587
  31869. }
  31870. },
  31871. bean: {
  31872. height: math.unit(1.94, "feet"),
  31873. name: "Bean",
  31874. image: {
  31875. source: "./media/characters/purri/bean.svg"
  31876. }
  31877. },
  31878. },
  31879. [
  31880. {
  31881. name: "Micro",
  31882. height: math.unit(1, "mm")
  31883. },
  31884. {
  31885. name: "Normal",
  31886. height: math.unit(6 + 5/12, "feet"),
  31887. default: true
  31888. },
  31889. {
  31890. name: "Macro :3c",
  31891. height: math.unit(2, "miles")
  31892. },
  31893. ]
  31894. ))
  31895. characterMakers.push(() => makeCharacter(
  31896. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31897. {
  31898. front: {
  31899. height: math.unit(6 + 2/12, "feet"),
  31900. weight: math.unit(250, "lb"),
  31901. name: "Front",
  31902. image: {
  31903. source: "./media/characters/moonlight/front.svg",
  31904. extra: 1044/908,
  31905. bottom: 56/1100
  31906. }
  31907. },
  31908. feral: {
  31909. height: math.unit(3 + 1/12, "feet"),
  31910. weight: math.unit(50, "kg"),
  31911. name: "Feral",
  31912. image: {
  31913. source: "./media/characters/moonlight/feral.svg",
  31914. extra: 3705/2791,
  31915. bottom: 145/3850
  31916. }
  31917. },
  31918. paw: {
  31919. height: math.unit(1, "feet"),
  31920. name: "Paw",
  31921. image: {
  31922. source: "./media/characters/moonlight/paw.svg"
  31923. }
  31924. },
  31925. paws: {
  31926. height: math.unit(0.98, "feet"),
  31927. name: "Paws",
  31928. image: {
  31929. source: "./media/characters/moonlight/paws.svg",
  31930. extra: 939/939,
  31931. bottom: 50/989
  31932. }
  31933. },
  31934. mouth: {
  31935. height: math.unit(0.48, "feet"),
  31936. name: "Mouth",
  31937. image: {
  31938. source: "./media/characters/moonlight/mouth.svg"
  31939. }
  31940. },
  31941. dick: {
  31942. height: math.unit(1.46, "feet"),
  31943. name: "Dick",
  31944. image: {
  31945. source: "./media/characters/moonlight/dick.svg"
  31946. }
  31947. },
  31948. },
  31949. [
  31950. {
  31951. name: "Normal",
  31952. height: math.unit(6 + 2/12, "feet"),
  31953. default: true
  31954. },
  31955. {
  31956. name: "Macro",
  31957. height: math.unit(300, "feet")
  31958. },
  31959. {
  31960. name: "Macro+",
  31961. height: math.unit(1, "mile")
  31962. },
  31963. {
  31964. name: "Mt. Moon",
  31965. height: math.unit(5, "miles")
  31966. },
  31967. {
  31968. name: "Megamacro",
  31969. height: math.unit(15, "miles")
  31970. },
  31971. ]
  31972. ))
  31973. characterMakers.push(() => makeCharacter(
  31974. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31975. {
  31976. back: {
  31977. height: math.unit(6, "feet"),
  31978. weight: math.unit(150, "lb"),
  31979. name: "Back",
  31980. image: {
  31981. source: "./media/characters/sylen/back.svg",
  31982. extra: 1335/1273,
  31983. bottom: 107/1442
  31984. }
  31985. },
  31986. },
  31987. [
  31988. {
  31989. name: "Normal",
  31990. height: math.unit(5 + 5/12, "feet")
  31991. },
  31992. {
  31993. name: "Megamacro",
  31994. height: math.unit(3, "miles"),
  31995. default: true
  31996. },
  31997. ]
  31998. ))
  31999. characterMakers.push(() => makeCharacter(
  32000. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32001. {
  32002. front: {
  32003. height: math.unit(6, "feet"),
  32004. weight: math.unit(190, "lb"),
  32005. name: "Front",
  32006. image: {
  32007. source: "./media/characters/huttser/front.svg",
  32008. extra: 1152/1058,
  32009. bottom: 23/1175
  32010. }
  32011. },
  32012. side: {
  32013. height: math.unit(6, "feet"),
  32014. weight: math.unit(190, "lb"),
  32015. name: "Side",
  32016. image: {
  32017. source: "./media/characters/huttser/side.svg",
  32018. extra: 1174/1065,
  32019. bottom: 18/1192
  32020. }
  32021. },
  32022. back: {
  32023. height: math.unit(6, "feet"),
  32024. weight: math.unit(190, "lb"),
  32025. name: "Back",
  32026. image: {
  32027. source: "./media/characters/huttser/back.svg",
  32028. extra: 1158/1056,
  32029. bottom: 12/1170
  32030. }
  32031. },
  32032. },
  32033. [
  32034. ]
  32035. ))
  32036. characterMakers.push(() => makeCharacter(
  32037. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32038. {
  32039. side: {
  32040. height: math.unit(12 + 9/12, "feet"),
  32041. weight: math.unit(15000, "lb"),
  32042. name: "Side",
  32043. image: {
  32044. source: "./media/characters/faan/side.svg",
  32045. extra: 2747/2697,
  32046. bottom: 0/2747
  32047. }
  32048. },
  32049. front: {
  32050. height: math.unit(12 + 9/12, "feet"),
  32051. weight: math.unit(15000, "lb"),
  32052. name: "Front",
  32053. image: {
  32054. source: "./media/characters/faan/front.svg",
  32055. extra: 607/571,
  32056. bottom: 24/631
  32057. }
  32058. },
  32059. head: {
  32060. height: math.unit(2.85, "feet"),
  32061. name: "Head",
  32062. image: {
  32063. source: "./media/characters/faan/head.svg"
  32064. }
  32065. },
  32066. headAlt: {
  32067. height: math.unit(3.13, "feet"),
  32068. name: "Head-alt",
  32069. image: {
  32070. source: "./media/characters/faan/head-alt.svg"
  32071. }
  32072. },
  32073. },
  32074. [
  32075. {
  32076. name: "Normal",
  32077. height: math.unit(12 + 9/12, "feet"),
  32078. default: true
  32079. },
  32080. ]
  32081. ))
  32082. characterMakers.push(() => makeCharacter(
  32083. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32084. {
  32085. front: {
  32086. height: math.unit(6, "feet"),
  32087. weight: math.unit(300, "lb"),
  32088. name: "Front",
  32089. image: {
  32090. source: "./media/characters/tanio/front.svg",
  32091. extra: 711/673,
  32092. bottom: 25/736
  32093. }
  32094. },
  32095. },
  32096. [
  32097. {
  32098. name: "Normal",
  32099. height: math.unit(6, "feet"),
  32100. default: true
  32101. },
  32102. ]
  32103. ))
  32104. characterMakers.push(() => makeCharacter(
  32105. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32106. {
  32107. front: {
  32108. height: math.unit(3, "inches"),
  32109. name: "Front",
  32110. image: {
  32111. source: "./media/characters/noboru/front.svg",
  32112. extra: 1039/932,
  32113. bottom: 18/1057
  32114. }
  32115. },
  32116. },
  32117. [
  32118. {
  32119. name: "Micro",
  32120. height: math.unit(3, "inches"),
  32121. default: true
  32122. },
  32123. ]
  32124. ))
  32125. characterMakers.push(() => makeCharacter(
  32126. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32127. {
  32128. front: {
  32129. height: math.unit(1.85, "meters"),
  32130. weight: math.unit(80, "kg"),
  32131. name: "Front",
  32132. image: {
  32133. source: "./media/characters/daniel-barrett/front.svg",
  32134. extra: 355/337,
  32135. bottom: 9/364
  32136. }
  32137. },
  32138. },
  32139. [
  32140. {
  32141. name: "Pico",
  32142. height: math.unit(0.0433, "mm")
  32143. },
  32144. {
  32145. name: "Nano",
  32146. height: math.unit(1.5, "mm")
  32147. },
  32148. {
  32149. name: "Micro",
  32150. height: math.unit(5.3, "cm"),
  32151. default: true
  32152. },
  32153. {
  32154. name: "Normal",
  32155. height: math.unit(1.85, "meters")
  32156. },
  32157. {
  32158. name: "Macro",
  32159. height: math.unit(64.7, "meters")
  32160. },
  32161. {
  32162. name: "Megamacro",
  32163. height: math.unit(2.26, "km")
  32164. },
  32165. {
  32166. name: "Gigamacro",
  32167. height: math.unit(79, "km")
  32168. },
  32169. {
  32170. name: "Teramacro",
  32171. height: math.unit(2765, "km")
  32172. },
  32173. {
  32174. name: "Petamacro",
  32175. height: math.unit(96678, "km")
  32176. },
  32177. ]
  32178. ))
  32179. characterMakers.push(() => makeCharacter(
  32180. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32181. {
  32182. front: {
  32183. height: math.unit(30, "meters"),
  32184. weight: math.unit(400, "tons"),
  32185. name: "Front",
  32186. image: {
  32187. source: "./media/characters/zeel/front.svg",
  32188. extra: 2599/2599,
  32189. bottom: 226/2825
  32190. }
  32191. },
  32192. },
  32193. [
  32194. {
  32195. name: "Macro",
  32196. height: math.unit(30, "meters"),
  32197. default: true
  32198. },
  32199. ]
  32200. ))
  32201. characterMakers.push(() => makeCharacter(
  32202. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32203. {
  32204. front: {
  32205. height: math.unit(6 + 7/12, "feet"),
  32206. weight: math.unit(210, "lb"),
  32207. name: "Front",
  32208. image: {
  32209. source: "./media/characters/tarn/front.svg",
  32210. extra: 3517/3220,
  32211. bottom: 91/3608
  32212. }
  32213. },
  32214. back: {
  32215. height: math.unit(6 + 7/12, "feet"),
  32216. weight: math.unit(210, "lb"),
  32217. name: "Back",
  32218. image: {
  32219. source: "./media/characters/tarn/back.svg",
  32220. extra: 3566/3241,
  32221. bottom: 34/3600
  32222. }
  32223. },
  32224. dick: {
  32225. height: math.unit(1.65, "feet"),
  32226. name: "Dick",
  32227. image: {
  32228. source: "./media/characters/tarn/dick.svg"
  32229. }
  32230. },
  32231. paw: {
  32232. height: math.unit(1.80, "feet"),
  32233. name: "Paw",
  32234. image: {
  32235. source: "./media/characters/tarn/paw.svg"
  32236. }
  32237. },
  32238. tongue: {
  32239. height: math.unit(0.97, "feet"),
  32240. name: "Tongue",
  32241. image: {
  32242. source: "./media/characters/tarn/tongue.svg"
  32243. }
  32244. },
  32245. },
  32246. [
  32247. {
  32248. name: "Micro",
  32249. height: math.unit(4, "inches")
  32250. },
  32251. {
  32252. name: "Normal",
  32253. height: math.unit(6 + 7/12, "feet"),
  32254. default: true
  32255. },
  32256. {
  32257. name: "Macro",
  32258. height: math.unit(300, "feet")
  32259. },
  32260. ]
  32261. ))
  32262. characterMakers.push(() => makeCharacter(
  32263. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32264. {
  32265. front: {
  32266. height: math.unit(5 + 7/12, "feet"),
  32267. weight: math.unit(80, "kg"),
  32268. name: "Front",
  32269. image: {
  32270. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32271. extra: 3023/2865,
  32272. bottom: 33/3056
  32273. }
  32274. },
  32275. back: {
  32276. height: math.unit(5 + 7/12, "feet"),
  32277. weight: math.unit(80, "kg"),
  32278. name: "Back",
  32279. image: {
  32280. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32281. extra: 3020/2886,
  32282. bottom: 30/3050
  32283. }
  32284. },
  32285. dick: {
  32286. height: math.unit(0.98, "feet"),
  32287. name: "Dick",
  32288. image: {
  32289. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32290. }
  32291. },
  32292. anatomy: {
  32293. height: math.unit(2.86, "feet"),
  32294. name: "Anatomy",
  32295. image: {
  32296. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32297. }
  32298. },
  32299. },
  32300. [
  32301. {
  32302. name: "Really Small",
  32303. height: math.unit(2, "inches")
  32304. },
  32305. {
  32306. name: "Micro",
  32307. height: math.unit(5.583, "inches")
  32308. },
  32309. {
  32310. name: "Normal",
  32311. height: math.unit(5 + 7/12, "feet"),
  32312. default: true
  32313. },
  32314. {
  32315. name: "Macro",
  32316. height: math.unit(67, "feet")
  32317. },
  32318. {
  32319. name: "Megamacro",
  32320. height: math.unit(134, "feet")
  32321. },
  32322. ]
  32323. ))
  32324. characterMakers.push(() => makeCharacter(
  32325. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32326. {
  32327. front: {
  32328. height: math.unit(9, "feet"),
  32329. weight: math.unit(120, "lb"),
  32330. name: "Front",
  32331. image: {
  32332. source: "./media/characters/sally/front.svg",
  32333. extra: 1506/1349,
  32334. bottom: 66/1572
  32335. }
  32336. },
  32337. },
  32338. [
  32339. {
  32340. name: "Normal",
  32341. height: math.unit(9, "feet"),
  32342. default: true
  32343. },
  32344. ]
  32345. ))
  32346. characterMakers.push(() => makeCharacter(
  32347. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32348. {
  32349. front: {
  32350. height: math.unit(8, "feet"),
  32351. weight: math.unit(900, "lb"),
  32352. name: "Front",
  32353. image: {
  32354. source: "./media/characters/owen/front.svg",
  32355. extra: 1761/1657,
  32356. bottom: 74/1835
  32357. }
  32358. },
  32359. side: {
  32360. height: math.unit(8, "feet"),
  32361. weight: math.unit(900, "lb"),
  32362. name: "Side",
  32363. image: {
  32364. source: "./media/characters/owen/side.svg",
  32365. extra: 1797/1734,
  32366. bottom: 30/1827
  32367. }
  32368. },
  32369. back: {
  32370. height: math.unit(8, "feet"),
  32371. weight: math.unit(900, "lb"),
  32372. name: "Back",
  32373. image: {
  32374. source: "./media/characters/owen/back.svg",
  32375. extra: 1796/1706,
  32376. bottom: 59/1855
  32377. }
  32378. },
  32379. maw: {
  32380. height: math.unit(1.76, "feet"),
  32381. name: "Maw",
  32382. image: {
  32383. source: "./media/characters/owen/maw.svg"
  32384. }
  32385. },
  32386. },
  32387. [
  32388. {
  32389. name: "Normal",
  32390. height: math.unit(8, "feet"),
  32391. default: true
  32392. },
  32393. ]
  32394. ))
  32395. characterMakers.push(() => makeCharacter(
  32396. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32397. {
  32398. front: {
  32399. height: math.unit(4, "feet"),
  32400. weight: math.unit(400, "lb"),
  32401. name: "Front",
  32402. image: {
  32403. source: "./media/characters/ryth/front.svg",
  32404. extra: 1920/1748,
  32405. bottom: 42/1962
  32406. }
  32407. },
  32408. back: {
  32409. height: math.unit(4, "feet"),
  32410. weight: math.unit(400, "lb"),
  32411. name: "Back",
  32412. image: {
  32413. source: "./media/characters/ryth/back.svg",
  32414. extra: 1897/1690,
  32415. bottom: 89/1986
  32416. }
  32417. },
  32418. mouth: {
  32419. height: math.unit(1.39, "feet"),
  32420. name: "Mouth",
  32421. image: {
  32422. source: "./media/characters/ryth/mouth.svg"
  32423. }
  32424. },
  32425. tailmaw: {
  32426. height: math.unit(1.23, "feet"),
  32427. name: "Tailmaw",
  32428. image: {
  32429. source: "./media/characters/ryth/tailmaw.svg"
  32430. }
  32431. },
  32432. goia: {
  32433. height: math.unit(4, "meters"),
  32434. weight: math.unit(10800, "lb"),
  32435. name: "Goia",
  32436. image: {
  32437. source: "./media/characters/ryth/goia.svg",
  32438. extra: 745/640,
  32439. bottom: 107/852
  32440. }
  32441. },
  32442. goiaFront: {
  32443. height: math.unit(4, "meters"),
  32444. weight: math.unit(10800, "lb"),
  32445. name: "Goia (Front)",
  32446. image: {
  32447. source: "./media/characters/ryth/goia-front.svg",
  32448. extra: 750/586,
  32449. bottom: 114/864
  32450. }
  32451. },
  32452. goiaMaw: {
  32453. height: math.unit(5.55, "feet"),
  32454. name: "Goia Maw",
  32455. image: {
  32456. source: "./media/characters/ryth/goia-maw.svg"
  32457. }
  32458. },
  32459. goiaForepaw: {
  32460. height: math.unit(3.5, "feet"),
  32461. name: "Goia Forepaw",
  32462. image: {
  32463. source: "./media/characters/ryth/goia-forepaw.svg"
  32464. }
  32465. },
  32466. goiaHindpaw: {
  32467. height: math.unit(5.55, "feet"),
  32468. name: "Goia Hindpaw",
  32469. image: {
  32470. source: "./media/characters/ryth/goia-hindpaw.svg"
  32471. }
  32472. },
  32473. },
  32474. [
  32475. {
  32476. name: "Normal",
  32477. height: math.unit(4, "feet"),
  32478. default: true
  32479. },
  32480. ]
  32481. ))
  32482. characterMakers.push(() => makeCharacter(
  32483. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32484. {
  32485. front: {
  32486. height: math.unit(7, "feet"),
  32487. weight: math.unit(180, "lb"),
  32488. name: "Front",
  32489. image: {
  32490. source: "./media/characters/necrolance/front.svg",
  32491. extra: 1062/947,
  32492. bottom: 41/1103
  32493. }
  32494. },
  32495. back: {
  32496. height: math.unit(7, "feet"),
  32497. weight: math.unit(180, "lb"),
  32498. name: "Back",
  32499. image: {
  32500. source: "./media/characters/necrolance/back.svg",
  32501. extra: 1045/984,
  32502. bottom: 14/1059
  32503. }
  32504. },
  32505. wing: {
  32506. height: math.unit(2.67, "feet"),
  32507. name: "Wing",
  32508. image: {
  32509. source: "./media/characters/necrolance/wing.svg"
  32510. }
  32511. },
  32512. },
  32513. [
  32514. {
  32515. name: "Normal",
  32516. height: math.unit(7, "feet"),
  32517. default: true
  32518. },
  32519. ]
  32520. ))
  32521. characterMakers.push(() => makeCharacter(
  32522. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32523. {
  32524. front: {
  32525. height: math.unit(76, "meters"),
  32526. weight: math.unit(30000, "tons"),
  32527. name: "Front",
  32528. image: {
  32529. source: "./media/characters/tyler/front.svg",
  32530. extra: 1640/1640,
  32531. bottom: 114/1754
  32532. }
  32533. },
  32534. },
  32535. [
  32536. {
  32537. name: "Macro",
  32538. height: math.unit(76, "meters"),
  32539. default: true
  32540. },
  32541. ]
  32542. ))
  32543. characterMakers.push(() => makeCharacter(
  32544. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32545. {
  32546. front: {
  32547. height: math.unit(4 + 11/12, "feet"),
  32548. weight: math.unit(132, "lb"),
  32549. name: "Front",
  32550. image: {
  32551. source: "./media/characters/icey/front.svg",
  32552. extra: 2750/2550,
  32553. bottom: 33/2783
  32554. }
  32555. },
  32556. back: {
  32557. height: math.unit(4 + 11/12, "feet"),
  32558. weight: math.unit(132, "lb"),
  32559. name: "Back",
  32560. image: {
  32561. source: "./media/characters/icey/back.svg",
  32562. extra: 2624/2481,
  32563. bottom: 35/2659
  32564. }
  32565. },
  32566. },
  32567. [
  32568. {
  32569. name: "Normal",
  32570. height: math.unit(4 + 11/12, "feet"),
  32571. default: true
  32572. },
  32573. ]
  32574. ))
  32575. characterMakers.push(() => makeCharacter(
  32576. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32577. {
  32578. front: {
  32579. height: math.unit(100, "feet"),
  32580. weight: math.unit(0, "lb"),
  32581. name: "Front",
  32582. image: {
  32583. source: "./media/characters/smile/front.svg",
  32584. extra: 2983/2912,
  32585. bottom: 162/3145
  32586. }
  32587. },
  32588. back: {
  32589. height: math.unit(100, "feet"),
  32590. weight: math.unit(0, "lb"),
  32591. name: "Back",
  32592. image: {
  32593. source: "./media/characters/smile/back.svg",
  32594. extra: 3143/3031,
  32595. bottom: 91/3234
  32596. }
  32597. },
  32598. head: {
  32599. height: math.unit(26.3, "feet"),
  32600. weight: math.unit(0, "lb"),
  32601. name: "Head",
  32602. image: {
  32603. source: "./media/characters/smile/head.svg"
  32604. }
  32605. },
  32606. collar: {
  32607. height: math.unit(5.3, "feet"),
  32608. weight: math.unit(0, "lb"),
  32609. name: "Collar",
  32610. image: {
  32611. source: "./media/characters/smile/collar.svg"
  32612. }
  32613. },
  32614. },
  32615. [
  32616. {
  32617. name: "Macro",
  32618. height: math.unit(100, "feet"),
  32619. default: true
  32620. },
  32621. ]
  32622. ))
  32623. characterMakers.push(() => makeCharacter(
  32624. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32625. {
  32626. dragon: {
  32627. height: math.unit(26, "feet"),
  32628. weight: math.unit(36, "tons"),
  32629. name: "Dragon",
  32630. image: {
  32631. source: "./media/characters/arimphae/dragon.svg",
  32632. extra: 1574/983,
  32633. bottom: 357/1931
  32634. }
  32635. },
  32636. drake: {
  32637. height: math.unit(9, "feet"),
  32638. weight: math.unit(1.5, "tons"),
  32639. name: "Drake",
  32640. image: {
  32641. source: "./media/characters/arimphae/drake.svg",
  32642. extra: 1120/925,
  32643. bottom: 435/1555
  32644. }
  32645. },
  32646. },
  32647. [
  32648. {
  32649. name: "Small",
  32650. height: math.unit(26*5/9, "feet")
  32651. },
  32652. {
  32653. name: "Normal",
  32654. height: math.unit(26, "feet"),
  32655. default: true
  32656. },
  32657. ]
  32658. ))
  32659. characterMakers.push(() => makeCharacter(
  32660. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32661. {
  32662. front: {
  32663. height: math.unit(8 + 9/12, "feet"),
  32664. name: "Front",
  32665. image: {
  32666. source: "./media/characters/xander/front.svg",
  32667. extra: 1237/974,
  32668. bottom: 94/1331
  32669. }
  32670. },
  32671. },
  32672. [
  32673. {
  32674. name: "Normal",
  32675. height: math.unit(8 + 9/12, "feet"),
  32676. default: true
  32677. },
  32678. {
  32679. name: "Gaze Grabber",
  32680. height: math.unit(13 + 8/12, "feet")
  32681. },
  32682. {
  32683. name: "Jaw Dropper",
  32684. height: math.unit(27, "feet")
  32685. },
  32686. {
  32687. name: "Show Stopper",
  32688. height: math.unit(136, "feet")
  32689. },
  32690. {
  32691. name: "Superstar",
  32692. height: math.unit(1.9e6, "miles")
  32693. },
  32694. ]
  32695. ))
  32696. characterMakers.push(() => makeCharacter(
  32697. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32698. {
  32699. side: {
  32700. height: math.unit(2100, "feet"),
  32701. name: "Side",
  32702. image: {
  32703. source: "./media/characters/osiris/side.svg",
  32704. extra: 1105/939,
  32705. bottom: 167/1272
  32706. }
  32707. },
  32708. },
  32709. [
  32710. {
  32711. name: "Macro",
  32712. height: math.unit(2100, "feet"),
  32713. default: true
  32714. },
  32715. ]
  32716. ))
  32717. characterMakers.push(() => makeCharacter(
  32718. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32719. {
  32720. front: {
  32721. height: math.unit(6 + 8/12, "feet"),
  32722. weight: math.unit(225, "lb"),
  32723. name: "Front",
  32724. image: {
  32725. source: "./media/characters/rhys-londe/front.svg",
  32726. extra: 2258/2141,
  32727. bottom: 188/2446
  32728. }
  32729. },
  32730. back: {
  32731. height: math.unit(6 + 8/12, "feet"),
  32732. weight: math.unit(225, "lb"),
  32733. name: "Back",
  32734. image: {
  32735. source: "./media/characters/rhys-londe/back.svg",
  32736. extra: 2237/2137,
  32737. bottom: 63/2300
  32738. }
  32739. },
  32740. frontNsfw: {
  32741. height: math.unit(6 + 8/12, "feet"),
  32742. weight: math.unit(225, "lb"),
  32743. name: "Front (NSFW)",
  32744. image: {
  32745. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32746. extra: 2258/2141,
  32747. bottom: 188/2446
  32748. }
  32749. },
  32750. backNsfw: {
  32751. height: math.unit(6 + 8/12, "feet"),
  32752. weight: math.unit(225, "lb"),
  32753. name: "Back (NSFW)",
  32754. image: {
  32755. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32756. extra: 2237/2137,
  32757. bottom: 63/2300
  32758. }
  32759. },
  32760. dick: {
  32761. height: math.unit(30, "inches"),
  32762. name: "Dick",
  32763. image: {
  32764. source: "./media/characters/rhys-londe/dick.svg"
  32765. }
  32766. },
  32767. maw: {
  32768. height: math.unit(1.6, "feet"),
  32769. name: "Maw",
  32770. image: {
  32771. source: "./media/characters/rhys-londe/maw.svg"
  32772. }
  32773. },
  32774. },
  32775. [
  32776. {
  32777. name: "Normal",
  32778. height: math.unit(6 + 8/12, "feet"),
  32779. default: true
  32780. },
  32781. ]
  32782. ))
  32783. characterMakers.push(() => makeCharacter(
  32784. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32785. {
  32786. front: {
  32787. height: math.unit(3 + 10/12, "feet"),
  32788. weight: math.unit(90, "lb"),
  32789. name: "Front",
  32790. image: {
  32791. source: "./media/characters/taivas-ensim/front.svg",
  32792. extra: 1327/1216,
  32793. bottom: 96/1423
  32794. }
  32795. },
  32796. back: {
  32797. height: math.unit(3 + 10/12, "feet"),
  32798. weight: math.unit(90, "lb"),
  32799. name: "Back",
  32800. image: {
  32801. source: "./media/characters/taivas-ensim/back.svg",
  32802. extra: 1355/1247,
  32803. bottom: 11/1366
  32804. }
  32805. },
  32806. frontNsfw: {
  32807. height: math.unit(3 + 10/12, "feet"),
  32808. weight: math.unit(90, "lb"),
  32809. name: "Front (NSFW)",
  32810. image: {
  32811. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32812. extra: 1327/1216,
  32813. bottom: 96/1423
  32814. }
  32815. },
  32816. backNsfw: {
  32817. height: math.unit(3 + 10/12, "feet"),
  32818. weight: math.unit(90, "lb"),
  32819. name: "Back (NSFW)",
  32820. image: {
  32821. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32822. extra: 1355/1247,
  32823. bottom: 11/1366
  32824. }
  32825. },
  32826. },
  32827. [
  32828. {
  32829. name: "Normal",
  32830. height: math.unit(3 + 10/12, "feet"),
  32831. default: true
  32832. },
  32833. ]
  32834. ))
  32835. characterMakers.push(() => makeCharacter(
  32836. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32837. {
  32838. front: {
  32839. height: math.unit(9 + 6/12, "feet"),
  32840. weight: math.unit(940, "lb"),
  32841. name: "Front",
  32842. image: {
  32843. source: "./media/characters/byliss/front.svg",
  32844. extra: 1327/1290,
  32845. bottom: 82/1409
  32846. }
  32847. },
  32848. back: {
  32849. height: math.unit(9 + 6/12, "feet"),
  32850. weight: math.unit(940, "lb"),
  32851. name: "Back",
  32852. image: {
  32853. source: "./media/characters/byliss/back.svg",
  32854. extra: 1376/1349,
  32855. bottom: 9/1385
  32856. }
  32857. },
  32858. frontNsfw: {
  32859. height: math.unit(9 + 6/12, "feet"),
  32860. weight: math.unit(940, "lb"),
  32861. name: "Front (NSFW)",
  32862. image: {
  32863. source: "./media/characters/byliss/front-nsfw.svg",
  32864. extra: 1327/1290,
  32865. bottom: 82/1409
  32866. }
  32867. },
  32868. backNsfw: {
  32869. height: math.unit(9 + 6/12, "feet"),
  32870. weight: math.unit(940, "lb"),
  32871. name: "Back (NSFW)",
  32872. image: {
  32873. source: "./media/characters/byliss/back-nsfw.svg",
  32874. extra: 1376/1349,
  32875. bottom: 9/1385
  32876. }
  32877. },
  32878. },
  32879. [
  32880. {
  32881. name: "Normal",
  32882. height: math.unit(9 + 6/12, "feet"),
  32883. default: true
  32884. },
  32885. ]
  32886. ))
  32887. characterMakers.push(() => makeCharacter(
  32888. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32889. {
  32890. front: {
  32891. height: math.unit(5 + 2/12, "feet"),
  32892. weight: math.unit(200, "lb"),
  32893. name: "Front",
  32894. image: {
  32895. source: "./media/characters/noraly/front.svg",
  32896. extra: 4985/4773,
  32897. bottom: 150/5135
  32898. }
  32899. },
  32900. full: {
  32901. height: math.unit(5 + 2/12, "feet"),
  32902. weight: math.unit(164, "lb"),
  32903. name: "Full",
  32904. image: {
  32905. source: "./media/characters/noraly/full.svg",
  32906. extra: 1114/1059,
  32907. bottom: 35/1149
  32908. }
  32909. },
  32910. fuller: {
  32911. height: math.unit(5 + 2/12, "feet"),
  32912. weight: math.unit(230, "lb"),
  32913. name: "Fuller",
  32914. image: {
  32915. source: "./media/characters/noraly/fuller.svg",
  32916. extra: 1114/1059,
  32917. bottom: 35/1149
  32918. }
  32919. },
  32920. fullest: {
  32921. height: math.unit(5 + 2/12, "feet"),
  32922. weight: math.unit(300, "lb"),
  32923. name: "Fullest",
  32924. image: {
  32925. source: "./media/characters/noraly/fullest.svg",
  32926. extra: 1114/1059,
  32927. bottom: 35/1149
  32928. }
  32929. },
  32930. },
  32931. [
  32932. {
  32933. name: "Normal",
  32934. height: math.unit(5 + 2/12, "feet"),
  32935. default: true
  32936. },
  32937. ]
  32938. ))
  32939. characterMakers.push(() => makeCharacter(
  32940. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32941. {
  32942. front: {
  32943. height: math.unit(5 + 2/12, "feet"),
  32944. weight: math.unit(210, "lb"),
  32945. name: "Front",
  32946. image: {
  32947. source: "./media/characters/pera/front.svg",
  32948. extra: 1560/1531,
  32949. bottom: 165/1725
  32950. }
  32951. },
  32952. back: {
  32953. height: math.unit(5 + 2/12, "feet"),
  32954. weight: math.unit(210, "lb"),
  32955. name: "Back",
  32956. image: {
  32957. source: "./media/characters/pera/back.svg",
  32958. extra: 1523/1493,
  32959. bottom: 152/1675
  32960. }
  32961. },
  32962. dick: {
  32963. height: math.unit(2.4, "feet"),
  32964. name: "Dick",
  32965. image: {
  32966. source: "./media/characters/pera/dick.svg"
  32967. }
  32968. },
  32969. },
  32970. [
  32971. {
  32972. name: "Normal",
  32973. height: math.unit(5 + 2/12, "feet"),
  32974. default: true
  32975. },
  32976. ]
  32977. ))
  32978. characterMakers.push(() => makeCharacter(
  32979. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32980. {
  32981. front: {
  32982. height: math.unit(12, "feet"),
  32983. weight: math.unit(3200, "lb"),
  32984. name: "Front",
  32985. image: {
  32986. source: "./media/characters/julian/front.svg",
  32987. extra: 2962/2701,
  32988. bottom: 184/3146
  32989. }
  32990. },
  32991. maw: {
  32992. height: math.unit(5.35, "feet"),
  32993. name: "Maw",
  32994. image: {
  32995. source: "./media/characters/julian/maw.svg"
  32996. }
  32997. },
  32998. paw: {
  32999. height: math.unit(3.07, "feet"),
  33000. name: "Paw",
  33001. image: {
  33002. source: "./media/characters/julian/paw.svg"
  33003. }
  33004. },
  33005. },
  33006. [
  33007. {
  33008. name: "Default",
  33009. height: math.unit(12, "feet"),
  33010. default: true
  33011. },
  33012. {
  33013. name: "Big",
  33014. height: math.unit(50, "feet")
  33015. },
  33016. {
  33017. name: "Really Big",
  33018. height: math.unit(1, "mile")
  33019. },
  33020. {
  33021. name: "Extremely Big",
  33022. height: math.unit(100, "miles")
  33023. },
  33024. {
  33025. name: "Planet Hugger",
  33026. height: math.unit(200, "megameters")
  33027. },
  33028. {
  33029. name: "Unreasonably Big",
  33030. height: math.unit(1e300, "meters")
  33031. },
  33032. ]
  33033. ))
  33034. characterMakers.push(() => makeCharacter(
  33035. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33036. {
  33037. solgooleo: {
  33038. height: math.unit(4, "meters"),
  33039. weight: math.unit(6000*1.5, "kg"),
  33040. volume: math.unit(6000, "liters"),
  33041. name: "Solgooleo",
  33042. image: {
  33043. source: "./media/characters/pi/solgooleo.svg",
  33044. extra: 388/331,
  33045. bottom: 29/417
  33046. }
  33047. },
  33048. },
  33049. [
  33050. {
  33051. name: "Normal",
  33052. height: math.unit(4, "meters"),
  33053. default: true
  33054. },
  33055. ]
  33056. ))
  33057. characterMakers.push(() => makeCharacter(
  33058. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33059. {
  33060. front: {
  33061. height: math.unit(8, "feet"),
  33062. weight: math.unit(4, "tons"),
  33063. name: "Front",
  33064. image: {
  33065. source: "./media/characters/shaun/front.svg",
  33066. extra: 503/495,
  33067. bottom: 20/523
  33068. }
  33069. },
  33070. back: {
  33071. height: math.unit(8, "feet"),
  33072. weight: math.unit(4, "tons"),
  33073. name: "Back",
  33074. image: {
  33075. source: "./media/characters/shaun/back.svg",
  33076. extra: 487/480,
  33077. bottom: 20/507
  33078. }
  33079. },
  33080. },
  33081. [
  33082. {
  33083. name: "Lorg",
  33084. height: math.unit(8, "feet"),
  33085. default: true
  33086. },
  33087. ]
  33088. ))
  33089. characterMakers.push(() => makeCharacter(
  33090. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33091. {
  33092. frontAnthro: {
  33093. height: math.unit(7, "feet"),
  33094. name: "Front",
  33095. image: {
  33096. source: "./media/characters/sini/front-anthro.svg",
  33097. extra: 726/678,
  33098. bottom: 35/761
  33099. },
  33100. form: "anthro",
  33101. default: true
  33102. },
  33103. backAnthro: {
  33104. height: math.unit(7, "feet"),
  33105. name: "Back",
  33106. image: {
  33107. source: "./media/characters/sini/back-anthro.svg",
  33108. extra: 743/701,
  33109. bottom: 12/755
  33110. },
  33111. form: "anthro",
  33112. },
  33113. frontAnthroNsfw: {
  33114. height: math.unit(7, "feet"),
  33115. name: "Front (NSFW)",
  33116. image: {
  33117. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33118. extra: 726/678,
  33119. bottom: 35/761
  33120. },
  33121. form: "anthro"
  33122. },
  33123. backAnthroNsfw: {
  33124. height: math.unit(7, "feet"),
  33125. name: "Back (NSFW)",
  33126. image: {
  33127. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33128. extra: 743/701,
  33129. bottom: 12/755
  33130. },
  33131. form: "anthro",
  33132. },
  33133. mawAnthro: {
  33134. height: math.unit(2.14, "feet"),
  33135. name: "Maw",
  33136. image: {
  33137. source: "./media/characters/sini/maw-anthro.svg"
  33138. },
  33139. form: "anthro"
  33140. },
  33141. dick: {
  33142. height: math.unit(1.45, "feet"),
  33143. name: "Dick",
  33144. image: {
  33145. source: "./media/characters/sini/dick-anthro.svg"
  33146. },
  33147. form: "anthro"
  33148. },
  33149. feral: {
  33150. height: math.unit(16, "feet"),
  33151. name: "Feral",
  33152. image: {
  33153. source: "./media/characters/sini/feral.svg",
  33154. extra: 814/605,
  33155. bottom: 11/825
  33156. },
  33157. form: "feral",
  33158. default: true
  33159. },
  33160. feralNsfw: {
  33161. height: math.unit(16, "feet"),
  33162. name: "Feral (NSFW)",
  33163. image: {
  33164. source: "./media/characters/sini/feral-nsfw.svg",
  33165. extra: 814/605,
  33166. bottom: 11/825
  33167. },
  33168. form: "feral"
  33169. },
  33170. mawFeral: {
  33171. height: math.unit(5.66, "feet"),
  33172. name: "Maw",
  33173. image: {
  33174. source: "./media/characters/sini/maw-feral.svg"
  33175. },
  33176. form: "feral",
  33177. },
  33178. pawFeral: {
  33179. height: math.unit(5.17, "feet"),
  33180. name: "Paw",
  33181. image: {
  33182. source: "./media/characters/sini/paw-feral.svg"
  33183. },
  33184. form: "feral",
  33185. },
  33186. rumpFeral: {
  33187. height: math.unit(13.11, "feet"),
  33188. name: "Rump",
  33189. image: {
  33190. source: "./media/characters/sini/rump-feral.svg"
  33191. },
  33192. form: "feral",
  33193. },
  33194. dickFeral: {
  33195. height: math.unit(1, "feet"),
  33196. name: "Dick",
  33197. image: {
  33198. source: "./media/characters/sini/dick-feral.svg"
  33199. },
  33200. form: "feral",
  33201. },
  33202. eyeFeral: {
  33203. height: math.unit(1.23, "feet"),
  33204. name: "Eye",
  33205. image: {
  33206. source: "./media/characters/sini/eye-feral.svg"
  33207. },
  33208. form: "feral",
  33209. },
  33210. },
  33211. [
  33212. {
  33213. name: "Normal",
  33214. height: math.unit(7, "feet"),
  33215. default: true,
  33216. form: "anthro"
  33217. },
  33218. {
  33219. name: "Normal",
  33220. height: math.unit(16, "feet"),
  33221. default: true,
  33222. form: "feral"
  33223. },
  33224. ],
  33225. {
  33226. "anthro": {
  33227. name: "Anthro",
  33228. default: true
  33229. },
  33230. "feral": {
  33231. name: "Feral",
  33232. }
  33233. }
  33234. ))
  33235. characterMakers.push(() => makeCharacter(
  33236. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33237. {
  33238. side: {
  33239. height: math.unit(13, "meters"),
  33240. weight: math.unit(9072, "kg"),
  33241. name: "Side",
  33242. image: {
  33243. source: "./media/characters/raylldo/side.svg",
  33244. extra: 403/344,
  33245. bottom: 42/445
  33246. }
  33247. },
  33248. leaping: {
  33249. height: math.unit(12.3, "meters"),
  33250. weight: math.unit(9072, "kg"),
  33251. name: "Leaping",
  33252. image: {
  33253. source: "./media/characters/raylldo/leaping.svg",
  33254. extra: 470/249,
  33255. bottom: 13/483
  33256. }
  33257. },
  33258. flying: {
  33259. height: math.unit(18, "meters"),
  33260. weight: math.unit(9072, "kg"),
  33261. name: "Flying",
  33262. image: {
  33263. source: "./media/characters/raylldo/flying.svg"
  33264. }
  33265. },
  33266. head: {
  33267. height: math.unit(5.85, "meters"),
  33268. name: "Head",
  33269. image: {
  33270. source: "./media/characters/raylldo/head.svg"
  33271. }
  33272. },
  33273. maw: {
  33274. height: math.unit(5.32, "meters"),
  33275. name: "Maw",
  33276. image: {
  33277. source: "./media/characters/raylldo/maw.svg"
  33278. }
  33279. },
  33280. eye: {
  33281. height: math.unit(0.54, "meters"),
  33282. name: "Eye",
  33283. image: {
  33284. source: "./media/characters/raylldo/eye.svg"
  33285. }
  33286. },
  33287. },
  33288. [
  33289. {
  33290. name: "Normal",
  33291. height: math.unit(13, "meters"),
  33292. default: true
  33293. },
  33294. ]
  33295. ))
  33296. characterMakers.push(() => makeCharacter(
  33297. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33298. {
  33299. anthroFront: {
  33300. height: math.unit(9, "feet"),
  33301. weight: math.unit(600, "lb"),
  33302. name: "Anthro (Front)",
  33303. image: {
  33304. source: "./media/characters/glint/anthro-front.svg",
  33305. extra: 1097/1018,
  33306. bottom: 28/1125
  33307. }
  33308. },
  33309. anthroBack: {
  33310. height: math.unit(9, "feet"),
  33311. weight: math.unit(600, "lb"),
  33312. name: "Anthro (Back)",
  33313. image: {
  33314. source: "./media/characters/glint/anthro-back.svg",
  33315. extra: 1154/997,
  33316. bottom: 36/1190
  33317. }
  33318. },
  33319. feral: {
  33320. height: math.unit(11, "feet"),
  33321. weight: math.unit(50000, "lb"),
  33322. name: "Feral",
  33323. image: {
  33324. source: "./media/characters/glint/feral.svg",
  33325. extra: 3035/1585,
  33326. bottom: 1169/4204
  33327. }
  33328. },
  33329. dickAnthro: {
  33330. height: math.unit(0.7, "meters"),
  33331. name: "Dick (Anthro)",
  33332. image: {
  33333. source: "./media/characters/glint/dick-anthro.svg"
  33334. }
  33335. },
  33336. dickFeral: {
  33337. height: math.unit(2.65, "meters"),
  33338. name: "Dick (Feral)",
  33339. image: {
  33340. source: "./media/characters/glint/dick-feral.svg"
  33341. }
  33342. },
  33343. slitHidden: {
  33344. height: math.unit(5.85, "meters"),
  33345. name: "Slit (Hidden)",
  33346. image: {
  33347. source: "./media/characters/glint/slit-hidden.svg"
  33348. }
  33349. },
  33350. slitErect: {
  33351. height: math.unit(5.85, "meters"),
  33352. name: "Slit (Erect)",
  33353. image: {
  33354. source: "./media/characters/glint/slit-erect.svg"
  33355. }
  33356. },
  33357. mawAnthro: {
  33358. height: math.unit(0.63, "meters"),
  33359. name: "Maw (Anthro)",
  33360. image: {
  33361. source: "./media/characters/glint/maw.svg"
  33362. }
  33363. },
  33364. mawFeral: {
  33365. height: math.unit(2.89, "meters"),
  33366. name: "Maw (Feral)",
  33367. image: {
  33368. source: "./media/characters/glint/maw.svg"
  33369. }
  33370. },
  33371. },
  33372. [
  33373. {
  33374. name: "Normal",
  33375. height: math.unit(9, "feet"),
  33376. default: true
  33377. },
  33378. ]
  33379. ))
  33380. characterMakers.push(() => makeCharacter(
  33381. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33382. {
  33383. side: {
  33384. height: math.unit(15, "feet"),
  33385. weight: math.unit(5000, "kg"),
  33386. name: "Side",
  33387. image: {
  33388. source: "./media/characters/kairne/side.svg",
  33389. extra: 979/811,
  33390. bottom: 13/992
  33391. }
  33392. },
  33393. front: {
  33394. height: math.unit(15, "feet"),
  33395. weight: math.unit(5000, "kg"),
  33396. name: "Front",
  33397. image: {
  33398. source: "./media/characters/kairne/front.svg",
  33399. extra: 908/814,
  33400. bottom: 26/934
  33401. }
  33402. },
  33403. sideNsfw: {
  33404. height: math.unit(15, "feet"),
  33405. weight: math.unit(5000, "kg"),
  33406. name: "Side (NSFW)",
  33407. image: {
  33408. source: "./media/characters/kairne/side-nsfw.svg",
  33409. extra: 979/811,
  33410. bottom: 13/992
  33411. }
  33412. },
  33413. frontNsfw: {
  33414. height: math.unit(15, "feet"),
  33415. weight: math.unit(5000, "kg"),
  33416. name: "Front (NSFW)",
  33417. image: {
  33418. source: "./media/characters/kairne/front-nsfw.svg",
  33419. extra: 908/814,
  33420. bottom: 26/934
  33421. }
  33422. },
  33423. dickCaged: {
  33424. height: math.unit(0.65, "meters"),
  33425. name: "Dick-caged",
  33426. image: {
  33427. source: "./media/characters/kairne/dick-caged.svg"
  33428. }
  33429. },
  33430. dick: {
  33431. height: math.unit(0.79, "meters"),
  33432. name: "Dick",
  33433. image: {
  33434. source: "./media/characters/kairne/dick.svg"
  33435. }
  33436. },
  33437. genitals: {
  33438. height: math.unit(1.29, "meters"),
  33439. name: "Genitals",
  33440. image: {
  33441. source: "./media/characters/kairne/genitals.svg"
  33442. }
  33443. },
  33444. maw: {
  33445. height: math.unit(1.73, "meters"),
  33446. name: "Maw",
  33447. image: {
  33448. source: "./media/characters/kairne/maw.svg"
  33449. }
  33450. },
  33451. },
  33452. [
  33453. {
  33454. name: "Normal",
  33455. height: math.unit(15, "feet"),
  33456. default: true
  33457. },
  33458. ]
  33459. ))
  33460. characterMakers.push(() => makeCharacter(
  33461. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33462. {
  33463. front: {
  33464. height: math.unit(5 + 8/12, "feet"),
  33465. weight: math.unit(139, "lb"),
  33466. name: "Front",
  33467. image: {
  33468. source: "./media/characters/biscuit-jackal/front.svg",
  33469. extra: 2106/1961,
  33470. bottom: 58/2164
  33471. }
  33472. },
  33473. back: {
  33474. height: math.unit(5 + 8/12, "feet"),
  33475. weight: math.unit(139, "lb"),
  33476. name: "Back",
  33477. image: {
  33478. source: "./media/characters/biscuit-jackal/back.svg",
  33479. extra: 2132/1976,
  33480. bottom: 57/2189
  33481. }
  33482. },
  33483. werejackal: {
  33484. height: math.unit(6 + 3/12, "feet"),
  33485. weight: math.unit(188, "lb"),
  33486. name: "Werejackal",
  33487. image: {
  33488. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33489. extra: 2373/2178,
  33490. bottom: 53/2426
  33491. }
  33492. },
  33493. },
  33494. [
  33495. {
  33496. name: "Normal",
  33497. height: math.unit(5 + 8/12, "feet"),
  33498. default: true
  33499. },
  33500. ]
  33501. ))
  33502. characterMakers.push(() => makeCharacter(
  33503. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33504. {
  33505. front: {
  33506. height: math.unit(140, "cm"),
  33507. weight: math.unit(45, "kg"),
  33508. name: "Front",
  33509. image: {
  33510. source: "./media/characters/tayra-white/front.svg",
  33511. extra: 2229/2192,
  33512. bottom: 75/2304
  33513. }
  33514. },
  33515. },
  33516. [
  33517. {
  33518. name: "Normal",
  33519. height: math.unit(140, "cm"),
  33520. default: true
  33521. },
  33522. ]
  33523. ))
  33524. characterMakers.push(() => makeCharacter(
  33525. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33526. {
  33527. front: {
  33528. height: math.unit(4 + 5/12, "feet"),
  33529. name: "Front",
  33530. image: {
  33531. source: "./media/characters/scoop/front.svg",
  33532. extra: 1257/1136,
  33533. bottom: 69/1326
  33534. }
  33535. },
  33536. back: {
  33537. height: math.unit(4 + 5/12, "feet"),
  33538. name: "Back",
  33539. image: {
  33540. source: "./media/characters/scoop/back.svg",
  33541. extra: 1321/1152,
  33542. bottom: 32/1353
  33543. }
  33544. },
  33545. maw: {
  33546. height: math.unit(0.68, "feet"),
  33547. name: "Maw",
  33548. image: {
  33549. source: "./media/characters/scoop/maw.svg"
  33550. }
  33551. },
  33552. },
  33553. [
  33554. {
  33555. name: "Really Small",
  33556. height: math.unit(1, "mm")
  33557. },
  33558. {
  33559. name: "Micro",
  33560. height: math.unit(1, "inch")
  33561. },
  33562. {
  33563. name: "Normal",
  33564. height: math.unit(4 + 5/12, "feet"),
  33565. default: true
  33566. },
  33567. {
  33568. name: "Macro",
  33569. height: math.unit(200, "feet")
  33570. },
  33571. {
  33572. name: "Megamacro",
  33573. height: math.unit(3240, "feet")
  33574. },
  33575. {
  33576. name: "Teramacro",
  33577. height: math.unit(2500, "miles")
  33578. },
  33579. ]
  33580. ))
  33581. characterMakers.push(() => makeCharacter(
  33582. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33583. {
  33584. front: {
  33585. height: math.unit(15 + 7/12, "feet"),
  33586. name: "Front",
  33587. image: {
  33588. source: "./media/characters/saphinara/front.svg",
  33589. extra: 604/546,
  33590. bottom: 19/623
  33591. }
  33592. },
  33593. side: {
  33594. height: math.unit(15 + 7/12, "feet"),
  33595. name: "Side",
  33596. image: {
  33597. source: "./media/characters/saphinara/side.svg",
  33598. extra: 605/547,
  33599. bottom: 6/611
  33600. }
  33601. },
  33602. back: {
  33603. height: math.unit(15 + 7/12, "feet"),
  33604. name: "Back",
  33605. image: {
  33606. source: "./media/characters/saphinara/back.svg",
  33607. extra: 591/531,
  33608. bottom: 13/604
  33609. }
  33610. },
  33611. frontTail: {
  33612. height: math.unit(15 + 7/12, "feet"),
  33613. name: "Front (Full Tail)",
  33614. image: {
  33615. source: "./media/characters/saphinara/front-tail.svg",
  33616. extra: 748/547,
  33617. bottom: 66/814
  33618. }
  33619. },
  33620. },
  33621. [
  33622. {
  33623. name: "Normal",
  33624. height: math.unit(15 + 7/12, "feet"),
  33625. default: true
  33626. },
  33627. {
  33628. name: "Angry",
  33629. height: math.unit(30 + 6/12, "feet")
  33630. },
  33631. {
  33632. name: "Enraged",
  33633. height: math.unit(102 + 1/12, "feet")
  33634. },
  33635. ]
  33636. ))
  33637. characterMakers.push(() => makeCharacter(
  33638. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33639. {
  33640. front: {
  33641. height: math.unit(6 + 8/12, "feet"),
  33642. weight: math.unit(300, "lb"),
  33643. name: "Front",
  33644. image: {
  33645. source: "./media/characters/jrain/front.svg",
  33646. extra: 3039/2865,
  33647. bottom: 399/3438
  33648. }
  33649. },
  33650. back: {
  33651. height: math.unit(6 + 8/12, "feet"),
  33652. weight: math.unit(300, "lb"),
  33653. name: "Back",
  33654. image: {
  33655. source: "./media/characters/jrain/back.svg",
  33656. extra: 3089/2938,
  33657. bottom: 172/3261
  33658. }
  33659. },
  33660. head: {
  33661. height: math.unit(2.14, "feet"),
  33662. name: "Head",
  33663. image: {
  33664. source: "./media/characters/jrain/head.svg"
  33665. }
  33666. },
  33667. maw: {
  33668. height: math.unit(1.77, "feet"),
  33669. name: "Maw",
  33670. image: {
  33671. source: "./media/characters/jrain/maw.svg"
  33672. }
  33673. },
  33674. leftHand: {
  33675. height: math.unit(1.1, "feet"),
  33676. name: "Left Hand",
  33677. image: {
  33678. source: "./media/characters/jrain/left-hand.svg"
  33679. }
  33680. },
  33681. rightHand: {
  33682. height: math.unit(1.1, "feet"),
  33683. name: "Right Hand",
  33684. image: {
  33685. source: "./media/characters/jrain/right-hand.svg"
  33686. }
  33687. },
  33688. eye: {
  33689. height: math.unit(0.35, "feet"),
  33690. name: "Eye",
  33691. image: {
  33692. source: "./media/characters/jrain/eye.svg"
  33693. }
  33694. },
  33695. },
  33696. [
  33697. {
  33698. name: "Normal",
  33699. height: math.unit(6 + 8/12, "feet"),
  33700. default: true
  33701. },
  33702. {
  33703. name: "Casually Large",
  33704. height: math.unit(25, "feet")
  33705. },
  33706. {
  33707. name: "Giant",
  33708. height: math.unit(100, "feet")
  33709. },
  33710. {
  33711. name: "Kaiju",
  33712. height: math.unit(300, "feet")
  33713. },
  33714. ]
  33715. ))
  33716. characterMakers.push(() => makeCharacter(
  33717. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33718. {
  33719. dragon: {
  33720. height: math.unit(5, "meters"),
  33721. name: "Dragon",
  33722. image: {
  33723. source: "./media/characters/sabrina/dragon.svg",
  33724. extra: 3670 / 2365,
  33725. bottom: 333 / 4003
  33726. }
  33727. },
  33728. gryphon: {
  33729. height: math.unit(3, "meters"),
  33730. name: "Gryphon",
  33731. image: {
  33732. source: "./media/characters/sabrina/gryphon.svg",
  33733. extra: 1576 / 945,
  33734. bottom: 71 / 1647
  33735. }
  33736. },
  33737. snake: {
  33738. height: math.unit(12, "meters"),
  33739. name: "Snake",
  33740. image: {
  33741. source: "./media/characters/sabrina/snake.svg",
  33742. extra: 1758 / 1320,
  33743. bottom: 186 / 1944
  33744. }
  33745. },
  33746. collar: {
  33747. height: math.unit(1.86, "meters"),
  33748. name: "Collar",
  33749. image: {
  33750. source: "./media/characters/sabrina/collar.svg"
  33751. }
  33752. },
  33753. eye: {
  33754. height: math.unit(0.53, "meters"),
  33755. name: "Eye",
  33756. image: {
  33757. source: "./media/characters/sabrina/eye.svg"
  33758. }
  33759. },
  33760. foot: {
  33761. height: math.unit(1.86, "meters"),
  33762. name: "Foot",
  33763. image: {
  33764. source: "./media/characters/sabrina/foot.svg"
  33765. }
  33766. },
  33767. hand: {
  33768. height: math.unit(1.32, "meters"),
  33769. name: "Hand",
  33770. image: {
  33771. source: "./media/characters/sabrina/hand.svg"
  33772. }
  33773. },
  33774. head: {
  33775. height: math.unit(2.44, "meters"),
  33776. name: "Head",
  33777. image: {
  33778. source: "./media/characters/sabrina/head.svg"
  33779. }
  33780. },
  33781. headAngry: {
  33782. height: math.unit(2.44, "meters"),
  33783. name: "Head (Angry))",
  33784. image: {
  33785. source: "./media/characters/sabrina/head-angry.svg"
  33786. }
  33787. },
  33788. maw: {
  33789. height: math.unit(1.65, "meters"),
  33790. name: "Maw",
  33791. image: {
  33792. source: "./media/characters/sabrina/maw.svg"
  33793. }
  33794. },
  33795. spikes: {
  33796. height: math.unit(1.69, "meters"),
  33797. name: "Spikes",
  33798. image: {
  33799. source: "./media/characters/sabrina/spikes.svg"
  33800. }
  33801. },
  33802. stomach: {
  33803. height: math.unit(1.15, "meters"),
  33804. name: "Stomach",
  33805. image: {
  33806. source: "./media/characters/sabrina/stomach.svg"
  33807. }
  33808. },
  33809. tongue: {
  33810. height: math.unit(1.27, "meters"),
  33811. name: "Tongue",
  33812. image: {
  33813. source: "./media/characters/sabrina/tongue.svg"
  33814. }
  33815. },
  33816. wingDorsal: {
  33817. height: math.unit(4.85, "meters"),
  33818. name: "Wing (Dorsal)",
  33819. image: {
  33820. source: "./media/characters/sabrina/wing-dorsal.svg"
  33821. }
  33822. },
  33823. wingVentral: {
  33824. height: math.unit(4.85, "meters"),
  33825. name: "Wing (Ventral)",
  33826. image: {
  33827. source: "./media/characters/sabrina/wing-ventral.svg"
  33828. }
  33829. },
  33830. },
  33831. [
  33832. {
  33833. name: "Normal",
  33834. height: math.unit(5, "meters"),
  33835. default: true
  33836. },
  33837. ]
  33838. ))
  33839. characterMakers.push(() => makeCharacter(
  33840. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33841. {
  33842. frontMaid: {
  33843. height: math.unit(5 + 5/12, "feet"),
  33844. weight: math.unit(130, "lb"),
  33845. name: "Front (Maid)",
  33846. image: {
  33847. source: "./media/characters/midnight-tales/front-maid.svg",
  33848. extra: 489/454,
  33849. bottom: 61/550
  33850. }
  33851. },
  33852. frontFormal: {
  33853. height: math.unit(5 + 5/12, "feet"),
  33854. weight: math.unit(130, "lb"),
  33855. name: "Front (Formal)",
  33856. image: {
  33857. source: "./media/characters/midnight-tales/front-formal.svg",
  33858. extra: 489/454,
  33859. bottom: 61/550
  33860. }
  33861. },
  33862. back: {
  33863. height: math.unit(5 + 5/12, "feet"),
  33864. weight: math.unit(130, "lb"),
  33865. name: "Back",
  33866. image: {
  33867. source: "./media/characters/midnight-tales/back.svg",
  33868. extra: 498/456,
  33869. bottom: 33/531
  33870. }
  33871. },
  33872. frontBeast: {
  33873. height: math.unit(40, "feet"),
  33874. weight: math.unit(64000, "lb"),
  33875. name: "Front (Beast)",
  33876. image: {
  33877. source: "./media/characters/midnight-tales/front-beast.svg",
  33878. extra: 927/860,
  33879. bottom: 53/980
  33880. }
  33881. },
  33882. backBeast: {
  33883. height: math.unit(40, "feet"),
  33884. weight: math.unit(64000, "lb"),
  33885. name: "Back (Beast)",
  33886. image: {
  33887. source: "./media/characters/midnight-tales/back-beast.svg",
  33888. extra: 929/855,
  33889. bottom: 16/945
  33890. }
  33891. },
  33892. footBeast: {
  33893. height: math.unit(6.7, "feet"),
  33894. name: "Foot (Beast)",
  33895. image: {
  33896. source: "./media/characters/midnight-tales/foot-beast.svg"
  33897. }
  33898. },
  33899. headBeast: {
  33900. height: math.unit(8, "feet"),
  33901. name: "Head (Beast)",
  33902. image: {
  33903. source: "./media/characters/midnight-tales/head-beast.svg"
  33904. }
  33905. },
  33906. },
  33907. [
  33908. {
  33909. name: "Normal",
  33910. height: math.unit(5 + 5 / 12, "feet"),
  33911. default: true
  33912. },
  33913. {
  33914. name: "Macro",
  33915. height: math.unit(25, "feet")
  33916. },
  33917. ]
  33918. ))
  33919. characterMakers.push(() => makeCharacter(
  33920. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33921. {
  33922. front: {
  33923. height: math.unit(5 + 10/12, "feet"),
  33924. name: "Front",
  33925. image: {
  33926. source: "./media/characters/argon/front.svg",
  33927. extra: 2009/1935,
  33928. bottom: 118/2127
  33929. }
  33930. },
  33931. back: {
  33932. height: math.unit(5 + 10/12, "feet"),
  33933. name: "Back",
  33934. image: {
  33935. source: "./media/characters/argon/back.svg",
  33936. extra: 2047/1992,
  33937. bottom: 20/2067
  33938. }
  33939. },
  33940. frontDressed: {
  33941. height: math.unit(5 + 10/12, "feet"),
  33942. name: "Front (Dressed)",
  33943. image: {
  33944. source: "./media/characters/argon/front-dressed.svg",
  33945. extra: 2009/1935,
  33946. bottom: 118/2127
  33947. }
  33948. },
  33949. },
  33950. [
  33951. {
  33952. name: "Normal",
  33953. height: math.unit(5 + 10/12, "feet"),
  33954. default: true
  33955. },
  33956. ]
  33957. ))
  33958. characterMakers.push(() => makeCharacter(
  33959. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33960. {
  33961. front: {
  33962. height: math.unit(8 + 6/12, "feet"),
  33963. weight: math.unit(1150, "lb"),
  33964. name: "Front",
  33965. image: {
  33966. source: "./media/characters/kichi/front.svg",
  33967. extra: 1267/1164,
  33968. bottom: 61/1328
  33969. }
  33970. },
  33971. back: {
  33972. height: math.unit(8 + 6/12, "feet"),
  33973. weight: math.unit(1150, "lb"),
  33974. name: "Back",
  33975. image: {
  33976. source: "./media/characters/kichi/back.svg",
  33977. extra: 1273/1166,
  33978. bottom: 33/1306
  33979. }
  33980. },
  33981. },
  33982. [
  33983. {
  33984. name: "Normal",
  33985. height: math.unit(8 + 6/12, "feet"),
  33986. default: true
  33987. },
  33988. ]
  33989. ))
  33990. characterMakers.push(() => makeCharacter(
  33991. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33992. {
  33993. front: {
  33994. height: math.unit(6, "feet"),
  33995. weight: math.unit(210, "lb"),
  33996. name: "Front",
  33997. image: {
  33998. source: "./media/characters/manetel-greyscale/front.svg",
  33999. extra: 350/312,
  34000. bottom: 8/358
  34001. }
  34002. },
  34003. },
  34004. [
  34005. {
  34006. name: "Micro",
  34007. height: math.unit(2, "inches")
  34008. },
  34009. {
  34010. name: "Normal",
  34011. height: math.unit(6, "feet"),
  34012. default: true
  34013. },
  34014. {
  34015. name: "Minimacro",
  34016. height: math.unit(17, "feet")
  34017. },
  34018. {
  34019. name: "Macro",
  34020. height: math.unit(117, "feet")
  34021. },
  34022. ]
  34023. ))
  34024. characterMakers.push(() => makeCharacter(
  34025. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34026. {
  34027. side: {
  34028. height: math.unit(5 + 1/12, "feet"),
  34029. weight: math.unit(418, "lb"),
  34030. name: "Side",
  34031. image: {
  34032. source: "./media/characters/softpurr/side.svg",
  34033. extra: 1993/1945,
  34034. bottom: 134/2127
  34035. }
  34036. },
  34037. front: {
  34038. height: math.unit(5 + 1/12, "feet"),
  34039. weight: math.unit(418, "lb"),
  34040. name: "Front",
  34041. image: {
  34042. source: "./media/characters/softpurr/front.svg",
  34043. extra: 1950/1856,
  34044. bottom: 174/2124
  34045. }
  34046. },
  34047. paw: {
  34048. height: math.unit(1, "feet"),
  34049. name: "Paw",
  34050. image: {
  34051. source: "./media/characters/softpurr/paw.svg"
  34052. }
  34053. },
  34054. },
  34055. [
  34056. {
  34057. name: "Normal",
  34058. height: math.unit(5 + 1/12, "feet"),
  34059. default: true
  34060. },
  34061. ]
  34062. ))
  34063. characterMakers.push(() => makeCharacter(
  34064. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34065. {
  34066. front: {
  34067. height: math.unit(260, "meters"),
  34068. name: "Front",
  34069. image: {
  34070. source: "./media/characters/anahita/front.svg",
  34071. extra: 665/635,
  34072. bottom: 89/754
  34073. }
  34074. },
  34075. },
  34076. [
  34077. {
  34078. name: "Macro",
  34079. height: math.unit(260, "meters"),
  34080. default: true
  34081. },
  34082. ]
  34083. ))
  34084. characterMakers.push(() => makeCharacter(
  34085. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34086. {
  34087. front: {
  34088. height: math.unit(4 + 10/12, "feet"),
  34089. weight: math.unit(160, "lb"),
  34090. name: "Front",
  34091. image: {
  34092. source: "./media/characters/chip-mouse/front.svg",
  34093. extra: 3528/3408,
  34094. bottom: 0/3528
  34095. }
  34096. },
  34097. frontNsfw: {
  34098. height: math.unit(4 + 10/12, "feet"),
  34099. weight: math.unit(160, "lb"),
  34100. name: "Front (NSFW)",
  34101. image: {
  34102. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34103. extra: 3528/3408,
  34104. bottom: 0/3528
  34105. }
  34106. },
  34107. },
  34108. [
  34109. {
  34110. name: "Normal",
  34111. height: math.unit(4 + 10/12, "feet"),
  34112. default: true
  34113. },
  34114. ]
  34115. ))
  34116. characterMakers.push(() => makeCharacter(
  34117. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34118. {
  34119. side: {
  34120. height: math.unit(10, "feet"),
  34121. weight: math.unit(14000, "lb"),
  34122. name: "Side",
  34123. image: {
  34124. source: "./media/characters/kremm/side.svg",
  34125. extra: 1390/1053,
  34126. bottom: 90/1480
  34127. }
  34128. },
  34129. gut: {
  34130. height: math.unit(5.8, "feet"),
  34131. name: "Gut",
  34132. image: {
  34133. source: "./media/characters/kremm/gut.svg"
  34134. }
  34135. },
  34136. ass: {
  34137. height: math.unit(6.1, "feet"),
  34138. name: "Ass",
  34139. image: {
  34140. source: "./media/characters/kremm/ass.svg"
  34141. }
  34142. },
  34143. jaws: {
  34144. height: math.unit(2.2, "feet"),
  34145. name: "Jaws",
  34146. image: {
  34147. source: "./media/characters/kremm/jaws.svg"
  34148. }
  34149. },
  34150. dick: {
  34151. height: math.unit(4.26, "feet"),
  34152. name: "Dick",
  34153. image: {
  34154. source: "./media/characters/kremm/dick.svg"
  34155. }
  34156. },
  34157. },
  34158. [
  34159. {
  34160. name: "Normal",
  34161. height: math.unit(10, "feet"),
  34162. default: true
  34163. },
  34164. ]
  34165. ))
  34166. characterMakers.push(() => makeCharacter(
  34167. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34168. {
  34169. front: {
  34170. height: math.unit(30, "stories"),
  34171. name: "Front",
  34172. image: {
  34173. source: "./media/characters/kai/front.svg",
  34174. extra: 1892/1718,
  34175. bottom: 162/2054
  34176. }
  34177. },
  34178. },
  34179. [
  34180. {
  34181. name: "Macro",
  34182. height: math.unit(30, "stories"),
  34183. default: true
  34184. },
  34185. ]
  34186. ))
  34187. characterMakers.push(() => makeCharacter(
  34188. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34189. {
  34190. front: {
  34191. height: math.unit(6 + 4/12, "feet"),
  34192. weight: math.unit(145, "lb"),
  34193. name: "Front",
  34194. image: {
  34195. source: "./media/characters/sykes/front.svg",
  34196. extra: 1321 / 1187,
  34197. bottom: 66 / 1387
  34198. }
  34199. },
  34200. back: {
  34201. height: math.unit(6 + 4/12, "feet"),
  34202. weight: math.unit(145, "lb"),
  34203. name: "Back",
  34204. image: {
  34205. source: "./media/characters/sykes/back.svg",
  34206. extra: 1326/1181,
  34207. bottom: 31/1357
  34208. }
  34209. },
  34210. handBack: {
  34211. height: math.unit(0.9, "feet"),
  34212. name: "Hand (Back)",
  34213. image: {
  34214. source: "./media/characters/sykes/hand-back.svg"
  34215. }
  34216. },
  34217. handFront: {
  34218. height: math.unit(0.839, "feet"),
  34219. name: "Hand (Front)",
  34220. image: {
  34221. source: "./media/characters/sykes/hand-front.svg"
  34222. }
  34223. },
  34224. leftFoot: {
  34225. height: math.unit(1.2, "feet"),
  34226. name: "Foot (Left)",
  34227. image: {
  34228. source: "./media/characters/sykes/foot-left.svg"
  34229. }
  34230. },
  34231. rightFoot: {
  34232. height: math.unit(1.2, "feet"),
  34233. name: "Foot (Right)",
  34234. image: {
  34235. source: "./media/characters/sykes/foot-right.svg"
  34236. }
  34237. },
  34238. maw: {
  34239. height: math.unit(1.93, "feet"),
  34240. name: "Maw",
  34241. image: {
  34242. source: "./media/characters/sykes/maw.svg"
  34243. }
  34244. },
  34245. teeth: {
  34246. height: math.unit(0.51, "feet"),
  34247. name: "Teeth",
  34248. image: {
  34249. source: "./media/characters/sykes/teeth.svg"
  34250. }
  34251. },
  34252. tongue: {
  34253. height: math.unit(2.13, "feet"),
  34254. name: "Tongue",
  34255. image: {
  34256. source: "./media/characters/sykes/tongue.svg"
  34257. }
  34258. },
  34259. uvula: {
  34260. height: math.unit(0.16, "feet"),
  34261. name: "Uvula",
  34262. image: {
  34263. source: "./media/characters/sykes/uvula.svg"
  34264. }
  34265. },
  34266. collar: {
  34267. height: math.unit(0.287, "feet"),
  34268. name: "Collar",
  34269. image: {
  34270. source: "./media/characters/sykes/collar.svg"
  34271. }
  34272. },
  34273. },
  34274. [
  34275. {
  34276. name: "Shrunken",
  34277. height: math.unit(5, "inches")
  34278. },
  34279. {
  34280. name: "Normal",
  34281. height: math.unit(6 + 4 / 12, "feet"),
  34282. default: true
  34283. },
  34284. {
  34285. name: "Big",
  34286. height: math.unit(15, "feet")
  34287. },
  34288. ]
  34289. ))
  34290. characterMakers.push(() => makeCharacter(
  34291. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34292. {
  34293. front: {
  34294. height: math.unit(5 + 8/12, "feet"),
  34295. weight: math.unit(190, "lb"),
  34296. name: "Front",
  34297. image: {
  34298. source: "./media/characters/oven-otter/front.svg",
  34299. extra: 1809/1740,
  34300. bottom: 181/1990
  34301. }
  34302. },
  34303. back: {
  34304. height: math.unit(5 + 8/12, "feet"),
  34305. weight: math.unit(190, "lb"),
  34306. name: "Back",
  34307. image: {
  34308. source: "./media/characters/oven-otter/back.svg",
  34309. extra: 1709/1635,
  34310. bottom: 118/1827
  34311. }
  34312. },
  34313. hand: {
  34314. height: math.unit(1.07, "feet"),
  34315. name: "Hand",
  34316. image: {
  34317. source: "./media/characters/oven-otter/hand.svg"
  34318. }
  34319. },
  34320. beans: {
  34321. height: math.unit(1.74, "feet"),
  34322. name: "Beans",
  34323. image: {
  34324. source: "./media/characters/oven-otter/beans.svg"
  34325. }
  34326. },
  34327. },
  34328. [
  34329. {
  34330. name: "Micro",
  34331. height: math.unit(0.5, "inches")
  34332. },
  34333. {
  34334. name: "Normal",
  34335. height: math.unit(5 + 8/12, "feet"),
  34336. default: true
  34337. },
  34338. {
  34339. name: "Macro",
  34340. height: math.unit(250, "feet")
  34341. },
  34342. {
  34343. name: "Really High",
  34344. height: math.unit(420, "feet")
  34345. },
  34346. ]
  34347. ))
  34348. characterMakers.push(() => makeCharacter(
  34349. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34350. {
  34351. front: {
  34352. height: math.unit(5, "meters"),
  34353. weight: math.unit(292000000000000, "kg"),
  34354. name: "Front",
  34355. image: {
  34356. source: "./media/characters/devourer/front.svg",
  34357. extra: 1800/1733,
  34358. bottom: 211/2011
  34359. }
  34360. },
  34361. maw: {
  34362. height: math.unit(1.1, "meter"),
  34363. name: "Maw",
  34364. image: {
  34365. source: "./media/characters/devourer/maw.svg"
  34366. }
  34367. },
  34368. },
  34369. [
  34370. {
  34371. name: "Small",
  34372. height: math.unit(3, "meters")
  34373. },
  34374. {
  34375. name: "Large",
  34376. height: math.unit(5, "meters"),
  34377. default: true
  34378. },
  34379. ]
  34380. ))
  34381. characterMakers.push(() => makeCharacter(
  34382. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34383. {
  34384. front: {
  34385. height: math.unit(6, "feet"),
  34386. weight: math.unit(400, "lb"),
  34387. name: "Front",
  34388. image: {
  34389. source: "./media/characters/ellarby/front.svg",
  34390. extra: 1909/1763,
  34391. bottom: 80/1989
  34392. }
  34393. },
  34394. back: {
  34395. height: math.unit(6, "feet"),
  34396. weight: math.unit(400, "lb"),
  34397. name: "Back",
  34398. image: {
  34399. source: "./media/characters/ellarby/back.svg",
  34400. extra: 1914/1784,
  34401. bottom: 172/2086
  34402. }
  34403. },
  34404. },
  34405. [
  34406. {
  34407. name: "Mischief",
  34408. height: math.unit(18, "inches")
  34409. },
  34410. {
  34411. name: "Trouble",
  34412. height: math.unit(12, "feet")
  34413. },
  34414. {
  34415. name: "Havoc",
  34416. height: math.unit(200, "feet"),
  34417. default: true
  34418. },
  34419. {
  34420. name: "Pandemonium",
  34421. height: math.unit(1, "mile")
  34422. },
  34423. {
  34424. name: "Catastrophe",
  34425. height: math.unit(100, "miles")
  34426. },
  34427. ]
  34428. ))
  34429. characterMakers.push(() => makeCharacter(
  34430. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34431. {
  34432. front: {
  34433. height: math.unit(4.7, "meters"),
  34434. weight: math.unit(6500, "kg"),
  34435. name: "Front",
  34436. image: {
  34437. source: "./media/characters/vex/front.svg",
  34438. extra: 1288/1140,
  34439. bottom: 100/1388
  34440. }
  34441. },
  34442. },
  34443. [
  34444. {
  34445. name: "Normal",
  34446. height: math.unit(4.7, "meters"),
  34447. default: true
  34448. },
  34449. ]
  34450. ))
  34451. characterMakers.push(() => makeCharacter(
  34452. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34453. {
  34454. normal: {
  34455. height: math.unit(6, "feet"),
  34456. weight: math.unit(350, "lb"),
  34457. name: "Normal",
  34458. image: {
  34459. source: "./media/characters/teshy/normal.svg",
  34460. extra: 1795/1735,
  34461. bottom: 16/1811
  34462. }
  34463. },
  34464. monsterFront: {
  34465. height: math.unit(12, "feet"),
  34466. weight: math.unit(4700, "lb"),
  34467. name: "Monster (Front)",
  34468. image: {
  34469. source: "./media/characters/teshy/monster-front.svg",
  34470. extra: 2042/2034,
  34471. bottom: 128/2170
  34472. }
  34473. },
  34474. monsterSide: {
  34475. height: math.unit(12, "feet"),
  34476. weight: math.unit(4700, "lb"),
  34477. name: "Monster (Side)",
  34478. image: {
  34479. source: "./media/characters/teshy/monster-side.svg",
  34480. extra: 2067/2056,
  34481. bottom: 70/2137
  34482. }
  34483. },
  34484. monsterBack: {
  34485. height: math.unit(12, "feet"),
  34486. weight: math.unit(4700, "lb"),
  34487. name: "Monster (Back)",
  34488. image: {
  34489. source: "./media/characters/teshy/monster-back.svg",
  34490. extra: 1921/1914,
  34491. bottom: 171/2092
  34492. }
  34493. },
  34494. },
  34495. [
  34496. {
  34497. name: "Normal",
  34498. height: math.unit(6, "feet"),
  34499. default: true
  34500. },
  34501. ]
  34502. ))
  34503. characterMakers.push(() => makeCharacter(
  34504. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34505. {
  34506. front: {
  34507. height: math.unit(6, "feet"),
  34508. name: "Front",
  34509. image: {
  34510. source: "./media/characters/ramey/front.svg",
  34511. extra: 790/787,
  34512. bottom: 27/817
  34513. }
  34514. },
  34515. },
  34516. [
  34517. {
  34518. name: "Normal",
  34519. height: math.unit(6, "feet"),
  34520. default: true
  34521. },
  34522. ]
  34523. ))
  34524. characterMakers.push(() => makeCharacter(
  34525. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34526. {
  34527. front: {
  34528. height: math.unit(5 + 5/12, "feet"),
  34529. weight: math.unit(120, "lb"),
  34530. name: "Front",
  34531. image: {
  34532. source: "./media/characters/phirae/front.svg",
  34533. extra: 2491/2436,
  34534. bottom: 38/2529
  34535. }
  34536. },
  34537. },
  34538. [
  34539. {
  34540. name: "Normal",
  34541. height: math.unit(5 + 5/12, "feet"),
  34542. default: true
  34543. },
  34544. ]
  34545. ))
  34546. characterMakers.push(() => makeCharacter(
  34547. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34548. {
  34549. front: {
  34550. height: math.unit(5 + 3/12, "feet"),
  34551. name: "Front",
  34552. image: {
  34553. source: "./media/characters/stagglas/front.svg",
  34554. extra: 962/882,
  34555. bottom: 53/1015
  34556. }
  34557. },
  34558. feral: {
  34559. height: math.unit(335, "cm"),
  34560. name: "Feral",
  34561. image: {
  34562. source: "./media/characters/stagglas/feral.svg",
  34563. extra: 1732/1090,
  34564. bottom: 48/1780
  34565. }
  34566. },
  34567. },
  34568. [
  34569. {
  34570. name: "Normal",
  34571. height: math.unit(5 + 3/12, "feet"),
  34572. default: true
  34573. },
  34574. ]
  34575. ))
  34576. characterMakers.push(() => makeCharacter(
  34577. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34578. {
  34579. front: {
  34580. height: math.unit(5 + 4/12, "feet"),
  34581. weight: math.unit(145, "lb"),
  34582. name: "Front",
  34583. image: {
  34584. source: "./media/characters/starra/front.svg",
  34585. extra: 1790/1691,
  34586. bottom: 91/1881
  34587. }
  34588. },
  34589. },
  34590. [
  34591. {
  34592. name: "Normal",
  34593. height: math.unit(5 + 4/12, "feet"),
  34594. default: true
  34595. },
  34596. ]
  34597. ))
  34598. characterMakers.push(() => makeCharacter(
  34599. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34600. {
  34601. front: {
  34602. height: math.unit(2.2, "meters"),
  34603. name: "Front",
  34604. image: {
  34605. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34606. extra: 1194/1005,
  34607. bottom: 25/1219
  34608. }
  34609. },
  34610. },
  34611. [
  34612. {
  34613. name: "Normal",
  34614. height: math.unit(2.2, "meters"),
  34615. default: true
  34616. },
  34617. ]
  34618. ))
  34619. characterMakers.push(() => makeCharacter(
  34620. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34621. {
  34622. side: {
  34623. height: math.unit(8 + 2/12, "feet"),
  34624. weight: math.unit(1240, "lb"),
  34625. name: "Side",
  34626. image: {
  34627. source: "./media/characters/mika-valentine/side.svg",
  34628. extra: 2670/2501,
  34629. bottom: 250/2920
  34630. }
  34631. },
  34632. },
  34633. [
  34634. {
  34635. name: "Normal",
  34636. height: math.unit(8 + 2/12, "feet"),
  34637. default: true
  34638. },
  34639. ]
  34640. ))
  34641. characterMakers.push(() => makeCharacter(
  34642. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34643. {
  34644. front: {
  34645. height: math.unit(7 + 2/12, "feet"),
  34646. name: "Front",
  34647. image: {
  34648. source: "./media/characters/xoltol/front.svg",
  34649. extra: 2212/2124,
  34650. bottom: 84/2296
  34651. }
  34652. },
  34653. side: {
  34654. height: math.unit(7 + 2/12, "feet"),
  34655. name: "Side",
  34656. image: {
  34657. source: "./media/characters/xoltol/side.svg",
  34658. extra: 2273/2197,
  34659. bottom: 26/2299
  34660. }
  34661. },
  34662. hand: {
  34663. height: math.unit(2.5, "feet"),
  34664. name: "Hand",
  34665. image: {
  34666. source: "./media/characters/xoltol/hand.svg"
  34667. }
  34668. },
  34669. },
  34670. [
  34671. {
  34672. name: "Small-ish",
  34673. height: math.unit(5 + 11/12, "feet")
  34674. },
  34675. {
  34676. name: "Normal",
  34677. height: math.unit(7 + 2/12, "feet")
  34678. },
  34679. {
  34680. name: "\"Macro\"",
  34681. height: math.unit(14 + 9/12, "feet"),
  34682. default: true
  34683. },
  34684. {
  34685. name: "Alternate Height",
  34686. height: math.unit(20, "feet")
  34687. },
  34688. {
  34689. name: "Actually Macro",
  34690. height: math.unit(100, "feet")
  34691. },
  34692. ]
  34693. ))
  34694. characterMakers.push(() => makeCharacter(
  34695. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34696. {
  34697. front: {
  34698. height: math.unit(5 + 2/12, "feet"),
  34699. name: "Front",
  34700. image: {
  34701. source: "./media/characters/kotetsu-redwood/front.svg",
  34702. extra: 1053/942,
  34703. bottom: 60/1113
  34704. }
  34705. },
  34706. },
  34707. [
  34708. {
  34709. name: "Normal",
  34710. height: math.unit(5 + 2/12, "feet"),
  34711. default: true
  34712. },
  34713. ]
  34714. ))
  34715. characterMakers.push(() => makeCharacter(
  34716. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34717. {
  34718. front: {
  34719. height: math.unit(2.4, "meters"),
  34720. weight: math.unit(125, "kg"),
  34721. name: "Front",
  34722. image: {
  34723. source: "./media/characters/lilith/front.svg",
  34724. extra: 1590/1513,
  34725. bottom: 203/1793
  34726. }
  34727. },
  34728. },
  34729. [
  34730. {
  34731. name: "Humanoid",
  34732. height: math.unit(2.4, "meters")
  34733. },
  34734. {
  34735. name: "Normal",
  34736. height: math.unit(6, "meters"),
  34737. default: true
  34738. },
  34739. {
  34740. name: "Largest",
  34741. height: math.unit(55, "meters")
  34742. },
  34743. ]
  34744. ))
  34745. characterMakers.push(() => makeCharacter(
  34746. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34747. {
  34748. front: {
  34749. height: math.unit(8 + 4/12, "feet"),
  34750. weight: math.unit(535, "lb"),
  34751. name: "Front",
  34752. image: {
  34753. source: "./media/characters/beh'kah-bolger/front.svg",
  34754. extra: 1660/1603,
  34755. bottom: 37/1697
  34756. }
  34757. },
  34758. },
  34759. [
  34760. {
  34761. name: "Normal",
  34762. height: math.unit(8 + 4/12, "feet"),
  34763. default: true
  34764. },
  34765. {
  34766. name: "Kaiju",
  34767. height: math.unit(250, "feet")
  34768. },
  34769. {
  34770. name: "Still Growing",
  34771. height: math.unit(10, "miles")
  34772. },
  34773. {
  34774. name: "Continental",
  34775. height: math.unit(5000, "miles")
  34776. },
  34777. {
  34778. name: "Final Form",
  34779. height: math.unit(2500000, "miles")
  34780. },
  34781. ]
  34782. ))
  34783. characterMakers.push(() => makeCharacter(
  34784. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34785. {
  34786. front: {
  34787. height: math.unit(7 + 2/12, "feet"),
  34788. weight: math.unit(230, "kg"),
  34789. name: "Front",
  34790. image: {
  34791. source: "./media/characters/tatyana-milewska/front.svg",
  34792. extra: 1199/1150,
  34793. bottom: 86/1285
  34794. }
  34795. },
  34796. },
  34797. [
  34798. {
  34799. name: "Normal",
  34800. height: math.unit(7 + 2/12, "feet"),
  34801. default: true
  34802. },
  34803. {
  34804. name: "Big",
  34805. height: math.unit(12, "feet")
  34806. },
  34807. {
  34808. name: "Minimacro",
  34809. height: math.unit(20, "feet")
  34810. },
  34811. {
  34812. name: "Macro",
  34813. height: math.unit(120, "feet")
  34814. },
  34815. ]
  34816. ))
  34817. characterMakers.push(() => makeCharacter(
  34818. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34819. {
  34820. front: {
  34821. height: math.unit(7 + 8/12, "feet"),
  34822. weight: math.unit(152, "kg"),
  34823. name: "Front",
  34824. image: {
  34825. source: "./media/characters/helen-arri/front.svg",
  34826. extra: 440/423,
  34827. bottom: 14/454
  34828. }
  34829. },
  34830. back: {
  34831. height: math.unit(7 + 8/12, "feet"),
  34832. weight: math.unit(152, "kg"),
  34833. name: "Back",
  34834. image: {
  34835. source: "./media/characters/helen-arri/back.svg",
  34836. extra: 443/426,
  34837. bottom: 8/451
  34838. }
  34839. },
  34840. },
  34841. [
  34842. {
  34843. name: "Normal",
  34844. height: math.unit(7 + 8/12, "feet"),
  34845. default: true
  34846. },
  34847. {
  34848. name: "Big",
  34849. height: math.unit(14, "feet")
  34850. },
  34851. {
  34852. name: "Minimacro",
  34853. height: math.unit(24, "feet")
  34854. },
  34855. {
  34856. name: "Macro",
  34857. height: math.unit(140, "feet")
  34858. },
  34859. ]
  34860. ))
  34861. characterMakers.push(() => makeCharacter(
  34862. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34863. {
  34864. front: {
  34865. height: math.unit(6, "meters"),
  34866. name: "Front",
  34867. image: {
  34868. source: "./media/characters/ehanu-rehu/front.svg",
  34869. extra: 1800/1800,
  34870. bottom: 59/1859
  34871. }
  34872. },
  34873. },
  34874. [
  34875. {
  34876. name: "Normal",
  34877. height: math.unit(6, "meters"),
  34878. default: true
  34879. },
  34880. ]
  34881. ))
  34882. characterMakers.push(() => makeCharacter(
  34883. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34884. {
  34885. front: {
  34886. height: math.unit(7 + 3/12, "feet"),
  34887. name: "Front",
  34888. image: {
  34889. source: "./media/characters/renholder/front.svg",
  34890. extra: 3096/2960,
  34891. bottom: 250/3346
  34892. }
  34893. },
  34894. },
  34895. [
  34896. {
  34897. name: "Normal Bat",
  34898. height: math.unit(7 + 3/12, "feet"),
  34899. default: true
  34900. },
  34901. {
  34902. name: "Slightly Tall Bat",
  34903. height: math.unit(100, "feet")
  34904. },
  34905. {
  34906. name: "Big Bat",
  34907. height: math.unit(1000, "feet")
  34908. },
  34909. {
  34910. name: "City-Sized Bat",
  34911. height: math.unit(200000, "feet")
  34912. },
  34913. {
  34914. name: "Bigger Bat",
  34915. height: math.unit(10000, "miles")
  34916. },
  34917. {
  34918. name: "Solar Sized Bat",
  34919. height: math.unit(100, "AU")
  34920. },
  34921. {
  34922. name: "Galactic Bat",
  34923. height: math.unit(200000, "lightyears")
  34924. },
  34925. {
  34926. name: "Universally Known Bat",
  34927. height: math.unit(1, "universe")
  34928. },
  34929. ]
  34930. ))
  34931. characterMakers.push(() => makeCharacter(
  34932. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34933. {
  34934. front: {
  34935. height: math.unit(6 + 11/12, "feet"),
  34936. weight: math.unit(250, "lb"),
  34937. name: "Front",
  34938. image: {
  34939. source: "./media/characters/cookiecat/front.svg",
  34940. extra: 893/827,
  34941. bottom: 14/907
  34942. }
  34943. },
  34944. },
  34945. [
  34946. {
  34947. name: "Micro",
  34948. height: math.unit(3, "inches")
  34949. },
  34950. {
  34951. name: "Normal",
  34952. height: math.unit(6 + 11/12, "feet"),
  34953. default: true
  34954. },
  34955. {
  34956. name: "Macro",
  34957. height: math.unit(100, "feet")
  34958. },
  34959. {
  34960. name: "Macro+",
  34961. height: math.unit(404, "feet")
  34962. },
  34963. {
  34964. name: "Megamacro",
  34965. height: math.unit(165, "miles")
  34966. },
  34967. {
  34968. name: "Planetary",
  34969. height: math.unit(4600, "miles")
  34970. },
  34971. ]
  34972. ))
  34973. characterMakers.push(() => makeCharacter(
  34974. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34975. {
  34976. front: {
  34977. height: math.unit(10 + 3/12, "feet"),
  34978. weight: math.unit(1500, "lb"),
  34979. name: "Front",
  34980. image: {
  34981. source: "./media/characters/tux-kusanagi/front.svg",
  34982. extra: 944/840,
  34983. bottom: 39/983
  34984. }
  34985. },
  34986. back: {
  34987. height: math.unit(10 + 3/12, "feet"),
  34988. weight: math.unit(1500, "lb"),
  34989. name: "Back",
  34990. image: {
  34991. source: "./media/characters/tux-kusanagi/back.svg",
  34992. extra: 941/842,
  34993. bottom: 28/969
  34994. }
  34995. },
  34996. rump: {
  34997. height: math.unit(5.25, "feet"),
  34998. name: "Rump",
  34999. image: {
  35000. source: "./media/characters/tux-kusanagi/rump.svg"
  35001. }
  35002. },
  35003. beak: {
  35004. height: math.unit(1.54, "feet"),
  35005. name: "Beak",
  35006. image: {
  35007. source: "./media/characters/tux-kusanagi/beak.svg"
  35008. }
  35009. },
  35010. },
  35011. [
  35012. {
  35013. name: "Normal",
  35014. height: math.unit(10 + 3/12, "feet"),
  35015. default: true
  35016. },
  35017. ]
  35018. ))
  35019. characterMakers.push(() => makeCharacter(
  35020. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35021. {
  35022. front: {
  35023. height: math.unit(58, "feet"),
  35024. weight: math.unit(200, "tons"),
  35025. name: "Front",
  35026. image: {
  35027. source: "./media/characters/uzarmazari/front.svg",
  35028. extra: 1575/1455,
  35029. bottom: 152/1727
  35030. }
  35031. },
  35032. back: {
  35033. height: math.unit(58, "feet"),
  35034. weight: math.unit(200, "tons"),
  35035. name: "Back",
  35036. image: {
  35037. source: "./media/characters/uzarmazari/back.svg",
  35038. extra: 1585/1510,
  35039. bottom: 157/1742
  35040. }
  35041. },
  35042. head: {
  35043. height: math.unit(26, "feet"),
  35044. name: "Head",
  35045. image: {
  35046. source: "./media/characters/uzarmazari/head.svg"
  35047. }
  35048. },
  35049. },
  35050. [
  35051. {
  35052. name: "Normal",
  35053. height: math.unit(58, "feet"),
  35054. default: true
  35055. },
  35056. ]
  35057. ))
  35058. characterMakers.push(() => makeCharacter(
  35059. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35060. {
  35061. side: {
  35062. height: math.unit(15, "feet"),
  35063. name: "Side",
  35064. image: {
  35065. source: "./media/characters/akitu/side.svg",
  35066. extra: 1421/1321,
  35067. bottom: 157/1578
  35068. }
  35069. },
  35070. front: {
  35071. height: math.unit(15, "feet"),
  35072. name: "Front",
  35073. image: {
  35074. source: "./media/characters/akitu/front.svg",
  35075. extra: 1435/1326,
  35076. bottom: 232/1667
  35077. }
  35078. },
  35079. },
  35080. [
  35081. {
  35082. name: "Normal",
  35083. height: math.unit(15, "feet"),
  35084. default: true
  35085. },
  35086. ]
  35087. ))
  35088. characterMakers.push(() => makeCharacter(
  35089. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35090. {
  35091. front: {
  35092. height: math.unit(10 + 8/12, "feet"),
  35093. name: "Front",
  35094. image: {
  35095. source: "./media/characters/azalie-croixland/front.svg",
  35096. extra: 1972/1856,
  35097. bottom: 31/2003
  35098. }
  35099. },
  35100. },
  35101. [
  35102. {
  35103. name: "Original Height",
  35104. height: math.unit(5 + 4/12, "feet")
  35105. },
  35106. {
  35107. name: "Normal Height",
  35108. height: math.unit(10 + 8/12, "feet"),
  35109. default: true
  35110. },
  35111. ]
  35112. ))
  35113. characterMakers.push(() => makeCharacter(
  35114. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35115. {
  35116. side: {
  35117. height: math.unit(7 + 1/12, "feet"),
  35118. weight: math.unit(245, "lb"),
  35119. name: "Side",
  35120. image: {
  35121. source: "./media/characters/kavus-kazian/side.svg",
  35122. extra: 349/342,
  35123. bottom: 15/364
  35124. }
  35125. },
  35126. },
  35127. [
  35128. {
  35129. name: "Normal",
  35130. height: math.unit(7 + 1/12, "feet"),
  35131. default: true
  35132. },
  35133. ]
  35134. ))
  35135. characterMakers.push(() => makeCharacter(
  35136. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35137. {
  35138. normalFront: {
  35139. height: math.unit(5 + 11/12, "feet"),
  35140. name: "Front",
  35141. image: {
  35142. source: "./media/characters/moonlight-rose/normal-front.svg",
  35143. extra: 1980/1825,
  35144. bottom: 18/1998
  35145. },
  35146. form: "normal",
  35147. default: true
  35148. },
  35149. normalBack: {
  35150. height: math.unit(5 + 11/12, "feet"),
  35151. name: "Back",
  35152. image: {
  35153. source: "./media/characters/moonlight-rose/normal-back.svg",
  35154. extra: 2010/1839,
  35155. bottom: 10/2020
  35156. },
  35157. form: "normal"
  35158. },
  35159. demonFront: {
  35160. height: math.unit(1.5, "earths"),
  35161. name: "Front",
  35162. image: {
  35163. source: "./media/characters/moonlight-rose/demon.svg",
  35164. extra: 1400/1294,
  35165. bottom: 45/1445
  35166. },
  35167. form: "demon",
  35168. default: true
  35169. },
  35170. terraFront: {
  35171. height: math.unit(1.5, "earths"),
  35172. name: "Front",
  35173. image: {
  35174. source: "./media/characters/moonlight-rose/terra.svg"
  35175. },
  35176. form: "terra",
  35177. default: true
  35178. },
  35179. jupiterFront: {
  35180. height: math.unit(69911*2, "km"),
  35181. name: "Front",
  35182. image: {
  35183. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35184. extra: 1367/1286,
  35185. bottom: 55/1422
  35186. },
  35187. form: "jupiter",
  35188. default: true
  35189. },
  35190. neptuneFront: {
  35191. height: math.unit(24622*2, "feet"),
  35192. name: "Front",
  35193. image: {
  35194. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35195. extra: 1851/1712,
  35196. bottom: 0/1851
  35197. },
  35198. form: "neptune",
  35199. default: true
  35200. },
  35201. },
  35202. [
  35203. {
  35204. name: "\"Natural\" Height",
  35205. height: math.unit(5 + 11/12, "feet"),
  35206. form: "normal"
  35207. },
  35208. {
  35209. name: "Smallest comfortable size",
  35210. height: math.unit(40, "meters"),
  35211. form: "normal"
  35212. },
  35213. {
  35214. name: "Common size",
  35215. height: math.unit(50, "km"),
  35216. form: "normal",
  35217. default: true
  35218. },
  35219. {
  35220. name: "Normal",
  35221. height: math.unit(1.5, "earths"),
  35222. form: "demon",
  35223. default: true
  35224. },
  35225. {
  35226. name: "Universal",
  35227. height: math.unit(15, "universes"),
  35228. form: "demon"
  35229. },
  35230. {
  35231. name: "Earth",
  35232. height: math.unit(1.5, "earths"),
  35233. form: "terra",
  35234. default: true
  35235. },
  35236. {
  35237. name: "Super Earth",
  35238. height: math.unit(67.5, "earths"),
  35239. form: "terra"
  35240. },
  35241. {
  35242. name: "Doesn't fit in a solar system...",
  35243. height: math.unit(1, "galaxy"),
  35244. form: "terra"
  35245. },
  35246. {
  35247. name: "Saturn",
  35248. height: math.unit(58232*2, "km"),
  35249. form: "jupiter"
  35250. },
  35251. {
  35252. name: "Jupiter",
  35253. height: math.unit(69911*2, "km"),
  35254. form: "jupiter",
  35255. default: true
  35256. },
  35257. {
  35258. name: "HD 100546 b",
  35259. height: math.unit(482938, "km"),
  35260. form: "jupiter"
  35261. },
  35262. {
  35263. name: "Enceladus",
  35264. height: math.unit(513*2, "km"),
  35265. form: "neptune"
  35266. },
  35267. {
  35268. name: "Europe",
  35269. height: math.unit(1560*2, "km"),
  35270. form: "neptune"
  35271. },
  35272. {
  35273. name: "Neptune",
  35274. height: math.unit(24622*2, "km"),
  35275. form: "neptune",
  35276. default: true
  35277. },
  35278. {
  35279. name: "CoRoT-9b",
  35280. height: math.unit(75067*2, "km"),
  35281. form: "neptune"
  35282. },
  35283. ],
  35284. {
  35285. "normal": {
  35286. name: "Normal",
  35287. default: true
  35288. },
  35289. "demon": {
  35290. name: "Demon"
  35291. },
  35292. "terra": {
  35293. name: "Terra"
  35294. },
  35295. "jupiter": {
  35296. name: "Jupiter"
  35297. },
  35298. "neptune": {
  35299. name: "Neptune"
  35300. }
  35301. }
  35302. ))
  35303. characterMakers.push(() => makeCharacter(
  35304. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35305. {
  35306. front: {
  35307. height: math.unit(16, "feet"),
  35308. weight: math.unit(610, "kg"),
  35309. name: "Front",
  35310. image: {
  35311. source: "./media/characters/huckle/front.svg",
  35312. extra: 1731/1625,
  35313. bottom: 33/1764
  35314. }
  35315. },
  35316. back: {
  35317. height: math.unit(16, "feet"),
  35318. weight: math.unit(610, "kg"),
  35319. name: "Back",
  35320. image: {
  35321. source: "./media/characters/huckle/back.svg",
  35322. extra: 1738/1651,
  35323. bottom: 37/1775
  35324. }
  35325. },
  35326. laughing: {
  35327. height: math.unit(3.75, "feet"),
  35328. name: "Laughing",
  35329. image: {
  35330. source: "./media/characters/huckle/laughing.svg"
  35331. }
  35332. },
  35333. angry: {
  35334. height: math.unit(4.15, "feet"),
  35335. name: "Angry",
  35336. image: {
  35337. source: "./media/characters/huckle/angry.svg"
  35338. }
  35339. },
  35340. },
  35341. [
  35342. {
  35343. name: "Normal",
  35344. height: math.unit(16, "feet"),
  35345. default: true
  35346. },
  35347. {
  35348. name: "Mini Macro",
  35349. height: math.unit(463, "feet")
  35350. },
  35351. {
  35352. name: "Macro",
  35353. height: math.unit(1680, "meters")
  35354. },
  35355. {
  35356. name: "Mega Macro",
  35357. height: math.unit(175, "km")
  35358. },
  35359. {
  35360. name: "Terra Macro",
  35361. height: math.unit(32, "gigameters")
  35362. },
  35363. {
  35364. name: "Multiverse+",
  35365. height: math.unit(2.56e23, "yottameters")
  35366. },
  35367. ]
  35368. ))
  35369. characterMakers.push(() => makeCharacter(
  35370. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35371. {
  35372. front: {
  35373. height: math.unit(6 + 9/12, "feet"),
  35374. weight: math.unit(280, "lb"),
  35375. name: "Front",
  35376. image: {
  35377. source: "./media/characters/candy/front.svg",
  35378. extra: 234/217,
  35379. bottom: 11/245
  35380. }
  35381. },
  35382. },
  35383. [
  35384. {
  35385. name: "Really Small",
  35386. height: math.unit(0.1, "nm")
  35387. },
  35388. {
  35389. name: "Micro",
  35390. height: math.unit(2, "inches")
  35391. },
  35392. {
  35393. name: "Normal",
  35394. height: math.unit(6 + 9/12, "feet"),
  35395. default: true
  35396. },
  35397. {
  35398. name: "Small Macro",
  35399. height: math.unit(69, "feet")
  35400. },
  35401. {
  35402. name: "Macro",
  35403. height: math.unit(160, "feet")
  35404. },
  35405. {
  35406. name: "Megamacro",
  35407. height: math.unit(22000, "miles")
  35408. },
  35409. {
  35410. name: "Gigamacro",
  35411. height: math.unit(50000, "miles")
  35412. },
  35413. ]
  35414. ))
  35415. characterMakers.push(() => makeCharacter(
  35416. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35417. {
  35418. front: {
  35419. height: math.unit(4, "feet"),
  35420. weight: math.unit(90, "lb"),
  35421. name: "Front",
  35422. image: {
  35423. source: "./media/characters/joey-mcdonald/front.svg",
  35424. extra: 1059/852,
  35425. bottom: 33/1092
  35426. }
  35427. },
  35428. back: {
  35429. height: math.unit(4, "feet"),
  35430. weight: math.unit(90, "lb"),
  35431. name: "Back",
  35432. image: {
  35433. source: "./media/characters/joey-mcdonald/back.svg",
  35434. extra: 1077/879,
  35435. bottom: 5/1082
  35436. }
  35437. },
  35438. frontKobold: {
  35439. height: math.unit(4, "feet"),
  35440. weight: math.unit(100, "lb"),
  35441. name: "Front-kobold",
  35442. image: {
  35443. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35444. extra: 1480/1367,
  35445. bottom: 0/1480
  35446. }
  35447. },
  35448. backKobold: {
  35449. height: math.unit(4, "feet"),
  35450. weight: math.unit(100, "lb"),
  35451. name: "Back-kobold",
  35452. image: {
  35453. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35454. extra: 1449/1361,
  35455. bottom: 0/1449
  35456. }
  35457. },
  35458. },
  35459. [
  35460. {
  35461. name: "Normal",
  35462. height: math.unit(4, "feet"),
  35463. default: true
  35464. },
  35465. ]
  35466. ))
  35467. characterMakers.push(() => makeCharacter(
  35468. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35469. {
  35470. front: {
  35471. height: math.unit(12 + 6/12, "feet"),
  35472. name: "Front",
  35473. image: {
  35474. source: "./media/characters/kass-lockheed/front.svg",
  35475. extra: 354/343,
  35476. bottom: 9/363
  35477. }
  35478. },
  35479. back: {
  35480. height: math.unit(12 + 6/12, "feet"),
  35481. name: "Back",
  35482. image: {
  35483. source: "./media/characters/kass-lockheed/back.svg",
  35484. extra: 364/352,
  35485. bottom: 3/367
  35486. }
  35487. },
  35488. dick: {
  35489. height: math.unit(3.12, "feet"),
  35490. name: "Dick",
  35491. image: {
  35492. source: "./media/characters/kass-lockheed/dick.svg"
  35493. }
  35494. },
  35495. head: {
  35496. height: math.unit(2.6, "feet"),
  35497. name: "Head",
  35498. image: {
  35499. source: "./media/characters/kass-lockheed/head.svg"
  35500. }
  35501. },
  35502. bleh: {
  35503. height: math.unit(2.85, "feet"),
  35504. name: "Bleh",
  35505. image: {
  35506. source: "./media/characters/kass-lockheed/bleh.svg"
  35507. }
  35508. },
  35509. smug: {
  35510. height: math.unit(2.85, "feet"),
  35511. name: "Smug",
  35512. image: {
  35513. source: "./media/characters/kass-lockheed/smug.svg"
  35514. }
  35515. },
  35516. },
  35517. [
  35518. {
  35519. name: "Normal",
  35520. height: math.unit(12 + 6/12, "feet"),
  35521. default: true
  35522. },
  35523. ]
  35524. ))
  35525. characterMakers.push(() => makeCharacter(
  35526. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35527. {
  35528. front: {
  35529. height: math.unit(6 + 2/12, "feet"),
  35530. name: "Front",
  35531. image: {
  35532. source: "./media/characters/taylor/front.svg",
  35533. extra: 639/495,
  35534. bottom: 12/651
  35535. }
  35536. },
  35537. },
  35538. [
  35539. {
  35540. name: "Normal",
  35541. height: math.unit(6 + 2/12, "feet"),
  35542. default: true
  35543. },
  35544. {
  35545. name: "Big",
  35546. height: math.unit(15, "feet")
  35547. },
  35548. {
  35549. name: "Lorg",
  35550. height: math.unit(80, "feet")
  35551. },
  35552. {
  35553. name: "Too Lorg",
  35554. height: math.unit(120, "feet")
  35555. },
  35556. ]
  35557. ))
  35558. characterMakers.push(() => makeCharacter(
  35559. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35560. {
  35561. front: {
  35562. height: math.unit(15, "feet"),
  35563. name: "Front",
  35564. image: {
  35565. source: "./media/characters/kaizer/front.svg",
  35566. extra: 1612/1436,
  35567. bottom: 43/1655
  35568. }
  35569. },
  35570. },
  35571. [
  35572. {
  35573. name: "Normal",
  35574. height: math.unit(15, "feet"),
  35575. default: true
  35576. },
  35577. ]
  35578. ))
  35579. characterMakers.push(() => makeCharacter(
  35580. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35581. {
  35582. front: {
  35583. height: math.unit(2, "feet"),
  35584. weight: math.unit(30, "lb"),
  35585. name: "Front",
  35586. image: {
  35587. source: "./media/characters/sandy/front.svg",
  35588. extra: 1439/1307,
  35589. bottom: 194/1633
  35590. }
  35591. },
  35592. },
  35593. [
  35594. {
  35595. name: "Normal",
  35596. height: math.unit(2, "feet"),
  35597. default: true
  35598. },
  35599. ]
  35600. ))
  35601. characterMakers.push(() => makeCharacter(
  35602. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35603. {
  35604. front: {
  35605. height: math.unit(3, "feet"),
  35606. name: "Front",
  35607. image: {
  35608. source: "./media/characters/mellvi/front.svg",
  35609. extra: 1831/1630,
  35610. bottom: 58/1889
  35611. }
  35612. },
  35613. },
  35614. [
  35615. {
  35616. name: "Normal",
  35617. height: math.unit(3, "feet"),
  35618. default: true
  35619. },
  35620. ]
  35621. ))
  35622. characterMakers.push(() => makeCharacter(
  35623. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35624. {
  35625. front: {
  35626. height: math.unit(5 + 11/12, "feet"),
  35627. weight: math.unit(200, "lb"),
  35628. name: "Front",
  35629. image: {
  35630. source: "./media/characters/shirou/front.svg",
  35631. extra: 2491/2383,
  35632. bottom: 189/2680
  35633. }
  35634. },
  35635. back: {
  35636. height: math.unit(5 + 11/12, "feet"),
  35637. weight: math.unit(200, "lb"),
  35638. name: "Back",
  35639. image: {
  35640. source: "./media/characters/shirou/back.svg",
  35641. extra: 2554/2450,
  35642. bottom: 76/2630
  35643. }
  35644. },
  35645. },
  35646. [
  35647. {
  35648. name: "Normal",
  35649. height: math.unit(5 + 11/12, "feet"),
  35650. default: true
  35651. },
  35652. ]
  35653. ))
  35654. characterMakers.push(() => makeCharacter(
  35655. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35656. {
  35657. front: {
  35658. height: math.unit(6 + 3/12, "feet"),
  35659. weight: math.unit(177, "lb"),
  35660. name: "Front",
  35661. image: {
  35662. source: "./media/characters/noryu/front.svg",
  35663. extra: 973/885,
  35664. bottom: 10/983
  35665. }
  35666. },
  35667. },
  35668. [
  35669. {
  35670. name: "Normal",
  35671. height: math.unit(6 + 3/12, "feet"),
  35672. default: true
  35673. },
  35674. ]
  35675. ))
  35676. characterMakers.push(() => makeCharacter(
  35677. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35678. {
  35679. front: {
  35680. height: math.unit(5 + 6/12, "feet"),
  35681. weight: math.unit(170, "lb"),
  35682. name: "Front",
  35683. image: {
  35684. source: "./media/characters/mevolas-rubenido/front.svg",
  35685. extra: 2109/1901,
  35686. bottom: 96/2205
  35687. }
  35688. },
  35689. },
  35690. [
  35691. {
  35692. name: "Normal",
  35693. height: math.unit(5 + 6/12, "feet"),
  35694. default: true
  35695. },
  35696. ]
  35697. ))
  35698. characterMakers.push(() => makeCharacter(
  35699. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35700. {
  35701. front: {
  35702. height: math.unit(100, "feet"),
  35703. name: "Front",
  35704. image: {
  35705. source: "./media/characters/dee/front.svg",
  35706. extra: 2153/2036,
  35707. bottom: 59/2212
  35708. }
  35709. },
  35710. back: {
  35711. height: math.unit(100, "feet"),
  35712. name: "Back",
  35713. image: {
  35714. source: "./media/characters/dee/back.svg",
  35715. extra: 2183/2058,
  35716. bottom: 75/2258
  35717. }
  35718. },
  35719. foot: {
  35720. height: math.unit(19.43, "feet"),
  35721. name: "Foot",
  35722. image: {
  35723. source: "./media/characters/dee/foot.svg"
  35724. }
  35725. },
  35726. hoof: {
  35727. height: math.unit(20.6, "feet"),
  35728. name: "Hoof",
  35729. image: {
  35730. source: "./media/characters/dee/hoof.svg"
  35731. }
  35732. },
  35733. },
  35734. [
  35735. {
  35736. name: "Macro",
  35737. height: math.unit(100, "feet"),
  35738. default: true
  35739. },
  35740. ]
  35741. ))
  35742. characterMakers.push(() => makeCharacter(
  35743. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35744. {
  35745. front: {
  35746. height: math.unit(5 + 6/12, "feet"),
  35747. name: "Front",
  35748. image: {
  35749. source: "./media/characters/teh/front.svg",
  35750. extra: 1002/847,
  35751. bottom: 62/1064
  35752. }
  35753. },
  35754. },
  35755. [
  35756. {
  35757. name: "Normal",
  35758. height: math.unit(5 + 6/12, "feet"),
  35759. default: true
  35760. },
  35761. ]
  35762. ))
  35763. characterMakers.push(() => makeCharacter(
  35764. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35765. {
  35766. side: {
  35767. height: math.unit(6 + 1/12, "feet"),
  35768. weight: math.unit(204, "lb"),
  35769. name: "Side",
  35770. image: {
  35771. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35772. extra: 974/775,
  35773. bottom: 169/1143
  35774. }
  35775. },
  35776. sitting: {
  35777. height: math.unit(6 + 2/12, "feet"),
  35778. weight: math.unit(204, "lb"),
  35779. name: "Sitting",
  35780. image: {
  35781. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35782. extra: 1175/964,
  35783. bottom: 378/1553
  35784. }
  35785. },
  35786. },
  35787. [
  35788. {
  35789. name: "Normal",
  35790. height: math.unit(6 + 1/12, "feet"),
  35791. default: true
  35792. },
  35793. ]
  35794. ))
  35795. characterMakers.push(() => makeCharacter(
  35796. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35797. {
  35798. front: {
  35799. height: math.unit(6, "inches"),
  35800. name: "Front",
  35801. image: {
  35802. source: "./media/characters/tululi/front.svg",
  35803. extra: 1997/1876,
  35804. bottom: 20/2017
  35805. }
  35806. },
  35807. },
  35808. [
  35809. {
  35810. name: "Normal",
  35811. height: math.unit(6, "inches"),
  35812. default: true
  35813. },
  35814. ]
  35815. ))
  35816. characterMakers.push(() => makeCharacter(
  35817. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35818. {
  35819. front: {
  35820. height: math.unit(4 + 1/12, "feet"),
  35821. name: "Front",
  35822. image: {
  35823. source: "./media/characters/star/front.svg",
  35824. extra: 1493/1189,
  35825. bottom: 48/1541
  35826. }
  35827. },
  35828. },
  35829. [
  35830. {
  35831. name: "Normal",
  35832. height: math.unit(4 + 1/12, "feet"),
  35833. default: true
  35834. },
  35835. ]
  35836. ))
  35837. characterMakers.push(() => makeCharacter(
  35838. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35839. {
  35840. front: {
  35841. height: math.unit(6 + 3/12, "feet"),
  35842. name: "Front",
  35843. image: {
  35844. source: "./media/characters/comet/front.svg",
  35845. extra: 1681/1462,
  35846. bottom: 26/1707
  35847. }
  35848. },
  35849. },
  35850. [
  35851. {
  35852. name: "Normal",
  35853. height: math.unit(6 + 3/12, "feet"),
  35854. default: true
  35855. },
  35856. ]
  35857. ))
  35858. characterMakers.push(() => makeCharacter(
  35859. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35860. {
  35861. front: {
  35862. height: math.unit(950, "feet"),
  35863. name: "Front",
  35864. image: {
  35865. source: "./media/characters/vortex/front.svg",
  35866. extra: 1497/1434,
  35867. bottom: 56/1553
  35868. }
  35869. },
  35870. maw: {
  35871. height: math.unit(285, "feet"),
  35872. name: "Maw",
  35873. image: {
  35874. source: "./media/characters/vortex/maw.svg"
  35875. }
  35876. },
  35877. },
  35878. [
  35879. {
  35880. name: "Macro",
  35881. height: math.unit(950, "feet"),
  35882. default: true
  35883. },
  35884. ]
  35885. ))
  35886. characterMakers.push(() => makeCharacter(
  35887. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35888. {
  35889. front: {
  35890. height: math.unit(600, "feet"),
  35891. weight: math.unit(0.02, "grams"),
  35892. name: "Front",
  35893. image: {
  35894. source: "./media/characters/doodle/front.svg",
  35895. extra: 1578/1413,
  35896. bottom: 37/1615
  35897. }
  35898. },
  35899. },
  35900. [
  35901. {
  35902. name: "Macro",
  35903. height: math.unit(600, "feet"),
  35904. default: true
  35905. },
  35906. ]
  35907. ))
  35908. characterMakers.push(() => makeCharacter(
  35909. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35910. {
  35911. front: {
  35912. height: math.unit(6 + 6/12, "feet"),
  35913. name: "Front",
  35914. image: {
  35915. source: "./media/characters/jai/front.svg",
  35916. extra: 1645/1534,
  35917. bottom: 115/1760
  35918. }
  35919. },
  35920. },
  35921. [
  35922. {
  35923. name: "Normal",
  35924. height: math.unit(6 + 6/12, "feet"),
  35925. default: true
  35926. },
  35927. ]
  35928. ))
  35929. characterMakers.push(() => makeCharacter(
  35930. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35931. {
  35932. front: {
  35933. height: math.unit(6 + 8/12, "feet"),
  35934. name: "Front",
  35935. image: {
  35936. source: "./media/characters/pixel/front.svg",
  35937. extra: 1900/1735,
  35938. bottom: 63/1963
  35939. }
  35940. },
  35941. },
  35942. [
  35943. {
  35944. name: "Normal",
  35945. height: math.unit(6 + 8/12, "feet"),
  35946. default: true
  35947. },
  35948. ]
  35949. ))
  35950. characterMakers.push(() => makeCharacter(
  35951. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35952. {
  35953. back: {
  35954. height: math.unit(4 + 1/12, "feet"),
  35955. weight: math.unit(75, "lb"),
  35956. name: "Back",
  35957. image: {
  35958. source: "./media/characters/rhett/back.svg",
  35959. extra: 930/878,
  35960. bottom: 25/955
  35961. }
  35962. },
  35963. front: {
  35964. height: math.unit(4 + 1/12, "feet"),
  35965. weight: math.unit(75, "lb"),
  35966. name: "Front",
  35967. image: {
  35968. source: "./media/characters/rhett/front.svg",
  35969. extra: 1682/1586,
  35970. bottom: 92/1774
  35971. }
  35972. },
  35973. },
  35974. [
  35975. {
  35976. name: "Micro",
  35977. height: math.unit(8, "inches")
  35978. },
  35979. {
  35980. name: "Tiny",
  35981. height: math.unit(2, "feet")
  35982. },
  35983. {
  35984. name: "Normal",
  35985. height: math.unit(4 + 1/12, "feet"),
  35986. default: true
  35987. },
  35988. ]
  35989. ))
  35990. characterMakers.push(() => makeCharacter(
  35991. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35992. {
  35993. front: {
  35994. height: math.unit(3 + 3/12, "feet"),
  35995. name: "Front",
  35996. image: {
  35997. source: "./media/characters/penny/front.svg",
  35998. extra: 1406/1311,
  35999. bottom: 26/1432
  36000. }
  36001. },
  36002. },
  36003. [
  36004. {
  36005. name: "Normal",
  36006. height: math.unit(3 + 3/12, "feet"),
  36007. default: true
  36008. },
  36009. ]
  36010. ))
  36011. characterMakers.push(() => makeCharacter(
  36012. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36013. {
  36014. front: {
  36015. height: math.unit(4 + 11/12, "feet"),
  36016. name: "Front",
  36017. image: {
  36018. source: "./media/characters/monty/front.svg",
  36019. extra: 1479/1209,
  36020. bottom: 0/1479
  36021. }
  36022. },
  36023. },
  36024. [
  36025. {
  36026. name: "Normal",
  36027. height: math.unit(4 + 11/12, "feet"),
  36028. default: true
  36029. },
  36030. ]
  36031. ))
  36032. characterMakers.push(() => makeCharacter(
  36033. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36034. {
  36035. front: {
  36036. height: math.unit(8 + 4/12, "feet"),
  36037. name: "Front",
  36038. image: {
  36039. source: "./media/characters/sterling/front.svg",
  36040. extra: 1420/1236,
  36041. bottom: 27/1447
  36042. }
  36043. },
  36044. },
  36045. [
  36046. {
  36047. name: "Normal",
  36048. height: math.unit(8 + 4/12, "feet"),
  36049. default: true
  36050. },
  36051. ]
  36052. ))
  36053. characterMakers.push(() => makeCharacter(
  36054. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36055. {
  36056. front: {
  36057. height: math.unit(15, "feet"),
  36058. name: "Front",
  36059. image: {
  36060. source: "./media/characters/marble/front.svg",
  36061. extra: 973/937,
  36062. bottom: 32/1005
  36063. }
  36064. },
  36065. },
  36066. [
  36067. {
  36068. name: "Normal",
  36069. height: math.unit(15, "feet"),
  36070. default: true
  36071. },
  36072. ]
  36073. ))
  36074. characterMakers.push(() => makeCharacter(
  36075. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36076. {
  36077. front: {
  36078. height: math.unit(3, "inches"),
  36079. name: "Front",
  36080. image: {
  36081. source: "./media/characters/powder/front.svg",
  36082. extra: 1504/1334,
  36083. bottom: 518/2022
  36084. }
  36085. },
  36086. },
  36087. [
  36088. {
  36089. name: "Normal",
  36090. height: math.unit(3, "inches"),
  36091. default: true
  36092. },
  36093. ]
  36094. ))
  36095. characterMakers.push(() => makeCharacter(
  36096. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36097. {
  36098. front: {
  36099. height: math.unit(4 + 5/12, "feet"),
  36100. name: "Front",
  36101. image: {
  36102. source: "./media/characters/joey-raccoon/front.svg",
  36103. extra: 1273/1197,
  36104. bottom: 0/1273
  36105. }
  36106. },
  36107. },
  36108. [
  36109. {
  36110. name: "Normal",
  36111. height: math.unit(4 + 5/12, "feet"),
  36112. default: true
  36113. },
  36114. ]
  36115. ))
  36116. characterMakers.push(() => makeCharacter(
  36117. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36118. {
  36119. front: {
  36120. height: math.unit(8 + 4/12, "feet"),
  36121. name: "Front",
  36122. image: {
  36123. source: "./media/characters/vick/front.svg",
  36124. extra: 2187/2118,
  36125. bottom: 47/2234
  36126. }
  36127. },
  36128. },
  36129. [
  36130. {
  36131. name: "Normal",
  36132. height: math.unit(8 + 4/12, "feet"),
  36133. default: true
  36134. },
  36135. ]
  36136. ))
  36137. characterMakers.push(() => makeCharacter(
  36138. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36139. {
  36140. front: {
  36141. height: math.unit(5 + 5/12, "feet"),
  36142. name: "Front",
  36143. image: {
  36144. source: "./media/characters/mitsy/front.svg",
  36145. extra: 1842/1695,
  36146. bottom: 0/1842
  36147. }
  36148. },
  36149. },
  36150. [
  36151. {
  36152. name: "Normal",
  36153. height: math.unit(5 + 5/12, "feet"),
  36154. default: true
  36155. },
  36156. ]
  36157. ))
  36158. characterMakers.push(() => makeCharacter(
  36159. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36160. {
  36161. front: {
  36162. height: math.unit(6 + 3/12, "feet"),
  36163. name: "Front",
  36164. image: {
  36165. source: "./media/characters/silvy/front.svg",
  36166. extra: 1995/1836,
  36167. bottom: 225/2220
  36168. }
  36169. },
  36170. },
  36171. [
  36172. {
  36173. name: "Normal",
  36174. height: math.unit(6 + 3/12, "feet"),
  36175. default: true
  36176. },
  36177. ]
  36178. ))
  36179. characterMakers.push(() => makeCharacter(
  36180. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36181. {
  36182. front: {
  36183. height: math.unit(3 + 8/12, "feet"),
  36184. name: "Front",
  36185. image: {
  36186. source: "./media/characters/rodney/front.svg",
  36187. extra: 1956/1747,
  36188. bottom: 31/1987
  36189. }
  36190. },
  36191. frontDressed: {
  36192. height: math.unit(2.9, "feet"),
  36193. name: "Front (Dressed)",
  36194. image: {
  36195. source: "./media/characters/rodney/front-dressed.svg",
  36196. extra: 1382/1241,
  36197. bottom: 385/1767
  36198. }
  36199. },
  36200. },
  36201. [
  36202. {
  36203. name: "Normal",
  36204. height: math.unit(3 + 8/12, "feet"),
  36205. default: true
  36206. },
  36207. ]
  36208. ))
  36209. characterMakers.push(() => makeCharacter(
  36210. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36211. {
  36212. front: {
  36213. height: math.unit(5 + 9/12, "feet"),
  36214. weight: math.unit(194, "lbs"),
  36215. name: "Front",
  36216. image: {
  36217. source: "./media/characters/zakail-sudekai/front.svg",
  36218. extra: 2696/2533,
  36219. bottom: 248/2944
  36220. }
  36221. },
  36222. maw: {
  36223. height: math.unit(1.35, "feet"),
  36224. name: "Maw",
  36225. image: {
  36226. source: "./media/characters/zakail-sudekai/maw.svg"
  36227. }
  36228. },
  36229. },
  36230. [
  36231. {
  36232. name: "Normal",
  36233. height: math.unit(5 + 9/12, "feet"),
  36234. default: true
  36235. },
  36236. ]
  36237. ))
  36238. characterMakers.push(() => makeCharacter(
  36239. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36240. {
  36241. front: {
  36242. height: math.unit(8 + 4/12, "feet"),
  36243. weight: math.unit(1200, "lb"),
  36244. name: "Front",
  36245. image: {
  36246. source: "./media/characters/eleanor/front.svg",
  36247. extra: 1226/1192,
  36248. bottom: 52/1278
  36249. }
  36250. },
  36251. back: {
  36252. height: math.unit(8 + 4/12, "feet"),
  36253. weight: math.unit(1200, "lb"),
  36254. name: "Back",
  36255. image: {
  36256. source: "./media/characters/eleanor/back.svg",
  36257. extra: 1242/1184,
  36258. bottom: 60/1302
  36259. }
  36260. },
  36261. head: {
  36262. height: math.unit(2.62, "feet"),
  36263. name: "Head",
  36264. image: {
  36265. source: "./media/characters/eleanor/head.svg"
  36266. }
  36267. },
  36268. },
  36269. [
  36270. {
  36271. name: "Normal",
  36272. height: math.unit(8 + 4/12, "feet"),
  36273. default: true
  36274. },
  36275. ]
  36276. ))
  36277. characterMakers.push(() => makeCharacter(
  36278. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36279. {
  36280. front: {
  36281. height: math.unit(8 + 4/12, "feet"),
  36282. weight: math.unit(750, "lb"),
  36283. name: "Front",
  36284. image: {
  36285. source: "./media/characters/tanya/front.svg",
  36286. extra: 1749/1615,
  36287. bottom: 33/1782
  36288. }
  36289. },
  36290. },
  36291. [
  36292. {
  36293. name: "Normal",
  36294. height: math.unit(8 + 4/12, "feet"),
  36295. default: true
  36296. },
  36297. ]
  36298. ))
  36299. characterMakers.push(() => makeCharacter(
  36300. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36301. {
  36302. front: {
  36303. height: math.unit(5, "feet"),
  36304. weight: math.unit(225, "lb"),
  36305. name: "Front",
  36306. image: {
  36307. source: "./media/characters/cindy/front.svg",
  36308. extra: 1320/1250,
  36309. bottom: 42/1362
  36310. }
  36311. },
  36312. frontDressed: {
  36313. height: math.unit(5, "feet"),
  36314. weight: math.unit(225, "lb"),
  36315. name: "Front (Dressed)",
  36316. image: {
  36317. source: "./media/characters/cindy/front-dressed.svg",
  36318. extra: 1320/1250,
  36319. bottom: 42/1362
  36320. }
  36321. },
  36322. back: {
  36323. height: math.unit(5, "feet"),
  36324. weight: math.unit(225, "lb"),
  36325. name: "Back",
  36326. image: {
  36327. source: "./media/characters/cindy/back.svg",
  36328. extra: 1384/1346,
  36329. bottom: 14/1398
  36330. }
  36331. },
  36332. },
  36333. [
  36334. {
  36335. name: "Normal",
  36336. height: math.unit(5, "feet"),
  36337. default: true
  36338. },
  36339. ]
  36340. ))
  36341. characterMakers.push(() => makeCharacter(
  36342. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36343. {
  36344. front: {
  36345. height: math.unit(6 + 9/12, "feet"),
  36346. weight: math.unit(440, "lb"),
  36347. name: "Front",
  36348. image: {
  36349. source: "./media/characters/wilbur-owen/front.svg",
  36350. extra: 1575/1448,
  36351. bottom: 72/1647
  36352. }
  36353. },
  36354. back: {
  36355. height: math.unit(6 + 9/12, "feet"),
  36356. weight: math.unit(440, "lb"),
  36357. name: "Back",
  36358. image: {
  36359. source: "./media/characters/wilbur-owen/back.svg",
  36360. extra: 1578/1445,
  36361. bottom: 36/1614
  36362. }
  36363. },
  36364. },
  36365. [
  36366. {
  36367. name: "Normal",
  36368. height: math.unit(6 + 9/12, "feet"),
  36369. default: true
  36370. },
  36371. ]
  36372. ))
  36373. characterMakers.push(() => makeCharacter(
  36374. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36375. {
  36376. front: {
  36377. height: math.unit(6 + 5/12, "feet"),
  36378. weight: math.unit(650, "lb"),
  36379. name: "Front",
  36380. image: {
  36381. source: "./media/characters/keegan/front.svg",
  36382. extra: 2387/2198,
  36383. bottom: 33/2420
  36384. }
  36385. },
  36386. side: {
  36387. height: math.unit(6 + 5/12, "feet"),
  36388. weight: math.unit(650, "lb"),
  36389. name: "Side",
  36390. image: {
  36391. source: "./media/characters/keegan/side.svg",
  36392. extra: 2390/2202,
  36393. bottom: 47/2437
  36394. }
  36395. },
  36396. back: {
  36397. height: math.unit(6 + 5/12, "feet"),
  36398. weight: math.unit(650, "lb"),
  36399. name: "Back",
  36400. image: {
  36401. source: "./media/characters/keegan/back.svg",
  36402. extra: 2418/2268,
  36403. bottom: 15/2433
  36404. }
  36405. },
  36406. frontSfw: {
  36407. height: math.unit(6 + 5/12, "feet"),
  36408. weight: math.unit(650, "lb"),
  36409. name: "Front (SFW)",
  36410. image: {
  36411. source: "./media/characters/keegan/front-sfw.svg",
  36412. extra: 2387/2198,
  36413. bottom: 33/2420
  36414. }
  36415. },
  36416. beans: {
  36417. height: math.unit(1.85, "feet"),
  36418. name: "Beans",
  36419. image: {
  36420. source: "./media/characters/keegan/beans.svg"
  36421. }
  36422. },
  36423. },
  36424. [
  36425. {
  36426. name: "Normal",
  36427. height: math.unit(6 + 5/12, "feet"),
  36428. default: true
  36429. },
  36430. ]
  36431. ))
  36432. characterMakers.push(() => makeCharacter(
  36433. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36434. {
  36435. front: {
  36436. height: math.unit(9, "feet"),
  36437. name: "Front",
  36438. image: {
  36439. source: "./media/characters/colton/front.svg",
  36440. extra: 1589/1326,
  36441. bottom: 139/1728
  36442. }
  36443. },
  36444. },
  36445. [
  36446. {
  36447. name: "Normal",
  36448. height: math.unit(9, "feet"),
  36449. default: true
  36450. },
  36451. ]
  36452. ))
  36453. characterMakers.push(() => makeCharacter(
  36454. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36455. {
  36456. front: {
  36457. height: math.unit(2 + 9/12, "feet"),
  36458. name: "Front",
  36459. image: {
  36460. source: "./media/characters/bora/front.svg",
  36461. extra: 1265/1250,
  36462. bottom: 24/1289
  36463. }
  36464. },
  36465. },
  36466. [
  36467. {
  36468. name: "Normal",
  36469. height: math.unit(2 + 9/12, "feet"),
  36470. default: true
  36471. },
  36472. ]
  36473. ))
  36474. characterMakers.push(() => makeCharacter(
  36475. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36476. {
  36477. front: {
  36478. height: math.unit(8, "feet"),
  36479. name: "Front",
  36480. image: {
  36481. source: "./media/characters/myu-myu/front.svg",
  36482. extra: 1949/1857,
  36483. bottom: 90/2039
  36484. }
  36485. },
  36486. },
  36487. [
  36488. {
  36489. name: "Normal",
  36490. height: math.unit(8, "feet"),
  36491. default: true
  36492. },
  36493. {
  36494. name: "Big",
  36495. height: math.unit(15, "feet")
  36496. },
  36497. {
  36498. name: "BIG",
  36499. height: math.unit(25, "feet")
  36500. },
  36501. ]
  36502. ))
  36503. characterMakers.push(() => makeCharacter(
  36504. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36505. {
  36506. side: {
  36507. height: math.unit(7 + 5/12, "feet"),
  36508. weight: math.unit(2800, "lb"),
  36509. name: "Side",
  36510. image: {
  36511. source: "./media/characters/haloren/side.svg",
  36512. extra: 1793/409,
  36513. bottom: 59/1852
  36514. }
  36515. },
  36516. frontPaw: {
  36517. height: math.unit(2.36, "feet"),
  36518. name: "Front paw",
  36519. image: {
  36520. source: "./media/characters/haloren/front-paw.svg"
  36521. }
  36522. },
  36523. hindPaw: {
  36524. height: math.unit(3.18, "feet"),
  36525. name: "Hind paw",
  36526. image: {
  36527. source: "./media/characters/haloren/hind-paw.svg"
  36528. }
  36529. },
  36530. maw: {
  36531. height: math.unit(5.05, "feet"),
  36532. name: "Maw",
  36533. image: {
  36534. source: "./media/characters/haloren/maw.svg"
  36535. }
  36536. },
  36537. dick: {
  36538. height: math.unit(2.90, "feet"),
  36539. name: "Dick",
  36540. image: {
  36541. source: "./media/characters/haloren/dick.svg"
  36542. }
  36543. },
  36544. },
  36545. [
  36546. {
  36547. name: "Normal",
  36548. height: math.unit(7 + 5/12, "feet"),
  36549. default: true
  36550. },
  36551. {
  36552. name: "Enhanced",
  36553. height: math.unit(14 + 3/12, "feet")
  36554. },
  36555. ]
  36556. ))
  36557. characterMakers.push(() => makeCharacter(
  36558. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36559. {
  36560. front: {
  36561. height: math.unit(171, "cm"),
  36562. name: "Front",
  36563. image: {
  36564. source: "./media/characters/kimmy/front.svg",
  36565. extra: 1491/1435,
  36566. bottom: 53/1544
  36567. }
  36568. },
  36569. },
  36570. [
  36571. {
  36572. name: "Small",
  36573. height: math.unit(9, "cm")
  36574. },
  36575. {
  36576. name: "Normal",
  36577. height: math.unit(171, "cm"),
  36578. default: true
  36579. },
  36580. ]
  36581. ))
  36582. characterMakers.push(() => makeCharacter(
  36583. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36584. {
  36585. front: {
  36586. height: math.unit(8, "feet"),
  36587. weight: math.unit(300, "lb"),
  36588. name: "Front",
  36589. image: {
  36590. source: "./media/characters/galeboomer/front.svg",
  36591. extra: 4651/4415,
  36592. bottom: 162/4813
  36593. }
  36594. },
  36595. back: {
  36596. height: math.unit(8, "feet"),
  36597. weight: math.unit(300, "lb"),
  36598. name: "Back",
  36599. image: {
  36600. source: "./media/characters/galeboomer/back.svg",
  36601. extra: 4544/4314,
  36602. bottom: 16/4560
  36603. }
  36604. },
  36605. frontAlt: {
  36606. height: math.unit(8, "feet"),
  36607. weight: math.unit(300, "lb"),
  36608. name: "Front (Alt)",
  36609. image: {
  36610. source: "./media/characters/galeboomer/front-alt.svg",
  36611. extra: 4458/4228,
  36612. bottom: 68/4526
  36613. }
  36614. },
  36615. maw: {
  36616. height: math.unit(1.2, "feet"),
  36617. name: "Maw",
  36618. image: {
  36619. source: "./media/characters/galeboomer/maw.svg"
  36620. }
  36621. },
  36622. },
  36623. [
  36624. {
  36625. name: "Normal",
  36626. height: math.unit(8, "feet"),
  36627. default: true
  36628. },
  36629. ]
  36630. ))
  36631. characterMakers.push(() => makeCharacter(
  36632. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36633. {
  36634. front: {
  36635. height: math.unit(5 + 9/12, "feet"),
  36636. weight: math.unit(120, "lb"),
  36637. name: "Front",
  36638. image: {
  36639. source: "./media/characters/chyr/front.svg",
  36640. extra: 1323/1254,
  36641. bottom: 63/1386
  36642. }
  36643. },
  36644. back: {
  36645. height: math.unit(5 + 9/12, "feet"),
  36646. weight: math.unit(120, "lb"),
  36647. name: "Back",
  36648. image: {
  36649. source: "./media/characters/chyr/back.svg",
  36650. extra: 1323/1252,
  36651. bottom: 48/1371
  36652. }
  36653. },
  36654. },
  36655. [
  36656. {
  36657. name: "Normal",
  36658. height: math.unit(5 + 9/12, "feet"),
  36659. default: true
  36660. },
  36661. ]
  36662. ))
  36663. characterMakers.push(() => makeCharacter(
  36664. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36665. {
  36666. front: {
  36667. height: math.unit(7, "feet"),
  36668. weight: math.unit(310, "lb"),
  36669. name: "Front",
  36670. image: {
  36671. source: "./media/characters/solarus/front.svg",
  36672. extra: 2415/2021,
  36673. bottom: 103/2518
  36674. }
  36675. },
  36676. back: {
  36677. height: math.unit(7, "feet"),
  36678. weight: math.unit(310, "lb"),
  36679. name: "Back",
  36680. image: {
  36681. source: "./media/characters/solarus/back.svg",
  36682. extra: 2463/2089,
  36683. bottom: 79/2542
  36684. }
  36685. },
  36686. },
  36687. [
  36688. {
  36689. name: "Normal",
  36690. height: math.unit(7, "feet"),
  36691. default: true
  36692. },
  36693. ]
  36694. ))
  36695. characterMakers.push(() => makeCharacter(
  36696. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36697. {
  36698. front: {
  36699. height: math.unit(16, "feet"),
  36700. name: "Front",
  36701. image: {
  36702. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36703. extra: 1844/1780,
  36704. bottom: 58/1902
  36705. }
  36706. },
  36707. winterCoat: {
  36708. height: math.unit(16, "feet"),
  36709. name: "Winter Coat",
  36710. image: {
  36711. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36712. extra: 1807/1775,
  36713. bottom: 69/1876
  36714. }
  36715. },
  36716. },
  36717. [
  36718. {
  36719. name: "Normal",
  36720. height: math.unit(16, "feet"),
  36721. default: true
  36722. },
  36723. {
  36724. name: "Chicago Size",
  36725. height: math.unit(560, "feet")
  36726. },
  36727. ]
  36728. ))
  36729. characterMakers.push(() => makeCharacter(
  36730. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36731. {
  36732. front: {
  36733. height: math.unit(11 + 6/12, "feet"),
  36734. weight: math.unit(1366, "lb"),
  36735. name: "Front",
  36736. image: {
  36737. source: "./media/characters/lexor/front.svg",
  36738. extra: 1560/1481,
  36739. bottom: 211/1771
  36740. }
  36741. },
  36742. back: {
  36743. height: math.unit(11 + 6/12, "feet"),
  36744. weight: math.unit(1366, "lb"),
  36745. name: "Back",
  36746. image: {
  36747. source: "./media/characters/lexor/back.svg",
  36748. extra: 1614/1533,
  36749. bottom: 76/1690
  36750. }
  36751. },
  36752. maw: {
  36753. height: math.unit(3, "feet"),
  36754. name: "Maw",
  36755. image: {
  36756. source: "./media/characters/lexor/maw.svg"
  36757. }
  36758. },
  36759. dick: {
  36760. height: math.unit(2.59, "feet"),
  36761. name: "Dick",
  36762. image: {
  36763. source: "./media/characters/lexor/dick.svg"
  36764. }
  36765. },
  36766. },
  36767. [
  36768. {
  36769. name: "Normal",
  36770. height: math.unit(11 + 6/12, "feet"),
  36771. default: true
  36772. },
  36773. ]
  36774. ))
  36775. characterMakers.push(() => makeCharacter(
  36776. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36777. {
  36778. front: {
  36779. height: math.unit(5 + 8/12, "feet"),
  36780. name: "Front",
  36781. image: {
  36782. source: "./media/characters/magnum/front.svg",
  36783. extra: 942/855,
  36784. bottom: 26/968
  36785. }
  36786. },
  36787. },
  36788. [
  36789. {
  36790. name: "Normal",
  36791. height: math.unit(5 + 8/12, "feet"),
  36792. default: true
  36793. },
  36794. ]
  36795. ))
  36796. characterMakers.push(() => makeCharacter(
  36797. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36798. {
  36799. front: {
  36800. height: math.unit(18 + 4/12, "feet"),
  36801. weight: math.unit(1500, "kg"),
  36802. name: "Front",
  36803. image: {
  36804. source: "./media/characters/solas-sharpsman/front.svg",
  36805. extra: 1698/1589,
  36806. bottom: 0/1698
  36807. }
  36808. },
  36809. },
  36810. [
  36811. {
  36812. name: "Normal",
  36813. height: math.unit(18 + 4/12, "feet"),
  36814. default: true
  36815. },
  36816. ]
  36817. ))
  36818. characterMakers.push(() => makeCharacter(
  36819. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36820. {
  36821. front: {
  36822. height: math.unit(5 + 5/12, "feet"),
  36823. weight: math.unit(180, "lb"),
  36824. name: "Front",
  36825. image: {
  36826. source: "./media/characters/october/front.svg",
  36827. extra: 1800/1650,
  36828. bottom: 0/1800
  36829. }
  36830. },
  36831. frontNsfw: {
  36832. height: math.unit(5 + 5/12, "feet"),
  36833. weight: math.unit(180, "lb"),
  36834. name: "Front (NSFW)",
  36835. image: {
  36836. source: "./media/characters/october/front-nsfw.svg",
  36837. extra: 1392/1307,
  36838. bottom: 42/1434
  36839. }
  36840. },
  36841. },
  36842. [
  36843. {
  36844. name: "Normal",
  36845. height: math.unit(5 + 5/12, "feet"),
  36846. default: true
  36847. },
  36848. ]
  36849. ))
  36850. characterMakers.push(() => makeCharacter(
  36851. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36852. {
  36853. front: {
  36854. height: math.unit(8 + 6/12, "feet"),
  36855. name: "Front",
  36856. image: {
  36857. source: "./media/characters/essynkardi/front.svg",
  36858. extra: 1914/1846,
  36859. bottom: 22/1936
  36860. }
  36861. },
  36862. },
  36863. [
  36864. {
  36865. name: "Normal",
  36866. height: math.unit(8 + 6/12, "feet"),
  36867. default: true
  36868. },
  36869. ]
  36870. ))
  36871. characterMakers.push(() => makeCharacter(
  36872. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36873. {
  36874. front: {
  36875. height: math.unit(6 + 6/12, "feet"),
  36876. weight: math.unit(7, "lb"),
  36877. name: "Front",
  36878. image: {
  36879. source: "./media/characters/icky/front.svg",
  36880. extra: 813/782,
  36881. bottom: 66/879
  36882. }
  36883. },
  36884. back: {
  36885. height: math.unit(6 + 6/12, "feet"),
  36886. weight: math.unit(7, "lb"),
  36887. name: "Back",
  36888. image: {
  36889. source: "./media/characters/icky/back.svg",
  36890. extra: 754/735,
  36891. bottom: 56/810
  36892. }
  36893. },
  36894. },
  36895. [
  36896. {
  36897. name: "Normal",
  36898. height: math.unit(6 + 6/12, "feet"),
  36899. default: true
  36900. },
  36901. ]
  36902. ))
  36903. characterMakers.push(() => makeCharacter(
  36904. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36905. {
  36906. front: {
  36907. height: math.unit(15, "feet"),
  36908. name: "Front",
  36909. image: {
  36910. source: "./media/characters/rojas/front.svg",
  36911. extra: 1462/1408,
  36912. bottom: 95/1557
  36913. }
  36914. },
  36915. back: {
  36916. height: math.unit(15, "feet"),
  36917. name: "Back",
  36918. image: {
  36919. source: "./media/characters/rojas/back.svg",
  36920. extra: 1023/954,
  36921. bottom: 28/1051
  36922. }
  36923. },
  36924. },
  36925. [
  36926. {
  36927. name: "Normal",
  36928. height: math.unit(15, "feet"),
  36929. default: true
  36930. },
  36931. ]
  36932. ))
  36933. characterMakers.push(() => makeCharacter(
  36934. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36935. {
  36936. frontHuman: {
  36937. height: math.unit(5 + 7/12, "feet"),
  36938. name: "Front (Human)",
  36939. image: {
  36940. source: "./media/characters/alek-dryagan/front-human.svg",
  36941. extra: 1687/1667,
  36942. bottom: 69/1756
  36943. }
  36944. },
  36945. backHuman: {
  36946. height: math.unit(5 + 7/12, "feet"),
  36947. name: "Back (Human)",
  36948. image: {
  36949. source: "./media/characters/alek-dryagan/back-human.svg",
  36950. extra: 1670/1649,
  36951. bottom: 65/1735
  36952. }
  36953. },
  36954. frontDemi: {
  36955. height: math.unit(65, "feet"),
  36956. name: "Front (Demi)",
  36957. image: {
  36958. source: "./media/characters/alek-dryagan/front-demi.svg",
  36959. extra: 1669/1642,
  36960. bottom: 49/1718
  36961. }
  36962. },
  36963. backDemi: {
  36964. height: math.unit(65, "feet"),
  36965. name: "Back (Demi)",
  36966. image: {
  36967. source: "./media/characters/alek-dryagan/back-demi.svg",
  36968. extra: 1658/1637,
  36969. bottom: 40/1698
  36970. }
  36971. },
  36972. mawHuman: {
  36973. height: math.unit(0.3, "feet"),
  36974. name: "Maw (Human)",
  36975. image: {
  36976. source: "./media/characters/alek-dryagan/maw-human.svg"
  36977. }
  36978. },
  36979. mawDemi: {
  36980. height: math.unit(3.8, "feet"),
  36981. name: "Maw (Demi)",
  36982. image: {
  36983. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36984. }
  36985. },
  36986. },
  36987. [
  36988. {
  36989. name: "Normal",
  36990. height: math.unit(5 + 7/12, "feet"),
  36991. default: true
  36992. },
  36993. ]
  36994. ))
  36995. characterMakers.push(() => makeCharacter(
  36996. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36997. {
  36998. frontHuman: {
  36999. height: math.unit(5 + 2/12, "feet"),
  37000. name: "Front (Human)",
  37001. image: {
  37002. source: "./media/characters/gen/front-human.svg",
  37003. extra: 1627/1538,
  37004. bottom: 71/1698
  37005. }
  37006. },
  37007. backHuman: {
  37008. height: math.unit(5 + 2/12, "feet"),
  37009. name: "Back (Human)",
  37010. image: {
  37011. source: "./media/characters/gen/back-human.svg",
  37012. extra: 1638/1548,
  37013. bottom: 69/1707
  37014. }
  37015. },
  37016. frontDemi: {
  37017. height: math.unit(5 + 2/12, "feet"),
  37018. name: "Front (Demi)",
  37019. image: {
  37020. source: "./media/characters/gen/front-demi.svg",
  37021. extra: 1627/1538,
  37022. bottom: 71/1698
  37023. }
  37024. },
  37025. backDemi: {
  37026. height: math.unit(5 + 2/12, "feet"),
  37027. name: "Back (Demi)",
  37028. image: {
  37029. source: "./media/characters/gen/back-demi.svg",
  37030. extra: 1638/1548,
  37031. bottom: 69/1707
  37032. }
  37033. },
  37034. },
  37035. [
  37036. {
  37037. name: "Normal",
  37038. height: math.unit(5 + 2/12, "feet"),
  37039. default: true
  37040. },
  37041. ]
  37042. ))
  37043. characterMakers.push(() => makeCharacter(
  37044. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37045. {
  37046. frontImp: {
  37047. height: math.unit(1 + 11/12, "feet"),
  37048. name: "Front (Imp)",
  37049. image: {
  37050. source: "./media/characters/max-kobold/front-imp.svg",
  37051. extra: 1238/1134,
  37052. bottom: 81/1319
  37053. }
  37054. },
  37055. backImp: {
  37056. height: math.unit(1 + 11/12, "feet"),
  37057. name: "Back (Imp)",
  37058. image: {
  37059. source: "./media/characters/max-kobold/back-imp.svg",
  37060. extra: 1334/1175,
  37061. bottom: 34/1368
  37062. }
  37063. },
  37064. frontDemi: {
  37065. height: math.unit(5 + 9/12, "feet"),
  37066. name: "Front (Demi)",
  37067. image: {
  37068. source: "./media/characters/max-kobold/front-demi.svg",
  37069. extra: 1715/1685,
  37070. bottom: 54/1769
  37071. }
  37072. },
  37073. backDemi: {
  37074. height: math.unit(5 + 9/12, "feet"),
  37075. name: "Back (Demi)",
  37076. image: {
  37077. source: "./media/characters/max-kobold/back-demi.svg",
  37078. extra: 1752/1729,
  37079. bottom: 41/1793
  37080. }
  37081. },
  37082. handImp: {
  37083. height: math.unit(0.45, "feet"),
  37084. name: "Hand (Imp)",
  37085. image: {
  37086. source: "./media/characters/max-kobold/hand.svg"
  37087. }
  37088. },
  37089. pawImp: {
  37090. height: math.unit(0.46, "feet"),
  37091. name: "Paw (Imp)",
  37092. image: {
  37093. source: "./media/characters/max-kobold/paw.svg"
  37094. }
  37095. },
  37096. handDemi: {
  37097. height: math.unit(0.80, "feet"),
  37098. name: "Hand (Demi)",
  37099. image: {
  37100. source: "./media/characters/max-kobold/hand.svg"
  37101. }
  37102. },
  37103. pawDemi: {
  37104. height: math.unit(1.1, "feet"),
  37105. name: "Paw (Demi)",
  37106. image: {
  37107. source: "./media/characters/max-kobold/paw.svg"
  37108. }
  37109. },
  37110. headImp: {
  37111. height: math.unit(1.33, "feet"),
  37112. name: "Head (Imp)",
  37113. image: {
  37114. source: "./media/characters/max-kobold/head-imp.svg"
  37115. }
  37116. },
  37117. mawImp: {
  37118. height: math.unit(0.75, "feet"),
  37119. name: "Maw (Imp)",
  37120. image: {
  37121. source: "./media/characters/max-kobold/maw-imp.svg"
  37122. }
  37123. },
  37124. mawDemi: {
  37125. height: math.unit(0.42, "feet"),
  37126. name: "Maw (Demi)",
  37127. image: {
  37128. source: "./media/characters/max-kobold/maw-demi.svg"
  37129. }
  37130. },
  37131. },
  37132. [
  37133. {
  37134. name: "Normal",
  37135. height: math.unit(1 + 11/12, "feet"),
  37136. default: true
  37137. },
  37138. ]
  37139. ))
  37140. characterMakers.push(() => makeCharacter(
  37141. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37142. {
  37143. front: {
  37144. height: math.unit(7 + 5/12, "feet"),
  37145. name: "Front",
  37146. image: {
  37147. source: "./media/characters/carbon/front.svg",
  37148. extra: 1754/1689,
  37149. bottom: 65/1819
  37150. }
  37151. },
  37152. back: {
  37153. height: math.unit(7 + 5/12, "feet"),
  37154. name: "Back",
  37155. image: {
  37156. source: "./media/characters/carbon/back.svg",
  37157. extra: 1762/1695,
  37158. bottom: 24/1786
  37159. }
  37160. },
  37161. frontGigantamax: {
  37162. height: math.unit(150, "feet"),
  37163. name: "Front (Gigantamax)",
  37164. image: {
  37165. source: "./media/characters/carbon/front-gigantamax.svg",
  37166. extra: 1826/1669,
  37167. bottom: 59/1885
  37168. }
  37169. },
  37170. backGigantamax: {
  37171. height: math.unit(150, "feet"),
  37172. name: "Back (Gigantamax)",
  37173. image: {
  37174. source: "./media/characters/carbon/back-gigantamax.svg",
  37175. extra: 1796/1653,
  37176. bottom: 53/1849
  37177. }
  37178. },
  37179. maw: {
  37180. height: math.unit(0.48, "feet"),
  37181. name: "Maw",
  37182. image: {
  37183. source: "./media/characters/carbon/maw.svg"
  37184. }
  37185. },
  37186. mawGigantamax: {
  37187. height: math.unit(7.5, "feet"),
  37188. name: "Maw (Gigantamax)",
  37189. image: {
  37190. source: "./media/characters/carbon/maw-gigantamax.svg"
  37191. }
  37192. },
  37193. },
  37194. [
  37195. {
  37196. name: "Normal",
  37197. height: math.unit(7 + 5/12, "feet"),
  37198. default: true
  37199. },
  37200. ]
  37201. ))
  37202. characterMakers.push(() => makeCharacter(
  37203. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37204. {
  37205. front: {
  37206. height: math.unit(6, "feet"),
  37207. name: "Front",
  37208. image: {
  37209. source: "./media/characters/maverick/front.svg",
  37210. extra: 1672/1661,
  37211. bottom: 85/1757
  37212. }
  37213. },
  37214. back: {
  37215. height: math.unit(6, "feet"),
  37216. name: "Back",
  37217. image: {
  37218. source: "./media/characters/maverick/back.svg",
  37219. extra: 1642/1631,
  37220. bottom: 38/1680
  37221. }
  37222. },
  37223. },
  37224. [
  37225. {
  37226. name: "Normal",
  37227. height: math.unit(6, "feet"),
  37228. default: true
  37229. },
  37230. ]
  37231. ))
  37232. characterMakers.push(() => makeCharacter(
  37233. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37234. {
  37235. front: {
  37236. height: math.unit(15, "feet"),
  37237. weight: math.unit(615, "lb"),
  37238. name: "Front",
  37239. image: {
  37240. source: "./media/characters/grockle/front.svg",
  37241. extra: 1535/1427,
  37242. bottom: 56/1591
  37243. }
  37244. },
  37245. },
  37246. [
  37247. {
  37248. name: "Normal",
  37249. height: math.unit(15, "feet"),
  37250. default: true
  37251. },
  37252. {
  37253. name: "Large",
  37254. height: math.unit(150, "feet")
  37255. },
  37256. {
  37257. name: "Macro",
  37258. height: math.unit(1876, "feet")
  37259. },
  37260. {
  37261. name: "Mega Macro",
  37262. height: math.unit(121940, "feet")
  37263. },
  37264. {
  37265. name: "Giga Macro",
  37266. height: math.unit(750, "km")
  37267. },
  37268. {
  37269. name: "Tera Macro",
  37270. height: math.unit(750000, "km")
  37271. },
  37272. {
  37273. name: "Galactic",
  37274. height: math.unit(1.4e5, "km")
  37275. },
  37276. {
  37277. name: "Godlike",
  37278. height: math.unit(9.8e280, "galaxies")
  37279. },
  37280. ]
  37281. ))
  37282. characterMakers.push(() => makeCharacter(
  37283. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37284. {
  37285. front: {
  37286. height: math.unit(11, "meters"),
  37287. weight: math.unit(20, "tonnes"),
  37288. name: "Front",
  37289. image: {
  37290. source: "./media/characters/alistair/front.svg",
  37291. extra: 1265/1009,
  37292. bottom: 93/1358
  37293. }
  37294. },
  37295. },
  37296. [
  37297. {
  37298. name: "Normal",
  37299. height: math.unit(11, "meters"),
  37300. default: true
  37301. },
  37302. ]
  37303. ))
  37304. characterMakers.push(() => makeCharacter(
  37305. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37306. {
  37307. front: {
  37308. height: math.unit(5 + 8/12, "feet"),
  37309. name: "Front",
  37310. image: {
  37311. source: "./media/characters/haruka/front.svg",
  37312. extra: 2012/1952,
  37313. bottom: 0/2012
  37314. }
  37315. },
  37316. },
  37317. [
  37318. {
  37319. name: "Normal",
  37320. height: math.unit(5 + 8/12, "feet"),
  37321. default: true
  37322. },
  37323. ]
  37324. ))
  37325. characterMakers.push(() => makeCharacter(
  37326. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37327. {
  37328. back: {
  37329. height: math.unit(9, "feet"),
  37330. name: "Back",
  37331. image: {
  37332. source: "./media/characters/vivian-sylveon/back.svg",
  37333. extra: 1853/1714,
  37334. bottom: 0/1853
  37335. }
  37336. },
  37337. },
  37338. [
  37339. {
  37340. name: "Normal",
  37341. height: math.unit(9, "feet"),
  37342. default: true
  37343. },
  37344. {
  37345. name: "Macro",
  37346. height: math.unit(500, "feet")
  37347. },
  37348. {
  37349. name: "Megamacro",
  37350. height: math.unit(600, "miles")
  37351. },
  37352. {
  37353. name: "Gigamacro",
  37354. height: math.unit(30000, "miles")
  37355. },
  37356. ]
  37357. ))
  37358. characterMakers.push(() => makeCharacter(
  37359. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37360. {
  37361. anthro: {
  37362. height: math.unit(5 + 10/12, "feet"),
  37363. weight: math.unit(100, "lb"),
  37364. name: "Anthro",
  37365. image: {
  37366. source: "./media/characters/daiki/anthro.svg",
  37367. extra: 1115/1027,
  37368. bottom: 69/1184
  37369. }
  37370. },
  37371. feral: {
  37372. height: math.unit(200, "feet"),
  37373. name: "Feral",
  37374. image: {
  37375. source: "./media/characters/daiki/feral.svg",
  37376. extra: 1256/313,
  37377. bottom: 39/1295
  37378. }
  37379. },
  37380. feralHead: {
  37381. height: math.unit(171, "feet"),
  37382. name: "Feral Head",
  37383. image: {
  37384. source: "./media/characters/daiki/feral-head.svg"
  37385. }
  37386. },
  37387. manaDragon: {
  37388. height: math.unit(170, "meters"),
  37389. name: "Mana-dragon",
  37390. image: {
  37391. source: "./media/characters/daiki/mana-dragon.svg",
  37392. extra: 763/420,
  37393. bottom: 97/860
  37394. }
  37395. },
  37396. },
  37397. [
  37398. {
  37399. name: "Normal",
  37400. height: math.unit(5 + 10/12, "feet"),
  37401. default: true
  37402. },
  37403. ]
  37404. ))
  37405. characterMakers.push(() => makeCharacter(
  37406. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37407. {
  37408. fullyEquippedFront: {
  37409. height: math.unit(3 + 1/12, "feet"),
  37410. weight: math.unit(24, "lb"),
  37411. name: "Fully Equipped (Front)",
  37412. image: {
  37413. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37414. extra: 687/605,
  37415. bottom: 18/705
  37416. }
  37417. },
  37418. fullyEquippedBack: {
  37419. height: math.unit(3 + 1/12, "feet"),
  37420. weight: math.unit(24, "lb"),
  37421. name: "Fully Equipped (Back)",
  37422. image: {
  37423. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37424. extra: 689/590,
  37425. bottom: 18/707
  37426. }
  37427. },
  37428. dailyWear: {
  37429. height: math.unit(3 + 1/12, "feet"),
  37430. weight: math.unit(24, "lb"),
  37431. name: "Daily Wear",
  37432. image: {
  37433. source: "./media/characters/tea-spot/daily-wear.svg",
  37434. extra: 701/620,
  37435. bottom: 21/722
  37436. }
  37437. },
  37438. maidWork: {
  37439. height: math.unit(3 + 1/12, "feet"),
  37440. weight: math.unit(24, "lb"),
  37441. name: "Maid Work",
  37442. image: {
  37443. source: "./media/characters/tea-spot/maid-work.svg",
  37444. extra: 693/609,
  37445. bottom: 15/708
  37446. }
  37447. },
  37448. },
  37449. [
  37450. {
  37451. name: "Normal",
  37452. height: math.unit(3 + 1/12, "feet"),
  37453. default: true
  37454. },
  37455. ]
  37456. ))
  37457. characterMakers.push(() => makeCharacter(
  37458. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37459. {
  37460. front: {
  37461. height: math.unit(175, "cm"),
  37462. weight: math.unit(75, "kg"),
  37463. name: "Front",
  37464. image: {
  37465. source: "./media/characters/chee/front.svg",
  37466. extra: 1796/1740,
  37467. bottom: 40/1836
  37468. }
  37469. },
  37470. },
  37471. [
  37472. {
  37473. name: "Micro-Micro",
  37474. height: math.unit(1, "nm")
  37475. },
  37476. {
  37477. name: "Micro-erst",
  37478. height: math.unit(1, "micrometer")
  37479. },
  37480. {
  37481. name: "Micro-er",
  37482. height: math.unit(1, "cm")
  37483. },
  37484. {
  37485. name: "Normal",
  37486. height: math.unit(175, "cm"),
  37487. default: true
  37488. },
  37489. {
  37490. name: "Macro",
  37491. height: math.unit(100, "m")
  37492. },
  37493. {
  37494. name: "Macro-er",
  37495. height: math.unit(1, "km")
  37496. },
  37497. {
  37498. name: "Macro-erst",
  37499. height: math.unit(10, "km")
  37500. },
  37501. {
  37502. name: "Macro-Macro",
  37503. height: math.unit(100, "km")
  37504. },
  37505. ]
  37506. ))
  37507. characterMakers.push(() => makeCharacter(
  37508. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37509. {
  37510. front: {
  37511. height: math.unit(11 + 9/12, "feet"),
  37512. weight: math.unit(935, "lb"),
  37513. name: "Front",
  37514. image: {
  37515. source: "./media/characters/kingsley/front.svg",
  37516. extra: 1803/1674,
  37517. bottom: 127/1930
  37518. }
  37519. },
  37520. frontNude: {
  37521. height: math.unit(11 + 9/12, "feet"),
  37522. weight: math.unit(935, "lb"),
  37523. name: "Front (Nude)",
  37524. image: {
  37525. source: "./media/characters/kingsley/front-nude.svg",
  37526. extra: 1803/1674,
  37527. bottom: 127/1930
  37528. }
  37529. },
  37530. },
  37531. [
  37532. {
  37533. name: "Normal",
  37534. height: math.unit(11 + 9/12, "feet"),
  37535. default: true
  37536. },
  37537. ]
  37538. ))
  37539. characterMakers.push(() => makeCharacter(
  37540. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37541. {
  37542. side: {
  37543. height: math.unit(9, "feet"),
  37544. name: "Side",
  37545. image: {
  37546. source: "./media/characters/rymel/side.svg",
  37547. extra: 792/469,
  37548. bottom: 121/913
  37549. }
  37550. },
  37551. maw: {
  37552. height: math.unit(2.4, "meters"),
  37553. name: "Maw",
  37554. image: {
  37555. source: "./media/characters/rymel/maw.svg"
  37556. }
  37557. },
  37558. },
  37559. [
  37560. {
  37561. name: "House Drake",
  37562. height: math.unit(2, "feet")
  37563. },
  37564. {
  37565. name: "Reduced",
  37566. height: math.unit(4.5, "feet")
  37567. },
  37568. {
  37569. name: "Normal",
  37570. height: math.unit(9, "feet"),
  37571. default: true
  37572. },
  37573. ]
  37574. ))
  37575. characterMakers.push(() => makeCharacter(
  37576. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37577. {
  37578. front: {
  37579. height: math.unit(1.74, "meters"),
  37580. weight: math.unit(55, "kg"),
  37581. name: "Front",
  37582. image: {
  37583. source: "./media/characters/rubus/front.svg",
  37584. extra: 1894/1742,
  37585. bottom: 44/1938
  37586. }
  37587. },
  37588. },
  37589. [
  37590. {
  37591. name: "Normal",
  37592. height: math.unit(1.74, "meters"),
  37593. default: true
  37594. },
  37595. ]
  37596. ))
  37597. characterMakers.push(() => makeCharacter(
  37598. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37599. {
  37600. front: {
  37601. height: math.unit(5 + 2/12, "feet"),
  37602. weight: math.unit(112, "lb"),
  37603. name: "Front",
  37604. image: {
  37605. source: "./media/characters/cassie-kingston/front.svg",
  37606. extra: 1438/1390,
  37607. bottom: 47/1485
  37608. }
  37609. },
  37610. },
  37611. [
  37612. {
  37613. name: "Normal",
  37614. height: math.unit(5 + 2/12, "feet"),
  37615. default: true
  37616. },
  37617. {
  37618. name: "Macro",
  37619. height: math.unit(128, "feet")
  37620. },
  37621. {
  37622. name: "Megamacro",
  37623. height: math.unit(2.56, "miles")
  37624. },
  37625. ]
  37626. ))
  37627. characterMakers.push(() => makeCharacter(
  37628. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37629. {
  37630. front: {
  37631. height: math.unit(7, "feet"),
  37632. name: "Front",
  37633. image: {
  37634. source: "./media/characters/fox/front.svg",
  37635. extra: 1798/1703,
  37636. bottom: 55/1853
  37637. }
  37638. },
  37639. back: {
  37640. height: math.unit(7, "feet"),
  37641. name: "Back",
  37642. image: {
  37643. source: "./media/characters/fox/back.svg",
  37644. extra: 1748/1649,
  37645. bottom: 32/1780
  37646. }
  37647. },
  37648. head: {
  37649. height: math.unit(1.95, "feet"),
  37650. name: "Head",
  37651. image: {
  37652. source: "./media/characters/fox/head.svg"
  37653. }
  37654. },
  37655. dick: {
  37656. height: math.unit(1.33, "feet"),
  37657. name: "Dick",
  37658. image: {
  37659. source: "./media/characters/fox/dick.svg"
  37660. }
  37661. },
  37662. foot: {
  37663. height: math.unit(1, "feet"),
  37664. name: "Foot",
  37665. image: {
  37666. source: "./media/characters/fox/foot.svg"
  37667. }
  37668. },
  37669. paw: {
  37670. height: math.unit(0.92, "feet"),
  37671. name: "Paw",
  37672. image: {
  37673. source: "./media/characters/fox/paw.svg"
  37674. }
  37675. },
  37676. },
  37677. [
  37678. {
  37679. name: "Small",
  37680. height: math.unit(3, "inches")
  37681. },
  37682. {
  37683. name: "\"Realistic\"",
  37684. height: math.unit(7, "feet")
  37685. },
  37686. {
  37687. name: "Normal",
  37688. height: math.unit(150, "feet"),
  37689. default: true
  37690. },
  37691. {
  37692. name: "BIG",
  37693. height: math.unit(1200, "feet")
  37694. },
  37695. {
  37696. name: "👀",
  37697. height: math.unit(5, "miles")
  37698. },
  37699. {
  37700. name: "👀👀👀",
  37701. height: math.unit(64, "miles")
  37702. },
  37703. ]
  37704. ))
  37705. characterMakers.push(() => makeCharacter(
  37706. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37707. {
  37708. front: {
  37709. height: math.unit(625, "feet"),
  37710. name: "Front",
  37711. image: {
  37712. source: "./media/characters/asonja-rossa/front.svg",
  37713. extra: 1833/1686,
  37714. bottom: 24/1857
  37715. }
  37716. },
  37717. back: {
  37718. height: math.unit(625, "feet"),
  37719. name: "Back",
  37720. image: {
  37721. source: "./media/characters/asonja-rossa/back.svg",
  37722. extra: 1852/1753,
  37723. bottom: 26/1878
  37724. }
  37725. },
  37726. },
  37727. [
  37728. {
  37729. name: "Macro",
  37730. height: math.unit(625, "feet"),
  37731. default: true
  37732. },
  37733. ]
  37734. ))
  37735. characterMakers.push(() => makeCharacter(
  37736. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37737. {
  37738. side: {
  37739. height: math.unit(8, "feet"),
  37740. name: "Side",
  37741. image: {
  37742. source: "./media/characters/rezukii/side.svg",
  37743. extra: 979/542,
  37744. bottom: 87/1066
  37745. }
  37746. },
  37747. sitting: {
  37748. height: math.unit(14.6, "feet"),
  37749. name: "Sitting",
  37750. image: {
  37751. source: "./media/characters/rezukii/sitting.svg",
  37752. extra: 1023/813,
  37753. bottom: 45/1068
  37754. }
  37755. },
  37756. },
  37757. [
  37758. {
  37759. name: "Tiny",
  37760. height: math.unit(2, "feet")
  37761. },
  37762. {
  37763. name: "Smol",
  37764. height: math.unit(4, "feet")
  37765. },
  37766. {
  37767. name: "Normal",
  37768. height: math.unit(8, "feet"),
  37769. default: true
  37770. },
  37771. {
  37772. name: "Big",
  37773. height: math.unit(12, "feet")
  37774. },
  37775. {
  37776. name: "Macro",
  37777. height: math.unit(30, "feet")
  37778. },
  37779. ]
  37780. ))
  37781. characterMakers.push(() => makeCharacter(
  37782. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37783. {
  37784. front: {
  37785. height: math.unit(14, "feet"),
  37786. weight: math.unit(9.5, "tonnes"),
  37787. name: "Front",
  37788. image: {
  37789. source: "./media/characters/dawnheart/front.svg",
  37790. extra: 2792/2675,
  37791. bottom: 64/2856
  37792. }
  37793. },
  37794. },
  37795. [
  37796. {
  37797. name: "Normal",
  37798. height: math.unit(14, "feet"),
  37799. default: true
  37800. },
  37801. ]
  37802. ))
  37803. characterMakers.push(() => makeCharacter(
  37804. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37805. {
  37806. front: {
  37807. height: math.unit(1.7, "m"),
  37808. name: "Front",
  37809. image: {
  37810. source: "./media/characters/gladi/front.svg",
  37811. extra: 1460/1362,
  37812. bottom: 19/1479
  37813. }
  37814. },
  37815. back: {
  37816. height: math.unit(1.7, "m"),
  37817. name: "Back",
  37818. image: {
  37819. source: "./media/characters/gladi/back.svg",
  37820. extra: 1459/1357,
  37821. bottom: 12/1471
  37822. }
  37823. },
  37824. feral: {
  37825. height: math.unit(2.05, "m"),
  37826. name: "Feral",
  37827. image: {
  37828. source: "./media/characters/gladi/feral.svg",
  37829. extra: 821/557,
  37830. bottom: 91/912
  37831. }
  37832. },
  37833. },
  37834. [
  37835. {
  37836. name: "Shortest",
  37837. height: math.unit(70, "cm")
  37838. },
  37839. {
  37840. name: "Normal",
  37841. height: math.unit(1.7, "m")
  37842. },
  37843. {
  37844. name: "Macro",
  37845. height: math.unit(10, "m"),
  37846. default: true
  37847. },
  37848. {
  37849. name: "Tallest",
  37850. height: math.unit(200, "m")
  37851. },
  37852. ]
  37853. ))
  37854. characterMakers.push(() => makeCharacter(
  37855. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37856. {
  37857. front: {
  37858. height: math.unit(5 + 7/12, "feet"),
  37859. weight: math.unit(2, "tons"),
  37860. name: "Front",
  37861. image: {
  37862. source: "./media/characters/erdno/front.svg",
  37863. extra: 1234/1129,
  37864. bottom: 35/1269
  37865. }
  37866. },
  37867. angled: {
  37868. height: math.unit(5 + 7/12, "feet"),
  37869. weight: math.unit(2, "tons"),
  37870. name: "Angled",
  37871. image: {
  37872. source: "./media/characters/erdno/angled.svg",
  37873. extra: 1185/1139,
  37874. bottom: 36/1221
  37875. }
  37876. },
  37877. side: {
  37878. height: math.unit(5 + 7/12, "feet"),
  37879. weight: math.unit(2, "tons"),
  37880. name: "Side",
  37881. image: {
  37882. source: "./media/characters/erdno/side.svg",
  37883. extra: 1191/1144,
  37884. bottom: 40/1231
  37885. }
  37886. },
  37887. back: {
  37888. height: math.unit(5 + 7/12, "feet"),
  37889. weight: math.unit(2, "tons"),
  37890. name: "Back",
  37891. image: {
  37892. source: "./media/characters/erdno/back.svg",
  37893. extra: 1202/1146,
  37894. bottom: 17/1219
  37895. }
  37896. },
  37897. frontNsfw: {
  37898. height: math.unit(5 + 7/12, "feet"),
  37899. weight: math.unit(2, "tons"),
  37900. name: "Front (NSFW)",
  37901. image: {
  37902. source: "./media/characters/erdno/front-nsfw.svg",
  37903. extra: 1234/1129,
  37904. bottom: 35/1269
  37905. }
  37906. },
  37907. angledNsfw: {
  37908. height: math.unit(5 + 7/12, "feet"),
  37909. weight: math.unit(2, "tons"),
  37910. name: "Angled (NSFW)",
  37911. image: {
  37912. source: "./media/characters/erdno/angled-nsfw.svg",
  37913. extra: 1185/1139,
  37914. bottom: 36/1221
  37915. }
  37916. },
  37917. sideNsfw: {
  37918. height: math.unit(5 + 7/12, "feet"),
  37919. weight: math.unit(2, "tons"),
  37920. name: "Side (NSFW)",
  37921. image: {
  37922. source: "./media/characters/erdno/side-nsfw.svg",
  37923. extra: 1191/1144,
  37924. bottom: 40/1231
  37925. }
  37926. },
  37927. backNsfw: {
  37928. height: math.unit(5 + 7/12, "feet"),
  37929. weight: math.unit(2, "tons"),
  37930. name: "Back (NSFW)",
  37931. image: {
  37932. source: "./media/characters/erdno/back-nsfw.svg",
  37933. extra: 1202/1146,
  37934. bottom: 17/1219
  37935. }
  37936. },
  37937. frontHyper: {
  37938. height: math.unit(5 + 7/12, "feet"),
  37939. weight: math.unit(2, "tons"),
  37940. name: "Front (Hyper)",
  37941. image: {
  37942. source: "./media/characters/erdno/front-hyper.svg",
  37943. extra: 1298/1136,
  37944. bottom: 35/1333
  37945. }
  37946. },
  37947. },
  37948. [
  37949. {
  37950. name: "Normal",
  37951. height: math.unit(5 + 7/12, "feet"),
  37952. default: true
  37953. },
  37954. {
  37955. name: "Big",
  37956. height: math.unit(5.7, "meters")
  37957. },
  37958. {
  37959. name: "Macro",
  37960. height: math.unit(5.7, "kilometers")
  37961. },
  37962. {
  37963. name: "Megamacro",
  37964. height: math.unit(5.7, "earths")
  37965. },
  37966. ]
  37967. ))
  37968. characterMakers.push(() => makeCharacter(
  37969. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37970. {
  37971. front: {
  37972. height: math.unit(5 + 10/12, "feet"),
  37973. weight: math.unit(150, "lb"),
  37974. name: "Front",
  37975. image: {
  37976. source: "./media/characters/jamie/front.svg",
  37977. extra: 1908/1768,
  37978. bottom: 19/1927
  37979. }
  37980. },
  37981. },
  37982. [
  37983. {
  37984. name: "Minimum",
  37985. height: math.unit(2, "cm")
  37986. },
  37987. {
  37988. name: "Micro",
  37989. height: math.unit(3, "inches")
  37990. },
  37991. {
  37992. name: "Normal",
  37993. height: math.unit(5 + 10/12, "feet"),
  37994. default: true
  37995. },
  37996. {
  37997. name: "Macro",
  37998. height: math.unit(150, "feet")
  37999. },
  38000. {
  38001. name: "Megamacro",
  38002. height: math.unit(10000, "m")
  38003. },
  38004. ]
  38005. ))
  38006. characterMakers.push(() => makeCharacter(
  38007. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38008. {
  38009. front: {
  38010. height: math.unit(2, "meters"),
  38011. weight: math.unit(100, "kg"),
  38012. name: "Front",
  38013. image: {
  38014. source: "./media/characters/shiron/front.svg",
  38015. extra: 2103/1985,
  38016. bottom: 98/2201
  38017. }
  38018. },
  38019. back: {
  38020. height: math.unit(2, "meters"),
  38021. weight: math.unit(100, "kg"),
  38022. name: "Back",
  38023. image: {
  38024. source: "./media/characters/shiron/back.svg",
  38025. extra: 2110/2015,
  38026. bottom: 89/2199
  38027. }
  38028. },
  38029. hand: {
  38030. height: math.unit(0.96, "feet"),
  38031. name: "Hand",
  38032. image: {
  38033. source: "./media/characters/shiron/hand.svg"
  38034. }
  38035. },
  38036. foot: {
  38037. height: math.unit(1.464, "feet"),
  38038. name: "Foot",
  38039. image: {
  38040. source: "./media/characters/shiron/foot.svg"
  38041. }
  38042. },
  38043. },
  38044. [
  38045. {
  38046. name: "Normal",
  38047. height: math.unit(2, "meters")
  38048. },
  38049. {
  38050. name: "Macro",
  38051. height: math.unit(500, "meters"),
  38052. default: true
  38053. },
  38054. {
  38055. name: "Megamacro",
  38056. height: math.unit(20, "km")
  38057. },
  38058. ]
  38059. ))
  38060. characterMakers.push(() => makeCharacter(
  38061. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38062. {
  38063. front: {
  38064. height: math.unit(6, "feet"),
  38065. name: "Front",
  38066. image: {
  38067. source: "./media/characters/sam/front.svg",
  38068. extra: 849/826,
  38069. bottom: 19/868
  38070. }
  38071. },
  38072. },
  38073. [
  38074. {
  38075. name: "Normal",
  38076. height: math.unit(6, "feet"),
  38077. default: true
  38078. },
  38079. ]
  38080. ))
  38081. characterMakers.push(() => makeCharacter(
  38082. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38083. {
  38084. front: {
  38085. height: math.unit(8 + 4/12, "feet"),
  38086. weight: math.unit(122, "kg"),
  38087. name: "Front",
  38088. image: {
  38089. source: "./media/characters/namori-kurogawa/front.svg",
  38090. extra: 1894/1576,
  38091. bottom: 34/1928
  38092. }
  38093. },
  38094. },
  38095. [
  38096. {
  38097. name: "Normal",
  38098. height: math.unit(8 + 4/12, "feet"),
  38099. default: true
  38100. },
  38101. ]
  38102. ))
  38103. characterMakers.push(() => makeCharacter(
  38104. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38105. {
  38106. front: {
  38107. height: math.unit(9, "feet"),
  38108. weight: math.unit(621, "lb"),
  38109. name: "Front",
  38110. image: {
  38111. source: "./media/characters/unmru/front.svg",
  38112. extra: 1853/1747,
  38113. bottom: 73/1926
  38114. }
  38115. },
  38116. side: {
  38117. height: math.unit(9, "feet"),
  38118. weight: math.unit(621, "lb"),
  38119. name: "Side",
  38120. image: {
  38121. source: "./media/characters/unmru/side.svg",
  38122. extra: 1781/1671,
  38123. bottom: 127/1908
  38124. }
  38125. },
  38126. back: {
  38127. height: math.unit(9, "feet"),
  38128. weight: math.unit(621, "lb"),
  38129. name: "Back",
  38130. image: {
  38131. source: "./media/characters/unmru/back.svg",
  38132. extra: 1894/1765,
  38133. bottom: 75/1969
  38134. }
  38135. },
  38136. dick: {
  38137. height: math.unit(3, "feet"),
  38138. weight: math.unit(35, "lb"),
  38139. name: "Dick",
  38140. image: {
  38141. source: "./media/characters/unmru/dick.svg"
  38142. }
  38143. },
  38144. },
  38145. [
  38146. {
  38147. name: "Normal",
  38148. height: math.unit(9, "feet")
  38149. },
  38150. {
  38151. name: "Natural",
  38152. height: math.unit(27, "feet"),
  38153. default: true
  38154. },
  38155. {
  38156. name: "Giant",
  38157. height: math.unit(90, "feet")
  38158. },
  38159. {
  38160. name: "Kaiju",
  38161. height: math.unit(270, "feet")
  38162. },
  38163. {
  38164. name: "Macro",
  38165. height: math.unit(900, "feet")
  38166. },
  38167. {
  38168. name: "Macro+",
  38169. height: math.unit(2700, "feet")
  38170. },
  38171. {
  38172. name: "Megamacro",
  38173. height: math.unit(9000, "feet")
  38174. },
  38175. {
  38176. name: "City-Crushing",
  38177. height: math.unit(27000, "feet")
  38178. },
  38179. {
  38180. name: "Mountain-Mashing",
  38181. height: math.unit(90000, "feet")
  38182. },
  38183. {
  38184. name: "Earth-Eclipsing",
  38185. height: math.unit(2.7e8, "feet")
  38186. },
  38187. {
  38188. name: "Sol-Swallowing",
  38189. height: math.unit(9e10, "feet")
  38190. },
  38191. {
  38192. name: "Majoris-Munching",
  38193. height: math.unit(2.7e13, "feet")
  38194. },
  38195. ]
  38196. ))
  38197. characterMakers.push(() => makeCharacter(
  38198. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38199. {
  38200. front: {
  38201. height: math.unit(1, "inch"),
  38202. name: "Front",
  38203. image: {
  38204. source: "./media/characters/squeaks-mouse/front.svg",
  38205. extra: 352/308,
  38206. bottom: 25/377
  38207. }
  38208. },
  38209. },
  38210. [
  38211. {
  38212. name: "Micro",
  38213. height: math.unit(1, "inch"),
  38214. default: true
  38215. },
  38216. ]
  38217. ))
  38218. characterMakers.push(() => makeCharacter(
  38219. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38220. {
  38221. side: {
  38222. height: math.unit(35, "feet"),
  38223. name: "Side",
  38224. image: {
  38225. source: "./media/characters/sayko/side.svg",
  38226. extra: 1697/1021,
  38227. bottom: 82/1779
  38228. }
  38229. },
  38230. head: {
  38231. height: math.unit(16, "feet"),
  38232. name: "Head",
  38233. image: {
  38234. source: "./media/characters/sayko/head.svg"
  38235. }
  38236. },
  38237. forepaw: {
  38238. height: math.unit(7.85, "feet"),
  38239. name: "Forepaw",
  38240. image: {
  38241. source: "./media/characters/sayko/forepaw.svg"
  38242. }
  38243. },
  38244. hindpaw: {
  38245. height: math.unit(8.8, "feet"),
  38246. name: "Hindpaw",
  38247. image: {
  38248. source: "./media/characters/sayko/hindpaw.svg"
  38249. }
  38250. },
  38251. },
  38252. [
  38253. {
  38254. name: "Normal",
  38255. height: math.unit(35, "feet"),
  38256. default: true
  38257. },
  38258. {
  38259. name: "Colossus",
  38260. height: math.unit(100, "meters")
  38261. },
  38262. {
  38263. name: "\"Small\" Deity",
  38264. height: math.unit(1, "km")
  38265. },
  38266. {
  38267. name: "\"Large\" Deity",
  38268. height: math.unit(15, "km")
  38269. },
  38270. ]
  38271. ))
  38272. characterMakers.push(() => makeCharacter(
  38273. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38274. {
  38275. front: {
  38276. height: math.unit(6, "feet"),
  38277. weight: math.unit(250, "lb"),
  38278. name: "Front",
  38279. image: {
  38280. source: "./media/characters/mukiro/front.svg",
  38281. extra: 1368/1310,
  38282. bottom: 34/1402
  38283. }
  38284. },
  38285. },
  38286. [
  38287. {
  38288. name: "Normal",
  38289. height: math.unit(6, "feet"),
  38290. default: true
  38291. },
  38292. ]
  38293. ))
  38294. characterMakers.push(() => makeCharacter(
  38295. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38296. {
  38297. front: {
  38298. height: math.unit(12 + 4/12, "feet"),
  38299. name: "Front",
  38300. image: {
  38301. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38302. extra: 1346/1311,
  38303. bottom: 65/1411
  38304. }
  38305. },
  38306. },
  38307. [
  38308. {
  38309. name: "Base",
  38310. height: math.unit(12 + 4/12, "feet"),
  38311. default: true
  38312. },
  38313. {
  38314. name: "Macro",
  38315. height: math.unit(150, "feet")
  38316. },
  38317. {
  38318. name: "Mega",
  38319. height: math.unit(2, "miles")
  38320. },
  38321. {
  38322. name: "Demi God",
  38323. height: math.unit(4, "AU")
  38324. },
  38325. {
  38326. name: "God Size",
  38327. height: math.unit(1, "universe")
  38328. },
  38329. ]
  38330. ))
  38331. characterMakers.push(() => makeCharacter(
  38332. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38333. {
  38334. front: {
  38335. height: math.unit(3 + 3/12, "feet"),
  38336. weight: math.unit(88, "lb"),
  38337. name: "Front",
  38338. image: {
  38339. source: "./media/characters/trey/front.svg",
  38340. extra: 1815/1509,
  38341. bottom: 60/1875
  38342. }
  38343. },
  38344. },
  38345. [
  38346. {
  38347. name: "Normal",
  38348. height: math.unit(3 + 3/12, "feet"),
  38349. default: true
  38350. },
  38351. ]
  38352. ))
  38353. characterMakers.push(() => makeCharacter(
  38354. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38355. {
  38356. front: {
  38357. height: math.unit(4, "meters"),
  38358. name: "Front",
  38359. image: {
  38360. source: "./media/characters/adelonda/front.svg",
  38361. extra: 1077/982,
  38362. bottom: 39/1116
  38363. }
  38364. },
  38365. back: {
  38366. height: math.unit(4, "meters"),
  38367. name: "Back",
  38368. image: {
  38369. source: "./media/characters/adelonda/back.svg",
  38370. extra: 1105/1003,
  38371. bottom: 25/1130
  38372. }
  38373. },
  38374. feral: {
  38375. height: math.unit(40/1.5, "meters"),
  38376. name: "Feral",
  38377. image: {
  38378. source: "./media/characters/adelonda/feral.svg",
  38379. extra: 597/271,
  38380. bottom: 387/984
  38381. }
  38382. },
  38383. },
  38384. [
  38385. {
  38386. name: "Normal",
  38387. height: math.unit(4, "meters"),
  38388. default: true
  38389. },
  38390. ]
  38391. ))
  38392. characterMakers.push(() => makeCharacter(
  38393. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38394. {
  38395. front: {
  38396. height: math.unit(8 + 4/12, "feet"),
  38397. weight: math.unit(670, "lb"),
  38398. name: "Front",
  38399. image: {
  38400. source: "./media/characters/acadiel/front.svg",
  38401. extra: 1901/1595,
  38402. bottom: 142/2043
  38403. }
  38404. },
  38405. },
  38406. [
  38407. {
  38408. name: "Normal",
  38409. height: math.unit(8 + 4/12, "feet"),
  38410. default: true
  38411. },
  38412. {
  38413. name: "Macro",
  38414. height: math.unit(200, "feet")
  38415. },
  38416. ]
  38417. ))
  38418. characterMakers.push(() => makeCharacter(
  38419. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38420. {
  38421. front: {
  38422. height: math.unit(6 + 2/12, "feet"),
  38423. weight: math.unit(185, "lb"),
  38424. name: "Front",
  38425. image: {
  38426. source: "./media/characters/kayne-ein/front.svg",
  38427. extra: 1780/1560,
  38428. bottom: 81/1861
  38429. }
  38430. },
  38431. },
  38432. [
  38433. {
  38434. name: "Normal",
  38435. height: math.unit(6 + 2/12, "feet"),
  38436. default: true
  38437. },
  38438. {
  38439. name: "Transformation Stage",
  38440. height: math.unit(15, "feet")
  38441. },
  38442. {
  38443. name: "Macro",
  38444. height: math.unit(150, "feet")
  38445. },
  38446. {
  38447. name: "Earth's Shadow",
  38448. height: math.unit(6200, "miles")
  38449. },
  38450. {
  38451. name: "Universal Demon",
  38452. height: math.unit(28e9, "parsecs")
  38453. },
  38454. {
  38455. name: "Multiverse God",
  38456. height: math.unit(3, "multiverses")
  38457. },
  38458. ]
  38459. ))
  38460. characterMakers.push(() => makeCharacter(
  38461. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38462. {
  38463. front: {
  38464. height: math.unit(5 + 5/12, "feet"),
  38465. name: "Front",
  38466. image: {
  38467. source: "./media/characters/fawn/front.svg",
  38468. extra: 1873/1731,
  38469. bottom: 95/1968
  38470. }
  38471. },
  38472. back: {
  38473. height: math.unit(5 + 5/12, "feet"),
  38474. name: "Back",
  38475. image: {
  38476. source: "./media/characters/fawn/back.svg",
  38477. extra: 1813/1700,
  38478. bottom: 14/1827
  38479. }
  38480. },
  38481. hoof: {
  38482. height: math.unit(1.45, "feet"),
  38483. name: "Hoof",
  38484. image: {
  38485. source: "./media/characters/fawn/hoof.svg"
  38486. }
  38487. },
  38488. },
  38489. [
  38490. {
  38491. name: "Normal",
  38492. height: math.unit(5 + 5/12, "feet"),
  38493. default: true
  38494. },
  38495. ]
  38496. ))
  38497. characterMakers.push(() => makeCharacter(
  38498. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38499. {
  38500. front: {
  38501. height: math.unit(2 + 5/12, "feet"),
  38502. name: "Front",
  38503. image: {
  38504. source: "./media/characters/orion/front.svg",
  38505. extra: 1366/1304,
  38506. bottom: 43/1409
  38507. }
  38508. },
  38509. paw: {
  38510. height: math.unit(0.52, "feet"),
  38511. name: "Paw",
  38512. image: {
  38513. source: "./media/characters/orion/paw.svg"
  38514. }
  38515. },
  38516. },
  38517. [
  38518. {
  38519. name: "Normal",
  38520. height: math.unit(2 + 5/12, "feet"),
  38521. default: true
  38522. },
  38523. ]
  38524. ))
  38525. characterMakers.push(() => makeCharacter(
  38526. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38527. {
  38528. front: {
  38529. height: math.unit(5 + 10/12, "feet"),
  38530. name: "Front",
  38531. image: {
  38532. source: "./media/characters/vera/front.svg",
  38533. extra: 1680/1575,
  38534. bottom: 49/1729
  38535. }
  38536. },
  38537. back: {
  38538. height: math.unit(5 + 10/12, "feet"),
  38539. name: "Back",
  38540. image: {
  38541. source: "./media/characters/vera/back.svg",
  38542. extra: 1700/1588,
  38543. bottom: 18/1718
  38544. }
  38545. },
  38546. arcanine: {
  38547. height: math.unit(6 + 8/12, "feet"),
  38548. name: "Arcanine",
  38549. image: {
  38550. source: "./media/characters/vera/arcanine.svg",
  38551. extra: 1590/1511,
  38552. bottom: 71/1661
  38553. }
  38554. },
  38555. maw: {
  38556. height: math.unit(0.82, "feet"),
  38557. name: "Maw",
  38558. image: {
  38559. source: "./media/characters/vera/maw.svg"
  38560. }
  38561. },
  38562. mawArcanine: {
  38563. height: math.unit(0.97, "feet"),
  38564. name: "Maw (Arcanine)",
  38565. image: {
  38566. source: "./media/characters/vera/maw-arcanine.svg"
  38567. }
  38568. },
  38569. paw: {
  38570. height: math.unit(0.75, "feet"),
  38571. name: "Paw",
  38572. image: {
  38573. source: "./media/characters/vera/paw.svg"
  38574. }
  38575. },
  38576. pawprint: {
  38577. height: math.unit(0.52, "feet"),
  38578. name: "Pawprint",
  38579. image: {
  38580. source: "./media/characters/vera/pawprint.svg"
  38581. }
  38582. },
  38583. },
  38584. [
  38585. {
  38586. name: "Normal",
  38587. height: math.unit(5 + 10/12, "feet"),
  38588. default: true
  38589. },
  38590. {
  38591. name: "Macro",
  38592. height: math.unit(75, "feet")
  38593. },
  38594. ]
  38595. ))
  38596. characterMakers.push(() => makeCharacter(
  38597. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38598. {
  38599. front: {
  38600. height: math.unit(4, "feet"),
  38601. weight: math.unit(40, "lb"),
  38602. name: "Front",
  38603. image: {
  38604. source: "./media/characters/orvan-rabbit/front.svg",
  38605. extra: 1896/1642,
  38606. bottom: 29/1925
  38607. }
  38608. },
  38609. },
  38610. [
  38611. {
  38612. name: "Normal",
  38613. height: math.unit(4, "feet"),
  38614. default: true
  38615. },
  38616. ]
  38617. ))
  38618. characterMakers.push(() => makeCharacter(
  38619. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38620. {
  38621. front: {
  38622. height: math.unit(6, "feet"),
  38623. weight: math.unit(168, "lb"),
  38624. name: "Front",
  38625. image: {
  38626. source: "./media/characters/lisa/front.svg",
  38627. extra: 2065/1867,
  38628. bottom: 46/2111
  38629. }
  38630. },
  38631. back: {
  38632. height: math.unit(6, "feet"),
  38633. weight: math.unit(168, "lb"),
  38634. name: "Back",
  38635. image: {
  38636. source: "./media/characters/lisa/back.svg",
  38637. extra: 1982/1838,
  38638. bottom: 29/2011
  38639. }
  38640. },
  38641. maw: {
  38642. height: math.unit(0.81, "feet"),
  38643. name: "Maw",
  38644. image: {
  38645. source: "./media/characters/lisa/maw.svg"
  38646. }
  38647. },
  38648. paw: {
  38649. height: math.unit(0.9, "feet"),
  38650. name: "Paw",
  38651. image: {
  38652. source: "./media/characters/lisa/paw.svg"
  38653. }
  38654. },
  38655. caribousune: {
  38656. height: math.unit(7 + 2/12, "feet"),
  38657. weight: math.unit(268, "lb"),
  38658. name: "Caribousune",
  38659. image: {
  38660. source: "./media/characters/lisa/caribousune.svg",
  38661. extra: 1843/1633,
  38662. bottom: 29/1872
  38663. }
  38664. },
  38665. frontCaribousune: {
  38666. height: math.unit(7 + 2/12, "feet"),
  38667. weight: math.unit(268, "lb"),
  38668. name: "Front (Caribousune)",
  38669. image: {
  38670. source: "./media/characters/lisa/front-caribousune.svg",
  38671. extra: 1818/1638,
  38672. bottom: 52/1870
  38673. }
  38674. },
  38675. sideCaribousune: {
  38676. height: math.unit(7 + 2/12, "feet"),
  38677. weight: math.unit(268, "lb"),
  38678. name: "Side (Caribousune)",
  38679. image: {
  38680. source: "./media/characters/lisa/side-caribousune.svg",
  38681. extra: 1851/1635,
  38682. bottom: 16/1867
  38683. }
  38684. },
  38685. backCaribousune: {
  38686. height: math.unit(7 + 2/12, "feet"),
  38687. weight: math.unit(268, "lb"),
  38688. name: "Back (Caribousune)",
  38689. image: {
  38690. source: "./media/characters/lisa/back-caribousune.svg",
  38691. extra: 1801/1604,
  38692. bottom: 44/1845
  38693. }
  38694. },
  38695. caribou: {
  38696. height: math.unit(7 + 2/12, "feet"),
  38697. weight: math.unit(268, "lb"),
  38698. name: "Caribou",
  38699. image: {
  38700. source: "./media/characters/lisa/caribou.svg",
  38701. extra: 1843/1633,
  38702. bottom: 29/1872
  38703. }
  38704. },
  38705. frontCaribou: {
  38706. height: math.unit(7 + 2/12, "feet"),
  38707. weight: math.unit(268, "lb"),
  38708. name: "Front (Caribou)",
  38709. image: {
  38710. source: "./media/characters/lisa/front-caribou.svg",
  38711. extra: 1818/1638,
  38712. bottom: 52/1870
  38713. }
  38714. },
  38715. sideCaribou: {
  38716. height: math.unit(7 + 2/12, "feet"),
  38717. weight: math.unit(268, "lb"),
  38718. name: "Side (Caribou)",
  38719. image: {
  38720. source: "./media/characters/lisa/side-caribou.svg",
  38721. extra: 1851/1635,
  38722. bottom: 16/1867
  38723. }
  38724. },
  38725. backCaribou: {
  38726. height: math.unit(7 + 2/12, "feet"),
  38727. weight: math.unit(268, "lb"),
  38728. name: "Back (Caribou)",
  38729. image: {
  38730. source: "./media/characters/lisa/back-caribou.svg",
  38731. extra: 1801/1604,
  38732. bottom: 44/1845
  38733. }
  38734. },
  38735. mawCaribou: {
  38736. height: math.unit(1.45, "feet"),
  38737. name: "Maw (Caribou)",
  38738. image: {
  38739. source: "./media/characters/lisa/maw-caribou.svg"
  38740. }
  38741. },
  38742. mawCaribousune: {
  38743. height: math.unit(1.45, "feet"),
  38744. name: "Maw (Caribousune)",
  38745. image: {
  38746. source: "./media/characters/lisa/maw-caribousune.svg"
  38747. }
  38748. },
  38749. pawCaribousune: {
  38750. height: math.unit(1.61, "feet"),
  38751. name: "Paw (Caribou)",
  38752. image: {
  38753. source: "./media/characters/lisa/paw-caribousune.svg"
  38754. }
  38755. },
  38756. },
  38757. [
  38758. {
  38759. name: "Normal",
  38760. height: math.unit(6, "feet")
  38761. },
  38762. {
  38763. name: "God Size",
  38764. height: math.unit(72, "feet"),
  38765. default: true
  38766. },
  38767. {
  38768. name: "Towering",
  38769. height: math.unit(288, "feet")
  38770. },
  38771. {
  38772. name: "City Size",
  38773. height: math.unit(48384, "feet")
  38774. },
  38775. {
  38776. name: "Continental",
  38777. height: math.unit(4200, "miles")
  38778. },
  38779. {
  38780. name: "Planet Eater",
  38781. height: math.unit(42, "earths")
  38782. },
  38783. {
  38784. name: "Star Swallower",
  38785. height: math.unit(42, "solarradii")
  38786. },
  38787. {
  38788. name: "System Swallower",
  38789. height: math.unit(84000, "AU")
  38790. },
  38791. {
  38792. name: "Galaxy Gobbler",
  38793. height: math.unit(42, "galaxies")
  38794. },
  38795. {
  38796. name: "Universe Devourer",
  38797. height: math.unit(42, "universes")
  38798. },
  38799. {
  38800. name: "Multiverse Muncher",
  38801. height: math.unit(42, "multiverses")
  38802. },
  38803. ]
  38804. ))
  38805. characterMakers.push(() => makeCharacter(
  38806. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38807. {
  38808. front: {
  38809. height: math.unit(36, "feet"),
  38810. name: "Front",
  38811. image: {
  38812. source: "./media/characters/shadow-rat/front.svg",
  38813. extra: 1845/1758,
  38814. bottom: 83/1928
  38815. }
  38816. },
  38817. },
  38818. [
  38819. {
  38820. name: "Macro",
  38821. height: math.unit(36, "feet"),
  38822. default: true
  38823. },
  38824. ]
  38825. ))
  38826. characterMakers.push(() => makeCharacter(
  38827. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38828. {
  38829. side: {
  38830. height: math.unit(8, "feet"),
  38831. weight: math.unit(2630, "lb"),
  38832. name: "Side",
  38833. image: {
  38834. source: "./media/characters/torallia/side.svg",
  38835. extra: 2164/2021,
  38836. bottom: 371/2535
  38837. }
  38838. },
  38839. },
  38840. [
  38841. {
  38842. name: "Mortal Interaction",
  38843. height: math.unit(8, "feet")
  38844. },
  38845. {
  38846. name: "Natural",
  38847. height: math.unit(24, "feet"),
  38848. default: true
  38849. },
  38850. {
  38851. name: "Giant",
  38852. height: math.unit(80, "feet")
  38853. },
  38854. {
  38855. name: "Kaiju",
  38856. height: math.unit(240, "feet")
  38857. },
  38858. {
  38859. name: "Macro",
  38860. height: math.unit(800, "feet")
  38861. },
  38862. {
  38863. name: "Macro+",
  38864. height: math.unit(2400, "feet")
  38865. },
  38866. {
  38867. name: "Macro++",
  38868. height: math.unit(8000, "feet")
  38869. },
  38870. {
  38871. name: "City-Crushing",
  38872. height: math.unit(24000, "feet")
  38873. },
  38874. {
  38875. name: "Mountain-Mashing",
  38876. height: math.unit(80000, "feet")
  38877. },
  38878. {
  38879. name: "District Demolisher",
  38880. height: math.unit(240000, "feet")
  38881. },
  38882. {
  38883. name: "Tri-County Terror",
  38884. height: math.unit(800000, "feet")
  38885. },
  38886. {
  38887. name: "State Smasher",
  38888. height: math.unit(2.4e6, "feet")
  38889. },
  38890. {
  38891. name: "Nation Nemesis",
  38892. height: math.unit(8e6, "feet")
  38893. },
  38894. {
  38895. name: "Continent Cracker",
  38896. height: math.unit(2.4e7, "feet")
  38897. },
  38898. {
  38899. name: "Planet-Pillaging",
  38900. height: math.unit(8e7, "feet")
  38901. },
  38902. {
  38903. name: "Earth-Eclipsing",
  38904. height: math.unit(2.4e8, "feet")
  38905. },
  38906. {
  38907. name: "Jovian-Jostling",
  38908. height: math.unit(8e8, "feet")
  38909. },
  38910. {
  38911. name: "Gas Giant Gulper",
  38912. height: math.unit(2.4e9, "feet")
  38913. },
  38914. {
  38915. name: "Astral Annihilator",
  38916. height: math.unit(8e9, "feet")
  38917. },
  38918. {
  38919. name: "Celestial Conqueror",
  38920. height: math.unit(2.4e10, "feet")
  38921. },
  38922. {
  38923. name: "Sol-Swallowing",
  38924. height: math.unit(8e10, "feet")
  38925. },
  38926. {
  38927. name: "Hunter of the Heavens",
  38928. height: math.unit(2.4e13, "feet")
  38929. },
  38930. ]
  38931. ))
  38932. characterMakers.push(() => makeCharacter(
  38933. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38934. {
  38935. front: {
  38936. height: math.unit(6 + 8/12, "feet"),
  38937. name: "Front",
  38938. image: {
  38939. source: "./media/characters/rebecca-pawlson/front.svg",
  38940. extra: 1737/1596,
  38941. bottom: 107/1844
  38942. }
  38943. },
  38944. back: {
  38945. height: math.unit(6 + 8/12, "feet"),
  38946. name: "Back",
  38947. image: {
  38948. source: "./media/characters/rebecca-pawlson/back.svg",
  38949. extra: 1702/1523,
  38950. bottom: 86/1788
  38951. }
  38952. },
  38953. },
  38954. [
  38955. {
  38956. name: "Normal",
  38957. height: math.unit(6 + 8/12, "feet")
  38958. },
  38959. {
  38960. name: "Mini Macro",
  38961. height: math.unit(10, "feet"),
  38962. default: true
  38963. },
  38964. {
  38965. name: "Macro",
  38966. height: math.unit(100, "feet")
  38967. },
  38968. {
  38969. name: "Mega Macro",
  38970. height: math.unit(2500, "feet")
  38971. },
  38972. {
  38973. name: "Giga Macro",
  38974. height: math.unit(50, "miles")
  38975. },
  38976. ]
  38977. ))
  38978. characterMakers.push(() => makeCharacter(
  38979. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38980. {
  38981. front: {
  38982. height: math.unit(7 + 6/12, "feet"),
  38983. weight: math.unit(600, "lb"),
  38984. name: "Front",
  38985. image: {
  38986. source: "./media/characters/moxie-nova/front.svg",
  38987. extra: 1734/1652,
  38988. bottom: 41/1775
  38989. }
  38990. },
  38991. },
  38992. [
  38993. {
  38994. name: "Normal",
  38995. height: math.unit(7 + 6/12, "feet"),
  38996. default: true
  38997. },
  38998. ]
  38999. ))
  39000. characterMakers.push(() => makeCharacter(
  39001. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39002. {
  39003. goat: {
  39004. height: math.unit(4, "feet"),
  39005. weight: math.unit(180, "lb"),
  39006. name: "Goat",
  39007. image: {
  39008. source: "./media/characters/tiffany/goat.svg",
  39009. extra: 1845/1595,
  39010. bottom: 106/1951
  39011. }
  39012. },
  39013. front: {
  39014. height: math.unit(5, "feet"),
  39015. weight: math.unit(150, "lb"),
  39016. name: "Foxcoon",
  39017. image: {
  39018. source: "./media/characters/tiffany/foxcoon.svg",
  39019. extra: 1941/1845,
  39020. bottom: 58/1999
  39021. }
  39022. },
  39023. },
  39024. [
  39025. {
  39026. name: "Normal",
  39027. height: math.unit(5, "feet"),
  39028. default: true
  39029. },
  39030. ]
  39031. ))
  39032. characterMakers.push(() => makeCharacter(
  39033. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39034. {
  39035. front: {
  39036. height: math.unit(8, "feet"),
  39037. weight: math.unit(300, "lb"),
  39038. name: "Front",
  39039. image: {
  39040. source: "./media/characters/raxinath/front.svg",
  39041. extra: 1407/1309,
  39042. bottom: 39/1446
  39043. }
  39044. },
  39045. back: {
  39046. height: math.unit(8, "feet"),
  39047. weight: math.unit(300, "lb"),
  39048. name: "Back",
  39049. image: {
  39050. source: "./media/characters/raxinath/back.svg",
  39051. extra: 1405/1315,
  39052. bottom: 9/1414
  39053. }
  39054. },
  39055. },
  39056. [
  39057. {
  39058. name: "Speck",
  39059. height: math.unit(0.5, "nm")
  39060. },
  39061. {
  39062. name: "Micro",
  39063. height: math.unit(3, "inches")
  39064. },
  39065. {
  39066. name: "Kobold",
  39067. height: math.unit(3, "feet")
  39068. },
  39069. {
  39070. name: "Normal",
  39071. height: math.unit(8, "feet"),
  39072. default: true
  39073. },
  39074. {
  39075. name: "Giant",
  39076. height: math.unit(50, "feet")
  39077. },
  39078. {
  39079. name: "Macro",
  39080. height: math.unit(1000, "feet")
  39081. },
  39082. {
  39083. name: "Megamacro",
  39084. height: math.unit(1, "mile")
  39085. },
  39086. ]
  39087. ))
  39088. characterMakers.push(() => makeCharacter(
  39089. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39090. {
  39091. front: {
  39092. height: math.unit(10, "feet"),
  39093. weight: math.unit(1442, "lb"),
  39094. name: "Front",
  39095. image: {
  39096. source: "./media/characters/mal-dragon/front.svg",
  39097. extra: 1515/1444,
  39098. bottom: 113/1628
  39099. }
  39100. },
  39101. back: {
  39102. height: math.unit(10, "feet"),
  39103. weight: math.unit(1442, "lb"),
  39104. name: "Back",
  39105. image: {
  39106. source: "./media/characters/mal-dragon/back.svg",
  39107. extra: 1527/1434,
  39108. bottom: 25/1552
  39109. }
  39110. },
  39111. },
  39112. [
  39113. {
  39114. name: "Mortal Interaction",
  39115. height: math.unit(10, "feet"),
  39116. default: true
  39117. },
  39118. {
  39119. name: "Large",
  39120. height: math.unit(30, "feet")
  39121. },
  39122. {
  39123. name: "Kaiju",
  39124. height: math.unit(300, "feet")
  39125. },
  39126. {
  39127. name: "Megamacro",
  39128. height: math.unit(10000, "feet")
  39129. },
  39130. {
  39131. name: "Continent Cracker",
  39132. height: math.unit(30000000, "feet")
  39133. },
  39134. {
  39135. name: "Sol-Swallowing",
  39136. height: math.unit(1e11, "feet")
  39137. },
  39138. {
  39139. name: "Light Universal",
  39140. height: math.unit(5, "universes")
  39141. },
  39142. {
  39143. name: "Universe Atoms",
  39144. height: math.unit(1.829e9, "universes")
  39145. },
  39146. {
  39147. name: "Light Multiversal",
  39148. height: math.unit(5, "multiverses")
  39149. },
  39150. {
  39151. name: "Multiverse Atoms",
  39152. height: math.unit(1.829e9, "multiverses")
  39153. },
  39154. {
  39155. name: "Fabric of Time",
  39156. height: math.unit(1e262, "multiverses")
  39157. },
  39158. ]
  39159. ))
  39160. characterMakers.push(() => makeCharacter(
  39161. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39162. {
  39163. front: {
  39164. height: math.unit(9, "feet"),
  39165. weight: math.unit(1050, "lb"),
  39166. name: "Front",
  39167. image: {
  39168. source: "./media/characters/tabitha/front.svg",
  39169. extra: 2083/1994,
  39170. bottom: 68/2151
  39171. }
  39172. },
  39173. },
  39174. [
  39175. {
  39176. name: "Baseline",
  39177. height: math.unit(9, "feet"),
  39178. default: true
  39179. },
  39180. {
  39181. name: "Giant",
  39182. height: math.unit(90, "feet")
  39183. },
  39184. {
  39185. name: "Macro",
  39186. height: math.unit(900, "feet")
  39187. },
  39188. {
  39189. name: "Megamacro",
  39190. height: math.unit(9000, "feet")
  39191. },
  39192. {
  39193. name: "City-Crushing",
  39194. height: math.unit(27000, "feet")
  39195. },
  39196. {
  39197. name: "Mountain-Mashing",
  39198. height: math.unit(90000, "feet")
  39199. },
  39200. {
  39201. name: "Nation Nemesis",
  39202. height: math.unit(9e6, "feet")
  39203. },
  39204. {
  39205. name: "Continent Cracker",
  39206. height: math.unit(27e6, "feet")
  39207. },
  39208. {
  39209. name: "Earth-Eclipsing",
  39210. height: math.unit(2.7e8, "feet")
  39211. },
  39212. {
  39213. name: "Gas Giant Gulper",
  39214. height: math.unit(2.7e9, "feet")
  39215. },
  39216. {
  39217. name: "Sol-Swallowing",
  39218. height: math.unit(9e10, "feet")
  39219. },
  39220. {
  39221. name: "Galaxy Gulper",
  39222. height: math.unit(9, "galaxies")
  39223. },
  39224. {
  39225. name: "Cosmos Churner",
  39226. height: math.unit(9, "universes")
  39227. },
  39228. ]
  39229. ))
  39230. characterMakers.push(() => makeCharacter(
  39231. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39232. {
  39233. front: {
  39234. height: math.unit(160, "cm"),
  39235. weight: math.unit(55, "kg"),
  39236. name: "Front",
  39237. image: {
  39238. source: "./media/characters/tow/front.svg",
  39239. extra: 1751/1722,
  39240. bottom: 74/1825
  39241. }
  39242. },
  39243. },
  39244. [
  39245. {
  39246. name: "Norm",
  39247. height: math.unit(160, "cm")
  39248. },
  39249. {
  39250. name: "Casual",
  39251. height: math.unit(3200, "m"),
  39252. default: true
  39253. },
  39254. {
  39255. name: "Show-Off",
  39256. height: math.unit(160, "km")
  39257. },
  39258. ]
  39259. ))
  39260. characterMakers.push(() => makeCharacter(
  39261. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39262. {
  39263. front: {
  39264. height: math.unit(7 + 11/12, "feet"),
  39265. weight: math.unit(342.8, "lb"),
  39266. name: "Front",
  39267. image: {
  39268. source: "./media/characters/vivian-orca-dragon/front.svg",
  39269. extra: 1890/1865,
  39270. bottom: 28/1918
  39271. }
  39272. },
  39273. },
  39274. [
  39275. {
  39276. name: "Micro",
  39277. height: math.unit(5, "inches")
  39278. },
  39279. {
  39280. name: "Normal",
  39281. height: math.unit(7 + 11/12, "feet"),
  39282. default: true
  39283. },
  39284. {
  39285. name: "Macro",
  39286. height: math.unit(395 + 7/12, "feet")
  39287. },
  39288. ]
  39289. ))
  39290. characterMakers.push(() => makeCharacter(
  39291. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39292. {
  39293. side: {
  39294. height: math.unit(10, "feet"),
  39295. weight: math.unit(1442, "lb"),
  39296. name: "Side",
  39297. image: {
  39298. source: "./media/characters/lotherakon/side.svg",
  39299. extra: 1604/1497,
  39300. bottom: 89/1693
  39301. }
  39302. },
  39303. },
  39304. [
  39305. {
  39306. name: "Mortal Interaction",
  39307. height: math.unit(10, "feet")
  39308. },
  39309. {
  39310. name: "Large",
  39311. height: math.unit(30, "feet"),
  39312. default: true
  39313. },
  39314. {
  39315. name: "Giant",
  39316. height: math.unit(100, "feet")
  39317. },
  39318. {
  39319. name: "Kaiju",
  39320. height: math.unit(300, "feet")
  39321. },
  39322. {
  39323. name: "Macro",
  39324. height: math.unit(1000, "feet")
  39325. },
  39326. {
  39327. name: "Macro+",
  39328. height: math.unit(3000, "feet")
  39329. },
  39330. {
  39331. name: "Megamacro",
  39332. height: math.unit(10000, "feet")
  39333. },
  39334. {
  39335. name: "City-Crushing",
  39336. height: math.unit(30000, "feet")
  39337. },
  39338. {
  39339. name: "Continent Cracker",
  39340. height: math.unit(30e6, "feet")
  39341. },
  39342. {
  39343. name: "Earth Eclipsing",
  39344. height: math.unit(3e8, "feet")
  39345. },
  39346. {
  39347. name: "Gas Giant Gulper",
  39348. height: math.unit(3e9, "feet")
  39349. },
  39350. {
  39351. name: "Sol-Swallowing",
  39352. height: math.unit(1e11, "feet")
  39353. },
  39354. {
  39355. name: "System Swallower",
  39356. height: math.unit(3e14, "feet")
  39357. },
  39358. {
  39359. name: "Galaxy Gulper",
  39360. height: math.unit(10, "galaxies")
  39361. },
  39362. {
  39363. name: "Light Universal",
  39364. height: math.unit(5, "universes")
  39365. },
  39366. {
  39367. name: "Universe Palm",
  39368. height: math.unit(20, "universes")
  39369. },
  39370. {
  39371. name: "Light Multiversal",
  39372. height: math.unit(5, "multiverses")
  39373. },
  39374. {
  39375. name: "Multiverse Palm",
  39376. height: math.unit(20, "multiverses")
  39377. },
  39378. {
  39379. name: "Inferno Incarnate",
  39380. height: math.unit(1e7, "multiverses")
  39381. },
  39382. ]
  39383. ))
  39384. characterMakers.push(() => makeCharacter(
  39385. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39386. {
  39387. front: {
  39388. height: math.unit(8, "feet"),
  39389. weight: math.unit(1200, "lb"),
  39390. name: "Front",
  39391. image: {
  39392. source: "./media/characters/malithee/front.svg",
  39393. extra: 1675/1640,
  39394. bottom: 162/1837
  39395. }
  39396. },
  39397. },
  39398. [
  39399. {
  39400. name: "Mortal Interaction",
  39401. height: math.unit(8, "feet"),
  39402. default: true
  39403. },
  39404. {
  39405. name: "Large",
  39406. height: math.unit(24, "feet")
  39407. },
  39408. {
  39409. name: "Kaiju",
  39410. height: math.unit(240, "feet")
  39411. },
  39412. {
  39413. name: "Megamacro",
  39414. height: math.unit(8000, "feet")
  39415. },
  39416. {
  39417. name: "Continent Cracker",
  39418. height: math.unit(24e6, "feet")
  39419. },
  39420. {
  39421. name: "Earth-Eclipsing",
  39422. height: math.unit(2.4e8, "feet")
  39423. },
  39424. {
  39425. name: "Sol-Swallowing",
  39426. height: math.unit(8e10, "feet")
  39427. },
  39428. {
  39429. name: "Galaxy Gulper",
  39430. height: math.unit(8, "galaxies")
  39431. },
  39432. {
  39433. name: "Light Universal",
  39434. height: math.unit(4, "universes")
  39435. },
  39436. {
  39437. name: "Universe Atoms",
  39438. height: math.unit(1.829e9, "universes")
  39439. },
  39440. {
  39441. name: "Light Multiversal",
  39442. height: math.unit(4, "multiverses")
  39443. },
  39444. {
  39445. name: "Multiverse Atoms",
  39446. height: math.unit(1.829e9, "multiverses")
  39447. },
  39448. {
  39449. name: "Nigh-Omnipresence",
  39450. height: math.unit(8e261, "multiverses")
  39451. },
  39452. ]
  39453. ))
  39454. characterMakers.push(() => makeCharacter(
  39455. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39456. {
  39457. front: {
  39458. height: math.unit(10, "feet"),
  39459. weight: math.unit(1500, "lb"),
  39460. name: "Front",
  39461. image: {
  39462. source: "./media/characters/miles-thestia/front.svg",
  39463. extra: 1812/1727,
  39464. bottom: 86/1898
  39465. }
  39466. },
  39467. back: {
  39468. height: math.unit(10, "feet"),
  39469. weight: math.unit(1500, "lb"),
  39470. name: "Back",
  39471. image: {
  39472. source: "./media/characters/miles-thestia/back.svg",
  39473. extra: 1799/1690,
  39474. bottom: 47/1846
  39475. }
  39476. },
  39477. frontNsfw: {
  39478. height: math.unit(10, "feet"),
  39479. weight: math.unit(1500, "lb"),
  39480. name: "Front (NSFW)",
  39481. image: {
  39482. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39483. extra: 1812/1727,
  39484. bottom: 86/1898
  39485. }
  39486. },
  39487. },
  39488. [
  39489. {
  39490. name: "Mini-Macro",
  39491. height: math.unit(10, "feet"),
  39492. default: true
  39493. },
  39494. ]
  39495. ))
  39496. characterMakers.push(() => makeCharacter(
  39497. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39498. {
  39499. front: {
  39500. height: math.unit(25, "feet"),
  39501. name: "Front",
  39502. image: {
  39503. source: "./media/characters/titan-s-wulf/front.svg",
  39504. extra: 1560/1484,
  39505. bottom: 76/1636
  39506. }
  39507. },
  39508. },
  39509. [
  39510. {
  39511. name: "Smallest",
  39512. height: math.unit(25, "feet"),
  39513. default: true
  39514. },
  39515. {
  39516. name: "Normal",
  39517. height: math.unit(200, "feet")
  39518. },
  39519. {
  39520. name: "Macro",
  39521. height: math.unit(200000, "feet")
  39522. },
  39523. {
  39524. name: "Multiversal Original",
  39525. height: math.unit(10000, "multiverses")
  39526. },
  39527. ]
  39528. ))
  39529. characterMakers.push(() => makeCharacter(
  39530. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39531. {
  39532. front: {
  39533. height: math.unit(8, "feet"),
  39534. weight: math.unit(553, "lb"),
  39535. name: "Front",
  39536. image: {
  39537. source: "./media/characters/tawendeh/front.svg",
  39538. extra: 2365/2268,
  39539. bottom: 83/2448
  39540. }
  39541. },
  39542. frontClothed: {
  39543. height: math.unit(8, "feet"),
  39544. weight: math.unit(553, "lb"),
  39545. name: "Front (Clothed)",
  39546. image: {
  39547. source: "./media/characters/tawendeh/front-clothed.svg",
  39548. extra: 2365/2268,
  39549. bottom: 83/2448
  39550. }
  39551. },
  39552. back: {
  39553. height: math.unit(8, "feet"),
  39554. weight: math.unit(553, "lb"),
  39555. name: "Back",
  39556. image: {
  39557. source: "./media/characters/tawendeh/back.svg",
  39558. extra: 2397/2294,
  39559. bottom: 42/2439
  39560. }
  39561. },
  39562. },
  39563. [
  39564. {
  39565. name: "Mortal Interaction",
  39566. height: math.unit(8, "feet"),
  39567. default: true
  39568. },
  39569. {
  39570. name: "Giant",
  39571. height: math.unit(80, "feet")
  39572. },
  39573. {
  39574. name: "Macro",
  39575. height: math.unit(800, "feet")
  39576. },
  39577. {
  39578. name: "Megamacro",
  39579. height: math.unit(8000, "feet")
  39580. },
  39581. {
  39582. name: "City-Crushing",
  39583. height: math.unit(24000, "feet")
  39584. },
  39585. {
  39586. name: "Mountain-Mashing",
  39587. height: math.unit(80000, "feet")
  39588. },
  39589. {
  39590. name: "Nation Nemesis",
  39591. height: math.unit(8e6, "feet")
  39592. },
  39593. {
  39594. name: "Continent Cracker",
  39595. height: math.unit(24e6, "feet")
  39596. },
  39597. {
  39598. name: "Earth-Eclipsing",
  39599. height: math.unit(2.4e8, "feet")
  39600. },
  39601. {
  39602. name: "Gas Giant Gulper",
  39603. height: math.unit(2.4e9, "feet")
  39604. },
  39605. {
  39606. name: "Sol-Swallowing",
  39607. height: math.unit(8e10, "feet")
  39608. },
  39609. {
  39610. name: "Galaxy Gulper",
  39611. height: math.unit(8, "galaxies")
  39612. },
  39613. {
  39614. name: "Cosmos Churner",
  39615. height: math.unit(8, "universes")
  39616. },
  39617. {
  39618. name: "Omnipotent Otter",
  39619. height: math.unit(80, "universes")
  39620. },
  39621. ]
  39622. ))
  39623. characterMakers.push(() => makeCharacter(
  39624. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39625. {
  39626. front: {
  39627. height: math.unit(2.6, "meters"),
  39628. weight: math.unit(900, "kg"),
  39629. name: "Front",
  39630. image: {
  39631. source: "./media/characters/neesha/front.svg",
  39632. extra: 1803/1653,
  39633. bottom: 128/1931
  39634. }
  39635. },
  39636. },
  39637. [
  39638. {
  39639. name: "Normal",
  39640. height: math.unit(2.6, "meters"),
  39641. default: true
  39642. },
  39643. {
  39644. name: "Macro",
  39645. height: math.unit(50, "meters")
  39646. },
  39647. ]
  39648. ))
  39649. characterMakers.push(() => makeCharacter(
  39650. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39651. {
  39652. front: {
  39653. height: math.unit(5, "feet"),
  39654. weight: math.unit(185, "lb"),
  39655. name: "Front",
  39656. image: {
  39657. source: "./media/characters/kyera/front.svg",
  39658. extra: 1875/1790,
  39659. bottom: 96/1971
  39660. }
  39661. },
  39662. },
  39663. [
  39664. {
  39665. name: "Normal",
  39666. height: math.unit(5, "feet"),
  39667. default: true
  39668. },
  39669. ]
  39670. ))
  39671. characterMakers.push(() => makeCharacter(
  39672. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39673. {
  39674. front: {
  39675. height: math.unit(7 + 6/12, "feet"),
  39676. weight: math.unit(540, "lb"),
  39677. name: "Front",
  39678. image: {
  39679. source: "./media/characters/yuko/front.svg",
  39680. extra: 1282/1222,
  39681. bottom: 101/1383
  39682. }
  39683. },
  39684. frontClothed: {
  39685. height: math.unit(7 + 6/12, "feet"),
  39686. weight: math.unit(540, "lb"),
  39687. name: "Front (Clothed)",
  39688. image: {
  39689. source: "./media/characters/yuko/front-clothed.svg",
  39690. extra: 1282/1222,
  39691. bottom: 101/1383
  39692. }
  39693. },
  39694. },
  39695. [
  39696. {
  39697. name: "Normal",
  39698. height: math.unit(7 + 6/12, "feet"),
  39699. default: true
  39700. },
  39701. {
  39702. name: "Macro",
  39703. height: math.unit(26 + 9/12, "feet")
  39704. },
  39705. {
  39706. name: "Megamacro",
  39707. height: math.unit(300, "feet")
  39708. },
  39709. {
  39710. name: "Gigamacro",
  39711. height: math.unit(5000, "feet")
  39712. },
  39713. {
  39714. name: "Planetary",
  39715. height: math.unit(10000, "miles")
  39716. },
  39717. ]
  39718. ))
  39719. characterMakers.push(() => makeCharacter(
  39720. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39721. {
  39722. front: {
  39723. height: math.unit(8 + 2/12, "feet"),
  39724. weight: math.unit(600, "lb"),
  39725. name: "Front",
  39726. image: {
  39727. source: "./media/characters/deam-nitrel/front.svg",
  39728. extra: 1308/1234,
  39729. bottom: 125/1433
  39730. }
  39731. },
  39732. },
  39733. [
  39734. {
  39735. name: "Normal",
  39736. height: math.unit(8 + 2/12, "feet"),
  39737. default: true
  39738. },
  39739. ]
  39740. ))
  39741. characterMakers.push(() => makeCharacter(
  39742. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39743. {
  39744. front: {
  39745. height: math.unit(6.1, "feet"),
  39746. weight: math.unit(180, "lb"),
  39747. name: "Front",
  39748. image: {
  39749. source: "./media/characters/skyress/front.svg",
  39750. extra: 1045/915,
  39751. bottom: 28/1073
  39752. }
  39753. },
  39754. maw: {
  39755. height: math.unit(1, "feet"),
  39756. name: "Maw",
  39757. image: {
  39758. source: "./media/characters/skyress/maw.svg"
  39759. }
  39760. },
  39761. },
  39762. [
  39763. {
  39764. name: "Normal",
  39765. height: math.unit(6.1, "feet"),
  39766. default: true
  39767. },
  39768. {
  39769. name: "Macro",
  39770. height: math.unit(200, "feet")
  39771. },
  39772. ]
  39773. ))
  39774. characterMakers.push(() => makeCharacter(
  39775. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39776. {
  39777. front: {
  39778. height: math.unit(4 + 2/12, "feet"),
  39779. weight: math.unit(40, "kg"),
  39780. name: "Front",
  39781. image: {
  39782. source: "./media/characters/amethyst-jones/front.svg",
  39783. extra: 1220/1150,
  39784. bottom: 101/1321
  39785. }
  39786. },
  39787. },
  39788. [
  39789. {
  39790. name: "Normal",
  39791. height: math.unit(4 + 2/12, "feet"),
  39792. default: true
  39793. },
  39794. ]
  39795. ))
  39796. characterMakers.push(() => makeCharacter(
  39797. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39798. {
  39799. front: {
  39800. height: math.unit(1.7, "m"),
  39801. weight: math.unit(135, "lb"),
  39802. name: "Front",
  39803. image: {
  39804. source: "./media/characters/jade/front.svg",
  39805. extra: 1818/1767,
  39806. bottom: 32/1850
  39807. }
  39808. },
  39809. back: {
  39810. height: math.unit(1.7, "m"),
  39811. weight: math.unit(135, "lb"),
  39812. name: "Back",
  39813. image: {
  39814. source: "./media/characters/jade/back.svg",
  39815. extra: 1869/1809,
  39816. bottom: 35/1904
  39817. }
  39818. },
  39819. hand: {
  39820. height: math.unit(0.24, "m"),
  39821. name: "Hand",
  39822. image: {
  39823. source: "./media/characters/jade/hand.svg"
  39824. }
  39825. },
  39826. foot: {
  39827. height: math.unit(0.263, "m"),
  39828. name: "Foot",
  39829. image: {
  39830. source: "./media/characters/jade/foot.svg"
  39831. }
  39832. },
  39833. dick: {
  39834. height: math.unit(0.47, "m"),
  39835. name: "Dick",
  39836. image: {
  39837. source: "./media/characters/jade/dick.svg"
  39838. }
  39839. },
  39840. },
  39841. [
  39842. {
  39843. name: "Micro",
  39844. height: math.unit(22, "cm")
  39845. },
  39846. {
  39847. name: "Normal",
  39848. height: math.unit(1.7, "m"),
  39849. default: true
  39850. },
  39851. {
  39852. name: "Macro",
  39853. height: math.unit(152, "m")
  39854. },
  39855. ]
  39856. ))
  39857. characterMakers.push(() => makeCharacter(
  39858. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39859. {
  39860. front: {
  39861. height: math.unit(100, "miles"),
  39862. weight: math.unit(20000, "tons"),
  39863. name: "Front",
  39864. image: {
  39865. source: "./media/characters/cookie/front.svg",
  39866. extra: 1125/1070,
  39867. bottom: 30/1155
  39868. }
  39869. },
  39870. },
  39871. [
  39872. {
  39873. name: "Big",
  39874. height: math.unit(50, "feet")
  39875. },
  39876. {
  39877. name: "Macro",
  39878. height: math.unit(100, "miles"),
  39879. default: true
  39880. },
  39881. {
  39882. name: "Megamacro",
  39883. height: math.unit(90000, "miles")
  39884. },
  39885. ]
  39886. ))
  39887. characterMakers.push(() => makeCharacter(
  39888. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39889. {
  39890. front: {
  39891. height: math.unit(6, "feet"),
  39892. weight: math.unit(145, "lb"),
  39893. name: "Front",
  39894. image: {
  39895. source: "./media/characters/farzian/front.svg",
  39896. extra: 1902/1693,
  39897. bottom: 108/2010
  39898. }
  39899. },
  39900. },
  39901. [
  39902. {
  39903. name: "Macro",
  39904. height: math.unit(500, "feet"),
  39905. default: true
  39906. },
  39907. ]
  39908. ))
  39909. characterMakers.push(() => makeCharacter(
  39910. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39911. {
  39912. front: {
  39913. height: math.unit(3 + 6/12, "feet"),
  39914. weight: math.unit(50, "lb"),
  39915. name: "Front",
  39916. image: {
  39917. source: "./media/characters/kimberly-tilson/front.svg",
  39918. extra: 1400/1322,
  39919. bottom: 36/1436
  39920. }
  39921. },
  39922. back: {
  39923. height: math.unit(3 + 6/12, "feet"),
  39924. weight: math.unit(50, "lb"),
  39925. name: "Back",
  39926. image: {
  39927. source: "./media/characters/kimberly-tilson/back.svg",
  39928. extra: 1370/1307,
  39929. bottom: 20/1390
  39930. }
  39931. },
  39932. },
  39933. [
  39934. {
  39935. name: "Normal",
  39936. height: math.unit(3 + 6/12, "feet"),
  39937. default: true
  39938. },
  39939. ]
  39940. ))
  39941. characterMakers.push(() => makeCharacter(
  39942. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39943. {
  39944. front: {
  39945. height: math.unit(1148, "feet"),
  39946. weight: math.unit(34057, "lb"),
  39947. name: "Front",
  39948. image: {
  39949. source: "./media/characters/harthos/front.svg",
  39950. extra: 1391/1339,
  39951. bottom: 13/1404
  39952. }
  39953. },
  39954. },
  39955. [
  39956. {
  39957. name: "Macro",
  39958. height: math.unit(1148, "feet"),
  39959. default: true
  39960. },
  39961. ]
  39962. ))
  39963. characterMakers.push(() => makeCharacter(
  39964. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39965. {
  39966. front: {
  39967. height: math.unit(15, "feet"),
  39968. name: "Front",
  39969. image: {
  39970. source: "./media/characters/hypatia/front.svg",
  39971. extra: 1653/1591,
  39972. bottom: 79/1732
  39973. }
  39974. },
  39975. },
  39976. [
  39977. {
  39978. name: "Normal",
  39979. height: math.unit(15, "feet")
  39980. },
  39981. {
  39982. name: "Small",
  39983. height: math.unit(300, "feet")
  39984. },
  39985. {
  39986. name: "Macro",
  39987. height: math.unit(2500, "feet"),
  39988. default: true
  39989. },
  39990. {
  39991. name: "Mega Macro",
  39992. height: math.unit(1500, "miles")
  39993. },
  39994. {
  39995. name: "Giga Macro",
  39996. height: math.unit(1.5e6, "miles")
  39997. },
  39998. ]
  39999. ))
  40000. characterMakers.push(() => makeCharacter(
  40001. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40002. {
  40003. front: {
  40004. height: math.unit(6, "feet"),
  40005. weight: math.unit(200, "lb"),
  40006. name: "Front",
  40007. image: {
  40008. source: "./media/characters/wulver/front.svg",
  40009. extra: 1724/1632,
  40010. bottom: 130/1854
  40011. }
  40012. },
  40013. frontNsfw: {
  40014. height: math.unit(6, "feet"),
  40015. weight: math.unit(200, "lb"),
  40016. name: "Front (NSFW)",
  40017. image: {
  40018. source: "./media/characters/wulver/front-nsfw.svg",
  40019. extra: 1724/1632,
  40020. bottom: 130/1854
  40021. }
  40022. },
  40023. },
  40024. [
  40025. {
  40026. name: "Human-Sized",
  40027. height: math.unit(6, "feet")
  40028. },
  40029. {
  40030. name: "Normal",
  40031. height: math.unit(4, "meters"),
  40032. default: true
  40033. },
  40034. {
  40035. name: "Large",
  40036. height: math.unit(6, "m")
  40037. },
  40038. ]
  40039. ))
  40040. characterMakers.push(() => makeCharacter(
  40041. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40042. {
  40043. front: {
  40044. height: math.unit(7, "feet"),
  40045. name: "Front",
  40046. image: {
  40047. source: "./media/characters/maru/front.svg",
  40048. extra: 1595/1570,
  40049. bottom: 0/1595
  40050. }
  40051. },
  40052. },
  40053. [
  40054. {
  40055. name: "Normal",
  40056. height: math.unit(7, "feet"),
  40057. default: true
  40058. },
  40059. {
  40060. name: "Macro",
  40061. height: math.unit(700, "feet")
  40062. },
  40063. {
  40064. name: "Mega Macro",
  40065. height: math.unit(25, "miles")
  40066. },
  40067. ]
  40068. ))
  40069. characterMakers.push(() => makeCharacter(
  40070. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40071. {
  40072. front: {
  40073. height: math.unit(6, "feet"),
  40074. weight: math.unit(170, "lb"),
  40075. name: "Front",
  40076. image: {
  40077. source: "./media/characters/xenon/front.svg",
  40078. extra: 1376/1305,
  40079. bottom: 56/1432
  40080. }
  40081. },
  40082. back: {
  40083. height: math.unit(6, "feet"),
  40084. weight: math.unit(170, "lb"),
  40085. name: "Back",
  40086. image: {
  40087. source: "./media/characters/xenon/back.svg",
  40088. extra: 1328/1259,
  40089. bottom: 95/1423
  40090. }
  40091. },
  40092. maw: {
  40093. height: math.unit(0.52, "feet"),
  40094. name: "Maw",
  40095. image: {
  40096. source: "./media/characters/xenon/maw.svg"
  40097. }
  40098. },
  40099. hand: {
  40100. height: math.unit(0.82, "feet"),
  40101. name: "Hand",
  40102. image: {
  40103. source: "./media/characters/xenon/hand.svg"
  40104. }
  40105. },
  40106. foot: {
  40107. height: math.unit(1.13, "feet"),
  40108. name: "Foot",
  40109. image: {
  40110. source: "./media/characters/xenon/foot.svg"
  40111. }
  40112. },
  40113. },
  40114. [
  40115. {
  40116. name: "Micro",
  40117. height: math.unit(0.8, "inches")
  40118. },
  40119. {
  40120. name: "Normal",
  40121. height: math.unit(6, "feet")
  40122. },
  40123. {
  40124. name: "Macro",
  40125. height: math.unit(50, "feet"),
  40126. default: true
  40127. },
  40128. {
  40129. name: "Macro+",
  40130. height: math.unit(250, "feet")
  40131. },
  40132. {
  40133. name: "Megamacro",
  40134. height: math.unit(1500, "feet")
  40135. },
  40136. ]
  40137. ))
  40138. characterMakers.push(() => makeCharacter(
  40139. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40140. {
  40141. front: {
  40142. height: math.unit(7 + 5/12, "feet"),
  40143. name: "Front",
  40144. image: {
  40145. source: "./media/characters/zane/front.svg",
  40146. extra: 1260/1203,
  40147. bottom: 94/1354
  40148. }
  40149. },
  40150. back: {
  40151. height: math.unit(5.05, "feet"),
  40152. name: "Back",
  40153. image: {
  40154. source: "./media/characters/zane/back.svg",
  40155. extra: 893/829,
  40156. bottom: 30/923
  40157. }
  40158. },
  40159. werewolf: {
  40160. height: math.unit(11, "feet"),
  40161. name: "Werewolf",
  40162. image: {
  40163. source: "./media/characters/zane/werewolf.svg",
  40164. extra: 1383/1323,
  40165. bottom: 89/1472
  40166. }
  40167. },
  40168. foot: {
  40169. height: math.unit(1.46, "feet"),
  40170. name: "Foot",
  40171. image: {
  40172. source: "./media/characters/zane/foot.svg"
  40173. }
  40174. },
  40175. footFront: {
  40176. height: math.unit(0.784, "feet"),
  40177. name: "Foot (Front)",
  40178. image: {
  40179. source: "./media/characters/zane/foot-front.svg"
  40180. }
  40181. },
  40182. dick: {
  40183. height: math.unit(1.95, "feet"),
  40184. name: "Dick",
  40185. image: {
  40186. source: "./media/characters/zane/dick.svg"
  40187. }
  40188. },
  40189. dickWerewolf: {
  40190. height: math.unit(3.77, "feet"),
  40191. name: "Dick (Werewolf)",
  40192. image: {
  40193. source: "./media/characters/zane/dick.svg"
  40194. }
  40195. },
  40196. },
  40197. [
  40198. {
  40199. name: "Normal",
  40200. height: math.unit(7 + 5/12, "feet"),
  40201. default: true
  40202. },
  40203. ]
  40204. ))
  40205. characterMakers.push(() => makeCharacter(
  40206. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40207. {
  40208. front: {
  40209. height: math.unit(6 + 2/12, "feet"),
  40210. weight: math.unit(284, "lb"),
  40211. name: "Front",
  40212. image: {
  40213. source: "./media/characters/benni-desparque/front.svg",
  40214. extra: 1353/1126,
  40215. bottom: 69/1422
  40216. }
  40217. },
  40218. },
  40219. [
  40220. {
  40221. name: "Civilian",
  40222. height: math.unit(6 + 2/12, "feet")
  40223. },
  40224. {
  40225. name: "Normal",
  40226. height: math.unit(98, "feet"),
  40227. default: true
  40228. },
  40229. {
  40230. name: "Kaiju Fighter",
  40231. height: math.unit(268, "feet")
  40232. },
  40233. ]
  40234. ))
  40235. characterMakers.push(() => makeCharacter(
  40236. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40237. {
  40238. front: {
  40239. height: math.unit(5, "feet"),
  40240. weight: math.unit(105, "lb"),
  40241. name: "Front",
  40242. image: {
  40243. source: "./media/characters/maxine/front.svg",
  40244. extra: 1386/1250,
  40245. bottom: 71/1457
  40246. }
  40247. },
  40248. },
  40249. [
  40250. {
  40251. name: "Normal",
  40252. height: math.unit(5, "feet"),
  40253. default: true
  40254. },
  40255. ]
  40256. ))
  40257. characterMakers.push(() => makeCharacter(
  40258. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40259. {
  40260. front: {
  40261. height: math.unit(11 + 7/12, "feet"),
  40262. weight: math.unit(9576, "lb"),
  40263. name: "Front",
  40264. image: {
  40265. source: "./media/characters/scaly/front.svg",
  40266. extra: 888/867,
  40267. bottom: 36/924
  40268. }
  40269. },
  40270. },
  40271. [
  40272. {
  40273. name: "Normal",
  40274. height: math.unit(11 + 7/12, "feet"),
  40275. default: true
  40276. },
  40277. ]
  40278. ))
  40279. characterMakers.push(() => makeCharacter(
  40280. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40281. {
  40282. front: {
  40283. height: math.unit(6 + 3/12, "feet"),
  40284. name: "Front",
  40285. image: {
  40286. source: "./media/characters/saelria/front.svg",
  40287. extra: 1243/1138,
  40288. bottom: 46/1289
  40289. }
  40290. },
  40291. },
  40292. [
  40293. {
  40294. name: "Micro",
  40295. height: math.unit(6, "inches"),
  40296. },
  40297. {
  40298. name: "Normal",
  40299. height: math.unit(6 + 3/12, "feet"),
  40300. default: true
  40301. },
  40302. {
  40303. name: "Macro",
  40304. height: math.unit(25, "feet")
  40305. },
  40306. ]
  40307. ))
  40308. characterMakers.push(() => makeCharacter(
  40309. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40310. {
  40311. front: {
  40312. height: math.unit(80, "meters"),
  40313. weight: math.unit(7000, "tonnes"),
  40314. name: "Front",
  40315. image: {
  40316. source: "./media/characters/tef/front.svg",
  40317. extra: 2036/1991,
  40318. bottom: 54/2090
  40319. }
  40320. },
  40321. back: {
  40322. height: math.unit(80, "meters"),
  40323. weight: math.unit(7000, "tonnes"),
  40324. name: "Back",
  40325. image: {
  40326. source: "./media/characters/tef/back.svg",
  40327. extra: 2036/1991,
  40328. bottom: 54/2090
  40329. }
  40330. },
  40331. },
  40332. [
  40333. {
  40334. name: "Macro",
  40335. height: math.unit(80, "meters"),
  40336. default: true
  40337. },
  40338. ]
  40339. ))
  40340. characterMakers.push(() => makeCharacter(
  40341. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40342. {
  40343. front: {
  40344. height: math.unit(13, "feet"),
  40345. weight: math.unit(6, "tons"),
  40346. name: "Front",
  40347. image: {
  40348. source: "./media/characters/rover/front.svg",
  40349. extra: 1233/1156,
  40350. bottom: 50/1283
  40351. }
  40352. },
  40353. back: {
  40354. height: math.unit(13, "feet"),
  40355. weight: math.unit(6, "tons"),
  40356. name: "Back",
  40357. image: {
  40358. source: "./media/characters/rover/back.svg",
  40359. extra: 1327/1258,
  40360. bottom: 39/1366
  40361. }
  40362. },
  40363. },
  40364. [
  40365. {
  40366. name: "Normal",
  40367. height: math.unit(13, "feet"),
  40368. default: true
  40369. },
  40370. {
  40371. name: "Macro",
  40372. height: math.unit(1300, "feet")
  40373. },
  40374. {
  40375. name: "Megamacro",
  40376. height: math.unit(1300, "miles")
  40377. },
  40378. {
  40379. name: "Gigamacro",
  40380. height: math.unit(1300000, "miles")
  40381. },
  40382. ]
  40383. ))
  40384. characterMakers.push(() => makeCharacter(
  40385. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40386. {
  40387. front: {
  40388. height: math.unit(6, "feet"),
  40389. weight: math.unit(150, "lb"),
  40390. name: "Front",
  40391. image: {
  40392. source: "./media/characters/ariz/front.svg",
  40393. extra: 1401/1346,
  40394. bottom: 5/1406
  40395. }
  40396. },
  40397. },
  40398. [
  40399. {
  40400. name: "Normal",
  40401. height: math.unit(10, "feet"),
  40402. default: true
  40403. },
  40404. ]
  40405. ))
  40406. characterMakers.push(() => makeCharacter(
  40407. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40408. {
  40409. front: {
  40410. height: math.unit(6, "feet"),
  40411. weight: math.unit(140, "lb"),
  40412. name: "Front",
  40413. image: {
  40414. source: "./media/characters/sigrun/front.svg",
  40415. extra: 1418/1359,
  40416. bottom: 27/1445
  40417. }
  40418. },
  40419. },
  40420. [
  40421. {
  40422. name: "Macro",
  40423. height: math.unit(35, "feet"),
  40424. default: true
  40425. },
  40426. ]
  40427. ))
  40428. characterMakers.push(() => makeCharacter(
  40429. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40430. {
  40431. front: {
  40432. height: math.unit(6, "feet"),
  40433. weight: math.unit(150, "lb"),
  40434. name: "Front",
  40435. image: {
  40436. source: "./media/characters/numin/front.svg",
  40437. extra: 1433/1388,
  40438. bottom: 12/1445
  40439. }
  40440. },
  40441. },
  40442. [
  40443. {
  40444. name: "Macro",
  40445. height: math.unit(21.5, "km"),
  40446. default: true
  40447. },
  40448. ]
  40449. ))
  40450. characterMakers.push(() => makeCharacter(
  40451. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40452. {
  40453. front: {
  40454. height: math.unit(6, "feet"),
  40455. weight: math.unit(463, "lb"),
  40456. name: "Front",
  40457. image: {
  40458. source: "./media/characters/melwa/front.svg",
  40459. extra: 1307/1248,
  40460. bottom: 93/1400
  40461. }
  40462. },
  40463. },
  40464. [
  40465. {
  40466. name: "Macro",
  40467. height: math.unit(50, "meters"),
  40468. default: true
  40469. },
  40470. ]
  40471. ))
  40472. characterMakers.push(() => makeCharacter(
  40473. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40474. {
  40475. front: {
  40476. height: math.unit(325, "feet"),
  40477. name: "Front",
  40478. image: {
  40479. source: "./media/characters/zorkaiju/front.svg",
  40480. extra: 1955/1814,
  40481. bottom: 40/1995
  40482. }
  40483. },
  40484. frontExtended: {
  40485. height: math.unit(325, "feet"),
  40486. name: "Front (Extended)",
  40487. image: {
  40488. source: "./media/characters/zorkaiju/front-extended.svg",
  40489. extra: 1955/1814,
  40490. bottom: 40/1995
  40491. }
  40492. },
  40493. side: {
  40494. height: math.unit(325, "feet"),
  40495. name: "Side",
  40496. image: {
  40497. source: "./media/characters/zorkaiju/side.svg",
  40498. extra: 1495/1396,
  40499. bottom: 17/1512
  40500. }
  40501. },
  40502. sideExtended: {
  40503. height: math.unit(325, "feet"),
  40504. name: "Side (Extended)",
  40505. image: {
  40506. source: "./media/characters/zorkaiju/side-extended.svg",
  40507. extra: 1495/1396,
  40508. bottom: 17/1512
  40509. }
  40510. },
  40511. back: {
  40512. height: math.unit(325, "feet"),
  40513. name: "Back",
  40514. image: {
  40515. source: "./media/characters/zorkaiju/back.svg",
  40516. extra: 1959/1821,
  40517. bottom: 31/1990
  40518. }
  40519. },
  40520. backExtended: {
  40521. height: math.unit(325, "feet"),
  40522. name: "Back (Extended)",
  40523. image: {
  40524. source: "./media/characters/zorkaiju/back-extended.svg",
  40525. extra: 1959/1821,
  40526. bottom: 31/1990
  40527. }
  40528. },
  40529. hand: {
  40530. height: math.unit(58.4, "feet"),
  40531. name: "Hand",
  40532. image: {
  40533. source: "./media/characters/zorkaiju/hand.svg"
  40534. }
  40535. },
  40536. handExtended: {
  40537. height: math.unit(61.4, "feet"),
  40538. name: "Hand (Extended)",
  40539. image: {
  40540. source: "./media/characters/zorkaiju/hand-extended.svg"
  40541. }
  40542. },
  40543. foot: {
  40544. height: math.unit(95, "feet"),
  40545. name: "Foot",
  40546. image: {
  40547. source: "./media/characters/zorkaiju/foot.svg"
  40548. }
  40549. },
  40550. leftArm: {
  40551. height: math.unit(59, "feet"),
  40552. name: "Left Arm",
  40553. image: {
  40554. source: "./media/characters/zorkaiju/left-arm.svg"
  40555. }
  40556. },
  40557. rightArm: {
  40558. height: math.unit(59, "feet"),
  40559. name: "Right Arm",
  40560. image: {
  40561. source: "./media/characters/zorkaiju/right-arm.svg"
  40562. }
  40563. },
  40564. tail: {
  40565. height: math.unit(104, "feet"),
  40566. name: "Tail",
  40567. image: {
  40568. source: "./media/characters/zorkaiju/tail.svg"
  40569. }
  40570. },
  40571. tailExtended: {
  40572. height: math.unit(104, "feet"),
  40573. name: "Tail (Extended)",
  40574. image: {
  40575. source: "./media/characters/zorkaiju/tail-extended.svg"
  40576. }
  40577. },
  40578. tailBottom: {
  40579. height: math.unit(104, "feet"),
  40580. name: "Tail Bottom",
  40581. image: {
  40582. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40583. }
  40584. },
  40585. crystal: {
  40586. height: math.unit(27.54, "feet"),
  40587. name: "Crystal",
  40588. image: {
  40589. source: "./media/characters/zorkaiju/crystal.svg"
  40590. }
  40591. },
  40592. },
  40593. [
  40594. {
  40595. name: "Kaiju",
  40596. height: math.unit(325, "feet"),
  40597. default: true
  40598. },
  40599. ]
  40600. ))
  40601. characterMakers.push(() => makeCharacter(
  40602. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40603. {
  40604. front: {
  40605. height: math.unit(6 + 1/12, "feet"),
  40606. weight: math.unit(115, "lb"),
  40607. name: "Front",
  40608. image: {
  40609. source: "./media/characters/bailey-belfry/front.svg",
  40610. extra: 1240/1121,
  40611. bottom: 101/1341
  40612. }
  40613. },
  40614. },
  40615. [
  40616. {
  40617. name: "Normal",
  40618. height: math.unit(6 + 1/12, "feet"),
  40619. default: true
  40620. },
  40621. ]
  40622. ))
  40623. characterMakers.push(() => makeCharacter(
  40624. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40625. {
  40626. side: {
  40627. height: math.unit(4, "meters"),
  40628. weight: math.unit(250, "kg"),
  40629. name: "Side",
  40630. image: {
  40631. source: "./media/characters/blacky/side.svg",
  40632. extra: 1027/919,
  40633. bottom: 43/1070
  40634. }
  40635. },
  40636. maw: {
  40637. height: math.unit(1, "meters"),
  40638. name: "Maw",
  40639. image: {
  40640. source: "./media/characters/blacky/maw.svg"
  40641. }
  40642. },
  40643. paw: {
  40644. height: math.unit(1, "meters"),
  40645. name: "Paw",
  40646. image: {
  40647. source: "./media/characters/blacky/paw.svg"
  40648. }
  40649. },
  40650. },
  40651. [
  40652. {
  40653. name: "Normal",
  40654. height: math.unit(4, "meters"),
  40655. default: true
  40656. },
  40657. ]
  40658. ))
  40659. characterMakers.push(() => makeCharacter(
  40660. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40661. {
  40662. front: {
  40663. height: math.unit(170, "cm"),
  40664. weight: math.unit(66, "kg"),
  40665. name: "Front",
  40666. image: {
  40667. source: "./media/characters/thux-ei/front.svg",
  40668. extra: 1109/1011,
  40669. bottom: 8/1117
  40670. }
  40671. },
  40672. },
  40673. [
  40674. {
  40675. name: "Normal",
  40676. height: math.unit(170, "cm"),
  40677. default: true
  40678. },
  40679. ]
  40680. ))
  40681. characterMakers.push(() => makeCharacter(
  40682. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40683. {
  40684. front: {
  40685. height: math.unit(5, "feet"),
  40686. weight: math.unit(120, "lb"),
  40687. name: "Front",
  40688. image: {
  40689. source: "./media/characters/roxanne-voltaire/front.svg",
  40690. extra: 1901/1779,
  40691. bottom: 53/1954
  40692. }
  40693. },
  40694. },
  40695. [
  40696. {
  40697. name: "Normal",
  40698. height: math.unit(5, "feet"),
  40699. default: true
  40700. },
  40701. {
  40702. name: "Giant",
  40703. height: math.unit(50, "feet")
  40704. },
  40705. {
  40706. name: "Titan",
  40707. height: math.unit(500, "feet")
  40708. },
  40709. {
  40710. name: "Macro",
  40711. height: math.unit(5000, "feet")
  40712. },
  40713. {
  40714. name: "Megamacro",
  40715. height: math.unit(50000, "feet")
  40716. },
  40717. {
  40718. name: "Gigamacro",
  40719. height: math.unit(500000, "feet")
  40720. },
  40721. {
  40722. name: "Teramacro",
  40723. height: math.unit(5e6, "feet")
  40724. },
  40725. ]
  40726. ))
  40727. characterMakers.push(() => makeCharacter(
  40728. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40729. {
  40730. front: {
  40731. height: math.unit(6 + 2/12, "feet"),
  40732. name: "Front",
  40733. image: {
  40734. source: "./media/characters/squeaks/front.svg",
  40735. extra: 1823/1768,
  40736. bottom: 138/1961
  40737. }
  40738. },
  40739. },
  40740. [
  40741. {
  40742. name: "Micro",
  40743. height: math.unit(0.5, "inches")
  40744. },
  40745. {
  40746. name: "Normal",
  40747. height: math.unit(6 + 2/12, "feet"),
  40748. default: true
  40749. },
  40750. {
  40751. name: "Macro",
  40752. height: math.unit(600, "feet")
  40753. },
  40754. ]
  40755. ))
  40756. characterMakers.push(() => makeCharacter(
  40757. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40758. {
  40759. front: {
  40760. height: math.unit(1.72, "meters"),
  40761. name: "Front",
  40762. image: {
  40763. source: "./media/characters/archinger/front.svg",
  40764. extra: 1861/1675,
  40765. bottom: 125/1986
  40766. }
  40767. },
  40768. back: {
  40769. height: math.unit(1.72, "meters"),
  40770. name: "Back",
  40771. image: {
  40772. source: "./media/characters/archinger/back.svg",
  40773. extra: 1844/1701,
  40774. bottom: 104/1948
  40775. }
  40776. },
  40777. cock: {
  40778. height: math.unit(0.59, "feet"),
  40779. name: "Cock",
  40780. image: {
  40781. source: "./media/characters/archinger/cock.svg"
  40782. }
  40783. },
  40784. },
  40785. [
  40786. {
  40787. name: "Normal",
  40788. height: math.unit(1.72, "meters"),
  40789. default: true
  40790. },
  40791. {
  40792. name: "Macro",
  40793. height: math.unit(84, "meters")
  40794. },
  40795. {
  40796. name: "Macro+",
  40797. height: math.unit(112, "meters")
  40798. },
  40799. {
  40800. name: "Macro++",
  40801. height: math.unit(960, "meters")
  40802. },
  40803. {
  40804. name: "Macro+++",
  40805. height: math.unit(4, "km")
  40806. },
  40807. {
  40808. name: "Macro++++",
  40809. height: math.unit(48, "km")
  40810. },
  40811. {
  40812. name: "Macro+++++",
  40813. height: math.unit(4500, "km")
  40814. },
  40815. ]
  40816. ))
  40817. characterMakers.push(() => makeCharacter(
  40818. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40819. {
  40820. front: {
  40821. height: math.unit(5 + 5/12, "feet"),
  40822. name: "Front",
  40823. image: {
  40824. source: "./media/characters/alsnapz/front.svg",
  40825. extra: 1157/1065,
  40826. bottom: 42/1199
  40827. }
  40828. },
  40829. },
  40830. [
  40831. {
  40832. name: "Normal",
  40833. height: math.unit(5 + 5/12, "feet"),
  40834. default: true
  40835. },
  40836. ]
  40837. ))
  40838. characterMakers.push(() => makeCharacter(
  40839. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40840. {
  40841. side: {
  40842. height: math.unit(3.2, "earths"),
  40843. name: "Side",
  40844. image: {
  40845. source: "./media/characters/mag/side.svg",
  40846. extra: 1331/1008,
  40847. bottom: 52/1383
  40848. }
  40849. },
  40850. wing: {
  40851. height: math.unit(1.94, "earths"),
  40852. name: "Wing",
  40853. image: {
  40854. source: "./media/characters/mag/wing.svg"
  40855. }
  40856. },
  40857. dick: {
  40858. height: math.unit(1.8, "earths"),
  40859. name: "Dick",
  40860. image: {
  40861. source: "./media/characters/mag/dick.svg"
  40862. }
  40863. },
  40864. ass: {
  40865. height: math.unit(1.33, "earths"),
  40866. name: "Ass",
  40867. image: {
  40868. source: "./media/characters/mag/ass.svg"
  40869. }
  40870. },
  40871. head: {
  40872. height: math.unit(1.1, "earths"),
  40873. name: "Head",
  40874. image: {
  40875. source: "./media/characters/mag/head.svg"
  40876. }
  40877. },
  40878. maw: {
  40879. height: math.unit(1.62, "earths"),
  40880. name: "Maw",
  40881. image: {
  40882. source: "./media/characters/mag/maw.svg"
  40883. }
  40884. },
  40885. },
  40886. [
  40887. {
  40888. name: "Small",
  40889. height: math.unit(162, "feet")
  40890. },
  40891. {
  40892. name: "Normal",
  40893. height: math.unit(3.2, "earths"),
  40894. default: true
  40895. },
  40896. ]
  40897. ))
  40898. characterMakers.push(() => makeCharacter(
  40899. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40900. {
  40901. front: {
  40902. height: math.unit(512, "feet"),
  40903. weight: math.unit(63509, "tonnes"),
  40904. name: "Front",
  40905. image: {
  40906. source: "./media/characters/vorrel-harroc/front.svg",
  40907. extra: 1075/1063,
  40908. bottom: 62/1137
  40909. }
  40910. },
  40911. },
  40912. [
  40913. {
  40914. name: "Normal",
  40915. height: math.unit(10, "feet")
  40916. },
  40917. {
  40918. name: "Macro",
  40919. height: math.unit(512, "feet"),
  40920. default: true
  40921. },
  40922. {
  40923. name: "Megamacro",
  40924. height: math.unit(256, "miles")
  40925. },
  40926. {
  40927. name: "Gigamacro",
  40928. height: math.unit(4096, "miles")
  40929. },
  40930. ]
  40931. ))
  40932. characterMakers.push(() => makeCharacter(
  40933. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40934. {
  40935. side: {
  40936. height: math.unit(50, "feet"),
  40937. name: "Side",
  40938. image: {
  40939. source: "./media/characters/froimar/side.svg",
  40940. extra: 855/638,
  40941. bottom: 99/954
  40942. }
  40943. },
  40944. },
  40945. [
  40946. {
  40947. name: "Macro",
  40948. height: math.unit(50, "feet"),
  40949. default: true
  40950. },
  40951. ]
  40952. ))
  40953. characterMakers.push(() => makeCharacter(
  40954. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40955. {
  40956. front: {
  40957. height: math.unit(210, "miles"),
  40958. name: "Front",
  40959. image: {
  40960. source: "./media/characters/timothy/front.svg",
  40961. extra: 1007/943,
  40962. bottom: 62/1069
  40963. }
  40964. },
  40965. frontSkirt: {
  40966. height: math.unit(210, "miles"),
  40967. name: "Front (Skirt)",
  40968. image: {
  40969. source: "./media/characters/timothy/front-skirt.svg",
  40970. extra: 1007/943,
  40971. bottom: 62/1069
  40972. }
  40973. },
  40974. frontCoat: {
  40975. height: math.unit(210, "miles"),
  40976. name: "Front (Coat)",
  40977. image: {
  40978. source: "./media/characters/timothy/front-coat.svg",
  40979. extra: 1007/943,
  40980. bottom: 62/1069
  40981. }
  40982. },
  40983. },
  40984. [
  40985. {
  40986. name: "Macro",
  40987. height: math.unit(210, "miles"),
  40988. default: true
  40989. },
  40990. {
  40991. name: "Megamacro",
  40992. height: math.unit(210000, "miles")
  40993. },
  40994. ]
  40995. ))
  40996. characterMakers.push(() => makeCharacter(
  40997. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40998. {
  40999. front: {
  41000. height: math.unit(188, "feet"),
  41001. name: "Front",
  41002. image: {
  41003. source: "./media/characters/pyotr/front.svg",
  41004. extra: 1912/1826,
  41005. bottom: 18/1930
  41006. }
  41007. },
  41008. },
  41009. [
  41010. {
  41011. name: "Macro",
  41012. height: math.unit(188, "feet"),
  41013. default: true
  41014. },
  41015. {
  41016. name: "Megamacro",
  41017. height: math.unit(8, "miles")
  41018. },
  41019. ]
  41020. ))
  41021. characterMakers.push(() => makeCharacter(
  41022. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41023. {
  41024. side: {
  41025. height: math.unit(10, "feet"),
  41026. weight: math.unit(4500, "lb"),
  41027. name: "Side",
  41028. image: {
  41029. source: "./media/characters/ackart/side.svg",
  41030. extra: 1776/1668,
  41031. bottom: 116/1892
  41032. }
  41033. },
  41034. },
  41035. [
  41036. {
  41037. name: "Normal",
  41038. height: math.unit(10, "feet"),
  41039. default: true
  41040. },
  41041. ]
  41042. ))
  41043. characterMakers.push(() => makeCharacter(
  41044. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41045. {
  41046. side: {
  41047. height: math.unit(21, "feet"),
  41048. name: "Side",
  41049. image: {
  41050. source: "./media/characters/nolow/side.svg",
  41051. extra: 1484/1434,
  41052. bottom: 85/1569
  41053. }
  41054. },
  41055. sideErect: {
  41056. height: math.unit(21, "feet"),
  41057. name: "Side-erect",
  41058. image: {
  41059. source: "./media/characters/nolow/side-erect.svg",
  41060. extra: 1484/1434,
  41061. bottom: 85/1569
  41062. }
  41063. },
  41064. },
  41065. [
  41066. {
  41067. name: "Regular",
  41068. height: math.unit(12, "feet")
  41069. },
  41070. {
  41071. name: "Big Chee",
  41072. height: math.unit(21, "feet"),
  41073. default: true
  41074. },
  41075. ]
  41076. ))
  41077. characterMakers.push(() => makeCharacter(
  41078. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41079. {
  41080. front: {
  41081. height: math.unit(7, "feet"),
  41082. weight: math.unit(250, "lb"),
  41083. name: "Front",
  41084. image: {
  41085. source: "./media/characters/nines/front.svg",
  41086. extra: 1741/1607,
  41087. bottom: 41/1782
  41088. }
  41089. },
  41090. side: {
  41091. height: math.unit(7, "feet"),
  41092. weight: math.unit(250, "lb"),
  41093. name: "Side",
  41094. image: {
  41095. source: "./media/characters/nines/side.svg",
  41096. extra: 1854/1735,
  41097. bottom: 93/1947
  41098. }
  41099. },
  41100. back: {
  41101. height: math.unit(7, "feet"),
  41102. weight: math.unit(250, "lb"),
  41103. name: "Back",
  41104. image: {
  41105. source: "./media/characters/nines/back.svg",
  41106. extra: 1748/1615,
  41107. bottom: 20/1768
  41108. }
  41109. },
  41110. },
  41111. [
  41112. {
  41113. name: "Megamacro",
  41114. height: math.unit(99, "km"),
  41115. default: true
  41116. },
  41117. ]
  41118. ))
  41119. characterMakers.push(() => makeCharacter(
  41120. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41121. {
  41122. front: {
  41123. height: math.unit(5 + 10/12, "feet"),
  41124. weight: math.unit(210, "lb"),
  41125. name: "Front",
  41126. image: {
  41127. source: "./media/characters/zenith/front.svg",
  41128. extra: 1531/1452,
  41129. bottom: 198/1729
  41130. }
  41131. },
  41132. back: {
  41133. height: math.unit(5 + 10/12, "feet"),
  41134. weight: math.unit(210, "lb"),
  41135. name: "Back",
  41136. image: {
  41137. source: "./media/characters/zenith/back.svg",
  41138. extra: 1571/1487,
  41139. bottom: 75/1646
  41140. }
  41141. },
  41142. },
  41143. [
  41144. {
  41145. name: "Normal",
  41146. height: math.unit(5 + 10/12, "feet"),
  41147. default: true
  41148. }
  41149. ]
  41150. ))
  41151. characterMakers.push(() => makeCharacter(
  41152. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41153. {
  41154. front: {
  41155. height: math.unit(4, "feet"),
  41156. weight: math.unit(60, "lb"),
  41157. name: "Front",
  41158. image: {
  41159. source: "./media/characters/jasper/front.svg",
  41160. extra: 1450/1379,
  41161. bottom: 19/1469
  41162. }
  41163. },
  41164. },
  41165. [
  41166. {
  41167. name: "Normal",
  41168. height: math.unit(4, "feet"),
  41169. default: true
  41170. },
  41171. ]
  41172. ))
  41173. characterMakers.push(() => makeCharacter(
  41174. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41175. {
  41176. front: {
  41177. height: math.unit(6 + 5/12, "feet"),
  41178. weight: math.unit(290, "lb"),
  41179. name: "Front",
  41180. image: {
  41181. source: "./media/characters/tiberius-thyben/front.svg",
  41182. extra: 757/739,
  41183. bottom: 39/796
  41184. }
  41185. },
  41186. },
  41187. [
  41188. {
  41189. name: "Micro",
  41190. height: math.unit(1.5, "inches")
  41191. },
  41192. {
  41193. name: "Normal",
  41194. height: math.unit(6 + 5/12, "feet"),
  41195. default: true
  41196. },
  41197. {
  41198. name: "Macro",
  41199. height: math.unit(300, "feet")
  41200. },
  41201. ]
  41202. ))
  41203. characterMakers.push(() => makeCharacter(
  41204. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41205. {
  41206. front: {
  41207. height: math.unit(5 + 6/12, "feet"),
  41208. weight: math.unit(60, "kg"),
  41209. name: "Front",
  41210. image: {
  41211. source: "./media/characters/sabre/front.svg",
  41212. extra: 738/671,
  41213. bottom: 27/765
  41214. }
  41215. },
  41216. },
  41217. [
  41218. {
  41219. name: "Teeny",
  41220. height: math.unit(2, "inches")
  41221. },
  41222. {
  41223. name: "Smol",
  41224. height: math.unit(8, "inches")
  41225. },
  41226. {
  41227. name: "Normal",
  41228. height: math.unit(5 + 6/12, "feet"),
  41229. default: true
  41230. },
  41231. {
  41232. name: "Mini-Macro",
  41233. height: math.unit(15, "feet")
  41234. },
  41235. {
  41236. name: "Macro",
  41237. height: math.unit(50, "feet")
  41238. },
  41239. ]
  41240. ))
  41241. characterMakers.push(() => makeCharacter(
  41242. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41243. {
  41244. front: {
  41245. height: math.unit(6 + 4/12, "feet"),
  41246. weight: math.unit(170, "lb"),
  41247. name: "Front",
  41248. image: {
  41249. source: "./media/characters/charlie/front.svg",
  41250. extra: 1348/1228,
  41251. bottom: 15/1363
  41252. }
  41253. },
  41254. },
  41255. [
  41256. {
  41257. name: "Macro",
  41258. height: math.unit(1700, "meters"),
  41259. default: true
  41260. },
  41261. {
  41262. name: "MegaMacro",
  41263. height: math.unit(20400, "meters")
  41264. },
  41265. ]
  41266. ))
  41267. characterMakers.push(() => makeCharacter(
  41268. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41269. {
  41270. front: {
  41271. height: math.unit(6 + 3/12, "feet"),
  41272. weight: math.unit(185, "lb"),
  41273. name: "Front",
  41274. image: {
  41275. source: "./media/characters/susan-grant/front.svg",
  41276. extra: 1351/1327,
  41277. bottom: 26/1377
  41278. }
  41279. },
  41280. },
  41281. [
  41282. {
  41283. name: "Normal",
  41284. height: math.unit(6 + 3/12, "feet"),
  41285. default: true
  41286. },
  41287. {
  41288. name: "Macro",
  41289. height: math.unit(225, "feet")
  41290. },
  41291. {
  41292. name: "Macro+",
  41293. height: math.unit(900, "feet")
  41294. },
  41295. {
  41296. name: "MegaMacro",
  41297. height: math.unit(14400, "feet")
  41298. },
  41299. ]
  41300. ))
  41301. characterMakers.push(() => makeCharacter(
  41302. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41303. {
  41304. front: {
  41305. height: math.unit(5 + 4/12, "feet"),
  41306. weight: math.unit(110, "lb"),
  41307. name: "Front",
  41308. image: {
  41309. source: "./media/characters/axel-isanov/front.svg",
  41310. extra: 1096/1065,
  41311. bottom: 13/1109
  41312. }
  41313. },
  41314. },
  41315. [
  41316. {
  41317. name: "Normal",
  41318. height: math.unit(5 + 4/12, "feet"),
  41319. default: true
  41320. },
  41321. ]
  41322. ))
  41323. characterMakers.push(() => makeCharacter(
  41324. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41325. {
  41326. front: {
  41327. height: math.unit(9, "feet"),
  41328. weight: math.unit(467, "lb"),
  41329. name: "Front",
  41330. image: {
  41331. source: "./media/characters/necahual/front.svg",
  41332. extra: 920/873,
  41333. bottom: 26/946
  41334. }
  41335. },
  41336. back: {
  41337. height: math.unit(9, "feet"),
  41338. weight: math.unit(467, "lb"),
  41339. name: "Back",
  41340. image: {
  41341. source: "./media/characters/necahual/back.svg",
  41342. extra: 930/884,
  41343. bottom: 16/946
  41344. }
  41345. },
  41346. frontUnderwear: {
  41347. height: math.unit(9, "feet"),
  41348. weight: math.unit(467, "lb"),
  41349. name: "Front (Underwear)",
  41350. image: {
  41351. source: "./media/characters/necahual/front-underwear.svg",
  41352. extra: 920/873,
  41353. bottom: 26/946
  41354. }
  41355. },
  41356. frontDressed: {
  41357. height: math.unit(9, "feet"),
  41358. weight: math.unit(467, "lb"),
  41359. name: "Front (Dressed)",
  41360. image: {
  41361. source: "./media/characters/necahual/front-dressed.svg",
  41362. extra: 920/873,
  41363. bottom: 26/946
  41364. }
  41365. },
  41366. },
  41367. [
  41368. {
  41369. name: "Comprsesed",
  41370. height: math.unit(9, "feet")
  41371. },
  41372. {
  41373. name: "Natural",
  41374. height: math.unit(15, "feet"),
  41375. default: true
  41376. },
  41377. {
  41378. name: "Boosted",
  41379. height: math.unit(50, "feet")
  41380. },
  41381. {
  41382. name: "Boosted+",
  41383. height: math.unit(150, "feet")
  41384. },
  41385. {
  41386. name: "Max",
  41387. height: math.unit(500, "feet")
  41388. },
  41389. ]
  41390. ))
  41391. characterMakers.push(() => makeCharacter(
  41392. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41393. {
  41394. front: {
  41395. height: math.unit(22 + 1/12, "feet"),
  41396. weight: math.unit(3200, "lb"),
  41397. name: "Front",
  41398. image: {
  41399. source: "./media/characters/theo-acacia/front.svg",
  41400. extra: 1796/1741,
  41401. bottom: 83/1879
  41402. }
  41403. },
  41404. frontUnderwear: {
  41405. height: math.unit(22 + 1/12, "feet"),
  41406. weight: math.unit(3200, "lb"),
  41407. name: "Front (Underwear)",
  41408. image: {
  41409. source: "./media/characters/theo-acacia/front-underwear.svg",
  41410. extra: 1796/1741,
  41411. bottom: 83/1879
  41412. }
  41413. },
  41414. frontNude: {
  41415. height: math.unit(22 + 1/12, "feet"),
  41416. weight: math.unit(3200, "lb"),
  41417. name: "Front (Nude)",
  41418. image: {
  41419. source: "./media/characters/theo-acacia/front-nude.svg",
  41420. extra: 1796/1741,
  41421. bottom: 83/1879
  41422. }
  41423. },
  41424. },
  41425. [
  41426. {
  41427. name: "Normal",
  41428. height: math.unit(22 + 1/12, "feet"),
  41429. default: true
  41430. },
  41431. ]
  41432. ))
  41433. characterMakers.push(() => makeCharacter(
  41434. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41435. {
  41436. front: {
  41437. height: math.unit(20, "feet"),
  41438. name: "Front",
  41439. image: {
  41440. source: "./media/characters/astra/front.svg",
  41441. extra: 1850/1714,
  41442. bottom: 106/1956
  41443. }
  41444. },
  41445. frontUndressed: {
  41446. height: math.unit(20, "feet"),
  41447. name: "Front (Undressed)",
  41448. image: {
  41449. source: "./media/characters/astra/front-undressed.svg",
  41450. extra: 1926/1749,
  41451. bottom: 0/1926
  41452. }
  41453. },
  41454. hand: {
  41455. height: math.unit(1.53, "feet"),
  41456. name: "Hand",
  41457. image: {
  41458. source: "./media/characters/astra/hand.svg"
  41459. }
  41460. },
  41461. paw: {
  41462. height: math.unit(1.53, "feet"),
  41463. name: "Paw",
  41464. image: {
  41465. source: "./media/characters/astra/paw.svg"
  41466. }
  41467. },
  41468. },
  41469. [
  41470. {
  41471. name: "Smallest",
  41472. height: math.unit(20, "feet")
  41473. },
  41474. {
  41475. name: "Normal",
  41476. height: math.unit(1e9, "miles"),
  41477. default: true
  41478. },
  41479. {
  41480. name: "Larger",
  41481. height: math.unit(5, "multiverses")
  41482. },
  41483. {
  41484. name: "Largest",
  41485. height: math.unit(1e9, "multiverses")
  41486. },
  41487. ]
  41488. ))
  41489. characterMakers.push(() => makeCharacter(
  41490. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41491. {
  41492. front: {
  41493. height: math.unit(8, "feet"),
  41494. name: "Front",
  41495. image: {
  41496. source: "./media/characters/breanna/front.svg",
  41497. extra: 1912/1632,
  41498. bottom: 33/1945
  41499. }
  41500. },
  41501. },
  41502. [
  41503. {
  41504. name: "Smallest",
  41505. height: math.unit(8, "feet")
  41506. },
  41507. {
  41508. name: "Normal",
  41509. height: math.unit(1, "mile"),
  41510. default: true
  41511. },
  41512. {
  41513. name: "Maximum",
  41514. height: math.unit(1500000000000, "lightyears")
  41515. },
  41516. ]
  41517. ))
  41518. characterMakers.push(() => makeCharacter(
  41519. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41520. {
  41521. front: {
  41522. height: math.unit(5 + 11/12, "feet"),
  41523. weight: math.unit(155, "lb"),
  41524. name: "Front",
  41525. image: {
  41526. source: "./media/characters/cai/front.svg",
  41527. extra: 1823/1702,
  41528. bottom: 32/1855
  41529. }
  41530. },
  41531. back: {
  41532. height: math.unit(5 + 11/12, "feet"),
  41533. weight: math.unit(155, "lb"),
  41534. name: "Back",
  41535. image: {
  41536. source: "./media/characters/cai/back.svg",
  41537. extra: 1809/1708,
  41538. bottom: 31/1840
  41539. }
  41540. },
  41541. },
  41542. [
  41543. {
  41544. name: "Normal",
  41545. height: math.unit(5 + 11/12, "feet"),
  41546. default: true
  41547. },
  41548. {
  41549. name: "Big",
  41550. height: math.unit(15, "feet")
  41551. },
  41552. {
  41553. name: "Macro",
  41554. height: math.unit(200, "feet")
  41555. },
  41556. ]
  41557. ))
  41558. characterMakers.push(() => makeCharacter(
  41559. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41560. {
  41561. front: {
  41562. height: math.unit(5 + 6/12, "feet"),
  41563. weight: math.unit(160, "lb"),
  41564. name: "Front",
  41565. image: {
  41566. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41567. extra: 1227/1174,
  41568. bottom: 37/1264
  41569. }
  41570. },
  41571. },
  41572. [
  41573. {
  41574. name: "Macro",
  41575. height: math.unit(444, "meters"),
  41576. default: true
  41577. },
  41578. ]
  41579. ))
  41580. characterMakers.push(() => makeCharacter(
  41581. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41582. {
  41583. front: {
  41584. height: math.unit(18 + 7/12, "feet"),
  41585. name: "Front",
  41586. image: {
  41587. source: "./media/characters/rex/front.svg",
  41588. extra: 1941/1807,
  41589. bottom: 66/2007
  41590. }
  41591. },
  41592. back: {
  41593. height: math.unit(18 + 7/12, "feet"),
  41594. name: "Back",
  41595. image: {
  41596. source: "./media/characters/rex/back.svg",
  41597. extra: 1937/1822,
  41598. bottom: 42/1979
  41599. }
  41600. },
  41601. boot: {
  41602. height: math.unit(3.45, "feet"),
  41603. name: "Boot",
  41604. image: {
  41605. source: "./media/characters/rex/boot.svg"
  41606. }
  41607. },
  41608. paw: {
  41609. height: math.unit(4.17, "feet"),
  41610. name: "Paw",
  41611. image: {
  41612. source: "./media/characters/rex/paw.svg"
  41613. }
  41614. },
  41615. head: {
  41616. height: math.unit(6.728, "feet"),
  41617. name: "Head",
  41618. image: {
  41619. source: "./media/characters/rex/head.svg"
  41620. }
  41621. },
  41622. },
  41623. [
  41624. {
  41625. name: "Nano",
  41626. height: math.unit(18 + 7/12, "feet")
  41627. },
  41628. {
  41629. name: "Micro",
  41630. height: math.unit(1.5, "megameters")
  41631. },
  41632. {
  41633. name: "Normal",
  41634. height: math.unit(440, "megameters"),
  41635. default: true
  41636. },
  41637. {
  41638. name: "Macro",
  41639. height: math.unit(2.5, "gigameters")
  41640. },
  41641. {
  41642. name: "Gigamacro",
  41643. height: math.unit(2, "galaxies")
  41644. },
  41645. ]
  41646. ))
  41647. characterMakers.push(() => makeCharacter(
  41648. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41649. {
  41650. side: {
  41651. height: math.unit(32, "feet"),
  41652. weight: math.unit(250000, "lb"),
  41653. name: "Side",
  41654. image: {
  41655. source: "./media/characters/silverwing/side.svg",
  41656. extra: 1100/1019,
  41657. bottom: 204/1304
  41658. }
  41659. },
  41660. },
  41661. [
  41662. {
  41663. name: "Normal",
  41664. height: math.unit(32, "feet"),
  41665. default: true
  41666. },
  41667. ]
  41668. ))
  41669. characterMakers.push(() => makeCharacter(
  41670. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41671. {
  41672. front: {
  41673. height: math.unit(6 + 6/12, "feet"),
  41674. weight: math.unit(350, "lb"),
  41675. name: "Front",
  41676. image: {
  41677. source: "./media/characters/tristan-hawthorne/front.svg",
  41678. extra: 1159/1124,
  41679. bottom: 37/1196
  41680. }
  41681. },
  41682. },
  41683. [
  41684. {
  41685. name: "Normal",
  41686. height: math.unit(6 + 6/12, "feet"),
  41687. default: true
  41688. },
  41689. ]
  41690. ))
  41691. characterMakers.push(() => makeCharacter(
  41692. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41693. {
  41694. front: {
  41695. height: math.unit(5 + 11/12, "feet"),
  41696. weight: math.unit(190, "lb"),
  41697. name: "Front",
  41698. image: {
  41699. source: "./media/characters/mizu/front.svg",
  41700. extra: 1988/1788,
  41701. bottom: 14/2002
  41702. }
  41703. },
  41704. },
  41705. [
  41706. {
  41707. name: "Normal",
  41708. height: math.unit(5 + 11/12, "feet"),
  41709. default: true
  41710. },
  41711. ]
  41712. ))
  41713. characterMakers.push(() => makeCharacter(
  41714. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41715. {
  41716. front: {
  41717. height: math.unit(1.7, "feet"),
  41718. weight: math.unit(50, "lb"),
  41719. name: "Front",
  41720. image: {
  41721. source: "./media/characters/dechroma/front.svg",
  41722. extra: 1095/859,
  41723. bottom: 64/1159
  41724. }
  41725. },
  41726. },
  41727. [
  41728. {
  41729. name: "Normal",
  41730. height: math.unit(1.7, "feet"),
  41731. default: true
  41732. },
  41733. ]
  41734. ))
  41735. characterMakers.push(() => makeCharacter(
  41736. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41737. {
  41738. side: {
  41739. height: math.unit(30, "feet"),
  41740. name: "Side",
  41741. image: {
  41742. source: "./media/characters/veluren-thanazel/side.svg",
  41743. extra: 1611/633,
  41744. bottom: 118/1729
  41745. }
  41746. },
  41747. front: {
  41748. height: math.unit(30, "feet"),
  41749. name: "Front",
  41750. image: {
  41751. source: "./media/characters/veluren-thanazel/front.svg",
  41752. extra: 1486/636,
  41753. bottom: 238/1724
  41754. }
  41755. },
  41756. head: {
  41757. height: math.unit(21.4, "feet"),
  41758. name: "Head",
  41759. image: {
  41760. source: "./media/characters/veluren-thanazel/head.svg"
  41761. }
  41762. },
  41763. genitals: {
  41764. height: math.unit(19.4, "feet"),
  41765. name: "Genitals",
  41766. image: {
  41767. source: "./media/characters/veluren-thanazel/genitals.svg"
  41768. }
  41769. },
  41770. },
  41771. [
  41772. {
  41773. name: "Social",
  41774. height: math.unit(6, "feet")
  41775. },
  41776. {
  41777. name: "Play",
  41778. height: math.unit(12, "feet")
  41779. },
  41780. {
  41781. name: "True",
  41782. height: math.unit(30, "feet"),
  41783. default: true
  41784. },
  41785. ]
  41786. ))
  41787. characterMakers.push(() => makeCharacter(
  41788. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41789. {
  41790. front: {
  41791. height: math.unit(7 + 6/12, "feet"),
  41792. weight: math.unit(500, "kg"),
  41793. name: "Front",
  41794. image: {
  41795. source: "./media/characters/arcturas/front.svg",
  41796. extra: 1700/1500,
  41797. bottom: 145/1845
  41798. }
  41799. },
  41800. },
  41801. [
  41802. {
  41803. name: "Normal",
  41804. height: math.unit(7 + 6/12, "feet"),
  41805. default: true
  41806. },
  41807. ]
  41808. ))
  41809. characterMakers.push(() => makeCharacter(
  41810. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41811. {
  41812. side: {
  41813. height: math.unit(6, "feet"),
  41814. weight: math.unit(2, "tons"),
  41815. name: "Side",
  41816. image: {
  41817. source: "./media/characters/vitaen/side.svg",
  41818. extra: 1157/617,
  41819. bottom: 122/1279
  41820. }
  41821. },
  41822. },
  41823. [
  41824. {
  41825. name: "Normal",
  41826. height: math.unit(6, "feet"),
  41827. default: true
  41828. },
  41829. ]
  41830. ))
  41831. characterMakers.push(() => makeCharacter(
  41832. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41833. {
  41834. front: {
  41835. height: math.unit(19, "feet"),
  41836. name: "Front",
  41837. image: {
  41838. source: "./media/characters/fia-dreamweaver/front.svg",
  41839. extra: 1630/1504,
  41840. bottom: 25/1655
  41841. }
  41842. },
  41843. },
  41844. [
  41845. {
  41846. name: "Normal",
  41847. height: math.unit(19, "feet"),
  41848. default: true
  41849. },
  41850. ]
  41851. ))
  41852. characterMakers.push(() => makeCharacter(
  41853. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41854. {
  41855. front: {
  41856. height: math.unit(5 + 4/12, "feet"),
  41857. name: "Front",
  41858. image: {
  41859. source: "./media/characters/artan/front.svg",
  41860. extra: 1618/1535,
  41861. bottom: 46/1664
  41862. }
  41863. },
  41864. back: {
  41865. height: math.unit(5 + 4/12, "feet"),
  41866. name: "Back",
  41867. image: {
  41868. source: "./media/characters/artan/back.svg",
  41869. extra: 1618/1543,
  41870. bottom: 31/1649
  41871. }
  41872. },
  41873. },
  41874. [
  41875. {
  41876. name: "Normal",
  41877. height: math.unit(5 + 4/12, "feet"),
  41878. default: true
  41879. },
  41880. ]
  41881. ))
  41882. characterMakers.push(() => makeCharacter(
  41883. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41884. {
  41885. side: {
  41886. height: math.unit(182, "cm"),
  41887. weight: math.unit(1000, "lb"),
  41888. name: "Side",
  41889. image: {
  41890. source: "./media/characters/silver-dragon/side.svg",
  41891. extra: 710/287,
  41892. bottom: 88/798
  41893. }
  41894. },
  41895. },
  41896. [
  41897. {
  41898. name: "Normal",
  41899. height: math.unit(182, "cm"),
  41900. default: true
  41901. },
  41902. ]
  41903. ))
  41904. characterMakers.push(() => makeCharacter(
  41905. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41906. {
  41907. side: {
  41908. height: math.unit(6 + 6/12, "feet"),
  41909. weight: math.unit(1.5, "tons"),
  41910. name: "Side",
  41911. image: {
  41912. source: "./media/characters/zephyr/side.svg",
  41913. extra: 1433/586,
  41914. bottom: 109/1542
  41915. }
  41916. },
  41917. },
  41918. [
  41919. {
  41920. name: "Normal",
  41921. height: math.unit(6 + 6/12, "feet"),
  41922. default: true
  41923. },
  41924. ]
  41925. ))
  41926. characterMakers.push(() => makeCharacter(
  41927. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41928. {
  41929. side: {
  41930. height: math.unit(1, "feet"),
  41931. name: "Side",
  41932. image: {
  41933. source: "./media/characters/vixye/side.svg",
  41934. extra: 632/541,
  41935. bottom: 0/632
  41936. }
  41937. },
  41938. },
  41939. [
  41940. {
  41941. name: "Normal",
  41942. height: math.unit(1, "feet"),
  41943. default: true
  41944. },
  41945. {
  41946. name: "True",
  41947. height: math.unit(1e15, "multiverses")
  41948. },
  41949. ]
  41950. ))
  41951. characterMakers.push(() => makeCharacter(
  41952. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41953. {
  41954. front: {
  41955. height: math.unit(8 + 2/12, "feet"),
  41956. weight: math.unit(650, "lb"),
  41957. name: "Front",
  41958. image: {
  41959. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41960. extra: 1174/1137,
  41961. bottom: 82/1256
  41962. }
  41963. },
  41964. back: {
  41965. height: math.unit(8 + 2/12, "feet"),
  41966. weight: math.unit(650, "lb"),
  41967. name: "Back",
  41968. image: {
  41969. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41970. extra: 1204/1157,
  41971. bottom: 46/1250
  41972. }
  41973. },
  41974. },
  41975. [
  41976. {
  41977. name: "Wildform",
  41978. height: math.unit(8 + 2/12, "feet"),
  41979. default: true
  41980. },
  41981. ]
  41982. ))
  41983. characterMakers.push(() => makeCharacter(
  41984. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41985. {
  41986. front: {
  41987. height: math.unit(18, "feet"),
  41988. name: "Front",
  41989. image: {
  41990. source: "./media/characters/cyphin/front.svg",
  41991. extra: 970/886,
  41992. bottom: 42/1012
  41993. }
  41994. },
  41995. back: {
  41996. height: math.unit(18, "feet"),
  41997. name: "Back",
  41998. image: {
  41999. source: "./media/characters/cyphin/back.svg",
  42000. extra: 1009/894,
  42001. bottom: 24/1033
  42002. }
  42003. },
  42004. head: {
  42005. height: math.unit(5.05, "feet"),
  42006. name: "Head",
  42007. image: {
  42008. source: "./media/characters/cyphin/head.svg"
  42009. }
  42010. },
  42011. tailbud: {
  42012. height: math.unit(5, "feet"),
  42013. name: "Tailbud",
  42014. image: {
  42015. source: "./media/characters/cyphin/tailbud.svg"
  42016. }
  42017. },
  42018. },
  42019. [
  42020. ]
  42021. ))
  42022. characterMakers.push(() => makeCharacter(
  42023. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42024. {
  42025. side: {
  42026. height: math.unit(10, "feet"),
  42027. weight: math.unit(6, "tons"),
  42028. name: "Side",
  42029. image: {
  42030. source: "./media/characters/raijin/side.svg",
  42031. extra: 1529/613,
  42032. bottom: 337/1866
  42033. }
  42034. },
  42035. },
  42036. [
  42037. {
  42038. name: "Normal",
  42039. height: math.unit(10, "feet"),
  42040. default: true
  42041. },
  42042. ]
  42043. ))
  42044. characterMakers.push(() => makeCharacter(
  42045. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42046. {
  42047. side: {
  42048. height: math.unit(9, "feet"),
  42049. name: "Side",
  42050. image: {
  42051. source: "./media/characters/nilghais/side.svg",
  42052. extra: 1047/744,
  42053. bottom: 91/1138
  42054. }
  42055. },
  42056. head: {
  42057. height: math.unit(3.14, "feet"),
  42058. name: "Head",
  42059. image: {
  42060. source: "./media/characters/nilghais/head.svg"
  42061. }
  42062. },
  42063. mouth: {
  42064. height: math.unit(4.6, "feet"),
  42065. name: "Mouth",
  42066. image: {
  42067. source: "./media/characters/nilghais/mouth.svg"
  42068. }
  42069. },
  42070. wings: {
  42071. height: math.unit(24, "feet"),
  42072. name: "Wings",
  42073. image: {
  42074. source: "./media/characters/nilghais/wings.svg"
  42075. }
  42076. },
  42077. ass: {
  42078. height: math.unit(6.12, "feet"),
  42079. name: "Ass",
  42080. image: {
  42081. source: "./media/characters/nilghais/ass.svg"
  42082. }
  42083. },
  42084. },
  42085. [
  42086. {
  42087. name: "Normal",
  42088. height: math.unit(9, "feet"),
  42089. default: true
  42090. },
  42091. ]
  42092. ))
  42093. characterMakers.push(() => makeCharacter(
  42094. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42095. {
  42096. regular: {
  42097. height: math.unit(16 + 2/12, "feet"),
  42098. weight: math.unit(2300, "lb"),
  42099. name: "Regular",
  42100. image: {
  42101. source: "./media/characters/zolgar/regular.svg",
  42102. extra: 1246/1004,
  42103. bottom: 124/1370
  42104. }
  42105. },
  42106. boxers: {
  42107. height: math.unit(16 + 2/12, "feet"),
  42108. weight: math.unit(2300, "lb"),
  42109. name: "Boxers",
  42110. image: {
  42111. source: "./media/characters/zolgar/boxers.svg",
  42112. extra: 1246/1004,
  42113. bottom: 124/1370
  42114. }
  42115. },
  42116. armored: {
  42117. height: math.unit(16 + 2/12, "feet"),
  42118. weight: math.unit(2300, "lb"),
  42119. name: "Armored",
  42120. image: {
  42121. source: "./media/characters/zolgar/armored.svg",
  42122. extra: 1246/1004,
  42123. bottom: 124/1370
  42124. }
  42125. },
  42126. goth: {
  42127. height: math.unit(16 + 2/12, "feet"),
  42128. weight: math.unit(2300, "lb"),
  42129. name: "Goth",
  42130. image: {
  42131. source: "./media/characters/zolgar/goth.svg",
  42132. extra: 1246/1004,
  42133. bottom: 124/1370
  42134. }
  42135. },
  42136. },
  42137. [
  42138. {
  42139. name: "Shrunken Down",
  42140. height: math.unit(9 + 2/12, "feet")
  42141. },
  42142. {
  42143. name: "Normal",
  42144. height: math.unit(16 + 2/12, "feet"),
  42145. default: true
  42146. },
  42147. ]
  42148. ))
  42149. characterMakers.push(() => makeCharacter(
  42150. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42151. {
  42152. front: {
  42153. height: math.unit(6, "feet"),
  42154. weight: math.unit(168, "lb"),
  42155. name: "Front",
  42156. image: {
  42157. source: "./media/characters/luca/front.svg",
  42158. extra: 841/667,
  42159. bottom: 102/943
  42160. }
  42161. },
  42162. },
  42163. [
  42164. {
  42165. name: "Normal",
  42166. height: math.unit(6, "feet"),
  42167. default: true
  42168. },
  42169. ]
  42170. ))
  42171. characterMakers.push(() => makeCharacter(
  42172. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42173. {
  42174. side: {
  42175. height: math.unit(7 + 3/12, "feet"),
  42176. weight: math.unit(312, "lb"),
  42177. name: "Side",
  42178. image: {
  42179. source: "./media/characters/zezo/side.svg",
  42180. extra: 1192/1067,
  42181. bottom: 63/1255
  42182. }
  42183. },
  42184. },
  42185. [
  42186. {
  42187. name: "Normal",
  42188. height: math.unit(7 + 3/12, "feet"),
  42189. default: true
  42190. },
  42191. ]
  42192. ))
  42193. characterMakers.push(() => makeCharacter(
  42194. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42195. {
  42196. front: {
  42197. height: math.unit(5 + 5/12, "feet"),
  42198. weight: math.unit(170, "lb"),
  42199. name: "Front",
  42200. image: {
  42201. source: "./media/characters/mayso/front.svg",
  42202. extra: 1215/1108,
  42203. bottom: 16/1231
  42204. }
  42205. },
  42206. },
  42207. [
  42208. {
  42209. name: "Normal",
  42210. height: math.unit(5 + 5/12, "feet"),
  42211. default: true
  42212. },
  42213. ]
  42214. ))
  42215. characterMakers.push(() => makeCharacter(
  42216. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42217. {
  42218. front: {
  42219. height: math.unit(4 + 3/12, "feet"),
  42220. weight: math.unit(80, "lb"),
  42221. name: "Front",
  42222. image: {
  42223. source: "./media/characters/hess/front.svg",
  42224. extra: 1200/1123,
  42225. bottom: 16/1216
  42226. }
  42227. },
  42228. },
  42229. [
  42230. {
  42231. name: "Normal",
  42232. height: math.unit(4 + 3/12, "feet"),
  42233. default: true
  42234. },
  42235. ]
  42236. ))
  42237. characterMakers.push(() => makeCharacter(
  42238. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42239. {
  42240. front: {
  42241. height: math.unit(1.9, "meters"),
  42242. name: "Front",
  42243. image: {
  42244. source: "./media/characters/ashgar/front.svg",
  42245. extra: 1177/1146,
  42246. bottom: 99/1276
  42247. }
  42248. },
  42249. back: {
  42250. height: math.unit(1.9, "meters"),
  42251. name: "Back",
  42252. image: {
  42253. source: "./media/characters/ashgar/back.svg",
  42254. extra: 1201/1183,
  42255. bottom: 53/1254
  42256. }
  42257. },
  42258. feral: {
  42259. height: math.unit(1.4, "meters"),
  42260. name: "Feral",
  42261. image: {
  42262. source: "./media/characters/ashgar/feral.svg",
  42263. extra: 370/345,
  42264. bottom: 45/415
  42265. }
  42266. },
  42267. },
  42268. [
  42269. {
  42270. name: "Normal",
  42271. height: math.unit(1.9, "meters"),
  42272. default: true
  42273. },
  42274. ]
  42275. ))
  42276. characterMakers.push(() => makeCharacter(
  42277. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42278. {
  42279. regular: {
  42280. height: math.unit(6, "feet"),
  42281. weight: math.unit(220, "lb"),
  42282. name: "Regular",
  42283. image: {
  42284. source: "./media/characters/phillip/regular.svg",
  42285. extra: 1373/1277,
  42286. bottom: 75/1448
  42287. }
  42288. },
  42289. dressed: {
  42290. height: math.unit(6, "feet"),
  42291. weight: math.unit(220, "lb"),
  42292. name: "Dressed",
  42293. image: {
  42294. source: "./media/characters/phillip/dressed.svg",
  42295. extra: 1373/1277,
  42296. bottom: 75/1448
  42297. }
  42298. },
  42299. paw: {
  42300. height: math.unit(1.44, "feet"),
  42301. name: "Paw",
  42302. image: {
  42303. source: "./media/characters/phillip/paw.svg"
  42304. }
  42305. },
  42306. },
  42307. [
  42308. {
  42309. name: "Normal",
  42310. height: math.unit(6, "feet"),
  42311. default: true
  42312. },
  42313. ]
  42314. ))
  42315. characterMakers.push(() => makeCharacter(
  42316. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42317. {
  42318. side: {
  42319. height: math.unit(42, "feet"),
  42320. name: "Side",
  42321. image: {
  42322. source: "./media/characters/uvula/side.svg",
  42323. extra: 683/586,
  42324. bottom: 60/743
  42325. }
  42326. },
  42327. front: {
  42328. height: math.unit(42, "feet"),
  42329. name: "Front",
  42330. image: {
  42331. source: "./media/characters/uvula/front.svg",
  42332. extra: 705/613,
  42333. bottom: 54/759
  42334. }
  42335. },
  42336. maw: {
  42337. height: math.unit(23.5, "feet"),
  42338. name: "Maw",
  42339. image: {
  42340. source: "./media/characters/uvula/maw.svg"
  42341. }
  42342. },
  42343. },
  42344. [
  42345. {
  42346. name: "Original Size",
  42347. height: math.unit(14, "inches")
  42348. },
  42349. {
  42350. name: "Human Size",
  42351. height: math.unit(6, "feet")
  42352. },
  42353. {
  42354. name: "Big",
  42355. height: math.unit(42, "feet"),
  42356. default: true
  42357. },
  42358. {
  42359. name: "Bigger",
  42360. height: math.unit(100, "feet")
  42361. },
  42362. ]
  42363. ))
  42364. characterMakers.push(() => makeCharacter(
  42365. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42366. {
  42367. front: {
  42368. height: math.unit(5 + 11/12, "feet"),
  42369. name: "Front",
  42370. image: {
  42371. source: "./media/characters/lannah/front.svg",
  42372. extra: 1208/1113,
  42373. bottom: 97/1305
  42374. }
  42375. },
  42376. },
  42377. [
  42378. {
  42379. name: "Normal",
  42380. height: math.unit(5 + 11/12, "feet"),
  42381. default: true
  42382. },
  42383. ]
  42384. ))
  42385. characterMakers.push(() => makeCharacter(
  42386. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42387. {
  42388. front: {
  42389. height: math.unit(6 + 3/12, "feet"),
  42390. weight: math.unit(3.5, "tons"),
  42391. name: "Front",
  42392. image: {
  42393. source: "./media/characters/emberflame/front.svg",
  42394. extra: 1198/672,
  42395. bottom: 82/1280
  42396. }
  42397. },
  42398. side: {
  42399. height: math.unit(6 + 3/12, "feet"),
  42400. weight: math.unit(3.5, "tons"),
  42401. name: "Side",
  42402. image: {
  42403. source: "./media/characters/emberflame/side.svg",
  42404. extra: 938/527,
  42405. bottom: 56/994
  42406. }
  42407. },
  42408. },
  42409. [
  42410. {
  42411. name: "Normal",
  42412. height: math.unit(6 + 3/12, "feet"),
  42413. default: true
  42414. },
  42415. ]
  42416. ))
  42417. characterMakers.push(() => makeCharacter(
  42418. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42419. {
  42420. side: {
  42421. height: math.unit(17.5, "feet"),
  42422. weight: math.unit(35, "tons"),
  42423. name: "Side",
  42424. image: {
  42425. source: "./media/characters/sophie-ambrose/side.svg",
  42426. extra: 1573/1242,
  42427. bottom: 71/1644
  42428. }
  42429. },
  42430. maw: {
  42431. height: math.unit(7.4, "feet"),
  42432. name: "Maw",
  42433. image: {
  42434. source: "./media/characters/sophie-ambrose/maw.svg"
  42435. }
  42436. },
  42437. },
  42438. [
  42439. {
  42440. name: "Normal",
  42441. height: math.unit(17.5, "feet"),
  42442. default: true
  42443. },
  42444. ]
  42445. ))
  42446. characterMakers.push(() => makeCharacter(
  42447. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42448. {
  42449. front: {
  42450. height: math.unit(280, "feet"),
  42451. weight: math.unit(550, "tons"),
  42452. name: "Front",
  42453. image: {
  42454. source: "./media/characters/king-mugi/front.svg",
  42455. extra: 1102/947,
  42456. bottom: 104/1206
  42457. }
  42458. },
  42459. },
  42460. [
  42461. {
  42462. name: "King Mugi",
  42463. height: math.unit(280, "feet"),
  42464. default: true
  42465. },
  42466. ]
  42467. ))
  42468. characterMakers.push(() => makeCharacter(
  42469. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42470. {
  42471. front: {
  42472. height: math.unit(64, "meters"),
  42473. name: "Front",
  42474. image: {
  42475. source: "./media/characters/nova-fox/front.svg",
  42476. extra: 1310/1246,
  42477. bottom: 65/1375
  42478. }
  42479. },
  42480. },
  42481. [
  42482. {
  42483. name: "Macro",
  42484. height: math.unit(64, "meters"),
  42485. default: true
  42486. },
  42487. ]
  42488. ))
  42489. characterMakers.push(() => makeCharacter(
  42490. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42491. {
  42492. front: {
  42493. height: math.unit(6 + 3/12, "feet"),
  42494. weight: math.unit(170, "lb"),
  42495. name: "Front",
  42496. image: {
  42497. source: "./media/characters/sam-bat/front.svg",
  42498. extra: 1601/1411,
  42499. bottom: 125/1726
  42500. }
  42501. },
  42502. back: {
  42503. height: math.unit(6 + 3/12, "feet"),
  42504. weight: math.unit(170, "lb"),
  42505. name: "Back",
  42506. image: {
  42507. source: "./media/characters/sam-bat/back.svg",
  42508. extra: 1577/1405,
  42509. bottom: 58/1635
  42510. }
  42511. },
  42512. },
  42513. [
  42514. {
  42515. name: "Normal",
  42516. height: math.unit(6 + 3/12, "feet"),
  42517. default: true
  42518. },
  42519. ]
  42520. ))
  42521. characterMakers.push(() => makeCharacter(
  42522. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42523. {
  42524. front: {
  42525. height: math.unit(59, "feet"),
  42526. weight: math.unit(40000, "lb"),
  42527. name: "Front",
  42528. image: {
  42529. source: "./media/characters/inari/front.svg",
  42530. extra: 1884/1350,
  42531. bottom: 95/1979
  42532. }
  42533. },
  42534. },
  42535. [
  42536. {
  42537. name: "Gigantamax",
  42538. height: math.unit(59, "feet"),
  42539. default: true
  42540. },
  42541. ]
  42542. ))
  42543. characterMakers.push(() => makeCharacter(
  42544. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42545. {
  42546. front: {
  42547. height: math.unit(5 + 8/12, "feet"),
  42548. name: "Front",
  42549. image: {
  42550. source: "./media/characters/elizabeth/front.svg",
  42551. extra: 1395/1298,
  42552. bottom: 54/1449
  42553. }
  42554. },
  42555. mouth: {
  42556. height: math.unit(1.97, "feet"),
  42557. name: "Mouth",
  42558. image: {
  42559. source: "./media/characters/elizabeth/mouth.svg"
  42560. }
  42561. },
  42562. foot: {
  42563. height: math.unit(1.17, "feet"),
  42564. name: "Foot",
  42565. image: {
  42566. source: "./media/characters/elizabeth/foot.svg"
  42567. }
  42568. },
  42569. },
  42570. [
  42571. {
  42572. name: "Normal",
  42573. height: math.unit(5 + 8/12, "feet"),
  42574. default: true
  42575. },
  42576. {
  42577. name: "Minimacro",
  42578. height: math.unit(18, "feet")
  42579. },
  42580. {
  42581. name: "Macro",
  42582. height: math.unit(180, "feet")
  42583. },
  42584. ]
  42585. ))
  42586. characterMakers.push(() => makeCharacter(
  42587. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42588. {
  42589. front: {
  42590. height: math.unit(5 + 2/12, "feet"),
  42591. name: "Front",
  42592. image: {
  42593. source: "./media/characters/october-gossamer/front.svg",
  42594. extra: 505/454,
  42595. bottom: 7/512
  42596. }
  42597. },
  42598. back: {
  42599. height: math.unit(5 + 2/12, "feet"),
  42600. name: "Back",
  42601. image: {
  42602. source: "./media/characters/october-gossamer/back.svg",
  42603. extra: 501/454,
  42604. bottom: 11/512
  42605. }
  42606. },
  42607. },
  42608. [
  42609. {
  42610. name: "Normal",
  42611. height: math.unit(5 + 2/12, "feet"),
  42612. default: true
  42613. },
  42614. ]
  42615. ))
  42616. characterMakers.push(() => makeCharacter(
  42617. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42618. {
  42619. front: {
  42620. height: math.unit(5, "feet"),
  42621. name: "Front",
  42622. image: {
  42623. source: "./media/characters/epiglottis/front.svg",
  42624. extra: 923/849,
  42625. bottom: 17/940
  42626. }
  42627. },
  42628. },
  42629. [
  42630. {
  42631. name: "Original Size",
  42632. height: math.unit(10, "inches")
  42633. },
  42634. {
  42635. name: "Human Size",
  42636. height: math.unit(5, "feet"),
  42637. default: true
  42638. },
  42639. {
  42640. name: "Big",
  42641. height: math.unit(25, "feet")
  42642. },
  42643. {
  42644. name: "Bigger",
  42645. height: math.unit(50, "feet")
  42646. },
  42647. {
  42648. name: "oh lawd",
  42649. height: math.unit(75, "feet")
  42650. },
  42651. ]
  42652. ))
  42653. characterMakers.push(() => makeCharacter(
  42654. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42655. {
  42656. front: {
  42657. height: math.unit(2 + 4/12, "feet"),
  42658. weight: math.unit(60, "lb"),
  42659. name: "Front",
  42660. image: {
  42661. source: "./media/characters/lerm/front.svg",
  42662. extra: 796/790,
  42663. bottom: 79/875
  42664. }
  42665. },
  42666. },
  42667. [
  42668. {
  42669. name: "Normal",
  42670. height: math.unit(2 + 4/12, "feet"),
  42671. default: true
  42672. },
  42673. ]
  42674. ))
  42675. characterMakers.push(() => makeCharacter(
  42676. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42677. {
  42678. front: {
  42679. height: math.unit(5.5, "feet"),
  42680. weight: math.unit(130, "lb"),
  42681. name: "Front",
  42682. image: {
  42683. source: "./media/characters/xena-nebadon/front.svg",
  42684. extra: 1828/1730,
  42685. bottom: 79/1907
  42686. }
  42687. },
  42688. },
  42689. [
  42690. {
  42691. name: "Tiny Puppy",
  42692. height: math.unit(3, "inches")
  42693. },
  42694. {
  42695. name: "Normal",
  42696. height: math.unit(5.5, "feet"),
  42697. default: true
  42698. },
  42699. {
  42700. name: "Lotta Lady",
  42701. height: math.unit(12, "feet")
  42702. },
  42703. {
  42704. name: "Pretty Big",
  42705. height: math.unit(100, "feet")
  42706. },
  42707. {
  42708. name: "Big",
  42709. height: math.unit(500, "feet")
  42710. },
  42711. {
  42712. name: "Skyscraper Toys",
  42713. height: math.unit(2500, "feet")
  42714. },
  42715. {
  42716. name: "Plane Catcher",
  42717. height: math.unit(8, "miles")
  42718. },
  42719. {
  42720. name: "Planet Toys",
  42721. height: math.unit(15, "earths")
  42722. },
  42723. {
  42724. name: "Stardust",
  42725. height: math.unit(0.25, "galaxies")
  42726. },
  42727. {
  42728. name: "Snacks",
  42729. height: math.unit(70, "universes")
  42730. },
  42731. ]
  42732. ))
  42733. characterMakers.push(() => makeCharacter(
  42734. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42735. {
  42736. front: {
  42737. height: math.unit(1.6, "meters"),
  42738. weight: math.unit(60, "kg"),
  42739. name: "Front",
  42740. image: {
  42741. source: "./media/characters/bounty/front.svg",
  42742. extra: 1426/1308,
  42743. bottom: 15/1441
  42744. }
  42745. },
  42746. back: {
  42747. height: math.unit(1.6, "meters"),
  42748. weight: math.unit(60, "kg"),
  42749. name: "Back",
  42750. image: {
  42751. source: "./media/characters/bounty/back.svg",
  42752. extra: 1417/1307,
  42753. bottom: 8/1425
  42754. }
  42755. },
  42756. },
  42757. [
  42758. {
  42759. name: "Normal",
  42760. height: math.unit(1.6, "meters"),
  42761. default: true
  42762. },
  42763. {
  42764. name: "Macro",
  42765. height: math.unit(300, "meters")
  42766. },
  42767. ]
  42768. ))
  42769. characterMakers.push(() => makeCharacter(
  42770. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42771. {
  42772. front: {
  42773. height: math.unit(2 + 8/12, "feet"),
  42774. weight: math.unit(15, "lb"),
  42775. name: "Front",
  42776. image: {
  42777. source: "./media/characters/mochi/front.svg",
  42778. extra: 1022/852,
  42779. bottom: 435/1457
  42780. }
  42781. },
  42782. back: {
  42783. height: math.unit(2 + 8/12, "feet"),
  42784. weight: math.unit(15, "lb"),
  42785. name: "Back",
  42786. image: {
  42787. source: "./media/characters/mochi/back.svg",
  42788. extra: 1335/1119,
  42789. bottom: 39/1374
  42790. }
  42791. },
  42792. bird: {
  42793. height: math.unit(2 + 8/12, "feet"),
  42794. weight: math.unit(15, "lb"),
  42795. name: "Bird",
  42796. image: {
  42797. source: "./media/characters/mochi/bird.svg",
  42798. extra: 1251/1113,
  42799. bottom: 178/1429
  42800. }
  42801. },
  42802. kaiju: {
  42803. height: math.unit(154, "feet"),
  42804. weight: math.unit(1e7, "lb"),
  42805. name: "Kaiju",
  42806. image: {
  42807. source: "./media/characters/mochi/kaiju.svg",
  42808. extra: 460/324,
  42809. bottom: 40/500
  42810. }
  42811. },
  42812. head: {
  42813. height: math.unit(1.21, "feet"),
  42814. name: "Head",
  42815. image: {
  42816. source: "./media/characters/mochi/head.svg"
  42817. }
  42818. },
  42819. alternateTail: {
  42820. height: math.unit(2 + 8/12, "feet"),
  42821. weight: math.unit(45, "lb"),
  42822. name: "Alternate Tail",
  42823. image: {
  42824. source: "./media/characters/mochi/alternate-tail.svg",
  42825. extra: 139/76,
  42826. bottom: 45/184
  42827. }
  42828. },
  42829. },
  42830. [
  42831. {
  42832. name: "Micro",
  42833. height: math.unit(2, "inches")
  42834. },
  42835. {
  42836. name: "Normal",
  42837. height: math.unit(2 + 8/12, "feet"),
  42838. default: true
  42839. },
  42840. {
  42841. name: "Macro",
  42842. height: math.unit(106, "feet")
  42843. },
  42844. ]
  42845. ))
  42846. characterMakers.push(() => makeCharacter(
  42847. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42848. {
  42849. front: {
  42850. height: math.unit(5.67, "feet"),
  42851. weight: math.unit(135, "lb"),
  42852. name: "Front",
  42853. image: {
  42854. source: "./media/characters/sarel/front.svg",
  42855. extra: 865/788,
  42856. bottom: 97/962
  42857. }
  42858. },
  42859. back: {
  42860. height: math.unit(5.67, "feet"),
  42861. weight: math.unit(135, "lb"),
  42862. name: "Back",
  42863. image: {
  42864. source: "./media/characters/sarel/back.svg",
  42865. extra: 857/777,
  42866. bottom: 32/889
  42867. }
  42868. },
  42869. chozoan: {
  42870. height: math.unit(5.67, "feet"),
  42871. weight: math.unit(135, "lb"),
  42872. name: "Chozoan",
  42873. image: {
  42874. source: "./media/characters/sarel/chozoan.svg",
  42875. extra: 865/788,
  42876. bottom: 97/962
  42877. }
  42878. },
  42879. current: {
  42880. height: math.unit(5.67, "feet"),
  42881. weight: math.unit(135, "lb"),
  42882. name: "Current",
  42883. image: {
  42884. source: "./media/characters/sarel/current.svg",
  42885. extra: 865/788,
  42886. bottom: 97/962
  42887. }
  42888. },
  42889. head: {
  42890. height: math.unit(1.77, "feet"),
  42891. name: "Head",
  42892. image: {
  42893. source: "./media/characters/sarel/head.svg"
  42894. }
  42895. },
  42896. claws: {
  42897. height: math.unit(1.8, "feet"),
  42898. name: "Claws",
  42899. image: {
  42900. source: "./media/characters/sarel/claws.svg"
  42901. }
  42902. },
  42903. clawsAlt: {
  42904. height: math.unit(1.8, "feet"),
  42905. name: "Claws-alt",
  42906. image: {
  42907. source: "./media/characters/sarel/claws-alt.svg"
  42908. }
  42909. },
  42910. },
  42911. [
  42912. {
  42913. name: "Normal",
  42914. height: math.unit(5.67, "feet"),
  42915. default: true
  42916. },
  42917. ]
  42918. ))
  42919. characterMakers.push(() => makeCharacter(
  42920. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42921. {
  42922. front: {
  42923. height: math.unit(5500, "feet"),
  42924. name: "Front",
  42925. image: {
  42926. source: "./media/characters/alyonia/front.svg",
  42927. extra: 1200/1135,
  42928. bottom: 29/1229
  42929. }
  42930. },
  42931. back: {
  42932. height: math.unit(5500, "feet"),
  42933. name: "Back",
  42934. image: {
  42935. source: "./media/characters/alyonia/back.svg",
  42936. extra: 1205/1138,
  42937. bottom: 10/1215
  42938. }
  42939. },
  42940. },
  42941. [
  42942. {
  42943. name: "Small",
  42944. height: math.unit(10, "feet")
  42945. },
  42946. {
  42947. name: "Macro",
  42948. height: math.unit(500, "feet")
  42949. },
  42950. {
  42951. name: "Mega Macro",
  42952. height: math.unit(5500, "feet"),
  42953. default: true
  42954. },
  42955. {
  42956. name: "Mega Macro+",
  42957. height: math.unit(500000, "feet")
  42958. },
  42959. {
  42960. name: "Giga Macro",
  42961. height: math.unit(3000, "miles")
  42962. },
  42963. {
  42964. name: "Tera Macro",
  42965. height: math.unit(2.8e6, "miles")
  42966. },
  42967. {
  42968. name: "Galactic",
  42969. height: math.unit(120000, "lightyears")
  42970. },
  42971. ]
  42972. ))
  42973. characterMakers.push(() => makeCharacter(
  42974. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42975. {
  42976. werewolf: {
  42977. height: math.unit(8, "feet"),
  42978. weight: math.unit(425, "lb"),
  42979. name: "Werewolf",
  42980. image: {
  42981. source: "./media/characters/autumn/werewolf.svg",
  42982. extra: 2154/2031,
  42983. bottom: 160/2314
  42984. }
  42985. },
  42986. human: {
  42987. height: math.unit(5 + 8/12, "feet"),
  42988. weight: math.unit(150, "lb"),
  42989. name: "Human",
  42990. image: {
  42991. source: "./media/characters/autumn/human.svg",
  42992. extra: 1200/1149,
  42993. bottom: 30/1230
  42994. }
  42995. },
  42996. },
  42997. [
  42998. {
  42999. name: "Normal",
  43000. height: math.unit(8, "feet"),
  43001. default: true
  43002. },
  43003. ]
  43004. ))
  43005. characterMakers.push(() => makeCharacter(
  43006. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43007. {
  43008. front: {
  43009. height: math.unit(8 + 5/12, "feet"),
  43010. weight: math.unit(825, "lb"),
  43011. name: "Front",
  43012. image: {
  43013. source: "./media/characters/cobalt-charizard/front.svg",
  43014. extra: 1268/1155,
  43015. bottom: 122/1390
  43016. }
  43017. },
  43018. side: {
  43019. height: math.unit(8 + 5/12, "feet"),
  43020. weight: math.unit(825, "lb"),
  43021. name: "Side",
  43022. image: {
  43023. source: "./media/characters/cobalt-charizard/side.svg",
  43024. extra: 1348/1257,
  43025. bottom: 58/1406
  43026. }
  43027. },
  43028. gMax: {
  43029. height: math.unit(134 + 11/12, "feet"),
  43030. name: "G-Max",
  43031. image: {
  43032. source: "./media/characters/cobalt-charizard/g-max.svg",
  43033. extra: 1835/1541,
  43034. bottom: 151/1986
  43035. }
  43036. },
  43037. },
  43038. [
  43039. {
  43040. name: "Normal",
  43041. height: math.unit(8 + 5/12, "feet"),
  43042. default: true
  43043. },
  43044. ]
  43045. ))
  43046. characterMakers.push(() => makeCharacter(
  43047. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43048. {
  43049. front: {
  43050. height: math.unit(6 + 3/12, "feet"),
  43051. weight: math.unit(210, "lb"),
  43052. name: "Front",
  43053. image: {
  43054. source: "./media/characters/stella/front.svg",
  43055. extra: 3549/3335,
  43056. bottom: 51/3600
  43057. }
  43058. },
  43059. },
  43060. [
  43061. {
  43062. name: "Normal",
  43063. height: math.unit(6 + 3/12, "feet"),
  43064. default: true
  43065. },
  43066. ]
  43067. ))
  43068. characterMakers.push(() => makeCharacter(
  43069. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43070. {
  43071. front: {
  43072. height: math.unit(5, "feet"),
  43073. weight: math.unit(90, "lb"),
  43074. name: "Front",
  43075. image: {
  43076. source: "./media/characters/riley-bishop/front.svg",
  43077. extra: 1450/1428,
  43078. bottom: 152/1602
  43079. }
  43080. },
  43081. },
  43082. [
  43083. {
  43084. name: "Normal",
  43085. height: math.unit(5, "feet"),
  43086. default: true
  43087. },
  43088. ]
  43089. ))
  43090. characterMakers.push(() => makeCharacter(
  43091. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43092. {
  43093. side: {
  43094. height: math.unit(8 + 2/12, "feet"),
  43095. weight: math.unit(500, "kg"),
  43096. name: "Side",
  43097. image: {
  43098. source: "./media/characters/theo-arcanine/side.svg",
  43099. extra: 1342/1074,
  43100. bottom: 111/1453
  43101. }
  43102. },
  43103. },
  43104. [
  43105. {
  43106. name: "Normal",
  43107. height: math.unit(8 + 2/12, "feet"),
  43108. default: true
  43109. },
  43110. ]
  43111. ))
  43112. characterMakers.push(() => makeCharacter(
  43113. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43114. {
  43115. front: {
  43116. height: math.unit(4, "feet"),
  43117. name: "Front",
  43118. image: {
  43119. source: "./media/characters/kali/front.svg",
  43120. extra: 1921/1357,
  43121. bottom: 70/1991
  43122. }
  43123. },
  43124. },
  43125. [
  43126. {
  43127. name: "Normal",
  43128. height: math.unit(4, "feet"),
  43129. default: true
  43130. },
  43131. {
  43132. name: "Macro",
  43133. height: math.unit(32, "meters")
  43134. },
  43135. {
  43136. name: "Macro+",
  43137. height: math.unit(150, "meters")
  43138. },
  43139. {
  43140. name: "Megamacro",
  43141. height: math.unit(7500, "meters")
  43142. },
  43143. {
  43144. name: "Megamacro+",
  43145. height: math.unit(80, "kilometers")
  43146. },
  43147. ]
  43148. ))
  43149. characterMakers.push(() => makeCharacter(
  43150. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43151. {
  43152. side: {
  43153. height: math.unit(5 + 11/12, "feet"),
  43154. weight: math.unit(236, "lb"),
  43155. name: "Side",
  43156. image: {
  43157. source: "./media/characters/gapp/side.svg",
  43158. extra: 775/340,
  43159. bottom: 58/833
  43160. }
  43161. },
  43162. mouth: {
  43163. height: math.unit(2.98, "feet"),
  43164. name: "Mouth",
  43165. image: {
  43166. source: "./media/characters/gapp/mouth.svg"
  43167. }
  43168. },
  43169. },
  43170. [
  43171. {
  43172. name: "Normal",
  43173. height: math.unit(5 + 1/12, "feet"),
  43174. default: true
  43175. },
  43176. ]
  43177. ))
  43178. characterMakers.push(() => makeCharacter(
  43179. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43180. {
  43181. front: {
  43182. height: math.unit(6, "feet"),
  43183. name: "Front",
  43184. image: {
  43185. source: "./media/characters/persephone/front.svg",
  43186. extra: 1895/1717,
  43187. bottom: 96/1991
  43188. }
  43189. },
  43190. back: {
  43191. height: math.unit(6, "feet"),
  43192. name: "Back",
  43193. image: {
  43194. source: "./media/characters/persephone/back.svg",
  43195. extra: 1868/1679,
  43196. bottom: 26/1894
  43197. }
  43198. },
  43199. casual: {
  43200. height: math.unit(6, "feet"),
  43201. name: "Casual",
  43202. image: {
  43203. source: "./media/characters/persephone/casual.svg",
  43204. extra: 1713/1541,
  43205. bottom: 76/1789
  43206. }
  43207. },
  43208. },
  43209. [
  43210. {
  43211. name: "Human Size",
  43212. height: math.unit(6, "feet")
  43213. },
  43214. {
  43215. name: "Big Steppy",
  43216. height: math.unit(600, "meters"),
  43217. default: true
  43218. },
  43219. {
  43220. name: "Galaxy Brain",
  43221. height: math.unit(1, "zettameter")
  43222. },
  43223. ]
  43224. ))
  43225. characterMakers.push(() => makeCharacter(
  43226. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43227. {
  43228. front: {
  43229. height: math.unit(1.85, "meters"),
  43230. name: "Front",
  43231. image: {
  43232. source: "./media/characters/riley-foxthing/front.svg",
  43233. extra: 1495/1354,
  43234. bottom: 122/1617
  43235. }
  43236. },
  43237. frontAlt: {
  43238. height: math.unit(1.85, "meters"),
  43239. name: "Front (Alt)",
  43240. image: {
  43241. source: "./media/characters/riley-foxthing/front-alt.svg",
  43242. extra: 1572/1389,
  43243. bottom: 116/1688
  43244. }
  43245. },
  43246. },
  43247. [
  43248. {
  43249. name: "Normal Sized",
  43250. height: math.unit(1.85, "meters"),
  43251. default: true
  43252. },
  43253. {
  43254. name: "Quite Sizable",
  43255. height: math.unit(5, "meters")
  43256. },
  43257. {
  43258. name: "Rather Large",
  43259. height: math.unit(20, "meters")
  43260. },
  43261. {
  43262. name: "Macro",
  43263. height: math.unit(450, "meters")
  43264. },
  43265. {
  43266. name: "Giga",
  43267. height: math.unit(5, "km")
  43268. },
  43269. ]
  43270. ))
  43271. characterMakers.push(() => makeCharacter(
  43272. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43273. {
  43274. front: {
  43275. height: math.unit(6, "feet"),
  43276. weight: math.unit(200, "lb"),
  43277. name: "Front",
  43278. image: {
  43279. source: "./media/characters/blizzard/front.svg",
  43280. extra: 1136/990,
  43281. bottom: 136/1272
  43282. }
  43283. },
  43284. back: {
  43285. height: math.unit(6, "feet"),
  43286. weight: math.unit(200, "lb"),
  43287. name: "Back",
  43288. image: {
  43289. source: "./media/characters/blizzard/back.svg",
  43290. extra: 1175/1034,
  43291. bottom: 97/1272
  43292. }
  43293. },
  43294. sitting: {
  43295. height: math.unit(3.725, "feet"),
  43296. weight: math.unit(200, "lb"),
  43297. name: "Sitting",
  43298. image: {
  43299. source: "./media/characters/blizzard/sitting.svg",
  43300. extra: 581/485,
  43301. bottom: 90/671
  43302. }
  43303. },
  43304. frontWizard: {
  43305. height: math.unit(7.9, "feet"),
  43306. weight: math.unit(200, "lb"),
  43307. name: "Front (Wizard)",
  43308. image: {
  43309. source: "./media/characters/blizzard/front-wizard.svg"
  43310. }
  43311. },
  43312. backWizard: {
  43313. height: math.unit(7.9, "feet"),
  43314. weight: math.unit(200, "lb"),
  43315. name: "Back (Wizard)",
  43316. image: {
  43317. source: "./media/characters/blizzard/back-wizard.svg"
  43318. }
  43319. },
  43320. frontNsfw: {
  43321. height: math.unit(6, "feet"),
  43322. weight: math.unit(200, "lb"),
  43323. name: "Front (NSFW)",
  43324. image: {
  43325. source: "./media/characters/blizzard/front-nsfw.svg",
  43326. extra: 1136/990,
  43327. bottom: 136/1272
  43328. }
  43329. },
  43330. backNsfw: {
  43331. height: math.unit(6, "feet"),
  43332. weight: math.unit(200, "lb"),
  43333. name: "Back (NSFW)",
  43334. image: {
  43335. source: "./media/characters/blizzard/back-nsfw.svg",
  43336. extra: 1175/1034,
  43337. bottom: 97/1272
  43338. }
  43339. },
  43340. sittingNsfw: {
  43341. height: math.unit(3.725, "feet"),
  43342. weight: math.unit(200, "lb"),
  43343. name: "Sitting (NSFW)",
  43344. image: {
  43345. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43346. extra: 581/485,
  43347. bottom: 90/671
  43348. }
  43349. },
  43350. wizardFrontNsfw: {
  43351. height: math.unit(7.9, "feet"),
  43352. weight: math.unit(200, "lb"),
  43353. name: "Wizard (Front, NSFW)",
  43354. image: {
  43355. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43356. }
  43357. },
  43358. },
  43359. [
  43360. {
  43361. name: "Normal",
  43362. height: math.unit(6, "feet"),
  43363. default: true
  43364. },
  43365. ]
  43366. ))
  43367. characterMakers.push(() => makeCharacter(
  43368. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43369. {
  43370. front: {
  43371. height: math.unit(5 + 2/12, "feet"),
  43372. name: "Front",
  43373. image: {
  43374. source: "./media/characters/lumi/front.svg",
  43375. extra: 1328/1268,
  43376. bottom: 103/1431
  43377. }
  43378. },
  43379. back: {
  43380. height: math.unit(5 + 2/12, "feet"),
  43381. name: "Back",
  43382. image: {
  43383. source: "./media/characters/lumi/back.svg",
  43384. extra: 1381/1327,
  43385. bottom: 43/1424
  43386. }
  43387. },
  43388. },
  43389. [
  43390. {
  43391. name: "Normal",
  43392. height: math.unit(5 + 2/12, "feet"),
  43393. default: true
  43394. },
  43395. ]
  43396. ))
  43397. characterMakers.push(() => makeCharacter(
  43398. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43399. {
  43400. front: {
  43401. height: math.unit(5 + 9/12, "feet"),
  43402. name: "Front",
  43403. image: {
  43404. source: "./media/characters/aliya-cotton/front.svg",
  43405. extra: 577/564,
  43406. bottom: 29/606
  43407. }
  43408. },
  43409. },
  43410. [
  43411. {
  43412. name: "Normal",
  43413. height: math.unit(5 + 9/12, "feet"),
  43414. default: true
  43415. },
  43416. ]
  43417. ))
  43418. characterMakers.push(() => makeCharacter(
  43419. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43420. {
  43421. front: {
  43422. height: math.unit(2.7, "meters"),
  43423. weight: math.unit(25000, "lb"),
  43424. name: "Front",
  43425. image: {
  43426. source: "./media/characters/noah-luxray/front.svg",
  43427. extra: 1644/825,
  43428. bottom: 339/1983
  43429. }
  43430. },
  43431. side: {
  43432. height: math.unit(2.97, "meters"),
  43433. weight: math.unit(25000, "lb"),
  43434. name: "Side",
  43435. image: {
  43436. source: "./media/characters/noah-luxray/side.svg",
  43437. extra: 1319/650,
  43438. bottom: 163/1482
  43439. }
  43440. },
  43441. dick: {
  43442. height: math.unit(7.4, "feet"),
  43443. weight: math.unit(2500, "lb"),
  43444. name: "Dick",
  43445. image: {
  43446. source: "./media/characters/noah-luxray/dick.svg"
  43447. }
  43448. },
  43449. dickAlt: {
  43450. height: math.unit(10.83, "feet"),
  43451. weight: math.unit(2500, "lb"),
  43452. name: "Dick-alt",
  43453. image: {
  43454. source: "./media/characters/noah-luxray/dick-alt.svg"
  43455. }
  43456. },
  43457. },
  43458. [
  43459. {
  43460. name: "BIG",
  43461. height: math.unit(2.7, "meters"),
  43462. default: true
  43463. },
  43464. ]
  43465. ))
  43466. characterMakers.push(() => makeCharacter(
  43467. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43468. {
  43469. standing: {
  43470. height: math.unit(183, "cm"),
  43471. weight: math.unit(68, "kg"),
  43472. name: "Standing",
  43473. image: {
  43474. source: "./media/characters/arion/standing.svg",
  43475. extra: 1869/1807,
  43476. bottom: 93/1962
  43477. }
  43478. },
  43479. reclining: {
  43480. height: math.unit(70.5, "cm"),
  43481. weight: math.unit(68, "lb"),
  43482. name: "Reclining",
  43483. image: {
  43484. source: "./media/characters/arion/reclining.svg",
  43485. extra: 937/870,
  43486. bottom: 63/1000
  43487. }
  43488. },
  43489. },
  43490. [
  43491. {
  43492. name: "Colossus Size, Low",
  43493. height: math.unit(33, "meters"),
  43494. default: true
  43495. },
  43496. {
  43497. name: "Colossus Size, Mid",
  43498. height: math.unit(52, "meters")
  43499. },
  43500. {
  43501. name: "Colossus Size, High",
  43502. height: math.unit(60, "meters")
  43503. },
  43504. {
  43505. name: "Titan Size, Low",
  43506. height: math.unit(91, "meters"),
  43507. },
  43508. {
  43509. name: "Titan Size, Mid",
  43510. height: math.unit(122, "meters")
  43511. },
  43512. {
  43513. name: "Titan Size, High",
  43514. height: math.unit(162, "meters")
  43515. },
  43516. ]
  43517. ))
  43518. characterMakers.push(() => makeCharacter(
  43519. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43520. {
  43521. front: {
  43522. height: math.unit(53, "meters"),
  43523. name: "Front",
  43524. image: {
  43525. source: "./media/characters/stellar-marbey/front.svg",
  43526. extra: 1913/1805,
  43527. bottom: 92/2005
  43528. }
  43529. },
  43530. back: {
  43531. height: math.unit(53, "meters"),
  43532. name: "Back",
  43533. image: {
  43534. source: "./media/characters/stellar-marbey/back.svg",
  43535. extra: 1960/1851,
  43536. bottom: 28/1988
  43537. }
  43538. },
  43539. mouth: {
  43540. height: math.unit(3.5, "meters"),
  43541. name: "Mouth",
  43542. image: {
  43543. source: "./media/characters/stellar-marbey/mouth.svg"
  43544. }
  43545. },
  43546. },
  43547. [
  43548. {
  43549. name: "Macro",
  43550. height: math.unit(53, "meters"),
  43551. default: true
  43552. },
  43553. ]
  43554. ))
  43555. characterMakers.push(() => makeCharacter(
  43556. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43557. {
  43558. front: {
  43559. height: math.unit(8 + 1/12, "feet"),
  43560. weight: math.unit(233, "lb"),
  43561. name: "Front",
  43562. image: {
  43563. source: "./media/characters/matsu/front.svg",
  43564. extra: 832/772,
  43565. bottom: 40/872
  43566. }
  43567. },
  43568. back: {
  43569. height: math.unit(8 + 1/12, "feet"),
  43570. weight: math.unit(233, "lb"),
  43571. name: "Back",
  43572. image: {
  43573. source: "./media/characters/matsu/back.svg",
  43574. extra: 839/780,
  43575. bottom: 47/886
  43576. }
  43577. },
  43578. },
  43579. [
  43580. {
  43581. name: "Normal",
  43582. height: math.unit(8 + 1/12, "feet"),
  43583. default: true
  43584. },
  43585. ]
  43586. ))
  43587. characterMakers.push(() => makeCharacter(
  43588. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43589. {
  43590. front: {
  43591. height: math.unit(4, "feet"),
  43592. weight: math.unit(148, "lb"),
  43593. name: "Front",
  43594. image: {
  43595. source: "./media/characters/thiz/front.svg",
  43596. extra: 1913/1748,
  43597. bottom: 62/1975
  43598. }
  43599. },
  43600. },
  43601. [
  43602. {
  43603. name: "Normal",
  43604. height: math.unit(4, "feet"),
  43605. default: true
  43606. },
  43607. ]
  43608. ))
  43609. characterMakers.push(() => makeCharacter(
  43610. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43611. {
  43612. front: {
  43613. height: math.unit(7 + 6/12, "feet"),
  43614. weight: math.unit(267, "lb"),
  43615. name: "Front",
  43616. image: {
  43617. source: "./media/characters/marcel/front.svg",
  43618. extra: 1221/1096,
  43619. bottom: 76/1297
  43620. }
  43621. },
  43622. },
  43623. [
  43624. {
  43625. name: "Normal",
  43626. height: math.unit(7 + 6/12, "feet"),
  43627. default: true
  43628. },
  43629. ]
  43630. ))
  43631. characterMakers.push(() => makeCharacter(
  43632. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43633. {
  43634. side: {
  43635. height: math.unit(42, "meters"),
  43636. name: "Side",
  43637. image: {
  43638. source: "./media/characters/flake/side.svg",
  43639. extra: 1525/1306,
  43640. bottom: 209/1734
  43641. }
  43642. },
  43643. },
  43644. [
  43645. {
  43646. name: "Normal",
  43647. height: math.unit(42, "meters"),
  43648. default: true
  43649. },
  43650. ]
  43651. ))
  43652. characterMakers.push(() => makeCharacter(
  43653. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43654. {
  43655. dressed: {
  43656. height: math.unit(6 + 4/12, "feet"),
  43657. weight: math.unit(520, "lb"),
  43658. name: "Dressed",
  43659. image: {
  43660. source: "./media/characters/someonne/dressed.svg",
  43661. extra: 1020/1010,
  43662. bottom: 178/1198
  43663. }
  43664. },
  43665. undressed: {
  43666. height: math.unit(6 + 4/12, "feet"),
  43667. weight: math.unit(520, "lb"),
  43668. name: "Undressed",
  43669. image: {
  43670. source: "./media/characters/someonne/undressed.svg",
  43671. extra: 1019/1014,
  43672. bottom: 169/1188
  43673. }
  43674. },
  43675. },
  43676. [
  43677. {
  43678. name: "Normal",
  43679. height: math.unit(6 + 4/12, "feet"),
  43680. default: true
  43681. },
  43682. ]
  43683. ))
  43684. characterMakers.push(() => makeCharacter(
  43685. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43686. {
  43687. front: {
  43688. height: math.unit(3, "feet"),
  43689. weight: math.unit(30, "lb"),
  43690. name: "Front",
  43691. image: {
  43692. source: "./media/characters/till/front.svg",
  43693. extra: 892/823,
  43694. bottom: 55/947
  43695. }
  43696. },
  43697. },
  43698. [
  43699. {
  43700. name: "Normal",
  43701. height: math.unit(3, "feet"),
  43702. default: true
  43703. },
  43704. ]
  43705. ))
  43706. characterMakers.push(() => makeCharacter(
  43707. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43708. {
  43709. front: {
  43710. height: math.unit(9 + 8/12, "feet"),
  43711. weight: math.unit(800, "lb"),
  43712. name: "Front",
  43713. image: {
  43714. source: "./media/characters/sydney-heki/front.svg",
  43715. extra: 1360/1300,
  43716. bottom: 22/1382
  43717. }
  43718. },
  43719. back: {
  43720. height: math.unit(9 + 8/12, "feet"),
  43721. weight: math.unit(800, "lb"),
  43722. name: "Back",
  43723. image: {
  43724. source: "./media/characters/sydney-heki/back.svg",
  43725. extra: 1356/1293,
  43726. bottom: 12/1368
  43727. }
  43728. },
  43729. frontDressed: {
  43730. height: math.unit(9 + 8/12, "feet"),
  43731. weight: math.unit(800, "lb"),
  43732. name: "Front-dressed",
  43733. image: {
  43734. source: "./media/characters/sydney-heki/front-dressed.svg",
  43735. extra: 1360/1300,
  43736. bottom: 22/1382
  43737. }
  43738. },
  43739. },
  43740. [
  43741. {
  43742. name: "Normal",
  43743. height: math.unit(9 + 8/12, "feet"),
  43744. default: true
  43745. },
  43746. {
  43747. name: "Macro",
  43748. height: math.unit(500, "feet")
  43749. },
  43750. {
  43751. name: "Megamacro",
  43752. height: math.unit(3.6, "miles")
  43753. },
  43754. ]
  43755. ))
  43756. characterMakers.push(() => makeCharacter(
  43757. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43758. {
  43759. front: {
  43760. height: math.unit(200, "cm"),
  43761. weight: math.unit(250, "lb"),
  43762. name: "Front",
  43763. image: {
  43764. source: "./media/characters/fowler-karlsson/front.svg",
  43765. extra: 897/845,
  43766. bottom: 123/1020
  43767. }
  43768. },
  43769. back: {
  43770. height: math.unit(200, "cm"),
  43771. weight: math.unit(250, "lb"),
  43772. name: "Back",
  43773. image: {
  43774. source: "./media/characters/fowler-karlsson/back.svg",
  43775. extra: 999/944,
  43776. bottom: 26/1025
  43777. }
  43778. },
  43779. dick: {
  43780. height: math.unit(1.92, "feet"),
  43781. weight: math.unit(150, "lb"),
  43782. name: "Dick",
  43783. image: {
  43784. source: "./media/characters/fowler-karlsson/dick.svg"
  43785. }
  43786. },
  43787. },
  43788. [
  43789. {
  43790. name: "Normal",
  43791. height: math.unit(200, "cm"),
  43792. default: true
  43793. },
  43794. {
  43795. name: "Smaller Macro",
  43796. height: math.unit(90, "m")
  43797. },
  43798. {
  43799. name: "Macro",
  43800. height: math.unit(150, "m")
  43801. },
  43802. {
  43803. name: "Bigger Macro",
  43804. height: math.unit(300, "m")
  43805. },
  43806. ]
  43807. ))
  43808. characterMakers.push(() => makeCharacter(
  43809. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43810. {
  43811. side: {
  43812. height: math.unit(8 + 2/12, "feet"),
  43813. weight: math.unit(1, "tonne"),
  43814. name: "Side",
  43815. image: {
  43816. source: "./media/characters/rylide/side.svg",
  43817. extra: 1318/1034,
  43818. bottom: 106/1424
  43819. }
  43820. },
  43821. sitting: {
  43822. height: math.unit(303, "cm"),
  43823. weight: math.unit(1, "tonne"),
  43824. name: "Sitting",
  43825. image: {
  43826. source: "./media/characters/rylide/sitting.svg",
  43827. extra: 1303/1103,
  43828. bottom: 36/1339
  43829. }
  43830. },
  43831. },
  43832. [
  43833. {
  43834. name: "Normal",
  43835. height: math.unit(8 + 2/12, "feet"),
  43836. default: true
  43837. },
  43838. ]
  43839. ))
  43840. characterMakers.push(() => makeCharacter(
  43841. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43842. {
  43843. front: {
  43844. height: math.unit(5 + 10/12, "feet"),
  43845. weight: math.unit(160, "lb"),
  43846. name: "Front",
  43847. image: {
  43848. source: "./media/characters/pudask/front.svg",
  43849. extra: 1616/1590,
  43850. bottom: 161/1777
  43851. }
  43852. },
  43853. },
  43854. [
  43855. {
  43856. name: "Ferret Height",
  43857. height: math.unit(2 + 5/12, "feet")
  43858. },
  43859. {
  43860. name: "Canon Height",
  43861. height: math.unit(5 + 10/12, "feet"),
  43862. default: true
  43863. },
  43864. ]
  43865. ))
  43866. characterMakers.push(() => makeCharacter(
  43867. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43868. {
  43869. front: {
  43870. height: math.unit(3 + 6/12, "feet"),
  43871. weight: math.unit(60, "lb"),
  43872. name: "Front",
  43873. image: {
  43874. source: "./media/characters/ramita/front.svg",
  43875. extra: 1402/1232,
  43876. bottom: 62/1464
  43877. }
  43878. },
  43879. dressed: {
  43880. height: math.unit(3 + 6/12, "feet"),
  43881. weight: math.unit(60, "lb"),
  43882. name: "Dressed",
  43883. image: {
  43884. source: "./media/characters/ramita/dressed.svg",
  43885. extra: 1534/1249,
  43886. bottom: 50/1584
  43887. }
  43888. },
  43889. },
  43890. [
  43891. {
  43892. name: "Normal",
  43893. height: math.unit(3 + 6/12, "feet"),
  43894. default: true
  43895. },
  43896. ]
  43897. ))
  43898. characterMakers.push(() => makeCharacter(
  43899. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43900. {
  43901. front: {
  43902. height: math.unit(8, "feet"),
  43903. name: "Front",
  43904. image: {
  43905. source: "./media/characters/ark/front.svg",
  43906. extra: 772/693,
  43907. bottom: 45/817
  43908. }
  43909. },
  43910. },
  43911. [
  43912. {
  43913. name: "Normal",
  43914. height: math.unit(8, "feet"),
  43915. default: true
  43916. },
  43917. ]
  43918. ))
  43919. characterMakers.push(() => makeCharacter(
  43920. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43921. {
  43922. front: {
  43923. height: math.unit(6, "feet"),
  43924. weight: math.unit(250, "lb"),
  43925. volume: math.unit(5/8, "gallons"),
  43926. name: "Front",
  43927. image: {
  43928. source: "./media/characters/ludwig-horn/front.svg",
  43929. extra: 1782/1635,
  43930. bottom: 96/1878
  43931. }
  43932. },
  43933. back: {
  43934. height: math.unit(6, "feet"),
  43935. weight: math.unit(250, "lb"),
  43936. volume: math.unit(5/8, "gallons"),
  43937. name: "Back",
  43938. image: {
  43939. source: "./media/characters/ludwig-horn/back.svg",
  43940. extra: 1874/1729,
  43941. bottom: 27/1901
  43942. }
  43943. },
  43944. dick: {
  43945. height: math.unit(1.05, "feet"),
  43946. weight: math.unit(15, "lb"),
  43947. volume: math.unit(5/8, "gallons"),
  43948. name: "Dick",
  43949. image: {
  43950. source: "./media/characters/ludwig-horn/dick.svg"
  43951. }
  43952. },
  43953. },
  43954. [
  43955. {
  43956. name: "Small",
  43957. height: math.unit(6, "feet")
  43958. },
  43959. {
  43960. name: "Typical",
  43961. height: math.unit(12, "feet"),
  43962. default: true
  43963. },
  43964. {
  43965. name: "Building",
  43966. height: math.unit(80, "feet")
  43967. },
  43968. {
  43969. name: "Town",
  43970. height: math.unit(800, "feet")
  43971. },
  43972. {
  43973. name: "Kingdom",
  43974. height: math.unit(80000, "feet")
  43975. },
  43976. {
  43977. name: "Planet",
  43978. height: math.unit(8000000, "feet")
  43979. },
  43980. {
  43981. name: "Universe",
  43982. height: math.unit(8000000000, "feet")
  43983. },
  43984. {
  43985. name: "Transcended",
  43986. height: math.unit(8e27, "feet")
  43987. },
  43988. ]
  43989. ))
  43990. characterMakers.push(() => makeCharacter(
  43991. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43992. {
  43993. front: {
  43994. height: math.unit(5, "feet"),
  43995. weight: math.unit(50, "kg"),
  43996. name: "Front",
  43997. image: {
  43998. source: "./media/characters/biot-avery/front.svg",
  43999. extra: 1295/1232,
  44000. bottom: 86/1381
  44001. }
  44002. },
  44003. },
  44004. [
  44005. {
  44006. name: "Normal",
  44007. height: math.unit(5, "feet"),
  44008. default: true
  44009. },
  44010. ]
  44011. ))
  44012. characterMakers.push(() => makeCharacter(
  44013. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44014. {
  44015. front: {
  44016. height: math.unit(6, "feet"),
  44017. name: "Front",
  44018. image: {
  44019. source: "./media/characters/kitsune-kiro/front.svg",
  44020. extra: 1270/1158,
  44021. bottom: 42/1312
  44022. }
  44023. },
  44024. frontAlt: {
  44025. height: math.unit(6, "feet"),
  44026. name: "Front-alt",
  44027. image: {
  44028. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44029. extra: 1130/1081,
  44030. bottom: 36/1166
  44031. }
  44032. },
  44033. },
  44034. [
  44035. {
  44036. name: "Smol",
  44037. height: math.unit(3, "feet")
  44038. },
  44039. {
  44040. name: "Normal",
  44041. height: math.unit(6, "feet"),
  44042. default: true
  44043. },
  44044. ]
  44045. ))
  44046. characterMakers.push(() => makeCharacter(
  44047. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44048. {
  44049. front: {
  44050. height: math.unit(6, "feet"),
  44051. weight: math.unit(125, "lb"),
  44052. name: "Front",
  44053. image: {
  44054. source: "./media/characters/jack-thatcher/front.svg",
  44055. extra: 1474/1370,
  44056. bottom: 26/1500
  44057. }
  44058. },
  44059. back: {
  44060. height: math.unit(6, "feet"),
  44061. weight: math.unit(125, "lb"),
  44062. name: "Back",
  44063. image: {
  44064. source: "./media/characters/jack-thatcher/back.svg",
  44065. extra: 1489/1384,
  44066. bottom: 18/1507
  44067. }
  44068. },
  44069. },
  44070. [
  44071. {
  44072. name: "Normal",
  44073. height: math.unit(6, "feet"),
  44074. default: true
  44075. },
  44076. {
  44077. name: "Macro",
  44078. height: math.unit(75, "feet")
  44079. },
  44080. {
  44081. name: "Macro-er",
  44082. height: math.unit(250, "feet")
  44083. },
  44084. ]
  44085. ))
  44086. characterMakers.push(() => makeCharacter(
  44087. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44088. {
  44089. front: {
  44090. height: math.unit(7, "feet"),
  44091. weight: math.unit(110, "kg"),
  44092. name: "Front",
  44093. image: {
  44094. source: "./media/characters/max-hyper/front.svg",
  44095. extra: 1969/1881,
  44096. bottom: 49/2018
  44097. }
  44098. },
  44099. },
  44100. [
  44101. {
  44102. name: "Normal",
  44103. height: math.unit(7, "feet"),
  44104. default: true
  44105. },
  44106. ]
  44107. ))
  44108. characterMakers.push(() => makeCharacter(
  44109. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44110. {
  44111. front: {
  44112. height: math.unit(5 + 5/12, "feet"),
  44113. weight: math.unit(160, "lb"),
  44114. name: "Front",
  44115. image: {
  44116. source: "./media/characters/spook/front.svg",
  44117. extra: 794/791,
  44118. bottom: 54/848
  44119. }
  44120. },
  44121. back: {
  44122. height: math.unit(5 + 5/12, "feet"),
  44123. weight: math.unit(160, "lb"),
  44124. name: "Back",
  44125. image: {
  44126. source: "./media/characters/spook/back.svg",
  44127. extra: 812/798,
  44128. bottom: 32/844
  44129. }
  44130. },
  44131. },
  44132. [
  44133. {
  44134. name: "Normal",
  44135. height: math.unit(5 + 5/12, "feet"),
  44136. default: true
  44137. },
  44138. ]
  44139. ))
  44140. characterMakers.push(() => makeCharacter(
  44141. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44142. {
  44143. front: {
  44144. height: math.unit(18, "feet"),
  44145. name: "Front",
  44146. image: {
  44147. source: "./media/characters/xeaduulix/front.svg",
  44148. extra: 1380/1166,
  44149. bottom: 110/1490
  44150. }
  44151. },
  44152. back: {
  44153. height: math.unit(18, "feet"),
  44154. name: "Back",
  44155. image: {
  44156. source: "./media/characters/xeaduulix/back.svg",
  44157. extra: 1592/1170,
  44158. bottom: 128/1720
  44159. }
  44160. },
  44161. frontNsfw: {
  44162. height: math.unit(18, "feet"),
  44163. name: "Front (NSFW)",
  44164. image: {
  44165. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44166. extra: 1380/1166,
  44167. bottom: 110/1490
  44168. }
  44169. },
  44170. backNsfw: {
  44171. height: math.unit(18, "feet"),
  44172. name: "Back (NSFW)",
  44173. image: {
  44174. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44175. extra: 1592/1170,
  44176. bottom: 128/1720
  44177. }
  44178. },
  44179. },
  44180. [
  44181. {
  44182. name: "Normal",
  44183. height: math.unit(18, "feet"),
  44184. default: true
  44185. },
  44186. ]
  44187. ))
  44188. characterMakers.push(() => makeCharacter(
  44189. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44190. {
  44191. spreadWings: {
  44192. height: math.unit(20, "feet"),
  44193. name: "Spread Wings",
  44194. image: {
  44195. source: "./media/characters/fledge/spread-wings.svg",
  44196. extra: 693/635,
  44197. bottom: 26/719
  44198. }
  44199. },
  44200. front: {
  44201. height: math.unit(20, "feet"),
  44202. name: "Front",
  44203. image: {
  44204. source: "./media/characters/fledge/front.svg",
  44205. extra: 684/637,
  44206. bottom: 18/702
  44207. }
  44208. },
  44209. frontAlt: {
  44210. height: math.unit(20, "feet"),
  44211. name: "Front (Alt)",
  44212. image: {
  44213. source: "./media/characters/fledge/front-alt.svg",
  44214. extra: 708/664,
  44215. bottom: 13/721
  44216. }
  44217. },
  44218. back: {
  44219. height: math.unit(20, "feet"),
  44220. name: "Back",
  44221. image: {
  44222. source: "./media/characters/fledge/back.svg",
  44223. extra: 718/634,
  44224. bottom: 22/740
  44225. }
  44226. },
  44227. head: {
  44228. height: math.unit(5.55, "feet"),
  44229. name: "Head",
  44230. image: {
  44231. source: "./media/characters/fledge/head.svg"
  44232. }
  44233. },
  44234. headAlt: {
  44235. height: math.unit(5.1, "feet"),
  44236. name: "Head (Alt)",
  44237. image: {
  44238. source: "./media/characters/fledge/head-alt.svg"
  44239. }
  44240. },
  44241. },
  44242. [
  44243. {
  44244. name: "Small",
  44245. height: math.unit(6 + 2/12, "feet")
  44246. },
  44247. {
  44248. name: "Big",
  44249. height: math.unit(20, "feet"),
  44250. default: true
  44251. },
  44252. {
  44253. name: "Giant",
  44254. height: math.unit(100, "feet")
  44255. },
  44256. {
  44257. name: "Macro",
  44258. height: math.unit(200, "feet")
  44259. },
  44260. ]
  44261. ))
  44262. characterMakers.push(() => makeCharacter(
  44263. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44264. {
  44265. front: {
  44266. height: math.unit(1, "meter"),
  44267. name: "Front",
  44268. image: {
  44269. source: "./media/characters/atlas-morenai/front.svg",
  44270. extra: 1275/1043,
  44271. bottom: 19/1294
  44272. }
  44273. },
  44274. back: {
  44275. height: math.unit(1, "meter"),
  44276. name: "Back",
  44277. image: {
  44278. source: "./media/characters/atlas-morenai/back.svg",
  44279. extra: 1141/1001,
  44280. bottom: 25/1166
  44281. }
  44282. },
  44283. },
  44284. [
  44285. {
  44286. name: "Normal",
  44287. height: math.unit(1, "meter"),
  44288. default: true
  44289. },
  44290. {
  44291. name: "Magic-Infused",
  44292. height: math.unit(5, "meters")
  44293. },
  44294. ]
  44295. ))
  44296. characterMakers.push(() => makeCharacter(
  44297. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44298. {
  44299. front: {
  44300. height: math.unit(5, "meters"),
  44301. name: "Front",
  44302. image: {
  44303. source: "./media/characters/cintia/front.svg",
  44304. extra: 1312/1228,
  44305. bottom: 38/1350
  44306. }
  44307. },
  44308. back: {
  44309. height: math.unit(5, "meters"),
  44310. name: "Back",
  44311. image: {
  44312. source: "./media/characters/cintia/back.svg",
  44313. extra: 1260/1166,
  44314. bottom: 98/1358
  44315. }
  44316. },
  44317. frontDick: {
  44318. height: math.unit(5, "meters"),
  44319. name: "Front (Dick)",
  44320. image: {
  44321. source: "./media/characters/cintia/front-dick.svg",
  44322. extra: 1312/1228,
  44323. bottom: 38/1350
  44324. }
  44325. },
  44326. backDick: {
  44327. height: math.unit(5, "meters"),
  44328. name: "Back (Dick)",
  44329. image: {
  44330. source: "./media/characters/cintia/back-dick.svg",
  44331. extra: 1260/1166,
  44332. bottom: 98/1358
  44333. }
  44334. },
  44335. bust: {
  44336. height: math.unit(1.97, "meters"),
  44337. name: "Bust",
  44338. image: {
  44339. source: "./media/characters/cintia/bust.svg",
  44340. extra: 617/565,
  44341. bottom: 0/617
  44342. }
  44343. },
  44344. },
  44345. [
  44346. {
  44347. name: "Normal",
  44348. height: math.unit(5, "meters"),
  44349. default: true
  44350. },
  44351. ]
  44352. ))
  44353. characterMakers.push(() => makeCharacter(
  44354. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44355. {
  44356. side: {
  44357. height: math.unit(100, "feet"),
  44358. name: "Side",
  44359. image: {
  44360. source: "./media/characters/denora/side.svg",
  44361. extra: 875/803,
  44362. bottom: 9/884
  44363. }
  44364. },
  44365. },
  44366. [
  44367. {
  44368. name: "Standard",
  44369. height: math.unit(100, "feet"),
  44370. default: true
  44371. },
  44372. {
  44373. name: "Grand",
  44374. height: math.unit(1000, "feet")
  44375. },
  44376. {
  44377. name: "Conquering",
  44378. height: math.unit(10000, "feet")
  44379. },
  44380. ]
  44381. ))
  44382. characterMakers.push(() => makeCharacter(
  44383. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44384. {
  44385. dressed: {
  44386. height: math.unit(8 + 5/12, "feet"),
  44387. weight: math.unit(700, "lb"),
  44388. name: "Dressed",
  44389. image: {
  44390. source: "./media/characters/kiva/dressed.svg",
  44391. extra: 1102/1055,
  44392. bottom: 60/1162
  44393. }
  44394. },
  44395. nude: {
  44396. height: math.unit(8 + 5/12, "feet"),
  44397. weight: math.unit(700, "lb"),
  44398. name: "Nude",
  44399. image: {
  44400. source: "./media/characters/kiva/nude.svg",
  44401. extra: 1102/1055,
  44402. bottom: 60/1162
  44403. }
  44404. },
  44405. },
  44406. [
  44407. {
  44408. name: "Base Height",
  44409. height: math.unit(8 + 5/12, "feet"),
  44410. default: true
  44411. },
  44412. {
  44413. name: "Macro",
  44414. height: math.unit(100, "feet")
  44415. },
  44416. {
  44417. name: "Max",
  44418. height: math.unit(3280, "feet")
  44419. },
  44420. ]
  44421. ))
  44422. characterMakers.push(() => makeCharacter(
  44423. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44424. {
  44425. front: {
  44426. height: math.unit(6 + 8/12, "feet"),
  44427. weight: math.unit(250, "lb"),
  44428. name: "Front",
  44429. image: {
  44430. source: "./media/characters/ztragon/front.svg",
  44431. extra: 1825/1684,
  44432. bottom: 98/1923
  44433. }
  44434. },
  44435. },
  44436. [
  44437. {
  44438. name: "Normal",
  44439. height: math.unit(6 + 8/12, "feet"),
  44440. default: true
  44441. },
  44442. {
  44443. name: "Macro",
  44444. height: math.unit(80, "feet")
  44445. },
  44446. ]
  44447. ))
  44448. characterMakers.push(() => makeCharacter(
  44449. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44450. {
  44451. front: {
  44452. height: math.unit(10.4, "feet"),
  44453. weight: math.unit(2, "tons"),
  44454. name: "Front",
  44455. image: {
  44456. source: "./media/characters/yesenia/front.svg",
  44457. extra: 1479/1474,
  44458. bottom: 233/1712
  44459. }
  44460. },
  44461. },
  44462. [
  44463. {
  44464. name: "Normal",
  44465. height: math.unit(10.4, "feet"),
  44466. default: true
  44467. },
  44468. ]
  44469. ))
  44470. characterMakers.push(() => makeCharacter(
  44471. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44472. {
  44473. normal: {
  44474. height: math.unit(6 + 1/12, "feet"),
  44475. weight: math.unit(180, "lb"),
  44476. name: "Normal",
  44477. image: {
  44478. source: "./media/characters/leanne-lycheborne/normal.svg",
  44479. extra: 1748/1660,
  44480. bottom: 98/1846
  44481. }
  44482. },
  44483. were: {
  44484. height: math.unit(12, "feet"),
  44485. weight: math.unit(1600, "lb"),
  44486. name: "Were",
  44487. image: {
  44488. source: "./media/characters/leanne-lycheborne/were.svg",
  44489. extra: 1485/1432,
  44490. bottom: 66/1551
  44491. }
  44492. },
  44493. },
  44494. [
  44495. {
  44496. name: "Normal",
  44497. height: math.unit(6 + 1/12, "feet"),
  44498. default: true
  44499. },
  44500. ]
  44501. ))
  44502. characterMakers.push(() => makeCharacter(
  44503. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44504. {
  44505. side: {
  44506. height: math.unit(13, "feet"),
  44507. name: "Side",
  44508. image: {
  44509. source: "./media/characters/kira-tyler/side.svg",
  44510. extra: 693/393,
  44511. bottom: 58/751
  44512. }
  44513. },
  44514. },
  44515. [
  44516. {
  44517. name: "Normal",
  44518. height: math.unit(13, "feet"),
  44519. default: true
  44520. },
  44521. ]
  44522. ))
  44523. characterMakers.push(() => makeCharacter(
  44524. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44525. {
  44526. front: {
  44527. height: math.unit(10.3, "feet"),
  44528. weight: math.unit(150, "lb"),
  44529. name: "Front",
  44530. image: {
  44531. source: "./media/characters/blaze/front.svg",
  44532. extra: 1378/1286,
  44533. bottom: 172/1550
  44534. }
  44535. },
  44536. },
  44537. [
  44538. {
  44539. name: "Normal",
  44540. height: math.unit(10.3, "feet"),
  44541. default: true
  44542. },
  44543. ]
  44544. ))
  44545. characterMakers.push(() => makeCharacter(
  44546. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44547. {
  44548. side: {
  44549. height: math.unit(2, "meters"),
  44550. weight: math.unit(400, "kg"),
  44551. name: "Side",
  44552. image: {
  44553. source: "./media/characters/anu/side.svg",
  44554. extra: 506/394,
  44555. bottom: 18/524
  44556. }
  44557. },
  44558. },
  44559. [
  44560. {
  44561. name: "Humanoid",
  44562. height: math.unit(2, "meters")
  44563. },
  44564. {
  44565. name: "Normal",
  44566. height: math.unit(5, "meters"),
  44567. default: true
  44568. },
  44569. ]
  44570. ))
  44571. characterMakers.push(() => makeCharacter(
  44572. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44573. {
  44574. front: {
  44575. height: math.unit(5 + 5/12, "feet"),
  44576. weight: math.unit(170, "lb"),
  44577. name: "Front",
  44578. image: {
  44579. source: "./media/characters/synx-the-lynx/front.svg",
  44580. extra: 1893/1745,
  44581. bottom: 17/1910
  44582. }
  44583. },
  44584. side: {
  44585. height: math.unit(5 + 5/12, "feet"),
  44586. weight: math.unit(170, "lb"),
  44587. name: "Side",
  44588. image: {
  44589. source: "./media/characters/synx-the-lynx/side.svg",
  44590. extra: 1884/1740,
  44591. bottom: 39/1923
  44592. }
  44593. },
  44594. back: {
  44595. height: math.unit(5 + 5/12, "feet"),
  44596. weight: math.unit(170, "lb"),
  44597. name: "Back",
  44598. image: {
  44599. source: "./media/characters/synx-the-lynx/back.svg",
  44600. extra: 1903/1755,
  44601. bottom: 14/1917
  44602. }
  44603. },
  44604. },
  44605. [
  44606. {
  44607. name: "Normal",
  44608. height: math.unit(5 + 5/12, "feet"),
  44609. default: true
  44610. },
  44611. ]
  44612. ))
  44613. characterMakers.push(() => makeCharacter(
  44614. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44615. {
  44616. back: {
  44617. height: math.unit(15, "feet"),
  44618. name: "Back",
  44619. image: {
  44620. source: "./media/characters/nadezda-fex/back.svg",
  44621. extra: 1695/1481,
  44622. bottom: 25/1720
  44623. }
  44624. },
  44625. },
  44626. [
  44627. {
  44628. name: "Normal",
  44629. height: math.unit(15, "feet"),
  44630. default: true
  44631. },
  44632. {
  44633. name: "Macro",
  44634. height: math.unit(2.5, "miles")
  44635. },
  44636. {
  44637. name: "Goddess",
  44638. height: math.unit(2, "multiverses")
  44639. },
  44640. ]
  44641. ))
  44642. characterMakers.push(() => makeCharacter(
  44643. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44644. {
  44645. front: {
  44646. height: math.unit(216, "cm"),
  44647. name: "Front",
  44648. image: {
  44649. source: "./media/characters/lev/front.svg",
  44650. extra: 1728/1670,
  44651. bottom: 82/1810
  44652. }
  44653. },
  44654. back: {
  44655. height: math.unit(216, "cm"),
  44656. name: "Back",
  44657. image: {
  44658. source: "./media/characters/lev/back.svg",
  44659. extra: 1738/1675,
  44660. bottom: 24/1762
  44661. }
  44662. },
  44663. dressed: {
  44664. height: math.unit(216, "cm"),
  44665. name: "Dressed",
  44666. image: {
  44667. source: "./media/characters/lev/dressed.svg",
  44668. extra: 1397/1351,
  44669. bottom: 73/1470
  44670. }
  44671. },
  44672. head: {
  44673. height: math.unit(0.51, "meter"),
  44674. name: "Head",
  44675. image: {
  44676. source: "./media/characters/lev/head.svg"
  44677. }
  44678. },
  44679. },
  44680. [
  44681. {
  44682. name: "Normal",
  44683. height: math.unit(216, "cm"),
  44684. default: true
  44685. },
  44686. {
  44687. name: "Relatively Macro",
  44688. height: math.unit(80, "meters")
  44689. },
  44690. {
  44691. name: "Megamacro",
  44692. height: math.unit(21600, "meters")
  44693. },
  44694. {
  44695. name: "Megamacro+",
  44696. height: math.unit(64800, "meters")
  44697. },
  44698. ]
  44699. ))
  44700. characterMakers.push(() => makeCharacter(
  44701. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44702. {
  44703. front: {
  44704. height: math.unit(2, "meters"),
  44705. weight: math.unit(80, "kg"),
  44706. name: "Front",
  44707. image: {
  44708. source: "./media/characters/moka/front.svg",
  44709. extra: 1337/1255,
  44710. bottom: 58/1395
  44711. }
  44712. },
  44713. },
  44714. [
  44715. {
  44716. name: "Micro",
  44717. height: math.unit(15, "cm")
  44718. },
  44719. {
  44720. name: "Normal",
  44721. height: math.unit(2, "meters"),
  44722. default: true
  44723. },
  44724. {
  44725. name: "Macro",
  44726. height: math.unit(20, "meters"),
  44727. },
  44728. ]
  44729. ))
  44730. characterMakers.push(() => makeCharacter(
  44731. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44732. {
  44733. front: {
  44734. height: math.unit(9, "feet"),
  44735. weight: math.unit(240, "lb"),
  44736. name: "Front",
  44737. image: {
  44738. source: "./media/characters/kuzco/front.svg",
  44739. extra: 1593/1487,
  44740. bottom: 32/1625
  44741. }
  44742. },
  44743. side: {
  44744. height: math.unit(9, "feet"),
  44745. weight: math.unit(240, "lb"),
  44746. name: "Side",
  44747. image: {
  44748. source: "./media/characters/kuzco/side.svg",
  44749. extra: 1575/1485,
  44750. bottom: 30/1605
  44751. }
  44752. },
  44753. back: {
  44754. height: math.unit(9, "feet"),
  44755. weight: math.unit(240, "lb"),
  44756. name: "Back",
  44757. image: {
  44758. source: "./media/characters/kuzco/back.svg",
  44759. extra: 1603/1514,
  44760. bottom: 14/1617
  44761. }
  44762. },
  44763. },
  44764. [
  44765. {
  44766. name: "Normal",
  44767. height: math.unit(9, "feet"),
  44768. default: true
  44769. },
  44770. ]
  44771. ))
  44772. characterMakers.push(() => makeCharacter(
  44773. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44774. {
  44775. side: {
  44776. height: math.unit(2, "meters"),
  44777. weight: math.unit(300, "kg"),
  44778. name: "Side",
  44779. image: {
  44780. source: "./media/characters/ceruleus/side.svg",
  44781. extra: 1068/974,
  44782. bottom: 126/1194
  44783. }
  44784. },
  44785. },
  44786. [
  44787. {
  44788. name: "Normal",
  44789. height: math.unit(16, "meters"),
  44790. default: true
  44791. },
  44792. ]
  44793. ))
  44794. characterMakers.push(() => makeCharacter(
  44795. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44796. {
  44797. front: {
  44798. height: math.unit(9, "feet"),
  44799. weight: math.unit(500, "kg"),
  44800. name: "Front",
  44801. image: {
  44802. source: "./media/characters/acouya/front.svg",
  44803. extra: 1660/1473,
  44804. bottom: 28/1688
  44805. }
  44806. },
  44807. },
  44808. [
  44809. {
  44810. name: "Normal",
  44811. height: math.unit(9, "feet"),
  44812. default: true
  44813. },
  44814. ]
  44815. ))
  44816. characterMakers.push(() => makeCharacter(
  44817. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44818. {
  44819. front: {
  44820. height: math.unit(5 + 6/12, "feet"),
  44821. weight: math.unit(195, "lb"),
  44822. name: "Front",
  44823. image: {
  44824. source: "./media/characters/vant/front.svg",
  44825. extra: 1396/1320,
  44826. bottom: 20/1416
  44827. }
  44828. },
  44829. back: {
  44830. height: math.unit(5 + 6/12, "feet"),
  44831. weight: math.unit(195, "lb"),
  44832. name: "Back",
  44833. image: {
  44834. source: "./media/characters/vant/back.svg",
  44835. extra: 1396/1320,
  44836. bottom: 20/1416
  44837. }
  44838. },
  44839. maw: {
  44840. height: math.unit(0.75, "feet"),
  44841. name: "Maw",
  44842. image: {
  44843. source: "./media/characters/vant/maw.svg"
  44844. }
  44845. },
  44846. paw: {
  44847. height: math.unit(1.07, "feet"),
  44848. name: "Paw",
  44849. image: {
  44850. source: "./media/characters/vant/paw.svg"
  44851. }
  44852. },
  44853. },
  44854. [
  44855. {
  44856. name: "Micro",
  44857. height: math.unit(0.25, "inches")
  44858. },
  44859. {
  44860. name: "Normal",
  44861. height: math.unit(5 + 6/12, "feet"),
  44862. default: true
  44863. },
  44864. {
  44865. name: "Macro",
  44866. height: math.unit(75, "feet")
  44867. },
  44868. ]
  44869. ))
  44870. characterMakers.push(() => makeCharacter(
  44871. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44872. {
  44873. front: {
  44874. height: math.unit(30, "meters"),
  44875. weight: math.unit(363, "tons"),
  44876. name: "Front",
  44877. image: {
  44878. source: "./media/characters/ahra/front.svg",
  44879. extra: 1914/1814,
  44880. bottom: 46/1960
  44881. }
  44882. },
  44883. },
  44884. [
  44885. {
  44886. name: "Macro",
  44887. height: math.unit(30, "meters"),
  44888. default: true
  44889. },
  44890. ]
  44891. ))
  44892. characterMakers.push(() => makeCharacter(
  44893. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44894. {
  44895. undressed: {
  44896. height: math.unit(2, "m"),
  44897. weight: math.unit(250, "kg"),
  44898. name: "Undressed",
  44899. image: {
  44900. source: "./media/characters/coriander/undressed.svg",
  44901. extra: 1757/1606,
  44902. bottom: 107/1864
  44903. }
  44904. },
  44905. dressed: {
  44906. height: math.unit(2, "m"),
  44907. weight: math.unit(250, "kg"),
  44908. name: "Dressed",
  44909. image: {
  44910. source: "./media/characters/coriander/dressed.svg",
  44911. extra: 1757/1606,
  44912. bottom: 107/1864
  44913. }
  44914. },
  44915. },
  44916. [
  44917. {
  44918. name: "Normal",
  44919. height: math.unit(4, "meters"),
  44920. default: true
  44921. },
  44922. {
  44923. name: "XL",
  44924. height: math.unit(6, "meters")
  44925. },
  44926. {
  44927. name: "XXL",
  44928. height: math.unit(8, "meters")
  44929. },
  44930. ]
  44931. ))
  44932. characterMakers.push(() => makeCharacter(
  44933. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44934. {
  44935. front: {
  44936. height: math.unit(6, "feet"),
  44937. name: "Front",
  44938. image: {
  44939. source: "./media/characters/syrinx/front.svg",
  44940. extra: 1557/1259,
  44941. bottom: 171/1728
  44942. }
  44943. },
  44944. },
  44945. [
  44946. {
  44947. name: "Normal",
  44948. height: math.unit(6 + 3/12, "feet"),
  44949. default: true
  44950. },
  44951. ]
  44952. ))
  44953. characterMakers.push(() => makeCharacter(
  44954. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44955. {
  44956. front: {
  44957. height: math.unit(11 + 6/12, "feet"),
  44958. weight: math.unit(1.5, "tons"),
  44959. name: "Front",
  44960. image: {
  44961. source: "./media/characters/bor/front.svg",
  44962. extra: 1189/1109,
  44963. bottom: 170/1359
  44964. }
  44965. },
  44966. },
  44967. [
  44968. {
  44969. name: "Normal",
  44970. height: math.unit(11 + 6/12, "feet"),
  44971. default: true
  44972. },
  44973. {
  44974. name: "Macro",
  44975. height: math.unit(32 + 9/12, "feet")
  44976. },
  44977. ]
  44978. ))
  44979. characterMakers.push(() => makeCharacter(
  44980. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44981. {
  44982. anthro: {
  44983. height: math.unit(9, "feet"),
  44984. weight: math.unit(2076, "lb"),
  44985. name: "Anthro",
  44986. image: {
  44987. source: "./media/characters/abacus/anthro.svg",
  44988. extra: 1540/1494,
  44989. bottom: 233/1773
  44990. }
  44991. },
  44992. pigeon: {
  44993. height: math.unit(1, "feet"),
  44994. name: "Pigeon",
  44995. image: {
  44996. source: "./media/characters/abacus/pigeon.svg",
  44997. extra: 528/525,
  44998. bottom: 46/574
  44999. }
  45000. },
  45001. },
  45002. [
  45003. {
  45004. name: "Normal",
  45005. height: math.unit(9, "feet"),
  45006. default: true
  45007. },
  45008. ]
  45009. ))
  45010. characterMakers.push(() => makeCharacter(
  45011. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45012. {
  45013. side: {
  45014. height: math.unit(6, "feet"),
  45015. name: "Side",
  45016. image: {
  45017. source: "./media/characters/delkhan/side.svg",
  45018. extra: 1884/1786,
  45019. bottom: 308/2192
  45020. }
  45021. },
  45022. head: {
  45023. height: math.unit(3.38, "feet"),
  45024. name: "Head",
  45025. image: {
  45026. source: "./media/characters/delkhan/head.svg"
  45027. }
  45028. },
  45029. },
  45030. [
  45031. {
  45032. name: "Normal",
  45033. height: math.unit(72, "feet"),
  45034. default: true
  45035. },
  45036. {
  45037. name: "Giant",
  45038. height: math.unit(172, "feet")
  45039. },
  45040. ]
  45041. ))
  45042. characterMakers.push(() => makeCharacter(
  45043. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45044. {
  45045. standing: {
  45046. height: math.unit(6, "feet"),
  45047. name: "Standing",
  45048. image: {
  45049. source: "./media/characters/euchidat/standing.svg",
  45050. extra: 1612/1553,
  45051. bottom: 116/1728
  45052. }
  45053. },
  45054. leaning: {
  45055. height: math.unit(6, "feet"),
  45056. name: "Leaning",
  45057. image: {
  45058. source: "./media/characters/euchidat/leaning.svg",
  45059. extra: 1719/1674,
  45060. bottom: 27/1746
  45061. }
  45062. },
  45063. },
  45064. [
  45065. {
  45066. name: "Normal",
  45067. height: math.unit(175, "feet"),
  45068. default: true
  45069. },
  45070. {
  45071. name: "Megamacro",
  45072. height: math.unit(190, "miles")
  45073. },
  45074. {
  45075. name: "Gigamacro",
  45076. height: math.unit(190000, "miles")
  45077. },
  45078. ]
  45079. ))
  45080. characterMakers.push(() => makeCharacter(
  45081. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45082. {
  45083. front: {
  45084. height: math.unit(6, "feet"),
  45085. weight: math.unit(150, "lb"),
  45086. name: "Front",
  45087. image: {
  45088. source: "./media/characters/rebecca-stack/front.svg",
  45089. extra: 1256/1201,
  45090. bottom: 18/1274
  45091. }
  45092. },
  45093. },
  45094. [
  45095. {
  45096. name: "Normal",
  45097. height: math.unit(5 + 8/12, "feet"),
  45098. default: true
  45099. },
  45100. {
  45101. name: "Demolitionist",
  45102. height: math.unit(200, "feet")
  45103. },
  45104. {
  45105. name: "Out of Control",
  45106. height: math.unit(2, "miles")
  45107. },
  45108. {
  45109. name: "Giga",
  45110. height: math.unit(7200, "miles")
  45111. },
  45112. ]
  45113. ))
  45114. characterMakers.push(() => makeCharacter(
  45115. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45116. {
  45117. front: {
  45118. height: math.unit(6, "feet"),
  45119. weight: math.unit(150, "lb"),
  45120. name: "Front",
  45121. image: {
  45122. source: "./media/characters/jenny-cartwright/front.svg",
  45123. extra: 1384/1376,
  45124. bottom: 58/1442
  45125. }
  45126. },
  45127. },
  45128. [
  45129. {
  45130. name: "Normal",
  45131. height: math.unit(6 + 7/12, "feet"),
  45132. default: true
  45133. },
  45134. {
  45135. name: "Librarian",
  45136. height: math.unit(55, "feet")
  45137. },
  45138. {
  45139. name: "Sightseer",
  45140. height: math.unit(50, "miles")
  45141. },
  45142. {
  45143. name: "Giga",
  45144. height: math.unit(30000, "miles")
  45145. },
  45146. ]
  45147. ))
  45148. characterMakers.push(() => makeCharacter(
  45149. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45150. {
  45151. nude: {
  45152. height: math.unit(8, "feet"),
  45153. weight: math.unit(225, "lb"),
  45154. name: "Nude",
  45155. image: {
  45156. source: "./media/characters/marvy/nude.svg",
  45157. extra: 1900/1683,
  45158. bottom: 89/1989
  45159. }
  45160. },
  45161. dressed: {
  45162. height: math.unit(8, "feet"),
  45163. weight: math.unit(225, "lb"),
  45164. name: "Dressed",
  45165. image: {
  45166. source: "./media/characters/marvy/dressed.svg",
  45167. extra: 1900/1683,
  45168. bottom: 89/1989
  45169. }
  45170. },
  45171. head: {
  45172. height: math.unit(2.85, "feet"),
  45173. name: "Head",
  45174. image: {
  45175. source: "./media/characters/marvy/head.svg"
  45176. }
  45177. },
  45178. },
  45179. [
  45180. {
  45181. name: "Normal",
  45182. height: math.unit(8, "feet"),
  45183. default: true
  45184. },
  45185. ]
  45186. ))
  45187. characterMakers.push(() => makeCharacter(
  45188. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45189. {
  45190. front: {
  45191. height: math.unit(8, "feet"),
  45192. weight: math.unit(250, "lb"),
  45193. name: "Front",
  45194. image: {
  45195. source: "./media/characters/leah/front.svg",
  45196. extra: 1257/1149,
  45197. bottom: 109/1366
  45198. }
  45199. },
  45200. },
  45201. [
  45202. {
  45203. name: "Normal",
  45204. height: math.unit(8, "feet"),
  45205. default: true
  45206. },
  45207. {
  45208. name: "Minimacro",
  45209. height: math.unit(40, "feet")
  45210. },
  45211. {
  45212. name: "Macro",
  45213. height: math.unit(124, "feet")
  45214. },
  45215. {
  45216. name: "Megamacro",
  45217. height: math.unit(850, "feet")
  45218. },
  45219. ]
  45220. ))
  45221. characterMakers.push(() => makeCharacter(
  45222. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45223. {
  45224. side: {
  45225. height: math.unit(13 + 6/12, "feet"),
  45226. weight: math.unit(3200, "lb"),
  45227. name: "Side",
  45228. image: {
  45229. source: "./media/characters/alvir/side.svg",
  45230. extra: 896/589,
  45231. bottom: 26/922
  45232. }
  45233. },
  45234. },
  45235. [
  45236. {
  45237. name: "Normal",
  45238. height: math.unit(13 + 6/12, "feet"),
  45239. default: true
  45240. },
  45241. ]
  45242. ))
  45243. characterMakers.push(() => makeCharacter(
  45244. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45245. {
  45246. front: {
  45247. height: math.unit(5 + 4/12, "feet"),
  45248. weight: math.unit(236, "lb"),
  45249. name: "Front",
  45250. image: {
  45251. source: "./media/characters/zaina-khalil/front.svg",
  45252. extra: 1533/1485,
  45253. bottom: 94/1627
  45254. }
  45255. },
  45256. side: {
  45257. height: math.unit(5 + 4/12, "feet"),
  45258. weight: math.unit(236, "lb"),
  45259. name: "Side",
  45260. image: {
  45261. source: "./media/characters/zaina-khalil/side.svg",
  45262. extra: 1537/1498,
  45263. bottom: 66/1603
  45264. }
  45265. },
  45266. back: {
  45267. height: math.unit(5 + 4/12, "feet"),
  45268. weight: math.unit(236, "lb"),
  45269. name: "Back",
  45270. image: {
  45271. source: "./media/characters/zaina-khalil/back.svg",
  45272. extra: 1546/1494,
  45273. bottom: 89/1635
  45274. }
  45275. },
  45276. },
  45277. [
  45278. {
  45279. name: "Normal",
  45280. height: math.unit(5 + 4/12, "feet"),
  45281. default: true
  45282. },
  45283. ]
  45284. ))
  45285. characterMakers.push(() => makeCharacter(
  45286. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45287. {
  45288. side: {
  45289. height: math.unit(12, "feet"),
  45290. weight: math.unit(4000, "lb"),
  45291. name: "Side",
  45292. image: {
  45293. source: "./media/characters/terry/side.svg",
  45294. extra: 1518/1439,
  45295. bottom: 149/1667
  45296. }
  45297. },
  45298. },
  45299. [
  45300. {
  45301. name: "Normal",
  45302. height: math.unit(12, "feet"),
  45303. default: true
  45304. },
  45305. ]
  45306. ))
  45307. characterMakers.push(() => makeCharacter(
  45308. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45309. {
  45310. front: {
  45311. height: math.unit(12, "feet"),
  45312. weight: math.unit(1500, "lb"),
  45313. name: "Front",
  45314. image: {
  45315. source: "./media/characters/kahea/front.svg",
  45316. extra: 1722/1617,
  45317. bottom: 179/1901
  45318. }
  45319. },
  45320. },
  45321. [
  45322. {
  45323. name: "Normal",
  45324. height: math.unit(12, "feet"),
  45325. default: true
  45326. },
  45327. ]
  45328. ))
  45329. characterMakers.push(() => makeCharacter(
  45330. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45331. {
  45332. demonFront: {
  45333. height: math.unit(36, "feet"),
  45334. name: "Front",
  45335. image: {
  45336. source: "./media/characters/alex-xuria/demon-front.svg",
  45337. extra: 1705/1673,
  45338. bottom: 198/1903
  45339. },
  45340. form: "demon",
  45341. default: true
  45342. },
  45343. demonBack: {
  45344. height: math.unit(36, "feet"),
  45345. name: "Back",
  45346. image: {
  45347. source: "./media/characters/alex-xuria/demon-back.svg",
  45348. extra: 1725/1693,
  45349. bottom: 70/1795
  45350. },
  45351. form: "demon"
  45352. },
  45353. demonHead: {
  45354. height: math.unit(2.14, "meters"),
  45355. name: "Head",
  45356. image: {
  45357. source: "./media/characters/alex-xuria/demon-head.svg"
  45358. },
  45359. form: "demon"
  45360. },
  45361. demonHand: {
  45362. height: math.unit(1.61, "meters"),
  45363. name: "Hand",
  45364. image: {
  45365. source: "./media/characters/alex-xuria/demon-hand.svg"
  45366. },
  45367. form: "demon"
  45368. },
  45369. demonPaw: {
  45370. height: math.unit(1.35, "meters"),
  45371. name: "Paw",
  45372. image: {
  45373. source: "./media/characters/alex-xuria/demon-paw.svg"
  45374. },
  45375. form: "demon"
  45376. },
  45377. demonFoot: {
  45378. height: math.unit(2.2, "meters"),
  45379. name: "Foot",
  45380. image: {
  45381. source: "./media/characters/alex-xuria/demon-foot.svg"
  45382. },
  45383. form: "demon"
  45384. },
  45385. demonCock: {
  45386. height: math.unit(1.74, "meters"),
  45387. name: "Cock",
  45388. image: {
  45389. source: "./media/characters/alex-xuria/demon-cock.svg"
  45390. },
  45391. form: "demon"
  45392. },
  45393. demonTailClosed: {
  45394. height: math.unit(1.47, "meters"),
  45395. name: "Tail (Closed)",
  45396. image: {
  45397. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45398. },
  45399. form: "demon"
  45400. },
  45401. demonTailOpen: {
  45402. height: math.unit(2.85, "meters"),
  45403. name: "Tail (Open)",
  45404. image: {
  45405. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45406. },
  45407. form: "demon"
  45408. },
  45409. incubusFront: {
  45410. height: math.unit(12, "feet"),
  45411. name: "Front",
  45412. image: {
  45413. source: "./media/characters/alex-xuria/incubus-front.svg",
  45414. extra: 1754/1677,
  45415. bottom: 125/1879
  45416. },
  45417. form: "incubus",
  45418. default: true
  45419. },
  45420. incubusBack: {
  45421. height: math.unit(12, "feet"),
  45422. name: "Back",
  45423. image: {
  45424. source: "./media/characters/alex-xuria/incubus-back.svg",
  45425. extra: 1702/1647,
  45426. bottom: 30/1732
  45427. },
  45428. form: "incubus"
  45429. },
  45430. incubusHead: {
  45431. height: math.unit(3.45, "feet"),
  45432. name: "Head",
  45433. image: {
  45434. source: "./media/characters/alex-xuria/incubus-head.svg"
  45435. },
  45436. form: "incubus"
  45437. },
  45438. rabbitFront: {
  45439. height: math.unit(6, "feet"),
  45440. name: "Front",
  45441. image: {
  45442. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45443. extra: 1369/1349,
  45444. bottom: 45/1414
  45445. },
  45446. form: "rabbit",
  45447. default: true
  45448. },
  45449. rabbitSide: {
  45450. height: math.unit(6, "feet"),
  45451. name: "Side",
  45452. image: {
  45453. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45454. extra: 1370/1356,
  45455. bottom: 37/1407
  45456. },
  45457. form: "rabbit"
  45458. },
  45459. rabbitBack: {
  45460. height: math.unit(6, "feet"),
  45461. name: "Back",
  45462. image: {
  45463. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45464. extra: 1375/1358,
  45465. bottom: 43/1418
  45466. },
  45467. form: "rabbit"
  45468. },
  45469. },
  45470. [
  45471. {
  45472. name: "Normal",
  45473. height: math.unit(6, "feet"),
  45474. default: true,
  45475. form: "rabbit"
  45476. },
  45477. {
  45478. name: "Incubus",
  45479. height: math.unit(12, "feet"),
  45480. default: true,
  45481. form: "incubus"
  45482. },
  45483. {
  45484. name: "Demon",
  45485. height: math.unit(36, "feet"),
  45486. default: true,
  45487. form: "demon"
  45488. }
  45489. ],
  45490. {
  45491. "demon": {
  45492. name: "Demon",
  45493. default: true
  45494. },
  45495. "incubus": {
  45496. name: "Incubus",
  45497. },
  45498. "rabbit": {
  45499. name: "Rabbit"
  45500. }
  45501. }
  45502. ))
  45503. characterMakers.push(() => makeCharacter(
  45504. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45505. {
  45506. front: {
  45507. height: math.unit(7 + 5/12, "feet"),
  45508. weight: math.unit(510, "lb"),
  45509. name: "Front",
  45510. image: {
  45511. source: "./media/characters/syrup/front.svg",
  45512. extra: 932/916,
  45513. bottom: 26/958
  45514. }
  45515. },
  45516. },
  45517. [
  45518. {
  45519. name: "Normal",
  45520. height: math.unit(7 + 5/12, "feet"),
  45521. default: true
  45522. },
  45523. {
  45524. name: "Big",
  45525. height: math.unit(50, "feet")
  45526. },
  45527. {
  45528. name: "Macro",
  45529. height: math.unit(300, "feet")
  45530. },
  45531. {
  45532. name: "Megamacro",
  45533. height: math.unit(1, "mile")
  45534. },
  45535. ]
  45536. ))
  45537. characterMakers.push(() => makeCharacter(
  45538. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45539. {
  45540. front: {
  45541. height: math.unit(6 + 9/12, "feet"),
  45542. name: "Front",
  45543. image: {
  45544. source: "./media/characters/zeimne/front.svg",
  45545. extra: 1969/1806,
  45546. bottom: 53/2022
  45547. }
  45548. },
  45549. },
  45550. [
  45551. {
  45552. name: "Normal",
  45553. height: math.unit(6 + 9/12, "feet"),
  45554. default: true
  45555. },
  45556. {
  45557. name: "Giant",
  45558. height: math.unit(550, "feet")
  45559. },
  45560. {
  45561. name: "Mega",
  45562. height: math.unit(3, "miles")
  45563. },
  45564. {
  45565. name: "Giga",
  45566. height: math.unit(250, "miles")
  45567. },
  45568. {
  45569. name: "Tera",
  45570. height: math.unit(1, "AU")
  45571. },
  45572. ]
  45573. ))
  45574. characterMakers.push(() => makeCharacter(
  45575. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45576. {
  45577. front: {
  45578. height: math.unit(5 + 2/12, "feet"),
  45579. name: "Front",
  45580. image: {
  45581. source: "./media/characters/grar/front.svg",
  45582. extra: 1331/1119,
  45583. bottom: 60/1391
  45584. }
  45585. },
  45586. back: {
  45587. height: math.unit(5 + 2/12, "feet"),
  45588. name: "Back",
  45589. image: {
  45590. source: "./media/characters/grar/back.svg",
  45591. extra: 1385/1169,
  45592. bottom: 23/1408
  45593. }
  45594. },
  45595. },
  45596. [
  45597. {
  45598. name: "Normal",
  45599. height: math.unit(5 + 2/12, "feet"),
  45600. default: true
  45601. },
  45602. ]
  45603. ))
  45604. characterMakers.push(() => makeCharacter(
  45605. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45606. {
  45607. front: {
  45608. height: math.unit(13 + 7/12, "feet"),
  45609. weight: math.unit(2200, "lb"),
  45610. name: "Front",
  45611. image: {
  45612. source: "./media/characters/endraya/front.svg",
  45613. extra: 1289/1215,
  45614. bottom: 50/1339
  45615. }
  45616. },
  45617. nude: {
  45618. height: math.unit(13 + 7/12, "feet"),
  45619. weight: math.unit(2200, "lb"),
  45620. name: "Nude",
  45621. image: {
  45622. source: "./media/characters/endraya/nude.svg",
  45623. extra: 1247/1171,
  45624. bottom: 40/1287
  45625. }
  45626. },
  45627. head: {
  45628. height: math.unit(2.6, "feet"),
  45629. name: "Head",
  45630. image: {
  45631. source: "./media/characters/endraya/head.svg"
  45632. }
  45633. },
  45634. slit: {
  45635. height: math.unit(3.4, "feet"),
  45636. name: "Slit",
  45637. image: {
  45638. source: "./media/characters/endraya/slit.svg"
  45639. }
  45640. },
  45641. },
  45642. [
  45643. {
  45644. name: "Normal",
  45645. height: math.unit(13 + 7/12, "feet"),
  45646. default: true
  45647. },
  45648. {
  45649. name: "Macro",
  45650. height: math.unit(200, "feet")
  45651. },
  45652. ]
  45653. ))
  45654. characterMakers.push(() => makeCharacter(
  45655. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45656. {
  45657. front: {
  45658. height: math.unit(412, "meters"),
  45659. name: "Front",
  45660. image: {
  45661. source: "./media/characters/rodryana/front.svg",
  45662. extra: 2002/1921,
  45663. bottom: 53/2055
  45664. }
  45665. },
  45666. back: {
  45667. height: math.unit(412, "meters"),
  45668. name: "Back",
  45669. image: {
  45670. source: "./media/characters/rodryana/back.svg",
  45671. extra: 1993/1926,
  45672. bottom: 48/2041
  45673. }
  45674. },
  45675. maw: {
  45676. height: math.unit(45, "meters"),
  45677. name: "Maw",
  45678. image: {
  45679. source: "./media/characters/rodryana/maw.svg"
  45680. }
  45681. },
  45682. slit: {
  45683. height: math.unit(72, "meters"),
  45684. name: "Slit",
  45685. image: {
  45686. source: "./media/characters/rodryana/slit.svg"
  45687. }
  45688. },
  45689. },
  45690. [
  45691. {
  45692. name: "Macro",
  45693. height: math.unit(412, "meters"),
  45694. default: true
  45695. },
  45696. ]
  45697. ))
  45698. characterMakers.push(() => makeCharacter(
  45699. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45700. {
  45701. front: {
  45702. height: math.unit(6, "feet"),
  45703. weight: math.unit(1000, "lb"),
  45704. name: "Front",
  45705. image: {
  45706. source: "./media/characters/asaya/front.svg",
  45707. extra: 1460/1200,
  45708. bottom: 71/1531
  45709. }
  45710. },
  45711. },
  45712. [
  45713. {
  45714. name: "Normal",
  45715. height: math.unit(8, "km"),
  45716. default: true
  45717. },
  45718. ]
  45719. ))
  45720. characterMakers.push(() => makeCharacter(
  45721. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45722. {
  45723. front: {
  45724. height: math.unit(3.5, "meters"),
  45725. name: "Front",
  45726. image: {
  45727. source: "./media/characters/sarzu-and-israz/front.svg",
  45728. extra: 1570/1558,
  45729. bottom: 150/1720
  45730. },
  45731. },
  45732. back: {
  45733. height: math.unit(3.5, "meters"),
  45734. name: "Back",
  45735. image: {
  45736. source: "./media/characters/sarzu-and-israz/back.svg",
  45737. extra: 1523/1509,
  45738. bottom: 132/1655
  45739. },
  45740. },
  45741. frontFemale: {
  45742. height: math.unit(3.5, "meters"),
  45743. name: "Front (Female)",
  45744. image: {
  45745. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45746. extra: 1570/1558,
  45747. bottom: 150/1720
  45748. },
  45749. },
  45750. frontHerm: {
  45751. height: math.unit(3.5, "meters"),
  45752. name: "Front (Herm)",
  45753. image: {
  45754. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45755. extra: 1570/1558,
  45756. bottom: 150/1720
  45757. },
  45758. },
  45759. },
  45760. [
  45761. {
  45762. name: "Normal",
  45763. height: math.unit(3.5, "meters"),
  45764. default: true,
  45765. },
  45766. {
  45767. name: "Macro",
  45768. height: math.unit(65.5, "meters"),
  45769. },
  45770. ],
  45771. ))
  45772. characterMakers.push(() => makeCharacter(
  45773. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45774. {
  45775. front: {
  45776. height: math.unit(6, "feet"),
  45777. weight: math.unit(250, "lb"),
  45778. name: "Front",
  45779. image: {
  45780. source: "./media/characters/zenimma/front.svg",
  45781. extra: 1346/1320,
  45782. bottom: 58/1404
  45783. }
  45784. },
  45785. back: {
  45786. height: math.unit(6, "feet"),
  45787. weight: math.unit(250, "lb"),
  45788. name: "Back",
  45789. image: {
  45790. source: "./media/characters/zenimma/back.svg",
  45791. extra: 1324/1308,
  45792. bottom: 44/1368
  45793. }
  45794. },
  45795. dick: {
  45796. height: math.unit(1.44, "feet"),
  45797. name: "Dick",
  45798. image: {
  45799. source: "./media/characters/zenimma/dick.svg"
  45800. }
  45801. },
  45802. },
  45803. [
  45804. {
  45805. name: "Canon Height",
  45806. height: math.unit(66, "miles"),
  45807. default: true
  45808. },
  45809. ]
  45810. ))
  45811. characterMakers.push(() => makeCharacter(
  45812. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45813. {
  45814. nude: {
  45815. height: math.unit(6, "feet"),
  45816. weight: math.unit(150, "lb"),
  45817. name: "Nude",
  45818. image: {
  45819. source: "./media/characters/shavon/nude.svg",
  45820. extra: 1242/1096,
  45821. bottom: 98/1340
  45822. }
  45823. },
  45824. dressed: {
  45825. height: math.unit(6, "feet"),
  45826. weight: math.unit(150, "lb"),
  45827. name: "Dressed",
  45828. image: {
  45829. source: "./media/characters/shavon/dressed.svg",
  45830. extra: 1242/1096,
  45831. bottom: 98/1340
  45832. }
  45833. },
  45834. },
  45835. [
  45836. {
  45837. name: "Macro",
  45838. height: math.unit(255, "feet"),
  45839. default: true
  45840. },
  45841. ]
  45842. ))
  45843. characterMakers.push(() => makeCharacter(
  45844. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45845. {
  45846. front: {
  45847. height: math.unit(6, "feet"),
  45848. name: "Front",
  45849. image: {
  45850. source: "./media/characters/steph/front.svg",
  45851. extra: 1430/1330,
  45852. bottom: 54/1484
  45853. }
  45854. },
  45855. },
  45856. [
  45857. {
  45858. name: "Normal",
  45859. height: math.unit(6, "feet"),
  45860. default: true
  45861. },
  45862. ]
  45863. ))
  45864. characterMakers.push(() => makeCharacter(
  45865. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45866. {
  45867. front: {
  45868. height: math.unit(9, "feet"),
  45869. weight: math.unit(400, "lb"),
  45870. name: "Front",
  45871. image: {
  45872. source: "./media/characters/kil'aman/front.svg",
  45873. extra: 1210/1159,
  45874. bottom: 109/1319
  45875. }
  45876. },
  45877. head: {
  45878. height: math.unit(2.14, "feet"),
  45879. name: "Head",
  45880. image: {
  45881. source: "./media/characters/kil'aman/head.svg"
  45882. }
  45883. },
  45884. maw: {
  45885. height: math.unit(1.21, "feet"),
  45886. name: "Maw",
  45887. image: {
  45888. source: "./media/characters/kil'aman/maw.svg"
  45889. }
  45890. },
  45891. foot: {
  45892. height: math.unit(1.7, "feet"),
  45893. name: "Foot",
  45894. image: {
  45895. source: "./media/characters/kil'aman/foot.svg"
  45896. }
  45897. },
  45898. dick: {
  45899. height: math.unit(2.1, "feet"),
  45900. name: "Dick",
  45901. image: {
  45902. source: "./media/characters/kil'aman/dick.svg"
  45903. }
  45904. },
  45905. },
  45906. [
  45907. {
  45908. name: "Normal",
  45909. height: math.unit(9, "feet")
  45910. },
  45911. {
  45912. name: "Canon Height",
  45913. height: math.unit(10, "miles"),
  45914. default: true
  45915. },
  45916. {
  45917. name: "Maximum",
  45918. height: math.unit(6e9, "miles")
  45919. },
  45920. ]
  45921. ))
  45922. characterMakers.push(() => makeCharacter(
  45923. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  45924. {
  45925. front: {
  45926. height: math.unit(90, "feet"),
  45927. weight: math.unit(675000, "lb"),
  45928. name: "Front",
  45929. image: {
  45930. source: "./media/characters/qadan/front.svg",
  45931. extra: 1012/1004,
  45932. bottom: 78/1090
  45933. }
  45934. },
  45935. back: {
  45936. height: math.unit(90, "feet"),
  45937. weight: math.unit(675000, "lb"),
  45938. name: "Back",
  45939. image: {
  45940. source: "./media/characters/qadan/back.svg",
  45941. extra: 1042/1031,
  45942. bottom: 55/1097
  45943. }
  45944. },
  45945. armored: {
  45946. height: math.unit(90, "feet"),
  45947. weight: math.unit(675000, "lb"),
  45948. name: "Armored",
  45949. image: {
  45950. source: "./media/characters/qadan/armored.svg",
  45951. extra: 1047/1037,
  45952. bottom: 48/1095
  45953. }
  45954. },
  45955. },
  45956. [
  45957. {
  45958. name: "Normal",
  45959. height: math.unit(90, "feet"),
  45960. default: true
  45961. },
  45962. ]
  45963. ))
  45964. characterMakers.push(() => makeCharacter(
  45965. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  45966. {
  45967. front: {
  45968. height: math.unit(6, "feet"),
  45969. weight: math.unit(225, "lb"),
  45970. name: "Front",
  45971. image: {
  45972. source: "./media/characters/brooke/front.svg",
  45973. extra: 1050/1010,
  45974. bottom: 66/1116
  45975. }
  45976. },
  45977. back: {
  45978. height: math.unit(6, "feet"),
  45979. weight: math.unit(225, "lb"),
  45980. name: "Back",
  45981. image: {
  45982. source: "./media/characters/brooke/back.svg",
  45983. extra: 1053/1013,
  45984. bottom: 41/1094
  45985. }
  45986. },
  45987. dressed: {
  45988. height: math.unit(6, "feet"),
  45989. weight: math.unit(225, "lb"),
  45990. name: "Dressed",
  45991. image: {
  45992. source: "./media/characters/brooke/dressed.svg",
  45993. extra: 1050/1010,
  45994. bottom: 66/1116
  45995. }
  45996. },
  45997. },
  45998. [
  45999. {
  46000. name: "Canon Height",
  46001. height: math.unit(500, "miles"),
  46002. default: true
  46003. },
  46004. ]
  46005. ))
  46006. characterMakers.push(() => makeCharacter(
  46007. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46008. {
  46009. front: {
  46010. height: math.unit(6 + 2/12, "feet"),
  46011. weight: math.unit(210, "lb"),
  46012. name: "Front",
  46013. image: {
  46014. source: "./media/characters/wubs/front.svg",
  46015. extra: 1345/1325,
  46016. bottom: 70/1415
  46017. }
  46018. },
  46019. back: {
  46020. height: math.unit(6 + 2/12, "feet"),
  46021. weight: math.unit(210, "lb"),
  46022. name: "Back",
  46023. image: {
  46024. source: "./media/characters/wubs/back.svg",
  46025. extra: 1296/1275,
  46026. bottom: 58/1354
  46027. }
  46028. },
  46029. },
  46030. [
  46031. {
  46032. name: "Normal",
  46033. height: math.unit(6 + 2/12, "feet"),
  46034. default: true
  46035. },
  46036. {
  46037. name: "Macro",
  46038. height: math.unit(1000, "feet")
  46039. },
  46040. {
  46041. name: "Megamacro",
  46042. height: math.unit(1, "mile")
  46043. },
  46044. ]
  46045. ))
  46046. characterMakers.push(() => makeCharacter(
  46047. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46048. {
  46049. front: {
  46050. height: math.unit(4, "feet"),
  46051. weight: math.unit(120, "lb"),
  46052. name: "Front",
  46053. image: {
  46054. source: "./media/characters/blue/front.svg",
  46055. extra: 1636/1525,
  46056. bottom: 43/1679
  46057. }
  46058. },
  46059. back: {
  46060. height: math.unit(4, "feet"),
  46061. weight: math.unit(120, "lb"),
  46062. name: "Back",
  46063. image: {
  46064. source: "./media/characters/blue/back.svg",
  46065. extra: 1660/1560,
  46066. bottom: 57/1717
  46067. }
  46068. },
  46069. paws: {
  46070. height: math.unit(0.826, "feet"),
  46071. name: "Paws",
  46072. image: {
  46073. source: "./media/characters/blue/paws.svg"
  46074. }
  46075. },
  46076. },
  46077. [
  46078. {
  46079. name: "Micro",
  46080. height: math.unit(3, "inches")
  46081. },
  46082. {
  46083. name: "Normal",
  46084. height: math.unit(4, "feet"),
  46085. default: true
  46086. },
  46087. {
  46088. name: "Femenine Form",
  46089. height: math.unit(14, "feet")
  46090. },
  46091. {
  46092. name: "Werebat Form",
  46093. height: math.unit(18, "feet")
  46094. },
  46095. ]
  46096. ))
  46097. characterMakers.push(() => makeCharacter(
  46098. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46099. {
  46100. female: {
  46101. height: math.unit(7 + 4/12, "feet"),
  46102. weight: math.unit(243, "lb"),
  46103. name: "Female",
  46104. image: {
  46105. source: "./media/characters/kaya/female.svg",
  46106. extra: 975/898,
  46107. bottom: 34/1009
  46108. }
  46109. },
  46110. herm: {
  46111. height: math.unit(7 + 4/12, "feet"),
  46112. weight: math.unit(243, "lb"),
  46113. name: "Herm",
  46114. image: {
  46115. source: "./media/characters/kaya/herm.svg",
  46116. extra: 975/898,
  46117. bottom: 34/1009
  46118. }
  46119. },
  46120. },
  46121. [
  46122. {
  46123. name: "Normal",
  46124. height: math.unit(7 + 4/12, "feet"),
  46125. default: true
  46126. },
  46127. ]
  46128. ))
  46129. characterMakers.push(() => makeCharacter(
  46130. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46131. {
  46132. female: {
  46133. height: math.unit(9 + 4/12, "feet"),
  46134. weight: math.unit(398, "lb"),
  46135. name: "Female",
  46136. image: {
  46137. source: "./media/characters/kassandra/female.svg",
  46138. extra: 908/839,
  46139. bottom: 61/969
  46140. }
  46141. },
  46142. intersex: {
  46143. height: math.unit(9 + 4/12, "feet"),
  46144. weight: math.unit(398, "lb"),
  46145. name: "Intersex",
  46146. image: {
  46147. source: "./media/characters/kassandra/intersex.svg",
  46148. extra: 908/839,
  46149. bottom: 61/969
  46150. }
  46151. },
  46152. },
  46153. [
  46154. {
  46155. name: "Normal",
  46156. height: math.unit(9 + 4/12, "feet"),
  46157. default: true
  46158. },
  46159. ]
  46160. ))
  46161. characterMakers.push(() => makeCharacter(
  46162. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46163. {
  46164. front: {
  46165. height: math.unit(3, "meters"),
  46166. name: "Front",
  46167. image: {
  46168. source: "./media/characters/amy/front.svg",
  46169. extra: 1380/1343,
  46170. bottom: 70/1450
  46171. }
  46172. },
  46173. back: {
  46174. height: math.unit(3, "meters"),
  46175. name: "Back",
  46176. image: {
  46177. source: "./media/characters/amy/back.svg",
  46178. extra: 1380/1347,
  46179. bottom: 66/1446
  46180. }
  46181. },
  46182. },
  46183. [
  46184. {
  46185. name: "Normal",
  46186. height: math.unit(3, "meters"),
  46187. default: true
  46188. },
  46189. ]
  46190. ))
  46191. characterMakers.push(() => makeCharacter(
  46192. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46193. {
  46194. side: {
  46195. height: math.unit(47, "cm"),
  46196. weight: math.unit(10.8, "kg"),
  46197. name: "Side",
  46198. image: {
  46199. source: "./media/characters/alphaschakal/side.svg",
  46200. extra: 1058/568,
  46201. bottom: 62/1120
  46202. }
  46203. },
  46204. back: {
  46205. height: math.unit(78, "cm"),
  46206. weight: math.unit(10.8, "kg"),
  46207. name: "Back",
  46208. image: {
  46209. source: "./media/characters/alphaschakal/back.svg",
  46210. extra: 1102/942,
  46211. bottom: 185/1287
  46212. }
  46213. },
  46214. head: {
  46215. height: math.unit(28, "cm"),
  46216. name: "Head",
  46217. image: {
  46218. source: "./media/characters/alphaschakal/head.svg",
  46219. extra: 696/508,
  46220. bottom: 0/696
  46221. }
  46222. },
  46223. paw: {
  46224. height: math.unit(16, "cm"),
  46225. name: "Paw",
  46226. image: {
  46227. source: "./media/characters/alphaschakal/paw.svg"
  46228. }
  46229. },
  46230. },
  46231. [
  46232. {
  46233. name: "Normal",
  46234. height: math.unit(47, "cm"),
  46235. default: true
  46236. },
  46237. {
  46238. name: "Macro",
  46239. height: math.unit(340, "cm")
  46240. },
  46241. ]
  46242. ))
  46243. characterMakers.push(() => makeCharacter(
  46244. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46245. {
  46246. front: {
  46247. height: math.unit(36, "earths"),
  46248. name: "Front",
  46249. image: {
  46250. source: "./media/characters/ecobyss/front.svg",
  46251. extra: 1282/1215,
  46252. bottom: 11/1293
  46253. }
  46254. },
  46255. back: {
  46256. height: math.unit(36, "earths"),
  46257. name: "Back",
  46258. image: {
  46259. source: "./media/characters/ecobyss/back.svg",
  46260. extra: 1291/1222,
  46261. bottom: 8/1299
  46262. }
  46263. },
  46264. },
  46265. [
  46266. {
  46267. name: "Normal",
  46268. height: math.unit(36, "earths"),
  46269. default: true
  46270. },
  46271. ]
  46272. ))
  46273. characterMakers.push(() => makeCharacter(
  46274. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46275. {
  46276. front: {
  46277. height: math.unit(12, "feet"),
  46278. name: "Front",
  46279. image: {
  46280. source: "./media/characters/vasuk/front.svg",
  46281. extra: 1326/1207,
  46282. bottom: 64/1390
  46283. }
  46284. },
  46285. },
  46286. [
  46287. {
  46288. name: "Normal",
  46289. height: math.unit(12, "feet"),
  46290. default: true
  46291. },
  46292. ]
  46293. ))
  46294. characterMakers.push(() => makeCharacter(
  46295. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46296. {
  46297. side: {
  46298. height: math.unit(100, "feet"),
  46299. name: "Side",
  46300. image: {
  46301. source: "./media/characters/linneaus/side.svg",
  46302. extra: 987/807,
  46303. bottom: 47/1034
  46304. }
  46305. },
  46306. },
  46307. [
  46308. {
  46309. name: "Macro",
  46310. height: math.unit(100, "feet"),
  46311. default: true
  46312. },
  46313. ]
  46314. ))
  46315. characterMakers.push(() => makeCharacter(
  46316. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46317. {
  46318. front: {
  46319. height: math.unit(8, "feet"),
  46320. weight: math.unit(1200, "lb"),
  46321. name: "Front",
  46322. image: {
  46323. source: "./media/characters/nyterious-daligdig/front.svg",
  46324. extra: 1284/1094,
  46325. bottom: 84/1368
  46326. }
  46327. },
  46328. back: {
  46329. height: math.unit(8, "feet"),
  46330. weight: math.unit(1200, "lb"),
  46331. name: "Back",
  46332. image: {
  46333. source: "./media/characters/nyterious-daligdig/back.svg",
  46334. extra: 1301/1121,
  46335. bottom: 129/1430
  46336. }
  46337. },
  46338. mouth: {
  46339. height: math.unit(1.464, "feet"),
  46340. name: "Mouth",
  46341. image: {
  46342. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46343. }
  46344. },
  46345. },
  46346. [
  46347. {
  46348. name: "Small",
  46349. height: math.unit(8, "feet"),
  46350. default: true
  46351. },
  46352. {
  46353. name: "Normal",
  46354. height: math.unit(15, "feet")
  46355. },
  46356. {
  46357. name: "Macro",
  46358. height: math.unit(90, "feet")
  46359. },
  46360. ]
  46361. ))
  46362. characterMakers.push(() => makeCharacter(
  46363. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46364. {
  46365. front: {
  46366. height: math.unit(7 + 4/12, "feet"),
  46367. weight: math.unit(252, "lb"),
  46368. name: "Front",
  46369. image: {
  46370. source: "./media/characters/bandel/front.svg",
  46371. extra: 1946/1775,
  46372. bottom: 26/1972
  46373. }
  46374. },
  46375. back: {
  46376. height: math.unit(7 + 4/12, "feet"),
  46377. weight: math.unit(252, "lb"),
  46378. name: "Back",
  46379. image: {
  46380. source: "./media/characters/bandel/back.svg",
  46381. extra: 1940/1770,
  46382. bottom: 25/1965
  46383. }
  46384. },
  46385. maw: {
  46386. height: math.unit(2.15, "feet"),
  46387. name: "Maw",
  46388. image: {
  46389. source: "./media/characters/bandel/maw.svg"
  46390. }
  46391. },
  46392. stomach: {
  46393. height: math.unit(1.95, "feet"),
  46394. name: "Stomach",
  46395. image: {
  46396. source: "./media/characters/bandel/stomach.svg"
  46397. }
  46398. },
  46399. },
  46400. [
  46401. {
  46402. name: "Normal",
  46403. height: math.unit(7 + 4/12, "feet"),
  46404. default: true
  46405. },
  46406. ]
  46407. ))
  46408. characterMakers.push(() => makeCharacter(
  46409. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46410. {
  46411. front: {
  46412. height: math.unit(10 + 5/12, "feet"),
  46413. weight: math.unit(773.5, "kg"),
  46414. name: "Front",
  46415. image: {
  46416. source: "./media/characters/zed/front.svg",
  46417. extra: 987/941,
  46418. bottom: 52/1039
  46419. }
  46420. },
  46421. },
  46422. [
  46423. {
  46424. name: "Short",
  46425. height: math.unit(5 + 4/12, "feet")
  46426. },
  46427. {
  46428. name: "Average",
  46429. height: math.unit(10 + 5/12, "feet"),
  46430. default: true
  46431. },
  46432. {
  46433. name: "Mini-Macro",
  46434. height: math.unit(24 + 9/12, "feet")
  46435. },
  46436. {
  46437. name: "Macro",
  46438. height: math.unit(249, "feet")
  46439. },
  46440. {
  46441. name: "Mega-Macro",
  46442. height: math.unit(12490, "feet")
  46443. },
  46444. {
  46445. name: "Giga-Macro",
  46446. height: math.unit(24.9, "miles")
  46447. },
  46448. {
  46449. name: "Tera-Macro",
  46450. height: math.unit(24900, "miles")
  46451. },
  46452. {
  46453. name: "Cosmic Scale",
  46454. height: math.unit(38.9, "lightyears")
  46455. },
  46456. {
  46457. name: "Universal Scale",
  46458. height: math.unit(138e12, "lightyears")
  46459. },
  46460. ]
  46461. ))
  46462. characterMakers.push(() => makeCharacter(
  46463. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46464. {
  46465. front: {
  46466. height: math.unit(1561, "inches"),
  46467. name: "Front",
  46468. image: {
  46469. source: "./media/characters/ivan/front.svg",
  46470. extra: 1126/1071,
  46471. bottom: 26/1152
  46472. }
  46473. },
  46474. back: {
  46475. height: math.unit(1561, "inches"),
  46476. name: "Back",
  46477. image: {
  46478. source: "./media/characters/ivan/back.svg",
  46479. extra: 1134/1079,
  46480. bottom: 30/1164
  46481. }
  46482. },
  46483. },
  46484. [
  46485. {
  46486. name: "Normal",
  46487. height: math.unit(1561, "inches"),
  46488. default: true
  46489. },
  46490. ]
  46491. ))
  46492. characterMakers.push(() => makeCharacter(
  46493. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46494. {
  46495. front: {
  46496. height: math.unit(5 + 7/12, "feet"),
  46497. weight: math.unit(150, "lb"),
  46498. name: "Front",
  46499. image: {
  46500. source: "./media/characters/robin-arctic-hare/front.svg",
  46501. extra: 1148/974,
  46502. bottom: 20/1168
  46503. }
  46504. },
  46505. },
  46506. [
  46507. {
  46508. name: "Normal",
  46509. height: math.unit(5 + 7/12, "feet"),
  46510. default: true
  46511. },
  46512. ]
  46513. ))
  46514. characterMakers.push(() => makeCharacter(
  46515. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  46516. {
  46517. side: {
  46518. height: math.unit(5, "feet"),
  46519. name: "Side",
  46520. image: {
  46521. source: "./media/characters/birch/side.svg",
  46522. extra: 985/796,
  46523. bottom: 111/1096
  46524. }
  46525. },
  46526. },
  46527. [
  46528. {
  46529. name: "Normal",
  46530. height: math.unit(5, "feet"),
  46531. default: true
  46532. },
  46533. ]
  46534. ))
  46535. characterMakers.push(() => makeCharacter(
  46536. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  46537. {
  46538. front: {
  46539. height: math.unit(4, "feet"),
  46540. name: "Front",
  46541. image: {
  46542. source: "./media/characters/rasp/front.svg",
  46543. extra: 561/478,
  46544. bottom: 74/635
  46545. }
  46546. },
  46547. },
  46548. [
  46549. {
  46550. name: "Normal",
  46551. height: math.unit(4, "feet"),
  46552. default: true
  46553. },
  46554. ]
  46555. ))
  46556. characterMakers.push(() => makeCharacter(
  46557. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  46558. {
  46559. front: {
  46560. height: math.unit(4 + 6/12, "feet"),
  46561. name: "Front",
  46562. image: {
  46563. source: "./media/characters/agatha/front.svg",
  46564. extra: 947/933,
  46565. bottom: 42/989
  46566. }
  46567. },
  46568. back: {
  46569. height: math.unit(4 + 6/12, "feet"),
  46570. name: "Back",
  46571. image: {
  46572. source: "./media/characters/agatha/back.svg",
  46573. extra: 935/922,
  46574. bottom: 48/983
  46575. }
  46576. },
  46577. },
  46578. [
  46579. {
  46580. name: "Normal",
  46581. height: math.unit(4 + 6 /12, "feet"),
  46582. default: true
  46583. },
  46584. {
  46585. name: "Max Size",
  46586. height: math.unit(500, "feet")
  46587. },
  46588. ]
  46589. ))
  46590. characterMakers.push(() => makeCharacter(
  46591. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  46592. {
  46593. side: {
  46594. height: math.unit(30, "feet"),
  46595. name: "Side",
  46596. image: {
  46597. source: "./media/characters/roggy/side.svg",
  46598. extra: 909/643,
  46599. bottom: 63/972
  46600. }
  46601. },
  46602. lounging: {
  46603. height: math.unit(20, "feet"),
  46604. name: "Lounging",
  46605. image: {
  46606. source: "./media/characters/roggy/lounging.svg",
  46607. extra: 643/479,
  46608. bottom: 145/788
  46609. }
  46610. },
  46611. handpaw: {
  46612. height: math.unit(13.1, "feet"),
  46613. name: "Handpaw",
  46614. image: {
  46615. source: "./media/characters/roggy/handpaw.svg"
  46616. }
  46617. },
  46618. footpaw: {
  46619. height: math.unit(15.8, "feet"),
  46620. name: "Footpaw",
  46621. image: {
  46622. source: "./media/characters/roggy/footpaw.svg"
  46623. }
  46624. },
  46625. },
  46626. [
  46627. {
  46628. name: "Menacing",
  46629. height: math.unit(30, "feet"),
  46630. default: true
  46631. },
  46632. ]
  46633. ))
  46634. characterMakers.push(() => makeCharacter(
  46635. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  46636. {
  46637. front: {
  46638. height: math.unit(5 + 7/12, "feet"),
  46639. weight: math.unit(135, "lb"),
  46640. name: "Front",
  46641. image: {
  46642. source: "./media/characters/naomi/front.svg",
  46643. extra: 1209/1154,
  46644. bottom: 129/1338
  46645. }
  46646. },
  46647. back: {
  46648. height: math.unit(5 + 7/12, "feet"),
  46649. weight: math.unit(135, "lb"),
  46650. name: "Back",
  46651. image: {
  46652. source: "./media/characters/naomi/back.svg",
  46653. extra: 1252/1190,
  46654. bottom: 23/1275
  46655. }
  46656. },
  46657. },
  46658. [
  46659. {
  46660. name: "Normal",
  46661. height: math.unit(5 + 7 /12, "feet"),
  46662. default: true
  46663. },
  46664. ]
  46665. ))
  46666. characterMakers.push(() => makeCharacter(
  46667. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  46668. {
  46669. side: {
  46670. height: math.unit(35, "meters"),
  46671. name: "Side",
  46672. image: {
  46673. source: "./media/characters/kimpi/side.svg",
  46674. extra: 419/382,
  46675. bottom: 63/482
  46676. }
  46677. },
  46678. hand: {
  46679. height: math.unit(8.96, "meters"),
  46680. name: "Hand",
  46681. image: {
  46682. source: "./media/characters/kimpi/hand.svg"
  46683. }
  46684. },
  46685. },
  46686. [
  46687. {
  46688. name: "Normal",
  46689. height: math.unit(35, "meters"),
  46690. default: true
  46691. },
  46692. ]
  46693. ))
  46694. characterMakers.push(() => makeCharacter(
  46695. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  46696. {
  46697. front: {
  46698. height: math.unit(4 + 4/12, "feet"),
  46699. name: "Front",
  46700. image: {
  46701. source: "./media/characters/pepper-purrloin/front.svg",
  46702. extra: 1141/1024,
  46703. bottom: 21/1162
  46704. }
  46705. },
  46706. },
  46707. [
  46708. {
  46709. name: "Normal",
  46710. height: math.unit(4 + 4/12, "feet"),
  46711. default: true
  46712. },
  46713. ]
  46714. ))
  46715. characterMakers.push(() => makeCharacter(
  46716. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  46717. {
  46718. front: {
  46719. height: math.unit(6 + 2/12, "feet"),
  46720. name: "Front",
  46721. image: {
  46722. source: "./media/characters/raphael/front.svg",
  46723. extra: 1101/962,
  46724. bottom: 59/1160
  46725. }
  46726. },
  46727. },
  46728. [
  46729. {
  46730. name: "Normal",
  46731. height: math.unit(6 + 2/12, "feet"),
  46732. default: true
  46733. },
  46734. ]
  46735. ))
  46736. //characters
  46737. function makeCharacters() {
  46738. const results = [];
  46739. characterMakers.forEach(character => {
  46740. results.push(character());
  46741. });
  46742. return results;
  46743. }